XylotrechusZ
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Unycon</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="./unycon.css">
<style type="text/css">
body {
padding-top: 50px;
}
@media (max-width: 767px) {
body {
padding-top: 75px;
}
}
.icon {
width: 200px;
height: 100px;
}
.icon .icon-icon {
font-size: 32px;
}
</style>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header hidden-xs">
<span class="navbar-brand">Unycon</span>
</div>
<div>
<form class="navbar-form navbar-left" role="search" onsubmit="return false;">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search" maxlength="16" size="17" id="search-icon" />
</div>
</form>
<div class="navbar-right hidden-xs">
<span class="navbar-brand">v2.0.0</span>
</div>
</div>
</div>
</nav>
<p></p>
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<div id="icons"></div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
jQuery(function($){
var $icons = $('#icons'),
$groups = {},
notEmptyGroups = {},
prefix = 'unycon-';
$.each(groups, function(group, title){
var $group = $(''
+ '<div class="panel panel-default group-wrapper" id="group-'+ group +'-wrapper">'
+ /**/'<div class="panel-heading">'
+ /**//**/'<h3 class="panel-title">'+ title +'</h3>'
+ /**/'</div>'
+ /**/'<div class="panel-body" id="group-'+ group +'"></div>'
+ '</div>'
);
$groups[group] = $group.find('.panel-body');
$icons.append($group);
});
$.each(icons, function(icon, data){
$.each(data.groups, function(group){
$groups[group].append(''
+ '<div class="icon text-center pull-left" data-icon="'+ icon.split(prefix).pop() +'">'
+ /**/'<div class="icon-icon">'
+ /**//**/'<span class="unycon '+ icon +'"></span>'
+ /**/'</div>'
+ /**/'<div class="icon-code">'
+ /**//**/'<code>'+ icon +'</code>'
+ /**/'</div>'
+ '</div>'
);
notEmptyGroups[group] = true;
});
});
$.each(groups, function(group){
if (typeof notEmptyGroups[group] == 'undefined') {
$('#group-'+ group +'-wrapper').remove();
delete $groups[group];
}
});
var $icons = $('.icon');
$('#search-icon').on('keyup change blur', function(){
var $input = $(this),
value = $.trim($input.val());
if (value === $input.attr('data-previous-value')) {
return;
} else {
$input.attr('data-previous-value', value);
}
if (value.length) {
$icons.addClass('hidden');
{
var pregQuotedValue = value.replace(/([\\\.\+\*\?\[\^\]\$\(\)\{\}\=\!\<\>\|\:])/g, "\\$1"),
regex = new RegExp(
'(^|\-)'+ pregQuotedValue,
'i'
);
$icons.filter(function(){
return regex.test( String($(this).attr('data-icon')) );
}).removeClass('hidden');
}
} else {
$icons.removeClass('hidden');
}
$.each($groups, function(group) {
var isNotEmpty = $groups[group].find('.icon:not(.hidden):first').length;
$groups[group].closest('.group-wrapper')[
isNotEmpty ? 'removeClass' : 'addClass'
]('hidden');
});
});
});
</script>
<script>
var groups = {
misc: 'Basic & Misc',
blog: 'Blogging',
business: 'Business & Corporate',
currency: 'Currency',
delivery: 'Delivery',
events: 'Events',
fashion: 'Fashion & Beauty',
financial: 'Financial',
food: 'Food & Beverages',
free: 'Free',
kids: 'Kids',
law: 'Law & Legal',
medical: 'Medical',
music: 'Music',
notifications: 'Notifications',
photography: 'Photography',
portfolio: 'Portfolio & Works',
real_estate: 'Real Estate',
religion: 'Religion',
settings: 'Settings & Tools',
shopping: 'Shopping',
sports: 'Sports',
symbols: 'Symbols',
travel: 'Travel',
weather: 'Weather',
web: 'Web & Applications'
},
icons = {"unycon-photo-camera":{"groups":{"photography":true}},"unycon-camera-diaphragm":{"groups":{"photography":true}},"unycon-controls":{"groups":{"settings":true}},"unycon-vimeo":{"groups":{"web":true}},"unycon-chat":{"groups":{"misc":true}},"unycon-scissors":{"groups":{"fashion":true}},"unycon-avira-antivirus":{"groups":{"web":true}},"unycon-kaspersky-antivirus":{"groups":{"web":true}},"unycon-list-ul":{"groups":{"misc":true}},"unycon-gallery":{"groups":{"misc":true,"photography":true}},"unycon-desktop":{"groups":{"misc":true}},"unycon-toggle-on":{"groups":{"misc":true,"settings":true}},"unycon-hand-cash":{"groups":{"financial":true}},"unycon-global-delivery-arrow":{"groups":{"business":true,"delivery":true}},"unycon-global-delivery-check":{"groups":{"business":true,"delivery":true}},"unycon-shopping-cart-delivery":{"groups":{"delivery":true,"shopping":true}},"unycon-shopping-cart-check":{"groups":{"delivery":true,"shopping":true}},"unycon-shopping-cart-time":{"groups":{"delivery":true,"shopping":true}},"unycon-paper-delivery":{"groups":{"blog":true,"delivery":true}},"unycon-paper-check":{"groups":{"blog":true,"delivery":true}},"unycon-crown":{"groups":{"misc":true}},"unycon-codeguard":{"groups":{"web":true}},"unycon-toggle-off":{"groups":{"settings":true}},"unycon-paper-time":{"groups":{"blog":true,"delivery":true}},"unycon-paper-arrow":{"groups":{"blog":true,"delivery":true}},"unycon-purse-time":{"groups":{"business":true,"delivery":true}},"unycon-purse-check":{"groups":{"business":true,"delivery":true}},"unycon-box-check":{"groups":{"delivery":true}},"unycon-box-arrow":{"groups":{"delivery":true,"shopping":true}},"unycon-yahoo":{"groups":{"web":true}},"unycon-basket":{"groups":{"shopping":true}},"unycon-basket-plus":{"groups":{"shopping":true}},"unycon-basket-minus":{"groups":{"shopping":true}},"unycon-map-marker":{"groups":{"misc":true,"travel":true}},"unycon-cup":{"groups":{"misc":true}},"unycon-tooltip":{"groups":{"misc":true}},"unycon-at-circle":{"groups":{"misc":true,"web":true}},"unycon-delivery-non-stop":{"groups":{"delivery":true}},"unycon-hand-free":{"groups":{"free":true}},"unycon-box-time-o":{"groups":{"delivery":true}},"unycon-box-lock-o":{"groups":{"delivery":true}},"unycon-box-check-o":{"groups":{"delivery":true}},"unycon-list-check":{"groups":{"misc":true}},"unycon-envelope-open":{"groups":{"misc":true,"delivery":true}},"unycon-label-star-check":{"groups":{"misc":true}},"unycon-label-star-usd":{"groups":{"currency":true,"financial":true,"shopping":true}},"unycon-label-star-percent":{"groups":{"misc":true,"business":true,"financial":true,"shopping":true}},"unycon-label-star-1":{"groups":{"misc":true,"business":true}},"unycon-warning-circle2":{"groups":{"misc":true}},"unycon-apple":{"groups":{"misc":true}},"unycon-tag-check":{"groups":{"misc":true}},"unycon-tag-empty":{"groups":{"misc":true}},"unycon-tag-new":{"groups":{"misc":true,"shopping":true}},"unycon-price-tag-usd":{"groups":{"currency":true,"financial":true,"shopping":true}},"unycon-tag-percent":{"groups":{"financial":true,"shopping":true}},"unycon-label-circle":{"groups":{"misc":true}},"unycon-warning":{"groups":{"misc":true}},"unycon-shopping-cart":{"groups":{"shopping":true}},"unycon-shopping-cart-full":{"groups":{"shopping":true}},"unycon-shopping-cart-full2":{"groups":{"shopping":true}},"unycon-shopping-cart-plus":{"groups":{"shopping":true}},"unycon-shopping-cart-minus":{"groups":{"shopping":true}},"unycon-shopping-cart2":{"groups":{"shopping":true}},"unycon-shopping-cart3":{"groups":{"shopping":true}},"unycon-credit-cards":{"groups":{"shopping":true}},"unycon-check-circle-o2":{"groups":{"misc":true}},"unycon-piggy-bank":{"groups":{"financial":true}},"unycon-wallet":{"groups":{"financial":true}},"unycon-box":{"groups":{"delivery":true}},"unycon-money":{"groups":{"financial":true}},"unycon-coins":{"groups":{"financial":true}},"unycon-open-sign":{"groups":{"business":true,"shopping":true}},"unycon-gift":{"groups":{"misc":true,"free":true}},"unycon-desert":{"groups":{"misc":true}},"unycon-question-circle":{"groups":{"misc":true}},"unycon-box-upload":{"groups":{"delivery":true}},"unycon-coffee":{"groups":{"food":true}},"unycon-store":{"groups":{"business":true,"shopping":true}},"unycon-certificate":{"groups":{"business":true,"law":true}},"unycon-clothes-women":{"groups":{"fashion":true}},"unycon-shoes-women":{"groups":{"fashion":true}},"unycon-hat-women":{"groups":{"fashion":true}},"unycon-skirt":{"groups":{"fashion":true}},"unycon-shoes-women2":{"groups":{"fashion":true}},"unycon-cog":{"groups":{"settings":true}},"unycon-cocktail":{"groups":{"food":true}},"unycon-delete-circle":{"groups":{"misc":true}},"unycon-box-open":{"groups":{"delivery":true}},"unycon-cogs":{"groups":{"settings":true}},"unycon-cogs2":{"groups":{"settings":true}},"unycon-cog2":{"groups":{"settings":true}},"unycon-paper-clip":{"groups":{"misc":true}},"unycon-lightning":{"groups":{"misc":true,"photography":true}},"unycon-list":{"groups":{"misc":true}},"unycon-hand-arrows":{"groups":{"misc":true}},"unycon-link":{"groups":{"misc":true,"web":true}},"unycon-tools":{"groups":{"settings":true}},"unycon-brush":{"groups":{"misc":true}},"unycon-faq":{"groups":{"blog":true}},"unycon-wrench":{"groups":{"settings":true}},"unycon-hammer":{"groups":{"settings":true}},"unycon-wifi":{"groups":{"settings":true}},"unycon-dashboard":{"groups":{"settings":true}},"unycon-broken-link":{"groups":{"web":true}},"unycon-pin":{"groups":{"misc":true}},"unycon-light-bulb":{"groups":{"misc":true}},"unycon-pen-ruler":{"groups":{"misc":true,"settings":true}},"unycon-minus-circle":{"groups":{"misc":true}},"unycon-pizza":{"groups":{"food":true}},"unycon-medal":{"groups":{"business":true}},"unycon-chess":{"groups":{"misc":true}},"unycon-scissors1":{"groups":{"misc":true,"fashion":true}},"unycon-tool-square":{"groups":{"settings":true}},"unycon-tool-square2":{"groups":{"settings":true}},"unycon-tool-square3":{"groups":{"settings":true}},"unycon-tool-square4":{"groups":{"settings":true}},"unycon-tool-square5":{"groups":{"settings":true}},"unycon-tool-circle":{"groups":{"settings":true}},"unycon-tool-double-square":{"groups":{"settings":true}},"unycon-tool-double-square2":{"groups":{"settings":true}},"unycon-coffee2":{"groups":{"food":true}},"unycon-warning-triangle":{"groups":{"misc":true}},"unycon-restaurant":{"groups":{"food":true}},"unycon-tool-double-square3":{"groups":{"settings":true}},"unycon-tool-crop":{"groups":{"settings":true}},"unycon-tool-square6":{"groups":{"settings":true}},"unycon-tool-color-sample":{"groups":{"settings":true}},"unycon-tool-color-sample2":{"groups":{"settings":true}},"unycon-tool-brush":{"groups":{"settings":true}},"unycon-tool-brush-arrow":{"groups":{"settings":true}},"unycon-tool-pen":{"groups":{"settings":true}},"unycon-arrow-mouse":{"groups":{"misc":true}},"unycon-screwdriver":{"groups":{"settings":true}},"unycon-rosted-chicken":{"groups":{"food":true}},"unycon-not-allowed":{"groups":{"misc":true}},"unycon-pencil":{"groups":{"misc":true,"blog":true}},"unycon-tool-dodge":{"groups":{"settings":true}},"unycon-tool-blur":{"groups":{"settings":true}},"unycon-tool-clone-stamp":{"groups":{"settings":true}},"unycon-tool-pattern-stamp":{"groups":{"settings":true}},"unycon-tool-move":{"groups":{"settings":true}},"unycon-tool-magic-wand":{"groups":{"settings":true}},"unycon-tool-paint-bucket":{"groups":{"settings":true}},"unycon-tool-content-move":{"groups":{"settings":true}},"unycon-tool-ruler":{"groups":{"settings":true}},"unycon-crab":{"groups":{"food":true}},"unycon-shield-delete":{"groups":{"misc":true}},"unycon-printer":{"groups":{"misc":true}},"unycon-flag-eu":{"groups":{"travel":true}},"unycon-rectangle":{"groups":{"misc":true}},"unycon-two-windows":{"groups":{"misc":true}},"unycon-text-letter":{"groups":{"misc":true,"blog":true}},"unycon-text-letter-height":{"groups":{"misc":true,"blog":true}},"unycon-text-letter-scale":{"groups":{"misc":true,"blog":true}},"unycon-eye":{"groups":{"misc":true}},"unycon-document-check":{"groups":{"misc":true,"law":true}},"unycon-coffee3":{"groups":{"food":true}},"unycon-warning-octagon":{"groups":{"misc":true}},"unycon-scanner":{"groups":{"misc":true,"settings":true}},"unycon-magnifying-glass":{"groups":{"misc":true,"settings":true}},"unycon-document-plus":{"groups":{"misc":true,"blog":true,"law":true}},"unycon-document-delete":{"groups":{"misc":true,"blog":true,"law":true}},"unycon-document-minus":{"groups":{"misc":true,"blog":true,"law":true}},"unycon-document-info":{"groups":{"misc":true,"blog":true,"law":true}},"unycon-document-warning":{"groups":{"misc":true,"blog":true,"law":true}},"unycon-document-question":{"groups":{"misc":true,"blog":true,"law":true}},"unycon-document-arrow":{"groups":{"misc":true,"blog":true,"law":true}},"unycon-document-stamp":{"groups":{"misc":true,"blog":true,"law":true}},"unycon-speech-bubble":{"groups":{"misc":true}},"unycon-speech-bubble-waiting":{"groups":{"misc":true}},"unycon-restaurant-plate":{"groups":{"food":true}},"unycon-bell2":{"groups":{"misc":true}},"unycon-spinner":{"groups":{"misc":true}},"unycon-kat":{"groups":{"misc":true}},"unycon-speech-bubble-blogger":{"groups":{"blog":true,"web":true}},"unycon-speech-bubble-phone":{"groups":{"misc":true}},"unycon-speech-bubble-rss":{"groups":{"misc":true,"web":true}},"unycon-speech-bubble-twitter":{"groups":{"web":true}},"unycon-speech-bubble-facebook":{"groups":{"web":true}},"unycon-speech-bubble-google-plus":{"groups":{"web":true}},"unycon-speech-bubble-twitter2":{"groups":{"web":true}},"unycon-speech-bubble-linkedin":{"groups":{"web":true}},"unycon-speech-bubble-warning":{"groups":{"misc":true}},"unycon-speech-bubble-info":{"groups":{"misc":true}},"unycon-martini":{"groups":{"food":true}},"unycon-light-bulb2":{"groups":{"misc":true}},"unycon-crop":{"groups":{"settings":true}},"unycon-hospital-plus":{"groups":{"medical":true}},"unycon-speech-bubble-text":{"groups":{"misc":true,"blog":true}},"unycon-speech-bubble-cog":{"groups":{"settings":true}},"unycon-speech-bubble-check":{"groups":{"misc":true}},"unycon-speech-bubble-delete":{"groups":{"misc":true}},"unycon-speech-bubble-plus":{"groups":{"misc":true}},"unycon-speech-bubble-minus":{"groups":{"misc":true}},"unycon-speech-bubble-search":{"groups":{"misc":true}},"unycon-speech-bubble-at":{"groups":{"misc":true,"web":true}},"unycon-speech-bubble-pen":{"groups":{"misc":true,"blog":true}},"unycon-speech-bubble-time":{"groups":{"misc":true,"delivery":true}},"unycon-email-open":{"groups":{"misc":true,"delivery":true,"web":true}},"unycon-pie-chart":{"groups":{"misc":true,"business":true}},"unycon-speech-bubbles":{"groups":{"misc":true,"blog":true,"web":true}},"unycon-twitter":{"groups":{"web":true}},"unycon-facebook":{"groups":{"web":true}},"unycon-blogger":{"groups":{"web":true}},"unycon-twitter2":{"groups":{"web":true}},"unycon-linkedin-square":{"groups":{"web":true}},"unycon-google-plus":{"groups":{"web":true}},"unycon-rss":{"groups":{"web":true}},"unycon-pencil2":{"groups":{"misc":true,"blog":true,"settings":true}},"unycon-ellipsis":{"groups":{"misc":true}},"unycon-orange":{"groups":{"misc":true}},"unycon-check-circle":{"groups":{"misc":true}},"unycon-bars":{"groups":{"misc":true}},"unycon-speech-bubble-star":{"groups":{"misc":true}},"unycon-speech-bubble-arrow":{"groups":{"misc":true}},"unycon-speech-bubble-arrow2":{"groups":{"misc":true,"web":true}},"unycon-speech-bubble-question":{"groups":{"misc":true}},"unycon-speech-bubble-network":{"groups":{"misc":true,"web":true}},"unycon-speech-bubble-pin":{"groups":{"misc":true}},"unycon-speech-bubble-heart":{"groups":{"misc":true}},"unycon-user-rss":{"groups":{"web":true}},"unycon-user-check":{"groups":{"misc":true}},"unycon-user-plus":{"groups":{"misc":true}},"unycon-user-delete":{"groups":{"misc":true}},"unycon-user-minus":{"groups":{"misc":true}},"unycon-user-info":{"groups":{"misc":true}},"unycon-user-warning":{"groups":{"misc":true}},"unycon-user-question":{"groups":{"misc":true}},"unycon-user-arrow":{"groups":{"misc":true}},"unycon-comment-dots":{"groups":{"misc":true,"blog":true}},"unycon-comment-text":{"groups":{"misc":true,"blog":true}},"unycon-copyright":{"groups":{"misc":true,"law":true,"web":true}},"unycon-food-plate":{"groups":{"food":true}},"unycon-star2":{"groups":{"misc":true}},"unycon-cloud":{"groups":{"misc":true,"web":true}},"unycon-diamond":{"groups":{"misc":true}},"unycon-unyson":{"groups":{"web":true}},"unycon-original":{"groups":{"misc":true,"law":true,"web":true}},"unycon-briefcase":{"groups":{"business":true}},"unycon-bar-chart":{"groups":{"misc":true}},"unycon-idea-doubt":{"groups":{"misc":true}},"unycon-master-card":{"groups":{"financial":true}},"unycon-visa":{"groups":{"financial":true}},"unycon-line-chart":{"groups":{"business":true,"financial":true}},"unycon-safe":{"groups":{"business":true,"financial":true}},"unycon-bank":{"groups":{"business":true,"financial":true}},"unycon-wine-bottle":{"groups":{"food":true}},"unycon-battery-full-h":{"groups":{"misc":true,"settings":true}},"unycon-dollar-bill":{"groups":{"financial":true}},"unycon-calendar":{"groups":{"misc":true,"delivery":true}},"unycon-calendar-check":{"groups":{"misc":true,"delivery":true}},"unycon-sound":{"groups":{"misc":true,"settings":true}},"unycon-arrow-circle-left-o":{"groups":{"misc":true}},"unycon-battery-half":{"groups":{"settings":true}},"unycon-calendar-plus":{"groups":{"misc":true,"delivery":true}},"unycon-calendar-delete":{"groups":{"misc":true,"delivery":true}},"unycon-calendar-minus":{"groups":{"misc":true,"delivery":true}},"unycon-calendar-info":{"groups":{"misc":true,"delivery":true}},"unycon-calendar-warning":{"groups":{"misc":true,"delivery":true}},"unycon-calendar-question":{"groups":{"misc":true,"delivery":true}},"unycon-calendar-arrow":{"groups":{"misc":true,"delivery":true}},"unycon-calendar-time":{"groups":{"misc":true,"delivery":true}},"unycon-calendar-deadline":{"groups":{"misc":true,"delivery":true}},"unycon-pie-chart2":{"groups":{"business":true}},"unycon-arrow-circle-up-o":{"groups":{"misc":true}},"unycon-battery-low":{"groups":{"settings":true}},"unycon-light-bulb3":{"groups":{"misc":true}},"unycon-heart":{"groups":{"misc":true}},"unycon-drawers":{"groups":{"misc":true}},"unycon-database":{"groups":{"misc":true,"web":true}},"unycon-handshake":{"groups":{"business":true}},"unycon-hot-drink":{"groups":{"food":true}},"unycon-piggy-bank2":{"groups":{"financial":true}},"unycon-cherries":{"groups":{"misc":true}},"unycon-arrow-circle-right-o":{"groups":{"misc":true}},"unycon-battery-low-h":{"groups":{"settings":true}},"unycon-business-woman":{"groups":{"business":true}},"unycon-business-man":{"groups":{"business":true}},"unycon-pencil3":{"groups":{"misc":true,"blog":true}},"unycon-user-promotion":{"groups":{"business":true}},"unycon-user-structure":{"groups":{"business":true}},"unycon-user-graph":{"groups":{"business":true}},"unycon-office-chair":{"groups":{"business":true}},"unycon-clipboard-check":{"groups":{"business":true}},"unycon-notebook":{"groups":{"misc":true,"blog":true}},"unycon-notebook-check":{"groups":{"misc":true,"blog":true}},"unycon-arrow-circle-down-o":{"groups":{"misc":true}},"unycon-battery-full":{"groups":{"settings":true}},"unycon-plug":{"groups":{"misc":true,"settings":true}},"unycon-heart-rate":{"groups":{"medical":true}},"unycon-notebook-plus":{"groups":{"misc":true,"blog":true}},"unycon-notebook-delete":{"groups":{"misc":true,"blog":true}},"unycon-notebook-minus":{"groups":{"misc":true,"blog":true}},"unycon-notebook-info":{"groups":{"misc":true,"blog":true}},"unycon-notebook-warning":{"groups":{"misc":true,"blog":true}},"unycon-notebook-question":{"groups":{"misc":true,"blog":true}},"unycon-notebook-arrow":{"groups":{"misc":true,"blog":true}},"unycon-notebook-time":{"groups":{"misc":true,"blog":true}},"unycon-notebook-deadline":{"groups":{"misc":true,"blog":true}},"unycon-event":{"groups":{"misc":true,"business":true}},"unycon-megaphone":{"groups":{"misc":true}},"unycon-arrow-circle-left":{"groups":{"misc":true}},"unycon-battery":{"groups":{"misc":true,"settings":true}},"unycon-socket":{"groups":{"misc":true,"settings":true}},"unycon-heart-plus":{"groups":{"medical":true}},"unycon-event-phone":{"groups":{"misc":true,"business":true}},"unycon-event-star":{"groups":{"misc":true,"business":true}},"unycon-event-check":{"groups":{"misc":true,"business":true}},"unycon-event-delete":{"groups":{"misc":true,"business":true}},"unycon-event-plus":{"groups":{"misc":true,"business":true,"medical":true}},"unycon-event-minus":{"groups":{"misc":true,"business":true}},"unycon-event-at":{"groups":{"misc":true,"business":true,"web":true}},"unycon-event-edit":{"groups":{"misc":true,"blog":true,"business":true}},"unycon-event-time":{"groups":{"misc":true,"business":true}},"unycon-email-warning":{"groups":{"misc":true}},"unycon-arrow-circle-up":{"groups":{"misc":true}},"unycon-accumulator":{"groups":{"misc":true}},"unycon-trompete2":{"groups":{"misc":true}},"unycon-event-cog":{"groups":{"misc":true,"business":true,"settings":true}},"unycon-event-arrow":{"groups":{"misc":true,"business":true,"web":true}},"unycon-event-location":{"groups":{"misc":true,"business":true,"web":true}},"unycon-event-heart":{"groups":{"misc":true,"business":true,"medical":true}},"unycon-event-gift":{"groups":{"misc":true,"business":true,"free":true}},"unycon-event-music":{"groups":{"misc":true,"business":true,"music":true}},"unycon-event-warning":{"groups":{"misc":true,"business":true}},"unycon-toxic":{"groups":{"misc":true}},"unycon-arrow-circle-right":{"groups":{"misc":true}},"unycon-hand-stop":{"groups":{"misc":true}},"unycon-arrow-circle-down":{"groups":{"misc":true}},"unycon-star-check":{"groups":{"misc":true}},"unycon-star-plus":{"groups":{"misc":true}},"unycon-star-delete":{"groups":{"misc":true}},"unycon-plane":{"groups":{"business":true,"travel":true}},"unycon-arrow-right-top":{"groups":{"misc":true,"web":true}},"unycon-stop-sign":{"groups":{"misc":true}},"unycon-star":{"groups":{"misc":true}},"unycon-butterfly-bow":{"groups":{"fashion":true}},"unycon-24h":{"groups":{"misc":true,"business":true,"shopping":true}},"unycon-event-checklist":{"groups":{"misc":true,"business":true}},"unycon-event-progress":{"groups":{"misc":true,"business":true}},"unycon-bluetooth":{"groups":{"settings":true}},"unycon-arrow-left-bottom":{"groups":{"misc":true}},"unycon-sparkle":{"groups":{"misc":true}},"unycon-cake":{"groups":{"food":true}},"unycon-hot-coffee":{"groups":{"food":true}},"unycon-free-tag":{"groups":{"free":true}},"unycon-arrow-right-bottom":{"groups":{"misc":true}},"unycon-sound-bars":{"groups":{"misc":true}},"unycon-free-paper":{"groups":{"blog":true,"free":true}},"unycon-free-download":{"groups":{"free":true}},"unycon-free-upload":{"groups":{}},"unycon-free-mail":{"groups":{"free":true}},"unycon-free-phone":{"groups":{"free":true}},"unycon-free-coffee":{"groups":{"food":true,"free":true}},"unycon-free-photo":{"groups":{"free":true,"photography":true}},"unycon-free-gift":{"groups":{"free":true}},"unycon-free-video":{"groups":{"free":true,"music":true}},"unycon-warning-circle2-o":{"groups":{"misc":true}},"unycon-arrow-left-top":{"groups":{"misc":true}},"unycon-worker":{"groups":{"business":true}},"unycon-free-recycle":{"groups":{"free":true}},"unycon-free-arrow":{"groups":{"free":true}},"unycon-free-barcode":{"groups":{"free":true}},"unycon-free-shopping":{"groups":{"free":true,"shopping":true}},"unycon-free-message":{"groups":{"free":true}},"unycon-free-wifi":{"groups":{"free":true}},"unycon-eating-utensils":{"groups":{"food":true}},"unycon-signal":{"groups":{"misc":true}},"unycon-angle-double-down":{"groups":{"misc":true}},"unycon-free-event":{"groups":{"business":true,"free":true}},"unycon-free-sign":{"groups":{"free":true,"shopping":true}},"unycon-free-mobile":{"groups":{"free":true}},"unycon-diamond2":{"groups":{"misc":true}},"unycon-angle-double-left":{"groups":{"misc":true}},"unycon-diamond-o":{"groups":{"misc":true}},"unycon-angle-double-up":{"groups":{"misc":true}},"unycon-star-circle":{"groups":{"misc":true}},"unycon-hair-styling":{"groups":{"fashion":true}},"unycon-angle-double-right":{"groups":{"misc":true}},"unycon-angle-down":{"groups":{"misc":true}},"unycon-musical-note":{"groups":{"music":true}},"unycon-bow-tie":{"groups":{"misc":true,"fashion":true}},"unycon-bow-tie2":{"groups":{"fashion":true}},"unycon-shirt-hanger":{"groups":{"fashion":true}},"unycon-scissors2":{"groups":{"fashion":true}},"unycon-pants":{"groups":{"fashion":true}},"unycon-tshirt2":{"groups":{"fashion":true}},"unycon-tshirt2-o":{"groups":{"fashion":true}},"unycon-mannequin":{"groups":{"fashion":true}},"unycon-beer":{"groups":{"food":true}},"unycon-angle-up":{"groups":{"misc":true}},"unycon-folder-plus2":{"groups":{"misc":true}},"unycon-umbrella":{"groups":{"weather":true}},"unycon-moustache":{"groups":{"fashion":true}},"unycon-angle-right":{"groups":{"misc":true}},"unycon-folder-delete":{"groups":{"misc":true}},"unycon-angle-left":{"groups":{"misc":true}},"unycon-face-man":{"groups":{"misc":true}},"unycon-bus":{"groups":{"travel":true}},"unycon-arrow-up":{"groups":{"misc":true}},"unycon-face-female":{"groups":{"misc":true}},"unycon-arrow-down":{"groups":{"misc":true}},"unycon-comment-o":{"groups":{"misc":true,"blog":true}},"unycon-arrow-left":{"groups":{"misc":true}},"unycon-direction-left":{"groups":{"travel":true}},"unycon-direction-right":{"groups":{"travel":true}},"unycon-intersection-left":{"groups":{"travel":true}},"unycon-intersection-right":{"groups":{"travel":true}},"unycon-map-marker2":{"groups":{"misc":true,"travel":true}},"unycon-map-marker-star":{"groups":{"misc":true,"travel":true}},"unycon-map-marker-circle":{"groups":{"misc":true,"travel":true}},"unycon-comment-half":{"groups":{"misc":true,"blog":true}},"unycon-arrow-right":{"groups":{"misc":true}},"unycon-map":{"groups":{"misc":true,"travel":true}},"unycon-target-location":{"groups":{"misc":true,"travel":true}},"unycon-waves":{"groups":{"misc":true}},"unycon-see-side":{"groups":{"travel":true}},"unycon-cake2":{"groups":{"food":true}},"unycon-comment":{"groups":{"misc":true,"blog":true}},"unycon-arrows-both-ways":{"groups":{"misc":true}},"unycon-headphones":{"groups":{"music":true}},"unycon-map-tracking":{"groups":{"travel":true}},"unycon-marker-parking":{"groups":{"travel":true}},"unycon-marker-hospital":{"groups":{"travel":true}},"unycon-house":{"groups":{"misc":true,"real_estate":true,"travel":true}},"unycon-house2":{"groups":{"business":true,"real_estate":true,"travel":true}},"unycon-cabin":{"groups":{"real_estate":true,"travel":true}},"unycon-house3":{"groups":{"business":true,"real_estate":true,"travel":true}},"unycon-house4":{"groups":{"real_estate":true,"travel":true}},"unycon-building":{"groups":{"business":true,"real_estate":true,"travel":true}},"unycon-building3":{"groups":{"business":true,"real_estate":true,"travel":true}},"unycon-soda":{"groups":{"food":true}},"unycon-musical-key":{"groups":{"music":true,"real_estate":true}},"unycon-building5":{"groups":{"business":true,"real_estate":true,"travel":true}},"unycon-building6":{"groups":{"business":true,"real_estate":true,"travel":true}},"unycon-house5":{"groups":{"real_estate":true,"travel":true}},"unycon-house-square":{"groups":{"real_estate":true,"travel":true}},"unycon-house6":{"groups":{"real_estate":true,"travel":true}},"unycon-house-search":{"groups":{"real_estate":true,"travel":true}},"unycon-sales-woman":{"groups":{"business":true,"real_estate":true}},"unycon-landlord":{"groups":{"business":true,"real_estate":true}},"unycon-sold-sign":{"groups":{"business":true,"real_estate":true}},"unycon-upload":{"groups":{"misc":true,"web":true}},"unycon-man-in-glasses":{"groups":{"misc":true}},"unycon-rent-sign":{"groups":{"business":true,"real_estate":true}},"unycon-sale-sign":{"groups":{"business":true,"real_estate":true}},"unycon-house-sale":{"groups":{"business":true,"real_estate":true}},"unycon-house-rent":{"groups":{"business":true,"real_estate":true}},"unycon-house-search2":{"groups":{"real_estate":true}},"unycon-sales-man":{"groups":{"real_estate":true}},"unycon-sales-man2":{"groups":{"real_estate":true}},"unycon-sales-man3":{"groups":{"real_estate":true}},"unycon-rent-sale":{"groups":{"business":true,"real_estate":true}},"unycon-cross-square":{"groups":{"misc":true,"medical":true}},"unycon-download":{"groups":{"misc":true,"web":true}},"unycon-head-phones":{"groups":{"business":true,"music":true}},"unycon-unyson-o":{"groups":{"web":true}},"unycon-woman":{"groups":{"misc":true,"business":true,"fashion":true}},"unycon-man":{"groups":{"misc":true,"business":true}},"unycon-house7":{"groups":{"real_estate":true,"travel":true}},"unycon-house-key":{"groups":{"real_estate":true}},"unycon-key2":{"groups":{"misc":true,"real_estate":true}},"unycon-cross-square-o":{"groups":{"misc":true,"medical":true}},"unycon-stop-circle":{"groups":{"misc":true}},"unycon-money-bag":{"groups":{"financial":true}},"unycon-head-phones1":{"groups":{"music":true}},"unycon-key3":{"groups":{"misc":true,"real_estate":true}},"unycon-house8":{"groups":{"real_estate":true,"travel":true}},"unycon-sale-sign2":{"groups":{"business":true,"real_estate":true}},"unycon-house9":{"groups":{"real_estate":true}},"unycon-minus-circle2":{"groups":{"misc":true}},"unycon-drop":{"groups":{"misc":true,"weather":true}},"unycon-plus-circle":{"groups":{"misc":true}},"unycon-peace-circle":{"groups":{"symbols":true}},"unycon-ying-yang":{"groups":{"symbols":true}},"unycon-peace-heart":{"groups":{"symbols":true}},"unycon-first-aid-kit":{"groups":{"medical":true}},"unycon-check-circle-o":{"groups":{"misc":true}},"unycon-darts":{"groups":{"misc":true}},"unycon-pigeon":{"groups":{"misc":true,"symbols":true}},"unycon-delete-circle2":{"groups":{"misc":true}},"unycon-eye-dropper":{"groups":{"settings":true}},"unycon-info-circle":{"groups":{"misc":true}},"unycon-go":{"groups":{"misc":true}},"unycon-usd-circle":{"groups":{"currency":true,"financial":true}},"unycon-euro-circle":{"groups":{"currency":true,"financial":true}},"unycon-pound-circle":{"groups":{"currency":true,"financial":true}},"unycon-yen-circle":{"groups":{"currency":true,"financial":true}},"unycon-rouble-circle":{"groups":{"currency":true,"financial":true}},"unycon-bitcoin-circle":{"groups":{"currency":true,"financial":true}},"unycon-lira-circle":{"groups":{"currency":true,"financial":true}},"unycon-rupee-circle":{"groups":{"currency":true,"financial":true}},"unycon-warning-circle":{"groups":{"misc":true}},"unycon-shekel-circle":{"groups":{"currency":true,"financial":true}},"unycon-rand-circle":{"groups":{"misc":true}},"unycon-usd":{"groups":{"currency":true,"financial":true}},"unycon-euro":{"groups":{"currency":true,"financial":true}},"unycon-pound":{"groups":{"currency":true,"financial":true}},"unycon-yen":{"groups":{"currency":true,"financial":true}},"unycon-rouble":{"groups":{"currency":true,"financial":true}},"unycon-bitcoin":{"groups":{"currency":true,"financial":true}},"unycon-lira":{"groups":{"currency":true,"financial":true}},"unycon-rupee":{"groups":{"currency":true,"financial":true}},"unycon-stethoscope":{"groups":{"medical":true}},"unycon-power-off":{"groups":{"misc":true}},"unycon-syringe":{"groups":{"medical":true}},"unycon-play-circle":{"groups":{"music":true}},"unycon-lao-kip":{"groups":{"currency":true,"financial":true}},"unycon-shekel":{"groups":{"currency":true,"financial":true}},"unycon-rand":{"groups":{"currency":true,"financial":true}},"unycon-usd-exchange":{"groups":{"currency":true,"financial":true}},"unycon-euro-exchange":{"groups":{"currency":true,"financial":true}},"unycon-pound-exchange":{"groups":{"currency":true,"financial":true}},"unycon-yen-exchange":{"groups":{"currency":true,"financial":true}},"unycon-rouble-exchange":{"groups":{"currency":true,"financial":true}},"unycon-bitcoin-exchange":{"groups":{"financial":true,"currency":true}},"unycon-lira-exchange":{"groups":{"currency":true,"financial":true}},"unycon-clock":{"groups":{"misc":true}},"unycon-key":{"groups":{"misc":true}},"unycon-themefuse-o":{"groups":{"web":true}},"unycon-rupee-exchange":{"groups":{"currency":true,"financial":true}},"unycon-lao-kip-exchange":{"groups":{"financial":true,"currency":true}},"unycon-shekel-exchange":{"groups":{"currency":true,"financial":true}},"unycon-rand-exchange":{"groups":{"currency":true,"financial":true}},"unycon-usd-shield-o":{"groups":{"currency":true,"financial":true}},"unycon-eur-shield-o":{"groups":{"currency":true,"financial":true}},"unycon-pound-shield-o":{"groups":{"currency":true,"financial":true}},"unycon-yen-shield-o":{"groups":{"financial":true,"currency":true}},"unycon-rouble-shield-o":{"groups":{"currency":true,"financial":true}},"unycon-bitcoin-shield-o":{"groups":{"currency":true,"financial":true}},"unycon-joystick2":{"groups":{"kids":true}},"unycon-lira-shield-o":{"groups":{"currency":true,"financial":true}},"unycon-rupee-shield-o":{"groups":{"currency":true,"financial":true}},"unycon-lao-kip-shield-o":{"groups":{"currency":true,"financial":true}},"unycon-shekel-shield-o":{"groups":{"currency":true,"financial":true}},"unycon-rand-shield-o":{"groups":{"financial":true,"currency":true}},"unycon-money-usd":{"groups":{"currency":true,"financial":true}},"unycon-money-euro":{"groups":{"currency":true,"financial":true}},"unycon-money-pound":{"groups":{"currency":true,"financial":true}},"unycon-money-yen":{"groups":{"currency":true,"financial":true}},"unycon-money-rouble":{"groups":{"currency":true,"financial":true}},"unycon-caduceus":{"groups":{"medical":true}},"unycon-hours-24":{"groups":{"business":true,"shopping":true}},"unycon-pages-up":{"groups":{"misc":true,"settings":true}},"unycon-music-volume":{"groups":{"music":true,"settings":true}},"unycon-money-bitcoin":{"groups":{"currency":true,"financial":true}},"unycon-money-lira":{"groups":{"currency":true,"financial":true}},"unycon-money-rupee":{"groups":{"currency":true,"financial":true}},"unycon-money-lao-kip":{"groups":{"currency":true,"financial":true}},"unycon-money-shekel":{"groups":{"currency":true,"financial":true}},"unycon-money-rand":{"groups":{"currency":true,"financial":true}},"unycon-usd-bills":{"groups":{"currency":true,"financial":true}},"unycon-euro-bills":{"groups":{"currency":true,"financial":true}},"unycon-pound-bills":{"groups":{"currency":true,"financial":true}},"unycon-yen-bills":{"groups":{"currency":true,"financial":true}},"unycon-syringe2":{"groups":{"medical":true}},"unycon-pages-down":{"groups":{"settings":true,"misc":true}},"unycon-music-volume-off":{"groups":{"settings":true,"music":true}},"unycon-rouble-bills":{"groups":{"currency":true,"financial":true}},"unycon-bitcoin-bills":{"groups":{"currency":true,"financial":true}},"unycon-lira-bills":{"groups":{"currency":true,"financial":true}},"unycon-rupee-bills":{"groups":{"currency":true,"financial":true}},"unycon-lao-kip-bills":{"groups":{"currency":true,"financial":true}},"unycon-shekel-bills":{"groups":{"currency":true,"financial":true}},"unycon-rand-bills":{"groups":{"currency":true,"financial":true}},"unycon-credit-cards2":{"groups":{"financial":true}},"unycon-cash-bag2":{"groups":{"financial":true}},"unycon-wallet2":{"groups":{"financial":true}},"unycon-music-volume-off2":{"groups":{"settings":true,"music":true}},"unycon-currency-bill":{"groups":{"financial":true}},"unycon-bank2":{"groups":{"financial":true,"business":true}},"unycon-usd-circle-o":{"groups":{"currency":true,"financial":true}},"unycon-usd-rate":{"groups":{"financial":true}},"unycon-business-stats":{"groups":{"business":true}},"unycon-money-stack":{"groups":{"financial":true}},"unycon-nurse":{"groups":{"medical":true}},"unycon-anchor":{"groups":{"misc":true}},"unycon-ipod":{"groups":{"music":true}},"unycon-deal":{"groups":{"business":true}},"unycon-currency-exchange":{"groups":{"currency":true,"financial":true}},"unycon-euro-circle-o":{"groups":{"currency":true,"financial":true}},"unycon-safe-case":{"groups":{"business":true}},"unycon-bitcoin-circle-o":{"groups":{"currency":true,"financial":true}},"unycon-currency-circle-o":{"groups":{"currency":true,"financial":true}},"unycon-currency-circle":{"groups":{"currency":true,"financial":true}},"unycon-calculator":{"groups":{"financial":true,"misc":true}},"unycon-ambulance":{"groups":{"medical":true}},"unycon-gears":{"groups":{"settings":true}},"unycon-music-volume-bars":{"groups":{"music":true,"settings":true}},"unycon-clepsydra":{"groups":{"misc":true}},"unycon-presentation-board":{"groups":{"business":true}},"unycon-pie-chart22":{"groups":{"business":true}},"unycon-percentage-circle":{"groups":{"business":true,"shopping":true}},"unycon-tooth":{"groups":{"medical":true}},"unycon-wrench2":{"groups":{"settings":true}},"unycon-zoom-out":{"groups":{"settings":true}},"unycon-usd-exchange2":{"groups":{"financial":true,"currency":true}},"unycon-cash-register":{"groups":{"financial":true}},"unycon-tag-o":{"groups":{"misc":true}},"unycon-money-stack2":{"groups":{"financial":true}},"unycon-tag-usd":{"groups":{"financial":true}},"unycon-laptop-usd-o":{"groups":{"financial":true}},"unycon-laptop-usd":{"groups":{"financial":true}},"unycon-health-card":{"groups":{"medical":true}},"unycon-sharing":{"groups":{"web":true,"misc":true}},"unycon-zoom-in":{"groups":{"settings":true}},"unycon-gift2":{"groups":{"misc":true,"free":true}},"unycon-laptop-graph":{"groups":{"business":true}},"unycon-lightning2":{"groups":{"settings":true,"photography":true}},"unycon-link2":{"groups":{"web":true,"misc":true}},"unycon-zoom":{"groups":{"settings":true,"misc":true}},"unycon-cloud-rain":{"groups":{"weather":true}},"unycon-snow":{"groups":{"weather":true}},"unycon-rain-snow":{"groups":{"weather":true}},"unycon-cloud-lightning":{"groups":{"weather":true}},"unycon-sun-cloud":{"groups":{"weather":true}},"unycon-cloud2":{"groups":{"weather":true}},"unycon-sun":{"groups":{"weather":true}},"unycon-sun2":{"groups":{"weather":true}},"unycon-sun-o":{"groups":{"weather":true}},"unycon-clouds":{"groups":{"weather":true}},"unycon-wifi2":{"groups":{"settings":true}},"unycon-auction-hammer":{"groups":{"law":true}},"unycon-themefuse":{"groups":{"web":true}},"unycon-night":{"groups":{"travel":true}},"unycon-night-snow":{"groups":{"weather":true}},"unycon-night-lightning":{"groups":{"weather":true}},"unycon-umbrella2":{"groups":{"weather":true}},"unycon-moon2":{"groups":{"weather":true}},"unycon-moon-phase":{"groups":{"weather":true}},"unycon-moon-phase2":{"groups":{"weather":true}},"unycon-trash":{"groups":{"misc":true}},"unycon-hand":{"groups":{"misc":true}},"unycon-music-notes":{"groups":{"music":true}},"unycon-rain2":{"groups":{"weather":true}},"unycon-snow2":{"groups":{"weather":true}},"unycon-sun-rain":{"groups":{"weather":true}},"unycon-sun-snow":{"groups":{"weather":true}},"unycon-rainbow":{"groups":{"weather":true}},"unycon-male-sign-thin":{"groups":{"misc":true}},"unycon-pencil4":{"groups":{"settings":true,"misc":true}},"unycon-na":{"groups":{"misc":true}},"unycon-home":{"groups":{"real_estate":true}},"unycon-cloud-rain3":{"groups":{"weather":true}},"unycon-snow22":{"groups":{"weather":true}},"unycon-rain-snow2":{"groups":{"weather":true}},"unycon-sun-cloud2":{"groups":{"weather":true}},"unycon-night2":{"groups":{"weather":true}},"unycon-home2":{"groups":{"real_estate":true}},"unycon-id-card":{"groups":{"law":true}},"unycon-hospital-square":{"groups":{"travel":true,"medical":true}},"unycon-file-edit":{"groups":{"blog":true,"misc":true}},"unycon-ruler":{"groups":{"settings":true}},"unycon-mechanical-pen":{"groups":{"settings":true}},"unycon-edit-card":{"groups":{"blog":true}},"unycon-presentation-board3":{"groups":{"business":true}},"unycon-file-word":{"groups":{"misc":true}},"unycon-mobile":{"groups":{"misc":true}},"unycon-folder-open3":{"groups":{"misc":true}},"unycon-folder-plus3":{"groups":{"misc":true}},"unycon-slider":{"groups":{"misc":true}},"unycon-refresh":{"groups":{"misc":true}},"unycon-briefcase2":{"groups":{"business":true}},"unycon-hospital-marker-h":{"groups":{"travel":true,"medical":true}},"unycon-footprint":{"groups":{"misc":true}},"unycon-plus-circle-o":{"groups":{"misc":true,"medical":true}},"unycon-hospital-marker-plus":{"groups":{"medical":true,"travel":true}},"unycon-file-powerpoint":{"groups":{"misc":true}},"unycon-mobile-user":{"groups":{"misc":true}},"unycon-mail":{"groups":{"misc":true}},"unycon-playlist":{"groups":{"misc":true}},"unycon-controls2":{"groups":{"settings":true}},"unycon-rent":{"groups":{"real_estate":true,"business":true}},"unycon-sold":{"groups":{"business":true,"real_estate":true}},"unycon-slider2":{"groups":{"misc":true}},"unycon-key32":{"groups":{"misc":true,"real_estate":true}},"unycon-rocking-horse":{"groups":{"kids":true}},"unycon-teddy-bear":{"groups":{"kids":true}},"unycon-abc":{"groups":{"kids":true}},"unycon-duck-toy":{"groups":{"kids":true}},"unycon-spintop":{"groups":{"kids":true}},"unycon-bike":{"groups":{"kids":true,"travel":true}},"unycon-file":{"groups":{"misc":true}},"unycon-watches":{"groups":{"misc":true,"fashion":true}},"unycon-stroller":{"groups":{"kids":true}},"unycon-pacifier":{"groups":{"kids":true}},"unycon-milk-bottle":{"groups":{"kids":true}},"unycon-baby":{"groups":{"kids":true}},"unycon-file-warning":{"groups":{"misc":true}},"unycon-comment-add":{"groups":{"misc":true,"blog":true}},"unycon-hand-right":{"groups":{"misc":true}},"unycon-gamepad":{"groups":{"kids":true}},"unycon-scale2":{"groups":{"law":true}},"unycon-gavel":{"groups":{"law":true}},"unycon-justice-building":{"groups":{"law":true}},"unycon-search":{"groups":{"misc":true}},"unycon-disabled":{"groups":{"medical":true}},"unycon-comment-remove":{"groups":{"blog":true,"misc":true}},"unycon-hand-left":{"groups":{"misc":true}},"unycon-building-column":{"groups":{"misc":true}},"unycon-phone-talk":{"groups":{"misc":true}},"unycon-equalizer":{"groups":{"music":true}},"unycon-sheriff-star":{"groups":{"misc":true}},"unycon-aim":{"groups":{"misc":true}},"unycon-lawyer2":{"groups":{"law":true,"business":true}},"unycon-mic":{"groups":{"music":true,"settings":true}},"unycon-license":{"groups":{"law":true}},"unycon-graduation-hat":{"groups":{"misc":true}},"unycon-lock":{"groups":{"misc":true}},"unycon-file-fill":{"groups":{"medical":true}},"unycon-mic-off":{"groups":{"settings":true,"music":true}},"unycon-check-square":{"groups":{"misc":true}},"unycon-thick-glasses":{"groups":{"medical":true,"misc":true}},"unycon-user-id":{"groups":{"law":true,"misc":true}},"unycon-ie":{"groups":{"web":true}},"unycon-chrome":{"groups":{"web":true}},"unycon-firefox":{"groups":{"web":true}},"unycon-youtube":{"groups":{"web":true}},"unycon-twitter3":{"groups":{"web":true}},"unycon-app-store":{"groups":{"web":true}},"unycon-arrows":{"groups":{"settings":true}},"unycon-music":{"groups":{"music":true}},"unycon-close-square":{"groups":{"misc":true}},"unycon-app-store-circle":{"groups":{"web":true}},"unycon-safari":{"groups":{"web":true}},"unycon-windows-store":{"groups":{"web":true}},"unycon-dropbox":{"groups":{"web":true}},"unycon-amazon":{"groups":{"web":true}},"unycon-at":{"groups":{"web":true}},"unycon-drive-cloud":{"groups":{"web":true}},"unycon-wikipedia":{"groups":{"web":true}},"unycon-wordpress":{"groups":{"web":true}},"unycon-globe":{"groups":{"web":true}}};
</script>
</body>
</html>