diff --git a/app.py b/app.py
index 2a2e6b0..74878f5 100644
--- a/app.py
+++ b/app.py
@@ -12,7 +12,13 @@ define('port',default='9000',help='Listening port',type=int) #定义如何接受
class Application(tornado.web.Application): #引入Application类,重写方法,这样做的好处在于可以自定义,添加另一些功能
def __init__(self):
handlers = [
- (r'/',main.IndexHandler),
+ (r'/',main.Open_Index_Zh_Handler),
+ (r'/index_test',main.IndexHandler),
+ (r'/index',main.Index_Zh_Handler),
+ (r'/index_Zh',main.Index_Zh_Handler),
+ (r'/index_En',main.Index_En_Handler),
+ (r'/open_index_Zh',main.Open_Index_Zh_Handler),
+ (r'/open_index_En',main.Open_Index_En_Handler),
(r'/login',auth.LoginHandler),
(r'/logout',auth.LogoutHandler),
(r'/register',auth.RegisterHandler),
@@ -28,6 +34,7 @@ class Application(tornado.web.Application): #引入Application类,重写方
]
settings = dict(
debug = False, #调试模式,修改后自动重启服务,不需要自动重启,生产情况下切勿开启,安全性
+ # autoescape = None,
template_path='template', #模板文件目录,想要Tornado能够正确的找到html文件,需要在 Application 中指定文件的位置
static_path='static', #静态文件目录,可用于用于访问js,css,图片之类的添加此配置之后,tornado就能自己找到静态文件
login_url='/login', #没有登录则跳转至此
diff --git a/handler/__pycache__/auth.cpython-36.pyc b/handler/__pycache__/auth.cpython-36.pyc
index 2612f52..9d219e1 100644
Binary files a/handler/__pycache__/auth.cpython-36.pyc and b/handler/__pycache__/auth.cpython-36.pyc differ
diff --git a/handler/__pycache__/main.cpython-36.pyc b/handler/__pycache__/main.cpython-36.pyc
index 0c2136b..7f64ed6 100644
Binary files a/handler/__pycache__/main.cpython-36.pyc and b/handler/__pycache__/main.cpython-36.pyc differ
diff --git a/handler/auth.py b/handler/auth.py
index 21c4c08..4f59e4d 100644
--- a/handler/auth.py
+++ b/handler/auth.py
@@ -25,7 +25,7 @@ class LoginHandler(AuthBaseHandler):
else:
Mongo.connect(DataBase='example',Collection=username)
Mongo.update(behavior='login',tags='auth')
- self.redirect('/')
+ self.redirect('/index')
else:
self.write({'msg':'login fail'}) #不通过,有问题
diff --git a/handler/main.py b/handler/main.py
index b5ee32b..2d6e685 100644
--- a/handler/main.py
+++ b/handler/main.py
@@ -8,10 +8,10 @@ class AuthBaseHandler(tornado.web.RequestHandler,SessionMixin):
return self.session.get('username',None) #session是一种会话状态,跟数据库的session可能不一样
#添加装饰器,装饰需要验证的请求
-class IndexHandler(AuthBaseHandler):
-
+class IndexHandler(AuthBaseHandler):
@tornado.web.authenticated #@tornado.web.authenticated装饰器包裹get方法时,表示这个方法只有在用户合法时才会调用,authenticated装饰器会调用get_current_user()方法获取current_user的值,若值为False,则重定向到登录url装饰器判断有没有登录,如果没有则跳转到配置的路由下去,但是要在app.py里面设置login_url
def get(self,*args,**kwargs):
+ # self.render('main/index_Zh.html')
username = self.get_current_user()
self.render('index.html',user=username)
@@ -28,3 +28,28 @@ class TestHandler(AuthBaseHandler):
self.write("success")
+#添加装饰器,装饰需要验证的请求
+class Index_Zh_Handler(AuthBaseHandler):
+
+ @tornado.web.authenticated
+ def get(self,*args,**kwargs):
+ self.render('main/index_Zh.html')
+
+#添加装饰器,装饰需要验证的请求
+class Index_En_Handler(AuthBaseHandler):
+
+ @tornado.web.authenticated
+ def get(self,*args,**kwargs):
+ self.render('main/index_En.html')
+
+#添加装饰器,装饰需要验证的请求
+class Open_Index_Zh_Handler(tornado.web.RequestHandler):
+
+ def get(self,*args,**kwargs):
+ self.render('main/open_index_Zh.html')
+
+#添加装饰器,装饰需要验证的请求
+class Open_Index_En_Handler(tornado.web.RequestHandler):
+
+ def get(self,*args,**kwargs):
+ self.render('main/open_index_En.html')
\ No newline at end of file
diff --git a/static/main/css/aos.css b/static/main/css/aos.css
new file mode 100644
index 0000000..4f62d5d
--- /dev/null
+++ b/static/main/css/aos.css
@@ -0,0 +1,2 @@
+[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translate(0)}[data-aos=fade-up]{transform:translateY(100px)}[data-aos=fade-down]{transform:translateY(-100px)}[data-aos=fade-right]{transform:translate(-100px)}[data-aos=fade-left]{transform:translate(100px)}[data-aos=fade-up-right]{transform:translate(-100px,100px)}[data-aos=fade-up-left]{transform:translate(100px,100px)}[data-aos=fade-down-right]{transform:translate(-100px,-100px)}[data-aos=fade-down-left]{transform:translate(100px,-100px)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translate(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translateY(100px) scale(.6)}[data-aos=zoom-in-down]{transform:translateY(-100px) scale(.6)}[data-aos=zoom-in-right]{transform:translate(-100px) scale(.6)}[data-aos=zoom-in-left]{transform:translate(100px) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translateY(100px) scale(1.2)}[data-aos=zoom-out-down]{transform:translateY(-100px) scale(1.2)}[data-aos=zoom-out-right]{transform:translate(-100px) scale(1.2)}[data-aos=zoom-out-left]{transform:translate(100px) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translate(0)}[data-aos=slide-up]{transform:translateY(100%)}[data-aos=slide-down]{transform:translateY(-100%)}[data-aos=slide-right]{transform:translateX(-100%)}[data-aos=slide-left]{transform:translateX(100%)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}
+/*# sourceMappingURL=aos.css.map*/
\ No newline at end of file
diff --git a/static/main/css/bootstrap-datepicker.css b/static/main/css/bootstrap-datepicker.css
new file mode 100644
index 0000000..a6c8899
--- /dev/null
+++ b/static/main/css/bootstrap-datepicker.css
@@ -0,0 +1,471 @@
+/*!
+ * Datepicker for Bootstrap v1.6.4 (https://github.com/eternicode/bootstrap-datepicker)
+ *
+ * Copyright 2012 Stefan Petre
+ * Improvements by Andrew Rowls
+ * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
+ */
+.datepicker {
+ padding: 4px;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ direction: ltr;
+}
+.datepicker-inline {
+ width: 220px;
+}
+.datepicker.datepicker-rtl {
+ direction: rtl;
+}
+.datepicker.datepicker-rtl table tr td span {
+ float: right;
+}
+.datepicker-dropdown {
+ top: 0;
+ left: 0;
+}
+.datepicker-dropdown:before {
+ content: '';
+ display: inline-block;
+ border-left: 7px solid transparent;
+ border-right: 7px solid transparent;
+ border-bottom: 7px solid #999;
+ border-top: 0;
+ border-bottom-color: rgba(0, 0, 0, 0.2);
+ position: absolute;
+}
+.datepicker-dropdown:after {
+ content: '';
+ display: inline-block;
+ border-left: 6px solid transparent;
+ border-right: 6px solid transparent;
+ border-bottom: 6px solid #fff;
+ border-top: 0;
+ position: absolute;
+}
+.datepicker-dropdown.datepicker-orient-left:before {
+ left: 6px;
+}
+.datepicker-dropdown.datepicker-orient-left:after {
+ left: 7px;
+}
+.datepicker-dropdown.datepicker-orient-right:before {
+ right: 6px;
+}
+.datepicker-dropdown.datepicker-orient-right:after {
+ right: 7px;
+}
+.datepicker-dropdown.datepicker-orient-bottom:before {
+ top: -7px;
+}
+.datepicker-dropdown.datepicker-orient-bottom:after {
+ top: -6px;
+}
+.datepicker-dropdown.datepicker-orient-top:before {
+ bottom: -7px;
+ border-bottom: 0;
+ border-top: 7px solid #999;
+}
+.datepicker-dropdown.datepicker-orient-top:after {
+ bottom: -6px;
+ border-bottom: 0;
+ border-top: 6px solid #fff;
+}
+.datepicker table {
+ margin: 0;
+ -webkit-touch-callout: none;
+ -webkit-user-select: none;
+ -khtml-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.datepicker td,
+.datepicker th {
+ text-align: center;
+ width: 20px;
+ height: 20px;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ border: none;
+}
+.table-striped .datepicker table tr td,
+.table-striped .datepicker table tr th {
+ background-color: transparent;
+}
+.datepicker table tr td.day:hover,
+.datepicker table tr td.day.focused {
+ background: #eee;
+ cursor: pointer;
+}
+.datepicker table tr td.old,
+.datepicker table tr td.new {
+ color: #999;
+}
+.datepicker table tr td.disabled,
+.datepicker table tr td.disabled:hover {
+ background: none;
+ color: #999;
+ cursor: default;
+}
+.datepicker table tr td.highlighted {
+ background: #d9edf7;
+ border-radius: 0;
+}
+.datepicker table tr td.today,
+.datepicker table tr td.today:hover,
+.datepicker table tr td.today.disabled,
+.datepicker table tr td.today.disabled:hover {
+ background-color: #fde19a;
+ background-image: -moz-linear-gradient(to bottom, #fdd49a, #fdf59a);
+ background-image: -ms-linear-gradient(to bottom, #fdd49a, #fdf59a);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
+ background-image: -webkit-linear-gradient(to bottom, #fdd49a, #fdf59a);
+ background-image: -o-linear-gradient(to bottom, #fdd49a, #fdf59a);
+ background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
+ border-color: #fdf59a #fdf59a #fbed50;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+ color: #000;
+}
+.datepicker table tr td.today:hover,
+.datepicker table tr td.today:hover:hover,
+.datepicker table tr td.today.disabled:hover,
+.datepicker table tr td.today.disabled:hover:hover,
+.datepicker table tr td.today:active,
+.datepicker table tr td.today:hover:active,
+.datepicker table tr td.today.disabled:active,
+.datepicker table tr td.today.disabled:hover:active,
+.datepicker table tr td.today.active,
+.datepicker table tr td.today:hover.active,
+.datepicker table tr td.today.disabled.active,
+.datepicker table tr td.today.disabled:hover.active,
+.datepicker table tr td.today.disabled,
+.datepicker table tr td.today:hover.disabled,
+.datepicker table tr td.today.disabled.disabled,
+.datepicker table tr td.today.disabled:hover.disabled,
+.datepicker table tr td.today[disabled],
+.datepicker table tr td.today:hover[disabled],
+.datepicker table tr td.today.disabled[disabled],
+.datepicker table tr td.today.disabled:hover[disabled] {
+ background-color: #fdf59a;
+}
+.datepicker table tr td.today:active,
+.datepicker table tr td.today:hover:active,
+.datepicker table tr td.today.disabled:active,
+.datepicker table tr td.today.disabled:hover:active,
+.datepicker table tr td.today.active,
+.datepicker table tr td.today:hover.active,
+.datepicker table tr td.today.disabled.active,
+.datepicker table tr td.today.disabled:hover.active {
+ background-color: #fbf069 \9;
+}
+.datepicker table tr td.today:hover:hover {
+ color: #000;
+}
+.datepicker table tr td.today.active:hover {
+ color: #fff;
+}
+.datepicker table tr td.range,
+.datepicker table tr td.range:hover,
+.datepicker table tr td.range.disabled,
+.datepicker table tr td.range.disabled:hover {
+ background: #eee;
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+}
+.datepicker table tr td.range.today,
+.datepicker table tr td.range.today:hover,
+.datepicker table tr td.range.today.disabled,
+.datepicker table tr td.range.today.disabled:hover {
+ background-color: #f3d17a;
+ background-image: -moz-linear-gradient(to bottom, #f3c17a, #f3e97a);
+ background-image: -ms-linear-gradient(to bottom, #f3c17a, #f3e97a);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3c17a), to(#f3e97a));
+ background-image: -webkit-linear-gradient(to bottom, #f3c17a, #f3e97a);
+ background-image: -o-linear-gradient(to bottom, #f3c17a, #f3e97a);
+ background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
+ border-color: #f3e97a #f3e97a #edde34;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+}
+.datepicker table tr td.range.today:hover,
+.datepicker table tr td.range.today:hover:hover,
+.datepicker table tr td.range.today.disabled:hover,
+.datepicker table tr td.range.today.disabled:hover:hover,
+.datepicker table tr td.range.today:active,
+.datepicker table tr td.range.today:hover:active,
+.datepicker table tr td.range.today.disabled:active,
+.datepicker table tr td.range.today.disabled:hover:active,
+.datepicker table tr td.range.today.active,
+.datepicker table tr td.range.today:hover.active,
+.datepicker table tr td.range.today.disabled.active,
+.datepicker table tr td.range.today.disabled:hover.active,
+.datepicker table tr td.range.today.disabled,
+.datepicker table tr td.range.today:hover.disabled,
+.datepicker table tr td.range.today.disabled.disabled,
+.datepicker table tr td.range.today.disabled:hover.disabled,
+.datepicker table tr td.range.today[disabled],
+.datepicker table tr td.range.today:hover[disabled],
+.datepicker table tr td.range.today.disabled[disabled],
+.datepicker table tr td.range.today.disabled:hover[disabled] {
+ background-color: #f3e97a;
+}
+.datepicker table tr td.range.today:active,
+.datepicker table tr td.range.today:hover:active,
+.datepicker table tr td.range.today.disabled:active,
+.datepicker table tr td.range.today.disabled:hover:active,
+.datepicker table tr td.range.today.active,
+.datepicker table tr td.range.today:hover.active,
+.datepicker table tr td.range.today.disabled.active,
+.datepicker table tr td.range.today.disabled:hover.active {
+ background-color: #efe24b \9;
+}
+.datepicker table tr td.selected,
+.datepicker table tr td.selected:hover,
+.datepicker table tr td.selected.disabled,
+.datepicker table tr td.selected.disabled:hover {
+ background-color: #9e9e9e;
+ background-image: -moz-linear-gradient(to bottom, #b3b3b3, #808080);
+ background-image: -ms-linear-gradient(to bottom, #b3b3b3, #808080);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b3b3b3), to(#808080));
+ background-image: -webkit-linear-gradient(to bottom, #b3b3b3, #808080);
+ background-image: -o-linear-gradient(to bottom, #b3b3b3, #808080);
+ background-image: linear-gradient(to bottom, #b3b3b3, #808080);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
+ border-color: #808080 #808080 #595959;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+ color: #fff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+.datepicker table tr td.selected:hover,
+.datepicker table tr td.selected:hover:hover,
+.datepicker table tr td.selected.disabled:hover,
+.datepicker table tr td.selected.disabled:hover:hover,
+.datepicker table tr td.selected:active,
+.datepicker table tr td.selected:hover:active,
+.datepicker table tr td.selected.disabled:active,
+.datepicker table tr td.selected.disabled:hover:active,
+.datepicker table tr td.selected.active,
+.datepicker table tr td.selected:hover.active,
+.datepicker table tr td.selected.disabled.active,
+.datepicker table tr td.selected.disabled:hover.active,
+.datepicker table tr td.selected.disabled,
+.datepicker table tr td.selected:hover.disabled,
+.datepicker table tr td.selected.disabled.disabled,
+.datepicker table tr td.selected.disabled:hover.disabled,
+.datepicker table tr td.selected[disabled],
+.datepicker table tr td.selected:hover[disabled],
+.datepicker table tr td.selected.disabled[disabled],
+.datepicker table tr td.selected.disabled:hover[disabled] {
+ background-color: #808080;
+}
+.datepicker table tr td.selected:active,
+.datepicker table tr td.selected:hover:active,
+.datepicker table tr td.selected.disabled:active,
+.datepicker table tr td.selected.disabled:hover:active,
+.datepicker table tr td.selected.active,
+.datepicker table tr td.selected:hover.active,
+.datepicker table tr td.selected.disabled.active,
+.datepicker table tr td.selected.disabled:hover.active {
+ background-color: #666666 \9;
+}
+.datepicker table tr td.active,
+.datepicker table tr td.active:hover,
+.datepicker table tr td.active.disabled,
+.datepicker table tr td.active.disabled:hover {
+ background-color: #006dcc;
+ background-image: -moz-linear-gradient(to bottom, #08c, #0044cc);
+ background-image: -ms-linear-gradient(to bottom, #08c, #0044cc);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0044cc));
+ background-image: -webkit-linear-gradient(to bottom, #08c, #0044cc);
+ background-image: -o-linear-gradient(to bottom, #08c, #0044cc);
+ background-image: linear-gradient(to bottom, #08c, #0044cc);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
+ border-color: #0044cc #0044cc #002a80;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+ color: #fff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+.datepicker table tr td.active:hover,
+.datepicker table tr td.active:hover:hover,
+.datepicker table tr td.active.disabled:hover,
+.datepicker table tr td.active.disabled:hover:hover,
+.datepicker table tr td.active:active,
+.datepicker table tr td.active:hover:active,
+.datepicker table tr td.active.disabled:active,
+.datepicker table tr td.active.disabled:hover:active,
+.datepicker table tr td.active.active,
+.datepicker table tr td.active:hover.active,
+.datepicker table tr td.active.disabled.active,
+.datepicker table tr td.active.disabled:hover.active,
+.datepicker table tr td.active.disabled,
+.datepicker table tr td.active:hover.disabled,
+.datepicker table tr td.active.disabled.disabled,
+.datepicker table tr td.active.disabled:hover.disabled,
+.datepicker table tr td.active[disabled],
+.datepicker table tr td.active:hover[disabled],
+.datepicker table tr td.active.disabled[disabled],
+.datepicker table tr td.active.disabled:hover[disabled] {
+ background-color: #0044cc;
+}
+.datepicker table tr td.active:active,
+.datepicker table tr td.active:hover:active,
+.datepicker table tr td.active.disabled:active,
+.datepicker table tr td.active.disabled:hover:active,
+.datepicker table tr td.active.active,
+.datepicker table tr td.active:hover.active,
+.datepicker table tr td.active.disabled.active,
+.datepicker table tr td.active.disabled:hover.active {
+ background-color: #003399 \9;
+}
+.datepicker table tr td span {
+ display: block;
+ width: 23%;
+ height: 54px;
+ line-height: 54px;
+ float: left;
+ margin: 1%;
+ cursor: pointer;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+}
+.datepicker table tr td span:hover,
+.datepicker table tr td span.focused {
+ background: #eee;
+}
+.datepicker table tr td span.disabled,
+.datepicker table tr td span.disabled:hover {
+ background: none;
+ color: #999;
+ cursor: default;
+}
+.datepicker table tr td span.active,
+.datepicker table tr td span.active:hover,
+.datepicker table tr td span.active.disabled,
+.datepicker table tr td span.active.disabled:hover {
+ background-color: #006dcc;
+ background-image: -moz-linear-gradient(to bottom, #08c, #0044cc);
+ background-image: -ms-linear-gradient(to bottom, #08c, #0044cc);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0044cc));
+ background-image: -webkit-linear-gradient(to bottom, #08c, #0044cc);
+ background-image: -o-linear-gradient(to bottom, #08c, #0044cc);
+ background-image: linear-gradient(to bottom, #08c, #0044cc);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
+ border-color: #0044cc #0044cc #002a80;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+ color: #fff;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+.datepicker table tr td span.active:hover,
+.datepicker table tr td span.active:hover:hover,
+.datepicker table tr td span.active.disabled:hover,
+.datepicker table tr td span.active.disabled:hover:hover,
+.datepicker table tr td span.active:active,
+.datepicker table tr td span.active:hover:active,
+.datepicker table tr td span.active.disabled:active,
+.datepicker table tr td span.active.disabled:hover:active,
+.datepicker table tr td span.active.active,
+.datepicker table tr td span.active:hover.active,
+.datepicker table tr td span.active.disabled.active,
+.datepicker table tr td span.active.disabled:hover.active,
+.datepicker table tr td span.active.disabled,
+.datepicker table tr td span.active:hover.disabled,
+.datepicker table tr td span.active.disabled.disabled,
+.datepicker table tr td span.active.disabled:hover.disabled,
+.datepicker table tr td span.active[disabled],
+.datepicker table tr td span.active:hover[disabled],
+.datepicker table tr td span.active.disabled[disabled],
+.datepicker table tr td span.active.disabled:hover[disabled] {
+ background-color: #0044cc;
+}
+.datepicker table tr td span.active:active,
+.datepicker table tr td span.active:hover:active,
+.datepicker table tr td span.active.disabled:active,
+.datepicker table tr td span.active.disabled:hover:active,
+.datepicker table tr td span.active.active,
+.datepicker table tr td span.active:hover.active,
+.datepicker table tr td span.active.disabled.active,
+.datepicker table tr td span.active.disabled:hover.active {
+ background-color: #003399 \9;
+}
+.datepicker table tr td span.old,
+.datepicker table tr td span.new {
+ color: #999;
+}
+.datepicker .datepicker-switch {
+ width: 145px;
+}
+.datepicker .datepicker-switch,
+.datepicker .prev,
+.datepicker .next,
+.datepicker tfoot tr th {
+ cursor: pointer;
+}
+.datepicker .datepicker-switch:hover,
+.datepicker .prev:hover,
+.datepicker .next:hover,
+.datepicker tfoot tr th:hover {
+ background: #eee;
+}
+.datepicker .cw {
+ font-size: 10px;
+ width: 12px;
+ padding: 0 2px 0 5px;
+ vertical-align: middle;
+}
+.input-append.date .add-on,
+.input-prepend.date .add-on {
+ cursor: pointer;
+}
+.input-append.date .add-on i,
+.input-prepend.date .add-on i {
+ margin-top: 3px;
+}
+.input-daterange input {
+ text-align: center;
+}
+.input-daterange input:first-child {
+ -webkit-border-radius: 3px 0 0 3px;
+ -moz-border-radius: 3px 0 0 3px;
+ border-radius: 3px 0 0 3px;
+}
+.input-daterange input:last-child {
+ -webkit-border-radius: 0 3px 3px 0;
+ -moz-border-radius: 0 3px 3px 0;
+ border-radius: 0 3px 3px 0;
+}
+.input-daterange .add-on {
+ display: inline-block;
+ width: auto;
+ min-width: 16px;
+ height: 18px;
+ padding: 4px 5px;
+ font-weight: normal;
+ line-height: 18px;
+ text-align: center;
+ text-shadow: 0 1px 0 #fff;
+ vertical-align: middle;
+ background-color: #eee;
+ border: 1px solid #ccc;
+ margin-left: -5px;
+ margin-right: -5px;
+}
+/*# sourceMappingURL=bootstrap-datepicker.css.map */
\ No newline at end of file
diff --git a/static/main/css/bootstrap.min.css b/static/main/css/bootstrap.min.css
new file mode 100644
index 0000000..e95e665
--- /dev/null
+++ b/static/main/css/bootstrap.min.css
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap v4.3.1 (https://getbootstrap.com/)
+ * Copyright 2011-2019 The Bootstrap Authors
+ * Copyright 2011-2019 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd5f00;--yellow:#ffc107;--green:#71bc42;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#900048;--secondary:#6c757d;--success:#71bc42;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:"Arbutus Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0, 0, 0, 0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:"Arbutus Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#900048;text-decoration:none;background-color:transparent}a:hover{color:#440022;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:0.75rem;padding-bottom:0.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:0.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:0.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0, 0, 0, 0.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:0.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:0.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer:before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:0.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:0.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:0.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:0.2rem 0.4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:0.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:0.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:0.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0, 0, 0, 0.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0, 0, 0, 0.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#e0b8cc}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#c57aa0}.table-hover .table-primary:hover{background-color:#d8a6bf}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#d8a6bf}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#d7ecca}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#b5dc9d}.table-hover .table-success:hover{background-color:#c9e5b7}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#c9e5b7}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0, 0, 0, 0.075)}.table-hover .table-active:hover{background-color:rgba(0, 0, 0, 0.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0, 0, 0, 0.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255, 255, 255, 0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255, 255, 255, 0.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:0.25rem;-webkit-transition:border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{-webkit-transition:none;-o-transition:none;transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#ff1188;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.25);box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:0.375rem;padding-bottom:0.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + 0.5rem + 2px);padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:0.25rem}.form-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:0.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:0.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#71bc42}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#212529;background-color:rgba(113, 188, 66, 0.9);border-radius:0.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#71bc42;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2371bc42' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center right calc(0.375em + 0.1875rem);background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#71bc42;-webkit-box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.25);box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#71bc42;padding-right:calc((1em + 0.75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2371bc42' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#71bc42;-webkit-box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.25);box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#71bc42}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#71bc42}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#71bc42}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#8dca67;background-color:#8dca67}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.25);box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before{border-color:#71bc42}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#71bc42}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#71bc42;-webkit-box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.25);box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.25)}.invalid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(220, 53, 69, 0.9);border-radius:0.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");background-repeat:no-repeat;background-position:center right calc(0.375em + 0.1875rem);background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.25);box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc((1em + 0.75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.25);box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#dc3545}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.25);box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;-webkit-box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.25);box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.25)}.form-inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:0.25rem;margin-left:0}.form-inline .custom-control{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:0.375rem 0.75rem;font-size:1rem;line-height:1.5;border-radius:0.25rem;-webkit-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{-webkit-transition:none;-o-transition:none;transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.25);box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.25)}.btn.disabled,.btn:disabled{opacity:0.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#900048;border-color:#900048}.btn-primary:hover{color:#fff;background-color:#6a0035;border-color:#5d002f}.btn-primary.focus,.btn-primary:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(161, 38, 99, 0.5);box-shadow:0 0 0 0.2rem rgba(161, 38, 99, 0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#900048;border-color:#900048}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#5d002f;border-color:#500028}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(161, 38, 99, 0.5);box-shadow:0 0 0 0.2rem rgba(161, 38, 99, 0.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(130, 138, 145, 0.5);box-shadow:0 0 0 0.2rem rgba(130, 138, 145, 0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(130, 138, 145, 0.5);box-shadow:0 0 0 0.2rem rgba(130, 138, 145, 0.5)}.btn-success{color:#212529;background-color:#71bc42;border-color:#71bc42}.btn-success:hover{color:#fff;background-color:#60a038;border-color:#5a9635}.btn-success.focus,.btn-success:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(101, 165, 62, 0.5);box-shadow:0 0 0 0.2rem rgba(101, 165, 62, 0.5)}.btn-success.disabled,.btn-success:disabled{color:#212529;background-color:#71bc42;border-color:#71bc42}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#5a9635;border-color:#558d31}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(101, 165, 62, 0.5);box-shadow:0 0 0 0.2rem rgba(101, 165, 62, 0.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(58, 176, 195, 0.5);box-shadow:0 0 0 0.2rem rgba(58, 176, 195, 0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(58, 176, 195, 0.5);box-shadow:0 0 0 0.2rem rgba(58, 176, 195, 0.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(222, 170, 12, 0.5);box-shadow:0 0 0 0.2rem rgba(222, 170, 12, 0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(222, 170, 12, 0.5);box-shadow:0 0 0 0.2rem rgba(222, 170, 12, 0.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(225, 83, 97, 0.5);box-shadow:0 0 0 0.2rem rgba(225, 83, 97, 0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(225, 83, 97, 0.5);box-shadow:0 0 0 0.2rem rgba(225, 83, 97, 0.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(216, 217, 219, 0.5);box-shadow:0 0 0 0.2rem rgba(216, 217, 219, 0.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(216, 217, 219, 0.5);box-shadow:0 0 0 0.2rem rgba(216, 217, 219, 0.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(82, 88, 93, 0.5);box-shadow:0 0 0 0.2rem rgba(82, 88, 93, 0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(82, 88, 93, 0.5);box-shadow:0 0 0 0.2rem rgba(82, 88, 93, 0.5)}.btn-outline-primary{color:#900048;border-color:#900048}.btn-outline-primary:hover{color:#fff;background-color:#900048;border-color:#900048}.btn-outline-primary.focus,.btn-outline-primary:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.5);box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#900048;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#900048;border-color:#900048}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.5);box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(108, 117, 125, 0.5);box-shadow:0 0 0 0.2rem rgba(108, 117, 125, 0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(108, 117, 125, 0.5);box-shadow:0 0 0 0.2rem rgba(108, 117, 125, 0.5)}.btn-outline-success{color:#71bc42;border-color:#71bc42}.btn-outline-success:hover{color:#212529;background-color:#71bc42;border-color:#71bc42}.btn-outline-success.focus,.btn-outline-success:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.5);box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#71bc42;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#212529;background-color:#71bc42;border-color:#71bc42}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.5);box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(23, 162, 184, 0.5);box-shadow:0 0 0 0.2rem rgba(23, 162, 184, 0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(23, 162, 184, 0.5);box-shadow:0 0 0 0.2rem rgba(23, 162, 184, 0.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(255, 193, 7, 0.5);box-shadow:0 0 0 0.2rem rgba(255, 193, 7, 0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(255, 193, 7, 0.5);box-shadow:0 0 0 0.2rem rgba(255, 193, 7, 0.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.5);box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.5);box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(248, 249, 250, 0.5);box-shadow:0 0 0 0.2rem rgba(248, 249, 250, 0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(248, 249, 250, 0.5);box-shadow:0 0 0 0.2rem rgba(248, 249, 250, 0.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(52, 58, 64, 0.5);box-shadow:0 0 0 0.2rem rgba(52, 58, 64, 0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(52, 58, 64, 0.5);box-shadow:0 0 0 0.2rem rgba(52, 58, 64, 0.5)}.btn-link{font-weight:400;color:#900048;text-decoration:none}.btn-link:hover{color:#440022;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline;-webkit-box-shadow:none;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}.btn-group-sm>.btn,.btn-sm{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:0.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{-webkit-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear}@media (prefers-reduced-motion:reduce){.fade{-webkit-transition:none;-o-transition:none;transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease}@media (prefers-reduced-motion:reduce){.collapsing{-webkit-transition:none;-o-transition:none;transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid;border-right:0.3em solid transparent;border-bottom:0;border-left:0.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:0.5rem 0;margin:0.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.15);border-radius:0.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:0.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0;border-right:0.3em solid transparent;border-bottom:0.3em solid;border-left:0.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:0.125rem}.dropright .dropdown-toggle:after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0;border-bottom:0.3em solid transparent;border-left:0.3em solid}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:0.125rem}.dropleft .dropdown-toggle:after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:""}.dropleft .dropdown-toggle:after{display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0.3em solid;border-bottom:0.3em solid transparent}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:0.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:0.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#900048}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:0.5rem 1.5rem;margin-bottom:0;font-size:0.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:0.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:0.5625rem;padding-left:0.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:0.375rem;padding-left:0.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:0.75rem;padding-left:0.75rem}.btn-group-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-webkit-box;display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0.375rem 0.75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:0.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + 0.5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label:before{color:#fff;border-color:#900048;background-color:#900048}.custom-control-input:focus~.custom-control-label:before{-webkit-box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.25);box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#ff1188}.custom-control-input:not(:disabled):active~.custom-control-label:before{color:#fff;background-color:#ff44a1;border-color:#ff44a1}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label:before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label:before{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label:after{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50% / 50% 50%}.custom-checkbox .custom-control-label:before{border-radius:0.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{border-color:#900048;background-color:#900048}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(144, 0, 72, 0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(144, 0, 72, 0.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(144, 0, 72, 0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:0.5rem}.custom-switch .custom-control-label:after{top:calc(0.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:0.5rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{-webkit-transition:none;-o-transition:none;transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;-webkit-transform:translateX(0.75rem);-ms-transform:translateX(0.75rem);transform:translateX(0.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(144, 0, 72, 0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 1.75rem 0.375rem 0.75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#ff1188;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.25);box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:0.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + 0.5rem + 2px);padding-top:0.25rem;padding-bottom:0.25rem;padding-left:0.5rem;font-size:0.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#ff1188;-webkit-box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.25);box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.25)}.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:0.25rem}.custom-file-label:after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:0.375rem 0.75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 0.25rem 0.25rem 0}.custom-range{width:100%;height:calc(1rem + 0.4rem);padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{-webkit-box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem rgba(144, 0, 72, 0.25);box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem rgba(144, 0, 72, 0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem rgba(144, 0, 72, 0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff, 0 0 0 0.2rem rgba(144, 0, 72, 0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#900048;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;-o-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#ff44a1}.custom-range::-webkit-slider-runnable-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#900048;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-webkit-transition:none;-o-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#ff44a1}.custom-range::-moz-range-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:0.2rem;margin-left:0.2rem;background-color:#900048;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-webkit-transition:none;-o-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#ff44a1}.custom-range::-ms-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:0.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label:before,.custom-file-label,.custom-select{-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{-webkit-transition:none;-o-transition:none;transition:none}}.nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:0.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:0.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#900048}.nav-fill .nav-item{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:0.3125rem;padding-bottom:0.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:0.5rem;padding-bottom:0.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:0.25rem 0.75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:0.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0, 0, 0, 0.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0, 0, 0, 0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0, 0, 0, 0.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0, 0, 0, 0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0, 0, 0, 0.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0, 0, 0, 0.9)}.navbar-light .navbar-toggler{color:rgba(0, 0, 0, 0.5);border-color:rgba(0, 0, 0, 0.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0, 0, 0, 0.5)}.navbar-light .navbar-text a{color:rgba(0, 0, 0, 0.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0, 0, 0, 0.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255, 255, 255, 0.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255, 255, 255, 0.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255, 255, 255, 0.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255, 255, 255, 0.5);border-color:rgba(255, 255, 255, 0.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255, 255, 255, 0.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0, 0, 0, 0.125);border-radius:0.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:0.25rem;border-bottom-left-radius:0.25rem}.card-body{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:0.75rem}.card-subtitle{margin-top:-0.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:0.75rem 1.25rem;margin-bottom:0;background-color:rgba(0, 0, 0, 0.03);border-bottom:1px solid rgba(0, 0, 0, 0.125)}.card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:0.75rem 1.25rem;background-color:rgba(0, 0, 0, 0.03);border-top:1px solid rgba(0, 0, 0, 0.125)}.card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(0.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-deck{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:0.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;column-count:3;-webkit-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-1px}.breadcrumb{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:0.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:0.5rem}.breadcrumb-item+.breadcrumb-item:before{display:inline-block;padding-right:0.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:0.25rem}.page-link{position:relative;display:block;padding:0.5rem 0.75rem;margin-left:-1px;line-height:1.25;color:#900048;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#440022;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.25);box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem}.page-item:last-child .page-link{border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#900048;border-color:#900048}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:0.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:0.3rem;border-bottom-left-radius:0.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:0.3rem;border-bottom-right-radius:0.3rem}.pagination-sm .page-link{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:0.2rem;border-bottom-left-radius:0.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:0.2rem;border-bottom-right-radius:0.2rem}.badge{display:inline-block;padding:0.25em 0.4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0.25rem;-webkit-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-o-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{-webkit-transition:none;-o-transition:none;transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#900048}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#5d002f}a.badge-primary.focus,a.badge-primary:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.5);box-shadow:0 0 0 0.2rem rgba(144, 0, 72, 0.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(108, 117, 125, 0.5);box-shadow:0 0 0 0.2rem rgba(108, 117, 125, 0.5)}.badge-success{color:#212529;background-color:#71bc42}a.badge-success:focus,a.badge-success:hover{color:#212529;background-color:#5a9635}a.badge-success.focus,a.badge-success:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.5);box-shadow:0 0 0 0.2rem rgba(113, 188, 66, 0.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(23, 162, 184, 0.5);box-shadow:0 0 0 0.2rem rgba(23, 162, 184, 0.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(255, 193, 7, 0.5);box-shadow:0 0 0 0.2rem rgba(255, 193, 7, 0.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.5);box-shadow:0 0 0 0.2rem rgba(220, 53, 69, 0.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(248, 249, 250, 0.5);box-shadow:0 0 0 0.2rem rgba(248, 249, 250, 0.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(52, 58, 64, 0.5);box-shadow:0 0 0 0.2rem rgba(52, 58, 64, 0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:0.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:0.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:0.75rem 1.25rem;color:inherit}.alert-primary{color:#4b0025;background-color:#e9ccda;border-color:#e0b8cc}.alert-primary hr{border-top-color:#d8a6bf}.alert-primary .alert-link{color:#18000c}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#3b6222;background-color:#e3f2d9;border-color:#d7ecca}.alert-success hr{border-top-color:#c9e5b7}.alert-success .alert-link{color:#243c15}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{display:-webkit-box;display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:0.75rem;background-color:#e9ecef;border-radius:0.25rem}.progress-bar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#900048;-webkit-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{-webkit-transition:none;-o-transition:none;transition:none}}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.media-body{-webkit-box-flex:1;-ms-flex:1;flex:1}.list-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:0.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0, 0, 0, 0.125)}.list-group-item:first-child{border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0.25rem}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#900048;border-color:#900048}.list-group-horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0}@media (min-width:576px){.list-group-horizontal-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0}}@media (min-width:768px){.list-group-horizontal-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0}}@media (min-width:992px){.list-group-horizontal-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0}}@media (min-width:1200px){.list-group-horizontal-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#4b0025;background-color:#e0b8cc}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#4b0025;background-color:#d8a6bf}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#4b0025;border-color:#4b0025}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#3b6222;background-color:#d7ecca}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#3b6222;background-color:#c9e5b7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#3b6222;border-color:#3b6222}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:0.875rem;background-color:rgba(255, 255, 255, 0.85);background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.1);-webkit-box-shadow:0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);box-shadow:0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:0.25rem}.toast:not(:last-child){margin-bottom:0.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0.25rem 0.75rem;color:#6c757d;background-color:rgba(255, 255, 255, 0.85);background-clip:padding-box;border-bottom:1px solid rgba(0, 0, 0, 0.05)}.toast-body{padding:0.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:0.5rem;pointer-events:none}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform 0.3s ease-out;transition:-webkit-transform 0.3s ease-out;-o-transition:transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);-ms-transform:translate(0, -50px);transform:translate(0, -50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{-webkit-transition:none;-o-transition:none;transition:none}}.modal.show .modal-dialog{-webkit-transform:none;-ms-transform:none;transform:none}.modal-dialog-scrollable{display:-webkit-box;display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.2);border-radius:0.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:0.5}.modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:0.3rem;border-top-right-radius:0.3rem}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:0.3rem;border-bottom-left-radius:0.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:"Arbutus Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:0.9}.tooltip .arrow{position:absolute;display:block;width:0.8rem;height:0.4rem}.tooltip .arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:0.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{top:0;border-width:0.4rem 0.4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 0.4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:0.4rem;height:0.8rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{right:0;border-width:0.4rem 0.4rem 0.4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:0.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 0.4rem 0.4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 0.4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:0.4rem;height:0.8rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{left:0;border-width:0.4rem 0 0.4rem 0.4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:0.25rem 0.5rem;color:#fff;text-align:center;background-color:#000;border-radius:0.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:"Arbutus Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.2);border-radius:0.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:0.5rem;margin:0 0.3rem}.popover .arrow:after,.popover .arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:0.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc((0.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{bottom:0;border-width:0.5rem 0.5rem 0;border-top-color:rgba(0, 0, 0, 0.25)}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{bottom:1px;border-width:0.5rem 0.5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:0.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc((0.5rem + 1px) * -1);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{left:0;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:rgba(0, 0, 0, 0.25)}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{left:1px;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:0.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc((0.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{top:0;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:rgba(0, 0, 0, 0.25)}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{top:1px;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:0.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc((0.5rem + 1px) * -1);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{right:0;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:rgba(0, 0, 0, 0.25)}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{right:1px;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#fff}.popover-header{padding:0.5rem 0.75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:0.5rem 0.75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner:after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 0.6s ease-in-out;transition:-webkit-transform 0.6s ease-in-out;-o-transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{-webkit-transition:none;-o-transition:none;transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;-webkit-transform:none;-ms-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;-webkit-transition:0s 0.6s opacity;-o-transition:0s 0.6s opacity;transition:0s 0.6s opacity}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{-webkit-transition:none;-o-transition:none;transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:0.5;-webkit-transition:opacity 0.15s ease;-o-transition:opacity 0.15s ease;transition:opacity 0.15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{-webkit-transition:none;-o-transition:none;transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:0.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50% / 100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;-webkit-transition:opacity 0.6s ease;-o-transition:opacity 0.6s ease;transition:opacity 0.6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{-webkit-transition:none;-o-transition:none;transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:0.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:0.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#900048!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#5d002f!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#71bc42!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#5a9635!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#900048!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#71bc42!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:0.2rem!important}.rounded{border-radius:0.25rem!important}.rounded-top{border-top-left-radius:0.25rem!important;border-top-right-radius:0.25rem!important}.rounded-right{border-top-right-radius:0.25rem!important;border-bottom-right-radius:0.25rem!important}.rounded-bottom{border-bottom-right-radius:0.25rem!important;border-bottom-left-radius:0.25rem!important}.rounded-left{border-top-left-radius:0.25rem!important;border-bottom-left-radius:0.25rem!important}.rounded-lg{border-radius:0.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive:before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9:before{padding-top:42.85714%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{-webkit-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075)!important;box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075)!important}.shadow{-webkit-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)!important;box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)!important}.shadow-lg{-webkit-box-shadow:0 1rem 3rem rgba(0, 0, 0, 0.175)!important;box-shadow:0 1rem 3rem rgba(0, 0, 0, 0.175)!important}.shadow-none{-webkit-box-shadow:none!important;box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0, 0, 0, 0)}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:0.25rem!important}.mt-1,.my-1{margin-top:0.25rem!important}.mr-1,.mx-1{margin-right:0.25rem!important}.mb-1,.my-1{margin-bottom:0.25rem!important}.ml-1,.mx-1{margin-left:0.25rem!important}.m-2{margin:0.5rem!important}.mt-2,.my-2{margin-top:0.5rem!important}.mr-2,.mx-2{margin-right:0.5rem!important}.mb-2,.my-2{margin-bottom:0.5rem!important}.ml-2,.mx-2{margin-left:0.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:0.25rem!important}.pt-1,.py-1{padding-top:0.25rem!important}.pr-1,.px-1{padding-right:0.25rem!important}.pb-1,.py-1{padding-bottom:0.25rem!important}.pl-1,.px-1{padding-left:0.25rem!important}.p-2{padding:0.5rem!important}.pt-2,.py-2{padding-top:0.5rem!important}.pr-2,.px-2{padding-right:0.5rem!important}.pb-2,.py-2{padding-bottom:0.5rem!important}.pl-2,.px-2{padding-left:0.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-0.25rem!important}.mt-n1,.my-n1{margin-top:-0.25rem!important}.mr-n1,.mx-n1{margin-right:-0.25rem!important}.mb-n1,.my-n1{margin-bottom:-0.25rem!important}.ml-n1,.mx-n1{margin-left:-0.25rem!important}.m-n2{margin:-0.5rem!important}.mt-n2,.my-n2{margin-top:-0.5rem!important}.mr-n2,.mx-n2{margin-right:-0.5rem!important}.mb-n2,.my-n2{margin-bottom:-0.5rem!important}.ml-n2,.mx-n2{margin-left:-0.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:0.25rem!important}.mt-sm-1,.my-sm-1{margin-top:0.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:0.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:0.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:0.25rem!important}.m-sm-2{margin:0.5rem!important}.mt-sm-2,.my-sm-2{margin-top:0.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:0.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:0.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:0.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:0.25rem!important}.pt-sm-1,.py-sm-1{padding-top:0.25rem!important}.pr-sm-1,.px-sm-1{padding-right:0.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:0.25rem!important}.pl-sm-1,.px-sm-1{padding-left:0.25rem!important}.p-sm-2{padding:0.5rem!important}.pt-sm-2,.py-sm-2{padding-top:0.5rem!important}.pr-sm-2,.px-sm-2{padding-right:0.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:0.5rem!important}.pl-sm-2,.px-sm-2{padding-left:0.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-0.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-0.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-0.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-0.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-0.25rem!important}.m-sm-n2{margin:-0.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-0.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-0.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-0.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-0.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:0.25rem!important}.mt-md-1,.my-md-1{margin-top:0.25rem!important}.mr-md-1,.mx-md-1{margin-right:0.25rem!important}.mb-md-1,.my-md-1{margin-bottom:0.25rem!important}.ml-md-1,.mx-md-1{margin-left:0.25rem!important}.m-md-2{margin:0.5rem!important}.mt-md-2,.my-md-2{margin-top:0.5rem!important}.mr-md-2,.mx-md-2{margin-right:0.5rem!important}.mb-md-2,.my-md-2{margin-bottom:0.5rem!important}.ml-md-2,.mx-md-2{margin-left:0.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:0.25rem!important}.pt-md-1,.py-md-1{padding-top:0.25rem!important}.pr-md-1,.px-md-1{padding-right:0.25rem!important}.pb-md-1,.py-md-1{padding-bottom:0.25rem!important}.pl-md-1,.px-md-1{padding-left:0.25rem!important}.p-md-2{padding:0.5rem!important}.pt-md-2,.py-md-2{padding-top:0.5rem!important}.pr-md-2,.px-md-2{padding-right:0.5rem!important}.pb-md-2,.py-md-2{padding-bottom:0.5rem!important}.pl-md-2,.px-md-2{padding-left:0.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-0.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-0.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-0.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-0.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-0.25rem!important}.m-md-n2{margin:-0.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-0.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-0.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-0.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-0.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:0.25rem!important}.mt-lg-1,.my-lg-1{margin-top:0.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:0.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:0.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:0.25rem!important}.m-lg-2{margin:0.5rem!important}.mt-lg-2,.my-lg-2{margin-top:0.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:0.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:0.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:0.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:0.25rem!important}.pt-lg-1,.py-lg-1{padding-top:0.25rem!important}.pr-lg-1,.px-lg-1{padding-right:0.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:0.25rem!important}.pl-lg-1,.px-lg-1{padding-left:0.25rem!important}.p-lg-2{padding:0.5rem!important}.pt-lg-2,.py-lg-2{padding-top:0.5rem!important}.pr-lg-2,.px-lg-2{padding-right:0.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:0.5rem!important}.pl-lg-2,.px-lg-2{padding-left:0.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-0.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-0.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-0.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-0.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-0.25rem!important}.m-lg-n2{margin:-0.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-0.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-0.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-0.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-0.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:0.25rem!important}.mt-xl-1,.my-xl-1{margin-top:0.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:0.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:0.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:0.25rem!important}.m-xl-2{margin:0.5rem!important}.mt-xl-2,.my-xl-2{margin-top:0.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:0.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:0.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:0.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:0.25rem!important}.pt-xl-1,.py-xl-1{padding-top:0.25rem!important}.pr-xl-1,.px-xl-1{padding-right:0.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:0.25rem!important}.pl-xl-1,.px-xl-1{padding-left:0.25rem!important}.p-xl-2{padding:0.5rem!important}.pt-xl-2,.py-xl-2{padding-top:0.5rem!important}.pr-xl-2,.px-xl-2{padding-right:0.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:0.5rem!important}.pl-xl-2,.px-xl-2{padding-left:0.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-0.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-0.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-0.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-0.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-0.25rem!important}.m-xl-n2{margin:-0.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-0.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-0.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-0.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-0.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#900048!important}a.text-primary:focus,a.text-primary:hover{color:#440022!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#71bc42!important}a.text-success:focus,a.text-success:hover{color:#4f832e!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0, 0, 0, 0.5)!important}.text-white-50{color:rgba(255, 255, 255, 0.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{text-shadow:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}
+/*# sourceMappingURL=bootstrap.min.css.map */
\ No newline at end of file
diff --git a/static/main/css/bootstrap.min.css.map b/static/main/css/bootstrap.min.css.map
new file mode 100644
index 0000000..a11bc8e
--- /dev/null
+++ b/static/main/css/bootstrap.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../scss/bootstrap/bootstrap.scss","../scss/bootstrap/_root.scss","../scss/bootstrap/_reboot.scss","../scss/bootstrap/_variables.scss","../scss/bootstrap/vendor/_rfs.scss","../scss/bootstrap/bootstrap.css","../scss/bootstrap/mixins/_hover.scss","../scss/bootstrap/_type.scss","../scss/bootstrap/mixins/_lists.scss","../scss/bootstrap/_images.scss","../scss/bootstrap/mixins/_image.scss","../scss/bootstrap/mixins/_border-radius.scss","../scss/bootstrap/_code.scss","../scss/bootstrap/_grid.scss","../scss/bootstrap/mixins/_grid.scss","../scss/bootstrap/mixins/_breakpoints.scss","../scss/bootstrap/mixins/_grid-framework.scss","../scss/bootstrap/_tables.scss","../scss/bootstrap/mixins/_table-row.scss","../scss/bootstrap/_functions.scss","../scss/bootstrap/_forms.scss","../scss/bootstrap/mixins/_transition.scss","../scss/bootstrap/mixins/_forms.scss","../scss/bootstrap/mixins/_gradients.scss","../scss/bootstrap/_buttons.scss","../scss/bootstrap/mixins/_buttons.scss","../scss/bootstrap/_transitions.scss","../scss/bootstrap/_dropdown.scss","../scss/bootstrap/mixins/_caret.scss","../scss/bootstrap/mixins/_nav-divider.scss","../scss/bootstrap/_button-group.scss","../scss/bootstrap/_input-group.scss","../scss/bootstrap/_custom-forms.scss","../scss/bootstrap/_nav.scss","../scss/bootstrap/_navbar.scss","../scss/bootstrap/_card.scss","../scss/bootstrap/_breadcrumb.scss","../scss/bootstrap/_pagination.scss","../scss/bootstrap/mixins/_pagination.scss","../scss/bootstrap/_badge.scss","../scss/bootstrap/mixins/_badge.scss","../scss/bootstrap/_jumbotron.scss","../scss/bootstrap/_alert.scss","../scss/bootstrap/mixins/_alert.scss","../scss/bootstrap/_progress.scss","../scss/bootstrap/_media.scss","../scss/bootstrap/_list-group.scss","../scss/bootstrap/mixins/_list-group.scss","../scss/bootstrap/_close.scss","../scss/bootstrap/_toasts.scss","../scss/bootstrap/_modal.scss","../scss/bootstrap/_tooltip.scss","../scss/bootstrap/mixins/_reset-text.scss","../scss/bootstrap/_popover.scss","../scss/bootstrap/_carousel.scss","../scss/bootstrap/mixins/_clearfix.scss","../scss/bootstrap/_spinners.scss","../scss/bootstrap/utilities/_align.scss","../scss/bootstrap/mixins/_background-variant.scss","../scss/bootstrap/utilities/_background.scss","../scss/bootstrap/utilities/_borders.scss","../scss/bootstrap/utilities/_display.scss","../scss/bootstrap/utilities/_embed.scss","../scss/bootstrap/utilities/_flex.scss","../scss/bootstrap/utilities/_float.scss","../scss/bootstrap/utilities/_overflow.scss","../scss/bootstrap/utilities/_position.scss","../scss/bootstrap/utilities/_screenreaders.scss","../scss/bootstrap/mixins/_screen-reader.scss","../scss/bootstrap/utilities/_shadows.scss","../scss/bootstrap/utilities/_sizing.scss","../scss/bootstrap/utilities/_stretched-link.scss","../scss/bootstrap/utilities/_spacing.scss","../scss/bootstrap/utilities/_text.scss","../scss/bootstrap/mixins/_text-truncate.scss","../scss/bootstrap/mixins/_text-emphasis.scss","../scss/bootstrap/mixins/_text-hide.scss","../scss/bootstrap/utilities/_visibility.scss","../scss/bootstrap/_print.scss"],"names":[],"mappings":"AAAA;;;;;GAKG,ACLH,MAGI,eAAc,AAAd,iBAAc,AAAd,iBAAc,AAAd,eAAc,AAAd,cAAc,AAAd,iBAAc,AAAd,iBAAc,AAAd,gBAAc,AAAd,eAAc,AAAd,eAAc,AAAd,aAAc,AAAd,eAAc,AAAd,oBAAc,AAId,kBAAc,AAAd,oBAAc,AAAd,kBAAc,AAAd,eAAc,AAAd,kBAAc,AAAd,iBAAc,AAAd,gBAAc,AAAd,eAAc,AAId,kBAAiC,AAAjC,sBAAiC,AAAjC,sBAAiC,AAAjC,sBAAiC,AAAjC,uBAAiC,AAKnC,+NAAyB,AACzB,4GAAwB,CACzB,ACAD,iBAGE,8BAAsB,AAAtB,qBAAsB,CACvB,AAED,KACE,uBAAuB,AACvB,iBAAiB,AACjB,8BAA8B,AAC9B,4CCXa,CDYd,AAKD,sEACE,aAAc,CACf,AASD,KACE,SAAS,AACT,kNCiOiO,ACjJ7N,eAtCY,AFxChB,gBC0O+B,ADzO/B,gBC8O+B,AD7O/B,cCnCgB,ADoChB,gBAAgB,AAChB,qBC9Ca,CD+Cd,AGMD,sBHEE,mBAAqB,CACtB,AAQD,GACE,+BAAuB,AAAvB,uBAAuB,AACvB,SAAS,AACT,gBAAiB,CAClB,AAYD,kBACE,aAAa,AACb,oBCgNuC,CD/MxC,AAMD,EACE,aAAa,AACb,kBCoF8B,CDnF/B,AAUD,sCAEE,0BAA0B,AAC1B,yCAAiC,AAAjC,iCAAiC,AACjC,YAAY,AACZ,gBAAgB,AAChB,6BAA8B,CAC/B,AAED,QACE,mBAAmB,AACnB,kBAAkB,AAClB,mBAAoB,CACrB,AAED,SAGE,aAAa,AACb,kBAAmB,CACpB,AAED,wBAIE,eAAgB,CACjB,AAED,GACE,eCiJ+B,CDhJhC,AAED,GACE,oBAAoB,AACpB,aAAc,CACf,AAED,WACE,eAAgB,CACjB,AAED,SAEE,kBCoIkC,CDnInC,AAED,MEpFI,aAAW,CFsFd,AAOD,QAEE,kBAAkB,AE/FhB,cAAW,AFiGb,cAAc,AACd,uBAAwB,CACzB,AAED,IAAM,aAAc,CAAI,AACxB,IAAM,SAAU,CAAI,AAOpB,EACE,cClHqB,ADmHrB,qBCX4C,ADY5C,4BAA6B,CAM9B,AIlLC,QJ+KE,cCd8D,ADe9D,yBCd+C,CGlK3B,AJ0LxB,8BACE,cAAc,AACd,oBAAqB,CAUtB,AIlMC,wEJ2LE,cAAc,AACd,oBAAqB,CIzLtB,AJmLH,oCAUI,SAAU,CACX,AAQH,kBAIE,iGCoDgH,ACzM9G,aAAW,CFuJd,AAED,IAEE,aAAa,AAEb,mBAAmB,AAEnB,aAAc,CACf,AAOD,OAEE,eAAgB,CACjB,AAOD,IACE,sBAAsB,AACtB,iBAAkB,CACnB,AAED,IAGE,gBAAgB,AAChB,qBAAsB,CACvB,AAOD,MACE,wBAAyB,CAC1B,AAED,QACE,oBC2EkC,AD1ElC,uBC0EkC,ADzElC,cCpQgB,ADqQhB,gBAAgB,AAChB,mBAAoB,CACrB,AAED,GAGE,kBAAmB,CACpB,AAOD,MAEE,qBAAqB,AACrB,oBC4J2C,CD3J5C,AAKD,OAEE,eAAgB,CACjB,AAMD,aACE,mBAAmB,AACnB,yCAA0C,CAC3C,AAED,sCAKE,SAAS,AACT,oBAAoB,AEtPlB,kBAAW,AFwPb,mBAAoB,CACrB,AAED,aAEE,gBAAiB,CAClB,AAED,cAEE,mBAAoB,CACrB,AAKD,OACE,gBAAiB,CAClB,AAMD,gDAIE,yBAA0B,CAC3B,AAIC,4GAKI,cAAe,CAChB,AAKL,wHAIE,UAAU,AACV,iBAAkB,CACnB,AAED,uCAEE,8BAAsB,AAAtB,sBAAsB,AACtB,SAAU,CACX,AAGD,+EASE,0BAA2B,CAC5B,AAED,SACE,cAAc,AAEd,eAAgB,CACjB,AAED,SAME,YAAY,AAEZ,UAAU,AACV,SAAS,AACT,QAAS,CACV,AAID,OACE,cAAc,AACd,WAAW,AACX,eAAe,AACf,UAAU,AACV,oBAAoB,AElShB,iBAtCY,AF0UhB,oBAAoB,AACpB,cAAc,AACd,kBAAmB,CACpB,AAED,SACE,uBAAwB,CACzB,AG5JD,kFHiKE,WAAY,CACb,AG9JD,cHqKE,oBAAoB,AACpB,uBAAwB,CACzB,AGnKD,yCH0KE,uBAAwB,CACzB,AAOD,6BACE,aAAa,AACb,yBAA0B,CAC3B,AAMD,OACE,oBAAqB,CACtB,AAED,QACE,kBAAkB,AAClB,cAAe,CAChB,AAED,SACE,YAAa,CACd,AGrLD,SH0LE,sBAAwB,CACzB,AK5dD,0CAEE,qBJiSuC,AI/RvC,gBJiS+B,AIhS/B,eJiS+B,CI/RhC,AAED,OHgHM,gBAtCY,CG1E6B,AAC/C,OH+GM,cAtCY,CGzE6B,AAC/C,OH8GM,iBAtCY,CGxE6B,AAC/C,OH6GM,gBAtCY,CGvE6B,AAC/C,OH4GM,iBAtCY,CGtE6B,AAC/C,OH2GM,cAtCY,CGrE6B,AAE/C,MHyGM,kBAtCY,AGjEhB,eJmS+B,CIlShC,AAGD,WHmGM,eAtCY,AG3DhB,gBJsR+B,AIrR/B,eJ6Q+B,CI5QhC,AACD,WH8FM,iBAtCY,AGtDhB,gBJkR+B,AIjR/B,eJwQ+B,CIvQhC,AACD,WHyFM,iBAtCY,AGjDhB,gBJ8Q+B,AI7Q/B,eJmQ+B,CIlQhC,AACD,WHoFM,iBAtCY,AG5ChB,gBJ0Q+B,AIzQ/B,eJ8P+B,CI7PhC,ALwBD,GKhBE,gBJ0EW,AIzEX,mBJyEW,AIxEX,SAAS,AACT,uCJzCa,CI0Cd,AAOD,aHMI,cAAW,AGHb,eJsN+B,CIrNhC,AAED,WAEE,cJ8PgC,AI7PhC,wBJsQmC,CIrQpC,AAOD,eC/EE,eAAe,AACf,eAAgB,CDgFjB,AAGD,aCpFE,eAAe,AACf,eAAgB,CDqFjB,AACD,kBACE,oBAAqB,CAKtB,AAND,mCAII,mBJgP+B,CI/OhC,AASH,YHjCI,cAAW,AGmCb,wBAAyB,CAC1B,AAGD,YACE,mBJiBW,ACFP,iBAtCY,CGyBjB,AAED,mBACE,cAAc,AH7CZ,cAAW,AG+Cb,aJ1GgB,CI+GjB,AARD,0BAMI,oBAAqB,CACtB,AEpHH,WCIE,eAAe,AAGf,WAAY,CDLb,AAID,eACE,gBN++BwC,AM9+BxC,sBNRa,AMSb,yBNNgB,AQLd,sBRqOgC,AO/NlC,eAAe,AAGf,WAAY,CDQb,AAMD,QAEE,oBAAqB,CACtB,AAED,YACE,qBAA0B,AAC1B,aAAc,CACf,AAED,gBLkCI,cAAW,AKhCb,aN3BgB,CM4BjB,AGxCD,KRuEI,gBAAW,AQrEb,cToCe,ASnCf,qBAAsB,CAMvB,AAHC,OACE,aAAc,CACf,AAIH,IACE,sBTikCuC,ACvgCrC,gBAAW,AQxDb,WTTa,ASUb,yBTDgB,AQXd,oBRuO+B,CSjNlC,AAdD,QASI,UAAU,ARkDV,eAAW,AQhDX,eToQ6B,CSlQ9B,AVuMH,IUlME,cAAc,ARyCZ,gBAAW,AQvCb,aTjBgB,CSyBjB,AAXD,SR0CI,kBAAW,AQlCX,cAAc,AACd,iBAAkB,CACnB,AAIH,gBACE,iBTwiCuC,ASviCvC,iBAAkB,CACnB,AC1CC,WCAA,WAAW,AACX,mBAA0B,AAC1B,kBAAyB,AACzB,kBAAkB,AAClB,gBAAiB,CDDhB,AEoDC,yBFvDF,WCYI,eX8LK,CUvMR,CAAA,AEoDC,yBFvDF,WCYI,eX+LK,CUxMR,CAAA,AEoDC,yBFvDF,WCYI,eXgMK,CUzMR,CAAA,AEoDC,0BFvDF,WCYI,gBXiMM,CU1MT,CAAA,AASD,iBCZA,WAAW,AACX,mBAA0B,AAC1B,kBAAyB,AACzB,kBAAkB,AAClB,gBAAiB,CDUhB,AAQD,KCJA,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,mBAAe,AAAf,eAAe,AACf,mBAA0B,AAC1B,iBAAyB,CDGxB,AAID,YACE,eAAe,AACf,aAAc,CAOf,AATD,2CAMI,gBAAgB,AAChB,cAAe,CAChB,AGlCH,sqBACE,kBAAkB,AAClB,WAAW,AACX,mBAA0B,AAC1B,iBAAyB,CAC1B,AAkBG,KACE,0BAAa,AAAb,aAAa,AACb,mBAAY,AAAZ,oBAAY,AAAZ,YAAY,AACZ,cAAe,CAChB,AACD,UACE,mBAAc,AAAd,kBAAc,AAAd,cAAc,AACd,WAAW,AACX,cAAe,CAChB,AAGC,OFFN,mBAAsC,AAAtC,sBAAsC,AAAtC,kBAAsC,AAItC,kBAAuC,CEAhC,AAFD,OFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,OFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,OFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,OFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,OFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,OFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,OFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,OFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,QFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,QFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,QFFN,mBAAsC,AAAtC,kBAAsC,AAAtC,cAAsC,AAItC,cAAuC,CEAhC,AAGH,aAAwB,4BAAS,AAAT,kBAAS,AAAT,QAAS,CAAI,AAErC,YAAuB,6Bb2KG,Aa3KH,kBb2KG,Aa3KH,Qb2KG,Ca3KoB,AAG5C,SAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,SAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,SAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,SAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,SAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,SAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,SAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,SAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,SAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,SAAwB,6BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,UAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAArC,UAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAArC,UAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAMnC,UFTR,oBAA8C,CEWrC,AAFD,UFTR,qBAA8C,CEWrC,AAFD,UFTR,eAA8C,CEWrC,AAFD,UFTR,qBAA8C,CEWrC,AAFD,UFTR,qBAA8C,CEWrC,AAFD,UFTR,eAA8C,CEWrC,AAFD,UFTR,qBAA8C,CEWrC,AAFD,UFTR,qBAA8C,CEWrC,AAFD,UFTR,eAA8C,CEWrC,AAFD,WFTR,qBAA8C,CEWrC,AAFD,WFTR,qBAA8C,CEWrC,ADAP,yBC9BE,QACE,0BAAa,AAAb,aAAa,AACb,mBAAY,AAAZ,oBAAY,AAAZ,YAAY,AACZ,cAAe,CAChB,AACD,aACE,mBAAc,AAAd,kBAAc,AAAd,cAAc,AACd,WAAW,AACX,cAAe,CAChB,AAGC,UFFN,mBAAsC,AAAtC,sBAAsC,AAAtC,kBAAsC,AAItC,kBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,WFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,WFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,WFFN,mBAAsC,AAAtC,kBAAsC,AAAtC,cAAsC,AAItC,cAAuC,CEAhC,AAGH,gBAAwB,4BAAS,AAAT,kBAAS,AAAT,QAAS,CAAI,AAErC,eAAuB,6Bb2KG,Aa3KH,kBb2KG,Aa3KH,Qb2KG,Ca3KoB,AAG5C,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,6BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,aAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAArC,aAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAArC,aAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAMnC,aFTR,aAA4B,CEWnB,AAFD,aFTR,oBAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,eAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,eAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,eAA8C,CEWrC,AAFD,cFTR,qBAA8C,CEWrC,AAFD,cFTR,qBAA8C,CEWrC,CAAA,ADAP,yBC9BE,QACE,0BAAa,AAAb,aAAa,AACb,mBAAY,AAAZ,oBAAY,AAAZ,YAAY,AACZ,cAAe,CAChB,AACD,aACE,mBAAc,AAAd,kBAAc,AAAd,cAAc,AACd,WAAW,AACX,cAAe,CAChB,AAGC,UFFN,mBAAsC,AAAtC,sBAAsC,AAAtC,kBAAsC,AAItC,kBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,WFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,WFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,WFFN,mBAAsC,AAAtC,kBAAsC,AAAtC,cAAsC,AAItC,cAAuC,CEAhC,AAGH,gBAAwB,4BAAS,AAAT,kBAAS,AAAT,QAAS,CAAI,AAErC,eAAuB,6Bb2KG,Aa3KH,kBb2KG,Aa3KH,Qb2KG,Ca3KoB,AAG5C,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,6BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,aAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAArC,aAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAArC,aAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAMnC,aFTR,aAA4B,CEWnB,AAFD,aFTR,oBAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,eAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,eAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,eAA8C,CEWrC,AAFD,cFTR,qBAA8C,CEWrC,AAFD,cFTR,qBAA8C,CEWrC,CAAA,ADAP,yBC9BE,QACE,0BAAa,AAAb,aAAa,AACb,mBAAY,AAAZ,oBAAY,AAAZ,YAAY,AACZ,cAAe,CAChB,AACD,aACE,mBAAc,AAAd,kBAAc,AAAd,cAAc,AACd,WAAW,AACX,cAAe,CAChB,AAGC,UFFN,mBAAsC,AAAtC,sBAAsC,AAAtC,kBAAsC,AAItC,kBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,WFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,WFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,WFFN,mBAAsC,AAAtC,kBAAsC,AAAtC,cAAsC,AAItC,cAAuC,CEAhC,AAGH,gBAAwB,4BAAS,AAAT,kBAAS,AAAT,QAAS,CAAI,AAErC,eAAuB,6Bb2KG,Aa3KH,kBb2KG,Aa3KH,Qb2KG,Ca3KoB,AAG5C,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,6BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,aAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAArC,aAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAArC,aAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAMnC,aFTR,aAA4B,CEWnB,AAFD,aFTR,oBAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,eAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,eAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,eAA8C,CEWrC,AAFD,cFTR,qBAA8C,CEWrC,AAFD,cFTR,qBAA8C,CEWrC,CAAA,ADAP,0BC9BE,QACE,0BAAa,AAAb,aAAa,AACb,mBAAY,AAAZ,oBAAY,AAAZ,YAAY,AACZ,cAAe,CAChB,AACD,aACE,mBAAc,AAAd,kBAAc,AAAd,cAAc,AACd,WAAW,AACX,cAAe,CAChB,AAGC,UFFN,mBAAsC,AAAtC,sBAAsC,AAAtC,kBAAsC,AAItC,kBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,UFFN,mBAAsC,AAAtC,iBAAsC,AAAtC,aAAsC,AAItC,aAAuC,CEAhC,AAFD,WFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,WFFN,mBAAsC,AAAtC,uBAAsC,AAAtC,mBAAsC,AAItC,mBAAuC,CEAhC,AAFD,WFFN,mBAAsC,AAAtC,kBAAsC,AAAtC,cAAsC,AAItC,cAAuC,CEAhC,AAGH,gBAAwB,4BAAS,AAAT,kBAAS,AAAT,QAAS,CAAI,AAErC,eAAuB,6Bb2KG,Aa3KH,kBb2KG,Aa3KH,Qb2KG,Ca3KoB,AAG5C,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,4BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,YAAwB,6BADZ,AACY,iBADZ,AACY,OADZ,CACyB,AAArC,aAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAArC,aAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAArC,aAAwB,6BADZ,AACY,kBADZ,AACY,QADZ,CACyB,AAMnC,aFTR,aAA4B,CEWnB,AAFD,aFTR,oBAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,eAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,eAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,qBAA8C,CEWrC,AAFD,aFTR,eAA8C,CEWrC,AAFD,cFTR,qBAA8C,CEWrC,AAFD,cFTR,qBAA8C,CEWrC,CAAA,ACxDX,OACE,WAAW,AACX,mBd2HW,Ac1HX,adSgB,CcSjB,AArBD,oBAQI,gBd8UgC,Ac7UhC,mBAAmB,AACnB,4BdJc,CcKf,AAXH,gBAcI,sBAAsB,AACtB,+BdTc,CcUf,AAhBH,mBAmBI,4Bdbc,Cccf,AAQH,0BAGI,cdwT+B,CcvThC,AAQH,gBACE,wBdnCgB,CcgDjB,AAdD,sCAKI,wBdvCc,CcwCf,AANH,kDAWM,uBAA4C,CAC7C,AAIL,mGAKI,QAAS,CACV,AAOH,yCAEI,oCd1DW,Cc2DZ,AXhED,4BW2EI,cdvEY,AcwEZ,qCdvES,CGLS,AYPtB,mDAII,wBC2E4D,CD1E7D,AALH,uFAYM,oBCmE0D,CDlE3D,AZNL,kCYiBM,wBAJsC,CZbtB,AYYtB,0EASQ,wBARoC,CASrC,AA7BP,yDAII,wBC2E4D,CD1E7D,AALH,+FAYM,oBCmE0D,CDlE3D,AZNL,oCYiBM,wBAJsC,CZbtB,AYYtB,8EASQ,wBARoC,CASrC,AA7BP,mDAII,wBC2E4D,CD1E7D,AALH,uFAYM,oBCmE0D,CDlE3D,AZNL,kCYiBM,wBAJsC,CZbtB,AYYtB,0EASQ,wBARoC,CASrC,AA7BP,0CAII,wBC2E4D,CD1E7D,AALH,2EAYM,oBCmE0D,CDlE3D,AZNL,+BYiBM,wBAJsC,CZbtB,AYYtB,oEASQ,wBARoC,CASrC,AA7BP,mDAII,wBC2E4D,CD1E7D,AALH,uFAYM,oBCmE0D,CDlE3D,AZNL,kCYiBM,wBAJsC,CZbtB,AYYtB,0EASQ,wBARoC,CASrC,AA7BP,gDAII,wBC2E4D,CD1E7D,AALH,mFAYM,oBCmE0D,CDlE3D,AZNL,iCYiBM,wBAJsC,CZbtB,AYYtB,wEASQ,wBARoC,CASrC,AA7BP,6CAII,wBC2E4D,CD1E7D,AALH,+EAYM,oBCmE0D,CDlE3D,AZNL,gCYiBM,wBAJsC,CZbtB,AYYtB,sEASQ,wBARoC,CASrC,AA7BP,0CAII,wBC2E4D,CD1E7D,AALH,2EAYM,oBCmE0D,CDlE3D,AZNL,+BYiBM,wBAJsC,CZbtB,AYYtB,oEASQ,wBARoC,CASrC,AA7BP,gDAII,qCfQS,CePV,AZEH,iCYiBM,qCAJsC,CZbtB,AYYtB,wEASQ,qCARoC,CASrC,AD6ET,sBAGM,Wd3GS,Ac4GT,yBdpGY,AcqGZ,oBd2PqD,Cc1PtD,AANL,uBAWM,cd5GY,Ac6GZ,yBdlHY,AcmHZ,oBdlHY,CcmHb,AAIL,YACE,Wd3Ha,Ac4Hb,wBdpHgB,Cc8IjB,AA5BD,mDAOI,oBduOuD,CctOxD,AARH,2BAWI,QAAS,CACV,AAZH,oDAgBM,0Cd1IS,Cc2IV,AXtIH,uCW4IM,WdjJO,AckJP,2CdlJO,CGKS,AS6DpB,4BEiGA,qBAEI,cAAc,AACd,WAAW,AACX,gBAAgB,AAChB,gCAAiC,CAOpC,AAZA,qCASK,QAAS,CACV,CAAA,AF3GL,4BEiGA,qBAEI,cAAc,AACd,WAAW,AACX,gBAAgB,AAChB,gCAAiC,CAOpC,AAZA,qCASK,QAAS,CACV,CAAA,AF3GL,4BEiGA,qBAEI,cAAc,AACd,WAAW,AACX,gBAAgB,AAChB,gCAAiC,CAOpC,AAZA,qCASK,QAAS,CACV,CAAA,AF3GL,6BEiGA,qBAEI,cAAc,AACd,WAAW,AACX,gBAAgB,AAChB,gCAAiC,CAOpC,AAZA,qCASK,QAAS,CACV,CAAA,AAfT,kBAOQ,cAAc,AACd,WAAW,AACX,gBAAgB,AAChB,gCAAiC,CAOpC,AAjBL,kCAcU,QAAS,CACV,AG9KT,cACE,cAAc,AACd,WAAW,AACX,mCjBqe2H,AiBpe3H,yBjBqXkC,AChQ9B,eAtCY,AgB5EhB,gBjB8Q+B,AiB7Q/B,gBjBkR+B,AiBjR/B,cjBDgB,AiBEhB,sBjBTa,AiBUb,4BAA4B,AAC5B,yBjBPgB,AQNd,sBRqOgC,AkBpO9B,wFlB4e4F,AkB5e5F,gFlB4e4F,AkB5e5F,2ElB4e4F,AkB5e5F,wElB4e4F,AkB5e5F,6GlB4e4F,CiB7bjG,AC1CG,uCDLJ,cCMM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CDyCrB,CAAA,AA/CD,0BAsBI,6BAA6B,AAC7B,QAAS,CACV,AEjBD,oBACE,cnBAc,AmBCd,sBnBRW,AmBSX,qBnBgdsE,AmB/ctE,UAAU,AAKR,uDnB8CiB,AmB9CjB,8CnB8CiB,CmB5CpB,AFlBH,yCA+BI,cjBxBc,AiB0Bd,SAAU,CACX,AAlCH,oCA+BI,cjBxBc,AiB0Bd,SAAU,CACX,AAlCH,qCA+BI,cjBxBc,AiB0Bd,SAAU,CACX,AAlCH,2BA+BI,cjBxBc,AiB0Bd,SAAU,CACX,AAlCH,+CA2CI,yBjBxCc,AiB0Cd,SAAU,CACX,AAGH,qCAOI,cjBhDc,AiBiDd,qBjBxDW,CiByDZ,AAIH,uCAEE,cAAc,AACd,UAAW,CACZ,AASD,gBACE,iCAA+D,AAC/D,oCAAkE,AAClE,gBAAgB,AhBZd,kBAAW,AgBcb,ejB0M+B,CiBzMhC,AAED,mBACE,+BAAkE,AAClE,kCAAqE,AhBoCjE,kBAtCY,AgBIhB,ejBuI+B,CiBtIhC,AAED,mBACE,gCAAkE,AAClE,mCAAqE,AhB6BjE,mBAtCY,AgBWhB,ejBiI+B,CiBhIhC,AAQD,wBACE,cAAc,AACd,WAAW,AACX,qBjB8QmC,AiB7QnC,wBjB6QmC,AiB5QnC,gBAAgB,AAChB,gBjB6K+B,AiB5K/B,cjBpGgB,AiBqGhB,6BAA6B,AAC7B,yBAAyB,AACzB,kBAAmC,CAOpC,AAjBD,gFAcI,gBAAgB,AAChB,cAAe,CAChB,AAWH,iBACE,kCjBsWqI,AiBrWrI,uBjB+PiC,AC1Q7B,mBAtCY,AgBmDhB,gBjByF+B,AQhO7B,oBRuO+B,CiB9FlC,AAED,iBACE,gCjB+VqI,AiB9VrI,oBjB4PgC,AC/Q5B,kBAtCY,AgB2DhB,gBjBgF+B,AQ/N7B,oBRsO+B,CiBrFlC,AAGD,wDAGI,WAAY,CACb,AAGH,sBACE,WAAY,CACb,AAOD,YACE,kBjBoV0C,CiBnV3C,AAED,WACE,cAAc,AACd,kBjBqU4C,CiBpU7C,AAOD,UACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,mBAAe,AAAf,eAAe,AACf,kBAA0C,AAC1C,gBAAyC,CAO1C,AAXD,uCAQI,kBAA0C,AAC1C,gBAAyC,CAC1C,AAQH,YACE,kBAAkB,AAClB,cAAc,AACd,oBjB0S6C,CiBzS9C,AAED,kBACE,kBAAkB,AAClB,kBjBsS2C,AiBrS3C,oBjBoS6C,CiB/R9C,AARD,6CAMI,ajBxMc,CiByMf,AAGH,kBACE,eAAgB,CACjB,AAED,mBACE,2BAAoB,AAApB,2BAAoB,AAApB,oBAAoB,AACpB,yBAAmB,AAAnB,sBAAmB,AAAnB,mBAAmB,AACnB,eAAe,AACf,oBjByR4C,CiBhR7C,AAbD,qCAQI,gBAAgB,AAChB,aAAa,AACb,uBjBoR4C,AiBnR5C,aAAc,CACf,AE5MD,gBACE,aAAa,AACb,WAAW,AACX,mBnBod0C,AC5a1C,cAAW,AkBtCX,anBSa,CmBRd,AAED,eACE,kBAAkB,AAClB,SAAS,AACT,UAAU,AACV,aAAa,AACb,eAAe,AACf,uBnBsyBqC,AmBryBrC,iBAAiB,AlBmFf,mBAtCY,AkB3Cd,gBnBkP6B,AmBjP7B,cnB/Bc,AmBgCd,yCnBLa,AQtCb,qBRqOgC,CmBxLjC,AAGC,0DAEE,qBnBZW,AmBeT,oCnBgb2F,AmB/a3F,4PHfmI,AGgBnI,4BAA4B,AAC5B,2DnB+a6F,AmB9a7F,+DnB6awF,CmBja3F,AArBD,sEAaI,qBnBvBS,AmBwBT,yDnBxBS,AmBwBT,gDnBxBS,CmByBV,AAfH,kLAmBI,aAAc,CACf,AAMH,0EAGI,oCnBwZ2F,AmBvZ3F,iFnByZ6F,CmBvZhG,AAID,4DAEE,qBnBhDW,AmBmDT,sDnBqe0J,AmBpe1J,4gBAAkJ,CAYrJ,AAlBD,wEAUI,qBnBxDS,AmByDT,yDnBzDS,AmByDT,gDnBzDS,CmB0DV,AAZH,sLAgBI,aAAc,CACf,AAMH,sMAII,aAAc,CACf,AAKH,sGAGI,anBlFS,CmBmFV,AAJH,kMAQI,aAAc,CACf,AAKH,sHAGI,anBhGS,CmBqGV,AARH,oIAMM,oBnBnGO,CmBoGR,AAPL,kNAYI,aAAc,CACf,AAbH,oJAiBM,qBAAkC,ACnJxC,wBDoJ+C,CAC1C,AAnBL,gJAwBM,yDnBrHO,AmBqHP,gDnBrHO,CmBsHR,AAzBL,4KA4BM,oBnBzHO,CmB0HR,AAOL,0GAGI,oBnBpIS,CmBqIV,AAJH,sMAQI,aAAc,CACf,AATH,sHAaM,qBnB9IO,AmB+IP,yDnB/IO,AmB+IP,gDnB/IO,CmBgJR,AA9JP,kBACE,aAAa,AACb,WAAW,AACX,mBnBod0C,AC5a1C,cAAW,AkBtCX,anBMa,CmBLd,AAED,iBACE,kBAAkB,AAClB,SAAS,AACT,UAAU,AACV,aAAa,AACb,eAAe,AACf,uBnBsyBqC,AmBryBrC,iBAAiB,AlBmFf,mBAtCY,AkB3Cd,gBnBkP6B,AmBjP7B,WnBxCW,AmByCX,wCnBRa,AQnCb,qBRqOgC,CmBxLjC,AAGC,8DAEE,qBnBfW,AmBkBT,oCnBgb2F,AmB/a3F,sSHfmI,AGgBnI,4BAA4B,AAC5B,2DnB+a6F,AmB9a7F,+DnB6awF,CmBja3F,AArBD,0EAaI,qBnB1BS,AmB2BT,wDnB3BS,AmB2BT,+CnB3BS,CmB4BV,AAfH,kMAmBI,aAAc,CACf,AAMH,8EAGI,oCnBwZ2F,AmBvZ3F,iFnByZ6F,CmBvZhG,AAID,gEAEE,qBnBnDW,AmBsDT,sDnBqe0J,AmBpe1J,sjBAAkJ,CAYrJ,AAlBD,4EAUI,qBnB3DS,AmB4DT,wDnB5DS,AmB4DT,+CnB5DS,CmB6DV,AAZH,sMAgBI,aAAc,CACf,AAMH,sNAII,aAAc,CACf,AAKH,0GAGI,anBrFS,CmBsFV,AAJH,kNAQI,aAAc,CACf,AAKH,0HAGI,anBnGS,CmBwGV,AARH,wIAMM,oBnBtGO,CmBuGR,AAPL,kOAYI,aAAc,CACf,AAbH,wJAiBM,qBAAkC,ACnJxC,wBDoJ+C,CAC1C,AAnBL,oJAwBM,wDnBxHO,AmBwHP,+CnBxHO,CmByHR,AAzBL,gLA4BM,oBnB5HO,CmB6HR,AAOL,8GAGI,oBnBvIS,CmBwIV,AAJH,sNAQI,aAAc,CACf,AATH,0HAaM,qBnBjJO,AmBkJP,wDnBlJO,AmBkJP,+CnBlJO,CmBmJR,AFsET,aACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,mBAAmB,AACnB,yBAAmB,AAAnB,sBAAmB,AAAnB,kBAAmB,CAqEpB,AAxED,yBASI,UAAW,CACZ,AL/MC,yBKqMJ,mBAeM,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,yBAAmB,AAAnB,sBAAmB,AAAnB,mBAAmB,AACnB,wBAAuB,AAAvB,qBAAuB,AAAvB,uBAAuB,AACvB,eAAgB,CACjB,AAnBL,yBAuBM,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,mBAAc,AAAd,kBAAc,AAAd,cAAc,AACd,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,mBAAmB,AACnB,yBAAmB,AAAnB,sBAAmB,AAAnB,mBAAmB,AACnB,eAAgB,CACjB,AA5BL,2BAgCM,qBAAqB,AACrB,WAAW,AACX,qBAAsB,CACvB,AAnCL,qCAuCM,oBAAqB,CACtB,AAxCL,sDA4CM,UAAW,CACZ,AA7CL,yBAkDM,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,yBAAmB,AAAnB,sBAAmB,AAAnB,mBAAmB,AACnB,wBAAuB,AAAvB,qBAAuB,AAAvB,uBAAuB,AACvB,WAAW,AACX,cAAe,CAChB,AAvDL,+BAyDM,kBAAkB,AAClB,oBAAc,AAAd,cAAc,AACd,aAAa,AACb,qBjB2LwC,AiB1LxC,aAAc,CACf,AA9DL,6BAiEM,yBAAmB,AAAnB,sBAAmB,AAAnB,mBAAmB,AACnB,wBAAuB,AAAvB,qBAAuB,AAAvB,sBAAuB,CACxB,AAnEL,mCAqEM,eAAgB,CACjB,CAAA,AIjUL,KACE,qBAAqB,AAErB,gBrBkR+B,AqBjR/B,crBMgB,AqBLhB,kBAAkB,AAClB,sBAAsB,AACtB,yBAAiB,AAAjB,sBAAiB,AAAjB,qBAAiB,AAAjB,iBAAiB,AACjB,6BAA6B,AAC7B,6BAA2C,ACsF3C,yBtB0RkC,AChQ9B,eAtCY,AqBchB,gBtByL+B,AQ3R7B,sBRqOgC,AkBpO9B,qJlBqb6I,AkBrb7I,6IlBqb6I,AkBrb7I,wIlBqb6I,AkBrb7I,qIlBqb6I,AkBrb7I,0KlBqb6I,CqB9YlJ,AHlCG,uCGLJ,KHMM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CGiCrB,CAAA,AlBjCC,WkBQE,crBJc,AqBKd,oBAAqB,ClBTD,AkBNxB,sBAoBI,UAAU,AACV,uDrByCmB,AqBzCnB,8CrByCmB,CqBxCpB,AAtBH,4BA2BI,YrB8Y6B,CqB5Y9B,AAaH,uCAEE,mBAAoB,CACrB,AAQC,aCrDA,WtBCa,AoBDX,yBpB8DmB,AsB5DrB,oBtB4DqB,CqBPpB,AlBjDD,mBmBAE,WtBLW,AoBDX,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,sCAMI,uDAAiF,AAAjF,8CAAiF,CAEpF,AAGD,4CAEE,WtBvBW,AsBwBX,yBtBqCmB,AsBpCnB,oBtBoCmB,CsB/BpB,AAED,uIAGE,WtBnCW,AsBoCX,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,yJAKI,uDAAiF,AAAjF,8CAAiF,CAEpF,ADGH,eCrDA,WtBCa,AoBDX,yBpBOc,AsBLhB,oBtBKgB,CqBgDf,AlBjDD,qBmBAE,WtBLW,AoBDX,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,0CAMI,yDAAiF,AAAjF,gDAAiF,CAEpF,AAGD,gDAEE,WtBvBW,AsBwBX,yBtBlBc,AsBmBd,oBtBnBc,CsBwBf,AAED,6IAGE,WtBnCW,AsBoCX,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,+JAKI,yDAAiF,AAAjF,gDAAiF,CAEpF,ADGH,aCrDA,ctBUgB,AoBVd,yBpBqCa,AsBnCf,oBtBmCe,CqBkBd,AlBjDD,mBmBAE,WtBLW,AoBDX,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,sCAMI,wDAAiF,AAAjF,+CAAiF,CAEpF,AAGD,4CAEE,ctBdc,AsBed,yBtBYa,AsBXb,oBtBWa,CsBNd,AAED,uIAGE,WtBnCW,AsBoCX,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,yJAKI,wDAAiF,AAAjF,+CAAiF,CAEpF,ADGH,UCrDA,WtBCa,AoBDX,yBpBuCa,AsBrCf,oBtBqCe,CqBgBd,AlBjDD,gBmBAE,WtBLW,AoBDX,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,gCAMI,wDAAiF,AAAjF,+CAAiF,CAEpF,AAGD,sCAEE,WtBvBW,AsBwBX,yBtBca,AsBbb,oBtBaa,CsBRd,AAED,8HAGE,WtBnCW,AsBoCX,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,gJAKI,wDAAiF,AAAjF,+CAAiF,CAEpF,ADGH,aCrDA,ctBUgB,AoBVd,yBpBoCa,AsBlCf,oBtBkCe,CqBmBd,AlBjDD,mBmBAE,ctBIc,AoBVd,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,sCAMI,wDAAiF,AAAjF,+CAAiF,CAEpF,AAGD,4CAEE,ctBdc,AsBed,yBtBWa,AsBVb,oBtBUa,CsBLd,AAED,uIAGE,ctB1Bc,AsB2Bd,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,yJAKI,wDAAiF,AAAjF,+CAAiF,CAEpF,ADGH,YCrDA,WtBCa,AoBDX,yBpBkCa,AsBhCf,oBtBgCe,CqBqBd,AlBjDD,kBmBAE,WtBLW,AoBDX,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,oCAMI,uDAAiF,AAAjF,8CAAiF,CAEpF,AAGD,0CAEE,WtBvBW,AsBwBX,yBtBSa,AsBRb,oBtBQa,CsBHd,AAED,oIAGE,WtBnCW,AsBoCX,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,sJAKI,uDAAiF,AAAjF,8CAAiF,CAEpF,ADGH,WCrDA,ctBUgB,AoBVd,yBpBEc,AsBAhB,oBtBAgB,CqBqDf,AlBjDD,iBmBAE,ctBIc,AoBVd,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,kCAMI,yDAAiF,AAAjF,gDAAiF,CAEpF,AAGD,wCAEE,ctBdc,AsBed,yBtBvBc,AsBwBd,oBtBxBc,CsB6Bf,AAED,iIAGE,ctB1Bc,AsB2Bd,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,mJAKI,yDAAiF,AAAjF,gDAAiF,CAEpF,ADGH,UCrDA,WtBCa,AoBDX,yBpBSc,AsBPhB,oBtBOgB,CqB8Cf,AlBjDD,gBmBAE,WtBLW,AoBDX,yBEDoF,AASpF,oBATyH,CnBOrG,AmBKtB,gCAMI,sDAAiF,AAAjF,6CAAiF,CAEpF,AAGD,sCAEE,WtBvBW,AsBwBX,yBtBhBc,AsBiBd,oBtBjBc,CsBsBf,AAED,8HAGE,WtBnCW,AsBoCX,yBAtCuK,AA0CvK,oBA1C+M,CAoDhN,AARC,gJAKI,sDAAiF,AAAjF,6CAAiF,CAEpF,ADSH,qBCJA,ctBOqB,AsBNrB,oBtBMqB,CqBDpB,AlBvDD,2BmBqDE,WtB1DW,AsB2DX,yBtBEmB,AsBDnB,oBtBCmB,CGxDC,AmB0DtB,sDAEE,sDtBJmB,AsBInB,6CtBJmB,CsBKpB,AAED,4DAEE,ctBTmB,AsBUnB,4BAA6B,CAC9B,AAED,+JAGE,WtB7EW,AsB8EX,yBtBjBmB,AsBkBnB,oBtBlBmB,CsB4BpB,AARC,iLAKI,sDtBzBe,AsByBf,6CtBzBe,CsB2BlB,AD9BH,uBCJA,ctBhDgB,AsBiDhB,oBtBjDgB,CqBsDf,AlBvDD,6BmBqDE,WtB1DW,AsB2DX,yBtBrDc,AsBsDd,oBtBtDc,CGDM,AmB0DtB,0DAEE,yDtB3Dc,AsB2Dd,gDtB3Dc,CsB4Df,AAED,gEAEE,ctBhEc,AsBiEd,4BAA6B,CAC9B,AAED,qKAGE,WtB7EW,AsB8EX,yBtBxEc,AsByEd,oBtBzEc,CsBmFf,AARC,uLAKI,yDtBhFU,AsBgFV,gDtBhFU,CsBkFb,AD9BH,qBCJA,ctBlBe,AsBmBf,oBtBnBe,CqBwBd,AlBvDD,2BmBqDE,ctBjDc,AsBkDd,yBtBvBa,AsBwBb,oBtBxBa,CG/BO,AmB0DtB,sDAEE,wDtB7Ba,AsB6Bb,+CtB7Ba,CsB8Bd,AAED,4DAEE,ctBlCa,AsBmCb,4BAA6B,CAC9B,AAED,+JAGE,ctBpEc,AsBqEd,yBtB1Ca,AsB2Cb,oBtB3Ca,CsBqDd,AARC,iLAKI,wDtBlDS,AsBkDT,+CtBlDS,CsBoDZ,AD9BH,kBCJA,ctBhBe,AsBiBf,oBtBjBe,CqBsBd,AlBvDD,wBmBqDE,WtB1DW,AsB2DX,yBtBrBa,AsBsBb,oBtBtBa,CGjCO,AmB0DtB,gDAEE,wDtB3Ba,AsB2Bb,+CtB3Ba,CsB4Bd,AAED,sDAEE,ctBhCa,AsBiCb,4BAA6B,CAC9B,AAED,sJAGE,WtB7EW,AsB8EX,yBtBxCa,AsByCb,oBtBzCa,CsBmDd,AARC,wKAKI,wDtBhDS,AsBgDT,+CtBhDS,CsBkDZ,AD9BH,qBCJA,ctBnBe,AsBoBf,oBtBpBe,CqByBd,AlBvDD,2BmBqDE,ctBjDc,AsBkDd,yBtBxBa,AsByBb,oBtBzBa,CG9BO,AmB0DtB,sDAEE,uDtB9Ba,AsB8Bb,8CtB9Ba,CsB+Bd,AAED,4DAEE,ctBnCa,AsBoCb,4BAA6B,CAC9B,AAED,+JAGE,ctBpEc,AsBqEd,yBtB3Ca,AsB4Cb,oBtB5Ca,CsBsDd,AARC,iLAKI,uDtBnDS,AsBmDT,8CtBnDS,CsBqDZ,AD9BH,oBCJA,ctBrBe,AsBsBf,oBtBtBe,CqB2Bd,AlBvDD,0BmBqDE,WtB1DW,AsB2DX,yBtB1Ba,AsB2Bb,oBtB3Ba,CG5BO,AmB0DtB,oDAEE,uDtBhCa,AsBgCb,8CtBhCa,CsBiCd,AAED,0DAEE,ctBrCa,AsBsCb,4BAA6B,CAC9B,AAED,4JAGE,WtB7EW,AsB8EX,yBtB7Ca,AsB8Cb,oBtB9Ca,CsBwDd,AARC,8KAKI,uDtBrDS,AsBqDT,8CtBrDS,CsBuDZ,AD9BH,mBCJA,ctBrDgB,AsBsDhB,oBtBtDgB,CqB2Df,AlBvDD,yBmBqDE,ctBjDc,AsBkDd,yBtB1Dc,AsB2Dd,oBtB3Dc,CGIM,AmB0DtB,kDAEE,yDtBhEc,AsBgEd,gDtBhEc,CsBiEf,AAED,wDAEE,ctBrEc,AsBsEd,4BAA6B,CAC9B,AAED,yJAGE,ctBpEc,AsBqEd,yBtB7Ec,AsB8Ed,oBtB9Ec,CsBwFf,AARC,2KAKI,yDtBrFU,AsBqFV,gDtBrFU,CsBuFb,AD9BH,kBCJA,ctB9CgB,AsB+ChB,oBtB/CgB,CqBoDf,AlBvDD,wBmBqDE,WtB1DW,AsB2DX,yBtBnDc,AsBoDd,oBtBpDc,CGHM,AmB0DtB,gDAEE,sDtBzDc,AsByDd,6CtBzDc,CsB0Df,AAED,sDAEE,ctB9Dc,AsB+Dd,4BAA6B,CAC9B,AAED,sJAGE,WtB7EW,AsB8EX,yBtBtEc,AsBuEd,oBtBvEc,CsBiFf,AARC,wKAKI,sDtB9EU,AsB8EV,6CtB9EU,CsBgFb,ADnBL,UACE,gBrB8M+B,AqB7M/B,crBVqB,AqBWrB,oBrB6F4C,CqBzE7C,AlBvFC,gBkBsEE,crB2F8D,AqB1F9D,yBrB2F+C,CGlK3B,AkBgExB,gCAYI,0BrBsF+C,AqBrF/C,wBAAgB,AAAhB,eAAgB,CACjB,AAdH,sCAkBI,crBjFc,AqBkFd,mBAAoB,CACrB,AAUH,2BCLE,oBtBySgC,AC/Q5B,kBAtCY,AqBchB,gBtB6H+B,AQ/N7B,oBRsO+B,CqB/HlC,AAED,2BCTE,uBtBoSiC,AC1Q7B,mBAtCY,AqBchB,gBtB8H+B,AQhO7B,oBRuO+B,CqB5HlC,AAOD,WACE,cAAc,AACd,UAAW,CAMZ,AARD,sBAMI,iBrBuT+B,CqBtThC,AAIH,sFAII,UAAW,CACZ,AEvIH,MLMM,wClBsP2C,AkBtP3C,mClBsP2C,AkBtP3C,+BlBsP2C,CuBtPhD,ALKG,uCKXJ,MLYM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CKNrB,CAAA,AAND,iBAII,SAAU,CACX,AAGH,qBAEI,YAAa,CACd,AAGH,YACE,kBAAkB,AAClB,SAAS,AACT,gBAAgB,ALXZ,qClBuPwC,AkBvPxC,gClBuPwC,AkBvPxC,4BlBuPwC,CuB1O7C,ALRG,uCKGJ,YLFM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CKOrB,CAAA,AClBD,uCAIE,iBAAkB,CACnB,AAED,iBACE,kBAAmB,CAIpB,ACgBG,uBACE,qBAAqB,AACrB,oBzB0N0C,AyBzN1C,uBzBwN0C,AyBvN1C,WAAW,AAhCf,uBAA8B,AAC9B,qCAA4C,AAC5C,gBAAgB,AAChB,mCAA2C,CAqCxC,AAgBD,6BACE,aAAc,CACf,AD3CL,eACE,kBAAkB,AAClB,SAAS,AACT,OAAO,AACP,axBipBsC,AwBhpBtC,aAAa,AACb,WAAW,AACX,gBxButBuC,AwBttBvC,iBAA8B,AAC9B,oBAA4B,AvBsGxB,eAtCY,AuB9DhB,cxBXgB,AwBYhB,gBAAgB,AAChB,gBAAgB,AAChB,sBxBvBa,AwBwBb,4BAA4B,AAC5B,qCxBfa,AQZX,qBRqOgC,CwBvMnC,AAMG,oBACE,WAAW,AACX,MAAO,CACR,AAED,qBACE,QAAQ,AACR,SAAU,CACX,AZWD,yBYnBA,uBACE,WAAW,AACX,MAAO,CACR,AAED,wBACE,QAAQ,AACR,SAAU,CACX,CAAA,AZWD,yBYnBA,uBACE,WAAW,AACX,MAAO,CACR,AAED,wBACE,QAAQ,AACR,SAAU,CACX,CAAA,AZWD,yBYnBA,uBACE,WAAW,AACX,MAAO,CACR,AAED,wBACE,QAAQ,AACR,SAAU,CACX,CAAA,AZWD,0BYnBA,uBACE,WAAW,AACX,MAAO,CACR,AAED,wBACE,QAAQ,AACR,SAAU,CACX,CAAA,AAML,uBAEI,SAAS,AACT,YAAY,AACZ,aAAa,AACb,sBxBorBuC,CwBnrBxC,AChCC,+BACE,qBAAqB,AACrB,oBzB0N0C,AyBzN1C,uBzBwN0C,AyBvN1C,WAAW,AAzBf,aAAa,AACb,qCAA4C,AAC5C,0BAAiC,AACjC,mCAA2C,CA8BxC,AAgBD,qCACE,aAAc,CACf,ADSL,0BAEI,MAAM,AACN,WAAW,AACX,UAAU,AACV,aAAa,AACb,oBxBsqBuC,CwBrqBxC,AC9CC,kCACE,qBAAqB,AACrB,oBzB0N0C,AyBzN1C,uBzBwN0C,AyBvN1C,WAAW,AAlBf,mCAA0C,AAC1C,eAAe,AACf,sCAA6C,AAC7C,uBAA+B,CAuB5B,AAgBD,wCACE,aAAc,CACf,AA9BD,kCDmDE,gBAAiB,CAClB,AAIL,yBAEI,MAAM,AACN,WAAW,AACX,UAAU,AACV,aAAa,AACb,qBxBqpBuC,CwBppBxC,AC/DC,iCACE,qBAAqB,AACrB,oBzB0N0C,AyBzN1C,uBzBwN0C,AyBvN1C,UAAW,CAQZ,AAZD,iCAgBI,YAAa,CACd,AAED,kCACE,qBAAqB,AACrB,qBzBuMwC,AyBtMxC,uBzBqMwC,AyBpMxC,WAAW,AA9BjB,mCAA0C,AAC1C,yBAAgC,AAChC,qCAA6C,CA8BxC,AAGH,uCACE,aAAc,CACf,AAXC,kCDiDA,gBAAiB,CAClB,AAML,0IAKI,WAAW,AACX,WAAY,CACb,AAIH,kBE9GE,SAAS,AACT,gBAAmB,AACnB,gBAAgB,AAChB,4B1BCgB,CwB4GjB,AAKD,eACE,cAAc,AACd,WAAW,AACX,uBxByoBwC,AwBxoBxC,WAAW,AACX,gBxB4J+B,AwB3J/B,cxBhHgB,AwBiHhB,mBAAmB,AACnB,mBAAmB,AACnB,6BAA6B,AAC7B,QAAS,CAqCV,ArBzJC,0CqBmIE,cxB0mBqD,AwBzmBrD,qBAAqB,AJ9IrB,wBpBEc,CGWf,AqBuGH,4CAgCI,WxBnJW,AwBoJX,qBAAqB,AJrJrB,wBpB8DmB,CwByFpB,AAnCH,gDAuCI,cxBpJc,AwBqJd,oBAAoB,AACpB,4BAA6B,CAK9B,AAGH,oBACE,aAAc,CACf,AAGD,iBACE,cAAc,AACd,sBxBolBwC,AwBnlBxC,gBAAgB,AvBpDZ,mBAtCY,AuB4FhB,cxBxKgB,AwByKhB,kBAAmB,CACpB,AAGD,oBACE,cAAc,AACd,uBxB0kBwC,AwBzkBxC,axB7KgB,CwB8KjB,AG3LD,+BAEE,kBAAkB,AAClB,2BAAoB,AAApB,2BAAoB,AAApB,oBAAoB,AACpB,qBAAsB,CAiBvB,AArBD,yCAOI,kBAAkB,AAClB,mBAAc,AAAd,kBAAc,AAAd,aAAc,CAYf,AxBXD,qDwBII,SAAU,CxBJQ,AwBTxB,mKAkBM,SAAU,CACX,AAKL,aACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,mBAAe,AAAf,eAAe,AACf,uBAA2B,AAA3B,oBAA2B,AAA3B,0BAA2B,CAK5B,AARD,0BAMI,UAAW,CACZ,AAGH,0EAII,gB3B8L6B,C2B7L9B,AALH,mGnBhBI,0BmB0B8B,AnBzB9B,4BmByB8B,CAC/B,AAXH,+EnBFI,yBmBiB6B,AnBhB7B,2BmBgB6B,CAC9B,AAeH,uBACE,wBAAmC,AACnC,sBAAkC,CAWnC,AAbD,0GAOI,aAAc,CACf,AAED,wCACE,cAAe,CAChB,AAGH,yEACE,uBAAsC,AACtC,qBAAqC,CACtC,AAED,yEACE,sBAAsC,AACtC,oBAAqC,CACtC,AAmBD,oBACE,4BAAsB,AAAtB,6BAAsB,AAAtB,0BAAsB,AAAtB,sBAAsB,AACtB,wBAAuB,AAAvB,qBAAuB,AAAvB,uBAAuB,AACvB,wBAAuB,AAAvB,qBAAuB,AAAvB,sBAAuB,CAsBxB,AAzBD,wDAOI,UAAW,CACZ,AARH,4FAYI,e3B6G6B,C2B5G9B,AAbH,qHnBlFI,6BmBoG+B,AnBnG/B,2BmBmG+B,CAChC,AAnBH,iGnBhGI,yBmBuH4B,AnBtH5B,yBmBsH4B,CAC7B,AAgBH,yDAGI,eAAgB,CAQjB,AAXH,gMAOM,kBAAkB,AAClB,sBAAsB,AACtB,mBAAoB,CACrB,AC1JL,aACE,kBAAkB,AAClB,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,mBAAe,AAAf,eAAe,AACf,0BAAoB,AAApB,uBAAoB,AAApB,oBAAoB,AACpB,UAAW,CAgDZ,AArDD,sHAWI,kBAAkB,AAClB,mBAAc,AAAd,kBAAc,AAAd,cAAc,AAGd,SAAS,AACT,eAAgB,CAOjB,AAvBH,0gBAqBM,gB5B4M2B,C4B3M5B,AAtBL,yIA6BI,SAAU,CACX,AA9BH,mDAkCI,SAAU,CACX,AAnCH,yFpBeI,0BoBwBmD,ApBvBnD,4BoBuBmD,CAAK,AAvC5D,2FpB6BI,yBoBWmD,ApBVnD,2BoBUmD,CAAK,AAxC5D,0BA8CI,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,yBAAmB,AAAnB,sBAAmB,AAAnB,kBAAmB,CAKpB,AApDH,kIpBeI,0BoBmC6E,ApBlC7E,4BoBkC6E,CAAK,AAlDtF,+DpB6BI,yBoBsBsE,ApBrBtE,2BoBqBsE,CAAK,AAW/E,yCAEE,oBAAa,AAAb,oBAAa,AAAb,YAAa,CAoBd,AAtBD,mDAQI,kBAAkB,AAClB,SAAU,CAKX,AAdH,+DAYM,SAAU,CACX,AAbL,4VAoBI,gB5B+I6B,C4B9I9B,AAGH,qBAAuB,iB5B2IU,C4B3I4B,AAC7D,oBAAsB,gB5B0IW,C4B1I0B,AAQ3D,kBACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,yBAAmB,AAAnB,sBAAmB,AAAnB,mBAAmB,AACnB,yB5BuRkC,A4BtRlC,gBAAgB,A3BsBZ,eAtCY,A2BkBhB,gB5BgL+B,A4B/K/B,gB5BoL+B,A4BnL/B,c5B/FgB,A4BgGhB,kBAAkB,AAClB,mBAAmB,AACnB,yB5BvGgB,A4BwGhB,yB5BtGgB,AQNd,qBRqOgC,C4BjHnC,AApBD,2EAkBI,YAAa,CACd,AASH,2EAEE,+B5B6WqI,C4B5WtI,AAED,6PAME,oB5BkQgC,AC/Q5B,kBAtCY,A2BqDhB,gB5BsF+B,AQ/N7B,oBRsO+B,C4B3FlC,AAED,2EAEE,iC5B2VqI,C4B1VtI,AAED,6PAME,uB5B4OiC,AC1Q7B,mBAtCY,A2BsEhB,gB5BsE+B,AQhO7B,oBRuO+B,C4B3ElC,AAED,8DAEE,qBAA0E,CAC3E,AAUD,6XpB3JI,0BoBiK4B,ApBhK5B,4BoBgK4B,CAC/B,AAED,+WpBtJI,yBoB4J2B,ApB3J3B,2BoB2J2B,CAC9B,ACvLD,gBACE,kBAAkB,AAClB,cAAc,AACd,kBAA+C,AAC/C,mBAAqE,CACtE,AAED,uBACE,2BAAoB,AAApB,2BAAoB,AAApB,oBAAoB,AACpB,iB7Bqf0C,C6Bpf3C,AAED,sBACE,kBAAkB,AAClB,WAAW,AACX,SAAU,CAsCX,AAzCD,2DAMI,W7BpBW,A6BqBX,qB7BwCmB,AoB9DnB,wBpB8DmB,C6BrCpB,AAVH,yDAiBM,uD7B8BiB,A6B9BjB,8C7B8BiB,C6B5BpB,AAnBH,uEAsBI,oB7BqbsE,C6BpbvE,AAvBH,yEA0BI,W7BxCW,A6ByCX,yB7B8e8E,A6B7e9E,oB7B6e8E,C6B3e/E,AA9BH,qDAkCM,a7B1CY,C6B+Cb,AAvCL,4DAqCQ,wB7BjDU,C6BkDX,AASP,sBACE,kBAAkB,AAClB,gBAAgB,AAChB,kBAAmB,CA4BpB,AA/BD,6BAOI,kBAAkB,AAClB,YAA+E,AAC/E,aAA+D,AAC/D,cAAc,AACd,W7B0bwC,A6BzbxC,Y7BybwC,A6BxbxC,oBAAoB,AACpB,WAAW,AACX,sB7B5EW,A6B6EX,wB7BmJ6B,C6BjJ9B,AAlBH,4BAsBI,kBAAkB,AAClB,YAA+E,AAC/E,aAA+D,AAC/D,cAAc,AACd,W7B2awC,A6B1axC,Y7B0awC,A6BzaxC,WAAW,AACX,kCAAgE,CACjE,AAQH,8CrBrGI,qBRqOgC,C6B7HjC,AAHH,2EAOM,4MbrEqI,CasEtI,AARL,kFAaM,qB7BnDiB,AoB9DnB,wBpB8DmB,C6BsDlB,AAhBL,iFAkBM,yJbhFqI,CaiFtI,AAnBL,qFAwBM,sC7B9DiB,C6B+DlB,AAzBL,2FA2BM,sC7BjEiB,C6BkElB,AAQL,2CAGI,iB7B0Z+C,C6BzZhD,AAJH,wEAQM,sJb1GqI,Ca2GtI,AATL,kFAcM,sC7BxFiB,C6ByFlB,AASL,eACE,oBAA2D,CAmC5D,AApCD,4CAKM,cAAqD,AACrD,c7BkY+E,A6BjY/E,mBAAmB,AAEnB,oB7BgY4E,C6B/X7E,AAVL,2CAaM,wBAA0I,AAC1I,0BAA+G,AAC/G,uB7B2XiI,A6B1XjI,wB7B0XiI,A6BzXjI,yB7B3KY,A6B6KZ,qB7BsX4E,AkBziB5E,iKlB8f+H,AkB9f/H,yJlB8f+H,AkB9f/H,4IlB8f+H,AkB9f/H,yIlB8f+H,AkB9f/H,mNlB8f+H,C6BzUhI,AXhLD,uCW2JJ,2CX1JM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CW+KjB,CAAA,AArBL,yEA0BM,sB7BzLS,A6B0LT,sCAA4E,AAA5E,kCAA4E,AAA5E,6BAA4E,CAC7E,AA5BL,mFAiCM,sC7BnIiB,C6BoIlB,AAWL,eACE,qBAAqB,AACrB,WAAW,AACX,mC7BwR2H,A6BvR3H,0C7BwKkC,AChQ9B,eAtCY,A4BiIhB,gB7BiE+B,A6BhE/B,gB7BqE+B,A6BpE/B,c7B9MgB,A6B+MhB,sBAAsB,AACtB,6M7BmWmI,A6BlWnI,sB7BxNa,A6ByNb,yB7BrNgB,AQNd,sBRqOgC,A6BPlC,wBAAgB,AAAhB,qBAAgB,AAAhB,eAAgB,CAsCjB,AAtDD,qBAmBI,qB7B0PsE,A6BzPtE,UAAU,AAIR,uD7BvKiB,A6BuKjB,8C7BvKiB,C6BmLpB,AApCH,gCAiCM,c7BtOY,A6BuOZ,qB7B9OS,C6B+OV,AAnCL,8DAwCI,YAAY,AACZ,sB7BmIgC,A6BlIhC,qBAAsB,CACvB,AA3CH,wBA8CI,c7BpPc,A6BqPd,wB7BzPc,C6B0Pf,AAhDH,2BAoDI,YAAa,CACd,AAGH,kBACE,kC7BmOqI,A6BlOrI,oB7B2HkC,A6B1HlC,uB7B0HkC,A6BzHlC,oB7B0HiC,AC1Q7B,kBAtCY,C4BwLjB,AAED,kBACE,gC7B4NqI,A6B3NrI,mB7BwHiC,A6BvHjC,sB7BuHiC,A6BtHjC,kB7BuHgC,AC/Q5B,iBAtCY,C4BgMjB,AAOD,aACE,kBAAkB,AAClB,qBAAqB,AACrB,WAAW,AACX,mC7B0M2H,A6BzM3H,eAAgB,CACjB,AAED,mBACE,kBAAkB,AAClB,UAAU,AACV,WAAW,AACX,mC7BkM2H,A6BjM3H,SAAS,AACT,SAAU,CAoBX,AA1BD,4CASI,qB7B+KsE,A6B9KtE,uD7B9OmB,A6B8OnB,8C7B9OmB,C6B+OpB,AAXH,+CAcI,wB7B7Sc,C6B8Sf,AAfH,qDAmBM,gB7BqUQ,C6BpUT,AApBL,yDAwBI,yBAA0B,CAC3B,AAGH,mBACE,kBAAkB,AAClB,MAAM,AACN,QAAQ,AACR,OAAO,AACP,UAAU,AACV,mC7BoK2H,A6BnK3H,yB7BoDkC,A6BlDlC,gB7BlD+B,A6BmD/B,gB7B9C+B,A6B+C/B,c7BjUgB,A6BkUhB,sB7BzUa,A6B0Ub,yB7BtUgB,AQNd,qBRqOgC,C6B2HnC,AAjCD,yBAkBI,kBAAkB,AAClB,MAAM,AACN,QAAQ,AACR,SAAS,AACT,UAAU,AACV,cAAc,AACd,6B7B8I+F,A6B7I/F,yB7BkCgC,A6BjChC,gB7B9D6B,A6B+D7B,c7BjVc,A6BkVd,iBAAiB,AT1VjB,yBpBGc,A6ByVd,oBAAoB,ArB7VpB,iCqB8VgF,CACjF,AASH,cACE,WAAW,AACX,2BAA+F,AAC/F,UAAU,AACV,6BAA6B,AAC7B,wBAAgB,AAAhB,qBAAgB,AAAhB,eAAgB,CAkIjB,AAvID,oBAQI,YAAa,CAOd,AAfH,0CAY8B,uE7BrTP,A6BqTO,8D7BrTP,C6BqT2D,AAZlF,sCAa8B,8D7BtTP,C6BsT2D,AAblF,+BAc8B,8D7BvTP,C6BuT2D,AAdlF,gCAkBI,QAAS,CACV,AAnBH,oCAsBI,W7B8N6C,A6B7N7C,Y7B6N6C,A6B5N7C,oBAAyE,AT/XzE,yBpB8DmB,A6BmUnB,S7B6N0C,AQ/lB1C,mBRgmB6C,AkB/lB3C,4HlB8f+H,AkB9f/H,oHlB8f+H,AkB9f/H,+GlB8f+H,AkB9f/H,4GlB8f+H,AkB9f/H,kJlB8f+H,A6BzHjI,wBAAgB,AAAhB,eAAgB,CAKjB,AXrYC,uCWkWJ,oCXjWM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CWoYnB,CAAA,AAnCH,2CTvWI,wBpBmmB2E,C6B1N1E,AAlCL,6CAsCI,W7BuMoC,A6BtMpC,c7BuMqC,A6BtMrC,kBAAkB,AAClB,e7BsMuC,A6BrMvC,yB7B7Yc,A6B8Yd,yBAAyB,ArBnZzB,kBRylBoC,C6BnMrC,AA9CH,gCAiDI,W7BmM6C,A6BlM7C,Y7BkM6C,AoB3lB7C,yBpB8DmB,A6B6VnB,S7BmM0C,AQ/lB1C,mBRgmB6C,AkB/lB3C,4HlB8f+H,AkB9f/H,oHlB8f+H,AkB9f/H,+GlB8f+H,AkB9f/H,4GlB8f+H,AkB9f/H,kJlB8f+H,A6B/FjI,qBAAgB,AAAhB,eAAgB,CAKjB,AX/ZC,uCWkWJ,gCXjWM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CW8ZnB,CAAA,AA7DH,uCTvWI,wBpBmmB2E,C6BhM1E,AA5DL,gCAgEI,W7B6KoC,A6B5KpC,c7B6KqC,A6B5KrC,kBAAkB,AAClB,e7B4KuC,A6B3KvC,yB7Bvac,A6Bwad,yBAAyB,ArB7azB,kBRylBoC,C6BzKrC,AAxEH,yBA2EI,W7ByK6C,A6BxK7C,Y7BwK6C,A6BvK7C,aAAa,AACb,oB7BvD+B,A6BwD/B,mB7BxD+B,AoB9X/B,yBpB8DmB,A6B0XnB,S7BsK0C,AQ/lB1C,mBRgmB6C,AkB/lB3C,4HlB8f+H,AkB9f/H,oHlB8f+H,AkB9f/H,+GlB8f+H,AkB9f/H,4GlB8f+H,AkB9f/H,kJlB8f+H,A6BlEjI,eAAgB,CAKjB,AX5bC,uCWkWJ,yBXjWM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CW2bnB,CAAA,AA1FH,gCTvWI,wBpBmmB2E,C6BnK1E,AAzFL,yBA6FI,W7BgJoC,A6B/IpC,c7BgJqC,A6B/IrC,kBAAkB,AAClB,e7B+IuC,A6B9IvC,6BAA6B,AAC7B,yBAAyB,AACzB,mBAA4C,CAE7C,AArGH,8BAwGI,yB7B3cc,AQLd,kBRylBoC,C6BvIrC,AA1GH,8BA6GI,kBAAkB,AAClB,yB7Bjdc,AQLd,kBRylBoC,C6BjIrC,AAhHH,6CAoHM,wB7BrdY,C6Bsdb,AArHL,sDAwHM,cAAe,CAChB,AAzHL,yCA4HM,wB7B7dY,C6B8db,AA7HL,yCAgIM,cAAe,CAChB,AAjIL,kCAoIM,wB7BreY,C6Bseb,AAIL,+DXhfM,4HlB8f+H,AkB9f/H,oHlB8f+H,AkB9f/H,+GlB8f+H,AkB9f/H,4GlB8f+H,AkB9f/H,iJlB8f+H,C6BVpI,AX/eG,uCW2eJ,+DX1eM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CW8erB,CAAA,ACrfD,KACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,mBAAe,AAAf,eAAe,AACf,eAAe,AACf,gBAAgB,AAChB,eAAgB,CACjB,AAED,UACE,cAAc,AACd,mB9BkqBsC,C8BtpBvC,A3BXC,gC2BEE,oBAAqB,C3BCtB,A2BNH,mBAUI,c9BVc,A8BWd,oBAAoB,AACpB,cAAe,CAChB,AAOH,UACE,+B9BxBgB,C8B0DjB,AAnCD,oBAII,kB9BkM6B,C8BjM9B,AALH,oBAQI,6BAAgD,AtB3BhD,+BR4NgC,AQ3NhC,+BR2NgC,C8BrLjC,A3BrCD,oD2B6BI,oC9BnCY,CGSf,A2BcH,6BAgBM,c9BpCY,A8BqCZ,6BAA6B,AAC7B,wBAAyB,CAC1B,AAnBL,8DAwBI,c9B3Cc,A8B4Cd,sB9BnDW,A8BoDX,iC9BpDW,C8BqDZ,AA3BH,yBA+BI,gB9BuK6B,AQzN7B,yBsBoD4B,AtBnD5B,yBsBmD4B,CAC7B,AAQH,qBtBtEI,qBRqOgC,C8B5JjC,AAHH,uDAOI,W9B3EW,A8B4EX,wB9BfmB,C8BgBpB,AAQH,oBAEI,mBAAc,AAAd,kBAAc,AAAd,cAAc,AACd,iBAAkB,CACnB,AAGH,yBAEI,0BAAa,AAAb,aAAa,AACb,mBAAY,AAAZ,oBAAY,AAAZ,YAAY,AACZ,iBAAkB,CACnB,AAQH,uBAEI,YAAa,CACd,AAHH,qBAKI,aAAc,CACf,ACrGH,QACE,kBAAkB,AAClB,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,mBAAe,AAAf,eAAe,AACf,yBAAmB,AAAnB,sBAAmB,AAAnB,mBAAmB,AACnB,yBAA8B,AAA9B,sBAA8B,AAA9B,8BAA8B,AAC9B,mB/B0GW,C+B/FZ,AAjBD,4CAYI,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,mBAAe,AAAf,eAAe,AACf,yBAAmB,AAAnB,sBAAmB,AAAnB,mBAAmB,AACnB,yBAA8B,AAA9B,sBAA8B,AAA9B,6BAA8B,CAC/B,AAQH,cACE,qBAAqB,AACrB,sB/BoqB+E,A+BnqB/E,yB/BmqB+E,A+BlqB/E,kB/BoFW,ACFP,kBAtCY,A8B1ChB,oBAAoB,AACpB,kBAAmB,CAKpB,A5BrCC,wC4BmCE,oBAAqB,C5BhCtB,A4ByCH,YACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,4BAAsB,AAAtB,6BAAsB,AAAtB,0BAAsB,AAAtB,sBAAsB,AACtB,eAAe,AACf,gBAAgB,AAChB,eAAgB,CAWjB,AAhBD,sBAQI,gBAAgB,AAChB,cAAe,CAChB,AAVH,2BAaI,gBAAgB,AAChB,UAAW,CACZ,AAQH,aACE,qBAAqB,AACrB,mB/B2lBuC,A+B1lBvC,qB/B0lBuC,C+BzlBxC,AAWD,iBACE,6BAAgB,AAAhB,gBAAgB,AAChB,mBAAY,AAAZ,oBAAY,AAAZ,YAAY,AAGZ,yBAAmB,AAAnB,sBAAmB,AAAnB,kBAAmB,CACpB,AAGD,gBACE,wB/BsmBwC,ACnlBpC,kBAtCY,A8BqBhB,cAAc,AACd,6BAA6B,AAC7B,6BAAuC,AvB3GrC,qBRqOgC,C+BpHnC,A5BtGC,4C4BoGE,oBAAqB,C5BjGtB,A4BuGH,qBACE,qBAAqB,AACrB,YAAY,AACZ,aAAa,AACb,sBAAsB,AACtB,WAAW,AACX,mCAAmC,AACnC,yBAA0B,CAC3B,AnBzDG,4BmBkEC,gEAIK,gBAAgB,AAChB,cAAe,CAChB,CAAA,AnBrFL,yBmB+EA,kBAUI,8BAAqB,AAArB,6BAAqB,AAArB,yBAAqB,AAArB,qBAAqB,AACrB,uBAA2B,AAA3B,oBAA2B,AAA3B,0BAA2B,CAgC9B,AA3CA,8BAcK,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CAUpB,AAxBJ,6CAiBO,iBAAkB,CACnB,AAlBN,wCAqBO,qB/ByiB6B,A+BxiB7B,mB/BwiB6B,C+BviB9B,AAvBN,gEA6BK,qBAAiB,AAAjB,gBAAiB,CAClB,AA9BJ,mCAiCK,8BAAwB,AAAxB,8BAAwB,AAAxB,uBAAwB,AAGxB,6BAAgB,AAAhB,eAAgB,CACjB,AArCJ,kCAwCK,YAAa,CACd,CAAA,AnB3GL,4BmBkEC,gEAIK,gBAAgB,AAChB,cAAe,CAChB,CAAA,AnBrFL,yBmB+EA,kBAUI,8BAAqB,AAArB,6BAAqB,AAArB,yBAAqB,AAArB,qBAAqB,AACrB,uBAA2B,AAA3B,oBAA2B,AAA3B,0BAA2B,CAgC9B,AA3CA,8BAcK,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CAUpB,AAxBJ,6CAiBO,iBAAkB,CACnB,AAlBN,wCAqBO,qB/ByiB6B,A+BxiB7B,mB/BwiB6B,C+BviB9B,AAvBN,gEA6BK,qBAAiB,AAAjB,gBAAiB,CAClB,AA9BJ,mCAiCK,8BAAwB,AAAxB,8BAAwB,AAAxB,uBAAwB,AAGxB,6BAAgB,AAAhB,eAAgB,CACjB,AArCJ,kCAwCK,YAAa,CACd,CAAA,AnB3GL,4BmBkEC,gEAIK,gBAAgB,AAChB,cAAe,CAChB,CAAA,AnBrFL,yBmB+EA,kBAUI,8BAAqB,AAArB,6BAAqB,AAArB,yBAAqB,AAArB,qBAAqB,AACrB,uBAA2B,AAA3B,oBAA2B,AAA3B,0BAA2B,CAgC9B,AA3CA,8BAcK,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CAUpB,AAxBJ,6CAiBO,iBAAkB,CACnB,AAlBN,wCAqBO,qB/ByiB6B,A+BxiB7B,mB/BwiB6B,C+BviB9B,AAvBN,gEA6BK,qBAAiB,AAAjB,gBAAiB,CAClB,AA9BJ,mCAiCK,8BAAwB,AAAxB,8BAAwB,AAAxB,uBAAwB,AAGxB,6BAAgB,AAAhB,eAAgB,CACjB,AArCJ,kCAwCK,YAAa,CACd,CAAA,AnB3GL,6BmBkEC,gEAIK,gBAAgB,AAChB,cAAe,CAChB,CAAA,AnBrFL,0BmB+EA,kBAUI,8BAAqB,AAArB,6BAAqB,AAArB,yBAAqB,AAArB,qBAAqB,AACrB,uBAA2B,AAA3B,oBAA2B,AAA3B,0BAA2B,CAgC9B,AA3CA,8BAcK,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CAUpB,AAxBJ,6CAiBO,iBAAkB,CACnB,AAlBN,wCAqBO,qB/ByiB6B,A+BxiB7B,mB/BwiB6B,C+BviB9B,AAvBN,gEA6BK,qBAAiB,AAAjB,gBAAiB,CAClB,AA9BJ,mCAiCK,8BAAwB,AAAxB,8BAAwB,AAAxB,uBAAwB,AAGxB,6BAAgB,AAAhB,eAAgB,CACjB,AArCJ,kCAwCK,YAAa,CACd,CAAA,AA9CT,eAeQ,8BAAqB,AAArB,6BAAqB,AAArB,yBAAqB,AAArB,qBAAqB,AACrB,uBAA2B,AAA3B,oBAA2B,AAA3B,0BAA2B,CAgC9B,AAhDL,0DASU,gBAAgB,AAChB,cAAe,CAChB,AAXT,2BAmBU,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CAUpB,AA7BT,0CAsBY,iBAAkB,CACnB,AAvBX,qCA0BY,qB/ByiB6B,A+BxiB7B,mB/BwiB6B,C+BviB9B,AA5BX,0DAkCU,qBAAiB,AAAjB,gBAAiB,CAClB,AAnCT,gCAsCU,8BAAwB,AAAxB,8BAAwB,AAAxB,uBAAwB,AAGxB,6BAAgB,AAAhB,eAAgB,CACjB,AA1CT,+BA6CU,YAAa,CACd,AAYT,4BAEI,wB/BjLW,C+BsLZ,A5BvLD,oE4BqLI,wB/BpLS,CGEZ,A4B6KH,oCAWM,wB/B1LS,C+BmMV,A5BpMH,oF4B8LM,wB/B7LO,CGEZ,A4B6KH,6CAkBQ,wB/BjMO,C+BkMR,AAnBP,0KA0BM,wB/BzMS,C+B0MV,AA3BL,8BA+BI,yB/B9MW,A+B+MX,+B/B/MW,C+BgNZ,AAjCH,mCAoCI,uP/B6fsR,C+B5fvR,AArCH,2BAwCI,wB/BvNW,C+B+NZ,AAhDH,6BA0CM,wB/BzNS,C+B8NV,A5B/NH,sE4B6NM,wB/B5NO,CGEZ,A4BiOH,2BAEI,U/B/OW,C+BoPZ,A5B3OD,kE4ByOI,U/BlPS,CGYZ,A4BiOH,mCAWM,8B/BxPS,C+BiQV,A5BxPH,kF4BkPM,+B/B3PO,CGYZ,A4BiOH,4CAkBQ,+B/B/PO,C+BgQR,AAnBP,sKA0BM,U/BvQS,C+BwQV,AA3BL,6BA+BI,+B/B5QW,A+B6QX,qC/B7QW,C+B8QZ,AAjCH,kCAoCI,6P/BkcqR,C+BjctR,AArCH,0BAwCI,8B/BrRW,C+B6RZ,AAhDH,4BA0CM,U/BvRS,C+B4RV,A5BnRH,oE4BiRM,U/B1RO,CGYZ,A6BfH,MACE,kBAAkB,AAClB,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,4BAAsB,AAAtB,6BAAsB,AAAtB,0BAAsB,AAAtB,sBAAsB,AACtB,YAAY,AACZ,qBAAqB,AACrB,sBhCHa,AgCIb,2BAA2B,AAC3B,sChCKa,AQZX,qBRqOgC,CgC3MnC,AA3BD,SAYI,eAAe,AACf,aAAc,CACf,AAdH,2DxBUI,+BR4NgC,AQ3NhC,+BR2NgC,CgCnN/B,AAnBL,yDxBwBI,mCR8MgC,AQ7MhC,iCR6MgC,CgC7M/B,AAIL,WAGE,mBAAc,AAAd,kBAAc,AAAd,cAAc,AACd,ehC+wByC,CgC7wB1C,AAED,YACE,qBhCywBwC,CgCxwBzC,AAED,eACE,qBAA+B,AAC/B,eAAgB,CACjB,AAED,sBACE,eAAgB,CACjB,A7BxCC,iB6B4CE,oBAAqB,C7B5CD,A6B0CxB,sBAMI,mBhCwvBuC,CgCvvBxC,AAOH,aACE,wBhC+uByC,AgC9uBzC,gBAAgB,AAEhB,qChCvDa,AgCwDb,4ChCxDa,CgCmEd,AAhBD,yBxB/DI,yDwBuE8E,CAC/E,AATH,sDAaM,YAAa,CACd,AAIL,aACE,wBhC6tByC,AgC5tBzC,qChCvEa,AgCwEb,yChCxEa,CgC6Ed,AARD,wBxBjFI,yDRmzBoF,CgC3tBrF,AAQH,kBACE,uBAAiC,AACjC,uBhC4sBwC,AgC3sBxC,sBAAgC,AAChC,eAAgB,CACjB,AAED,mBACE,uBAAiC,AACjC,qBAAgC,CACjC,AAGD,kBACE,kBAAkB,AAClB,MAAM,AACN,QAAQ,AACR,SAAS,AACT,OAAO,AACP,ehCssByC,CgCrsB1C,AAED,UACE,WAAW,AxBvHT,iCRmzBoF,CgC1rBvF,AAGD,cACE,WAAW,AxBpHT,2CR0yBoF,AQzyBpF,2CRyyBoF,CgCprBvF,AAED,iBACE,WAAW,AxB3GT,+CR4xBoF,AQ3xBpF,6CR2xBoF,CgC/qBvF,AAKD,WACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,4BAAsB,AAAtB,6BAAsB,AAAtB,0BAAsB,AAAtB,qBAAsB,CAqBvB,AAvBD,iBAKI,kBhC6qBsD,CgC5qBvD,ApBxFC,yBoBkFJ,WASI,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,mBAAmB,AACnB,mBhCwqBsD,AgCvqBtD,iBhCuqBsD,CgC3pBzD,AAvBD,iBAcM,oBAAa,AAAb,oBAAa,AAAb,aAAa,AAEb,mBAAY,AAAZ,gBAAY,AAAZ,YAAY,AACZ,4BAAsB,AAAtB,6BAAsB,AAAtB,0BAAsB,AAAtB,sBAAsB,AACtB,kBhCgqBoD,AgC/pBpD,gBAAgB,AAChB,gBhC8pBoD,CgC7pBrD,CAAA,AASL,YACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,4BAAsB,AAAtB,6BAAsB,AAAtB,0BAAsB,AAAtB,qBAAsB,CAwDvB,AA1DD,kBAOI,kBhC6oBsD,CgC5oBvD,ApBxHC,yBoBgHJ,YAWI,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CA+CtB,AA1DD,kBAgBM,mBAAY,AAAZ,gBAAY,AAAZ,YAAY,AACZ,eAAgB,CAuCjB,AAxDL,wBAoBQ,cAAc,AACd,aAAc,CACf,AAtBP,mCxBvJI,0BwBkLoC,AxBjLpC,4BwBiLoC,CAY/B,AAvCT,iGAgCY,yBAA0B,CAC3B,AAjCX,oGAqCY,4BAA6B,CAC9B,AAtCX,oCxBzII,yBwBmLmC,AxBlLnC,2BwBkLmC,CAY9B,AAtDT,mGA+CY,wBAAyB,CAC1B,AAhDX,sGAoDY,2BAA4B,CAC7B,CAAA,AAYX,oBAEI,qBhCokBsC,CgCnkBvC,ApBpLC,yBoBiLJ,cAMI,uBhCglBiC,AgChlBjC,ehCglBiC,AgC/kBjC,2BhCglBuC,AgChlBvC,mBhCglBuC,AgC/kBvC,UAAU,AACV,QAAS,CAOZ,AAhBD,oBAYM,qBAAqB,AACrB,UAAW,CACZ,CAAA,AASL,iBAEI,eAAgB,CAyBjB,AA3BH,8DxB/PI,ewBqQ4B,CACzB,AAPP,wDAUQ,gBAAgB,AxBzQpB,ewB0Q4B,CACzB,AAZP,+BAgBM,gBAAgB,AxBxPlB,6BwByPiC,AxBxPjC,2BwBwPiC,CAChC,AAlBL,8BxBtPI,yBwB2Q8B,AxB1Q9B,yBwB0Q8B,CAC7B,AAtBL,8BAyBM,kBhCtD2B,CgCuD5B,AC9RL,YACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,mBAAe,AAAf,eAAe,AACf,qBjC2gCsC,AiC1gCtC,mBjC6gCsC,AiC5gCtC,gBAAgB,AAChB,yBjCGgB,AQJd,qBRqOgC,CiClOnC,AAED,kCAGI,mBjCkgCqC,CiC1/BtC,AAXH,yCAMM,qBAAqB,AACrB,qBjC8/BmC,AiC7/BnC,cjCLY,AiCMZ,WjCmgCuC,CiClgCxC,AAVL,+CAoBI,yBAA0B,CAC3B,AArBH,+CAwBI,oBAAqB,CACtB,AAzBH,wBA4BI,ajCzBc,CiC0Bf,ACvCH,YACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,A7BGb,eAAe,AACf,gBAAgB,AGAd,qBRqOgC,CkCtOnC,AAED,WACE,kBAAkB,AAClB,cAAc,AACd,uBlCqwBwC,AkCpwBxC,iBlC6N+B,AkC5N/B,iBlCwwBsC,AkCvwBtC,clCwDqB,AkCvDrB,sBlCNa,AkCOb,wBlCJgB,CkCmBjB,AAvBD,iBAWI,UAAU,AACV,clC2J8D,AkC1J9D,qBAAqB,AACrB,yBlCXc,AkCYd,oBlCXc,CkCYf,AAhBH,iBAmBI,UAAU,AACV,UlCiwBiC,AkChwBjC,uDlCyCmB,AkCzCnB,8ClCyCmB,CkCxCpB,AAGH,kCAGM,cAAc,A1BChB,+BRuMgC,AQtMhC,iCRsMgC,CkCtM/B,AALL,iC1BVI,gCRqNgC,AQpNhC,kCRoNgC,CkCjM/B,AAVL,6BAcI,UAAU,AACV,WlCvCW,AkCwCX,yBlCqBmB,AkCpBnB,oBlCoBmB,CkCnBpB,AAlBH,+BAqBI,clCvCc,AkCwCd,oBAAoB,AAEpB,YAAY,AACZ,sBlCjDW,AkCkDX,oBlC/Cc,CkCgDf,ACvDD,0BACE,uBnC8wBsC,ACnpBpC,kBAtCY,AkCnFd,enC8N6B,CmC7N9B,AAIG,iD3BwBF,8BRwM+B,AQvM/B,gCRuM+B,CmC9N5B,AAGD,gD3BKF,+BRsN+B,AQrN/B,iCRqN+B,CmCzN5B,AAfL,0BACE,uBnC4wBqC,ACjpBnC,mBAtCY,AkCnFd,enC+N6B,CmC9N9B,AAIG,iD3BwBF,8BRyM+B,AQxM/B,gCRwM+B,CmC/N5B,AAGD,gD3BKF,+BRuN+B,AQtN/B,iCRsN+B,CmC1N5B,ACbP,OACE,qBAAqB,AACrB,qBpC24BsC,AC10BpC,cAAW,AmC/Db,gBpCmR+B,AoClR/B,cAAc,AACd,kBAAkB,AAClB,mBAAmB,AACnB,wBAAwB,A5BRtB,sBRqOgC,AkBpO9B,qJlBqb6I,AkBrb7I,6IlBqb6I,AkBrb7I,wIlBqb6I,AkBrb7I,qIlBqb6I,AkBrb7I,0KlBqb6I,CoChalJ,AlBhBG,uCkBNJ,OlBOM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CkBerB,CAAA,AjCXC,4BiCGI,oBAAqB,CjCAxB,AiCdH,aAoBI,YAAa,CACd,AAIH,YACE,kBAAkB,AAClB,QAAS,CACV,AAMD,YACE,oBpCg3BsC,AoC/2BtC,mBpC+2BsC,AQn5BpC,mBRs5BqC,CoCh3BxC,AAOC,eCjDA,WrCMa,AqCLb,wBrCkEqB,CoChBpB,AjCpCD,4CkCVI,WrCCS,AqCAT,wBAAkC,ClCYrC,AkCfO,4CAQJ,UAAU,AACV,sDrCuDiB,AqCvDjB,6CrCuDiB,CqCtDlB,ADoCH,iBCjDA,WrCMa,AqCLb,wBrCWgB,CoCuCf,AjCpCD,gDkCVI,WrCCS,AqCAT,wBAAkC,ClCYrC,AkCfO,gDAQJ,UAAU,AACV,yDrCAY,AqCAZ,gDrCAY,CqCCb,ADoCH,eCjDA,crCegB,AqCdhB,wBrCyCe,CoCSd,AjCpCD,4CkCVI,crCUY,AqCTZ,wBAAkC,ClCYrC,AkCfO,4CAQJ,UAAU,AACV,wDrC8BW,AqC9BX,+CrC8BW,CqC7BZ,ADoCH,YCjDA,WrCMa,AqCLb,wBrC2Ce,CoCOd,AjCpCD,sCkCVI,WrCCS,AqCAT,wBAAkC,ClCYrC,AkCfO,sCAQJ,UAAU,AACV,wDrCgCW,AqChCX,+CrCgCW,CqC/BZ,ADoCH,eCjDA,crCegB,AqCdhB,wBrCwCe,CoCUd,AjCpCD,4CkCVI,crCUY,AqCTZ,wBAAkC,ClCYrC,AkCfO,4CAQJ,UAAU,AACV,uDrC6BW,AqC7BX,8CrC6BW,CqC5BZ,ADoCH,cCjDA,WrCMa,AqCLb,wBrCsCe,CoCYd,AjCpCD,0CkCVI,WrCCS,AqCAT,wBAAkC,ClCYrC,AkCfO,0CAQJ,UAAU,AACV,uDrC2BW,AqC3BX,8CrC2BW,CqC1BZ,ADoCH,aCjDA,crCegB,AqCdhB,wBrCMgB,CoC4Cf,AjCpCD,wCkCVI,crCUY,AqCTZ,wBAAkC,ClCYrC,AkCfO,wCAQJ,UAAU,AACV,yDrCLY,AqCKZ,gDrCLY,CqCMb,ADoCH,YCjDA,WrCMa,AqCLb,wBrCagB,CoCqCf,AjCpCD,sCkCVI,WrCCS,AqCAT,wBAAkC,ClCYrC,AkCfO,sCAQJ,UAAU,AACV,sDrCEY,AqCFZ,6CrCEY,CqCDb,ACdL,WACE,kBAAoD,AACpD,mBtC0yBsC,AsCxyBtC,yBtCKgB,AQJd,oBRsO+B,CsCjOlC,A1BkDG,yB0B5DJ,WAQI,iBtCoyBoC,CsClyBvC,CAAA,AAED,iBACE,gBAAgB,AAChB,eAAe,A9BTb,e8BUsB,CACzB,ACZD,OACE,kBAAkB,AAClB,wBvCm8ByC,AuCl8BzC,mBvCm8BsC,AuCl8BtC,6BAA6C,A/BH3C,qBRqOgC,CuChOnC,AAGD,eAEE,aAAc,CACf,AAGD,YACE,evCwQ+B,CuCvQhC,AAOD,mBACE,kBAAsD,CAUvD,AAXD,0BAKI,kBAAkB,AAClB,MAAM,AACN,QAAQ,AACR,wBvCq6BuC,AuCp6BvC,aAAc,CACf,AASD,eC9CA,cxBmFgE,AI9E9D,yBJ8E8D,AwBjFhE,oBxBiFgE,CuBnC/D,AC5CD,kBACE,wBAAqC,CACtC,AAED,2BACE,aAA0B,CAC3B,ADoCD,iBC9CA,cxBmFgE,AI9E9D,yBJ8E8D,AwBjFhE,oBxBiFgE,CuBnC/D,AC5CD,oBACE,wBAAqC,CACtC,AAED,6BACE,aAA0B,CAC3B,ADoCD,eC9CA,cxBmFgE,AI9E9D,yBJ8E8D,AwBjFhE,oBxBiFgE,CuBnC/D,AC5CD,kBACE,wBAAqC,CACtC,AAED,2BACE,aAA0B,CAC3B,ADoCD,YC9CA,cxBmFgE,AI9E9D,yBJ8E8D,AwBjFhE,oBxBiFgE,CuBnC/D,AC5CD,eACE,wBAAqC,CACtC,AAED,wBACE,aAA0B,CAC3B,ADoCD,eC9CA,cxBmFgE,AI9E9D,yBJ8E8D,AwBjFhE,oBxBiFgE,CuBnC/D,AC5CD,kBACE,wBAAqC,CACtC,AAED,2BACE,aAA0B,CAC3B,ADoCD,cC9CA,cxBmFgE,AI9E9D,yBJ8E8D,AwBjFhE,oBxBiFgE,CuBnC/D,AC5CD,iBACE,wBAAqC,CACtC,AAED,0BACE,aAA0B,CAC3B,ADoCD,aC9CA,cxBmFgE,AI9E9D,yBJ8E8D,AwBjFhE,oBxBiFgE,CuBnC/D,AC5CD,gBACE,wBAAqC,CACtC,AAED,yBACE,aAA0B,CAC3B,ADoCD,YC9CA,cxBmFgE,AI9E9D,yBJ8E8D,AwBjFhE,oBxBiFgE,CuBnC/D,AC5CD,eACE,wBAAqC,CACtC,AAED,wBACE,aAA0B,CAC3B,ACTD,wCACE,GAAO,0BAAuC,CAAA,AAC9C,GAAK,uBAAwB,CAAA,CAAA,AAF/B,gCACE,GAAO,0BAAuC,CAAA,AAC9C,GAAK,uBAAwB,CAAA,CAAA,AAIjC,UACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,YzC48BsC,AyC38BtC,gBAAgB,AxCoHZ,kBAtCY,AwC5EhB,yBzCJgB,AQJd,qBRqOgC,CyC1NnC,AAED,cACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,4BAAsB,AAAtB,6BAAsB,AAAtB,0BAAsB,AAAtB,sBAAsB,AACtB,wBAAuB,AAAvB,qBAAuB,AAAvB,uBAAuB,AACvB,WzCfa,AyCgBb,kBAAkB,AAClB,mBAAmB,AACnB,yBzC2CqB,AkB9DjB,mClBw9B4C,AkBx9B5C,8BlBw9B4C,AkBx9B5C,0BlBw9B4C,CyCn8BjD,AvBhBG,uCuBOJ,cvBNM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CuBerB,CAAA,AAED,sBrBcE,6MAA6I,AAA7I,wMAA6I,AAA7I,qMAA6I,AqBZ7I,yBzCu7BsC,CyCt7BvC,AAGC,uBACE,0DzCy7BkD,AyCz7BlD,iDzCy7BkD,CyCp7BnD,AAHC,uCAHF,uBAII,uBAAe,AAAf,cAAe,CAElB,CAAA,ACzCH,OACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,wBAAuB,AAAvB,qBAAuB,AAAvB,sBAAuB,CACxB,AAED,YACE,mBAAO,AAAP,WAAO,AAAP,MAAO,CACR,ACHD,YACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,4BAAsB,AAAtB,6BAAsB,AAAtB,0BAAsB,AAAtB,sBAAsB,AAGtB,eAAe,AACf,eAAgB,CACjB,AAQD,wBACE,WAAW,AACX,c3CPgB,A2CQhB,kBAAmB,CAcpB,AxCpBC,4DwCUE,UAAU,AACV,c3Cbc,A2Ccd,qBAAqB,AACrB,wB3CrBc,CGWf,AwCAH,+BAcI,c3CjBc,A2CkBd,wB3CzBc,C2C0Bf,AAQH,iBACE,kBAAkB,AAClB,cAAc,AACd,wB3C47ByC,A2C17BzC,mB3CuL+B,A2CrL/B,sB3C3Ca,A2C4Cb,qC3ClCa,C2C2Dd,AAjCD,6BnC7BI,+BR4NgC,AQ3NhC,+BR2NgC,C2CnLjC,AAZH,4BAeI,gBAAgB,AnC9BhB,mCR8MgC,AQ7MhC,iCR6MgC,C2C9KjC,AAjBH,oDAqBI,c3CnDc,A2CoDd,oBAAoB,AACpB,qB3C3DW,C2C4DZ,AAxBH,wBA4BI,UAAU,AACV,W3CjEW,A2CkEX,yB3CLmB,A2CMnB,oB3CNmB,C2COpB,AAYC,uBACE,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CAiBpB,AAlBD,wCAII,kB3C4IyB,A2C3IzB,eAAgB,CAYjB,AAjBH,oDnCpDA,+BRuMgC,AQtMhC,kCRsMgC,AQ1LhC,yBmCgDwC,CACnC,AAVL,mDAaM,eAAe,AnC/ErB,gCRqNgC,AQpNhC,mCRoNgC,AQ9KhC,2BmC0C0C,CACrC,A/B3CL,yB+B2BA,0BACE,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CAiBpB,AAlBD,2CAII,kB3C4IyB,A2C3IzB,eAAgB,CAYjB,AAjBH,uDnCpDA,+BRuMgC,AQtMhC,kCRsMgC,AQ1LhC,yBmCgDwC,CACnC,AAVL,sDAaM,eAAe,AnC/ErB,gCRqNgC,AQpNhC,mCRoNgC,AQ9KhC,2BmC0C0C,CACrC,CAAA,A/B3CL,yB+B2BA,0BACE,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CAiBpB,AAlBD,2CAII,kB3C4IyB,A2C3IzB,eAAgB,CAYjB,AAjBH,uDnCpDA,+BRuMgC,AQtMhC,kCRsMgC,AQ1LhC,yBmCgDwC,CACnC,AAVL,sDAaM,eAAe,AnC/ErB,gCRqNgC,AQpNhC,mCRoNgC,AQ9KhC,2BmC0C0C,CACrC,CAAA,A/B3CL,yB+B2BA,0BACE,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CAiBpB,AAlBD,2CAII,kB3C4IyB,A2C3IzB,eAAgB,CAYjB,AAjBH,uDnCpDA,+BRuMgC,AQtMhC,kCRsMgC,AQ1LhC,yBmCgDwC,CACnC,AAVL,sDAaM,eAAe,AnC/ErB,gCRqNgC,AQpNhC,mCRoNgC,AQ9KhC,2BmC0C0C,CACrC,CAAA,A/B3CL,0B+B2BA,0BACE,8BAAmB,AAAnB,6BAAmB,AAAnB,uBAAmB,AAAnB,kBAAmB,CAiBpB,AAlBD,2CAII,kB3C4IyB,A2C3IzB,eAAgB,CAYjB,AAjBH,uDnCpDA,+BRuMgC,AQtMhC,kCRsMgC,AQ1LhC,yBmCgDwC,CACnC,AAVL,sDAaM,eAAe,AnC/ErB,gCRqNgC,AQpNhC,mCRoNgC,AQ9KhC,2BmC0C0C,CACrC,CAAA,AAYT,mCAEI,eAAe,AACf,cAAc,AnCjHd,emCkHwB,CAKzB,AATH,8CAOM,kB3C6G2B,C2C5G5B,AARL,2DAaM,YAAa,CACd,AAdL,yDAmBM,gBAAgB,AAChB,eAAgB,CACjB,ACrIH,yBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,4GyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,uDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,2BACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,gHyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,yDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,yBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,4GyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,uDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,sBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,sGyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,oDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,yBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,4GyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,uDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,wBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,0GyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,sDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,uBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,wGyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,qDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,AAdL,sBACE,c5BgF8D,A4B/E9D,wB5B+E8D,C4BjE/D,AzCHD,sGyCPM,c5B2E0D,A4B1E1D,wBAAyC,CzCS9C,AyChBD,oDAWM,W5CPO,A4CQP,yB5BqE0D,A4BpE1D,oB5BoE0D,C4BnE3D,ACjBP,OACE,YAAY,A5C8HR,iBAtCY,A4CtFhB,gB7CyR+B,A6CxR/B,cAAc,AACd,W7CYa,A6CXb,yB7CCa,A6CAb,UAAW,CAaZ,A1CRC,a0CDE,W7CMW,A6CLX,oBAAqB,C1CAD,AAItB,sF0CCI,WAAY,C1CEf,A0CSH,aACE,UAAU,AACV,6BAA6B,AAC7B,SAAS,AACT,wBAAgB,AAAhB,qBAAgB,AAAhB,eAAgB,CACjB,AAKD,iBACE,mBAAoB,CACrB,ACxCD,OACE,gB9C43BuC,A8C33BvC,gBAAgB,A7C6HZ,mBAtCY,A6CpFhB,2C9CEa,A8CDb,4BAA4B,AAC5B,oC9C63BmD,A8C53BnD,wD9CSa,A8CTb,gD9CSa,A8CRb,mCAA2B,AAA3B,2BAA2B,AAC3B,UAAU,AtCLR,qBRg4BsC,C8Cx2BzC,AA7BD,wBAcI,qB9Cg3BsC,C8C/2BvC,AAfH,eAkBI,SAAU,CACX,AAnBH,YAsBI,cAAc,AACd,SAAU,CACX,AAxBH,YA2BI,YAAa,CACd,AAGH,cACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,yBAAmB,AAAnB,sBAAmB,AAAnB,mBAAmB,AACnB,wB9C41BwC,A8C31BxC,c9CtBgB,A8CuBhB,2C9C7Ba,A8C8Bb,4BAA4B,AAC5B,2C9Co2BoD,C8Cn2BrD,AAED,YACE,e9Co1BwC,C8Cn1BzC,ACrCD,YAEE,eAAgB,CAMjB,AARD,mBAKI,kBAAkB,AAClB,eAAgB,CACjB,AAIH,OACE,eAAe,AACf,MAAM,AACN,OAAO,AACP,a/CopBsC,A+CnpBtC,aAAa,AACb,WAAW,AACX,YAAY,AACZ,gBAAgB,AAGhB,SAAU,CAIX,AAGD,cACE,kBAAkB,AAClB,WAAW,AACX,c/C63BuC,A+C33BvC,mBAAoB,CAUrB,AAPC,0B7BrCI,mDlB27BoD,AkB37BpD,2ClB27BoD,AkB37BpD,sClB27BoD,AkB37BpD,mClB27BoD,AkB37BpD,oElB27BoD,A+Cp5BtD,sC/Ck5BmD,A+Cl5BnD,kC/Ck5BmD,A+Cl5BnD,6B/Ck5BmD,C+Cj5BpD,A7BnCC,uC6BgCF,0B7B/BI,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,C6BkCnB,CAAA,AACD,0BACE,uB/Cg5BoC,A+Ch5BpC,mB/Cg5BoC,A+Ch5BpC,c/Cg5BoC,C+C/4BrC,AAGH,yBACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,4BAAoD,CAerD,AAjBD,wCAKI,8BAAqD,AACrD,eAAgB,CACjB,AAPH,8EAWI,oBAAc,AAAd,aAAc,CACf,AAZH,qCAeI,eAAgB,CACjB,AAGH,uBACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,yBAAmB,AAAnB,sBAAmB,AAAnB,mBAAmB,AACnB,4BAAoD,CAuBrD,AA1BD,8BAOI,cAAc,AACd,0BAAiD,AACjD,UAAW,CACZ,AAVH,+CAcI,4BAAsB,AAAtB,6BAAsB,AAAtB,0BAAsB,AAAtB,sBAAsB,AACtB,wBAAuB,AAAvB,qBAAuB,AAAvB,uBAAuB,AACvB,WAAY,CASb,AAzBH,8DAmBM,eAAgB,CACjB,AApBL,sDAuBM,YAAa,CACd,AAKL,eACE,kBAAkB,AAClB,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,4BAAsB,AAAtB,6BAAsB,AAAtB,0BAAsB,AAAtB,sBAAsB,AACtB,WAAW,AAGX,oBAAoB,AACpB,sB/CrGa,A+CsGb,4BAA4B,AAC5B,oC/C7Fa,AQZX,qBRsO+B,A+CzHjC,SAAU,CACX,AAGD,gBACE,eAAe,AACf,MAAM,AACN,OAAO,AACP,a/C8iBsC,A+C7iBtC,YAAY,AACZ,aAAa,AACb,qB/C5Ga,C+CiHd,AAZD,qBAUW,SAAU,CAAI,AAVzB,qBAWW,W/CgzB2B,C+ChzBS,AAK/C,cACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,wBAAuB,AAAvB,qBAAuB,AAAvB,uBAAuB,AACvB,yBAA8B,AAA9B,sBAA8B,AAA9B,8BAA8B,AAC9B,kB/C6yBsC,A+C5yBtC,gC/CjIgB,AQId,8BR6N+B,AQ5N/B,8BR4N+B,C+CxFlC,AAbD,qBASI,kB/CwyBoC,A+CtyBpC,6BAA6F,CAC9F,AAIH,aACE,gBAAgB,AAChB,e/CwI+B,C+CvIhC,AAID,YACE,kBAAkB,AAGlB,mBAAc,AAAd,kBAAc,AAAd,cAAc,AACd,Y/C+vBsC,C+C9vBvC,AAGD,cACE,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,yBAAmB,AAAnB,sBAAmB,AAAnB,mBAAmB,AACnB,qBAAyB,AAAzB,kBAAyB,AAAzB,yBAAyB,AACzB,a/CuvBsC,A+CtvBtC,6B/CjKgB,AQkBd,kCR+M+B,AQ9M/B,gCR8M+B,C+C1DlC,AAXD,iCASyB,kBAAmB,CAAI,AAThD,gCAUwB,mBAAoB,CAAI,AAIhD,yBACE,kBAAkB,AAClB,YAAY,AACZ,WAAW,AACX,YAAY,AACZ,eAAgB,CACjB,AnC9HG,yBmCzBJ,cA6JI,gB/C4vBqC,A+C3vBrC,mBAAyC,CAC1C,AA9IH,yBAiJI,8BAA4D,CAK7D,AAtJH,wCAoJM,+BAA6D,CAC9D,AAlIL,uBAsII,8BAA4D,CAK7D,AA3IH,8BAyIM,2BAAyD,CAC1D,AAOH,UAAY,e/CquB2B,C+CruBH,CAAA,AnC5JlC,yBmCgKF,oBAEE,e/C6tBqC,C+C5tBtC,CAAA,AnCnKC,0BmCuKF,UAAY,gB/CutB4B,C+CvtBJ,CAAA,AClOtC,SACE,kBAAkB,AAClB,ahDwqBsC,AgDvqBtC,cAAc,AACd,ShD60BmC,AiDj1BnC,kNjD+QiO,AiD7QjO,kBAAkB,AAClB,gBjDuR+B,AiDtR/B,gBjD2R+B,AiD1R/B,gBAAgB,AAChB,iBAAiB,AACjB,qBAAqB,AACrB,iBAAiB,AACjB,oBAAoB,AACpB,sBAAsB,AACtB,kBAAkB,AAClB,oBAAoB,AACpB,mBAAmB,AACnB,gBAAgB,AhDgHZ,mBAtCY,A+C9EhB,qBAAqB,AACrB,SAAU,CAiBX,AA5BD,cAaW,WhDi0B2B,CgDj0BE,AAbxC,gBAgBI,kBAAkB,AAClB,cAAc,AACd,ahDi0BqC,AgDh0BrC,ahDi0BqC,CgDzzBtC,AA3BH,uBAsBM,kBAAkB,AAClB,WAAW,AACX,yBAAyB,AACzB,kBAAmB,CACpB,AAIL,mDACE,gBAAgC,CAWjC,AAZD,iEAII,QAAS,CAOV,AAXH,+EAOM,MAAM,AACN,6BAAgE,AAChE,qBhDvBS,CgDwBV,AAIL,uDACE,gBhDuyBuC,CgD1xBxC,AAdD,qEAII,OAAO,AACP,ahDmyBqC,AgDlyBrC,ahDiyBqC,CgD1xBtC,AAbH,mFASM,QAAQ,AACR,oCAA2F,AAC3F,uBhDvCS,CgDwCV,AAIL,yDACE,gBAAgC,CAWjC,AAZD,uEAII,KAAM,CAOP,AAXH,qFAOM,SAAS,AACT,6BhDgxBmC,AgD/wBnC,wBhDrDS,CgDsDV,AAIL,qDACE,gBhDywBuC,CgD5vBxC,AAdD,mEAII,QAAQ,AACR,ahDqwBqC,AgDpwBrC,ahDmwBqC,CgD5vBtC,AAbH,iFASM,OAAO,AACP,oChDgwBmC,AgD/vBnC,sBhDrES,CgDsEV,AAoBL,eACE,gBhD+tBuC,AgD9tBvC,uBhDouBuC,AgDnuBvC,WhDvGa,AgDwGb,kBAAkB,AAClB,sBhD/Fa,AQZX,qBRqOgC,CgDxHnC,AElHD,SACE,kBAAkB,AAClB,MAAM,AACN,OAAO,AACP,alDsqBsC,AkDrqBtC,cAAc,AACd,gBlD+1BuC,AiDp2BvC,kNjD+QiO,AiD7QjO,kBAAkB,AAClB,gBjDuR+B,AiDtR/B,gBjD2R+B,AiD1R/B,gBAAgB,AAChB,iBAAiB,AACjB,qBAAqB,AACrB,iBAAiB,AACjB,oBAAoB,AACpB,sBAAsB,AACtB,kBAAkB,AAClB,oBAAoB,AACpB,mBAAmB,AACnB,gBAAgB,AhDgHZ,mBAtCY,AiD7EhB,qBAAqB,AACrB,sBlDNa,AkDOb,4BAA4B,AAC5B,oClDEa,AQZX,oBRsO+B,CkDxMlC,AAnCD,gBAoBI,kBAAkB,AAClB,cAAc,AACd,WlD81BoC,AkD71BpC,clD81BqC,AkD71BrC,elDmN+B,CkDzMhC,AAlCH,6CA4BM,kBAAkB,AAClB,cAAc,AACd,WAAW,AACX,yBAAyB,AACzB,kBAAmB,CACpB,AAIL,mDACE,oBlD+0BuC,CkD9zBxC,AAlBD,iEAII,gCAAwE,CAazE,AAjBH,+EAOM,SAAS,AACT,6BAAgE,AAChE,oClD00BiE,CkDz0BlE,AAVL,6EAaM,WlDqL2B,AkDpL3B,6BAAgE,AAChE,qBlD7CS,CkD8CV,AAIL,uDACE,kBlD2zBuC,CkDvyBxC,AArBD,qEAII,+BAAsE,AACtE,alDuzBqC,AkDtzBrC,YlDqzBoC,AkDpzBpC,eAA2B,CAa5B,AApBH,mFAUM,OAAO,AACP,oCAA2F,AAC3F,sClDmzBiE,CkDlzBlE,AAbL,iFAgBM,SlD8J2B,AkD7J3B,oCAA2F,AAC3F,uBlDpES,CkDqEV,AAIL,yDACE,iBlDoyBuC,CkDvwBxC,AA9BD,uEAII,6BAAqE,CAatE,AAjBH,qFAOM,MAAM,AACN,oCAA2F,AAC3F,uClD+xBiE,CkD9xBlE,AAVL,mFAaM,QlD0I2B,AkDzI3B,oCAA2F,AAC3F,wBlDxFS,CkDyFV,AAhBL,uGAqBI,kBAAkB,AAClB,MAAM,AACN,SAAS,AACT,cAAc,AACd,WlD2wBoC,AkD1wBpC,oBAAsC,AACtC,WAAW,AACX,+BlD+vBuD,CkD9vBxD,AAGH,qDACE,mBlDowBuC,CkDhvBxC,AArBD,mEAII,gCAAuE,AACvE,alDgwBqC,AkD/vBrC,YlD8vBoC,AkD7vBpC,eAA2B,CAa5B,AApBH,iFAUM,QAAQ,AACR,oClD0vBmC,AkDzvBnC,qClD4vBiE,CkD3vBlE,AAbL,+EAgBM,UlDuG2B,AkDtG3B,oClDovBmC,AkDnvBnC,sBlD3HS,CkD4HV,AAqBL,gBACE,uBlDqtBwC,AkDptBxC,gBAAgB,AjD3BZ,eAtCY,AiDoEhB,yBlD8sByD,AkD7sBzD,gCAAyE,A1ChJvE,0C0CiJyE,A1ChJzE,0C0CgJyE,CAM5E,AAbD,sBAWI,YAAa,CACd,AAGH,cACE,uBlDssBwC,AkDrsBxC,alDzJgB,CkD0JjB,AC7JD,UACE,iBAAkB,CACnB,AAED,wBACE,uBAAmB,AAAnB,kBAAmB,CACpB,AAED,gBACE,kBAAkB,AAClB,WAAW,AACX,eAAgB,CAEjB,ACzBC,sBACE,cAAc,AACd,WAAW,AACX,UAAW,CACZ,ADuBH,eACE,kBAAkB,AAClB,aAAa,AACb,WAAW,AACX,WAAW,AACX,mBAAmB,AACnB,mCAA2B,AAA3B,2BAA2B,AjC5BvB,sDlB6iCkF,AkB7iClF,8ClB6iCkF,AkB7iClF,yClB6iCkF,AkB7iClF,sClB6iCkF,AkB7iClF,yElB6iCkF,CmD/gCvF,AjCzBG,uCiCiBJ,ejChBM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CiCwBrB,CAAA,AAED,8DAGE,aAAc,CACf,AAED,yEAEE,mCAA2B,AAA3B,+BAA2B,AAA3B,0BAA2B,CAC5B,AAED,yEAEE,oCAA4B,AAA5B,gCAA4B,AAA5B,2BAA4B,CAC7B,AAOD,8BAEI,UAAU,AACV,oCAA4B,AAA5B,+BAA4B,AAA5B,4BAA4B,AAC5B,uBAAe,AAAf,mBAAe,AAAf,cAAe,CAChB,AALH,kJAUI,UAAU,AACV,SAAU,CACX,AAZH,qFAgBI,UAAU,AACV,UAAU,AjCtER,mCiCuE0D,AjCvE1D,8BiCuE0D,AjCvE1D,0BiCuE0D,CAC7D,AjCnEC,uCiCgDJ,qFjC/CM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CiCkEnB,CAAA,AAQH,8CAEE,kBAAkB,AAClB,MAAM,AACN,SAAS,AACT,UAAU,AAEV,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,yBAAmB,AAAnB,sBAAmB,AAAnB,mBAAmB,AACnB,wBAAuB,AAAvB,qBAAuB,AAAvB,uBAAuB,AACvB,UnD87BsC,AmD77BtC,WnD1Fa,AmD2Fb,kBAAkB,AAClB,YnD47BqC,AkBzhCjC,sClB2hCgD,AkB3hChD,iClB2hCgD,AkB3hChD,6BlB2hCgD,CmDp7BrD,AjClGG,uCiC2EJ,8CjC1EM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CiCiGrB,CAAA,AhD7FC,oHgDwFE,WnDjGW,AmDkGX,qBAAqB,AACrB,UAAU,AACV,WnDq7BmC,CG7gCpC,AgD2FH,uBACE,MAAO,CAIR,AACD,uBACE,OAAQ,CAIT,AAGD,wDAEE,qBAAqB,AACrB,WnD86BuC,AmD76BvC,YnD66BuC,AmD56BvC,oCAAqC,CACtC,AACD,4BACE,kMnCxFyI,CmCyF1I,AACD,4BACE,kMnC3FyI,CmC4F1I,AAQD,qBACE,kBAAkB,AAClB,QAAQ,AACR,SAAS,AACT,OAAO,AACP,WAAW,AACX,oBAAa,AAAb,oBAAa,AAAb,aAAa,AACb,wBAAuB,AAAvB,qBAAuB,AAAvB,uBAAuB,AACvB,eAAe,AAEf,iBnDo4BsC,AmDn4BtC,gBnDm4BsC,AmDl4BtC,eAAgB,CAuBjB,AAnCD,wBAeI,+BAAuB,AAAvB,uBAAuB,AACvB,mBAAc,AAAd,kBAAc,AAAd,cAAc,AACd,WnDk4BqC,AmDj4BrC,WnDk4BoC,AmDj4BpC,iBnDm4BoC,AmDl4BpC,gBnDk4BoC,AmDj4BpC,mBAAmB,AACnB,eAAe,AACf,sBnDhKW,AmDiKX,4BAA4B,AAE5B,kCAAiE,AACjE,qCAAoE,AACpE,WAAW,AjCtKT,qClBkiC+C,AkBliC/C,gClBkiC+C,AkBliC/C,4BlBkiC+C,CmD13BlD,AjCnKC,uCiCqIJ,wBjCpIM,wBAAgB,AAAhB,mBAAgB,AAAhB,eAAgB,CiCkKnB,CAAA,AA9BH,6BAiCI,SAAU,CACX,AAQH,kBACE,kBAAkB,AAClB,UAA2C,AAC3C,YAAY,AACZ,SAA0C,AAC1C,WAAW,AACX,iBAAiB,AACjB,oBAAoB,AACpB,WnD3La,AmD4Lb,iBAAkB,CACnB,AEhMD,kCACE,GAAK,iCAAyB,AAAzB,wBAAyB,CAAA,CAAA,AADhC,0BACE,GAAK,iCAAyB,AAAzB,wBAAyB,CAAA,CAAA,AAGhC,gBACE,qBAAqB,AACrB,WrD8iC0B,AqD7iC1B,YrD6iC0B,AqD5iC1B,2BAA2B,AAC3B,iCAAgD,AAChD,+BAA+B,AAE/B,kBAAkB,AAClB,sDAA8C,AAA9C,6CAA8C,CAC/C,AAED,mBACE,WrDuiC4B,AqDtiC5B,YrDsiC4B,AqDriC5B,kBrDuiC4B,CqDtiC7B,AAMD,gCACE,GACE,2BAAmB,AAAnB,kBAAmB,CAAA,AAErB,IACE,SAAU,CAAA,CAAA,AALd,wBACE,GACE,2BAAmB,AAAnB,kBAAmB,CAAA,AAErB,IACE,SAAU,CAAA,CAAA,AAId,cACE,qBAAqB,AACrB,WrD+gC0B,AqD9gC1B,YrD8gC0B,AqD7gC1B,2BAA2B,AAC3B,8BAA8B,AAE9B,kBAAkB,AAClB,UAAU,AACV,oDAA4C,AAA5C,2CAA4C,CAC7C,AAED,iBACE,WrDwgC4B,AqDvgC5B,WrDugC4B,CqDtgC7B,ACpDD,gBAAqB,iCAAmC,CAAI,AAC5D,WAAqB,4BAA8B,CAAI,AACvD,cAAqB,+BAAiC,CAAI,AAC1D,cAAqB,+BAAiC,CAAI,AAC1D,mBAAqB,oCAAsC,CAAI,AAC/D,gBAAqB,iCAAmC,CAAI,ACF1D,YACE,kCAAmC,CACpC,ApDSD,sFoDLI,kCAAgD,CpDQnD,AoDdD,cACE,kCAAmC,CACpC,ApDSD,8FoDLI,kCAAgD,CpDQnD,AoDdD,YACE,kCAAmC,CACpC,ApDSD,sFoDLI,kCAAgD,CpDQnD,AoDdD,SACE,kCAAmC,CACpC,ApDSD,0EoDLI,kCAAgD,CpDQnD,AoDdD,YACE,kCAAmC,CACpC,ApDSD,sFoDLI,kCAAgD,CpDQnD,AoDdD,WACE,kCAAmC,CACpC,ApDSD,kFoDLI,kCAAgD,CpDQnD,AoDdD,UACE,kCAAmC,CACpC,ApDSD,8EoDLI,kCAAgD,CpDQnD,AoDdD,SACE,kCAAmC,CACpC,ApDSD,0EoDLI,kCAAgD,CpDQnD,AqDPH,UACE,+BAAmC,CACpC,AAED,gBACE,sCAAwC,CACzC,ACZD,QAAkB,kCAAoD,CAAI,AAC1E,YAAkB,sCAAwD,CAAI,AAC9E,cAAkB,wCAA0D,CAAI,AAChF,eAAkB,yCAA2D,CAAI,AACjF,aAAkB,uCAAyD,CAAI,AAE/E,UAAmB,kBAAoB,CAAI,AAC3C,cAAmB,sBAAwB,CAAI,AAC/C,gBAAmB,wBAA0B,CAAI,AACjD,iBAAmB,yBAA2B,CAAI,AAClD,eAAmB,uBAAyB,CAAI,AAG9C,gBACE,8BAA+B,CAChC,AAFD,kBACE,8BAA+B,CAChC,AAFD,gBACE,8BAA+B,CAChC,AAFD,aACE,8BAA+B,CAChC,AAFD,gBACE,8BAA+B,CAChC,AAFD,eACE,8BAA+B,CAChC,AAFD,cACE,8BAA+B,CAChC,AAFD,aACE,8BAA+B,CAChC,AAGH,cACE,2BAA+B,CAChC,AAMD,YACE,8BAA2C,CAC5C,AAED,SACE,+BAAwC,CACzC,AAED,aACE,yCAAiD,AACjD,yCAAkD,CACnD,AAED,eACE,0CAAkD,AAClD,4CAAqD,CACtD,AAED,gBACE,6CAAqD,AACrD,2CAAoD,CACrD,AAED,cACE,yCAAiD,AACjD,2CAAoD,CACrD,AAED,YACE,8BAA2C,CAC5C,AAED,gBACE,2BAA6B,CAC9B,AAED,cACE,6BAAuC,CACxC,AAED,WACE,yBAA2B,CAC5B,ALzEC,gBACE,cAAc,AACd,WAAW,AACX,UAAW,CACZ,AMMG,QAAwB,sBAA0B,CAAI,AAAtD,UAAwB,wBAA0B,CAAI,AAAtD,gBAAwB,8BAA0B,CAAI,AAAtD,SAAwB,uBAA0B,CAAI,AAAtD,SAAwB,uBAA0B,CAAI,AAAtD,aAAwB,2BAA0B,CAAI,AAAtD,cAAwB,4BAA0B,CAAI,AAAtD,QAAwB,8BAA0B,AAA1B,8BAA0B,AAA1B,sBAA0B,CAAI,AAAtD,eAAwB,qCAA0B,AAA1B,qCAA0B,AAA1B,6BAA0B,CAAI,A9CiDxD,yB8CjDE,WAAwB,sBAA0B,CAAI,AAAtD,aAAwB,wBAA0B,CAAI,AAAtD,mBAAwB,8BAA0B,CAAI,AAAtD,YAAwB,uBAA0B,CAAI,AAAtD,YAAwB,uBAA0B,CAAI,AAAtD,gBAAwB,2BAA0B,CAAI,AAAtD,iBAAwB,4BAA0B,CAAI,AAAtD,WAAwB,8BAA0B,AAA1B,8BAA0B,AAA1B,sBAA0B,CAAI,AAAtD,kBAAwB,qCAA0B,AAA1B,qCAA0B,AAA1B,6BAA0B,CAAI,CAAA,A9CiDxD,yB8CjDE,WAAwB,sBAA0B,CAAI,AAAtD,aAAwB,wBAA0B,CAAI,AAAtD,mBAAwB,8BAA0B,CAAI,AAAtD,YAAwB,uBAA0B,CAAI,AAAtD,YAAwB,uBAA0B,CAAI,AAAtD,gBAAwB,2BAA0B,CAAI,AAAtD,iBAAwB,4BAA0B,CAAI,AAAtD,WAAwB,8BAA0B,AAA1B,8BAA0B,AAA1B,sBAA0B,CAAI,AAAtD,kBAAwB,qCAA0B,AAA1B,qCAA0B,AAA1B,6BAA0B,CAAI,CAAA,A9CiDxD,yB8CjDE,WAAwB,sBAA0B,CAAI,AAAtD,aAAwB,wBAA0B,CAAI,AAAtD,mBAAwB,8BAA0B,CAAI,AAAtD,YAAwB,uBAA0B,CAAI,AAAtD,YAAwB,uBAA0B,CAAI,AAAtD,gBAAwB,2BAA0B,CAAI,AAAtD,iBAAwB,4BAA0B,CAAI,AAAtD,WAAwB,8BAA0B,AAA1B,8BAA0B,AAA1B,sBAA0B,CAAI,AAAtD,kBAAwB,qCAA0B,AAA1B,qCAA0B,AAA1B,6BAA0B,CAAI,CAAA,A9CiDxD,0B8CjDE,WAAwB,sBAA0B,CAAI,AAAtD,aAAwB,wBAA0B,CAAI,AAAtD,mBAAwB,8BAA0B,CAAI,AAAtD,YAAwB,uBAA0B,CAAI,AAAtD,YAAwB,uBAA0B,CAAI,AAAtD,gBAAwB,2BAA0B,CAAI,AAAtD,iBAAwB,4BAA0B,CAAI,AAAtD,WAAwB,8BAA0B,AAA1B,8BAA0B,AAA1B,sBAA0B,CAAI,AAAtD,kBAAwB,qCAA0B,AAA1B,qCAA0B,AAA1B,6BAA0B,CAAI,CAAA,AAU5D,aAEI,cAAqB,sBAA0B,CAAI,AAAnD,gBAAqB,wBAA0B,CAAI,AAAnD,sBAAqB,8BAA0B,CAAI,AAAnD,eAAqB,uBAA0B,CAAI,AAAnD,eAAqB,uBAA0B,CAAI,AAAnD,mBAAqB,2BAA0B,CAAI,AAAnD,oBAAqB,4BAA0B,CAAI,AAAnD,cAAqB,8BAA0B,AAA1B,8BAA0B,AAA1B,sBAA0B,CAAI,AAAnD,qBAAqB,qCAA0B,AAA1B,qCAA0B,AAA1B,6BAA0B,CAAI,CAAA,ACrBvD,kBACE,kBAAkB,AAClB,cAAc,AACd,WAAW,AACX,UAAU,AACV,eAAgB,CAoBjB,AAzBD,yBAQI,cAAc,AACd,UAAW,CACZ,AAVH,2IAiBI,kBAAkB,AAClB,MAAM,AACN,SAAS,AACT,OAAO,AACP,WAAW,AACX,YAAY,AACZ,QAAS,CACV,AAOD,+BAEI,qBAA4F,CAC7F,AAHH,+BAEI,kBAA4F,CAC7F,AAHH,8BAEI,eAA4F,CAC7F,AAHH,8BAEI,gBAA4F,CAC7F,AC1BD,UAAgC,wCAA8B,AAA9B,uCAA8B,AAA9B,iCAA8B,AAA9B,4BAA8B,CAAI,AAClE,aAAgC,sCAAiC,AAAjC,uCAAiC,AAAjC,oCAAiC,AAAjC,+BAAiC,CAAI,AACrE,kBAAgC,wCAAsC,AAAtC,wCAAsC,AAAtC,yCAAsC,AAAtC,oCAAsC,CAAI,AAC1E,qBAAgC,sCAAyC,AAAzC,wCAAyC,AAAzC,4CAAyC,AAAzC,uCAAyC,CAAI,AAE7E,WAA8B,6BAA0B,AAA1B,wBAA0B,CAAI,AAC5D,aAA8B,+BAA4B,AAA5B,0BAA4B,CAAI,AAC9D,mBAA8B,qCAAkC,AAAlC,gCAAkC,CAAI,AACpE,WAA8B,6BAAyB,AAAzB,4BAAyB,AAAzB,uBAAyB,CAAI,AAC3D,aAA8B,6BAAuB,AAAvB,8BAAuB,AAAvB,qBAAuB,CAAI,AACzD,aAA8B,6BAAuB,AAAvB,8BAAuB,AAAvB,qBAAuB,CAAI,AACzD,eAA8B,8BAAyB,AAAzB,uBAAyB,CAAI,AAC3D,eAA8B,8BAAyB,AAAzB,uBAAyB,CAAI,AAE3D,uBAAoC,iCAAsC,AAAtC,8BAAsC,AAAtC,oCAAsC,CAAI,AAC9E,qBAAoC,+BAAoC,AAApC,4BAAoC,AAApC,kCAAoC,CAAI,AAC5E,wBAAoC,kCAAkC,AAAlC,+BAAkC,AAAlC,gCAAkC,CAAI,AAC1E,yBAAoC,mCAAyC,AAAzC,gCAAyC,AAAzC,uCAAyC,CAAI,AACjF,wBAAoC,mCAAwC,AAAxC,sCAAwC,CAAI,AAEhF,mBAAiC,kCAAkC,AAAlC,+BAAkC,AAAlC,gCAAkC,CAAI,AACvE,iBAAiC,gCAAgC,AAAhC,6BAAgC,AAAhC,8BAAgC,CAAI,AACrE,oBAAiC,mCAA8B,AAA9B,gCAA8B,AAA9B,4BAA8B,CAAI,AACnE,sBAAiC,qCAAgC,AAAhC,kCAAgC,AAAhC,8BAAgC,CAAI,AACrE,qBAAiC,oCAA+B,AAA/B,iCAA+B,AAA/B,6BAA+B,CAAI,AAEpE,qBAAkC,mCAAoC,AAApC,kCAAoC,CAAI,AAC1E,mBAAkC,iCAAkC,AAAlC,gCAAkC,CAAI,AACxE,sBAAkC,oCAAgC,AAAhC,8BAAgC,CAAI,AACtE,uBAAkC,qCAAuC,AAAvC,qCAAuC,CAAI,AAC7E,sBAAkC,wCAAsC,AAAtC,oCAAsC,CAAI,AAC5E,uBAAkC,qCAAiC,AAAjC,+BAAiC,CAAI,AAEvE,iBAAgC,mCAA2B,AAA3B,kCAA2B,AAA3B,yBAA2B,CAAI,AAC/D,kBAAgC,oCAAiC,AAAjC,+BAAiC,CAAI,AACrE,gBAAgC,kCAA+B,AAA/B,6BAA+B,CAAI,AACnE,mBAAgC,qCAA6B,AAA7B,oCAA6B,AAA7B,2BAA6B,CAAI,AACjE,qBAAgC,uCAA+B,AAA/B,6BAA+B,CAAI,AACnE,oBAAgC,sCAA8B,AAA9B,qCAA8B,AAA9B,4BAA8B,CAAI,AhDYlE,yBgDlDA,aAAgC,wCAA8B,AAA9B,uCAA8B,AAA9B,iCAA8B,AAA9B,4BAA8B,CAAI,AAClE,gBAAgC,sCAAiC,AAAjC,uCAAiC,AAAjC,oCAAiC,AAAjC,+BAAiC,CAAI,AACrE,qBAAgC,wCAAsC,AAAtC,wCAAsC,AAAtC,yCAAsC,AAAtC,oCAAsC,CAAI,AAC1E,wBAAgC,sCAAyC,AAAzC,wCAAyC,AAAzC,4CAAyC,AAAzC,uCAAyC,CAAI,AAE7E,cAA8B,6BAA0B,AAA1B,wBAA0B,CAAI,AAC5D,gBAA8B,+BAA4B,AAA5B,0BAA4B,CAAI,AAC9D,sBAA8B,qCAAkC,AAAlC,gCAAkC,CAAI,AACpE,cAA8B,6BAAyB,AAAzB,4BAAyB,AAAzB,uBAAyB,CAAI,AAC3D,gBAA8B,6BAAuB,AAAvB,8BAAuB,AAAvB,qBAAuB,CAAI,AACzD,gBAA8B,6BAAuB,AAAvB,8BAAuB,AAAvB,qBAAuB,CAAI,AACzD,kBAA8B,8BAAyB,AAAzB,uBAAyB,CAAI,AAC3D,kBAA8B,8BAAyB,AAAzB,uBAAyB,CAAI,AAE3D,0BAAoC,iCAAsC,AAAtC,8BAAsC,AAAtC,oCAAsC,CAAI,AAC9E,wBAAoC,+BAAoC,AAApC,4BAAoC,AAApC,kCAAoC,CAAI,AAC5E,2BAAoC,kCAAkC,AAAlC,+BAAkC,AAAlC,gCAAkC,CAAI,AAC1E,4BAAoC,mCAAyC,AAAzC,gCAAyC,AAAzC,uCAAyC,CAAI,AACjF,2BAAoC,mCAAwC,AAAxC,sCAAwC,CAAI,AAEhF,sBAAiC,kCAAkC,AAAlC,+BAAkC,AAAlC,gCAAkC,CAAI,AACvE,oBAAiC,gCAAgC,AAAhC,6BAAgC,AAAhC,8BAAgC,CAAI,AACrE,uBAAiC,mCAA8B,AAA9B,gCAA8B,AAA9B,4BAA8B,CAAI,AACnE,yBAAiC,qCAAgC,AAAhC,kCAAgC,AAAhC,8BAAgC,CAAI,AACrE,wBAAiC,oCAA+B,AAA/B,iCAA+B,AAA/B,6BAA+B,CAAI,AAEpE,wBAAkC,mCAAoC,AAApC,kCAAoC,CAAI,AAC1E,sBAAkC,iCAAkC,AAAlC,gCAAkC,CAAI,AACxE,yBAAkC,oCAAgC,AAAhC,8BAAgC,CAAI,AACtE,0BAAkC,qCAAuC,AAAvC,qCAAuC,CAAI,AAC7E,yBAAkC,wCAAsC,AAAtC,oCAAsC,CAAI,AAC5E,0BAAkC,qCAAiC,AAAjC,+BAAiC,CAAI,AAEvE,oBAAgC,mCAA2B,AAA3B,kCAA2B,AAA3B,yBAA2B,CAAI,AAC/D,qBAAgC,oCAAiC,AAAjC,+BAAiC,CAAI,AACrE,mBAAgC,kCAA+B,AAA/B,6BAA+B,CAAI,AACnE,sBAAgC,qCAA6B,AAA7B,oCAA6B,AAA7B,2BAA6B,CAAI,AACjE,wBAAgC,uCAA+B,AAA/B,6BAA+B,CAAI,AACnE,uBAAgC,sCAA8B,AAA9B,qCAA8B,AAA9B,4BAA8B,CAAI,CAAA,AhDYlE,yBgDlDA,aAAgC,wCAA8B,AAA9B,uCAA8B,AAA9B,iCAA8B,AAA9B,4BAA8B,CAAI,AAClE,gBAAgC,sCAAiC,AAAjC,uCAAiC,AAAjC,oCAAiC,AAAjC,+BAAiC,CAAI,AACrE,qBAAgC,wCAAsC,AAAtC,wCAAsC,AAAtC,yCAAsC,AAAtC,oCAAsC,CAAI,AAC1E,wBAAgC,sCAAyC,AAAzC,wCAAyC,AAAzC,4CAAyC,AAAzC,uCAAyC,CAAI,AAE7E,cAA8B,6BAA0B,AAA1B,wBAA0B,CAAI,AAC5D,gBAA8B,+BAA4B,AAA5B,0BAA4B,CAAI,AAC9D,sBAA8B,qCAAkC,AAAlC,gCAAkC,CAAI,AACpE,cAA8B,6BAAyB,AAAzB,4BAAyB,AAAzB,uBAAyB,CAAI,AAC3D,gBAA8B,6BAAuB,AAAvB,8BAAuB,AAAvB,qBAAuB,CAAI,AACzD,gBAA8B,6BAAuB,AAAvB,8BAAuB,AAAvB,qBAAuB,CAAI,AACzD,kBAA8B,8BAAyB,AAAzB,uBAAyB,CAAI,AAC3D,kBAA8B,8BAAyB,AAAzB,uBAAyB,CAAI,AAE3D,0BAAoC,iCAAsC,AAAtC,8BAAsC,AAAtC,oCAAsC,CAAI,AAC9E,wBAAoC,+BAAoC,AAApC,4BAAoC,AAApC,kCAAoC,CAAI,AAC5E,2BAAoC,kCAAkC,AAAlC,+BAAkC,AAAlC,gCAAkC,CAAI,AAC1E,4BAAoC,mCAAyC,AAAzC,gCAAyC,AAAzC,uCAAyC,CAAI,AACjF,2BAAoC,mCAAwC,AAAxC,sCAAwC,CAAI,AAEhF,sBAAiC,kCAAkC,AAAlC,+BAAkC,AAAlC,gCAAkC,CAAI,AACvE,oBAAiC,gCAAgC,AAAhC,6BAAgC,AAAhC,8BAAgC,CAAI,AACrE,uBAAiC,mCAA8B,AAA9B,gCAA8B,AAA9B,4BAA8B,CAAI,AACnE,yBAAiC,qCAAgC,AAAhC,kCAAgC,AAAhC,8BAAgC,CAAI,AACrE,wBAAiC,oCAA+B,AAA/B,iCAA+B,AAA/B,6BAA+B,CAAI,AAEpE,wBAAkC,mCAAoC,AAApC,kCAAoC,CAAI,AAC1E,sBAAkC,iCAAkC,AAAlC,gCAAkC,CAAI,AACxE,yBAAkC,oCAAgC,AAAhC,8BAAgC,CAAI,AACtE,0BAAkC,qCAAuC,AAAvC,qCAAuC,CAAI,AAC7E,yBAAkC,wCAAsC,AAAtC,oCAAsC,CAAI,AAC5E,0BAAkC,qCAAiC,AAAjC,+BAAiC,CAAI,AAEvE,oBAAgC,mCAA2B,AAA3B,kCAA2B,AAA3B,yBAA2B,CAAI,AAC/D,qBAAgC,oCAAiC,AAAjC,+BAAiC,CAAI,AACrE,mBAAgC,kCAA+B,AAA/B,6BAA+B,CAAI,AACnE,sBAAgC,qCAA6B,AAA7B,oCAA6B,AAA7B,2BAA6B,CAAI,AACjE,wBAAgC,uCAA+B,AAA/B,6BAA+B,CAAI,AACnE,uBAAgC,sCAA8B,AAA9B,qCAA8B,AAA9B,4BAA8B,CAAI,CAAA,AhDYlE,yBgDlDA,aAAgC,wCAA8B,AAA9B,uCAA8B,AAA9B,iCAA8B,AAA9B,4BAA8B,CAAI,AAClE,gBAAgC,sCAAiC,AAAjC,uCAAiC,AAAjC,oCAAiC,AAAjC,+BAAiC,CAAI,AACrE,qBAAgC,wCAAsC,AAAtC,wCAAsC,AAAtC,yCAAsC,AAAtC,oCAAsC,CAAI,AAC1E,wBAAgC,sCAAyC,AAAzC,wCAAyC,AAAzC,4CAAyC,AAAzC,uCAAyC,CAAI,AAE7E,cAA8B,6BAA0B,AAA1B,wBAA0B,CAAI,AAC5D,gBAA8B,+BAA4B,AAA5B,0BAA4B,CAAI,AAC9D,sBAA8B,qCAAkC,AAAlC,gCAAkC,CAAI,AACpE,cAA8B,6BAAyB,AAAzB,4BAAyB,AAAzB,uBAAyB,CAAI,AAC3D,gBAA8B,6BAAuB,AAAvB,8BAAuB,AAAvB,qBAAuB,CAAI,AACzD,gBAA8B,6BAAuB,AAAvB,8BAAuB,AAAvB,qBAAuB,CAAI,AACzD,kBAA8B,8BAAyB,AAAzB,uBAAyB,CAAI,AAC3D,kBAA8B,8BAAyB,AAAzB,uBAAyB,CAAI,AAE3D,0BAAoC,iCAAsC,AAAtC,8BAAsC,AAAtC,oCAAsC,CAAI,AAC9E,wBAAoC,+BAAoC,AAApC,4BAAoC,AAApC,kCAAoC,CAAI,AAC5E,2BAAoC,kCAAkC,AAAlC,+BAAkC,AAAlC,gCAAkC,CAAI,AAC1E,4BAAoC,mCAAyC,AAAzC,gCAAyC,AAAzC,uCAAyC,CAAI,AACjF,2BAAoC,mCAAwC,AAAxC,sCAAwC,CAAI,AAEhF,sBAAiC,kCAAkC,AAAlC,+BAAkC,AAAlC,gCAAkC,CAAI,AACvE,oBAAiC,gCAAgC,AAAhC,6BAAgC,AAAhC,8BAAgC,CAAI,AACrE,uBAAiC,mCAA8B,AAA9B,gCAA8B,AAA9B,4BAA8B,CAAI,AACnE,yBAAiC,qCAAgC,AAAhC,kCAAgC,AAAhC,8BAAgC,CAAI,AACrE,wBAAiC,oCAA+B,AAA/B,iCAA+B,AAA/B,6BAA+B,CAAI,AAEpE,wBAAkC,mCAAoC,AAApC,kCAAoC,CAAI,AAC1E,sBAAkC,iCAAkC,AAAlC,gCAAkC,CAAI,AACxE,yBAAkC,oCAAgC,AAAhC,8BAAgC,CAAI,AACtE,0BAAkC,qCAAuC,AAAvC,qCAAuC,CAAI,AAC7E,yBAAkC,wCAAsC,AAAtC,oCAAsC,CAAI,AAC5E,0BAAkC,qCAAiC,AAAjC,+BAAiC,CAAI,AAEvE,oBAAgC,mCAA2B,AAA3B,kCAA2B,AAA3B,yBAA2B,CAAI,AAC/D,qBAAgC,oCAAiC,AAAjC,+BAAiC,CAAI,AACrE,mBAAgC,kCAA+B,AAA/B,6BAA+B,CAAI,AACnE,sBAAgC,qCAA6B,AAA7B,oCAA6B,AAA7B,2BAA6B,CAAI,AACjE,wBAAgC,uCAA+B,AAA/B,6BAA+B,CAAI,AACnE,uBAAgC,sCAA8B,AAA9B,qCAA8B,AAA9B,4BAA8B,CAAI,CAAA,AhDYlE,0BgDlDA,aAAgC,wCAA8B,AAA9B,uCAA8B,AAA9B,iCAA8B,AAA9B,4BAA8B,CAAI,AAClE,gBAAgC,sCAAiC,AAAjC,uCAAiC,AAAjC,oCAAiC,AAAjC,+BAAiC,CAAI,AACrE,qBAAgC,wCAAsC,AAAtC,wCAAsC,AAAtC,yCAAsC,AAAtC,oCAAsC,CAAI,AAC1E,wBAAgC,sCAAyC,AAAzC,wCAAyC,AAAzC,4CAAyC,AAAzC,uCAAyC,CAAI,AAE7E,cAA8B,6BAA0B,AAA1B,wBAA0B,CAAI,AAC5D,gBAA8B,+BAA4B,AAA5B,0BAA4B,CAAI,AAC9D,sBAA8B,qCAAkC,AAAlC,gCAAkC,CAAI,AACpE,cAA8B,6BAAyB,AAAzB,4BAAyB,AAAzB,uBAAyB,CAAI,AAC3D,gBAA8B,6BAAuB,AAAvB,8BAAuB,AAAvB,qBAAuB,CAAI,AACzD,gBAA8B,6BAAuB,AAAvB,8BAAuB,AAAvB,qBAAuB,CAAI,AACzD,kBAA8B,8BAAyB,AAAzB,uBAAyB,CAAI,AAC3D,kBAA8B,8BAAyB,AAAzB,uBAAyB,CAAI,AAE3D,0BAAoC,iCAAsC,AAAtC,8BAAsC,AAAtC,oCAAsC,CAAI,AAC9E,wBAAoC,+BAAoC,AAApC,4BAAoC,AAApC,kCAAoC,CAAI,AAC5E,2BAAoC,kCAAkC,AAAlC,+BAAkC,AAAlC,gCAAkC,CAAI,AAC1E,4BAAoC,mCAAyC,AAAzC,gCAAyC,AAAzC,uCAAyC,CAAI,AACjF,2BAAoC,mCAAwC,AAAxC,sCAAwC,CAAI,AAEhF,sBAAiC,kCAAkC,AAAlC,+BAAkC,AAAlC,gCAAkC,CAAI,AACvE,oBAAiC,gCAAgC,AAAhC,6BAAgC,AAAhC,8BAAgC,CAAI,AACrE,uBAAiC,mCAA8B,AAA9B,gCAA8B,AAA9B,4BAA8B,CAAI,AACnE,yBAAiC,qCAAgC,AAAhC,kCAAgC,AAAhC,8BAAgC,CAAI,AACrE,wBAAiC,oCAA+B,AAA/B,iCAA+B,AAA/B,6BAA+B,CAAI,AAEpE,wBAAkC,mCAAoC,AAApC,kCAAoC,CAAI,AAC1E,sBAAkC,iCAAkC,AAAlC,gCAAkC,CAAI,AACxE,yBAAkC,oCAAgC,AAAhC,8BAAgC,CAAI,AACtE,0BAAkC,qCAAuC,AAAvC,qCAAuC,CAAI,AAC7E,yBAAkC,wCAAsC,AAAtC,oCAAsC,CAAI,AAC5E,0BAAkC,qCAAiC,AAAjC,+BAAiC,CAAI,AAEvE,oBAAgC,mCAA2B,AAA3B,kCAA2B,AAA3B,yBAA2B,CAAI,AAC/D,qBAAgC,oCAAiC,AAAjC,+BAAiC,CAAI,AACrE,mBAAgC,kCAA+B,AAA/B,6BAA+B,CAAI,AACnE,sBAAgC,qCAA6B,AAA7B,oCAA6B,AAA7B,2BAA6B,CAAI,AACjE,wBAAgC,uCAA+B,AAA/B,6BAA+B,CAAI,AACnE,uBAAgC,sCAA8B,AAA9B,qCAA8B,AAA9B,4BAA8B,CAAI,CAAA,AC1ClE,YAAwB,oBAAsB,CAAI,AAClD,aAAwB,qBAAuB,CAAI,AACnD,YAAwB,oBAAsB,CAAI,AjDoDlD,yBiDtDA,eAAwB,oBAAsB,CAAI,AAClD,gBAAwB,qBAAuB,CAAI,AACnD,eAAwB,oBAAsB,CAAI,CAAA,AjDoDlD,yBiDtDA,eAAwB,oBAAsB,CAAI,AAClD,gBAAwB,qBAAuB,CAAI,AACnD,eAAwB,oBAAsB,CAAI,CAAA,AjDoDlD,yBiDtDA,eAAwB,oBAAsB,CAAI,AAClD,gBAAwB,qBAAuB,CAAI,AACnD,eAAwB,oBAAsB,CAAI,CAAA,AjDoDlD,0BiDtDA,eAAwB,oBAAsB,CAAI,AAClD,gBAAwB,qBAAuB,CAAI,AACnD,eAAwB,oBAAsB,CAAI,CAAA,ACLpD,eAAsB,uBAA2B,CAAI,AAArD,iBAAsB,yBAA2B,CAAI,ACCrD,iBAAyB,yBAA8B,CAAI,AAA3D,mBAAyB,2BAA8B,CAAI,AAA3D,mBAAyB,2BAA8B,CAAI,AAA3D,gBAAyB,wBAA8B,CAAI,AAA3D,iBAAyB,kCAA8B,AAA9B,yBAA8B,CAAI,AAK7D,WACE,eAAe,AACf,MAAM,AACN,QAAQ,AACR,OAAO,AACP,Y/DypBsC,C+DxpBvC,AAED,cACE,eAAe,AACf,QAAQ,AACR,SAAS,AACT,OAAO,AACP,Y/DipBsC,C+DhpBvC,AAG6B,2DAD9B,YAEI,wBAAgB,AAAhB,gBAAgB,AAChB,MAAM,AACN,Y/DyoBoC,C+DvoBvC,CAAA,AC3BD,SCEE,kBAAkB,AAClB,UAAU,AACV,WAAW,AACX,UAAU,AACV,gBAAgB,AAChB,sBAAsB,AACtB,mBAAmB,AACnB,QAAS,CDPV,ACiBC,mDAEE,gBAAgB,AAChB,WAAW,AACX,YAAY,AACZ,iBAAiB,AACjB,UAAU,AACV,kBAAmB,CACpB,AC7BH,WAAa,qEAAqC,AAArC,4DAAqC,CAAI,AACtD,QAAU,+DAAkC,AAAlC,sDAAkC,CAAI,AAChD,WAAa,8DAAqC,AAArC,qDAAqC,CAAI,AACtD,aAAe,kCAA2B,AAA3B,yBAA2B,CAAI,ACC1C,MAAuB,mBAA4B,CAAI,AAAvD,MAAuB,mBAA4B,CAAI,AAAvD,MAAuB,mBAA4B,CAAI,AAAvD,OAAuB,oBAA4B,CAAI,AAAvD,QAAuB,oBAA4B,CAAI,AAAvD,MAAuB,oBAA4B,CAAI,AAAvD,MAAuB,oBAA4B,CAAI,AAAvD,MAAuB,oBAA4B,CAAI,AAAvD,OAAuB,qBAA4B,CAAI,AAAvD,QAAuB,qBAA4B,CAAI,AAI3D,QAAU,wBAA0B,CAAI,AACxC,QAAU,yBAA2B,CAAI,AAIzC,YAAc,yBAA2B,CAAI,AAC7C,YAAc,0BAA4B,CAAI,AAE9C,QAAU,qBAAuB,CAAI,AACrC,QAAU,sBAAwB,CAAI,ACftC,sBAEI,kBAAkB,AAClB,MAAM,AACN,QAAQ,AACR,SAAS,AACT,OAAO,AACP,UAAU,AAEV,oBAAoB,AACpB,WAAW,AAEX,iCAAkC,CACnC,ACPK,KAAgC,kBAA4B,CAAI,AAChE,YAEE,sBAAoC,CACrC,AACD,YAEE,wBAAwC,CACzC,AACD,YAEE,yBAA0C,CAC3C,AACD,YAEE,uBAAsC,CACvC,AAhBD,KAAgC,wBAA4B,CAAI,AAChE,YAEE,4BAAoC,CACrC,AACD,YAEE,8BAAwC,CACzC,AACD,YAEE,+BAA0C,CAC3C,AACD,YAEE,6BAAsC,CACvC,AAhBD,KAAgC,uBAA4B,CAAI,AAChE,YAEE,2BAAoC,CACrC,AACD,YAEE,6BAAwC,CACzC,AACD,YAEE,8BAA0C,CAC3C,AACD,YAEE,4BAAsC,CACvC,AAhBD,KAAgC,qBAA4B,CAAI,AAChE,YAEE,yBAAoC,CACrC,AACD,YAEE,2BAAwC,CACzC,AACD,YAEE,4BAA0C,CAC3C,AACD,YAEE,0BAAsC,CACvC,AAhBD,KAAgC,uBAA4B,CAAI,AAChE,YAEE,2BAAoC,CACrC,AACD,YAEE,6BAAwC,CACzC,AACD,YAEE,8BAA0C,CAC3C,AACD,YAEE,4BAAsC,CACvC,AAhBD,KAAgC,qBAA4B,CAAI,AAChE,YAEE,yBAAoC,CACrC,AACD,YAEE,2BAAwC,CACzC,AACD,YAEE,4BAA0C,CAC3C,AACD,YAEE,0BAAsC,CACvC,AAhBD,KAAgC,mBAA4B,CAAI,AAChE,YAEE,uBAAoC,CACrC,AACD,YAEE,yBAAwC,CACzC,AACD,YAEE,0BAA0C,CAC3C,AACD,YAEE,wBAAsC,CACvC,AAhBD,KAAgC,yBAA4B,CAAI,AAChE,YAEE,6BAAoC,CACrC,AACD,YAEE,+BAAwC,CACzC,AACD,YAEE,gCAA0C,CAC3C,AACD,YAEE,8BAAsC,CACvC,AAhBD,KAAgC,wBAA4B,CAAI,AAChE,YAEE,4BAAoC,CACrC,AACD,YAEE,8BAAwC,CACzC,AACD,YAEE,+BAA0C,CAC3C,AACD,YAEE,6BAAsC,CACvC,AAhBD,KAAgC,sBAA4B,CAAI,AAChE,YAEE,0BAAoC,CACrC,AACD,YAEE,4BAAwC,CACzC,AACD,YAEE,6BAA0C,CAC3C,AACD,YAEE,2BAAsC,CACvC,AAhBD,KAAgC,wBAA4B,CAAI,AAChE,YAEE,4BAAoC,CACrC,AACD,YAEE,8BAAwC,CACzC,AACD,YAEE,+BAA0C,CAC3C,AACD,YAEE,6BAAsC,CACvC,AAhBD,KAAgC,sBAA4B,CAAI,AAChE,YAEE,0BAAoC,CACrC,AACD,YAEE,4BAAwC,CACzC,AACD,YAEE,6BAA0C,CAC3C,AACD,YAEE,2BAAsC,CACvC,AAOD,MAAwB,yBAA2B,CAAI,AACvD,cAEE,6BAA+B,CAChC,AACD,cAEE,+BAAiC,CAClC,AACD,cAEE,gCAAkC,CACnC,AACD,cAEE,8BAAgC,CACjC,AAhBD,MAAwB,wBAA2B,CAAI,AACvD,cAEE,4BAA+B,CAChC,AACD,cAEE,8BAAiC,CAClC,AACD,cAEE,+BAAkC,CACnC,AACD,cAEE,6BAAgC,CACjC,AAhBD,MAAwB,sBAA2B,CAAI,AACvD,cAEE,0BAA+B,CAChC,AACD,cAEE,4BAAiC,CAClC,AACD,cAEE,6BAAkC,CACnC,AACD,cAEE,2BAAgC,CACjC,AAhBD,MAAwB,wBAA2B,CAAI,AACvD,cAEE,4BAA+B,CAChC,AACD,cAEE,8BAAiC,CAClC,AACD,cAEE,+BAAkC,CACnC,AACD,cAEE,6BAAgC,CACjC,AAhBD,MAAwB,sBAA2B,CAAI,AACvD,cAEE,0BAA+B,CAChC,AACD,cAEE,4BAAiC,CAClC,AACD,cAEE,6BAAkC,CACnC,AACD,cAEE,2BAAgC,CACjC,AAKL,QAAmB,qBAAuB,CAAI,AAC9C,kBAEE,yBAA2B,CAC5B,AACD,kBAEE,2BAA6B,CAC9B,AACD,kBAEE,4BAA8B,CAC/B,AACD,kBAEE,0BAA4B,CAC7B,AzDVD,yByDlDI,QAAgC,kBAA4B,CAAI,AAChE,kBAEE,sBAAoC,CACrC,AACD,kBAEE,wBAAwC,CACzC,AACD,kBAEE,yBAA0C,CAC3C,AACD,kBAEE,uBAAsC,CACvC,AAhBD,QAAgC,wBAA4B,CAAI,AAChE,kBAEE,4BAAoC,CACrC,AACD,kBAEE,8BAAwC,CACzC,AACD,kBAEE,+BAA0C,CAC3C,AACD,kBAEE,6BAAsC,CACvC,AAhBD,QAAgC,uBAA4B,CAAI,AAChE,kBAEE,2BAAoC,CACrC,AACD,kBAEE,6BAAwC,CACzC,AACD,kBAEE,8BAA0C,CAC3C,AACD,kBAEE,4BAAsC,CACvC,AAhBD,QAAgC,qBAA4B,CAAI,AAChE,kBAEE,yBAAoC,CACrC,AACD,kBAEE,2BAAwC,CACzC,AACD,kBAEE,4BAA0C,CAC3C,AACD,kBAEE,0BAAsC,CACvC,AAhBD,QAAgC,uBAA4B,CAAI,AAChE,kBAEE,2BAAoC,CACrC,AACD,kBAEE,6BAAwC,CACzC,AACD,kBAEE,8BAA0C,CAC3C,AACD,kBAEE,4BAAsC,CACvC,AAhBD,QAAgC,qBAA4B,CAAI,AAChE,kBAEE,yBAAoC,CACrC,AACD,kBAEE,2BAAwC,CACzC,AACD,kBAEE,4BAA0C,CAC3C,AACD,kBAEE,0BAAsC,CACvC,AAhBD,QAAgC,mBAA4B,CAAI,AAChE,kBAEE,uBAAoC,CACrC,AACD,kBAEE,yBAAwC,CACzC,AACD,kBAEE,0BAA0C,CAC3C,AACD,kBAEE,wBAAsC,CACvC,AAhBD,QAAgC,yBAA4B,CAAI,AAChE,kBAEE,6BAAoC,CACrC,AACD,kBAEE,+BAAwC,CACzC,AACD,kBAEE,gCAA0C,CAC3C,AACD,kBAEE,8BAAsC,CACvC,AAhBD,QAAgC,wBAA4B,CAAI,AAChE,kBAEE,4BAAoC,CACrC,AACD,kBAEE,8BAAwC,CACzC,AACD,kBAEE,+BAA0C,CAC3C,AACD,kBAEE,6BAAsC,CACvC,AAhBD,QAAgC,sBAA4B,CAAI,AAChE,kBAEE,0BAAoC,CACrC,AACD,kBAEE,4BAAwC,CACzC,AACD,kBAEE,6BAA0C,CAC3C,AACD,kBAEE,2BAAsC,CACvC,AAhBD,QAAgC,wBAA4B,CAAI,AAChE,kBAEE,4BAAoC,CACrC,AACD,kBAEE,8BAAwC,CACzC,AACD,kBAEE,+BAA0C,CAC3C,AACD,kBAEE,6BAAsC,CACvC,AAhBD,QAAgC,sBAA4B,CAAI,AAChE,kBAEE,0BAAoC,CACrC,AACD,kBAEE,4BAAwC,CACzC,AACD,kBAEE,6BAA0C,CAC3C,AACD,kBAEE,2BAAsC,CACvC,AAOD,SAAwB,yBAA2B,CAAI,AACvD,oBAEE,6BAA+B,CAChC,AACD,oBAEE,+BAAiC,CAClC,AACD,oBAEE,gCAAkC,CACnC,AACD,oBAEE,8BAAgC,CACjC,AAhBD,SAAwB,wBAA2B,CAAI,AACvD,oBAEE,4BAA+B,CAChC,AACD,oBAEE,8BAAiC,CAClC,AACD,oBAEE,+BAAkC,CACnC,AACD,oBAEE,6BAAgC,CACjC,AAhBD,SAAwB,sBAA2B,CAAI,AACvD,oBAEE,0BAA+B,CAChC,AACD,oBAEE,4BAAiC,CAClC,AACD,oBAEE,6BAAkC,CACnC,AACD,oBAEE,2BAAgC,CACjC,AAhBD,SAAwB,wBAA2B,CAAI,AACvD,oBAEE,4BAA+B,CAChC,AACD,oBAEE,8BAAiC,CAClC,AACD,oBAEE,+BAAkC,CACnC,AACD,oBAEE,6BAAgC,CACjC,AAhBD,SAAwB,sBAA2B,CAAI,AACvD,oBAEE,0BAA+B,CAChC,AACD,oBAEE,4BAAiC,CAClC,AACD,oBAEE,6BAAkC,CACnC,AACD,oBAEE,2BAAgC,CACjC,AAKL,WAAmB,qBAAuB,CAAI,AAC9C,wBAEE,yBAA2B,CAC5B,AACD,wBAEE,2BAA6B,CAC9B,AACD,wBAEE,4BAA8B,CAC/B,AACD,wBAEE,0BAA4B,CAC7B,CAAA,AzDVD,yByDlDI,QAAgC,kBAA4B,CAAI,AAChE,kBAEE,sBAAoC,CACrC,AACD,kBAEE,wBAAwC,CACzC,AACD,kBAEE,yBAA0C,CAC3C,AACD,kBAEE,uBAAsC,CACvC,AAhBD,QAAgC,wBAA4B,CAAI,AAChE,kBAEE,4BAAoC,CACrC,AACD,kBAEE,8BAAwC,CACzC,AACD,kBAEE,+BAA0C,CAC3C,AACD,kBAEE,6BAAsC,CACvC,AAhBD,QAAgC,uBAA4B,CAAI,AAChE,kBAEE,2BAAoC,CACrC,AACD,kBAEE,6BAAwC,CACzC,AACD,kBAEE,8BAA0C,CAC3C,AACD,kBAEE,4BAAsC,CACvC,AAhBD,QAAgC,qBAA4B,CAAI,AAChE,kBAEE,yBAAoC,CACrC,AACD,kBAEE,2BAAwC,CACzC,AACD,kBAEE,4BAA0C,CAC3C,AACD,kBAEE,0BAAsC,CACvC,AAhBD,QAAgC,uBAA4B,CAAI,AAChE,kBAEE,2BAAoC,CACrC,AACD,kBAEE,6BAAwC,CACzC,AACD,kBAEE,8BAA0C,CAC3C,AACD,kBAEE,4BAAsC,CACvC,AAhBD,QAAgC,qBAA4B,CAAI,AAChE,kBAEE,yBAAoC,CACrC,AACD,kBAEE,2BAAwC,CACzC,AACD,kBAEE,4BAA0C,CAC3C,AACD,kBAEE,0BAAsC,CACvC,AAhBD,QAAgC,mBAA4B,CAAI,AAChE,kBAEE,uBAAoC,CACrC,AACD,kBAEE,yBAAwC,CACzC,AACD,kBAEE,0BAA0C,CAC3C,AACD,kBAEE,wBAAsC,CACvC,AAhBD,QAAgC,yBAA4B,CAAI,AAChE,kBAEE,6BAAoC,CACrC,AACD,kBAEE,+BAAwC,CACzC,AACD,kBAEE,gCAA0C,CAC3C,AACD,kBAEE,8BAAsC,CACvC,AAhBD,QAAgC,wBAA4B,CAAI,AAChE,kBAEE,4BAAoC,CACrC,AACD,kBAEE,8BAAwC,CACzC,AACD,kBAEE,+BAA0C,CAC3C,AACD,kBAEE,6BAAsC,CACvC,AAhBD,QAAgC,sBAA4B,CAAI,AAChE,kBAEE,0BAAoC,CACrC,AACD,kBAEE,4BAAwC,CACzC,AACD,kBAEE,6BAA0C,CAC3C,AACD,kBAEE,2BAAsC,CACvC,AAhBD,QAAgC,wBAA4B,CAAI,AAChE,kBAEE,4BAAoC,CACrC,AACD,kBAEE,8BAAwC,CACzC,AACD,kBAEE,+BAA0C,CAC3C,AACD,kBAEE,6BAAsC,CACvC,AAhBD,QAAgC,sBAA4B,CAAI,AAChE,kBAEE,0BAAoC,CACrC,AACD,kBAEE,4BAAwC,CACzC,AACD,kBAEE,6BAA0C,CAC3C,AACD,kBAEE,2BAAsC,CACvC,AAOD,SAAwB,yBAA2B,CAAI,AACvD,oBAEE,6BAA+B,CAChC,AACD,oBAEE,+BAAiC,CAClC,AACD,oBAEE,gCAAkC,CACnC,AACD,oBAEE,8BAAgC,CACjC,AAhBD,SAAwB,wBAA2B,CAAI,AACvD,oBAEE,4BAA+B,CAChC,AACD,oBAEE,8BAAiC,CAClC,AACD,oBAEE,+BAAkC,CACnC,AACD,oBAEE,6BAAgC,CACjC,AAhBD,SAAwB,sBAA2B,CAAI,AACvD,oBAEE,0BAA+B,CAChC,AACD,oBAEE,4BAAiC,CAClC,AACD,oBAEE,6BAAkC,CACnC,AACD,oBAEE,2BAAgC,CACjC,AAhBD,SAAwB,wBAA2B,CAAI,AACvD,oBAEE,4BAA+B,CAChC,AACD,oBAEE,8BAAiC,CAClC,AACD,oBAEE,+BAAkC,CACnC,AACD,oBAEE,6BAAgC,CACjC,AAhBD,SAAwB,sBAA2B,CAAI,AACvD,oBAEE,0BAA+B,CAChC,AACD,oBAEE,4BAAiC,CAClC,AACD,oBAEE,6BAAkC,CACnC,AACD,oBAEE,2BAAgC,CACjC,AAKL,WAAmB,qBAAuB,CAAI,AAC9C,wBAEE,yBAA2B,CAC5B,AACD,wBAEE,2BAA6B,CAC9B,AACD,wBAEE,4BAA8B,CAC/B,AACD,wBAEE,0BAA4B,CAC7B,CAAA,AzDVD,yByDlDI,QAAgC,kBAA4B,CAAI,AAChE,kBAEE,sBAAoC,CACrC,AACD,kBAEE,wBAAwC,CACzC,AACD,kBAEE,yBAA0C,CAC3C,AACD,kBAEE,uBAAsC,CACvC,AAhBD,QAAgC,wBAA4B,CAAI,AAChE,kBAEE,4BAAoC,CACrC,AACD,kBAEE,8BAAwC,CACzC,AACD,kBAEE,+BAA0C,CAC3C,AACD,kBAEE,6BAAsC,CACvC,AAhBD,QAAgC,uBAA4B,CAAI,AAChE,kBAEE,2BAAoC,CACrC,AACD,kBAEE,6BAAwC,CACzC,AACD,kBAEE,8BAA0C,CAC3C,AACD,kBAEE,4BAAsC,CACvC,AAhBD,QAAgC,qBAA4B,CAAI,AAChE,kBAEE,yBAAoC,CACrC,AACD,kBAEE,2BAAwC,CACzC,AACD,kBAEE,4BAA0C,CAC3C,AACD,kBAEE,0BAAsC,CACvC,AAhBD,QAAgC,uBAA4B,CAAI,AAChE,kBAEE,2BAAoC,CACrC,AACD,kBAEE,6BAAwC,CACzC,AACD,kBAEE,8BAA0C,CAC3C,AACD,kBAEE,4BAAsC,CACvC,AAhBD,QAAgC,qBAA4B,CAAI,AAChE,kBAEE,yBAAoC,CACrC,AACD,kBAEE,2BAAwC,CACzC,AACD,kBAEE,4BAA0C,CAC3C,AACD,kBAEE,0BAAsC,CACvC,AAhBD,QAAgC,mBAA4B,CAAI,AAChE,kBAEE,uBAAoC,CACrC,AACD,kBAEE,yBAAwC,CACzC,AACD,kBAEE,0BAA0C,CAC3C,AACD,kBAEE,wBAAsC,CACvC,AAhBD,QAAgC,yBAA4B,CAAI,AAChE,kBAEE,6BAAoC,CACrC,AACD,kBAEE,+BAAwC,CACzC,AACD,kBAEE,gCAA0C,CAC3C,AACD,kBAEE,8BAAsC,CACvC,AAhBD,QAAgC,wBAA4B,CAAI,AAChE,kBAEE,4BAAoC,CACrC,AACD,kBAEE,8BAAwC,CACzC,AACD,kBAEE,+BAA0C,CAC3C,AACD,kBAEE,6BAAsC,CACvC,AAhBD,QAAgC,sBAA4B,CAAI,AAChE,kBAEE,0BAAoC,CACrC,AACD,kBAEE,4BAAwC,CACzC,AACD,kBAEE,6BAA0C,CAC3C,AACD,kBAEE,2BAAsC,CACvC,AAhBD,QAAgC,wBAA4B,CAAI,AAChE,kBAEE,4BAAoC,CACrC,AACD,kBAEE,8BAAwC,CACzC,AACD,kBAEE,+BAA0C,CAC3C,AACD,kBAEE,6BAAsC,CACvC,AAhBD,QAAgC,sBAA4B,CAAI,AAChE,kBAEE,0BAAoC,CACrC,AACD,kBAEE,4BAAwC,CACzC,AACD,kBAEE,6BAA0C,CAC3C,AACD,kBAEE,2BAAsC,CACvC,AAOD,SAAwB,yBAA2B,CAAI,AACvD,oBAEE,6BAA+B,CAChC,AACD,oBAEE,+BAAiC,CAClC,AACD,oBAEE,gCAAkC,CACnC,AACD,oBAEE,8BAAgC,CACjC,AAhBD,SAAwB,wBAA2B,CAAI,AACvD,oBAEE,4BAA+B,CAChC,AACD,oBAEE,8BAAiC,CAClC,AACD,oBAEE,+BAAkC,CACnC,AACD,oBAEE,6BAAgC,CACjC,AAhBD,SAAwB,sBAA2B,CAAI,AACvD,oBAEE,0BAA+B,CAChC,AACD,oBAEE,4BAAiC,CAClC,AACD,oBAEE,6BAAkC,CACnC,AACD,oBAEE,2BAAgC,CACjC,AAhBD,SAAwB,wBAA2B,CAAI,AACvD,oBAEE,4BAA+B,CAChC,AACD,oBAEE,8BAAiC,CAClC,AACD,oBAEE,+BAAkC,CACnC,AACD,oBAEE,6BAAgC,CACjC,AAhBD,SAAwB,sBAA2B,CAAI,AACvD,oBAEE,0BAA+B,CAChC,AACD,oBAEE,4BAAiC,CAClC,AACD,oBAEE,6BAAkC,CACnC,AACD,oBAEE,2BAAgC,CACjC,AAKL,WAAmB,qBAAuB,CAAI,AAC9C,wBAEE,yBAA2B,CAC5B,AACD,wBAEE,2BAA6B,CAC9B,AACD,wBAEE,4BAA8B,CAC/B,AACD,wBAEE,0BAA4B,CAC7B,CAAA,AzDVD,0ByDlDI,QAAgC,kBAA4B,CAAI,AAChE,kBAEE,sBAAoC,CACrC,AACD,kBAEE,wBAAwC,CACzC,AACD,kBAEE,yBAA0C,CAC3C,AACD,kBAEE,uBAAsC,CACvC,AAhBD,QAAgC,wBAA4B,CAAI,AAChE,kBAEE,4BAAoC,CACrC,AACD,kBAEE,8BAAwC,CACzC,AACD,kBAEE,+BAA0C,CAC3C,AACD,kBAEE,6BAAsC,CACvC,AAhBD,QAAgC,uBAA4B,CAAI,AAChE,kBAEE,2BAAoC,CACrC,AACD,kBAEE,6BAAwC,CACzC,AACD,kBAEE,8BAA0C,CAC3C,AACD,kBAEE,4BAAsC,CACvC,AAhBD,QAAgC,qBAA4B,CAAI,AAChE,kBAEE,yBAAoC,CACrC,AACD,kBAEE,2BAAwC,CACzC,AACD,kBAEE,4BAA0C,CAC3C,AACD,kBAEE,0BAAsC,CACvC,AAhBD,QAAgC,uBAA4B,CAAI,AAChE,kBAEE,2BAAoC,CACrC,AACD,kBAEE,6BAAwC,CACzC,AACD,kBAEE,8BAA0C,CAC3C,AACD,kBAEE,4BAAsC,CACvC,AAhBD,QAAgC,qBAA4B,CAAI,AAChE,kBAEE,yBAAoC,CACrC,AACD,kBAEE,2BAAwC,CACzC,AACD,kBAEE,4BAA0C,CAC3C,AACD,kBAEE,0BAAsC,CACvC,AAhBD,QAAgC,mBAA4B,CAAI,AAChE,kBAEE,uBAAoC,CACrC,AACD,kBAEE,yBAAwC,CACzC,AACD,kBAEE,0BAA0C,CAC3C,AACD,kBAEE,wBAAsC,CACvC,AAhBD,QAAgC,yBAA4B,CAAI,AAChE,kBAEE,6BAAoC,CACrC,AACD,kBAEE,+BAAwC,CACzC,AACD,kBAEE,gCAA0C,CAC3C,AACD,kBAEE,8BAAsC,CACvC,AAhBD,QAAgC,wBAA4B,CAAI,AAChE,kBAEE,4BAAoC,CACrC,AACD,kBAEE,8BAAwC,CACzC,AACD,kBAEE,+BAA0C,CAC3C,AACD,kBAEE,6BAAsC,CACvC,AAhBD,QAAgC,sBAA4B,CAAI,AAChE,kBAEE,0BAAoC,CACrC,AACD,kBAEE,4BAAwC,CACzC,AACD,kBAEE,6BAA0C,CAC3C,AACD,kBAEE,2BAAsC,CACvC,AAhBD,QAAgC,wBAA4B,CAAI,AAChE,kBAEE,4BAAoC,CACrC,AACD,kBAEE,8BAAwC,CACzC,AACD,kBAEE,+BAA0C,CAC3C,AACD,kBAEE,6BAAsC,CACvC,AAhBD,QAAgC,sBAA4B,CAAI,AAChE,kBAEE,0BAAoC,CACrC,AACD,kBAEE,4BAAwC,CACzC,AACD,kBAEE,6BAA0C,CAC3C,AACD,kBAEE,2BAAsC,CACvC,AAOD,SAAwB,yBAA2B,CAAI,AACvD,oBAEE,6BAA+B,CAChC,AACD,oBAEE,+BAAiC,CAClC,AACD,oBAEE,gCAAkC,CACnC,AACD,oBAEE,8BAAgC,CACjC,AAhBD,SAAwB,wBAA2B,CAAI,AACvD,oBAEE,4BAA+B,CAChC,AACD,oBAEE,8BAAiC,CAClC,AACD,oBAEE,+BAAkC,CACnC,AACD,oBAEE,6BAAgC,CACjC,AAhBD,SAAwB,sBAA2B,CAAI,AACvD,oBAEE,0BAA+B,CAChC,AACD,oBAEE,4BAAiC,CAClC,AACD,oBAEE,6BAAkC,CACnC,AACD,oBAEE,2BAAgC,CACjC,AAhBD,SAAwB,wBAA2B,CAAI,AACvD,oBAEE,4BAA+B,CAChC,AACD,oBAEE,8BAAiC,CAClC,AACD,oBAEE,+BAAkC,CACnC,AACD,oBAEE,6BAAgC,CACjC,AAhBD,SAAwB,sBAA2B,CAAI,AACvD,oBAEE,0BAA+B,CAChC,AACD,oBAEE,4BAAiC,CAClC,AACD,oBAEE,6BAAkC,CACnC,AACD,oBAEE,2BAAgC,CACjC,AAKL,WAAmB,qBAAuB,CAAI,AAC9C,wBAEE,yBAA2B,CAC5B,AACD,wBAEE,2BAA6B,CAC9B,AACD,wBAEE,4BAA8B,CAC/B,AACD,wBAEE,0BAA4B,CAC7B,CAAA,AChEL,gBAAkB,0GAA8C,CAAI,AAIpE,cAAiB,4BAA8B,CAAI,AACnD,WAAiB,4BAA8B,CAAI,AACnD,aAAiB,4BAA8B,CAAI,AACnD,eCTE,gBAAgB,AAChB,0BAAuB,AAAvB,uBAAuB,AACvB,kBAAmB,CDOsB,AAQvC,WAAwB,yBAA2B,CAAI,AACvD,YAAwB,0BAA4B,CAAI,AACxD,aAAwB,2BAA6B,CAAI,A1DqCzD,yB0DvCA,cAAwB,yBAA2B,CAAI,AACvD,eAAwB,0BAA4B,CAAI,AACxD,gBAAwB,2BAA6B,CAAI,CAAA,A1DqCzD,yB0DvCA,cAAwB,yBAA2B,CAAI,AACvD,eAAwB,0BAA4B,CAAI,AACxD,gBAAwB,2BAA6B,CAAI,CAAA,A1DqCzD,yB0DvCA,cAAwB,yBAA2B,CAAI,AACvD,eAAwB,0BAA4B,CAAI,AACxD,gBAAwB,2BAA6B,CAAI,CAAA,A1DqCzD,0B0DvCA,cAAwB,yBAA2B,CAAI,AACvD,eAAwB,0BAA4B,CAAI,AACxD,gBAAwB,2BAA6B,CAAI,CAAA,AAM7D,gBAAmB,kCAAoC,CAAI,AAC3D,gBAAmB,kCAAoC,CAAI,AAC3D,iBAAmB,mCAAqC,CAAI,AAI5D,mBAAuB,yBAA0C,CAAI,AACrE,qBAAuB,6BAA4C,CAAI,AACvE,oBAAuB,yBAA2C,CAAI,AACtE,kBAAuB,yBAAyC,CAAI,AACpE,oBAAuB,4BAA2C,CAAI,AACtE,aAAuB,2BAA6B,CAAI,AAIxD,YAAc,oBAAwB,CAAI,AEvCxC,cACE,uBAAwB,CACzB,ArESD,0CqELM,uBAA0E,CrEQ/E,AqEdD,gBACE,uBAAwB,CACzB,ArESD,8CqELM,uBAA0E,CrEQ/E,AqEdD,cACE,uBAAwB,CACzB,ArESD,0CqELM,uBAA0E,CrEQ/E,AqEdD,WACE,uBAAwB,CACzB,ArESD,oCqELM,uBAA0E,CrEQ/E,AqEdD,cACE,uBAAwB,CACzB,ArESD,0CqELM,uBAA0E,CrEQ/E,AqEdD,aACE,uBAAwB,CACzB,ArESD,wCqELM,uBAA0E,CrEQ/E,AqEdD,YACE,uBAAwB,CACzB,ArESD,sCqELM,uBAA0E,CrEQ/E,AqEdD,WACE,uBAAwB,CACzB,ArESD,oCqELM,uBAA0E,CrEQ/E,AmE+BH,WAAa,uBAA6B,CAAI,AAC9C,YAAc,uBAA6B,CAAI,AAE/C,eAAiB,kCAAkC,CAAI,AACvD,eAAiB,wCAAkC,CAAI,AAIvD,WGvDE,WAAW,AACX,kBAAkB,AAClB,iBAAiB,AACjB,6BAA6B,AAC7B,QAAS,CHqDV,AAED,sBAAwB,8BAAgC,CAAI,AAE5D,YACE,gCAAiC,AACjC,kCAAoC,CACrC,AAID,YAAc,uBAAyB,CAAI,AIjE3C,SACE,4BAA8B,CAC/B,AAED,WACE,2BAA6B,CAC9B,ACDC,a5EOF,iB4EDM,2BAA4B,AAE5B,kCAA2B,AAA3B,yBAA2B,CAC5B,AAED,YAEI,yBAA0B,CAC3B,AAQH,kBACE,4BAA6B,CAC9B,A5E8LL,I4EhLM,8BAAgC,CACjC,AACD,eAEE,yB3EzCY,A2E0CZ,uBAAwB,CACzB,AAOD,MACE,0BAA2B,CAC5B,AAED,OAEE,uBAAwB,CACzB,AAED,QAGE,UAAU,AACV,QAAS,CACV,AAED,MAEE,sBAAuB,CACxB,AAOD,MACE,O3EwgCgC,CAAA,ADpjCtC,K4E+CM,yBAA2C,CAC5C,AjExFH,WiE0FI,yBAA2C,CAC5C,A5C/EL,Q4CmFM,YAAa,CACd,AvChGL,OuCkGM,qB3EtFS,C2EuFV,A7DpGL,O6DuGM,kCAAoC,CAMrC,AAPD,oBAKI,+BAAmC,CACpC,A7DpEP,sC6D0EQ,kCAAsC,CACvC,A7DUP,Y6DNM,aAAc,CAQf,A5D9HH,2E4D4HM,oB3EvHU,C2EwHX,A7DnBP,sB6DuBM,cAAc,AACd,oB3E7HY,C2E8Hb,CAAA"}
\ No newline at end of file
diff --git a/static/main/css/bootstrap/bootstrap-grid.css b/static/main/css/bootstrap/bootstrap-grid.css
new file mode 100644
index 0000000..f7e13fc
--- /dev/null
+++ b/static/main/css/bootstrap/bootstrap-grid.css
@@ -0,0 +1,3077 @@
+/*!
+ * Bootstrap Grid v4.3.1 (https://getbootstrap.com/)
+ * Copyright 2011-2019 The Bootstrap Authors
+ * Copyright 2011-2019 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+html {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ -ms-overflow-style: scrollbar; }
+
+*,
+*::before,
+*::after {
+ -webkit-box-sizing: inherit;
+ box-sizing: inherit; }
+
+.container {
+ width: 100%;
+ padding-right: 15px;
+ padding-left: 15px;
+ margin-right: auto;
+ margin-left: auto; }
+ @media (min-width: 576px) {
+ .container {
+ max-width: 540px; } }
+ @media (min-width: 768px) {
+ .container {
+ max-width: 720px; } }
+ @media (min-width: 992px) {
+ .container {
+ max-width: 960px; } }
+ @media (min-width: 1200px) {
+ .container {
+ max-width: 1140px; } }
+
+.container-fluid {
+ width: 100%;
+ padding-right: 15px;
+ padding-left: 15px;
+ margin-right: auto;
+ margin-left: auto; }
+
+.row {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-right: -15px;
+ margin-left: -15px; }
+
+.no-gutters {
+ margin-right: 0;
+ margin-left: 0; }
+ .no-gutters > .col,
+ .no-gutters > [class*="col-"] {
+ padding-right: 0;
+ padding-left: 0; }
+
+.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
+.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
+.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
+.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
+.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
+.col-xl-auto {
+ position: relative;
+ width: 100%;
+ padding-right: 15px;
+ padding-left: 15px; }
+
+.col {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%; }
+
+.col-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%; }
+
+.col-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%; }
+
+.col-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%; }
+
+.col-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%; }
+
+.col-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%; }
+
+.col-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%; }
+
+.col-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%; }
+
+.col-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%; }
+
+.col-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%; }
+
+.col-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%; }
+
+.col-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%; }
+
+.col-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%; }
+
+.col-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%; }
+
+.order-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1; }
+
+.order-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13; }
+
+.order-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0; }
+
+.order-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1; }
+
+.order-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2; }
+
+.order-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3; }
+
+.order-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4; }
+
+.order-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5; }
+
+.order-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6; }
+
+.order-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7; }
+
+.order-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8; }
+
+.order-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9; }
+
+.order-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10; }
+
+.order-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11; }
+
+.order-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12; }
+
+.offset-1 {
+ margin-left: 8.33333%; }
+
+.offset-2 {
+ margin-left: 16.66667%; }
+
+.offset-3 {
+ margin-left: 25%; }
+
+.offset-4 {
+ margin-left: 33.33333%; }
+
+.offset-5 {
+ margin-left: 41.66667%; }
+
+.offset-6 {
+ margin-left: 50%; }
+
+.offset-7 {
+ margin-left: 58.33333%; }
+
+.offset-8 {
+ margin-left: 66.66667%; }
+
+.offset-9 {
+ margin-left: 75%; }
+
+.offset-10 {
+ margin-left: 83.33333%; }
+
+.offset-11 {
+ margin-left: 91.66667%; }
+
+@media (min-width: 576px) {
+ .col-sm {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%; }
+ .col-sm-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%; }
+ .col-sm-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%; }
+ .col-sm-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%; }
+ .col-sm-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%; }
+ .col-sm-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%; }
+ .col-sm-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%; }
+ .col-sm-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%; }
+ .col-sm-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%; }
+ .col-sm-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%; }
+ .col-sm-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%; }
+ .col-sm-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%; }
+ .col-sm-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%; }
+ .col-sm-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%; }
+ .order-sm-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1; }
+ .order-sm-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13; }
+ .order-sm-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0; }
+ .order-sm-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1; }
+ .order-sm-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2; }
+ .order-sm-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3; }
+ .order-sm-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4; }
+ .order-sm-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5; }
+ .order-sm-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6; }
+ .order-sm-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7; }
+ .order-sm-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8; }
+ .order-sm-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9; }
+ .order-sm-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10; }
+ .order-sm-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11; }
+ .order-sm-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12; }
+ .offset-sm-0 {
+ margin-left: 0; }
+ .offset-sm-1 {
+ margin-left: 8.33333%; }
+ .offset-sm-2 {
+ margin-left: 16.66667%; }
+ .offset-sm-3 {
+ margin-left: 25%; }
+ .offset-sm-4 {
+ margin-left: 33.33333%; }
+ .offset-sm-5 {
+ margin-left: 41.66667%; }
+ .offset-sm-6 {
+ margin-left: 50%; }
+ .offset-sm-7 {
+ margin-left: 58.33333%; }
+ .offset-sm-8 {
+ margin-left: 66.66667%; }
+ .offset-sm-9 {
+ margin-left: 75%; }
+ .offset-sm-10 {
+ margin-left: 83.33333%; }
+ .offset-sm-11 {
+ margin-left: 91.66667%; } }
+
+@media (min-width: 768px) {
+ .col-md {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%; }
+ .col-md-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%; }
+ .col-md-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%; }
+ .col-md-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%; }
+ .col-md-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%; }
+ .col-md-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%; }
+ .col-md-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%; }
+ .col-md-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%; }
+ .col-md-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%; }
+ .col-md-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%; }
+ .col-md-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%; }
+ .col-md-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%; }
+ .col-md-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%; }
+ .col-md-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%; }
+ .order-md-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1; }
+ .order-md-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13; }
+ .order-md-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0; }
+ .order-md-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1; }
+ .order-md-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2; }
+ .order-md-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3; }
+ .order-md-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4; }
+ .order-md-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5; }
+ .order-md-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6; }
+ .order-md-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7; }
+ .order-md-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8; }
+ .order-md-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9; }
+ .order-md-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10; }
+ .order-md-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11; }
+ .order-md-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12; }
+ .offset-md-0 {
+ margin-left: 0; }
+ .offset-md-1 {
+ margin-left: 8.33333%; }
+ .offset-md-2 {
+ margin-left: 16.66667%; }
+ .offset-md-3 {
+ margin-left: 25%; }
+ .offset-md-4 {
+ margin-left: 33.33333%; }
+ .offset-md-5 {
+ margin-left: 41.66667%; }
+ .offset-md-6 {
+ margin-left: 50%; }
+ .offset-md-7 {
+ margin-left: 58.33333%; }
+ .offset-md-8 {
+ margin-left: 66.66667%; }
+ .offset-md-9 {
+ margin-left: 75%; }
+ .offset-md-10 {
+ margin-left: 83.33333%; }
+ .offset-md-11 {
+ margin-left: 91.66667%; } }
+
+@media (min-width: 992px) {
+ .col-lg {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%; }
+ .col-lg-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%; }
+ .col-lg-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%; }
+ .col-lg-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%; }
+ .col-lg-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%; }
+ .col-lg-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%; }
+ .col-lg-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%; }
+ .col-lg-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%; }
+ .col-lg-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%; }
+ .col-lg-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%; }
+ .col-lg-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%; }
+ .col-lg-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%; }
+ .col-lg-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%; }
+ .col-lg-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%; }
+ .order-lg-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1; }
+ .order-lg-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13; }
+ .order-lg-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0; }
+ .order-lg-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1; }
+ .order-lg-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2; }
+ .order-lg-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3; }
+ .order-lg-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4; }
+ .order-lg-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5; }
+ .order-lg-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6; }
+ .order-lg-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7; }
+ .order-lg-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8; }
+ .order-lg-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9; }
+ .order-lg-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10; }
+ .order-lg-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11; }
+ .order-lg-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12; }
+ .offset-lg-0 {
+ margin-left: 0; }
+ .offset-lg-1 {
+ margin-left: 8.33333%; }
+ .offset-lg-2 {
+ margin-left: 16.66667%; }
+ .offset-lg-3 {
+ margin-left: 25%; }
+ .offset-lg-4 {
+ margin-left: 33.33333%; }
+ .offset-lg-5 {
+ margin-left: 41.66667%; }
+ .offset-lg-6 {
+ margin-left: 50%; }
+ .offset-lg-7 {
+ margin-left: 58.33333%; }
+ .offset-lg-8 {
+ margin-left: 66.66667%; }
+ .offset-lg-9 {
+ margin-left: 75%; }
+ .offset-lg-10 {
+ margin-left: 83.33333%; }
+ .offset-lg-11 {
+ margin-left: 91.66667%; } }
+
+@media (min-width: 1200px) {
+ .col-xl {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%; }
+ .col-xl-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%; }
+ .col-xl-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%; }
+ .col-xl-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%; }
+ .col-xl-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%; }
+ .col-xl-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%; }
+ .col-xl-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%; }
+ .col-xl-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%; }
+ .col-xl-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%; }
+ .col-xl-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%; }
+ .col-xl-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%; }
+ .col-xl-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%; }
+ .col-xl-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%; }
+ .col-xl-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%; }
+ .order-xl-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1; }
+ .order-xl-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13; }
+ .order-xl-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0; }
+ .order-xl-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1; }
+ .order-xl-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2; }
+ .order-xl-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3; }
+ .order-xl-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4; }
+ .order-xl-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5; }
+ .order-xl-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6; }
+ .order-xl-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7; }
+ .order-xl-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8; }
+ .order-xl-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9; }
+ .order-xl-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10; }
+ .order-xl-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11; }
+ .order-xl-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12; }
+ .offset-xl-0 {
+ margin-left: 0; }
+ .offset-xl-1 {
+ margin-left: 8.33333%; }
+ .offset-xl-2 {
+ margin-left: 16.66667%; }
+ .offset-xl-3 {
+ margin-left: 25%; }
+ .offset-xl-4 {
+ margin-left: 33.33333%; }
+ .offset-xl-5 {
+ margin-left: 41.66667%; }
+ .offset-xl-6 {
+ margin-left: 50%; }
+ .offset-xl-7 {
+ margin-left: 58.33333%; }
+ .offset-xl-8 {
+ margin-left: 66.66667%; }
+ .offset-xl-9 {
+ margin-left: 75%; }
+ .offset-xl-10 {
+ margin-left: 83.33333%; }
+ .offset-xl-11 {
+ margin-left: 91.66667%; } }
+
+.d-none {
+ display: none !important; }
+
+.d-inline {
+ display: inline !important; }
+
+.d-inline-block {
+ display: inline-block !important; }
+
+.d-block {
+ display: block !important; }
+
+.d-table {
+ display: table !important; }
+
+.d-table-row {
+ display: table-row !important; }
+
+.d-table-cell {
+ display: table-cell !important; }
+
+.d-flex {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important; }
+
+.d-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important; }
+
+@media (min-width: 576px) {
+ .d-sm-none {
+ display: none !important; }
+ .d-sm-inline {
+ display: inline !important; }
+ .d-sm-inline-block {
+ display: inline-block !important; }
+ .d-sm-block {
+ display: block !important; }
+ .d-sm-table {
+ display: table !important; }
+ .d-sm-table-row {
+ display: table-row !important; }
+ .d-sm-table-cell {
+ display: table-cell !important; }
+ .d-sm-flex {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important; }
+ .d-sm-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important; } }
+
+@media (min-width: 768px) {
+ .d-md-none {
+ display: none !important; }
+ .d-md-inline {
+ display: inline !important; }
+ .d-md-inline-block {
+ display: inline-block !important; }
+ .d-md-block {
+ display: block !important; }
+ .d-md-table {
+ display: table !important; }
+ .d-md-table-row {
+ display: table-row !important; }
+ .d-md-table-cell {
+ display: table-cell !important; }
+ .d-md-flex {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important; }
+ .d-md-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important; } }
+
+@media (min-width: 992px) {
+ .d-lg-none {
+ display: none !important; }
+ .d-lg-inline {
+ display: inline !important; }
+ .d-lg-inline-block {
+ display: inline-block !important; }
+ .d-lg-block {
+ display: block !important; }
+ .d-lg-table {
+ display: table !important; }
+ .d-lg-table-row {
+ display: table-row !important; }
+ .d-lg-table-cell {
+ display: table-cell !important; }
+ .d-lg-flex {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important; }
+ .d-lg-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important; } }
+
+@media (min-width: 1200px) {
+ .d-xl-none {
+ display: none !important; }
+ .d-xl-inline {
+ display: inline !important; }
+ .d-xl-inline-block {
+ display: inline-block !important; }
+ .d-xl-block {
+ display: block !important; }
+ .d-xl-table {
+ display: table !important; }
+ .d-xl-table-row {
+ display: table-row !important; }
+ .d-xl-table-cell {
+ display: table-cell !important; }
+ .d-xl-flex {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important; }
+ .d-xl-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important; } }
+
+@media print {
+ .d-print-none {
+ display: none !important; }
+ .d-print-inline {
+ display: inline !important; }
+ .d-print-inline-block {
+ display: inline-block !important; }
+ .d-print-block {
+ display: block !important; }
+ .d-print-table {
+ display: table !important; }
+ .d-print-table-row {
+ display: table-row !important; }
+ .d-print-table-cell {
+ display: table-cell !important; }
+ .d-print-flex {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important; }
+ .d-print-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important; } }
+
+.flex-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important; }
+
+.flex-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important; }
+
+.flex-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important; }
+
+.flex-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important; }
+
+.flex-wrap {
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important; }
+
+.flex-nowrap {
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important; }
+
+.flex-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important; }
+
+.flex-fill {
+ -webkit-box-flex: 1 !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important; }
+
+.flex-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important; }
+
+.flex-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important; }
+
+.flex-shrink-0 {
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important; }
+
+.flex-shrink-1 {
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important; }
+
+.justify-content-start {
+ -webkit-box-pack: start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important; }
+
+.justify-content-end {
+ -webkit-box-pack: end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important; }
+
+.justify-content-center {
+ -webkit-box-pack: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important; }
+
+.justify-content-between {
+ -webkit-box-pack: justify !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important; }
+
+.justify-content-around {
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important; }
+
+.align-items-start {
+ -webkit-box-align: start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important; }
+
+.align-items-end {
+ -webkit-box-align: end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important; }
+
+.align-items-center {
+ -webkit-box-align: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important; }
+
+.align-items-baseline {
+ -webkit-box-align: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important; }
+
+.align-items-stretch {
+ -webkit-box-align: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important; }
+
+.align-content-start {
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important; }
+
+.align-content-end {
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important; }
+
+.align-content-center {
+ -ms-flex-line-pack: center !important;
+ align-content: center !important; }
+
+.align-content-between {
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important; }
+
+.align-content-around {
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important; }
+
+.align-content-stretch {
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important; }
+
+.align-self-auto {
+ -ms-flex-item-align: auto !important;
+ -ms-grid-row-align: auto !important;
+ align-self: auto !important; }
+
+.align-self-start {
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important; }
+
+.align-self-end {
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important; }
+
+.align-self-center {
+ -ms-flex-item-align: center !important;
+ -ms-grid-row-align: center !important;
+ align-self: center !important; }
+
+.align-self-baseline {
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important; }
+
+.align-self-stretch {
+ -ms-flex-item-align: stretch !important;
+ -ms-grid-row-align: stretch !important;
+ align-self: stretch !important; }
+
+@media (min-width: 576px) {
+ .flex-sm-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important; }
+ .flex-sm-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important; }
+ .flex-sm-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important; }
+ .flex-sm-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important; }
+ .flex-sm-wrap {
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important; }
+ .flex-sm-nowrap {
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important; }
+ .flex-sm-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important; }
+ .flex-sm-fill {
+ -webkit-box-flex: 1 !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important; }
+ .flex-sm-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important; }
+ .flex-sm-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important; }
+ .flex-sm-shrink-0 {
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important; }
+ .flex-sm-shrink-1 {
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important; }
+ .justify-content-sm-start {
+ -webkit-box-pack: start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important; }
+ .justify-content-sm-end {
+ -webkit-box-pack: end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important; }
+ .justify-content-sm-center {
+ -webkit-box-pack: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important; }
+ .justify-content-sm-between {
+ -webkit-box-pack: justify !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important; }
+ .justify-content-sm-around {
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important; }
+ .align-items-sm-start {
+ -webkit-box-align: start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important; }
+ .align-items-sm-end {
+ -webkit-box-align: end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important; }
+ .align-items-sm-center {
+ -webkit-box-align: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important; }
+ .align-items-sm-baseline {
+ -webkit-box-align: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important; }
+ .align-items-sm-stretch {
+ -webkit-box-align: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important; }
+ .align-content-sm-start {
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important; }
+ .align-content-sm-end {
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important; }
+ .align-content-sm-center {
+ -ms-flex-line-pack: center !important;
+ align-content: center !important; }
+ .align-content-sm-between {
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important; }
+ .align-content-sm-around {
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important; }
+ .align-content-sm-stretch {
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important; }
+ .align-self-sm-auto {
+ -ms-flex-item-align: auto !important;
+ -ms-grid-row-align: auto !important;
+ align-self: auto !important; }
+ .align-self-sm-start {
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important; }
+ .align-self-sm-end {
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important; }
+ .align-self-sm-center {
+ -ms-flex-item-align: center !important;
+ -ms-grid-row-align: center !important;
+ align-self: center !important; }
+ .align-self-sm-baseline {
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important; }
+ .align-self-sm-stretch {
+ -ms-flex-item-align: stretch !important;
+ -ms-grid-row-align: stretch !important;
+ align-self: stretch !important; } }
+
+@media (min-width: 768px) {
+ .flex-md-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important; }
+ .flex-md-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important; }
+ .flex-md-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important; }
+ .flex-md-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important; }
+ .flex-md-wrap {
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important; }
+ .flex-md-nowrap {
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important; }
+ .flex-md-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important; }
+ .flex-md-fill {
+ -webkit-box-flex: 1 !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important; }
+ .flex-md-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important; }
+ .flex-md-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important; }
+ .flex-md-shrink-0 {
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important; }
+ .flex-md-shrink-1 {
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important; }
+ .justify-content-md-start {
+ -webkit-box-pack: start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important; }
+ .justify-content-md-end {
+ -webkit-box-pack: end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important; }
+ .justify-content-md-center {
+ -webkit-box-pack: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important; }
+ .justify-content-md-between {
+ -webkit-box-pack: justify !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important; }
+ .justify-content-md-around {
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important; }
+ .align-items-md-start {
+ -webkit-box-align: start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important; }
+ .align-items-md-end {
+ -webkit-box-align: end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important; }
+ .align-items-md-center {
+ -webkit-box-align: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important; }
+ .align-items-md-baseline {
+ -webkit-box-align: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important; }
+ .align-items-md-stretch {
+ -webkit-box-align: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important; }
+ .align-content-md-start {
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important; }
+ .align-content-md-end {
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important; }
+ .align-content-md-center {
+ -ms-flex-line-pack: center !important;
+ align-content: center !important; }
+ .align-content-md-between {
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important; }
+ .align-content-md-around {
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important; }
+ .align-content-md-stretch {
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important; }
+ .align-self-md-auto {
+ -ms-flex-item-align: auto !important;
+ -ms-grid-row-align: auto !important;
+ align-self: auto !important; }
+ .align-self-md-start {
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important; }
+ .align-self-md-end {
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important; }
+ .align-self-md-center {
+ -ms-flex-item-align: center !important;
+ -ms-grid-row-align: center !important;
+ align-self: center !important; }
+ .align-self-md-baseline {
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important; }
+ .align-self-md-stretch {
+ -ms-flex-item-align: stretch !important;
+ -ms-grid-row-align: stretch !important;
+ align-self: stretch !important; } }
+
+@media (min-width: 992px) {
+ .flex-lg-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important; }
+ .flex-lg-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important; }
+ .flex-lg-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important; }
+ .flex-lg-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important; }
+ .flex-lg-wrap {
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important; }
+ .flex-lg-nowrap {
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important; }
+ .flex-lg-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important; }
+ .flex-lg-fill {
+ -webkit-box-flex: 1 !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important; }
+ .flex-lg-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important; }
+ .flex-lg-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important; }
+ .flex-lg-shrink-0 {
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important; }
+ .flex-lg-shrink-1 {
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important; }
+ .justify-content-lg-start {
+ -webkit-box-pack: start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important; }
+ .justify-content-lg-end {
+ -webkit-box-pack: end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important; }
+ .justify-content-lg-center {
+ -webkit-box-pack: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important; }
+ .justify-content-lg-between {
+ -webkit-box-pack: justify !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important; }
+ .justify-content-lg-around {
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important; }
+ .align-items-lg-start {
+ -webkit-box-align: start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important; }
+ .align-items-lg-end {
+ -webkit-box-align: end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important; }
+ .align-items-lg-center {
+ -webkit-box-align: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important; }
+ .align-items-lg-baseline {
+ -webkit-box-align: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important; }
+ .align-items-lg-stretch {
+ -webkit-box-align: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important; }
+ .align-content-lg-start {
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important; }
+ .align-content-lg-end {
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important; }
+ .align-content-lg-center {
+ -ms-flex-line-pack: center !important;
+ align-content: center !important; }
+ .align-content-lg-between {
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important; }
+ .align-content-lg-around {
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important; }
+ .align-content-lg-stretch {
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important; }
+ .align-self-lg-auto {
+ -ms-flex-item-align: auto !important;
+ -ms-grid-row-align: auto !important;
+ align-self: auto !important; }
+ .align-self-lg-start {
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important; }
+ .align-self-lg-end {
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important; }
+ .align-self-lg-center {
+ -ms-flex-item-align: center !important;
+ -ms-grid-row-align: center !important;
+ align-self: center !important; }
+ .align-self-lg-baseline {
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important; }
+ .align-self-lg-stretch {
+ -ms-flex-item-align: stretch !important;
+ -ms-grid-row-align: stretch !important;
+ align-self: stretch !important; } }
+
+@media (min-width: 1200px) {
+ .flex-xl-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important; }
+ .flex-xl-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important; }
+ .flex-xl-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important; }
+ .flex-xl-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important; }
+ .flex-xl-wrap {
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important; }
+ .flex-xl-nowrap {
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important; }
+ .flex-xl-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important; }
+ .flex-xl-fill {
+ -webkit-box-flex: 1 !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important; }
+ .flex-xl-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important; }
+ .flex-xl-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important; }
+ .flex-xl-shrink-0 {
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important; }
+ .flex-xl-shrink-1 {
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important; }
+ .justify-content-xl-start {
+ -webkit-box-pack: start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important; }
+ .justify-content-xl-end {
+ -webkit-box-pack: end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important; }
+ .justify-content-xl-center {
+ -webkit-box-pack: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important; }
+ .justify-content-xl-between {
+ -webkit-box-pack: justify !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important; }
+ .justify-content-xl-around {
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important; }
+ .align-items-xl-start {
+ -webkit-box-align: start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important; }
+ .align-items-xl-end {
+ -webkit-box-align: end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important; }
+ .align-items-xl-center {
+ -webkit-box-align: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important; }
+ .align-items-xl-baseline {
+ -webkit-box-align: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important; }
+ .align-items-xl-stretch {
+ -webkit-box-align: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important; }
+ .align-content-xl-start {
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important; }
+ .align-content-xl-end {
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important; }
+ .align-content-xl-center {
+ -ms-flex-line-pack: center !important;
+ align-content: center !important; }
+ .align-content-xl-between {
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important; }
+ .align-content-xl-around {
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important; }
+ .align-content-xl-stretch {
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important; }
+ .align-self-xl-auto {
+ -ms-flex-item-align: auto !important;
+ -ms-grid-row-align: auto !important;
+ align-self: auto !important; }
+ .align-self-xl-start {
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important; }
+ .align-self-xl-end {
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important; }
+ .align-self-xl-center {
+ -ms-flex-item-align: center !important;
+ -ms-grid-row-align: center !important;
+ align-self: center !important; }
+ .align-self-xl-baseline {
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important; }
+ .align-self-xl-stretch {
+ -ms-flex-item-align: stretch !important;
+ -ms-grid-row-align: stretch !important;
+ align-self: stretch !important; } }
+
+.m-0 {
+ margin: 0 !important; }
+
+.mt-0,
+.my-0 {
+ margin-top: 0 !important; }
+
+.mr-0,
+.mx-0 {
+ margin-right: 0 !important; }
+
+.mb-0,
+.my-0 {
+ margin-bottom: 0 !important; }
+
+.ml-0,
+.mx-0 {
+ margin-left: 0 !important; }
+
+.m-1 {
+ margin: 0.25rem !important; }
+
+.mt-1,
+.my-1 {
+ margin-top: 0.25rem !important; }
+
+.mr-1,
+.mx-1 {
+ margin-right: 0.25rem !important; }
+
+.mb-1,
+.my-1 {
+ margin-bottom: 0.25rem !important; }
+
+.ml-1,
+.mx-1 {
+ margin-left: 0.25rem !important; }
+
+.m-2 {
+ margin: 0.5rem !important; }
+
+.mt-2,
+.my-2 {
+ margin-top: 0.5rem !important; }
+
+.mr-2,
+.mx-2 {
+ margin-right: 0.5rem !important; }
+
+.mb-2,
+.my-2 {
+ margin-bottom: 0.5rem !important; }
+
+.ml-2,
+.mx-2 {
+ margin-left: 0.5rem !important; }
+
+.m-3 {
+ margin: 1rem !important; }
+
+.mt-3,
+.my-3 {
+ margin-top: 1rem !important; }
+
+.mr-3,
+.mx-3 {
+ margin-right: 1rem !important; }
+
+.mb-3,
+.my-3 {
+ margin-bottom: 1rem !important; }
+
+.ml-3,
+.mx-3 {
+ margin-left: 1rem !important; }
+
+.m-4 {
+ margin: 1.5rem !important; }
+
+.mt-4,
+.my-4 {
+ margin-top: 1.5rem !important; }
+
+.mr-4,
+.mx-4 {
+ margin-right: 1.5rem !important; }
+
+.mb-4,
+.my-4 {
+ margin-bottom: 1.5rem !important; }
+
+.ml-4,
+.mx-4 {
+ margin-left: 1.5rem !important; }
+
+.m-5 {
+ margin: 3rem !important; }
+
+.mt-5,
+.my-5 {
+ margin-top: 3rem !important; }
+
+.mr-5,
+.mx-5 {
+ margin-right: 3rem !important; }
+
+.mb-5,
+.my-5 {
+ margin-bottom: 3rem !important; }
+
+.ml-5,
+.mx-5 {
+ margin-left: 3rem !important; }
+
+.p-0 {
+ padding: 0 !important; }
+
+.pt-0,
+.py-0 {
+ padding-top: 0 !important; }
+
+.pr-0,
+.px-0 {
+ padding-right: 0 !important; }
+
+.pb-0,
+.py-0 {
+ padding-bottom: 0 !important; }
+
+.pl-0,
+.px-0 {
+ padding-left: 0 !important; }
+
+.p-1 {
+ padding: 0.25rem !important; }
+
+.pt-1,
+.py-1 {
+ padding-top: 0.25rem !important; }
+
+.pr-1,
+.px-1 {
+ padding-right: 0.25rem !important; }
+
+.pb-1,
+.py-1 {
+ padding-bottom: 0.25rem !important; }
+
+.pl-1,
+.px-1 {
+ padding-left: 0.25rem !important; }
+
+.p-2 {
+ padding: 0.5rem !important; }
+
+.pt-2,
+.py-2 {
+ padding-top: 0.5rem !important; }
+
+.pr-2,
+.px-2 {
+ padding-right: 0.5rem !important; }
+
+.pb-2,
+.py-2 {
+ padding-bottom: 0.5rem !important; }
+
+.pl-2,
+.px-2 {
+ padding-left: 0.5rem !important; }
+
+.p-3 {
+ padding: 1rem !important; }
+
+.pt-3,
+.py-3 {
+ padding-top: 1rem !important; }
+
+.pr-3,
+.px-3 {
+ padding-right: 1rem !important; }
+
+.pb-3,
+.py-3 {
+ padding-bottom: 1rem !important; }
+
+.pl-3,
+.px-3 {
+ padding-left: 1rem !important; }
+
+.p-4 {
+ padding: 1.5rem !important; }
+
+.pt-4,
+.py-4 {
+ padding-top: 1.5rem !important; }
+
+.pr-4,
+.px-4 {
+ padding-right: 1.5rem !important; }
+
+.pb-4,
+.py-4 {
+ padding-bottom: 1.5rem !important; }
+
+.pl-4,
+.px-4 {
+ padding-left: 1.5rem !important; }
+
+.p-5 {
+ padding: 3rem !important; }
+
+.pt-5,
+.py-5 {
+ padding-top: 3rem !important; }
+
+.pr-5,
+.px-5 {
+ padding-right: 3rem !important; }
+
+.pb-5,
+.py-5 {
+ padding-bottom: 3rem !important; }
+
+.pl-5,
+.px-5 {
+ padding-left: 3rem !important; }
+
+.m-n1 {
+ margin: -0.25rem !important; }
+
+.mt-n1,
+.my-n1 {
+ margin-top: -0.25rem !important; }
+
+.mr-n1,
+.mx-n1 {
+ margin-right: -0.25rem !important; }
+
+.mb-n1,
+.my-n1 {
+ margin-bottom: -0.25rem !important; }
+
+.ml-n1,
+.mx-n1 {
+ margin-left: -0.25rem !important; }
+
+.m-n2 {
+ margin: -0.5rem !important; }
+
+.mt-n2,
+.my-n2 {
+ margin-top: -0.5rem !important; }
+
+.mr-n2,
+.mx-n2 {
+ margin-right: -0.5rem !important; }
+
+.mb-n2,
+.my-n2 {
+ margin-bottom: -0.5rem !important; }
+
+.ml-n2,
+.mx-n2 {
+ margin-left: -0.5rem !important; }
+
+.m-n3 {
+ margin: -1rem !important; }
+
+.mt-n3,
+.my-n3 {
+ margin-top: -1rem !important; }
+
+.mr-n3,
+.mx-n3 {
+ margin-right: -1rem !important; }
+
+.mb-n3,
+.my-n3 {
+ margin-bottom: -1rem !important; }
+
+.ml-n3,
+.mx-n3 {
+ margin-left: -1rem !important; }
+
+.m-n4 {
+ margin: -1.5rem !important; }
+
+.mt-n4,
+.my-n4 {
+ margin-top: -1.5rem !important; }
+
+.mr-n4,
+.mx-n4 {
+ margin-right: -1.5rem !important; }
+
+.mb-n4,
+.my-n4 {
+ margin-bottom: -1.5rem !important; }
+
+.ml-n4,
+.mx-n4 {
+ margin-left: -1.5rem !important; }
+
+.m-n5 {
+ margin: -3rem !important; }
+
+.mt-n5,
+.my-n5 {
+ margin-top: -3rem !important; }
+
+.mr-n5,
+.mx-n5 {
+ margin-right: -3rem !important; }
+
+.mb-n5,
+.my-n5 {
+ margin-bottom: -3rem !important; }
+
+.ml-n5,
+.mx-n5 {
+ margin-left: -3rem !important; }
+
+.m-auto {
+ margin: auto !important; }
+
+.mt-auto,
+.my-auto {
+ margin-top: auto !important; }
+
+.mr-auto,
+.mx-auto {
+ margin-right: auto !important; }
+
+.mb-auto,
+.my-auto {
+ margin-bottom: auto !important; }
+
+.ml-auto,
+.mx-auto {
+ margin-left: auto !important; }
+
+@media (min-width: 576px) {
+ .m-sm-0 {
+ margin: 0 !important; }
+ .mt-sm-0,
+ .my-sm-0 {
+ margin-top: 0 !important; }
+ .mr-sm-0,
+ .mx-sm-0 {
+ margin-right: 0 !important; }
+ .mb-sm-0,
+ .my-sm-0 {
+ margin-bottom: 0 !important; }
+ .ml-sm-0,
+ .mx-sm-0 {
+ margin-left: 0 !important; }
+ .m-sm-1 {
+ margin: 0.25rem !important; }
+ .mt-sm-1,
+ .my-sm-1 {
+ margin-top: 0.25rem !important; }
+ .mr-sm-1,
+ .mx-sm-1 {
+ margin-right: 0.25rem !important; }
+ .mb-sm-1,
+ .my-sm-1 {
+ margin-bottom: 0.25rem !important; }
+ .ml-sm-1,
+ .mx-sm-1 {
+ margin-left: 0.25rem !important; }
+ .m-sm-2 {
+ margin: 0.5rem !important; }
+ .mt-sm-2,
+ .my-sm-2 {
+ margin-top: 0.5rem !important; }
+ .mr-sm-2,
+ .mx-sm-2 {
+ margin-right: 0.5rem !important; }
+ .mb-sm-2,
+ .my-sm-2 {
+ margin-bottom: 0.5rem !important; }
+ .ml-sm-2,
+ .mx-sm-2 {
+ margin-left: 0.5rem !important; }
+ .m-sm-3 {
+ margin: 1rem !important; }
+ .mt-sm-3,
+ .my-sm-3 {
+ margin-top: 1rem !important; }
+ .mr-sm-3,
+ .mx-sm-3 {
+ margin-right: 1rem !important; }
+ .mb-sm-3,
+ .my-sm-3 {
+ margin-bottom: 1rem !important; }
+ .ml-sm-3,
+ .mx-sm-3 {
+ margin-left: 1rem !important; }
+ .m-sm-4 {
+ margin: 1.5rem !important; }
+ .mt-sm-4,
+ .my-sm-4 {
+ margin-top: 1.5rem !important; }
+ .mr-sm-4,
+ .mx-sm-4 {
+ margin-right: 1.5rem !important; }
+ .mb-sm-4,
+ .my-sm-4 {
+ margin-bottom: 1.5rem !important; }
+ .ml-sm-4,
+ .mx-sm-4 {
+ margin-left: 1.5rem !important; }
+ .m-sm-5 {
+ margin: 3rem !important; }
+ .mt-sm-5,
+ .my-sm-5 {
+ margin-top: 3rem !important; }
+ .mr-sm-5,
+ .mx-sm-5 {
+ margin-right: 3rem !important; }
+ .mb-sm-5,
+ .my-sm-5 {
+ margin-bottom: 3rem !important; }
+ .ml-sm-5,
+ .mx-sm-5 {
+ margin-left: 3rem !important; }
+ .p-sm-0 {
+ padding: 0 !important; }
+ .pt-sm-0,
+ .py-sm-0 {
+ padding-top: 0 !important; }
+ .pr-sm-0,
+ .px-sm-0 {
+ padding-right: 0 !important; }
+ .pb-sm-0,
+ .py-sm-0 {
+ padding-bottom: 0 !important; }
+ .pl-sm-0,
+ .px-sm-0 {
+ padding-left: 0 !important; }
+ .p-sm-1 {
+ padding: 0.25rem !important; }
+ .pt-sm-1,
+ .py-sm-1 {
+ padding-top: 0.25rem !important; }
+ .pr-sm-1,
+ .px-sm-1 {
+ padding-right: 0.25rem !important; }
+ .pb-sm-1,
+ .py-sm-1 {
+ padding-bottom: 0.25rem !important; }
+ .pl-sm-1,
+ .px-sm-1 {
+ padding-left: 0.25rem !important; }
+ .p-sm-2 {
+ padding: 0.5rem !important; }
+ .pt-sm-2,
+ .py-sm-2 {
+ padding-top: 0.5rem !important; }
+ .pr-sm-2,
+ .px-sm-2 {
+ padding-right: 0.5rem !important; }
+ .pb-sm-2,
+ .py-sm-2 {
+ padding-bottom: 0.5rem !important; }
+ .pl-sm-2,
+ .px-sm-2 {
+ padding-left: 0.5rem !important; }
+ .p-sm-3 {
+ padding: 1rem !important; }
+ .pt-sm-3,
+ .py-sm-3 {
+ padding-top: 1rem !important; }
+ .pr-sm-3,
+ .px-sm-3 {
+ padding-right: 1rem !important; }
+ .pb-sm-3,
+ .py-sm-3 {
+ padding-bottom: 1rem !important; }
+ .pl-sm-3,
+ .px-sm-3 {
+ padding-left: 1rem !important; }
+ .p-sm-4 {
+ padding: 1.5rem !important; }
+ .pt-sm-4,
+ .py-sm-4 {
+ padding-top: 1.5rem !important; }
+ .pr-sm-4,
+ .px-sm-4 {
+ padding-right: 1.5rem !important; }
+ .pb-sm-4,
+ .py-sm-4 {
+ padding-bottom: 1.5rem !important; }
+ .pl-sm-4,
+ .px-sm-4 {
+ padding-left: 1.5rem !important; }
+ .p-sm-5 {
+ padding: 3rem !important; }
+ .pt-sm-5,
+ .py-sm-5 {
+ padding-top: 3rem !important; }
+ .pr-sm-5,
+ .px-sm-5 {
+ padding-right: 3rem !important; }
+ .pb-sm-5,
+ .py-sm-5 {
+ padding-bottom: 3rem !important; }
+ .pl-sm-5,
+ .px-sm-5 {
+ padding-left: 3rem !important; }
+ .m-sm-n1 {
+ margin: -0.25rem !important; }
+ .mt-sm-n1,
+ .my-sm-n1 {
+ margin-top: -0.25rem !important; }
+ .mr-sm-n1,
+ .mx-sm-n1 {
+ margin-right: -0.25rem !important; }
+ .mb-sm-n1,
+ .my-sm-n1 {
+ margin-bottom: -0.25rem !important; }
+ .ml-sm-n1,
+ .mx-sm-n1 {
+ margin-left: -0.25rem !important; }
+ .m-sm-n2 {
+ margin: -0.5rem !important; }
+ .mt-sm-n2,
+ .my-sm-n2 {
+ margin-top: -0.5rem !important; }
+ .mr-sm-n2,
+ .mx-sm-n2 {
+ margin-right: -0.5rem !important; }
+ .mb-sm-n2,
+ .my-sm-n2 {
+ margin-bottom: -0.5rem !important; }
+ .ml-sm-n2,
+ .mx-sm-n2 {
+ margin-left: -0.5rem !important; }
+ .m-sm-n3 {
+ margin: -1rem !important; }
+ .mt-sm-n3,
+ .my-sm-n3 {
+ margin-top: -1rem !important; }
+ .mr-sm-n3,
+ .mx-sm-n3 {
+ margin-right: -1rem !important; }
+ .mb-sm-n3,
+ .my-sm-n3 {
+ margin-bottom: -1rem !important; }
+ .ml-sm-n3,
+ .mx-sm-n3 {
+ margin-left: -1rem !important; }
+ .m-sm-n4 {
+ margin: -1.5rem !important; }
+ .mt-sm-n4,
+ .my-sm-n4 {
+ margin-top: -1.5rem !important; }
+ .mr-sm-n4,
+ .mx-sm-n4 {
+ margin-right: -1.5rem !important; }
+ .mb-sm-n4,
+ .my-sm-n4 {
+ margin-bottom: -1.5rem !important; }
+ .ml-sm-n4,
+ .mx-sm-n4 {
+ margin-left: -1.5rem !important; }
+ .m-sm-n5 {
+ margin: -3rem !important; }
+ .mt-sm-n5,
+ .my-sm-n5 {
+ margin-top: -3rem !important; }
+ .mr-sm-n5,
+ .mx-sm-n5 {
+ margin-right: -3rem !important; }
+ .mb-sm-n5,
+ .my-sm-n5 {
+ margin-bottom: -3rem !important; }
+ .ml-sm-n5,
+ .mx-sm-n5 {
+ margin-left: -3rem !important; }
+ .m-sm-auto {
+ margin: auto !important; }
+ .mt-sm-auto,
+ .my-sm-auto {
+ margin-top: auto !important; }
+ .mr-sm-auto,
+ .mx-sm-auto {
+ margin-right: auto !important; }
+ .mb-sm-auto,
+ .my-sm-auto {
+ margin-bottom: auto !important; }
+ .ml-sm-auto,
+ .mx-sm-auto {
+ margin-left: auto !important; } }
+
+@media (min-width: 768px) {
+ .m-md-0 {
+ margin: 0 !important; }
+ .mt-md-0,
+ .my-md-0 {
+ margin-top: 0 !important; }
+ .mr-md-0,
+ .mx-md-0 {
+ margin-right: 0 !important; }
+ .mb-md-0,
+ .my-md-0 {
+ margin-bottom: 0 !important; }
+ .ml-md-0,
+ .mx-md-0 {
+ margin-left: 0 !important; }
+ .m-md-1 {
+ margin: 0.25rem !important; }
+ .mt-md-1,
+ .my-md-1 {
+ margin-top: 0.25rem !important; }
+ .mr-md-1,
+ .mx-md-1 {
+ margin-right: 0.25rem !important; }
+ .mb-md-1,
+ .my-md-1 {
+ margin-bottom: 0.25rem !important; }
+ .ml-md-1,
+ .mx-md-1 {
+ margin-left: 0.25rem !important; }
+ .m-md-2 {
+ margin: 0.5rem !important; }
+ .mt-md-2,
+ .my-md-2 {
+ margin-top: 0.5rem !important; }
+ .mr-md-2,
+ .mx-md-2 {
+ margin-right: 0.5rem !important; }
+ .mb-md-2,
+ .my-md-2 {
+ margin-bottom: 0.5rem !important; }
+ .ml-md-2,
+ .mx-md-2 {
+ margin-left: 0.5rem !important; }
+ .m-md-3 {
+ margin: 1rem !important; }
+ .mt-md-3,
+ .my-md-3 {
+ margin-top: 1rem !important; }
+ .mr-md-3,
+ .mx-md-3 {
+ margin-right: 1rem !important; }
+ .mb-md-3,
+ .my-md-3 {
+ margin-bottom: 1rem !important; }
+ .ml-md-3,
+ .mx-md-3 {
+ margin-left: 1rem !important; }
+ .m-md-4 {
+ margin: 1.5rem !important; }
+ .mt-md-4,
+ .my-md-4 {
+ margin-top: 1.5rem !important; }
+ .mr-md-4,
+ .mx-md-4 {
+ margin-right: 1.5rem !important; }
+ .mb-md-4,
+ .my-md-4 {
+ margin-bottom: 1.5rem !important; }
+ .ml-md-4,
+ .mx-md-4 {
+ margin-left: 1.5rem !important; }
+ .m-md-5 {
+ margin: 3rem !important; }
+ .mt-md-5,
+ .my-md-5 {
+ margin-top: 3rem !important; }
+ .mr-md-5,
+ .mx-md-5 {
+ margin-right: 3rem !important; }
+ .mb-md-5,
+ .my-md-5 {
+ margin-bottom: 3rem !important; }
+ .ml-md-5,
+ .mx-md-5 {
+ margin-left: 3rem !important; }
+ .p-md-0 {
+ padding: 0 !important; }
+ .pt-md-0,
+ .py-md-0 {
+ padding-top: 0 !important; }
+ .pr-md-0,
+ .px-md-0 {
+ padding-right: 0 !important; }
+ .pb-md-0,
+ .py-md-0 {
+ padding-bottom: 0 !important; }
+ .pl-md-0,
+ .px-md-0 {
+ padding-left: 0 !important; }
+ .p-md-1 {
+ padding: 0.25rem !important; }
+ .pt-md-1,
+ .py-md-1 {
+ padding-top: 0.25rem !important; }
+ .pr-md-1,
+ .px-md-1 {
+ padding-right: 0.25rem !important; }
+ .pb-md-1,
+ .py-md-1 {
+ padding-bottom: 0.25rem !important; }
+ .pl-md-1,
+ .px-md-1 {
+ padding-left: 0.25rem !important; }
+ .p-md-2 {
+ padding: 0.5rem !important; }
+ .pt-md-2,
+ .py-md-2 {
+ padding-top: 0.5rem !important; }
+ .pr-md-2,
+ .px-md-2 {
+ padding-right: 0.5rem !important; }
+ .pb-md-2,
+ .py-md-2 {
+ padding-bottom: 0.5rem !important; }
+ .pl-md-2,
+ .px-md-2 {
+ padding-left: 0.5rem !important; }
+ .p-md-3 {
+ padding: 1rem !important; }
+ .pt-md-3,
+ .py-md-3 {
+ padding-top: 1rem !important; }
+ .pr-md-3,
+ .px-md-3 {
+ padding-right: 1rem !important; }
+ .pb-md-3,
+ .py-md-3 {
+ padding-bottom: 1rem !important; }
+ .pl-md-3,
+ .px-md-3 {
+ padding-left: 1rem !important; }
+ .p-md-4 {
+ padding: 1.5rem !important; }
+ .pt-md-4,
+ .py-md-4 {
+ padding-top: 1.5rem !important; }
+ .pr-md-4,
+ .px-md-4 {
+ padding-right: 1.5rem !important; }
+ .pb-md-4,
+ .py-md-4 {
+ padding-bottom: 1.5rem !important; }
+ .pl-md-4,
+ .px-md-4 {
+ padding-left: 1.5rem !important; }
+ .p-md-5 {
+ padding: 3rem !important; }
+ .pt-md-5,
+ .py-md-5 {
+ padding-top: 3rem !important; }
+ .pr-md-5,
+ .px-md-5 {
+ padding-right: 3rem !important; }
+ .pb-md-5,
+ .py-md-5 {
+ padding-bottom: 3rem !important; }
+ .pl-md-5,
+ .px-md-5 {
+ padding-left: 3rem !important; }
+ .m-md-n1 {
+ margin: -0.25rem !important; }
+ .mt-md-n1,
+ .my-md-n1 {
+ margin-top: -0.25rem !important; }
+ .mr-md-n1,
+ .mx-md-n1 {
+ margin-right: -0.25rem !important; }
+ .mb-md-n1,
+ .my-md-n1 {
+ margin-bottom: -0.25rem !important; }
+ .ml-md-n1,
+ .mx-md-n1 {
+ margin-left: -0.25rem !important; }
+ .m-md-n2 {
+ margin: -0.5rem !important; }
+ .mt-md-n2,
+ .my-md-n2 {
+ margin-top: -0.5rem !important; }
+ .mr-md-n2,
+ .mx-md-n2 {
+ margin-right: -0.5rem !important; }
+ .mb-md-n2,
+ .my-md-n2 {
+ margin-bottom: -0.5rem !important; }
+ .ml-md-n2,
+ .mx-md-n2 {
+ margin-left: -0.5rem !important; }
+ .m-md-n3 {
+ margin: -1rem !important; }
+ .mt-md-n3,
+ .my-md-n3 {
+ margin-top: -1rem !important; }
+ .mr-md-n3,
+ .mx-md-n3 {
+ margin-right: -1rem !important; }
+ .mb-md-n3,
+ .my-md-n3 {
+ margin-bottom: -1rem !important; }
+ .ml-md-n3,
+ .mx-md-n3 {
+ margin-left: -1rem !important; }
+ .m-md-n4 {
+ margin: -1.5rem !important; }
+ .mt-md-n4,
+ .my-md-n4 {
+ margin-top: -1.5rem !important; }
+ .mr-md-n4,
+ .mx-md-n4 {
+ margin-right: -1.5rem !important; }
+ .mb-md-n4,
+ .my-md-n4 {
+ margin-bottom: -1.5rem !important; }
+ .ml-md-n4,
+ .mx-md-n4 {
+ margin-left: -1.5rem !important; }
+ .m-md-n5 {
+ margin: -3rem !important; }
+ .mt-md-n5,
+ .my-md-n5 {
+ margin-top: -3rem !important; }
+ .mr-md-n5,
+ .mx-md-n5 {
+ margin-right: -3rem !important; }
+ .mb-md-n5,
+ .my-md-n5 {
+ margin-bottom: -3rem !important; }
+ .ml-md-n5,
+ .mx-md-n5 {
+ margin-left: -3rem !important; }
+ .m-md-auto {
+ margin: auto !important; }
+ .mt-md-auto,
+ .my-md-auto {
+ margin-top: auto !important; }
+ .mr-md-auto,
+ .mx-md-auto {
+ margin-right: auto !important; }
+ .mb-md-auto,
+ .my-md-auto {
+ margin-bottom: auto !important; }
+ .ml-md-auto,
+ .mx-md-auto {
+ margin-left: auto !important; } }
+
+@media (min-width: 992px) {
+ .m-lg-0 {
+ margin: 0 !important; }
+ .mt-lg-0,
+ .my-lg-0 {
+ margin-top: 0 !important; }
+ .mr-lg-0,
+ .mx-lg-0 {
+ margin-right: 0 !important; }
+ .mb-lg-0,
+ .my-lg-0 {
+ margin-bottom: 0 !important; }
+ .ml-lg-0,
+ .mx-lg-0 {
+ margin-left: 0 !important; }
+ .m-lg-1 {
+ margin: 0.25rem !important; }
+ .mt-lg-1,
+ .my-lg-1 {
+ margin-top: 0.25rem !important; }
+ .mr-lg-1,
+ .mx-lg-1 {
+ margin-right: 0.25rem !important; }
+ .mb-lg-1,
+ .my-lg-1 {
+ margin-bottom: 0.25rem !important; }
+ .ml-lg-1,
+ .mx-lg-1 {
+ margin-left: 0.25rem !important; }
+ .m-lg-2 {
+ margin: 0.5rem !important; }
+ .mt-lg-2,
+ .my-lg-2 {
+ margin-top: 0.5rem !important; }
+ .mr-lg-2,
+ .mx-lg-2 {
+ margin-right: 0.5rem !important; }
+ .mb-lg-2,
+ .my-lg-2 {
+ margin-bottom: 0.5rem !important; }
+ .ml-lg-2,
+ .mx-lg-2 {
+ margin-left: 0.5rem !important; }
+ .m-lg-3 {
+ margin: 1rem !important; }
+ .mt-lg-3,
+ .my-lg-3 {
+ margin-top: 1rem !important; }
+ .mr-lg-3,
+ .mx-lg-3 {
+ margin-right: 1rem !important; }
+ .mb-lg-3,
+ .my-lg-3 {
+ margin-bottom: 1rem !important; }
+ .ml-lg-3,
+ .mx-lg-3 {
+ margin-left: 1rem !important; }
+ .m-lg-4 {
+ margin: 1.5rem !important; }
+ .mt-lg-4,
+ .my-lg-4 {
+ margin-top: 1.5rem !important; }
+ .mr-lg-4,
+ .mx-lg-4 {
+ margin-right: 1.5rem !important; }
+ .mb-lg-4,
+ .my-lg-4 {
+ margin-bottom: 1.5rem !important; }
+ .ml-lg-4,
+ .mx-lg-4 {
+ margin-left: 1.5rem !important; }
+ .m-lg-5 {
+ margin: 3rem !important; }
+ .mt-lg-5,
+ .my-lg-5 {
+ margin-top: 3rem !important; }
+ .mr-lg-5,
+ .mx-lg-5 {
+ margin-right: 3rem !important; }
+ .mb-lg-5,
+ .my-lg-5 {
+ margin-bottom: 3rem !important; }
+ .ml-lg-5,
+ .mx-lg-5 {
+ margin-left: 3rem !important; }
+ .p-lg-0 {
+ padding: 0 !important; }
+ .pt-lg-0,
+ .py-lg-0 {
+ padding-top: 0 !important; }
+ .pr-lg-0,
+ .px-lg-0 {
+ padding-right: 0 !important; }
+ .pb-lg-0,
+ .py-lg-0 {
+ padding-bottom: 0 !important; }
+ .pl-lg-0,
+ .px-lg-0 {
+ padding-left: 0 !important; }
+ .p-lg-1 {
+ padding: 0.25rem !important; }
+ .pt-lg-1,
+ .py-lg-1 {
+ padding-top: 0.25rem !important; }
+ .pr-lg-1,
+ .px-lg-1 {
+ padding-right: 0.25rem !important; }
+ .pb-lg-1,
+ .py-lg-1 {
+ padding-bottom: 0.25rem !important; }
+ .pl-lg-1,
+ .px-lg-1 {
+ padding-left: 0.25rem !important; }
+ .p-lg-2 {
+ padding: 0.5rem !important; }
+ .pt-lg-2,
+ .py-lg-2 {
+ padding-top: 0.5rem !important; }
+ .pr-lg-2,
+ .px-lg-2 {
+ padding-right: 0.5rem !important; }
+ .pb-lg-2,
+ .py-lg-2 {
+ padding-bottom: 0.5rem !important; }
+ .pl-lg-2,
+ .px-lg-2 {
+ padding-left: 0.5rem !important; }
+ .p-lg-3 {
+ padding: 1rem !important; }
+ .pt-lg-3,
+ .py-lg-3 {
+ padding-top: 1rem !important; }
+ .pr-lg-3,
+ .px-lg-3 {
+ padding-right: 1rem !important; }
+ .pb-lg-3,
+ .py-lg-3 {
+ padding-bottom: 1rem !important; }
+ .pl-lg-3,
+ .px-lg-3 {
+ padding-left: 1rem !important; }
+ .p-lg-4 {
+ padding: 1.5rem !important; }
+ .pt-lg-4,
+ .py-lg-4 {
+ padding-top: 1.5rem !important; }
+ .pr-lg-4,
+ .px-lg-4 {
+ padding-right: 1.5rem !important; }
+ .pb-lg-4,
+ .py-lg-4 {
+ padding-bottom: 1.5rem !important; }
+ .pl-lg-4,
+ .px-lg-4 {
+ padding-left: 1.5rem !important; }
+ .p-lg-5 {
+ padding: 3rem !important; }
+ .pt-lg-5,
+ .py-lg-5 {
+ padding-top: 3rem !important; }
+ .pr-lg-5,
+ .px-lg-5 {
+ padding-right: 3rem !important; }
+ .pb-lg-5,
+ .py-lg-5 {
+ padding-bottom: 3rem !important; }
+ .pl-lg-5,
+ .px-lg-5 {
+ padding-left: 3rem !important; }
+ .m-lg-n1 {
+ margin: -0.25rem !important; }
+ .mt-lg-n1,
+ .my-lg-n1 {
+ margin-top: -0.25rem !important; }
+ .mr-lg-n1,
+ .mx-lg-n1 {
+ margin-right: -0.25rem !important; }
+ .mb-lg-n1,
+ .my-lg-n1 {
+ margin-bottom: -0.25rem !important; }
+ .ml-lg-n1,
+ .mx-lg-n1 {
+ margin-left: -0.25rem !important; }
+ .m-lg-n2 {
+ margin: -0.5rem !important; }
+ .mt-lg-n2,
+ .my-lg-n2 {
+ margin-top: -0.5rem !important; }
+ .mr-lg-n2,
+ .mx-lg-n2 {
+ margin-right: -0.5rem !important; }
+ .mb-lg-n2,
+ .my-lg-n2 {
+ margin-bottom: -0.5rem !important; }
+ .ml-lg-n2,
+ .mx-lg-n2 {
+ margin-left: -0.5rem !important; }
+ .m-lg-n3 {
+ margin: -1rem !important; }
+ .mt-lg-n3,
+ .my-lg-n3 {
+ margin-top: -1rem !important; }
+ .mr-lg-n3,
+ .mx-lg-n3 {
+ margin-right: -1rem !important; }
+ .mb-lg-n3,
+ .my-lg-n3 {
+ margin-bottom: -1rem !important; }
+ .ml-lg-n3,
+ .mx-lg-n3 {
+ margin-left: -1rem !important; }
+ .m-lg-n4 {
+ margin: -1.5rem !important; }
+ .mt-lg-n4,
+ .my-lg-n4 {
+ margin-top: -1.5rem !important; }
+ .mr-lg-n4,
+ .mx-lg-n4 {
+ margin-right: -1.5rem !important; }
+ .mb-lg-n4,
+ .my-lg-n4 {
+ margin-bottom: -1.5rem !important; }
+ .ml-lg-n4,
+ .mx-lg-n4 {
+ margin-left: -1.5rem !important; }
+ .m-lg-n5 {
+ margin: -3rem !important; }
+ .mt-lg-n5,
+ .my-lg-n5 {
+ margin-top: -3rem !important; }
+ .mr-lg-n5,
+ .mx-lg-n5 {
+ margin-right: -3rem !important; }
+ .mb-lg-n5,
+ .my-lg-n5 {
+ margin-bottom: -3rem !important; }
+ .ml-lg-n5,
+ .mx-lg-n5 {
+ margin-left: -3rem !important; }
+ .m-lg-auto {
+ margin: auto !important; }
+ .mt-lg-auto,
+ .my-lg-auto {
+ margin-top: auto !important; }
+ .mr-lg-auto,
+ .mx-lg-auto {
+ margin-right: auto !important; }
+ .mb-lg-auto,
+ .my-lg-auto {
+ margin-bottom: auto !important; }
+ .ml-lg-auto,
+ .mx-lg-auto {
+ margin-left: auto !important; } }
+
+@media (min-width: 1200px) {
+ .m-xl-0 {
+ margin: 0 !important; }
+ .mt-xl-0,
+ .my-xl-0 {
+ margin-top: 0 !important; }
+ .mr-xl-0,
+ .mx-xl-0 {
+ margin-right: 0 !important; }
+ .mb-xl-0,
+ .my-xl-0 {
+ margin-bottom: 0 !important; }
+ .ml-xl-0,
+ .mx-xl-0 {
+ margin-left: 0 !important; }
+ .m-xl-1 {
+ margin: 0.25rem !important; }
+ .mt-xl-1,
+ .my-xl-1 {
+ margin-top: 0.25rem !important; }
+ .mr-xl-1,
+ .mx-xl-1 {
+ margin-right: 0.25rem !important; }
+ .mb-xl-1,
+ .my-xl-1 {
+ margin-bottom: 0.25rem !important; }
+ .ml-xl-1,
+ .mx-xl-1 {
+ margin-left: 0.25rem !important; }
+ .m-xl-2 {
+ margin: 0.5rem !important; }
+ .mt-xl-2,
+ .my-xl-2 {
+ margin-top: 0.5rem !important; }
+ .mr-xl-2,
+ .mx-xl-2 {
+ margin-right: 0.5rem !important; }
+ .mb-xl-2,
+ .my-xl-2 {
+ margin-bottom: 0.5rem !important; }
+ .ml-xl-2,
+ .mx-xl-2 {
+ margin-left: 0.5rem !important; }
+ .m-xl-3 {
+ margin: 1rem !important; }
+ .mt-xl-3,
+ .my-xl-3 {
+ margin-top: 1rem !important; }
+ .mr-xl-3,
+ .mx-xl-3 {
+ margin-right: 1rem !important; }
+ .mb-xl-3,
+ .my-xl-3 {
+ margin-bottom: 1rem !important; }
+ .ml-xl-3,
+ .mx-xl-3 {
+ margin-left: 1rem !important; }
+ .m-xl-4 {
+ margin: 1.5rem !important; }
+ .mt-xl-4,
+ .my-xl-4 {
+ margin-top: 1.5rem !important; }
+ .mr-xl-4,
+ .mx-xl-4 {
+ margin-right: 1.5rem !important; }
+ .mb-xl-4,
+ .my-xl-4 {
+ margin-bottom: 1.5rem !important; }
+ .ml-xl-4,
+ .mx-xl-4 {
+ margin-left: 1.5rem !important; }
+ .m-xl-5 {
+ margin: 3rem !important; }
+ .mt-xl-5,
+ .my-xl-5 {
+ margin-top: 3rem !important; }
+ .mr-xl-5,
+ .mx-xl-5 {
+ margin-right: 3rem !important; }
+ .mb-xl-5,
+ .my-xl-5 {
+ margin-bottom: 3rem !important; }
+ .ml-xl-5,
+ .mx-xl-5 {
+ margin-left: 3rem !important; }
+ .p-xl-0 {
+ padding: 0 !important; }
+ .pt-xl-0,
+ .py-xl-0 {
+ padding-top: 0 !important; }
+ .pr-xl-0,
+ .px-xl-0 {
+ padding-right: 0 !important; }
+ .pb-xl-0,
+ .py-xl-0 {
+ padding-bottom: 0 !important; }
+ .pl-xl-0,
+ .px-xl-0 {
+ padding-left: 0 !important; }
+ .p-xl-1 {
+ padding: 0.25rem !important; }
+ .pt-xl-1,
+ .py-xl-1 {
+ padding-top: 0.25rem !important; }
+ .pr-xl-1,
+ .px-xl-1 {
+ padding-right: 0.25rem !important; }
+ .pb-xl-1,
+ .py-xl-1 {
+ padding-bottom: 0.25rem !important; }
+ .pl-xl-1,
+ .px-xl-1 {
+ padding-left: 0.25rem !important; }
+ .p-xl-2 {
+ padding: 0.5rem !important; }
+ .pt-xl-2,
+ .py-xl-2 {
+ padding-top: 0.5rem !important; }
+ .pr-xl-2,
+ .px-xl-2 {
+ padding-right: 0.5rem !important; }
+ .pb-xl-2,
+ .py-xl-2 {
+ padding-bottom: 0.5rem !important; }
+ .pl-xl-2,
+ .px-xl-2 {
+ padding-left: 0.5rem !important; }
+ .p-xl-3 {
+ padding: 1rem !important; }
+ .pt-xl-3,
+ .py-xl-3 {
+ padding-top: 1rem !important; }
+ .pr-xl-3,
+ .px-xl-3 {
+ padding-right: 1rem !important; }
+ .pb-xl-3,
+ .py-xl-3 {
+ padding-bottom: 1rem !important; }
+ .pl-xl-3,
+ .px-xl-3 {
+ padding-left: 1rem !important; }
+ .p-xl-4 {
+ padding: 1.5rem !important; }
+ .pt-xl-4,
+ .py-xl-4 {
+ padding-top: 1.5rem !important; }
+ .pr-xl-4,
+ .px-xl-4 {
+ padding-right: 1.5rem !important; }
+ .pb-xl-4,
+ .py-xl-4 {
+ padding-bottom: 1.5rem !important; }
+ .pl-xl-4,
+ .px-xl-4 {
+ padding-left: 1.5rem !important; }
+ .p-xl-5 {
+ padding: 3rem !important; }
+ .pt-xl-5,
+ .py-xl-5 {
+ padding-top: 3rem !important; }
+ .pr-xl-5,
+ .px-xl-5 {
+ padding-right: 3rem !important; }
+ .pb-xl-5,
+ .py-xl-5 {
+ padding-bottom: 3rem !important; }
+ .pl-xl-5,
+ .px-xl-5 {
+ padding-left: 3rem !important; }
+ .m-xl-n1 {
+ margin: -0.25rem !important; }
+ .mt-xl-n1,
+ .my-xl-n1 {
+ margin-top: -0.25rem !important; }
+ .mr-xl-n1,
+ .mx-xl-n1 {
+ margin-right: -0.25rem !important; }
+ .mb-xl-n1,
+ .my-xl-n1 {
+ margin-bottom: -0.25rem !important; }
+ .ml-xl-n1,
+ .mx-xl-n1 {
+ margin-left: -0.25rem !important; }
+ .m-xl-n2 {
+ margin: -0.5rem !important; }
+ .mt-xl-n2,
+ .my-xl-n2 {
+ margin-top: -0.5rem !important; }
+ .mr-xl-n2,
+ .mx-xl-n2 {
+ margin-right: -0.5rem !important; }
+ .mb-xl-n2,
+ .my-xl-n2 {
+ margin-bottom: -0.5rem !important; }
+ .ml-xl-n2,
+ .mx-xl-n2 {
+ margin-left: -0.5rem !important; }
+ .m-xl-n3 {
+ margin: -1rem !important; }
+ .mt-xl-n3,
+ .my-xl-n3 {
+ margin-top: -1rem !important; }
+ .mr-xl-n3,
+ .mx-xl-n3 {
+ margin-right: -1rem !important; }
+ .mb-xl-n3,
+ .my-xl-n3 {
+ margin-bottom: -1rem !important; }
+ .ml-xl-n3,
+ .mx-xl-n3 {
+ margin-left: -1rem !important; }
+ .m-xl-n4 {
+ margin: -1.5rem !important; }
+ .mt-xl-n4,
+ .my-xl-n4 {
+ margin-top: -1.5rem !important; }
+ .mr-xl-n4,
+ .mx-xl-n4 {
+ margin-right: -1.5rem !important; }
+ .mb-xl-n4,
+ .my-xl-n4 {
+ margin-bottom: -1.5rem !important; }
+ .ml-xl-n4,
+ .mx-xl-n4 {
+ margin-left: -1.5rem !important; }
+ .m-xl-n5 {
+ margin: -3rem !important; }
+ .mt-xl-n5,
+ .my-xl-n5 {
+ margin-top: -3rem !important; }
+ .mr-xl-n5,
+ .mx-xl-n5 {
+ margin-right: -3rem !important; }
+ .mb-xl-n5,
+ .my-xl-n5 {
+ margin-bottom: -3rem !important; }
+ .ml-xl-n5,
+ .mx-xl-n5 {
+ margin-left: -3rem !important; }
+ .m-xl-auto {
+ margin: auto !important; }
+ .mt-xl-auto,
+ .my-xl-auto {
+ margin-top: auto !important; }
+ .mr-xl-auto,
+ .mx-xl-auto {
+ margin-right: auto !important; }
+ .mb-xl-auto,
+ .my-xl-auto {
+ margin-bottom: auto !important; }
+ .ml-xl-auto,
+ .mx-xl-auto {
+ margin-left: auto !important; } }
diff --git a/static/main/css/bootstrap/bootstrap-reboot.css b/static/main/css/bootstrap/bootstrap-reboot.css
new file mode 100644
index 0000000..f7db0bd
--- /dev/null
+++ b/static/main/css/bootstrap/bootstrap-reboot.css
@@ -0,0 +1,272 @@
+/*!
+ * Bootstrap Reboot v4.3.1 (https://getbootstrap.com/)
+ * Copyright 2011-2019 The Bootstrap Authors
+ * Copyright 2011-2019 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
+ */
+*,
+*::before,
+*::after {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box; }
+
+html {
+ font-family: sans-serif;
+ line-height: 1.15;
+ -webkit-text-size-adjust: 100%;
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
+
+article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
+ display: block; }
+
+body {
+ margin: 0;
+ font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #212529;
+ text-align: left;
+ background-color: #fff; }
+
+[tabindex="-1"]:focus {
+ outline: 0 !important; }
+
+hr {
+ -webkit-box-sizing: content-box;
+ box-sizing: content-box;
+ height: 0;
+ overflow: visible; }
+
+h1, h2, h3, h4, h5, h6 {
+ margin-top: 0;
+ margin-bottom: 0.5rem; }
+
+p {
+ margin-top: 0;
+ margin-bottom: 1rem; }
+
+abbr[title],
+abbr[data-original-title] {
+ text-decoration: underline;
+ -webkit-text-decoration: underline dotted;
+ text-decoration: underline dotted;
+ cursor: help;
+ border-bottom: 0;
+ text-decoration-skip-ink: none; }
+
+address {
+ margin-bottom: 1rem;
+ font-style: normal;
+ line-height: inherit; }
+
+ol,
+ul,
+dl {
+ margin-top: 0;
+ margin-bottom: 1rem; }
+
+ol ol,
+ul ul,
+ol ul,
+ul ol {
+ margin-bottom: 0; }
+
+dt {
+ font-weight: 700; }
+
+dd {
+ margin-bottom: .5rem;
+ margin-left: 0; }
+
+blockquote {
+ margin: 0 0 1rem; }
+
+b,
+strong {
+ font-weight: bolder; }
+
+small {
+ font-size: 80%; }
+
+sub,
+sup {
+ position: relative;
+ font-size: 75%;
+ line-height: 0;
+ vertical-align: baseline; }
+
+sub {
+ bottom: -.25em; }
+
+sup {
+ top: -.5em; }
+
+a {
+ color: #C2E54F;
+ text-decoration: none;
+ background-color: transparent; }
+ a:hover {
+ color: #a2ca1e;
+ text-decoration: underline; }
+
+a:not([href]):not([tabindex]) {
+ color: inherit;
+ text-decoration: none; }
+ a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
+ color: inherit;
+ text-decoration: none; }
+ a:not([href]):not([tabindex]):focus {
+ outline: 0; }
+
+pre,
+code,
+kbd,
+samp {
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+ font-size: 1em; }
+
+pre {
+ margin-top: 0;
+ margin-bottom: 1rem;
+ overflow: auto; }
+
+figure {
+ margin: 0 0 1rem; }
+
+img {
+ vertical-align: middle;
+ border-style: none; }
+
+svg {
+ overflow: hidden;
+ vertical-align: middle; }
+
+table {
+ border-collapse: collapse; }
+
+caption {
+ padding-top: 0.75rem;
+ padding-bottom: 0.75rem;
+ color: #6c757d;
+ text-align: left;
+ caption-side: bottom; }
+
+th {
+ text-align: inherit; }
+
+label {
+ display: inline-block;
+ margin-bottom: 0.5rem; }
+
+button {
+ border-radius: 0; }
+
+button:focus {
+ outline: 1px dotted;
+ outline: 5px auto -webkit-focus-ring-color; }
+
+input,
+button,
+select,
+optgroup,
+textarea {
+ margin: 0;
+ font-family: inherit;
+ font-size: inherit;
+ line-height: inherit; }
+
+button,
+input {
+ overflow: visible; }
+
+button,
+select {
+ text-transform: none; }
+
+select {
+ word-wrap: normal; }
+
+button,
+[type="button"],
+[type="reset"],
+[type="submit"] {
+ -webkit-appearance: button; }
+
+button:not(:disabled),
+[type="button"]:not(:disabled),
+[type="reset"]:not(:disabled),
+[type="submit"]:not(:disabled) {
+ cursor: pointer; }
+
+button::-moz-focus-inner,
+[type="button"]::-moz-focus-inner,
+[type="reset"]::-moz-focus-inner,
+[type="submit"]::-moz-focus-inner {
+ padding: 0;
+ border-style: none; }
+
+input[type="radio"],
+input[type="checkbox"] {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 0; }
+
+input[type="date"],
+input[type="time"],
+input[type="datetime-local"],
+input[type="month"] {
+ -webkit-appearance: listbox; }
+
+textarea {
+ overflow: auto;
+ resize: vertical; }
+
+fieldset {
+ min-width: 0;
+ padding: 0;
+ margin: 0;
+ border: 0; }
+
+legend {
+ display: block;
+ width: 100%;
+ max-width: 100%;
+ padding: 0;
+ margin-bottom: .5rem;
+ font-size: 1.5rem;
+ line-height: inherit;
+ color: inherit;
+ white-space: normal; }
+
+progress {
+ vertical-align: baseline; }
+
+[type="number"]::-webkit-inner-spin-button,
+[type="number"]::-webkit-outer-spin-button {
+ height: auto; }
+
+[type="search"] {
+ outline-offset: -2px;
+ -webkit-appearance: none; }
+
+[type="search"]::-webkit-search-decoration {
+ -webkit-appearance: none; }
+
+::-webkit-file-upload-button {
+ font: inherit;
+ -webkit-appearance: button; }
+
+output {
+ display: inline-block; }
+
+summary {
+ display: list-item;
+ cursor: pointer; }
+
+template {
+ display: none; }
+
+[hidden] {
+ display: none !important; }
diff --git a/static/main/css/bootstrap/bootstrap.css b/static/main/css/bootstrap/bootstrap.css
new file mode 100644
index 0000000..770b101
--- /dev/null
+++ b/static/main/css/bootstrap/bootstrap.css
@@ -0,0 +1,8133 @@
+/*!
+ * Bootstrap v4.3.1 (https://getbootstrap.com/)
+ * Copyright 2011-2019 The Bootstrap Authors
+ * Copyright 2011-2019 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+:root {
+ --blue: #007bff;
+ --indigo: #6610f2;
+ --purple: #6f42c1;
+ --pink: #e83e8c;
+ --red: #dc3545;
+ --orange: #fd5f00;
+ --yellow: #ffc107;
+ --green: #71bc42;
+ --teal: #20c997;
+ --cyan: #17a2b8;
+ --white: #fff;
+ --gray: #6c757d;
+ --gray-dark: #343a40;
+ --primary: #C2E54F;
+ --secondary: #6c757d;
+ --success: #71bc42;
+ --info: #17a2b8;
+ --warning: #ffc107;
+ --danger: #dc3545;
+ --light: #f8f9fa;
+ --dark: #343a40;
+ --breakpoint-xs: 0;
+ --breakpoint-sm: 576px;
+ --breakpoint-md: 768px;
+ --breakpoint-lg: 992px;
+ --breakpoint-xl: 1200px;
+ --font-family-sans-serif: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+ --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
+
+*,
+*::before,
+*::after {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box; }
+
+html {
+ font-family: sans-serif;
+ line-height: 1.15;
+ -webkit-text-size-adjust: 100%;
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
+
+article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
+ display: block; }
+
+body {
+ margin: 0;
+ font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #212529;
+ text-align: left;
+ background-color: #fff; }
+
+[tabindex="-1"]:focus {
+ outline: 0 !important; }
+
+hr {
+ -webkit-box-sizing: content-box;
+ box-sizing: content-box;
+ height: 0;
+ overflow: visible; }
+
+h1, h2, h3, h4, h5, h6 {
+ margin-top: 0;
+ margin-bottom: 0.5rem; }
+
+p {
+ margin-top: 0;
+ margin-bottom: 1rem; }
+
+abbr[title],
+abbr[data-original-title] {
+ text-decoration: underline;
+ -webkit-text-decoration: underline dotted;
+ text-decoration: underline dotted;
+ cursor: help;
+ border-bottom: 0;
+ text-decoration-skip-ink: none; }
+
+address {
+ margin-bottom: 1rem;
+ font-style: normal;
+ line-height: inherit; }
+
+ol,
+ul,
+dl {
+ margin-top: 0;
+ margin-bottom: 1rem; }
+
+ol ol,
+ul ul,
+ol ul,
+ul ol {
+ margin-bottom: 0; }
+
+dt {
+ font-weight: 700; }
+
+dd {
+ margin-bottom: .5rem;
+ margin-left: 0; }
+
+blockquote {
+ margin: 0 0 1rem; }
+
+b,
+strong {
+ font-weight: bolder; }
+
+small {
+ font-size: 80%; }
+
+sub,
+sup {
+ position: relative;
+ font-size: 75%;
+ line-height: 0;
+ vertical-align: baseline; }
+
+sub {
+ bottom: -.25em; }
+
+sup {
+ top: -.5em; }
+
+a {
+ color: #C2E54F;
+ text-decoration: none;
+ background-color: transparent; }
+ a:hover {
+ color: #a2ca1e;
+ text-decoration: underline; }
+
+a:not([href]):not([tabindex]) {
+ color: inherit;
+ text-decoration: none; }
+ a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
+ color: inherit;
+ text-decoration: none; }
+ a:not([href]):not([tabindex]):focus {
+ outline: 0; }
+
+pre,
+code,
+kbd,
+samp {
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+ font-size: 1em; }
+
+pre {
+ margin-top: 0;
+ margin-bottom: 1rem;
+ overflow: auto; }
+
+figure {
+ margin: 0 0 1rem; }
+
+img {
+ vertical-align: middle;
+ border-style: none; }
+
+svg {
+ overflow: hidden;
+ vertical-align: middle; }
+
+table {
+ border-collapse: collapse; }
+
+caption {
+ padding-top: 0.75rem;
+ padding-bottom: 0.75rem;
+ color: #6c757d;
+ text-align: left;
+ caption-side: bottom; }
+
+th {
+ text-align: inherit; }
+
+label {
+ display: inline-block;
+ margin-bottom: 0.5rem; }
+
+button {
+ border-radius: 0; }
+
+button:focus {
+ outline: 1px dotted;
+ outline: 5px auto -webkit-focus-ring-color; }
+
+input,
+button,
+select,
+optgroup,
+textarea {
+ margin: 0;
+ font-family: inherit;
+ font-size: inherit;
+ line-height: inherit; }
+
+button,
+input {
+ overflow: visible; }
+
+button,
+select {
+ text-transform: none; }
+
+select {
+ word-wrap: normal; }
+
+button,
+[type="button"],
+[type="reset"],
+[type="submit"] {
+ -webkit-appearance: button; }
+
+button:not(:disabled),
+[type="button"]:not(:disabled),
+[type="reset"]:not(:disabled),
+[type="submit"]:not(:disabled) {
+ cursor: pointer; }
+
+button::-moz-focus-inner,
+[type="button"]::-moz-focus-inner,
+[type="reset"]::-moz-focus-inner,
+[type="submit"]::-moz-focus-inner {
+ padding: 0;
+ border-style: none; }
+
+input[type="radio"],
+input[type="checkbox"] {
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 0; }
+
+input[type="date"],
+input[type="time"],
+input[type="datetime-local"],
+input[type="month"] {
+ -webkit-appearance: listbox; }
+
+textarea {
+ overflow: auto;
+ resize: vertical; }
+
+fieldset {
+ min-width: 0;
+ padding: 0;
+ margin: 0;
+ border: 0; }
+
+legend {
+ display: block;
+ width: 100%;
+ max-width: 100%;
+ padding: 0;
+ margin-bottom: .5rem;
+ font-size: 1.5rem;
+ line-height: inherit;
+ color: inherit;
+ white-space: normal; }
+
+progress {
+ vertical-align: baseline; }
+
+[type="number"]::-webkit-inner-spin-button,
+[type="number"]::-webkit-outer-spin-button {
+ height: auto; }
+
+[type="search"] {
+ outline-offset: -2px;
+ -webkit-appearance: none; }
+
+[type="search"]::-webkit-search-decoration {
+ -webkit-appearance: none; }
+
+::-webkit-file-upload-button {
+ font: inherit;
+ -webkit-appearance: button; }
+
+output {
+ display: inline-block; }
+
+summary {
+ display: list-item;
+ cursor: pointer; }
+
+template {
+ display: none; }
+
+[hidden] {
+ display: none !important; }
+
+h1, h2, h3, h4, h5, h6,
+.h1, .h2, .h3, .h4, .h5, .h6 {
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ line-height: 1.2; }
+
+h1, .h1 {
+ font-size: 2.5rem; }
+
+h2, .h2 {
+ font-size: 2rem; }
+
+h3, .h3 {
+ font-size: 1.75rem; }
+
+h4, .h4 {
+ font-size: 1.5rem; }
+
+h5, .h5 {
+ font-size: 1.25rem; }
+
+h6, .h6 {
+ font-size: 1rem; }
+
+.lead {
+ font-size: 1.25rem;
+ font-weight: 300; }
+
+.display-1 {
+ font-size: 6rem;
+ font-weight: 300;
+ line-height: 1.2; }
+
+.display-2 {
+ font-size: 5.5rem;
+ font-weight: 300;
+ line-height: 1.2; }
+
+.display-3 {
+ font-size: 4.5rem;
+ font-weight: 300;
+ line-height: 1.2; }
+
+.display-4 {
+ font-size: 3.5rem;
+ font-weight: 300;
+ line-height: 1.2; }
+
+hr {
+ margin-top: 1rem;
+ margin-bottom: 1rem;
+ border: 0;
+ border-top: 1px solid rgba(0, 0, 0, 0.1); }
+
+small,
+.small {
+ font-size: 80%;
+ font-weight: 400; }
+
+mark,
+.mark {
+ padding: 0.2em;
+ background-color: #fcf8e3; }
+
+.list-unstyled {
+ padding-left: 0;
+ list-style: none; }
+
+.list-inline {
+ padding-left: 0;
+ list-style: none; }
+
+.list-inline-item {
+ display: inline-block; }
+ .list-inline-item:not(:last-child) {
+ margin-right: 0.5rem; }
+
+.initialism {
+ font-size: 90%;
+ text-transform: uppercase; }
+
+.blockquote {
+ margin-bottom: 1rem;
+ font-size: 1.25rem; }
+
+.blockquote-footer {
+ display: block;
+ font-size: 80%;
+ color: #6c757d; }
+ .blockquote-footer::before {
+ content: "\2014\00A0"; }
+
+.img-fluid {
+ max-width: 100%;
+ height: auto; }
+
+.img-thumbnail {
+ padding: 0.25rem;
+ background-color: #fff;
+ border: 1px solid #dee2e6;
+ border-radius: 0.25rem;
+ max-width: 100%;
+ height: auto; }
+
+.figure {
+ display: inline-block; }
+
+.figure-img {
+ margin-bottom: 0.5rem;
+ line-height: 1; }
+
+.figure-caption {
+ font-size: 90%;
+ color: #6c757d; }
+
+code {
+ font-size: 87.5%;
+ color: #e83e8c;
+ word-break: break-word; }
+ a > code {
+ color: inherit; }
+
+kbd {
+ padding: 0.2rem 0.4rem;
+ font-size: 87.5%;
+ color: #fff;
+ background-color: #212529;
+ border-radius: 0.2rem; }
+ kbd kbd {
+ padding: 0;
+ font-size: 100%;
+ font-weight: 700; }
+
+pre {
+ display: block;
+ font-size: 87.5%;
+ color: #212529; }
+ pre code {
+ font-size: inherit;
+ color: inherit;
+ word-break: normal; }
+
+.pre-scrollable {
+ max-height: 340px;
+ overflow-y: scroll; }
+
+.container {
+ width: 100%;
+ padding-right: 15px;
+ padding-left: 15px;
+ margin-right: auto;
+ margin-left: auto; }
+ @media (min-width: 576px) {
+ .container {
+ max-width: 540px; } }
+ @media (min-width: 768px) {
+ .container {
+ max-width: 720px; } }
+ @media (min-width: 992px) {
+ .container {
+ max-width: 960px; } }
+ @media (min-width: 1200px) {
+ .container {
+ max-width: 1140px; } }
+
+.container-fluid {
+ width: 100%;
+ padding-right: 15px;
+ padding-left: 15px;
+ margin-right: auto;
+ margin-left: auto; }
+
+.row {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-right: -15px;
+ margin-left: -15px; }
+
+.no-gutters {
+ margin-right: 0;
+ margin-left: 0; }
+ .no-gutters > .col,
+ .no-gutters > [class*="col-"] {
+ padding-right: 0;
+ padding-left: 0; }
+
+.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
+.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
+.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
+.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
+.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
+.col-xl-auto {
+ position: relative;
+ width: 100%;
+ padding-right: 15px;
+ padding-left: 15px; }
+
+.col {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%; }
+
+.col-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%; }
+
+.col-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%; }
+
+.col-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%; }
+
+.col-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%; }
+
+.col-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%; }
+
+.col-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%; }
+
+.col-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%; }
+
+.col-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%; }
+
+.col-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%; }
+
+.col-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%; }
+
+.col-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%; }
+
+.col-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%; }
+
+.col-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%; }
+
+.order-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1; }
+
+.order-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13; }
+
+.order-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0; }
+
+.order-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1; }
+
+.order-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2; }
+
+.order-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3; }
+
+.order-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4; }
+
+.order-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5; }
+
+.order-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6; }
+
+.order-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7; }
+
+.order-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8; }
+
+.order-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9; }
+
+.order-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10; }
+
+.order-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11; }
+
+.order-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12; }
+
+.offset-1 {
+ margin-left: 8.33333%; }
+
+.offset-2 {
+ margin-left: 16.66667%; }
+
+.offset-3 {
+ margin-left: 25%; }
+
+.offset-4 {
+ margin-left: 33.33333%; }
+
+.offset-5 {
+ margin-left: 41.66667%; }
+
+.offset-6 {
+ margin-left: 50%; }
+
+.offset-7 {
+ margin-left: 58.33333%; }
+
+.offset-8 {
+ margin-left: 66.66667%; }
+
+.offset-9 {
+ margin-left: 75%; }
+
+.offset-10 {
+ margin-left: 83.33333%; }
+
+.offset-11 {
+ margin-left: 91.66667%; }
+
+@media (min-width: 576px) {
+ .col-sm {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%; }
+ .col-sm-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%; }
+ .col-sm-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%; }
+ .col-sm-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%; }
+ .col-sm-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%; }
+ .col-sm-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%; }
+ .col-sm-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%; }
+ .col-sm-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%; }
+ .col-sm-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%; }
+ .col-sm-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%; }
+ .col-sm-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%; }
+ .col-sm-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%; }
+ .col-sm-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%; }
+ .col-sm-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%; }
+ .order-sm-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1; }
+ .order-sm-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13; }
+ .order-sm-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0; }
+ .order-sm-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1; }
+ .order-sm-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2; }
+ .order-sm-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3; }
+ .order-sm-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4; }
+ .order-sm-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5; }
+ .order-sm-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6; }
+ .order-sm-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7; }
+ .order-sm-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8; }
+ .order-sm-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9; }
+ .order-sm-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10; }
+ .order-sm-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11; }
+ .order-sm-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12; }
+ .offset-sm-0 {
+ margin-left: 0; }
+ .offset-sm-1 {
+ margin-left: 8.33333%; }
+ .offset-sm-2 {
+ margin-left: 16.66667%; }
+ .offset-sm-3 {
+ margin-left: 25%; }
+ .offset-sm-4 {
+ margin-left: 33.33333%; }
+ .offset-sm-5 {
+ margin-left: 41.66667%; }
+ .offset-sm-6 {
+ margin-left: 50%; }
+ .offset-sm-7 {
+ margin-left: 58.33333%; }
+ .offset-sm-8 {
+ margin-left: 66.66667%; }
+ .offset-sm-9 {
+ margin-left: 75%; }
+ .offset-sm-10 {
+ margin-left: 83.33333%; }
+ .offset-sm-11 {
+ margin-left: 91.66667%; } }
+
+@media (min-width: 768px) {
+ .col-md {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%; }
+ .col-md-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%; }
+ .col-md-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%; }
+ .col-md-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%; }
+ .col-md-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%; }
+ .col-md-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%; }
+ .col-md-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%; }
+ .col-md-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%; }
+ .col-md-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%; }
+ .col-md-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%; }
+ .col-md-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%; }
+ .col-md-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%; }
+ .col-md-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%; }
+ .col-md-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%; }
+ .order-md-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1; }
+ .order-md-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13; }
+ .order-md-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0; }
+ .order-md-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1; }
+ .order-md-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2; }
+ .order-md-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3; }
+ .order-md-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4; }
+ .order-md-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5; }
+ .order-md-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6; }
+ .order-md-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7; }
+ .order-md-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8; }
+ .order-md-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9; }
+ .order-md-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10; }
+ .order-md-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11; }
+ .order-md-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12; }
+ .offset-md-0 {
+ margin-left: 0; }
+ .offset-md-1 {
+ margin-left: 8.33333%; }
+ .offset-md-2 {
+ margin-left: 16.66667%; }
+ .offset-md-3 {
+ margin-left: 25%; }
+ .offset-md-4 {
+ margin-left: 33.33333%; }
+ .offset-md-5 {
+ margin-left: 41.66667%; }
+ .offset-md-6 {
+ margin-left: 50%; }
+ .offset-md-7 {
+ margin-left: 58.33333%; }
+ .offset-md-8 {
+ margin-left: 66.66667%; }
+ .offset-md-9 {
+ margin-left: 75%; }
+ .offset-md-10 {
+ margin-left: 83.33333%; }
+ .offset-md-11 {
+ margin-left: 91.66667%; } }
+
+@media (min-width: 992px) {
+ .col-lg {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%; }
+ .col-lg-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%; }
+ .col-lg-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%; }
+ .col-lg-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%; }
+ .col-lg-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%; }
+ .col-lg-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%; }
+ .col-lg-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%; }
+ .col-lg-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%; }
+ .col-lg-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%; }
+ .col-lg-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%; }
+ .col-lg-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%; }
+ .col-lg-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%; }
+ .col-lg-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%; }
+ .col-lg-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%; }
+ .order-lg-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1; }
+ .order-lg-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13; }
+ .order-lg-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0; }
+ .order-lg-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1; }
+ .order-lg-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2; }
+ .order-lg-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3; }
+ .order-lg-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4; }
+ .order-lg-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5; }
+ .order-lg-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6; }
+ .order-lg-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7; }
+ .order-lg-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8; }
+ .order-lg-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9; }
+ .order-lg-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10; }
+ .order-lg-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11; }
+ .order-lg-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12; }
+ .offset-lg-0 {
+ margin-left: 0; }
+ .offset-lg-1 {
+ margin-left: 8.33333%; }
+ .offset-lg-2 {
+ margin-left: 16.66667%; }
+ .offset-lg-3 {
+ margin-left: 25%; }
+ .offset-lg-4 {
+ margin-left: 33.33333%; }
+ .offset-lg-5 {
+ margin-left: 41.66667%; }
+ .offset-lg-6 {
+ margin-left: 50%; }
+ .offset-lg-7 {
+ margin-left: 58.33333%; }
+ .offset-lg-8 {
+ margin-left: 66.66667%; }
+ .offset-lg-9 {
+ margin-left: 75%; }
+ .offset-lg-10 {
+ margin-left: 83.33333%; }
+ .offset-lg-11 {
+ margin-left: 91.66667%; } }
+
+@media (min-width: 1200px) {
+ .col-xl {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%; }
+ .col-xl-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%; }
+ .col-xl-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%; }
+ .col-xl-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%; }
+ .col-xl-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%; }
+ .col-xl-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%; }
+ .col-xl-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%; }
+ .col-xl-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%; }
+ .col-xl-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%; }
+ .col-xl-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%; }
+ .col-xl-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%; }
+ .col-xl-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%; }
+ .col-xl-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%; }
+ .col-xl-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%; }
+ .order-xl-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1; }
+ .order-xl-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13; }
+ .order-xl-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0; }
+ .order-xl-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1; }
+ .order-xl-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2; }
+ .order-xl-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3; }
+ .order-xl-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4; }
+ .order-xl-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5; }
+ .order-xl-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6; }
+ .order-xl-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7; }
+ .order-xl-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8; }
+ .order-xl-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9; }
+ .order-xl-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10; }
+ .order-xl-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11; }
+ .order-xl-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12; }
+ .offset-xl-0 {
+ margin-left: 0; }
+ .offset-xl-1 {
+ margin-left: 8.33333%; }
+ .offset-xl-2 {
+ margin-left: 16.66667%; }
+ .offset-xl-3 {
+ margin-left: 25%; }
+ .offset-xl-4 {
+ margin-left: 33.33333%; }
+ .offset-xl-5 {
+ margin-left: 41.66667%; }
+ .offset-xl-6 {
+ margin-left: 50%; }
+ .offset-xl-7 {
+ margin-left: 58.33333%; }
+ .offset-xl-8 {
+ margin-left: 66.66667%; }
+ .offset-xl-9 {
+ margin-left: 75%; }
+ .offset-xl-10 {
+ margin-left: 83.33333%; }
+ .offset-xl-11 {
+ margin-left: 91.66667%; } }
+
+.table {
+ width: 100%;
+ margin-bottom: 1rem;
+ color: #212529; }
+ .table th,
+ .table td {
+ padding: 0.75rem;
+ vertical-align: top;
+ border-top: 1px solid #dee2e6; }
+ .table thead th {
+ vertical-align: bottom;
+ border-bottom: 2px solid #dee2e6; }
+ .table tbody + tbody {
+ border-top: 2px solid #dee2e6; }
+
+.table-sm th,
+.table-sm td {
+ padding: 0.3rem; }
+
+.table-bordered {
+ border: 1px solid #dee2e6; }
+ .table-bordered th,
+ .table-bordered td {
+ border: 1px solid #dee2e6; }
+ .table-bordered thead th,
+ .table-bordered thead td {
+ border-bottom-width: 2px; }
+
+.table-borderless th,
+.table-borderless td,
+.table-borderless thead th,
+.table-borderless tbody + tbody {
+ border: 0; }
+
+.table-striped tbody tr:nth-of-type(odd) {
+ background-color: rgba(0, 0, 0, 0.05); }
+
+.table-hover tbody tr:hover {
+ color: #212529;
+ background-color: rgba(0, 0, 0, 0.075); }
+
+.table-primary,
+.table-primary > th,
+.table-primary > td {
+ background-color: #eef8ce; }
+
+.table-primary th,
+.table-primary td,
+.table-primary thead th,
+.table-primary tbody + tbody {
+ border-color: #dff1a3; }
+
+.table-hover .table-primary:hover {
+ background-color: #e6f5b8; }
+ .table-hover .table-primary:hover > td,
+ .table-hover .table-primary:hover > th {
+ background-color: #e6f5b8; }
+
+.table-secondary,
+.table-secondary > th,
+.table-secondary > td {
+ background-color: #d6d8db; }
+
+.table-secondary th,
+.table-secondary td,
+.table-secondary thead th,
+.table-secondary tbody + tbody {
+ border-color: #b3b7bb; }
+
+.table-hover .table-secondary:hover {
+ background-color: #c8cbcf; }
+ .table-hover .table-secondary:hover > td,
+ .table-hover .table-secondary:hover > th {
+ background-color: #c8cbcf; }
+
+.table-success,
+.table-success > th,
+.table-success > td {
+ background-color: #d7ecca; }
+
+.table-success th,
+.table-success td,
+.table-success thead th,
+.table-success tbody + tbody {
+ border-color: #b5dc9d; }
+
+.table-hover .table-success:hover {
+ background-color: #c9e5b7; }
+ .table-hover .table-success:hover > td,
+ .table-hover .table-success:hover > th {
+ background-color: #c9e5b7; }
+
+.table-info,
+.table-info > th,
+.table-info > td {
+ background-color: #bee5eb; }
+
+.table-info th,
+.table-info td,
+.table-info thead th,
+.table-info tbody + tbody {
+ border-color: #86cfda; }
+
+.table-hover .table-info:hover {
+ background-color: #abdde5; }
+ .table-hover .table-info:hover > td,
+ .table-hover .table-info:hover > th {
+ background-color: #abdde5; }
+
+.table-warning,
+.table-warning > th,
+.table-warning > td {
+ background-color: #ffeeba; }
+
+.table-warning th,
+.table-warning td,
+.table-warning thead th,
+.table-warning tbody + tbody {
+ border-color: #ffdf7e; }
+
+.table-hover .table-warning:hover {
+ background-color: #ffe8a1; }
+ .table-hover .table-warning:hover > td,
+ .table-hover .table-warning:hover > th {
+ background-color: #ffe8a1; }
+
+.table-danger,
+.table-danger > th,
+.table-danger > td {
+ background-color: #f5c6cb; }
+
+.table-danger th,
+.table-danger td,
+.table-danger thead th,
+.table-danger tbody + tbody {
+ border-color: #ed969e; }
+
+.table-hover .table-danger:hover {
+ background-color: #f1b0b7; }
+ .table-hover .table-danger:hover > td,
+ .table-hover .table-danger:hover > th {
+ background-color: #f1b0b7; }
+
+.table-light,
+.table-light > th,
+.table-light > td {
+ background-color: #fdfdfe; }
+
+.table-light th,
+.table-light td,
+.table-light thead th,
+.table-light tbody + tbody {
+ border-color: #fbfcfc; }
+
+.table-hover .table-light:hover {
+ background-color: #ececf6; }
+ .table-hover .table-light:hover > td,
+ .table-hover .table-light:hover > th {
+ background-color: #ececf6; }
+
+.table-dark,
+.table-dark > th,
+.table-dark > td {
+ background-color: #c6c8ca; }
+
+.table-dark th,
+.table-dark td,
+.table-dark thead th,
+.table-dark tbody + tbody {
+ border-color: #95999c; }
+
+.table-hover .table-dark:hover {
+ background-color: #b9bbbe; }
+ .table-hover .table-dark:hover > td,
+ .table-hover .table-dark:hover > th {
+ background-color: #b9bbbe; }
+
+.table-active,
+.table-active > th,
+.table-active > td {
+ background-color: rgba(0, 0, 0, 0.075); }
+
+.table-hover .table-active:hover {
+ background-color: rgba(0, 0, 0, 0.075); }
+ .table-hover .table-active:hover > td,
+ .table-hover .table-active:hover > th {
+ background-color: rgba(0, 0, 0, 0.075); }
+
+.table .thead-dark th {
+ color: #fff;
+ background-color: #343a40;
+ border-color: #454d55; }
+
+.table .thead-light th {
+ color: #495057;
+ background-color: #e9ecef;
+ border-color: #dee2e6; }
+
+.table-dark {
+ color: #fff;
+ background-color: #343a40; }
+ .table-dark th,
+ .table-dark td,
+ .table-dark thead th {
+ border-color: #454d55; }
+ .table-dark.table-bordered {
+ border: 0; }
+ .table-dark.table-striped tbody tr:nth-of-type(odd) {
+ background-color: rgba(255, 255, 255, 0.05); }
+ .table-dark.table-hover tbody tr:hover {
+ color: #fff;
+ background-color: rgba(255, 255, 255, 0.075); }
+
+@media (max-width: 575.98px) {
+ .table-responsive-sm {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch; }
+ .table-responsive-sm > .table-bordered {
+ border: 0; } }
+
+@media (max-width: 767.98px) {
+ .table-responsive-md {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch; }
+ .table-responsive-md > .table-bordered {
+ border: 0; } }
+
+@media (max-width: 991.98px) {
+ .table-responsive-lg {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch; }
+ .table-responsive-lg > .table-bordered {
+ border: 0; } }
+
+@media (max-width: 1199.98px) {
+ .table-responsive-xl {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch; }
+ .table-responsive-xl > .table-bordered {
+ border: 0; } }
+
+.table-responsive {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch; }
+ .table-responsive > .table-bordered {
+ border: 0; }
+
+.form-control {
+ display: block;
+ width: 100%;
+ height: calc(1.5em + 0.75rem + 2px);
+ padding: 0.375rem 0.75rem;
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #495057;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid #ced4da;
+ border-radius: 0.25rem;
+ -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
+ @media (prefers-reduced-motion: reduce) {
+ .form-control {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+ .form-control::-ms-expand {
+ background-color: transparent;
+ border: 0; }
+ .form-control:focus {
+ color: #495057;
+ background-color: #fff;
+ border-color: #e9f5be;
+ outline: 0;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.25); }
+ .form-control::-webkit-input-placeholder {
+ color: #6c757d;
+ opacity: 1; }
+ .form-control:-ms-input-placeholder {
+ color: #6c757d;
+ opacity: 1; }
+ .form-control::-ms-input-placeholder {
+ color: #6c757d;
+ opacity: 1; }
+ .form-control::placeholder {
+ color: #6c757d;
+ opacity: 1; }
+ .form-control:disabled, .form-control[readonly] {
+ background-color: #e9ecef;
+ opacity: 1; }
+
+select.form-control:focus::-ms-value {
+ color: #495057;
+ background-color: #fff; }
+
+.form-control-file,
+.form-control-range {
+ display: block;
+ width: 100%; }
+
+.col-form-label {
+ padding-top: calc(0.375rem + 1px);
+ padding-bottom: calc(0.375rem + 1px);
+ margin-bottom: 0;
+ font-size: inherit;
+ line-height: 1.5; }
+
+.col-form-label-lg {
+ padding-top: calc(0.5rem + 1px);
+ padding-bottom: calc(0.5rem + 1px);
+ font-size: 1.25rem;
+ line-height: 1.5; }
+
+.col-form-label-sm {
+ padding-top: calc(0.25rem + 1px);
+ padding-bottom: calc(0.25rem + 1px);
+ font-size: 0.875rem;
+ line-height: 1.5; }
+
+.form-control-plaintext {
+ display: block;
+ width: 100%;
+ padding-top: 0.375rem;
+ padding-bottom: 0.375rem;
+ margin-bottom: 0;
+ line-height: 1.5;
+ color: #212529;
+ background-color: transparent;
+ border: solid transparent;
+ border-width: 1px 0; }
+ .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
+ padding-right: 0;
+ padding-left: 0; }
+
+.form-control-sm {
+ height: calc(1.5em + 0.5rem + 2px);
+ padding: 0.25rem 0.5rem;
+ font-size: 0.875rem;
+ line-height: 1.5;
+ border-radius: 0.2rem; }
+
+.form-control-lg {
+ height: calc(1.5em + 1rem + 2px);
+ padding: 0.5rem 1rem;
+ font-size: 1.25rem;
+ line-height: 1.5;
+ border-radius: 0.3rem; }
+
+select.form-control[size], select.form-control[multiple] {
+ height: auto; }
+
+textarea.form-control {
+ height: auto; }
+
+.form-group {
+ margin-bottom: 1rem; }
+
+.form-text {
+ display: block;
+ margin-top: 0.25rem; }
+
+.form-row {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-right: -5px;
+ margin-left: -5px; }
+ .form-row > .col,
+ .form-row > [class*="col-"] {
+ padding-right: 5px;
+ padding-left: 5px; }
+
+.form-check {
+ position: relative;
+ display: block;
+ padding-left: 1.25rem; }
+
+.form-check-input {
+ position: absolute;
+ margin-top: 0.3rem;
+ margin-left: -1.25rem; }
+ .form-check-input:disabled ~ .form-check-label {
+ color: #6c757d; }
+
+.form-check-label {
+ margin-bottom: 0; }
+
+.form-check-inline {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding-left: 0;
+ margin-right: 0.75rem; }
+ .form-check-inline .form-check-input {
+ position: static;
+ margin-top: 0;
+ margin-right: 0.3125rem;
+ margin-left: 0; }
+
+.valid-feedback {
+ display: none;
+ width: 100%;
+ margin-top: 0.25rem;
+ font-size: 80%;
+ color: #71bc42; }
+
+.valid-tooltip {
+ position: absolute;
+ top: 100%;
+ z-index: 5;
+ display: none;
+ max-width: 100%;
+ padding: 0.25rem 0.5rem;
+ margin-top: .1rem;
+ font-size: 0.875rem;
+ line-height: 1.5;
+ color: #212529;
+ background-color: rgba(113, 188, 66, 0.9);
+ border-radius: 0.25rem; }
+
+.was-validated .form-control:valid, .form-control.is-valid {
+ border-color: #71bc42;
+ padding-right: calc(1.5em + 0.75rem);
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2371bc42' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
+ background-repeat: no-repeat;
+ background-position: center right calc(0.375em + 0.1875rem);
+ background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
+ .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
+ border-color: #71bc42;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.25); }
+ .was-validated .form-control:valid ~ .valid-feedback,
+ .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
+ .form-control.is-valid ~ .valid-tooltip {
+ display: block; }
+
+.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
+ padding-right: calc(1.5em + 0.75rem);
+ background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }
+
+.was-validated .custom-select:valid, .custom-select.is-valid {
+ border-color: #71bc42;
+ padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
+ background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2371bc42' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
+ .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
+ border-color: #71bc42;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.25); }
+ .was-validated .custom-select:valid ~ .valid-feedback,
+ .was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,
+ .custom-select.is-valid ~ .valid-tooltip {
+ display: block; }
+
+.was-validated .form-control-file:valid ~ .valid-feedback,
+.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
+.form-control-file.is-valid ~ .valid-tooltip {
+ display: block; }
+
+.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
+ color: #71bc42; }
+
+.was-validated .form-check-input:valid ~ .valid-feedback,
+.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
+.form-check-input.is-valid ~ .valid-tooltip {
+ display: block; }
+
+.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
+ color: #71bc42; }
+ .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
+ border-color: #71bc42; }
+
+.was-validated .custom-control-input:valid ~ .valid-feedback,
+.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
+.custom-control-input.is-valid ~ .valid-tooltip {
+ display: block; }
+
+.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
+ border-color: #8dca67;
+ background-color: #8dca67; }
+
+.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.25); }
+
+.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
+ border-color: #71bc42; }
+
+.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
+ border-color: #71bc42; }
+
+.was-validated .custom-file-input:valid ~ .valid-feedback,
+.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
+.custom-file-input.is-valid ~ .valid-tooltip {
+ display: block; }
+
+.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
+ border-color: #71bc42;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.25); }
+
+.invalid-feedback {
+ display: none;
+ width: 100%;
+ margin-top: 0.25rem;
+ font-size: 80%;
+ color: #dc3545; }
+
+.invalid-tooltip {
+ position: absolute;
+ top: 100%;
+ z-index: 5;
+ display: none;
+ max-width: 100%;
+ padding: 0.25rem 0.5rem;
+ margin-top: .1rem;
+ font-size: 0.875rem;
+ line-height: 1.5;
+ color: #fff;
+ background-color: rgba(220, 53, 69, 0.9);
+ border-radius: 0.25rem; }
+
+.was-validated .form-control:invalid, .form-control.is-invalid {
+ border-color: #dc3545;
+ padding-right: calc(1.5em + 0.75rem);
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
+ background-repeat: no-repeat;
+ background-position: center right calc(0.375em + 0.1875rem);
+ background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
+ .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
+ border-color: #dc3545;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
+ .was-validated .form-control:invalid ~ .invalid-feedback,
+ .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
+ .form-control.is-invalid ~ .invalid-tooltip {
+ display: block; }
+
+.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
+ padding-right: calc(1.5em + 0.75rem);
+ background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }
+
+.was-validated .custom-select:invalid, .custom-select.is-invalid {
+ border-color: #dc3545;
+ padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
+ background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
+ .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
+ border-color: #dc3545;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
+ .was-validated .custom-select:invalid ~ .invalid-feedback,
+ .was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,
+ .custom-select.is-invalid ~ .invalid-tooltip {
+ display: block; }
+
+.was-validated .form-control-file:invalid ~ .invalid-feedback,
+.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
+.form-control-file.is-invalid ~ .invalid-tooltip {
+ display: block; }
+
+.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
+ color: #dc3545; }
+
+.was-validated .form-check-input:invalid ~ .invalid-feedback,
+.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
+.form-check-input.is-invalid ~ .invalid-tooltip {
+ display: block; }
+
+.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
+ color: #dc3545; }
+ .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
+ border-color: #dc3545; }
+
+.was-validated .custom-control-input:invalid ~ .invalid-feedback,
+.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
+.custom-control-input.is-invalid ~ .invalid-tooltip {
+ display: block; }
+
+.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
+ border-color: #e4606d;
+ background-color: #e4606d; }
+
+.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
+
+.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
+ border-color: #dc3545; }
+
+.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
+ border-color: #dc3545; }
+
+.was-validated .custom-file-input:invalid ~ .invalid-feedback,
+.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
+.custom-file-input.is-invalid ~ .invalid-tooltip {
+ display: block; }
+
+.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
+ border-color: #dc3545;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
+
+.form-inline {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center; }
+ .form-inline .form-check {
+ width: 100%; }
+ @media (min-width: 576px) {
+ .form-inline label {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ margin-bottom: 0; }
+ .form-inline .form-group {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin-bottom: 0; }
+ .form-inline .form-control {
+ display: inline-block;
+ width: auto;
+ vertical-align: middle; }
+ .form-inline .form-control-plaintext {
+ display: inline-block; }
+ .form-inline .input-group,
+ .form-inline .custom-select {
+ width: auto; }
+ .form-inline .form-check {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ width: auto;
+ padding-left: 0; }
+ .form-inline .form-check-input {
+ position: relative;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-top: 0;
+ margin-right: 0.25rem;
+ margin-left: 0; }
+ .form-inline .custom-control {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center; }
+ .form-inline .custom-control-label {
+ margin-bottom: 0; } }
+
+.btn {
+ display: inline-block;
+ font-weight: 400;
+ color: #212529;
+ text-align: center;
+ vertical-align: middle;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ background-color: transparent;
+ border: 1px solid transparent;
+ padding: 0.375rem 0.75rem;
+ font-size: 1rem;
+ line-height: 1.5;
+ border-radius: 0.25rem;
+ -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
+ @media (prefers-reduced-motion: reduce) {
+ .btn {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+ .btn:hover {
+ color: #212529;
+ text-decoration: none; }
+ .btn:focus, .btn.focus {
+ outline: 0;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.25); }
+ .btn.disabled, .btn:disabled {
+ opacity: 0.65; }
+
+a.btn.disabled,
+fieldset:disabled a.btn {
+ pointer-events: none; }
+
+.btn-primary {
+ color: #212529;
+ background-color: #C2E54F;
+ border-color: #C2E54F; }
+ .btn-primary:hover {
+ color: #212529;
+ background-color: #b6e02e;
+ border-color: #b3de23; }
+ .btn-primary:focus, .btn-primary.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(170, 200, 73, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(170, 200, 73, 0.5); }
+ .btn-primary.disabled, .btn-primary:disabled {
+ color: #212529;
+ background-color: #C2E54F;
+ border-color: #C2E54F; }
+ .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
+ .show > .btn-primary.dropdown-toggle {
+ color: #212529;
+ background-color: #b3de23;
+ border-color: #aad51f; }
+ .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-primary.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(170, 200, 73, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(170, 200, 73, 0.5); }
+
+.btn-secondary {
+ color: #fff;
+ background-color: #6c757d;
+ border-color: #6c757d; }
+ .btn-secondary:hover {
+ color: #fff;
+ background-color: #5a6268;
+ border-color: #545b62; }
+ .btn-secondary:focus, .btn-secondary.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); }
+ .btn-secondary.disabled, .btn-secondary:disabled {
+ color: #fff;
+ background-color: #6c757d;
+ border-color: #6c757d; }
+ .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
+ .show > .btn-secondary.dropdown-toggle {
+ color: #fff;
+ background-color: #545b62;
+ border-color: #4e555b; }
+ .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-secondary.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); }
+
+.btn-success {
+ color: #212529;
+ background-color: #71bc42;
+ border-color: #71bc42; }
+ .btn-success:hover {
+ color: #fff;
+ background-color: #60a038;
+ border-color: #5a9635; }
+ .btn-success:focus, .btn-success.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(101, 165, 62, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(101, 165, 62, 0.5); }
+ .btn-success.disabled, .btn-success:disabled {
+ color: #212529;
+ background-color: #71bc42;
+ border-color: #71bc42; }
+ .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
+ .show > .btn-success.dropdown-toggle {
+ color: #fff;
+ background-color: #5a9635;
+ border-color: #558d31; }
+ .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-success.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(101, 165, 62, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(101, 165, 62, 0.5); }
+
+.btn-info {
+ color: #fff;
+ background-color: #17a2b8;
+ border-color: #17a2b8; }
+ .btn-info:hover {
+ color: #fff;
+ background-color: #138496;
+ border-color: #117a8b; }
+ .btn-info:focus, .btn-info.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); }
+ .btn-info.disabled, .btn-info:disabled {
+ color: #fff;
+ background-color: #17a2b8;
+ border-color: #17a2b8; }
+ .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
+ .show > .btn-info.dropdown-toggle {
+ color: #fff;
+ background-color: #117a8b;
+ border-color: #10707f; }
+ .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-info.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); }
+
+.btn-warning {
+ color: #212529;
+ background-color: #ffc107;
+ border-color: #ffc107; }
+ .btn-warning:hover {
+ color: #212529;
+ background-color: #e0a800;
+ border-color: #d39e00; }
+ .btn-warning:focus, .btn-warning.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); }
+ .btn-warning.disabled, .btn-warning:disabled {
+ color: #212529;
+ background-color: #ffc107;
+ border-color: #ffc107; }
+ .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
+ .show > .btn-warning.dropdown-toggle {
+ color: #212529;
+ background-color: #d39e00;
+ border-color: #c69500; }
+ .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-warning.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); }
+
+.btn-danger {
+ color: #fff;
+ background-color: #dc3545;
+ border-color: #dc3545; }
+ .btn-danger:hover {
+ color: #fff;
+ background-color: #c82333;
+ border-color: #bd2130; }
+ .btn-danger:focus, .btn-danger.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); }
+ .btn-danger.disabled, .btn-danger:disabled {
+ color: #fff;
+ background-color: #dc3545;
+ border-color: #dc3545; }
+ .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
+ .show > .btn-danger.dropdown-toggle {
+ color: #fff;
+ background-color: #bd2130;
+ border-color: #b21f2d; }
+ .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-danger.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); }
+
+.btn-light {
+ color: #212529;
+ background-color: #f8f9fa;
+ border-color: #f8f9fa; }
+ .btn-light:hover {
+ color: #212529;
+ background-color: #e2e6ea;
+ border-color: #dae0e5; }
+ .btn-light:focus, .btn-light.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); }
+ .btn-light.disabled, .btn-light:disabled {
+ color: #212529;
+ background-color: #f8f9fa;
+ border-color: #f8f9fa; }
+ .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
+ .show > .btn-light.dropdown-toggle {
+ color: #212529;
+ background-color: #dae0e5;
+ border-color: #d3d9df; }
+ .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-light.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); }
+
+.btn-dark {
+ color: #fff;
+ background-color: #343a40;
+ border-color: #343a40; }
+ .btn-dark:hover {
+ color: #fff;
+ background-color: #23272b;
+ border-color: #1d2124; }
+ .btn-dark:focus, .btn-dark.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); }
+ .btn-dark.disabled, .btn-dark:disabled {
+ color: #fff;
+ background-color: #343a40;
+ border-color: #343a40; }
+ .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
+ .show > .btn-dark.dropdown-toggle {
+ color: #fff;
+ background-color: #1d2124;
+ border-color: #171a1d; }
+ .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-dark.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); }
+
+.btn-outline-primary {
+ color: #C2E54F;
+ border-color: #C2E54F; }
+ .btn-outline-primary:hover {
+ color: #212529;
+ background-color: #C2E54F;
+ border-color: #C2E54F; }
+ .btn-outline-primary:focus, .btn-outline-primary.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.5); }
+ .btn-outline-primary.disabled, .btn-outline-primary:disabled {
+ color: #C2E54F;
+ background-color: transparent; }
+ .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
+ .show > .btn-outline-primary.dropdown-toggle {
+ color: #212529;
+ background-color: #C2E54F;
+ border-color: #C2E54F; }
+ .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-outline-primary.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.5); }
+
+.btn-outline-secondary {
+ color: #6c757d;
+ border-color: #6c757d; }
+ .btn-outline-secondary:hover {
+ color: #fff;
+ background-color: #6c757d;
+ border-color: #6c757d; }
+ .btn-outline-secondary:focus, .btn-outline-secondary.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
+ .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
+ color: #6c757d;
+ background-color: transparent; }
+ .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
+ .show > .btn-outline-secondary.dropdown-toggle {
+ color: #fff;
+ background-color: #6c757d;
+ border-color: #6c757d; }
+ .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-outline-secondary.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
+
+.btn-outline-success {
+ color: #71bc42;
+ border-color: #71bc42; }
+ .btn-outline-success:hover {
+ color: #212529;
+ background-color: #71bc42;
+ border-color: #71bc42; }
+ .btn-outline-success:focus, .btn-outline-success.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.5); }
+ .btn-outline-success.disabled, .btn-outline-success:disabled {
+ color: #71bc42;
+ background-color: transparent; }
+ .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
+ .show > .btn-outline-success.dropdown-toggle {
+ color: #212529;
+ background-color: #71bc42;
+ border-color: #71bc42; }
+ .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-outline-success.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.5); }
+
+.btn-outline-info {
+ color: #17a2b8;
+ border-color: #17a2b8; }
+ .btn-outline-info:hover {
+ color: #fff;
+ background-color: #17a2b8;
+ border-color: #17a2b8; }
+ .btn-outline-info:focus, .btn-outline-info.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
+ .btn-outline-info.disabled, .btn-outline-info:disabled {
+ color: #17a2b8;
+ background-color: transparent; }
+ .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
+ .show > .btn-outline-info.dropdown-toggle {
+ color: #fff;
+ background-color: #17a2b8;
+ border-color: #17a2b8; }
+ .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-outline-info.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
+
+.btn-outline-warning {
+ color: #ffc107;
+ border-color: #ffc107; }
+ .btn-outline-warning:hover {
+ color: #212529;
+ background-color: #ffc107;
+ border-color: #ffc107; }
+ .btn-outline-warning:focus, .btn-outline-warning.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
+ .btn-outline-warning.disabled, .btn-outline-warning:disabled {
+ color: #ffc107;
+ background-color: transparent; }
+ .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
+ .show > .btn-outline-warning.dropdown-toggle {
+ color: #212529;
+ background-color: #ffc107;
+ border-color: #ffc107; }
+ .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-outline-warning.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
+
+.btn-outline-danger {
+ color: #dc3545;
+ border-color: #dc3545; }
+ .btn-outline-danger:hover {
+ color: #fff;
+ background-color: #dc3545;
+ border-color: #dc3545; }
+ .btn-outline-danger:focus, .btn-outline-danger.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
+ .btn-outline-danger.disabled, .btn-outline-danger:disabled {
+ color: #dc3545;
+ background-color: transparent; }
+ .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
+ .show > .btn-outline-danger.dropdown-toggle {
+ color: #fff;
+ background-color: #dc3545;
+ border-color: #dc3545; }
+ .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-outline-danger.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
+
+.btn-outline-light {
+ color: #f8f9fa;
+ border-color: #f8f9fa; }
+ .btn-outline-light:hover {
+ color: #212529;
+ background-color: #f8f9fa;
+ border-color: #f8f9fa; }
+ .btn-outline-light:focus, .btn-outline-light.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
+ .btn-outline-light.disabled, .btn-outline-light:disabled {
+ color: #f8f9fa;
+ background-color: transparent; }
+ .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
+ .show > .btn-outline-light.dropdown-toggle {
+ color: #212529;
+ background-color: #f8f9fa;
+ border-color: #f8f9fa; }
+ .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-outline-light.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
+
+.btn-outline-dark {
+ color: #343a40;
+ border-color: #343a40; }
+ .btn-outline-dark:hover {
+ color: #fff;
+ background-color: #343a40;
+ border-color: #343a40; }
+ .btn-outline-dark:focus, .btn-outline-dark.focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
+ .btn-outline-dark.disabled, .btn-outline-dark:disabled {
+ color: #343a40;
+ background-color: transparent; }
+ .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
+ .show > .btn-outline-dark.dropdown-toggle {
+ color: #fff;
+ background-color: #343a40;
+ border-color: #343a40; }
+ .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
+ .show > .btn-outline-dark.dropdown-toggle:focus {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
+
+.btn-link {
+ font-weight: 400;
+ color: #C2E54F;
+ text-decoration: none; }
+ .btn-link:hover {
+ color: #a2ca1e;
+ text-decoration: underline; }
+ .btn-link:focus, .btn-link.focus {
+ text-decoration: underline;
+ -webkit-box-shadow: none;
+ box-shadow: none; }
+ .btn-link:disabled, .btn-link.disabled {
+ color: #6c757d;
+ pointer-events: none; }
+
+.btn-lg, .btn-group-lg > .btn {
+ padding: 0.5rem 1rem;
+ font-size: 1.25rem;
+ line-height: 1.5;
+ border-radius: 0.3rem; }
+
+.btn-sm, .btn-group-sm > .btn {
+ padding: 0.25rem 0.5rem;
+ font-size: 0.875rem;
+ line-height: 1.5;
+ border-radius: 0.2rem; }
+
+.btn-block {
+ display: block;
+ width: 100%; }
+ .btn-block + .btn-block {
+ margin-top: 0.5rem; }
+
+input[type="submit"].btn-block,
+input[type="reset"].btn-block,
+input[type="button"].btn-block {
+ width: 100%; }
+
+.fade {
+ -webkit-transition: opacity 0.15s linear;
+ -o-transition: opacity 0.15s linear;
+ transition: opacity 0.15s linear; }
+ @media (prefers-reduced-motion: reduce) {
+ .fade {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+ .fade:not(.show) {
+ opacity: 0; }
+
+.collapse:not(.show) {
+ display: none; }
+
+.collapsing {
+ position: relative;
+ height: 0;
+ overflow: hidden;
+ -webkit-transition: height 0.35s ease;
+ -o-transition: height 0.35s ease;
+ transition: height 0.35s ease; }
+ @media (prefers-reduced-motion: reduce) {
+ .collapsing {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+
+.dropup,
+.dropright,
+.dropdown,
+.dropleft {
+ position: relative; }
+
+.dropdown-toggle {
+ white-space: nowrap; }
+ .dropdown-toggle::after {
+ display: inline-block;
+ margin-left: 0.255em;
+ vertical-align: 0.255em;
+ content: "";
+ border-top: 0.3em solid;
+ border-right: 0.3em solid transparent;
+ border-bottom: 0;
+ border-left: 0.3em solid transparent; }
+ .dropdown-toggle:empty::after {
+ margin-left: 0; }
+
+.dropdown-menu {
+ position: absolute;
+ top: 100%;
+ left: 0;
+ z-index: 1000;
+ display: none;
+ float: left;
+ min-width: 10rem;
+ padding: 0.5rem 0;
+ margin: 0.125rem 0 0;
+ font-size: 1rem;
+ color: #212529;
+ text-align: left;
+ list-style: none;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid rgba(0, 0, 0, 0.15);
+ border-radius: 0.25rem; }
+
+.dropdown-menu-left {
+ right: auto;
+ left: 0; }
+
+.dropdown-menu-right {
+ right: 0;
+ left: auto; }
+
+@media (min-width: 576px) {
+ .dropdown-menu-sm-left {
+ right: auto;
+ left: 0; }
+ .dropdown-menu-sm-right {
+ right: 0;
+ left: auto; } }
+
+@media (min-width: 768px) {
+ .dropdown-menu-md-left {
+ right: auto;
+ left: 0; }
+ .dropdown-menu-md-right {
+ right: 0;
+ left: auto; } }
+
+@media (min-width: 992px) {
+ .dropdown-menu-lg-left {
+ right: auto;
+ left: 0; }
+ .dropdown-menu-lg-right {
+ right: 0;
+ left: auto; } }
+
+@media (min-width: 1200px) {
+ .dropdown-menu-xl-left {
+ right: auto;
+ left: 0; }
+ .dropdown-menu-xl-right {
+ right: 0;
+ left: auto; } }
+
+.dropup .dropdown-menu {
+ top: auto;
+ bottom: 100%;
+ margin-top: 0;
+ margin-bottom: 0.125rem; }
+
+.dropup .dropdown-toggle::after {
+ display: inline-block;
+ margin-left: 0.255em;
+ vertical-align: 0.255em;
+ content: "";
+ border-top: 0;
+ border-right: 0.3em solid transparent;
+ border-bottom: 0.3em solid;
+ border-left: 0.3em solid transparent; }
+
+.dropup .dropdown-toggle:empty::after {
+ margin-left: 0; }
+
+.dropright .dropdown-menu {
+ top: 0;
+ right: auto;
+ left: 100%;
+ margin-top: 0;
+ margin-left: 0.125rem; }
+
+.dropright .dropdown-toggle::after {
+ display: inline-block;
+ margin-left: 0.255em;
+ vertical-align: 0.255em;
+ content: "";
+ border-top: 0.3em solid transparent;
+ border-right: 0;
+ border-bottom: 0.3em solid transparent;
+ border-left: 0.3em solid; }
+
+.dropright .dropdown-toggle:empty::after {
+ margin-left: 0; }
+
+.dropright .dropdown-toggle::after {
+ vertical-align: 0; }
+
+.dropleft .dropdown-menu {
+ top: 0;
+ right: 100%;
+ left: auto;
+ margin-top: 0;
+ margin-right: 0.125rem; }
+
+.dropleft .dropdown-toggle::after {
+ display: inline-block;
+ margin-left: 0.255em;
+ vertical-align: 0.255em;
+ content: ""; }
+
+.dropleft .dropdown-toggle::after {
+ display: none; }
+
+.dropleft .dropdown-toggle::before {
+ display: inline-block;
+ margin-right: 0.255em;
+ vertical-align: 0.255em;
+ content: "";
+ border-top: 0.3em solid transparent;
+ border-right: 0.3em solid;
+ border-bottom: 0.3em solid transparent; }
+
+.dropleft .dropdown-toggle:empty::after {
+ margin-left: 0; }
+
+.dropleft .dropdown-toggle::before {
+ vertical-align: 0; }
+
+.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
+ right: auto;
+ bottom: auto; }
+
+.dropdown-divider {
+ height: 0;
+ margin: 0.5rem 0;
+ overflow: hidden;
+ border-top: 1px solid #e9ecef; }
+
+.dropdown-item {
+ display: block;
+ width: 100%;
+ padding: 0.25rem 1.5rem;
+ clear: both;
+ font-weight: 400;
+ color: #212529;
+ text-align: inherit;
+ white-space: nowrap;
+ background-color: transparent;
+ border: 0; }
+ .dropdown-item:hover, .dropdown-item:focus {
+ color: #16181b;
+ text-decoration: none;
+ background-color: #f8f9fa; }
+ .dropdown-item.active, .dropdown-item:active {
+ color: #fff;
+ text-decoration: none;
+ background-color: #C2E54F; }
+ .dropdown-item.disabled, .dropdown-item:disabled {
+ color: #6c757d;
+ pointer-events: none;
+ background-color: transparent; }
+
+.dropdown-menu.show {
+ display: block; }
+
+.dropdown-header {
+ display: block;
+ padding: 0.5rem 1.5rem;
+ margin-bottom: 0;
+ font-size: 0.875rem;
+ color: #6c757d;
+ white-space: nowrap; }
+
+.dropdown-item-text {
+ display: block;
+ padding: 0.25rem 1.5rem;
+ color: #212529; }
+
+.btn-group,
+.btn-group-vertical {
+ position: relative;
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ vertical-align: middle; }
+ .btn-group > .btn,
+ .btn-group-vertical > .btn {
+ position: relative;
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto; }
+ .btn-group > .btn:hover,
+ .btn-group-vertical > .btn:hover {
+ z-index: 1; }
+ .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
+ .btn-group-vertical > .btn:focus,
+ .btn-group-vertical > .btn:active,
+ .btn-group-vertical > .btn.active {
+ z-index: 1; }
+
+.btn-toolbar {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start; }
+ .btn-toolbar .input-group {
+ width: auto; }
+
+.btn-group > .btn:not(:first-child),
+.btn-group > .btn-group:not(:first-child) {
+ margin-left: -1px; }
+
+.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
+.btn-group > .btn-group:not(:last-child) > .btn {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0; }
+
+.btn-group > .btn:not(:first-child),
+.btn-group > .btn-group:not(:first-child) > .btn {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0; }
+
+.dropdown-toggle-split {
+ padding-right: 0.5625rem;
+ padding-left: 0.5625rem; }
+ .dropdown-toggle-split::after,
+ .dropup .dropdown-toggle-split::after,
+ .dropright .dropdown-toggle-split::after {
+ margin-left: 0; }
+ .dropleft .dropdown-toggle-split::before {
+ margin-right: 0; }
+
+.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
+ padding-right: 0.375rem;
+ padding-left: 0.375rem; }
+
+.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
+ padding-right: 0.75rem;
+ padding-left: 0.75rem; }
+
+.btn-group-vertical {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center; }
+ .btn-group-vertical > .btn,
+ .btn-group-vertical > .btn-group {
+ width: 100%; }
+ .btn-group-vertical > .btn:not(:first-child),
+ .btn-group-vertical > .btn-group:not(:first-child) {
+ margin-top: -1px; }
+ .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
+ .btn-group-vertical > .btn-group:not(:last-child) > .btn {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0; }
+ .btn-group-vertical > .btn:not(:first-child),
+ .btn-group-vertical > .btn-group:not(:first-child) > .btn {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0; }
+
+.btn-group-toggle > .btn,
+.btn-group-toggle > .btn-group > .btn {
+ margin-bottom: 0; }
+ .btn-group-toggle > .btn input[type="radio"],
+ .btn-group-toggle > .btn input[type="checkbox"],
+ .btn-group-toggle > .btn-group > .btn input[type="radio"],
+ .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
+ position: absolute;
+ clip: rect(0, 0, 0, 0);
+ pointer-events: none; }
+
+.input-group {
+ position: relative;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ width: 100%; }
+ .input-group > .form-control,
+ .input-group > .form-control-plaintext,
+ .input-group > .custom-select,
+ .input-group > .custom-file {
+ position: relative;
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ width: 1%;
+ margin-bottom: 0; }
+ .input-group > .form-control + .form-control,
+ .input-group > .form-control + .custom-select,
+ .input-group > .form-control + .custom-file,
+ .input-group > .form-control-plaintext + .form-control,
+ .input-group > .form-control-plaintext + .custom-select,
+ .input-group > .form-control-plaintext + .custom-file,
+ .input-group > .custom-select + .form-control,
+ .input-group > .custom-select + .custom-select,
+ .input-group > .custom-select + .custom-file,
+ .input-group > .custom-file + .form-control,
+ .input-group > .custom-file + .custom-select,
+ .input-group > .custom-file + .custom-file {
+ margin-left: -1px; }
+ .input-group > .form-control:focus,
+ .input-group > .custom-select:focus,
+ .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
+ z-index: 3; }
+ .input-group > .custom-file .custom-file-input:focus {
+ z-index: 4; }
+ .input-group > .form-control:not(:last-child),
+ .input-group > .custom-select:not(:last-child) {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0; }
+ .input-group > .form-control:not(:first-child),
+ .input-group > .custom-select:not(:first-child) {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0; }
+ .input-group > .custom-file {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center; }
+ .input-group > .custom-file:not(:last-child) .custom-file-label,
+ .input-group > .custom-file:not(:last-child) .custom-file-label::after {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0; }
+ .input-group > .custom-file:not(:first-child) .custom-file-label {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0; }
+
+.input-group-prepend,
+.input-group-append {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex; }
+ .input-group-prepend .btn,
+ .input-group-append .btn {
+ position: relative;
+ z-index: 2; }
+ .input-group-prepend .btn:focus,
+ .input-group-append .btn:focus {
+ z-index: 3; }
+ .input-group-prepend .btn + .btn,
+ .input-group-prepend .btn + .input-group-text,
+ .input-group-prepend .input-group-text + .input-group-text,
+ .input-group-prepend .input-group-text + .btn,
+ .input-group-append .btn + .btn,
+ .input-group-append .btn + .input-group-text,
+ .input-group-append .input-group-text + .input-group-text,
+ .input-group-append .input-group-text + .btn {
+ margin-left: -1px; }
+
+.input-group-prepend {
+ margin-right: -1px; }
+
+.input-group-append {
+ margin-left: -1px; }
+
+.input-group-text {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding: 0.375rem 0.75rem;
+ margin-bottom: 0;
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #495057;
+ text-align: center;
+ white-space: nowrap;
+ background-color: #e9ecef;
+ border: 1px solid #ced4da;
+ border-radius: 0.25rem; }
+ .input-group-text input[type="radio"],
+ .input-group-text input[type="checkbox"] {
+ margin-top: 0; }
+
+.input-group-lg > .form-control:not(textarea),
+.input-group-lg > .custom-select {
+ height: calc(1.5em + 1rem + 2px); }
+
+.input-group-lg > .form-control,
+.input-group-lg > .custom-select,
+.input-group-lg > .input-group-prepend > .input-group-text,
+.input-group-lg > .input-group-append > .input-group-text,
+.input-group-lg > .input-group-prepend > .btn,
+.input-group-lg > .input-group-append > .btn {
+ padding: 0.5rem 1rem;
+ font-size: 1.25rem;
+ line-height: 1.5;
+ border-radius: 0.3rem; }
+
+.input-group-sm > .form-control:not(textarea),
+.input-group-sm > .custom-select {
+ height: calc(1.5em + 0.5rem + 2px); }
+
+.input-group-sm > .form-control,
+.input-group-sm > .custom-select,
+.input-group-sm > .input-group-prepend > .input-group-text,
+.input-group-sm > .input-group-append > .input-group-text,
+.input-group-sm > .input-group-prepend > .btn,
+.input-group-sm > .input-group-append > .btn {
+ padding: 0.25rem 0.5rem;
+ font-size: 0.875rem;
+ line-height: 1.5;
+ border-radius: 0.2rem; }
+
+.input-group-lg > .custom-select,
+.input-group-sm > .custom-select {
+ padding-right: 1.75rem; }
+
+.input-group > .input-group-prepend > .btn,
+.input-group > .input-group-prepend > .input-group-text,
+.input-group > .input-group-append:not(:last-child) > .btn,
+.input-group > .input-group-append:not(:last-child) > .input-group-text,
+.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
+.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0; }
+
+.input-group > .input-group-append > .btn,
+.input-group > .input-group-append > .input-group-text,
+.input-group > .input-group-prepend:not(:first-child) > .btn,
+.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
+.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
+.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0; }
+
+.custom-control {
+ position: relative;
+ display: block;
+ min-height: 1.5rem;
+ padding-left: 1.5rem; }
+
+.custom-control-inline {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ margin-right: 1rem; }
+
+.custom-control-input {
+ position: absolute;
+ z-index: -1;
+ opacity: 0; }
+ .custom-control-input:checked ~ .custom-control-label::before {
+ color: #fff;
+ border-color: #C2E54F;
+ background-color: #C2E54F; }
+ .custom-control-input:focus ~ .custom-control-label::before {
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.25); }
+ .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
+ border-color: #e9f5be; }
+ .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
+ color: #fff;
+ background-color: #f8fceb;
+ border-color: #f8fceb; }
+ .custom-control-input:disabled ~ .custom-control-label {
+ color: #6c757d; }
+ .custom-control-input:disabled ~ .custom-control-label::before {
+ background-color: #e9ecef; }
+
+.custom-control-label {
+ position: relative;
+ margin-bottom: 0;
+ vertical-align: top; }
+ .custom-control-label::before {
+ position: absolute;
+ top: 0.25rem;
+ left: -1.5rem;
+ display: block;
+ width: 1rem;
+ height: 1rem;
+ pointer-events: none;
+ content: "";
+ background-color: #fff;
+ border: #adb5bd solid 1px; }
+ .custom-control-label::after {
+ position: absolute;
+ top: 0.25rem;
+ left: -1.5rem;
+ display: block;
+ width: 1rem;
+ height: 1rem;
+ content: "";
+ background: no-repeat 50% / 50% 50%; }
+
+.custom-checkbox .custom-control-label::before {
+ border-radius: 0.25rem; }
+
+.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); }
+
+.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
+ border-color: #C2E54F;
+ background-color: #C2E54F; }
+
+.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); }
+
+.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
+ background-color: rgba(194, 229, 79, 0.5); }
+
+.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
+ background-color: rgba(194, 229, 79, 0.5); }
+
+.custom-radio .custom-control-label::before {
+ border-radius: 50%; }
+
+.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); }
+
+.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
+ background-color: rgba(194, 229, 79, 0.5); }
+
+.custom-switch {
+ padding-left: 2.25rem; }
+ .custom-switch .custom-control-label::before {
+ left: -2.25rem;
+ width: 1.75rem;
+ pointer-events: all;
+ border-radius: 0.5rem; }
+ .custom-switch .custom-control-label::after {
+ top: calc(0.25rem + 2px);
+ left: calc(-2.25rem + 2px);
+ width: calc(1rem - 4px);
+ height: calc(1rem - 4px);
+ background-color: #adb5bd;
+ border-radius: 0.5rem;
+ -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ -o-transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
+ @media (prefers-reduced-motion: reduce) {
+ .custom-switch .custom-control-label::after {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+ .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
+ background-color: #fff;
+ -webkit-transform: translateX(0.75rem);
+ -ms-transform: translateX(0.75rem);
+ transform: translateX(0.75rem); }
+ .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
+ background-color: rgba(194, 229, 79, 0.5); }
+
+.custom-select {
+ display: inline-block;
+ width: 100%;
+ height: calc(1.5em + 0.75rem + 2px);
+ padding: 0.375rem 1.75rem 0.375rem 0.75rem;
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #495057;
+ vertical-align: middle;
+ background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
+ background-color: #fff;
+ border: 1px solid #ced4da;
+ border-radius: 0.25rem;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none; }
+ .custom-select:focus {
+ border-color: #e9f5be;
+ outline: 0;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.25); }
+ .custom-select:focus::-ms-value {
+ color: #495057;
+ background-color: #fff; }
+ .custom-select[multiple], .custom-select[size]:not([size="1"]) {
+ height: auto;
+ padding-right: 0.75rem;
+ background-image: none; }
+ .custom-select:disabled {
+ color: #6c757d;
+ background-color: #e9ecef; }
+ .custom-select::-ms-expand {
+ display: none; }
+
+.custom-select-sm {
+ height: calc(1.5em + 0.5rem + 2px);
+ padding-top: 0.25rem;
+ padding-bottom: 0.25rem;
+ padding-left: 0.5rem;
+ font-size: 0.875rem; }
+
+.custom-select-lg {
+ height: calc(1.5em + 1rem + 2px);
+ padding-top: 0.5rem;
+ padding-bottom: 0.5rem;
+ padding-left: 1rem;
+ font-size: 1.25rem; }
+
+.custom-file {
+ position: relative;
+ display: inline-block;
+ width: 100%;
+ height: calc(1.5em + 0.75rem + 2px);
+ margin-bottom: 0; }
+
+.custom-file-input {
+ position: relative;
+ z-index: 2;
+ width: 100%;
+ height: calc(1.5em + 0.75rem + 2px);
+ margin: 0;
+ opacity: 0; }
+ .custom-file-input:focus ~ .custom-file-label {
+ border-color: #e9f5be;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.25); }
+ .custom-file-input:disabled ~ .custom-file-label {
+ background-color: #e9ecef; }
+ .custom-file-input:lang(en) ~ .custom-file-label::after {
+ content: "Browse"; }
+ .custom-file-input ~ .custom-file-label[data-browse]::after {
+ content: attr(data-browse); }
+
+.custom-file-label {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ z-index: 1;
+ height: calc(1.5em + 0.75rem + 2px);
+ padding: 0.375rem 0.75rem;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #495057;
+ background-color: #fff;
+ border: 1px solid #ced4da;
+ border-radius: 0.25rem; }
+ .custom-file-label::after {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ z-index: 3;
+ display: block;
+ height: calc(1.5em + 0.75rem);
+ padding: 0.375rem 0.75rem;
+ line-height: 1.5;
+ color: #495057;
+ content: "Browse";
+ background-color: #e9ecef;
+ border-left: inherit;
+ border-radius: 0 0.25rem 0.25rem 0; }
+
+.custom-range {
+ width: 100%;
+ height: calc(1rem + 0.4rem);
+ padding: 0;
+ background-color: transparent;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none; }
+ .custom-range:focus {
+ outline: none; }
+ .custom-range:focus::-webkit-slider-thumb {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(194, 229, 79, 0.25);
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(194, 229, 79, 0.25); }
+ .custom-range:focus::-moz-range-thumb {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(194, 229, 79, 0.25); }
+ .custom-range:focus::-ms-thumb {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(194, 229, 79, 0.25); }
+ .custom-range::-moz-focus-outer {
+ border: 0; }
+ .custom-range::-webkit-slider-thumb {
+ width: 1rem;
+ height: 1rem;
+ margin-top: -0.25rem;
+ background-color: #C2E54F;
+ border: 0;
+ border-radius: 1rem;
+ -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ -webkit-appearance: none;
+ appearance: none; }
+ @media (prefers-reduced-motion: reduce) {
+ .custom-range::-webkit-slider-thumb {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+ .custom-range::-webkit-slider-thumb:active {
+ background-color: #f8fceb; }
+ .custom-range::-webkit-slider-runnable-track {
+ width: 100%;
+ height: 0.5rem;
+ color: transparent;
+ cursor: pointer;
+ background-color: #dee2e6;
+ border-color: transparent;
+ border-radius: 1rem; }
+ .custom-range::-moz-range-thumb {
+ width: 1rem;
+ height: 1rem;
+ background-color: #C2E54F;
+ border: 0;
+ border-radius: 1rem;
+ -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ -moz-appearance: none;
+ appearance: none; }
+ @media (prefers-reduced-motion: reduce) {
+ .custom-range::-moz-range-thumb {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+ .custom-range::-moz-range-thumb:active {
+ background-color: #f8fceb; }
+ .custom-range::-moz-range-track {
+ width: 100%;
+ height: 0.5rem;
+ color: transparent;
+ cursor: pointer;
+ background-color: #dee2e6;
+ border-color: transparent;
+ border-radius: 1rem; }
+ .custom-range::-ms-thumb {
+ width: 1rem;
+ height: 1rem;
+ margin-top: 0;
+ margin-right: 0.2rem;
+ margin-left: 0.2rem;
+ background-color: #C2E54F;
+ border: 0;
+ border-radius: 1rem;
+ -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ appearance: none; }
+ @media (prefers-reduced-motion: reduce) {
+ .custom-range::-ms-thumb {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+ .custom-range::-ms-thumb:active {
+ background-color: #f8fceb; }
+ .custom-range::-ms-track {
+ width: 100%;
+ height: 0.5rem;
+ color: transparent;
+ cursor: pointer;
+ background-color: transparent;
+ border-color: transparent;
+ border-width: 0.5rem; }
+ .custom-range::-ms-fill-lower {
+ background-color: #dee2e6;
+ border-radius: 1rem; }
+ .custom-range::-ms-fill-upper {
+ margin-right: 15px;
+ background-color: #dee2e6;
+ border-radius: 1rem; }
+ .custom-range:disabled::-webkit-slider-thumb {
+ background-color: #adb5bd; }
+ .custom-range:disabled::-webkit-slider-runnable-track {
+ cursor: default; }
+ .custom-range:disabled::-moz-range-thumb {
+ background-color: #adb5bd; }
+ .custom-range:disabled::-moz-range-track {
+ cursor: default; }
+ .custom-range:disabled::-ms-thumb {
+ background-color: #adb5bd; }
+
+.custom-control-label::before,
+.custom-file-label,
+.custom-select {
+ -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
+ @media (prefers-reduced-motion: reduce) {
+ .custom-control-label::before,
+ .custom-file-label,
+ .custom-select {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+
+.nav {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ padding-left: 0;
+ margin-bottom: 0;
+ list-style: none; }
+
+.nav-link {
+ display: block;
+ padding: 0.5rem 1rem; }
+ .nav-link:hover, .nav-link:focus {
+ text-decoration: none; }
+ .nav-link.disabled {
+ color: #6c757d;
+ pointer-events: none;
+ cursor: default; }
+
+.nav-tabs {
+ border-bottom: 1px solid #dee2e6; }
+ .nav-tabs .nav-item {
+ margin-bottom: -1px; }
+ .nav-tabs .nav-link {
+ border: 1px solid transparent;
+ border-top-left-radius: 0.25rem;
+ border-top-right-radius: 0.25rem; }
+ .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
+ border-color: #e9ecef #e9ecef #dee2e6; }
+ .nav-tabs .nav-link.disabled {
+ color: #6c757d;
+ background-color: transparent;
+ border-color: transparent; }
+ .nav-tabs .nav-link.active,
+ .nav-tabs .nav-item.show .nav-link {
+ color: #495057;
+ background-color: #fff;
+ border-color: #dee2e6 #dee2e6 #fff; }
+ .nav-tabs .dropdown-menu {
+ margin-top: -1px;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0; }
+
+.nav-pills .nav-link {
+ border-radius: 0.25rem; }
+
+.nav-pills .nav-link.active,
+.nav-pills .show > .nav-link {
+ color: #fff;
+ background-color: #C2E54F; }
+
+.nav-fill .nav-item {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ text-align: center; }
+
+.nav-justified .nav-item {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ text-align: center; }
+
+.tab-content > .tab-pane {
+ display: none; }
+
+.tab-content > .active {
+ display: block; }
+
+.navbar {
+ position: relative;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ padding: 0.5rem 1rem; }
+ .navbar > .container,
+ .navbar > .container-fluid {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between; }
+
+.navbar-brand {
+ display: inline-block;
+ padding-top: 0.3125rem;
+ padding-bottom: 0.3125rem;
+ margin-right: 1rem;
+ font-size: 1.25rem;
+ line-height: inherit;
+ white-space: nowrap; }
+ .navbar-brand:hover, .navbar-brand:focus {
+ text-decoration: none; }
+
+.navbar-nav {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ padding-left: 0;
+ margin-bottom: 0;
+ list-style: none; }
+ .navbar-nav .nav-link {
+ padding-right: 0;
+ padding-left: 0; }
+ .navbar-nav .dropdown-menu {
+ position: static;
+ float: none; }
+
+.navbar-text {
+ display: inline-block;
+ padding-top: 0.5rem;
+ padding-bottom: 0.5rem; }
+
+.navbar-collapse {
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center; }
+
+.navbar-toggler {
+ padding: 0.25rem 0.75rem;
+ font-size: 1.25rem;
+ line-height: 1;
+ background-color: transparent;
+ border: 1px solid transparent;
+ border-radius: 0.25rem; }
+ .navbar-toggler:hover, .navbar-toggler:focus {
+ text-decoration: none; }
+
+.navbar-toggler-icon {
+ display: inline-block;
+ width: 1.5em;
+ height: 1.5em;
+ vertical-align: middle;
+ content: "";
+ background: no-repeat center center;
+ background-size: 100% 100%; }
+
+@media (max-width: 575.98px) {
+ .navbar-expand-sm > .container,
+ .navbar-expand-sm > .container-fluid {
+ padding-right: 0;
+ padding-left: 0; } }
+
+@media (min-width: 576px) {
+ .navbar-expand-sm {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start; }
+ .navbar-expand-sm .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row; }
+ .navbar-expand-sm .navbar-nav .dropdown-menu {
+ position: absolute; }
+ .navbar-expand-sm .navbar-nav .nav-link {
+ padding-right: 0.5rem;
+ padding-left: 0.5rem; }
+ .navbar-expand-sm > .container,
+ .navbar-expand-sm > .container-fluid {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap; }
+ .navbar-expand-sm .navbar-collapse {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto; }
+ .navbar-expand-sm .navbar-toggler {
+ display: none; } }
+
+@media (max-width: 767.98px) {
+ .navbar-expand-md > .container,
+ .navbar-expand-md > .container-fluid {
+ padding-right: 0;
+ padding-left: 0; } }
+
+@media (min-width: 768px) {
+ .navbar-expand-md {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start; }
+ .navbar-expand-md .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row; }
+ .navbar-expand-md .navbar-nav .dropdown-menu {
+ position: absolute; }
+ .navbar-expand-md .navbar-nav .nav-link {
+ padding-right: 0.5rem;
+ padding-left: 0.5rem; }
+ .navbar-expand-md > .container,
+ .navbar-expand-md > .container-fluid {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap; }
+ .navbar-expand-md .navbar-collapse {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto; }
+ .navbar-expand-md .navbar-toggler {
+ display: none; } }
+
+@media (max-width: 991.98px) {
+ .navbar-expand-lg > .container,
+ .navbar-expand-lg > .container-fluid {
+ padding-right: 0;
+ padding-left: 0; } }
+
+@media (min-width: 992px) {
+ .navbar-expand-lg {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start; }
+ .navbar-expand-lg .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row; }
+ .navbar-expand-lg .navbar-nav .dropdown-menu {
+ position: absolute; }
+ .navbar-expand-lg .navbar-nav .nav-link {
+ padding-right: 0.5rem;
+ padding-left: 0.5rem; }
+ .navbar-expand-lg > .container,
+ .navbar-expand-lg > .container-fluid {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap; }
+ .navbar-expand-lg .navbar-collapse {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto; }
+ .navbar-expand-lg .navbar-toggler {
+ display: none; } }
+
+@media (max-width: 1199.98px) {
+ .navbar-expand-xl > .container,
+ .navbar-expand-xl > .container-fluid {
+ padding-right: 0;
+ padding-left: 0; } }
+
+@media (min-width: 1200px) {
+ .navbar-expand-xl {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start; }
+ .navbar-expand-xl .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row; }
+ .navbar-expand-xl .navbar-nav .dropdown-menu {
+ position: absolute; }
+ .navbar-expand-xl .navbar-nav .nav-link {
+ padding-right: 0.5rem;
+ padding-left: 0.5rem; }
+ .navbar-expand-xl > .container,
+ .navbar-expand-xl > .container-fluid {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap; }
+ .navbar-expand-xl .navbar-collapse {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto; }
+ .navbar-expand-xl .navbar-toggler {
+ display: none; } }
+
+.navbar-expand {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start; }
+ .navbar-expand > .container,
+ .navbar-expand > .container-fluid {
+ padding-right: 0;
+ padding-left: 0; }
+ .navbar-expand .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row; }
+ .navbar-expand .navbar-nav .dropdown-menu {
+ position: absolute; }
+ .navbar-expand .navbar-nav .nav-link {
+ padding-right: 0.5rem;
+ padding-left: 0.5rem; }
+ .navbar-expand > .container,
+ .navbar-expand > .container-fluid {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap; }
+ .navbar-expand .navbar-collapse {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto; }
+ .navbar-expand .navbar-toggler {
+ display: none; }
+
+.navbar-light .navbar-brand {
+ color: rgba(0, 0, 0, 0.9); }
+ .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
+ color: rgba(0, 0, 0, 0.9); }
+
+.navbar-light .navbar-nav .nav-link {
+ color: rgba(0, 0, 0, 0.5); }
+ .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
+ color: rgba(0, 0, 0, 0.7); }
+ .navbar-light .navbar-nav .nav-link.disabled {
+ color: rgba(0, 0, 0, 0.3); }
+
+.navbar-light .navbar-nav .show > .nav-link,
+.navbar-light .navbar-nav .active > .nav-link,
+.navbar-light .navbar-nav .nav-link.show,
+.navbar-light .navbar-nav .nav-link.active {
+ color: rgba(0, 0, 0, 0.9); }
+
+.navbar-light .navbar-toggler {
+ color: rgba(0, 0, 0, 0.5);
+ border-color: rgba(0, 0, 0, 0.1); }
+
+.navbar-light .navbar-toggler-icon {
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
+
+.navbar-light .navbar-text {
+ color: rgba(0, 0, 0, 0.5); }
+ .navbar-light .navbar-text a {
+ color: rgba(0, 0, 0, 0.9); }
+ .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
+ color: rgba(0, 0, 0, 0.9); }
+
+.navbar-dark .navbar-brand {
+ color: #fff; }
+ .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
+ color: #fff; }
+
+.navbar-dark .navbar-nav .nav-link {
+ color: rgba(255, 255, 255, 0.5); }
+ .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
+ color: rgba(255, 255, 255, 0.75); }
+ .navbar-dark .navbar-nav .nav-link.disabled {
+ color: rgba(255, 255, 255, 0.25); }
+
+.navbar-dark .navbar-nav .show > .nav-link,
+.navbar-dark .navbar-nav .active > .nav-link,
+.navbar-dark .navbar-nav .nav-link.show,
+.navbar-dark .navbar-nav .nav-link.active {
+ color: #fff; }
+
+.navbar-dark .navbar-toggler {
+ color: rgba(255, 255, 255, 0.5);
+ border-color: rgba(255, 255, 255, 0.1); }
+
+.navbar-dark .navbar-toggler-icon {
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
+
+.navbar-dark .navbar-text {
+ color: rgba(255, 255, 255, 0.5); }
+ .navbar-dark .navbar-text a {
+ color: #fff; }
+ .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
+ color: #fff; }
+
+.card {
+ position: relative;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ min-width: 0;
+ word-wrap: break-word;
+ background-color: #fff;
+ background-clip: border-box;
+ border: 1px solid rgba(0, 0, 0, 0.125);
+ border-radius: 0.25rem; }
+ .card > hr {
+ margin-right: 0;
+ margin-left: 0; }
+ .card > .list-group:first-child .list-group-item:first-child {
+ border-top-left-radius: 0.25rem;
+ border-top-right-radius: 0.25rem; }
+ .card > .list-group:last-child .list-group-item:last-child {
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem; }
+
+.card-body {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ padding: 1.25rem; }
+
+.card-title {
+ margin-bottom: 0.75rem; }
+
+.card-subtitle {
+ margin-top: -0.375rem;
+ margin-bottom: 0; }
+
+.card-text:last-child {
+ margin-bottom: 0; }
+
+.card-link:hover {
+ text-decoration: none; }
+
+.card-link + .card-link {
+ margin-left: 1.25rem; }
+
+.card-header {
+ padding: 0.75rem 1.25rem;
+ margin-bottom: 0;
+ background-color: rgba(0, 0, 0, 0.03);
+ border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
+ .card-header:first-child {
+ border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }
+ .card-header + .list-group .list-group-item:first-child {
+ border-top: 0; }
+
+.card-footer {
+ padding: 0.75rem 1.25rem;
+ background-color: rgba(0, 0, 0, 0.03);
+ border-top: 1px solid rgba(0, 0, 0, 0.125); }
+ .card-footer:last-child {
+ border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }
+
+.card-header-tabs {
+ margin-right: -0.625rem;
+ margin-bottom: -0.75rem;
+ margin-left: -0.625rem;
+ border-bottom: 0; }
+
+.card-header-pills {
+ margin-right: -0.625rem;
+ margin-left: -0.625rem; }
+
+.card-img-overlay {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ padding: 1.25rem; }
+
+.card-img {
+ width: 100%;
+ border-radius: calc(0.25rem - 1px); }
+
+.card-img-top {
+ width: 100%;
+ border-top-left-radius: calc(0.25rem - 1px);
+ border-top-right-radius: calc(0.25rem - 1px); }
+
+.card-img-bottom {
+ width: 100%;
+ border-bottom-right-radius: calc(0.25rem - 1px);
+ border-bottom-left-radius: calc(0.25rem - 1px); }
+
+.card-deck {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column; }
+ .card-deck .card {
+ margin-bottom: 15px; }
+ @media (min-width: 576px) {
+ .card-deck {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap;
+ margin-right: -15px;
+ margin-left: -15px; }
+ .card-deck .card {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 1;
+ -ms-flex: 1 0 0%;
+ flex: 1 0 0%;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ margin-right: 15px;
+ margin-bottom: 0;
+ margin-left: 15px; } }
+
+.card-group {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column; }
+ .card-group > .card {
+ margin-bottom: 15px; }
+ @media (min-width: 576px) {
+ .card-group {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap; }
+ .card-group > .card {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 0 0%;
+ flex: 1 0 0%;
+ margin-bottom: 0; }
+ .card-group > .card + .card {
+ margin-left: 0;
+ border-left: 0; }
+ .card-group > .card:not(:last-child) {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0; }
+ .card-group > .card:not(:last-child) .card-img-top,
+ .card-group > .card:not(:last-child) .card-header {
+ border-top-right-radius: 0; }
+ .card-group > .card:not(:last-child) .card-img-bottom,
+ .card-group > .card:not(:last-child) .card-footer {
+ border-bottom-right-radius: 0; }
+ .card-group > .card:not(:first-child) {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0; }
+ .card-group > .card:not(:first-child) .card-img-top,
+ .card-group > .card:not(:first-child) .card-header {
+ border-top-left-radius: 0; }
+ .card-group > .card:not(:first-child) .card-img-bottom,
+ .card-group > .card:not(:first-child) .card-footer {
+ border-bottom-left-radius: 0; } }
+
+.card-columns .card {
+ margin-bottom: 0.75rem; }
+
+@media (min-width: 576px) {
+ .card-columns {
+ -webkit-column-count: 3;
+ column-count: 3;
+ -webkit-column-gap: 1.25rem;
+ column-gap: 1.25rem;
+ orphans: 1;
+ widows: 1; }
+ .card-columns .card {
+ display: inline-block;
+ width: 100%; } }
+
+.accordion > .card {
+ overflow: hidden; }
+ .accordion > .card:not(:first-of-type) .card-header:first-child {
+ border-radius: 0; }
+ .accordion > .card:not(:first-of-type):not(:last-of-type) {
+ border-bottom: 0;
+ border-radius: 0; }
+ .accordion > .card:first-of-type {
+ border-bottom: 0;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0; }
+ .accordion > .card:last-of-type {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0; }
+ .accordion > .card .card-header {
+ margin-bottom: -1px; }
+
+.breadcrumb {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ padding: 0.75rem 1rem;
+ margin-bottom: 1rem;
+ list-style: none;
+ background-color: #e9ecef;
+ border-radius: 0.25rem; }
+
+.breadcrumb-item + .breadcrumb-item {
+ padding-left: 0.5rem; }
+ .breadcrumb-item + .breadcrumb-item::before {
+ display: inline-block;
+ padding-right: 0.5rem;
+ color: #6c757d;
+ content: "/"; }
+
+.breadcrumb-item + .breadcrumb-item:hover::before {
+ text-decoration: underline; }
+
+.breadcrumb-item + .breadcrumb-item:hover::before {
+ text-decoration: none; }
+
+.breadcrumb-item.active {
+ color: #6c757d; }
+
+.pagination {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ padding-left: 0;
+ list-style: none;
+ border-radius: 0.25rem; }
+
+.page-link {
+ position: relative;
+ display: block;
+ padding: 0.5rem 0.75rem;
+ margin-left: -1px;
+ line-height: 1.25;
+ color: #C2E54F;
+ background-color: #fff;
+ border: 1px solid #dee2e6; }
+ .page-link:hover {
+ z-index: 2;
+ color: #a2ca1e;
+ text-decoration: none;
+ background-color: #e9ecef;
+ border-color: #dee2e6; }
+ .page-link:focus {
+ z-index: 2;
+ outline: 0;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.25); }
+
+.page-item:first-child .page-link {
+ margin-left: 0;
+ border-top-left-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem; }
+
+.page-item:last-child .page-link {
+ border-top-right-radius: 0.25rem;
+ border-bottom-right-radius: 0.25rem; }
+
+.page-item.active .page-link {
+ z-index: 1;
+ color: #fff;
+ background-color: #C2E54F;
+ border-color: #C2E54F; }
+
+.page-item.disabled .page-link {
+ color: #6c757d;
+ pointer-events: none;
+ cursor: auto;
+ background-color: #fff;
+ border-color: #dee2e6; }
+
+.pagination-lg .page-link {
+ padding: 0.75rem 1.5rem;
+ font-size: 1.25rem;
+ line-height: 1.5; }
+
+.pagination-lg .page-item:first-child .page-link {
+ border-top-left-radius: 0.3rem;
+ border-bottom-left-radius: 0.3rem; }
+
+.pagination-lg .page-item:last-child .page-link {
+ border-top-right-radius: 0.3rem;
+ border-bottom-right-radius: 0.3rem; }
+
+.pagination-sm .page-link {
+ padding: 0.25rem 0.5rem;
+ font-size: 0.875rem;
+ line-height: 1.5; }
+
+.pagination-sm .page-item:first-child .page-link {
+ border-top-left-radius: 0.2rem;
+ border-bottom-left-radius: 0.2rem; }
+
+.pagination-sm .page-item:last-child .page-link {
+ border-top-right-radius: 0.2rem;
+ border-bottom-right-radius: 0.2rem; }
+
+.badge {
+ display: inline-block;
+ padding: 0.25em 0.4em;
+ font-size: 75%;
+ font-weight: 700;
+ line-height: 1;
+ text-align: center;
+ white-space: nowrap;
+ vertical-align: baseline;
+ border-radius: 0.25rem;
+ -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
+ @media (prefers-reduced-motion: reduce) {
+ .badge {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+ a.badge:hover, a.badge:focus {
+ text-decoration: none; }
+ .badge:empty {
+ display: none; }
+
+.btn .badge {
+ position: relative;
+ top: -1px; }
+
+.badge-pill {
+ padding-right: 0.6em;
+ padding-left: 0.6em;
+ border-radius: 10rem; }
+
+.badge-primary {
+ color: #212529;
+ background-color: #C2E54F; }
+ a.badge-primary:hover, a.badge-primary:focus {
+ color: #212529;
+ background-color: #b3de23; }
+ a.badge-primary:focus, a.badge-primary.focus {
+ outline: 0;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(194, 229, 79, 0.5); }
+
+.badge-secondary {
+ color: #fff;
+ background-color: #6c757d; }
+ a.badge-secondary:hover, a.badge-secondary:focus {
+ color: #fff;
+ background-color: #545b62; }
+ a.badge-secondary:focus, a.badge-secondary.focus {
+ outline: 0;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
+
+.badge-success {
+ color: #212529;
+ background-color: #71bc42; }
+ a.badge-success:hover, a.badge-success:focus {
+ color: #212529;
+ background-color: #5a9635; }
+ a.badge-success:focus, a.badge-success.focus {
+ outline: 0;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(113, 188, 66, 0.5); }
+
+.badge-info {
+ color: #fff;
+ background-color: #17a2b8; }
+ a.badge-info:hover, a.badge-info:focus {
+ color: #fff;
+ background-color: #117a8b; }
+ a.badge-info:focus, a.badge-info.focus {
+ outline: 0;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
+
+.badge-warning {
+ color: #212529;
+ background-color: #ffc107; }
+ a.badge-warning:hover, a.badge-warning:focus {
+ color: #212529;
+ background-color: #d39e00; }
+ a.badge-warning:focus, a.badge-warning.focus {
+ outline: 0;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
+
+.badge-danger {
+ color: #fff;
+ background-color: #dc3545; }
+ a.badge-danger:hover, a.badge-danger:focus {
+ color: #fff;
+ background-color: #bd2130; }
+ a.badge-danger:focus, a.badge-danger.focus {
+ outline: 0;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
+
+.badge-light {
+ color: #212529;
+ background-color: #f8f9fa; }
+ a.badge-light:hover, a.badge-light:focus {
+ color: #212529;
+ background-color: #dae0e5; }
+ a.badge-light:focus, a.badge-light.focus {
+ outline: 0;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
+
+.badge-dark {
+ color: #fff;
+ background-color: #343a40; }
+ a.badge-dark:hover, a.badge-dark:focus {
+ color: #fff;
+ background-color: #1d2124; }
+ a.badge-dark:focus, a.badge-dark.focus {
+ outline: 0;
+ -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
+ box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
+
+.jumbotron {
+ padding: 2rem 1rem;
+ margin-bottom: 2rem;
+ background-color: #e9ecef;
+ border-radius: 0.3rem; }
+ @media (min-width: 576px) {
+ .jumbotron {
+ padding: 4rem 2rem; } }
+
+.jumbotron-fluid {
+ padding-right: 0;
+ padding-left: 0;
+ border-radius: 0; }
+
+.alert {
+ position: relative;
+ padding: 0.75rem 1.25rem;
+ margin-bottom: 1rem;
+ border: 1px solid transparent;
+ border-radius: 0.25rem; }
+
+.alert-heading {
+ color: inherit; }
+
+.alert-link {
+ font-weight: 700; }
+
+.alert-dismissible {
+ padding-right: 4rem; }
+ .alert-dismissible .close {
+ position: absolute;
+ top: 0;
+ right: 0;
+ padding: 0.75rem 1.25rem;
+ color: inherit; }
+
+.alert-primary {
+ color: #657729;
+ background-color: #f3fadc;
+ border-color: #eef8ce; }
+ .alert-primary hr {
+ border-top-color: #e6f5b8; }
+ .alert-primary .alert-link {
+ color: #45511c; }
+
+.alert-secondary {
+ color: #383d41;
+ background-color: #e2e3e5;
+ border-color: #d6d8db; }
+ .alert-secondary hr {
+ border-top-color: #c8cbcf; }
+ .alert-secondary .alert-link {
+ color: #202326; }
+
+.alert-success {
+ color: #3b6222;
+ background-color: #e3f2d9;
+ border-color: #d7ecca; }
+ .alert-success hr {
+ border-top-color: #c9e5b7; }
+ .alert-success .alert-link {
+ color: #243c15; }
+
+.alert-info {
+ color: #0c5460;
+ background-color: #d1ecf1;
+ border-color: #bee5eb; }
+ .alert-info hr {
+ border-top-color: #abdde5; }
+ .alert-info .alert-link {
+ color: #062c33; }
+
+.alert-warning {
+ color: #856404;
+ background-color: #fff3cd;
+ border-color: #ffeeba; }
+ .alert-warning hr {
+ border-top-color: #ffe8a1; }
+ .alert-warning .alert-link {
+ color: #533f03; }
+
+.alert-danger {
+ color: #721c24;
+ background-color: #f8d7da;
+ border-color: #f5c6cb; }
+ .alert-danger hr {
+ border-top-color: #f1b0b7; }
+ .alert-danger .alert-link {
+ color: #491217; }
+
+.alert-light {
+ color: #818182;
+ background-color: #fefefe;
+ border-color: #fdfdfe; }
+ .alert-light hr {
+ border-top-color: #ececf6; }
+ .alert-light .alert-link {
+ color: #686868; }
+
+.alert-dark {
+ color: #1b1e21;
+ background-color: #d6d8d9;
+ border-color: #c6c8ca; }
+ .alert-dark hr {
+ border-top-color: #b9bbbe; }
+ .alert-dark .alert-link {
+ color: #040505; }
+
+@-webkit-keyframes progress-bar-stripes {
+ from {
+ background-position: 1rem 0; }
+ to {
+ background-position: 0 0; } }
+
+@keyframes progress-bar-stripes {
+ from {
+ background-position: 1rem 0; }
+ to {
+ background-position: 0 0; } }
+
+.progress {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ height: 1rem;
+ overflow: hidden;
+ font-size: 0.75rem;
+ background-color: #e9ecef;
+ border-radius: 0.25rem; }
+
+.progress-bar {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ color: #fff;
+ text-align: center;
+ white-space: nowrap;
+ background-color: #C2E54F;
+ -webkit-transition: width 0.6s ease;
+ -o-transition: width 0.6s ease;
+ transition: width 0.6s ease; }
+ @media (prefers-reduced-motion: reduce) {
+ .progress-bar {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+
+.progress-bar-striped {
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+ background-size: 1rem 1rem; }
+
+.progress-bar-animated {
+ -webkit-animation: progress-bar-stripes 1s linear infinite;
+ animation: progress-bar-stripes 1s linear infinite; }
+ @media (prefers-reduced-motion: reduce) {
+ .progress-bar-animated {
+ -webkit-animation: none;
+ animation: none; } }
+
+.media {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start; }
+
+.media-body {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1; }
+
+.list-group {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ padding-left: 0;
+ margin-bottom: 0; }
+
+.list-group-item-action {
+ width: 100%;
+ color: #495057;
+ text-align: inherit; }
+ .list-group-item-action:hover, .list-group-item-action:focus {
+ z-index: 1;
+ color: #495057;
+ text-decoration: none;
+ background-color: #f8f9fa; }
+ .list-group-item-action:active {
+ color: #212529;
+ background-color: #e9ecef; }
+
+.list-group-item {
+ position: relative;
+ display: block;
+ padding: 0.75rem 1.25rem;
+ margin-bottom: -1px;
+ background-color: #fff;
+ border: 1px solid rgba(0, 0, 0, 0.125); }
+ .list-group-item:first-child {
+ border-top-left-radius: 0.25rem;
+ border-top-right-radius: 0.25rem; }
+ .list-group-item:last-child {
+ margin-bottom: 0;
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem; }
+ .list-group-item.disabled, .list-group-item:disabled {
+ color: #6c757d;
+ pointer-events: none;
+ background-color: #fff; }
+ .list-group-item.active {
+ z-index: 2;
+ color: #fff;
+ background-color: #C2E54F;
+ border-color: #C2E54F; }
+
+.list-group-horizontal {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row; }
+ .list-group-horizontal .list-group-item {
+ margin-right: -1px;
+ margin-bottom: 0; }
+ .list-group-horizontal .list-group-item:first-child {
+ border-top-left-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ border-top-right-radius: 0; }
+ .list-group-horizontal .list-group-item:last-child {
+ margin-right: 0;
+ border-top-right-radius: 0.25rem;
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0; }
+
+@media (min-width: 576px) {
+ .list-group-horizontal-sm {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row; }
+ .list-group-horizontal-sm .list-group-item {
+ margin-right: -1px;
+ margin-bottom: 0; }
+ .list-group-horizontal-sm .list-group-item:first-child {
+ border-top-left-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ border-top-right-radius: 0; }
+ .list-group-horizontal-sm .list-group-item:last-child {
+ margin-right: 0;
+ border-top-right-radius: 0.25rem;
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0; } }
+
+@media (min-width: 768px) {
+ .list-group-horizontal-md {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row; }
+ .list-group-horizontal-md .list-group-item {
+ margin-right: -1px;
+ margin-bottom: 0; }
+ .list-group-horizontal-md .list-group-item:first-child {
+ border-top-left-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ border-top-right-radius: 0; }
+ .list-group-horizontal-md .list-group-item:last-child {
+ margin-right: 0;
+ border-top-right-radius: 0.25rem;
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0; } }
+
+@media (min-width: 992px) {
+ .list-group-horizontal-lg {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row; }
+ .list-group-horizontal-lg .list-group-item {
+ margin-right: -1px;
+ margin-bottom: 0; }
+ .list-group-horizontal-lg .list-group-item:first-child {
+ border-top-left-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ border-top-right-radius: 0; }
+ .list-group-horizontal-lg .list-group-item:last-child {
+ margin-right: 0;
+ border-top-right-radius: 0.25rem;
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0; } }
+
+@media (min-width: 1200px) {
+ .list-group-horizontal-xl {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row; }
+ .list-group-horizontal-xl .list-group-item {
+ margin-right: -1px;
+ margin-bottom: 0; }
+ .list-group-horizontal-xl .list-group-item:first-child {
+ border-top-left-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ border-top-right-radius: 0; }
+ .list-group-horizontal-xl .list-group-item:last-child {
+ margin-right: 0;
+ border-top-right-radius: 0.25rem;
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0; } }
+
+.list-group-flush .list-group-item {
+ border-right: 0;
+ border-left: 0;
+ border-radius: 0; }
+ .list-group-flush .list-group-item:last-child {
+ margin-bottom: -1px; }
+
+.list-group-flush:first-child .list-group-item:first-child {
+ border-top: 0; }
+
+.list-group-flush:last-child .list-group-item:last-child {
+ margin-bottom: 0;
+ border-bottom: 0; }
+
+.list-group-item-primary {
+ color: #657729;
+ background-color: #eef8ce; }
+ .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
+ color: #657729;
+ background-color: #e6f5b8; }
+ .list-group-item-primary.list-group-item-action.active {
+ color: #fff;
+ background-color: #657729;
+ border-color: #657729; }
+
+.list-group-item-secondary {
+ color: #383d41;
+ background-color: #d6d8db; }
+ .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
+ color: #383d41;
+ background-color: #c8cbcf; }
+ .list-group-item-secondary.list-group-item-action.active {
+ color: #fff;
+ background-color: #383d41;
+ border-color: #383d41; }
+
+.list-group-item-success {
+ color: #3b6222;
+ background-color: #d7ecca; }
+ .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
+ color: #3b6222;
+ background-color: #c9e5b7; }
+ .list-group-item-success.list-group-item-action.active {
+ color: #fff;
+ background-color: #3b6222;
+ border-color: #3b6222; }
+
+.list-group-item-info {
+ color: #0c5460;
+ background-color: #bee5eb; }
+ .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
+ color: #0c5460;
+ background-color: #abdde5; }
+ .list-group-item-info.list-group-item-action.active {
+ color: #fff;
+ background-color: #0c5460;
+ border-color: #0c5460; }
+
+.list-group-item-warning {
+ color: #856404;
+ background-color: #ffeeba; }
+ .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
+ color: #856404;
+ background-color: #ffe8a1; }
+ .list-group-item-warning.list-group-item-action.active {
+ color: #fff;
+ background-color: #856404;
+ border-color: #856404; }
+
+.list-group-item-danger {
+ color: #721c24;
+ background-color: #f5c6cb; }
+ .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
+ color: #721c24;
+ background-color: #f1b0b7; }
+ .list-group-item-danger.list-group-item-action.active {
+ color: #fff;
+ background-color: #721c24;
+ border-color: #721c24; }
+
+.list-group-item-light {
+ color: #818182;
+ background-color: #fdfdfe; }
+ .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
+ color: #818182;
+ background-color: #ececf6; }
+ .list-group-item-light.list-group-item-action.active {
+ color: #fff;
+ background-color: #818182;
+ border-color: #818182; }
+
+.list-group-item-dark {
+ color: #1b1e21;
+ background-color: #c6c8ca; }
+ .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
+ color: #1b1e21;
+ background-color: #b9bbbe; }
+ .list-group-item-dark.list-group-item-action.active {
+ color: #fff;
+ background-color: #1b1e21;
+ border-color: #1b1e21; }
+
+.close {
+ float: right;
+ font-size: 1.5rem;
+ font-weight: 700;
+ line-height: 1;
+ color: #000;
+ text-shadow: 0 1px 0 #fff;
+ opacity: .5; }
+ .close:hover {
+ color: #000;
+ text-decoration: none; }
+ .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
+ opacity: .75; }
+
+button.close {
+ padding: 0;
+ background-color: transparent;
+ border: 0;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none; }
+
+a.close.disabled {
+ pointer-events: none; }
+
+.toast {
+ max-width: 350px;
+ overflow: hidden;
+ font-size: 0.875rem;
+ background-color: rgba(255, 255, 255, 0.85);
+ background-clip: padding-box;
+ border: 1px solid rgba(0, 0, 0, 0.1);
+ -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
+ box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
+ -webkit-backdrop-filter: blur(10px);
+ backdrop-filter: blur(10px);
+ opacity: 0;
+ border-radius: 0.25rem; }
+ .toast:not(:last-child) {
+ margin-bottom: 0.75rem; }
+ .toast.showing {
+ opacity: 1; }
+ .toast.show {
+ display: block;
+ opacity: 1; }
+ .toast.hide {
+ display: none; }
+
+.toast-header {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding: 0.25rem 0.75rem;
+ color: #6c757d;
+ background-color: rgba(255, 255, 255, 0.85);
+ background-clip: padding-box;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
+
+.toast-body {
+ padding: 0.75rem; }
+
+.modal-open {
+ overflow: hidden; }
+ .modal-open .modal {
+ overflow-x: hidden;
+ overflow-y: auto; }
+
+.modal {
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: 1050;
+ display: none;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+ outline: 0; }
+
+.modal-dialog {
+ position: relative;
+ width: auto;
+ margin: 0.5rem;
+ pointer-events: none; }
+ .modal.fade .modal-dialog {
+ -webkit-transition: -webkit-transform 0.3s ease-out;
+ transition: -webkit-transform 0.3s ease-out;
+ -o-transition: transform 0.3s ease-out;
+ transition: transform 0.3s ease-out;
+ transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
+ -webkit-transform: translate(0, -50px);
+ -ms-transform: translate(0, -50px);
+ transform: translate(0, -50px); }
+ @media (prefers-reduced-motion: reduce) {
+ .modal.fade .modal-dialog {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+ .modal.show .modal-dialog {
+ -webkit-transform: none;
+ -ms-transform: none;
+ transform: none; }
+
+.modal-dialog-scrollable {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ max-height: calc(100% - 1rem); }
+ .modal-dialog-scrollable .modal-content {
+ max-height: calc(100vh - 1rem);
+ overflow: hidden; }
+ .modal-dialog-scrollable .modal-header,
+ .modal-dialog-scrollable .modal-footer {
+ -ms-flex-negative: 0;
+ flex-shrink: 0; }
+ .modal-dialog-scrollable .modal-body {
+ overflow-y: auto; }
+
+.modal-dialog-centered {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ min-height: calc(100% - 1rem); }
+ .modal-dialog-centered::before {
+ display: block;
+ height: calc(100vh - 1rem);
+ content: ""; }
+ .modal-dialog-centered.modal-dialog-scrollable {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ height: 100%; }
+ .modal-dialog-centered.modal-dialog-scrollable .modal-content {
+ max-height: none; }
+ .modal-dialog-centered.modal-dialog-scrollable::before {
+ content: none; }
+
+.modal-content {
+ position: relative;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ width: 100%;
+ pointer-events: auto;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid rgba(0, 0, 0, 0.2);
+ border-radius: 0.3rem;
+ outline: 0; }
+
+.modal-backdrop {
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: 1040;
+ width: 100vw;
+ height: 100vh;
+ background-color: #000; }
+ .modal-backdrop.fade {
+ opacity: 0; }
+ .modal-backdrop.show {
+ opacity: 0.5; }
+
+.modal-header {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ padding: 1rem 1rem;
+ border-bottom: 1px solid #dee2e6;
+ border-top-left-radius: 0.3rem;
+ border-top-right-radius: 0.3rem; }
+ .modal-header .close {
+ padding: 1rem 1rem;
+ margin: -1rem -1rem -1rem auto; }
+
+.modal-title {
+ margin-bottom: 0;
+ line-height: 1.5; }
+
+.modal-body {
+ position: relative;
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ padding: 1rem; }
+
+.modal-footer {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ padding: 1rem;
+ border-top: 1px solid #dee2e6;
+ border-bottom-right-radius: 0.3rem;
+ border-bottom-left-radius: 0.3rem; }
+ .modal-footer > :not(:first-child) {
+ margin-left: .25rem; }
+ .modal-footer > :not(:last-child) {
+ margin-right: .25rem; }
+
+.modal-scrollbar-measure {
+ position: absolute;
+ top: -9999px;
+ width: 50px;
+ height: 50px;
+ overflow: scroll; }
+
+@media (min-width: 576px) {
+ .modal-dialog {
+ max-width: 500px;
+ margin: 1.75rem auto; }
+ .modal-dialog-scrollable {
+ max-height: calc(100% - 3.5rem); }
+ .modal-dialog-scrollable .modal-content {
+ max-height: calc(100vh - 3.5rem); }
+ .modal-dialog-centered {
+ min-height: calc(100% - 3.5rem); }
+ .modal-dialog-centered::before {
+ height: calc(100vh - 3.5rem); }
+ .modal-sm {
+ max-width: 300px; } }
+
+@media (min-width: 992px) {
+ .modal-lg,
+ .modal-xl {
+ max-width: 800px; } }
+
+@media (min-width: 1200px) {
+ .modal-xl {
+ max-width: 1140px; } }
+
+.tooltip {
+ position: absolute;
+ z-index: 1070;
+ display: block;
+ margin: 0;
+ font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+ font-style: normal;
+ font-weight: 400;
+ line-height: 1.5;
+ text-align: left;
+ text-align: start;
+ text-decoration: none;
+ text-shadow: none;
+ text-transform: none;
+ letter-spacing: normal;
+ word-break: normal;
+ word-spacing: normal;
+ white-space: normal;
+ line-break: auto;
+ font-size: 0.875rem;
+ word-wrap: break-word;
+ opacity: 0; }
+ .tooltip.show {
+ opacity: 0.9; }
+ .tooltip .arrow {
+ position: absolute;
+ display: block;
+ width: 0.8rem;
+ height: 0.4rem; }
+ .tooltip .arrow::before {
+ position: absolute;
+ content: "";
+ border-color: transparent;
+ border-style: solid; }
+
+.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
+ padding: 0.4rem 0; }
+ .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
+ bottom: 0; }
+ .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
+ top: 0;
+ border-width: 0.4rem 0.4rem 0;
+ border-top-color: #000; }
+
+.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
+ padding: 0 0.4rem; }
+ .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
+ left: 0;
+ width: 0.4rem;
+ height: 0.8rem; }
+ .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
+ right: 0;
+ border-width: 0.4rem 0.4rem 0.4rem 0;
+ border-right-color: #000; }
+
+.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
+ padding: 0.4rem 0; }
+ .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
+ top: 0; }
+ .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
+ bottom: 0;
+ border-width: 0 0.4rem 0.4rem;
+ border-bottom-color: #000; }
+
+.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
+ padding: 0 0.4rem; }
+ .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
+ right: 0;
+ width: 0.4rem;
+ height: 0.8rem; }
+ .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
+ left: 0;
+ border-width: 0.4rem 0 0.4rem 0.4rem;
+ border-left-color: #000; }
+
+.tooltip-inner {
+ max-width: 200px;
+ padding: 0.25rem 0.5rem;
+ color: #fff;
+ text-align: center;
+ background-color: #000;
+ border-radius: 0.25rem; }
+
+.popover {
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 1060;
+ display: block;
+ max-width: 276px;
+ font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+ font-style: normal;
+ font-weight: 400;
+ line-height: 1.5;
+ text-align: left;
+ text-align: start;
+ text-decoration: none;
+ text-shadow: none;
+ text-transform: none;
+ letter-spacing: normal;
+ word-break: normal;
+ word-spacing: normal;
+ white-space: normal;
+ line-break: auto;
+ font-size: 0.875rem;
+ word-wrap: break-word;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid rgba(0, 0, 0, 0.2);
+ border-radius: 0.3rem; }
+ .popover .arrow {
+ position: absolute;
+ display: block;
+ width: 1rem;
+ height: 0.5rem;
+ margin: 0 0.3rem; }
+ .popover .arrow::before, .popover .arrow::after {
+ position: absolute;
+ display: block;
+ content: "";
+ border-color: transparent;
+ border-style: solid; }
+
+.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
+ margin-bottom: 0.5rem; }
+ .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
+ bottom: calc((0.5rem + 1px) * -1); }
+ .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
+ bottom: 0;
+ border-width: 0.5rem 0.5rem 0;
+ border-top-color: rgba(0, 0, 0, 0.25); }
+ .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
+ bottom: 1px;
+ border-width: 0.5rem 0.5rem 0;
+ border-top-color: #fff; }
+
+.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
+ margin-left: 0.5rem; }
+ .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
+ left: calc((0.5rem + 1px) * -1);
+ width: 0.5rem;
+ height: 1rem;
+ margin: 0.3rem 0; }
+ .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
+ left: 0;
+ border-width: 0.5rem 0.5rem 0.5rem 0;
+ border-right-color: rgba(0, 0, 0, 0.25); }
+ .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
+ left: 1px;
+ border-width: 0.5rem 0.5rem 0.5rem 0;
+ border-right-color: #fff; }
+
+.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
+ margin-top: 0.5rem; }
+ .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
+ top: calc((0.5rem + 1px) * -1); }
+ .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
+ top: 0;
+ border-width: 0 0.5rem 0.5rem 0.5rem;
+ border-bottom-color: rgba(0, 0, 0, 0.25); }
+ .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
+ top: 1px;
+ border-width: 0 0.5rem 0.5rem 0.5rem;
+ border-bottom-color: #fff; }
+ .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
+ position: absolute;
+ top: 0;
+ left: 50%;
+ display: block;
+ width: 1rem;
+ margin-left: -0.5rem;
+ content: "";
+ border-bottom: 1px solid #f7f7f7; }
+
+.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
+ margin-right: 0.5rem; }
+ .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
+ right: calc((0.5rem + 1px) * -1);
+ width: 0.5rem;
+ height: 1rem;
+ margin: 0.3rem 0; }
+ .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
+ right: 0;
+ border-width: 0.5rem 0 0.5rem 0.5rem;
+ border-left-color: rgba(0, 0, 0, 0.25); }
+ .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
+ right: 1px;
+ border-width: 0.5rem 0 0.5rem 0.5rem;
+ border-left-color: #fff; }
+
+.popover-header {
+ padding: 0.5rem 0.75rem;
+ margin-bottom: 0;
+ font-size: 1rem;
+ background-color: #f7f7f7;
+ border-bottom: 1px solid #ebebeb;
+ border-top-left-radius: calc(0.3rem - 1px);
+ border-top-right-radius: calc(0.3rem - 1px); }
+ .popover-header:empty {
+ display: none; }
+
+.popover-body {
+ padding: 0.5rem 0.75rem;
+ color: #212529; }
+
+.carousel {
+ position: relative; }
+
+.carousel.pointer-event {
+ -ms-touch-action: pan-y;
+ touch-action: pan-y; }
+
+.carousel-inner {
+ position: relative;
+ width: 100%;
+ overflow: hidden; }
+ .carousel-inner::after {
+ display: block;
+ clear: both;
+ content: ""; }
+
+.carousel-item {
+ position: relative;
+ display: none;
+ float: left;
+ width: 100%;
+ margin-right: -100%;
+ -webkit-backface-visibility: hidden;
+ backface-visibility: hidden;
+ -webkit-transition: -webkit-transform 0.6s ease-in-out;
+ transition: -webkit-transform 0.6s ease-in-out;
+ -o-transition: transform 0.6s ease-in-out;
+ transition: transform 0.6s ease-in-out;
+ transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; }
+ @media (prefers-reduced-motion: reduce) {
+ .carousel-item {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+
+.carousel-item.active,
+.carousel-item-next,
+.carousel-item-prev {
+ display: block; }
+
+.carousel-item-next:not(.carousel-item-left),
+.active.carousel-item-right {
+ -webkit-transform: translateX(100%);
+ -ms-transform: translateX(100%);
+ transform: translateX(100%); }
+
+.carousel-item-prev:not(.carousel-item-right),
+.active.carousel-item-left {
+ -webkit-transform: translateX(-100%);
+ -ms-transform: translateX(-100%);
+ transform: translateX(-100%); }
+
+.carousel-fade .carousel-item {
+ opacity: 0;
+ -webkit-transition-property: opacity;
+ -o-transition-property: opacity;
+ transition-property: opacity;
+ -webkit-transform: none;
+ -ms-transform: none;
+ transform: none; }
+
+.carousel-fade .carousel-item.active,
+.carousel-fade .carousel-item-next.carousel-item-left,
+.carousel-fade .carousel-item-prev.carousel-item-right {
+ z-index: 1;
+ opacity: 1; }
+
+.carousel-fade .active.carousel-item-left,
+.carousel-fade .active.carousel-item-right {
+ z-index: 0;
+ opacity: 0;
+ -webkit-transition: 0s 0.6s opacity;
+ -o-transition: 0s 0.6s opacity;
+ transition: 0s 0.6s opacity; }
+ @media (prefers-reduced-motion: reduce) {
+ .carousel-fade .active.carousel-item-left,
+ .carousel-fade .active.carousel-item-right {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+
+.carousel-control-prev,
+.carousel-control-next {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ z-index: 1;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ width: 15%;
+ color: #fff;
+ text-align: center;
+ opacity: 0.5;
+ -webkit-transition: opacity 0.15s ease;
+ -o-transition: opacity 0.15s ease;
+ transition: opacity 0.15s ease; }
+ @media (prefers-reduced-motion: reduce) {
+ .carousel-control-prev,
+ .carousel-control-next {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+ .carousel-control-prev:hover, .carousel-control-prev:focus,
+ .carousel-control-next:hover,
+ .carousel-control-next:focus {
+ color: #fff;
+ text-decoration: none;
+ outline: 0;
+ opacity: 0.9; }
+
+.carousel-control-prev {
+ left: 0; }
+
+.carousel-control-next {
+ right: 0; }
+
+.carousel-control-prev-icon,
+.carousel-control-next-icon {
+ display: inline-block;
+ width: 20px;
+ height: 20px;
+ background: no-repeat 50% / 100% 100%; }
+
+.carousel-control-prev-icon {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); }
+
+.carousel-control-next-icon {
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); }
+
+.carousel-indicators {
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 15;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ padding-left: 0;
+ margin-right: 15%;
+ margin-left: 15%;
+ list-style: none; }
+ .carousel-indicators li {
+ -webkit-box-sizing: content-box;
+ box-sizing: content-box;
+ -webkit-box-flex: 0;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto;
+ width: 30px;
+ height: 3px;
+ margin-right: 3px;
+ margin-left: 3px;
+ text-indent: -999px;
+ cursor: pointer;
+ background-color: #fff;
+ background-clip: padding-box;
+ border-top: 10px solid transparent;
+ border-bottom: 10px solid transparent;
+ opacity: .5;
+ -webkit-transition: opacity 0.6s ease;
+ -o-transition: opacity 0.6s ease;
+ transition: opacity 0.6s ease; }
+ @media (prefers-reduced-motion: reduce) {
+ .carousel-indicators li {
+ -webkit-transition: none;
+ -o-transition: none;
+ transition: none; } }
+ .carousel-indicators .active {
+ opacity: 1; }
+
+.carousel-caption {
+ position: absolute;
+ right: 15%;
+ bottom: 20px;
+ left: 15%;
+ z-index: 10;
+ padding-top: 20px;
+ padding-bottom: 20px;
+ color: #fff;
+ text-align: center; }
+
+@-webkit-keyframes spinner-border {
+ to {
+ -webkit-transform: rotate(360deg);
+ transform: rotate(360deg); } }
+
+@keyframes spinner-border {
+ to {
+ -webkit-transform: rotate(360deg);
+ transform: rotate(360deg); } }
+
+.spinner-border {
+ display: inline-block;
+ width: 2rem;
+ height: 2rem;
+ vertical-align: text-bottom;
+ border: 0.25em solid currentColor;
+ border-right-color: transparent;
+ border-radius: 50%;
+ -webkit-animation: spinner-border .75s linear infinite;
+ animation: spinner-border .75s linear infinite; }
+
+.spinner-border-sm {
+ width: 1rem;
+ height: 1rem;
+ border-width: 0.2em; }
+
+@-webkit-keyframes spinner-grow {
+ 0% {
+ -webkit-transform: scale(0);
+ transform: scale(0); }
+ 50% {
+ opacity: 1; } }
+
+@keyframes spinner-grow {
+ 0% {
+ -webkit-transform: scale(0);
+ transform: scale(0); }
+ 50% {
+ opacity: 1; } }
+
+.spinner-grow {
+ display: inline-block;
+ width: 2rem;
+ height: 2rem;
+ vertical-align: text-bottom;
+ background-color: currentColor;
+ border-radius: 50%;
+ opacity: 0;
+ -webkit-animation: spinner-grow .75s linear infinite;
+ animation: spinner-grow .75s linear infinite; }
+
+.spinner-grow-sm {
+ width: 1rem;
+ height: 1rem; }
+
+.align-baseline {
+ vertical-align: baseline !important; }
+
+.align-top {
+ vertical-align: top !important; }
+
+.align-middle {
+ vertical-align: middle !important; }
+
+.align-bottom {
+ vertical-align: bottom !important; }
+
+.align-text-bottom {
+ vertical-align: text-bottom !important; }
+
+.align-text-top {
+ vertical-align: text-top !important; }
+
+.bg-primary {
+ background-color: #C2E54F !important; }
+
+a.bg-primary:hover, a.bg-primary:focus,
+button.bg-primary:hover,
+button.bg-primary:focus {
+ background-color: #b3de23 !important; }
+
+.bg-secondary {
+ background-color: #6c757d !important; }
+
+a.bg-secondary:hover, a.bg-secondary:focus,
+button.bg-secondary:hover,
+button.bg-secondary:focus {
+ background-color: #545b62 !important; }
+
+.bg-success {
+ background-color: #71bc42 !important; }
+
+a.bg-success:hover, a.bg-success:focus,
+button.bg-success:hover,
+button.bg-success:focus {
+ background-color: #5a9635 !important; }
+
+.bg-info {
+ background-color: #17a2b8 !important; }
+
+a.bg-info:hover, a.bg-info:focus,
+button.bg-info:hover,
+button.bg-info:focus {
+ background-color: #117a8b !important; }
+
+.bg-warning {
+ background-color: #ffc107 !important; }
+
+a.bg-warning:hover, a.bg-warning:focus,
+button.bg-warning:hover,
+button.bg-warning:focus {
+ background-color: #d39e00 !important; }
+
+.bg-danger {
+ background-color: #dc3545 !important; }
+
+a.bg-danger:hover, a.bg-danger:focus,
+button.bg-danger:hover,
+button.bg-danger:focus {
+ background-color: #bd2130 !important; }
+
+.bg-light {
+ background-color: #f8f9fa !important; }
+
+a.bg-light:hover, a.bg-light:focus,
+button.bg-light:hover,
+button.bg-light:focus {
+ background-color: #dae0e5 !important; }
+
+.bg-dark {
+ background-color: #343a40 !important; }
+
+a.bg-dark:hover, a.bg-dark:focus,
+button.bg-dark:hover,
+button.bg-dark:focus {
+ background-color: #1d2124 !important; }
+
+.bg-white {
+ background-color: #fff !important; }
+
+.bg-transparent {
+ background-color: transparent !important; }
+
+.border {
+ border: 1px solid #dee2e6 !important; }
+
+.border-top {
+ border-top: 1px solid #dee2e6 !important; }
+
+.border-right {
+ border-right: 1px solid #dee2e6 !important; }
+
+.border-bottom {
+ border-bottom: 1px solid #dee2e6 !important; }
+
+.border-left {
+ border-left: 1px solid #dee2e6 !important; }
+
+.border-0 {
+ border: 0 !important; }
+
+.border-top-0 {
+ border-top: 0 !important; }
+
+.border-right-0 {
+ border-right: 0 !important; }
+
+.border-bottom-0 {
+ border-bottom: 0 !important; }
+
+.border-left-0 {
+ border-left: 0 !important; }
+
+.border-primary {
+ border-color: #C2E54F !important; }
+
+.border-secondary {
+ border-color: #6c757d !important; }
+
+.border-success {
+ border-color: #71bc42 !important; }
+
+.border-info {
+ border-color: #17a2b8 !important; }
+
+.border-warning {
+ border-color: #ffc107 !important; }
+
+.border-danger {
+ border-color: #dc3545 !important; }
+
+.border-light {
+ border-color: #f8f9fa !important; }
+
+.border-dark {
+ border-color: #343a40 !important; }
+
+.border-white {
+ border-color: #fff !important; }
+
+.rounded-sm {
+ border-radius: 0.2rem !important; }
+
+.rounded {
+ border-radius: 0.25rem !important; }
+
+.rounded-top {
+ border-top-left-radius: 0.25rem !important;
+ border-top-right-radius: 0.25rem !important; }
+
+.rounded-right {
+ border-top-right-radius: 0.25rem !important;
+ border-bottom-right-radius: 0.25rem !important; }
+
+.rounded-bottom {
+ border-bottom-right-radius: 0.25rem !important;
+ border-bottom-left-radius: 0.25rem !important; }
+
+.rounded-left {
+ border-top-left-radius: 0.25rem !important;
+ border-bottom-left-radius: 0.25rem !important; }
+
+.rounded-lg {
+ border-radius: 0.3rem !important; }
+
+.rounded-circle {
+ border-radius: 50% !important; }
+
+.rounded-pill {
+ border-radius: 50rem !important; }
+
+.rounded-0 {
+ border-radius: 0 !important; }
+
+.clearfix::after {
+ display: block;
+ clear: both;
+ content: ""; }
+
+.d-none {
+ display: none !important; }
+
+.d-inline {
+ display: inline !important; }
+
+.d-inline-block {
+ display: inline-block !important; }
+
+.d-block {
+ display: block !important; }
+
+.d-table {
+ display: table !important; }
+
+.d-table-row {
+ display: table-row !important; }
+
+.d-table-cell {
+ display: table-cell !important; }
+
+.d-flex {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important; }
+
+.d-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important; }
+
+@media (min-width: 576px) {
+ .d-sm-none {
+ display: none !important; }
+ .d-sm-inline {
+ display: inline !important; }
+ .d-sm-inline-block {
+ display: inline-block !important; }
+ .d-sm-block {
+ display: block !important; }
+ .d-sm-table {
+ display: table !important; }
+ .d-sm-table-row {
+ display: table-row !important; }
+ .d-sm-table-cell {
+ display: table-cell !important; }
+ .d-sm-flex {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important; }
+ .d-sm-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important; } }
+
+@media (min-width: 768px) {
+ .d-md-none {
+ display: none !important; }
+ .d-md-inline {
+ display: inline !important; }
+ .d-md-inline-block {
+ display: inline-block !important; }
+ .d-md-block {
+ display: block !important; }
+ .d-md-table {
+ display: table !important; }
+ .d-md-table-row {
+ display: table-row !important; }
+ .d-md-table-cell {
+ display: table-cell !important; }
+ .d-md-flex {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important; }
+ .d-md-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important; } }
+
+@media (min-width: 992px) {
+ .d-lg-none {
+ display: none !important; }
+ .d-lg-inline {
+ display: inline !important; }
+ .d-lg-inline-block {
+ display: inline-block !important; }
+ .d-lg-block {
+ display: block !important; }
+ .d-lg-table {
+ display: table !important; }
+ .d-lg-table-row {
+ display: table-row !important; }
+ .d-lg-table-cell {
+ display: table-cell !important; }
+ .d-lg-flex {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important; }
+ .d-lg-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important; } }
+
+@media (min-width: 1200px) {
+ .d-xl-none {
+ display: none !important; }
+ .d-xl-inline {
+ display: inline !important; }
+ .d-xl-inline-block {
+ display: inline-block !important; }
+ .d-xl-block {
+ display: block !important; }
+ .d-xl-table {
+ display: table !important; }
+ .d-xl-table-row {
+ display: table-row !important; }
+ .d-xl-table-cell {
+ display: table-cell !important; }
+ .d-xl-flex {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important; }
+ .d-xl-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important; } }
+
+@media print {
+ .d-print-none {
+ display: none !important; }
+ .d-print-inline {
+ display: inline !important; }
+ .d-print-inline-block {
+ display: inline-block !important; }
+ .d-print-block {
+ display: block !important; }
+ .d-print-table {
+ display: table !important; }
+ .d-print-table-row {
+ display: table-row !important; }
+ .d-print-table-cell {
+ display: table-cell !important; }
+ .d-print-flex {
+ display: -webkit-box !important;
+ display: -ms-flexbox !important;
+ display: flex !important; }
+ .d-print-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important; } }
+
+.embed-responsive {
+ position: relative;
+ display: block;
+ width: 100%;
+ padding: 0;
+ overflow: hidden; }
+ .embed-responsive::before {
+ display: block;
+ content: ""; }
+ .embed-responsive .embed-responsive-item,
+ .embed-responsive iframe,
+ .embed-responsive embed,
+ .embed-responsive object,
+ .embed-responsive video {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ border: 0; }
+
+.embed-responsive-21by9::before {
+ padding-top: 42.85714%; }
+
+.embed-responsive-16by9::before {
+ padding-top: 56.25%; }
+
+.embed-responsive-4by3::before {
+ padding-top: 75%; }
+
+.embed-responsive-1by1::before {
+ padding-top: 100%; }
+
+.flex-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important; }
+
+.flex-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important; }
+
+.flex-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important; }
+
+.flex-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important; }
+
+.flex-wrap {
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important; }
+
+.flex-nowrap {
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important; }
+
+.flex-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important; }
+
+.flex-fill {
+ -webkit-box-flex: 1 !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important; }
+
+.flex-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important; }
+
+.flex-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important; }
+
+.flex-shrink-0 {
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important; }
+
+.flex-shrink-1 {
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important; }
+
+.justify-content-start {
+ -webkit-box-pack: start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important; }
+
+.justify-content-end {
+ -webkit-box-pack: end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important; }
+
+.justify-content-center {
+ -webkit-box-pack: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important; }
+
+.justify-content-between {
+ -webkit-box-pack: justify !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important; }
+
+.justify-content-around {
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important; }
+
+.align-items-start {
+ -webkit-box-align: start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important; }
+
+.align-items-end {
+ -webkit-box-align: end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important; }
+
+.align-items-center {
+ -webkit-box-align: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important; }
+
+.align-items-baseline {
+ -webkit-box-align: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important; }
+
+.align-items-stretch {
+ -webkit-box-align: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important; }
+
+.align-content-start {
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important; }
+
+.align-content-end {
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important; }
+
+.align-content-center {
+ -ms-flex-line-pack: center !important;
+ align-content: center !important; }
+
+.align-content-between {
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important; }
+
+.align-content-around {
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important; }
+
+.align-content-stretch {
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important; }
+
+.align-self-auto {
+ -ms-flex-item-align: auto !important;
+ -ms-grid-row-align: auto !important;
+ align-self: auto !important; }
+
+.align-self-start {
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important; }
+
+.align-self-end {
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important; }
+
+.align-self-center {
+ -ms-flex-item-align: center !important;
+ -ms-grid-row-align: center !important;
+ align-self: center !important; }
+
+.align-self-baseline {
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important; }
+
+.align-self-stretch {
+ -ms-flex-item-align: stretch !important;
+ -ms-grid-row-align: stretch !important;
+ align-self: stretch !important; }
+
+@media (min-width: 576px) {
+ .flex-sm-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important; }
+ .flex-sm-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important; }
+ .flex-sm-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important; }
+ .flex-sm-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important; }
+ .flex-sm-wrap {
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important; }
+ .flex-sm-nowrap {
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important; }
+ .flex-sm-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important; }
+ .flex-sm-fill {
+ -webkit-box-flex: 1 !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important; }
+ .flex-sm-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important; }
+ .flex-sm-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important; }
+ .flex-sm-shrink-0 {
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important; }
+ .flex-sm-shrink-1 {
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important; }
+ .justify-content-sm-start {
+ -webkit-box-pack: start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important; }
+ .justify-content-sm-end {
+ -webkit-box-pack: end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important; }
+ .justify-content-sm-center {
+ -webkit-box-pack: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important; }
+ .justify-content-sm-between {
+ -webkit-box-pack: justify !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important; }
+ .justify-content-sm-around {
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important; }
+ .align-items-sm-start {
+ -webkit-box-align: start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important; }
+ .align-items-sm-end {
+ -webkit-box-align: end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important; }
+ .align-items-sm-center {
+ -webkit-box-align: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important; }
+ .align-items-sm-baseline {
+ -webkit-box-align: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important; }
+ .align-items-sm-stretch {
+ -webkit-box-align: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important; }
+ .align-content-sm-start {
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important; }
+ .align-content-sm-end {
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important; }
+ .align-content-sm-center {
+ -ms-flex-line-pack: center !important;
+ align-content: center !important; }
+ .align-content-sm-between {
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important; }
+ .align-content-sm-around {
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important; }
+ .align-content-sm-stretch {
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important; }
+ .align-self-sm-auto {
+ -ms-flex-item-align: auto !important;
+ -ms-grid-row-align: auto !important;
+ align-self: auto !important; }
+ .align-self-sm-start {
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important; }
+ .align-self-sm-end {
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important; }
+ .align-self-sm-center {
+ -ms-flex-item-align: center !important;
+ -ms-grid-row-align: center !important;
+ align-self: center !important; }
+ .align-self-sm-baseline {
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important; }
+ .align-self-sm-stretch {
+ -ms-flex-item-align: stretch !important;
+ -ms-grid-row-align: stretch !important;
+ align-self: stretch !important; } }
+
+@media (min-width: 768px) {
+ .flex-md-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important; }
+ .flex-md-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important; }
+ .flex-md-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important; }
+ .flex-md-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important; }
+ .flex-md-wrap {
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important; }
+ .flex-md-nowrap {
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important; }
+ .flex-md-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important; }
+ .flex-md-fill {
+ -webkit-box-flex: 1 !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important; }
+ .flex-md-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important; }
+ .flex-md-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important; }
+ .flex-md-shrink-0 {
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important; }
+ .flex-md-shrink-1 {
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important; }
+ .justify-content-md-start {
+ -webkit-box-pack: start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important; }
+ .justify-content-md-end {
+ -webkit-box-pack: end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important; }
+ .justify-content-md-center {
+ -webkit-box-pack: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important; }
+ .justify-content-md-between {
+ -webkit-box-pack: justify !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important; }
+ .justify-content-md-around {
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important; }
+ .align-items-md-start {
+ -webkit-box-align: start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important; }
+ .align-items-md-end {
+ -webkit-box-align: end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important; }
+ .align-items-md-center {
+ -webkit-box-align: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important; }
+ .align-items-md-baseline {
+ -webkit-box-align: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important; }
+ .align-items-md-stretch {
+ -webkit-box-align: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important; }
+ .align-content-md-start {
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important; }
+ .align-content-md-end {
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important; }
+ .align-content-md-center {
+ -ms-flex-line-pack: center !important;
+ align-content: center !important; }
+ .align-content-md-between {
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important; }
+ .align-content-md-around {
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important; }
+ .align-content-md-stretch {
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important; }
+ .align-self-md-auto {
+ -ms-flex-item-align: auto !important;
+ -ms-grid-row-align: auto !important;
+ align-self: auto !important; }
+ .align-self-md-start {
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important; }
+ .align-self-md-end {
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important; }
+ .align-self-md-center {
+ -ms-flex-item-align: center !important;
+ -ms-grid-row-align: center !important;
+ align-self: center !important; }
+ .align-self-md-baseline {
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important; }
+ .align-self-md-stretch {
+ -ms-flex-item-align: stretch !important;
+ -ms-grid-row-align: stretch !important;
+ align-self: stretch !important; } }
+
+@media (min-width: 992px) {
+ .flex-lg-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important; }
+ .flex-lg-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important; }
+ .flex-lg-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important; }
+ .flex-lg-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important; }
+ .flex-lg-wrap {
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important; }
+ .flex-lg-nowrap {
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important; }
+ .flex-lg-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important; }
+ .flex-lg-fill {
+ -webkit-box-flex: 1 !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important; }
+ .flex-lg-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important; }
+ .flex-lg-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important; }
+ .flex-lg-shrink-0 {
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important; }
+ .flex-lg-shrink-1 {
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important; }
+ .justify-content-lg-start {
+ -webkit-box-pack: start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important; }
+ .justify-content-lg-end {
+ -webkit-box-pack: end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important; }
+ .justify-content-lg-center {
+ -webkit-box-pack: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important; }
+ .justify-content-lg-between {
+ -webkit-box-pack: justify !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important; }
+ .justify-content-lg-around {
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important; }
+ .align-items-lg-start {
+ -webkit-box-align: start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important; }
+ .align-items-lg-end {
+ -webkit-box-align: end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important; }
+ .align-items-lg-center {
+ -webkit-box-align: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important; }
+ .align-items-lg-baseline {
+ -webkit-box-align: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important; }
+ .align-items-lg-stretch {
+ -webkit-box-align: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important; }
+ .align-content-lg-start {
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important; }
+ .align-content-lg-end {
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important; }
+ .align-content-lg-center {
+ -ms-flex-line-pack: center !important;
+ align-content: center !important; }
+ .align-content-lg-between {
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important; }
+ .align-content-lg-around {
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important; }
+ .align-content-lg-stretch {
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important; }
+ .align-self-lg-auto {
+ -ms-flex-item-align: auto !important;
+ -ms-grid-row-align: auto !important;
+ align-self: auto !important; }
+ .align-self-lg-start {
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important; }
+ .align-self-lg-end {
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important; }
+ .align-self-lg-center {
+ -ms-flex-item-align: center !important;
+ -ms-grid-row-align: center !important;
+ align-self: center !important; }
+ .align-self-lg-baseline {
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important; }
+ .align-self-lg-stretch {
+ -ms-flex-item-align: stretch !important;
+ -ms-grid-row-align: stretch !important;
+ align-self: stretch !important; } }
+
+@media (min-width: 1200px) {
+ .flex-xl-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important; }
+ .flex-xl-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: normal !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important; }
+ .flex-xl-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important; }
+ .flex-xl-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important; }
+ .flex-xl-wrap {
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important; }
+ .flex-xl-nowrap {
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important; }
+ .flex-xl-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important; }
+ .flex-xl-fill {
+ -webkit-box-flex: 1 !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important; }
+ .flex-xl-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important; }
+ .flex-xl-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important; }
+ .flex-xl-shrink-0 {
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important; }
+ .flex-xl-shrink-1 {
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important; }
+ .justify-content-xl-start {
+ -webkit-box-pack: start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important; }
+ .justify-content-xl-end {
+ -webkit-box-pack: end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important; }
+ .justify-content-xl-center {
+ -webkit-box-pack: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important; }
+ .justify-content-xl-between {
+ -webkit-box-pack: justify !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important; }
+ .justify-content-xl-around {
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important; }
+ .align-items-xl-start {
+ -webkit-box-align: start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important; }
+ .align-items-xl-end {
+ -webkit-box-align: end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important; }
+ .align-items-xl-center {
+ -webkit-box-align: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important; }
+ .align-items-xl-baseline {
+ -webkit-box-align: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important; }
+ .align-items-xl-stretch {
+ -webkit-box-align: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important; }
+ .align-content-xl-start {
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important; }
+ .align-content-xl-end {
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important; }
+ .align-content-xl-center {
+ -ms-flex-line-pack: center !important;
+ align-content: center !important; }
+ .align-content-xl-between {
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important; }
+ .align-content-xl-around {
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important; }
+ .align-content-xl-stretch {
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important; }
+ .align-self-xl-auto {
+ -ms-flex-item-align: auto !important;
+ -ms-grid-row-align: auto !important;
+ align-self: auto !important; }
+ .align-self-xl-start {
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important; }
+ .align-self-xl-end {
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important; }
+ .align-self-xl-center {
+ -ms-flex-item-align: center !important;
+ -ms-grid-row-align: center !important;
+ align-self: center !important; }
+ .align-self-xl-baseline {
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important; }
+ .align-self-xl-stretch {
+ -ms-flex-item-align: stretch !important;
+ -ms-grid-row-align: stretch !important;
+ align-self: stretch !important; } }
+
+.float-left {
+ float: left !important; }
+
+.float-right {
+ float: right !important; }
+
+.float-none {
+ float: none !important; }
+
+@media (min-width: 576px) {
+ .float-sm-left {
+ float: left !important; }
+ .float-sm-right {
+ float: right !important; }
+ .float-sm-none {
+ float: none !important; } }
+
+@media (min-width: 768px) {
+ .float-md-left {
+ float: left !important; }
+ .float-md-right {
+ float: right !important; }
+ .float-md-none {
+ float: none !important; } }
+
+@media (min-width: 992px) {
+ .float-lg-left {
+ float: left !important; }
+ .float-lg-right {
+ float: right !important; }
+ .float-lg-none {
+ float: none !important; } }
+
+@media (min-width: 1200px) {
+ .float-xl-left {
+ float: left !important; }
+ .float-xl-right {
+ float: right !important; }
+ .float-xl-none {
+ float: none !important; } }
+
+.overflow-auto {
+ overflow: auto !important; }
+
+.overflow-hidden {
+ overflow: hidden !important; }
+
+.position-static {
+ position: static !important; }
+
+.position-relative {
+ position: relative !important; }
+
+.position-absolute {
+ position: absolute !important; }
+
+.position-fixed {
+ position: fixed !important; }
+
+.position-sticky {
+ position: -webkit-sticky !important;
+ position: sticky !important; }
+
+.fixed-top {
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ z-index: 1030; }
+
+.fixed-bottom {
+ position: fixed;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1030; }
+
+@supports ((position: -webkit-sticky) or (position: sticky)) {
+ .sticky-top {
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ z-index: 1020; } }
+
+.sr-only {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ white-space: nowrap;
+ border: 0; }
+
+.sr-only-focusable:active, .sr-only-focusable:focus {
+ position: static;
+ width: auto;
+ height: auto;
+ overflow: visible;
+ clip: auto;
+ white-space: normal; }
+
+.shadow-sm {
+ -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
+ box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }
+
+.shadow {
+ -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
+ box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
+
+.shadow-lg {
+ -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
+ box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }
+
+.shadow-none {
+ -webkit-box-shadow: none !important;
+ box-shadow: none !important; }
+
+.w-25 {
+ width: 25% !important; }
+
+.w-50 {
+ width: 50% !important; }
+
+.w-75 {
+ width: 75% !important; }
+
+.w-100 {
+ width: 100% !important; }
+
+.w-auto {
+ width: auto !important; }
+
+.h-25 {
+ height: 25% !important; }
+
+.h-50 {
+ height: 50% !important; }
+
+.h-75 {
+ height: 75% !important; }
+
+.h-100 {
+ height: 100% !important; }
+
+.h-auto {
+ height: auto !important; }
+
+.mw-100 {
+ max-width: 100% !important; }
+
+.mh-100 {
+ max-height: 100% !important; }
+
+.min-vw-100 {
+ min-width: 100vw !important; }
+
+.min-vh-100 {
+ min-height: 100vh !important; }
+
+.vw-100 {
+ width: 100vw !important; }
+
+.vh-100 {
+ height: 100vh !important; }
+
+.stretched-link::after {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1;
+ pointer-events: auto;
+ content: "";
+ background-color: rgba(0, 0, 0, 0); }
+
+.m-0 {
+ margin: 0 !important; }
+
+.mt-0,
+.my-0 {
+ margin-top: 0 !important; }
+
+.mr-0,
+.mx-0 {
+ margin-right: 0 !important; }
+
+.mb-0,
+.my-0 {
+ margin-bottom: 0 !important; }
+
+.ml-0,
+.mx-0 {
+ margin-left: 0 !important; }
+
+.m-1 {
+ margin: 0.25rem !important; }
+
+.mt-1,
+.my-1 {
+ margin-top: 0.25rem !important; }
+
+.mr-1,
+.mx-1 {
+ margin-right: 0.25rem !important; }
+
+.mb-1,
+.my-1 {
+ margin-bottom: 0.25rem !important; }
+
+.ml-1,
+.mx-1 {
+ margin-left: 0.25rem !important; }
+
+.m-2 {
+ margin: 0.5rem !important; }
+
+.mt-2,
+.my-2 {
+ margin-top: 0.5rem !important; }
+
+.mr-2,
+.mx-2 {
+ margin-right: 0.5rem !important; }
+
+.mb-2,
+.my-2 {
+ margin-bottom: 0.5rem !important; }
+
+.ml-2,
+.mx-2 {
+ margin-left: 0.5rem !important; }
+
+.m-3 {
+ margin: 1rem !important; }
+
+.mt-3,
+.my-3 {
+ margin-top: 1rem !important; }
+
+.mr-3,
+.mx-3 {
+ margin-right: 1rem !important; }
+
+.mb-3,
+.my-3 {
+ margin-bottom: 1rem !important; }
+
+.ml-3,
+.mx-3 {
+ margin-left: 1rem !important; }
+
+.m-4 {
+ margin: 1.5rem !important; }
+
+.mt-4,
+.my-4 {
+ margin-top: 1.5rem !important; }
+
+.mr-4,
+.mx-4 {
+ margin-right: 1.5rem !important; }
+
+.mb-4,
+.my-4 {
+ margin-bottom: 1.5rem !important; }
+
+.ml-4,
+.mx-4 {
+ margin-left: 1.5rem !important; }
+
+.m-5 {
+ margin: 3rem !important; }
+
+.mt-5,
+.my-5 {
+ margin-top: 3rem !important; }
+
+.mr-5,
+.mx-5 {
+ margin-right: 3rem !important; }
+
+.mb-5,
+.my-5 {
+ margin-bottom: 3rem !important; }
+
+.ml-5,
+.mx-5 {
+ margin-left: 3rem !important; }
+
+.p-0 {
+ padding: 0 !important; }
+
+.pt-0,
+.py-0 {
+ padding-top: 0 !important; }
+
+.pr-0,
+.px-0 {
+ padding-right: 0 !important; }
+
+.pb-0,
+.py-0 {
+ padding-bottom: 0 !important; }
+
+.pl-0,
+.px-0 {
+ padding-left: 0 !important; }
+
+.p-1 {
+ padding: 0.25rem !important; }
+
+.pt-1,
+.py-1 {
+ padding-top: 0.25rem !important; }
+
+.pr-1,
+.px-1 {
+ padding-right: 0.25rem !important; }
+
+.pb-1,
+.py-1 {
+ padding-bottom: 0.25rem !important; }
+
+.pl-1,
+.px-1 {
+ padding-left: 0.25rem !important; }
+
+.p-2 {
+ padding: 0.5rem !important; }
+
+.pt-2,
+.py-2 {
+ padding-top: 0.5rem !important; }
+
+.pr-2,
+.px-2 {
+ padding-right: 0.5rem !important; }
+
+.pb-2,
+.py-2 {
+ padding-bottom: 0.5rem !important; }
+
+.pl-2,
+.px-2 {
+ padding-left: 0.5rem !important; }
+
+.p-3 {
+ padding: 1rem !important; }
+
+.pt-3,
+.py-3 {
+ padding-top: 1rem !important; }
+
+.pr-3,
+.px-3 {
+ padding-right: 1rem !important; }
+
+.pb-3,
+.py-3 {
+ padding-bottom: 1rem !important; }
+
+.pl-3,
+.px-3 {
+ padding-left: 1rem !important; }
+
+.p-4 {
+ padding: 1.5rem !important; }
+
+.pt-4,
+.py-4 {
+ padding-top: 1.5rem !important; }
+
+.pr-4,
+.px-4 {
+ padding-right: 1.5rem !important; }
+
+.pb-4,
+.py-4 {
+ padding-bottom: 1.5rem !important; }
+
+.pl-4,
+.px-4 {
+ padding-left: 1.5rem !important; }
+
+.p-5 {
+ padding: 3rem !important; }
+
+.pt-5,
+.py-5 {
+ padding-top: 3rem !important; }
+
+.pr-5,
+.px-5 {
+ padding-right: 3rem !important; }
+
+.pb-5,
+.py-5 {
+ padding-bottom: 3rem !important; }
+
+.pl-5,
+.px-5 {
+ padding-left: 3rem !important; }
+
+.m-n1 {
+ margin: -0.25rem !important; }
+
+.mt-n1,
+.my-n1 {
+ margin-top: -0.25rem !important; }
+
+.mr-n1,
+.mx-n1 {
+ margin-right: -0.25rem !important; }
+
+.mb-n1,
+.my-n1 {
+ margin-bottom: -0.25rem !important; }
+
+.ml-n1,
+.mx-n1 {
+ margin-left: -0.25rem !important; }
+
+.m-n2 {
+ margin: -0.5rem !important; }
+
+.mt-n2,
+.my-n2 {
+ margin-top: -0.5rem !important; }
+
+.mr-n2,
+.mx-n2 {
+ margin-right: -0.5rem !important; }
+
+.mb-n2,
+.my-n2 {
+ margin-bottom: -0.5rem !important; }
+
+.ml-n2,
+.mx-n2 {
+ margin-left: -0.5rem !important; }
+
+.m-n3 {
+ margin: -1rem !important; }
+
+.mt-n3,
+.my-n3 {
+ margin-top: -1rem !important; }
+
+.mr-n3,
+.mx-n3 {
+ margin-right: -1rem !important; }
+
+.mb-n3,
+.my-n3 {
+ margin-bottom: -1rem !important; }
+
+.ml-n3,
+.mx-n3 {
+ margin-left: -1rem !important; }
+
+.m-n4 {
+ margin: -1.5rem !important; }
+
+.mt-n4,
+.my-n4 {
+ margin-top: -1.5rem !important; }
+
+.mr-n4,
+.mx-n4 {
+ margin-right: -1.5rem !important; }
+
+.mb-n4,
+.my-n4 {
+ margin-bottom: -1.5rem !important; }
+
+.ml-n4,
+.mx-n4 {
+ margin-left: -1.5rem !important; }
+
+.m-n5 {
+ margin: -3rem !important; }
+
+.mt-n5,
+.my-n5 {
+ margin-top: -3rem !important; }
+
+.mr-n5,
+.mx-n5 {
+ margin-right: -3rem !important; }
+
+.mb-n5,
+.my-n5 {
+ margin-bottom: -3rem !important; }
+
+.ml-n5,
+.mx-n5 {
+ margin-left: -3rem !important; }
+
+.m-auto {
+ margin: auto !important; }
+
+.mt-auto,
+.my-auto {
+ margin-top: auto !important; }
+
+.mr-auto,
+.mx-auto {
+ margin-right: auto !important; }
+
+.mb-auto,
+.my-auto {
+ margin-bottom: auto !important; }
+
+.ml-auto,
+.mx-auto {
+ margin-left: auto !important; }
+
+@media (min-width: 576px) {
+ .m-sm-0 {
+ margin: 0 !important; }
+ .mt-sm-0,
+ .my-sm-0 {
+ margin-top: 0 !important; }
+ .mr-sm-0,
+ .mx-sm-0 {
+ margin-right: 0 !important; }
+ .mb-sm-0,
+ .my-sm-0 {
+ margin-bottom: 0 !important; }
+ .ml-sm-0,
+ .mx-sm-0 {
+ margin-left: 0 !important; }
+ .m-sm-1 {
+ margin: 0.25rem !important; }
+ .mt-sm-1,
+ .my-sm-1 {
+ margin-top: 0.25rem !important; }
+ .mr-sm-1,
+ .mx-sm-1 {
+ margin-right: 0.25rem !important; }
+ .mb-sm-1,
+ .my-sm-1 {
+ margin-bottom: 0.25rem !important; }
+ .ml-sm-1,
+ .mx-sm-1 {
+ margin-left: 0.25rem !important; }
+ .m-sm-2 {
+ margin: 0.5rem !important; }
+ .mt-sm-2,
+ .my-sm-2 {
+ margin-top: 0.5rem !important; }
+ .mr-sm-2,
+ .mx-sm-2 {
+ margin-right: 0.5rem !important; }
+ .mb-sm-2,
+ .my-sm-2 {
+ margin-bottom: 0.5rem !important; }
+ .ml-sm-2,
+ .mx-sm-2 {
+ margin-left: 0.5rem !important; }
+ .m-sm-3 {
+ margin: 1rem !important; }
+ .mt-sm-3,
+ .my-sm-3 {
+ margin-top: 1rem !important; }
+ .mr-sm-3,
+ .mx-sm-3 {
+ margin-right: 1rem !important; }
+ .mb-sm-3,
+ .my-sm-3 {
+ margin-bottom: 1rem !important; }
+ .ml-sm-3,
+ .mx-sm-3 {
+ margin-left: 1rem !important; }
+ .m-sm-4 {
+ margin: 1.5rem !important; }
+ .mt-sm-4,
+ .my-sm-4 {
+ margin-top: 1.5rem !important; }
+ .mr-sm-4,
+ .mx-sm-4 {
+ margin-right: 1.5rem !important; }
+ .mb-sm-4,
+ .my-sm-4 {
+ margin-bottom: 1.5rem !important; }
+ .ml-sm-4,
+ .mx-sm-4 {
+ margin-left: 1.5rem !important; }
+ .m-sm-5 {
+ margin: 3rem !important; }
+ .mt-sm-5,
+ .my-sm-5 {
+ margin-top: 3rem !important; }
+ .mr-sm-5,
+ .mx-sm-5 {
+ margin-right: 3rem !important; }
+ .mb-sm-5,
+ .my-sm-5 {
+ margin-bottom: 3rem !important; }
+ .ml-sm-5,
+ .mx-sm-5 {
+ margin-left: 3rem !important; }
+ .p-sm-0 {
+ padding: 0 !important; }
+ .pt-sm-0,
+ .py-sm-0 {
+ padding-top: 0 !important; }
+ .pr-sm-0,
+ .px-sm-0 {
+ padding-right: 0 !important; }
+ .pb-sm-0,
+ .py-sm-0 {
+ padding-bottom: 0 !important; }
+ .pl-sm-0,
+ .px-sm-0 {
+ padding-left: 0 !important; }
+ .p-sm-1 {
+ padding: 0.25rem !important; }
+ .pt-sm-1,
+ .py-sm-1 {
+ padding-top: 0.25rem !important; }
+ .pr-sm-1,
+ .px-sm-1 {
+ padding-right: 0.25rem !important; }
+ .pb-sm-1,
+ .py-sm-1 {
+ padding-bottom: 0.25rem !important; }
+ .pl-sm-1,
+ .px-sm-1 {
+ padding-left: 0.25rem !important; }
+ .p-sm-2 {
+ padding: 0.5rem !important; }
+ .pt-sm-2,
+ .py-sm-2 {
+ padding-top: 0.5rem !important; }
+ .pr-sm-2,
+ .px-sm-2 {
+ padding-right: 0.5rem !important; }
+ .pb-sm-2,
+ .py-sm-2 {
+ padding-bottom: 0.5rem !important; }
+ .pl-sm-2,
+ .px-sm-2 {
+ padding-left: 0.5rem !important; }
+ .p-sm-3 {
+ padding: 1rem !important; }
+ .pt-sm-3,
+ .py-sm-3 {
+ padding-top: 1rem !important; }
+ .pr-sm-3,
+ .px-sm-3 {
+ padding-right: 1rem !important; }
+ .pb-sm-3,
+ .py-sm-3 {
+ padding-bottom: 1rem !important; }
+ .pl-sm-3,
+ .px-sm-3 {
+ padding-left: 1rem !important; }
+ .p-sm-4 {
+ padding: 1.5rem !important; }
+ .pt-sm-4,
+ .py-sm-4 {
+ padding-top: 1.5rem !important; }
+ .pr-sm-4,
+ .px-sm-4 {
+ padding-right: 1.5rem !important; }
+ .pb-sm-4,
+ .py-sm-4 {
+ padding-bottom: 1.5rem !important; }
+ .pl-sm-4,
+ .px-sm-4 {
+ padding-left: 1.5rem !important; }
+ .p-sm-5 {
+ padding: 3rem !important; }
+ .pt-sm-5,
+ .py-sm-5 {
+ padding-top: 3rem !important; }
+ .pr-sm-5,
+ .px-sm-5 {
+ padding-right: 3rem !important; }
+ .pb-sm-5,
+ .py-sm-5 {
+ padding-bottom: 3rem !important; }
+ .pl-sm-5,
+ .px-sm-5 {
+ padding-left: 3rem !important; }
+ .m-sm-n1 {
+ margin: -0.25rem !important; }
+ .mt-sm-n1,
+ .my-sm-n1 {
+ margin-top: -0.25rem !important; }
+ .mr-sm-n1,
+ .mx-sm-n1 {
+ margin-right: -0.25rem !important; }
+ .mb-sm-n1,
+ .my-sm-n1 {
+ margin-bottom: -0.25rem !important; }
+ .ml-sm-n1,
+ .mx-sm-n1 {
+ margin-left: -0.25rem !important; }
+ .m-sm-n2 {
+ margin: -0.5rem !important; }
+ .mt-sm-n2,
+ .my-sm-n2 {
+ margin-top: -0.5rem !important; }
+ .mr-sm-n2,
+ .mx-sm-n2 {
+ margin-right: -0.5rem !important; }
+ .mb-sm-n2,
+ .my-sm-n2 {
+ margin-bottom: -0.5rem !important; }
+ .ml-sm-n2,
+ .mx-sm-n2 {
+ margin-left: -0.5rem !important; }
+ .m-sm-n3 {
+ margin: -1rem !important; }
+ .mt-sm-n3,
+ .my-sm-n3 {
+ margin-top: -1rem !important; }
+ .mr-sm-n3,
+ .mx-sm-n3 {
+ margin-right: -1rem !important; }
+ .mb-sm-n3,
+ .my-sm-n3 {
+ margin-bottom: -1rem !important; }
+ .ml-sm-n3,
+ .mx-sm-n3 {
+ margin-left: -1rem !important; }
+ .m-sm-n4 {
+ margin: -1.5rem !important; }
+ .mt-sm-n4,
+ .my-sm-n4 {
+ margin-top: -1.5rem !important; }
+ .mr-sm-n4,
+ .mx-sm-n4 {
+ margin-right: -1.5rem !important; }
+ .mb-sm-n4,
+ .my-sm-n4 {
+ margin-bottom: -1.5rem !important; }
+ .ml-sm-n4,
+ .mx-sm-n4 {
+ margin-left: -1.5rem !important; }
+ .m-sm-n5 {
+ margin: -3rem !important; }
+ .mt-sm-n5,
+ .my-sm-n5 {
+ margin-top: -3rem !important; }
+ .mr-sm-n5,
+ .mx-sm-n5 {
+ margin-right: -3rem !important; }
+ .mb-sm-n5,
+ .my-sm-n5 {
+ margin-bottom: -3rem !important; }
+ .ml-sm-n5,
+ .mx-sm-n5 {
+ margin-left: -3rem !important; }
+ .m-sm-auto {
+ margin: auto !important; }
+ .mt-sm-auto,
+ .my-sm-auto {
+ margin-top: auto !important; }
+ .mr-sm-auto,
+ .mx-sm-auto {
+ margin-right: auto !important; }
+ .mb-sm-auto,
+ .my-sm-auto {
+ margin-bottom: auto !important; }
+ .ml-sm-auto,
+ .mx-sm-auto {
+ margin-left: auto !important; } }
+
+@media (min-width: 768px) {
+ .m-md-0 {
+ margin: 0 !important; }
+ .mt-md-0,
+ .my-md-0 {
+ margin-top: 0 !important; }
+ .mr-md-0,
+ .mx-md-0 {
+ margin-right: 0 !important; }
+ .mb-md-0,
+ .my-md-0 {
+ margin-bottom: 0 !important; }
+ .ml-md-0,
+ .mx-md-0 {
+ margin-left: 0 !important; }
+ .m-md-1 {
+ margin: 0.25rem !important; }
+ .mt-md-1,
+ .my-md-1 {
+ margin-top: 0.25rem !important; }
+ .mr-md-1,
+ .mx-md-1 {
+ margin-right: 0.25rem !important; }
+ .mb-md-1,
+ .my-md-1 {
+ margin-bottom: 0.25rem !important; }
+ .ml-md-1,
+ .mx-md-1 {
+ margin-left: 0.25rem !important; }
+ .m-md-2 {
+ margin: 0.5rem !important; }
+ .mt-md-2,
+ .my-md-2 {
+ margin-top: 0.5rem !important; }
+ .mr-md-2,
+ .mx-md-2 {
+ margin-right: 0.5rem !important; }
+ .mb-md-2,
+ .my-md-2 {
+ margin-bottom: 0.5rem !important; }
+ .ml-md-2,
+ .mx-md-2 {
+ margin-left: 0.5rem !important; }
+ .m-md-3 {
+ margin: 1rem !important; }
+ .mt-md-3,
+ .my-md-3 {
+ margin-top: 1rem !important; }
+ .mr-md-3,
+ .mx-md-3 {
+ margin-right: 1rem !important; }
+ .mb-md-3,
+ .my-md-3 {
+ margin-bottom: 1rem !important; }
+ .ml-md-3,
+ .mx-md-3 {
+ margin-left: 1rem !important; }
+ .m-md-4 {
+ margin: 1.5rem !important; }
+ .mt-md-4,
+ .my-md-4 {
+ margin-top: 1.5rem !important; }
+ .mr-md-4,
+ .mx-md-4 {
+ margin-right: 1.5rem !important; }
+ .mb-md-4,
+ .my-md-4 {
+ margin-bottom: 1.5rem !important; }
+ .ml-md-4,
+ .mx-md-4 {
+ margin-left: 1.5rem !important; }
+ .m-md-5 {
+ margin: 3rem !important; }
+ .mt-md-5,
+ .my-md-5 {
+ margin-top: 3rem !important; }
+ .mr-md-5,
+ .mx-md-5 {
+ margin-right: 3rem !important; }
+ .mb-md-5,
+ .my-md-5 {
+ margin-bottom: 3rem !important; }
+ .ml-md-5,
+ .mx-md-5 {
+ margin-left: 3rem !important; }
+ .p-md-0 {
+ padding: 0 !important; }
+ .pt-md-0,
+ .py-md-0 {
+ padding-top: 0 !important; }
+ .pr-md-0,
+ .px-md-0 {
+ padding-right: 0 !important; }
+ .pb-md-0,
+ .py-md-0 {
+ padding-bottom: 0 !important; }
+ .pl-md-0,
+ .px-md-0 {
+ padding-left: 0 !important; }
+ .p-md-1 {
+ padding: 0.25rem !important; }
+ .pt-md-1,
+ .py-md-1 {
+ padding-top: 0.25rem !important; }
+ .pr-md-1,
+ .px-md-1 {
+ padding-right: 0.25rem !important; }
+ .pb-md-1,
+ .py-md-1 {
+ padding-bottom: 0.25rem !important; }
+ .pl-md-1,
+ .px-md-1 {
+ padding-left: 0.25rem !important; }
+ .p-md-2 {
+ padding: 0.5rem !important; }
+ .pt-md-2,
+ .py-md-2 {
+ padding-top: 0.5rem !important; }
+ .pr-md-2,
+ .px-md-2 {
+ padding-right: 0.5rem !important; }
+ .pb-md-2,
+ .py-md-2 {
+ padding-bottom: 0.5rem !important; }
+ .pl-md-2,
+ .px-md-2 {
+ padding-left: 0.5rem !important; }
+ .p-md-3 {
+ padding: 1rem !important; }
+ .pt-md-3,
+ .py-md-3 {
+ padding-top: 1rem !important; }
+ .pr-md-3,
+ .px-md-3 {
+ padding-right: 1rem !important; }
+ .pb-md-3,
+ .py-md-3 {
+ padding-bottom: 1rem !important; }
+ .pl-md-3,
+ .px-md-3 {
+ padding-left: 1rem !important; }
+ .p-md-4 {
+ padding: 1.5rem !important; }
+ .pt-md-4,
+ .py-md-4 {
+ padding-top: 1.5rem !important; }
+ .pr-md-4,
+ .px-md-4 {
+ padding-right: 1.5rem !important; }
+ .pb-md-4,
+ .py-md-4 {
+ padding-bottom: 1.5rem !important; }
+ .pl-md-4,
+ .px-md-4 {
+ padding-left: 1.5rem !important; }
+ .p-md-5 {
+ padding: 3rem !important; }
+ .pt-md-5,
+ .py-md-5 {
+ padding-top: 3rem !important; }
+ .pr-md-5,
+ .px-md-5 {
+ padding-right: 3rem !important; }
+ .pb-md-5,
+ .py-md-5 {
+ padding-bottom: 3rem !important; }
+ .pl-md-5,
+ .px-md-5 {
+ padding-left: 3rem !important; }
+ .m-md-n1 {
+ margin: -0.25rem !important; }
+ .mt-md-n1,
+ .my-md-n1 {
+ margin-top: -0.25rem !important; }
+ .mr-md-n1,
+ .mx-md-n1 {
+ margin-right: -0.25rem !important; }
+ .mb-md-n1,
+ .my-md-n1 {
+ margin-bottom: -0.25rem !important; }
+ .ml-md-n1,
+ .mx-md-n1 {
+ margin-left: -0.25rem !important; }
+ .m-md-n2 {
+ margin: -0.5rem !important; }
+ .mt-md-n2,
+ .my-md-n2 {
+ margin-top: -0.5rem !important; }
+ .mr-md-n2,
+ .mx-md-n2 {
+ margin-right: -0.5rem !important; }
+ .mb-md-n2,
+ .my-md-n2 {
+ margin-bottom: -0.5rem !important; }
+ .ml-md-n2,
+ .mx-md-n2 {
+ margin-left: -0.5rem !important; }
+ .m-md-n3 {
+ margin: -1rem !important; }
+ .mt-md-n3,
+ .my-md-n3 {
+ margin-top: -1rem !important; }
+ .mr-md-n3,
+ .mx-md-n3 {
+ margin-right: -1rem !important; }
+ .mb-md-n3,
+ .my-md-n3 {
+ margin-bottom: -1rem !important; }
+ .ml-md-n3,
+ .mx-md-n3 {
+ margin-left: -1rem !important; }
+ .m-md-n4 {
+ margin: -1.5rem !important; }
+ .mt-md-n4,
+ .my-md-n4 {
+ margin-top: -1.5rem !important; }
+ .mr-md-n4,
+ .mx-md-n4 {
+ margin-right: -1.5rem !important; }
+ .mb-md-n4,
+ .my-md-n4 {
+ margin-bottom: -1.5rem !important; }
+ .ml-md-n4,
+ .mx-md-n4 {
+ margin-left: -1.5rem !important; }
+ .m-md-n5 {
+ margin: -3rem !important; }
+ .mt-md-n5,
+ .my-md-n5 {
+ margin-top: -3rem !important; }
+ .mr-md-n5,
+ .mx-md-n5 {
+ margin-right: -3rem !important; }
+ .mb-md-n5,
+ .my-md-n5 {
+ margin-bottom: -3rem !important; }
+ .ml-md-n5,
+ .mx-md-n5 {
+ margin-left: -3rem !important; }
+ .m-md-auto {
+ margin: auto !important; }
+ .mt-md-auto,
+ .my-md-auto {
+ margin-top: auto !important; }
+ .mr-md-auto,
+ .mx-md-auto {
+ margin-right: auto !important; }
+ .mb-md-auto,
+ .my-md-auto {
+ margin-bottom: auto !important; }
+ .ml-md-auto,
+ .mx-md-auto {
+ margin-left: auto !important; } }
+
+@media (min-width: 992px) {
+ .m-lg-0 {
+ margin: 0 !important; }
+ .mt-lg-0,
+ .my-lg-0 {
+ margin-top: 0 !important; }
+ .mr-lg-0,
+ .mx-lg-0 {
+ margin-right: 0 !important; }
+ .mb-lg-0,
+ .my-lg-0 {
+ margin-bottom: 0 !important; }
+ .ml-lg-0,
+ .mx-lg-0 {
+ margin-left: 0 !important; }
+ .m-lg-1 {
+ margin: 0.25rem !important; }
+ .mt-lg-1,
+ .my-lg-1 {
+ margin-top: 0.25rem !important; }
+ .mr-lg-1,
+ .mx-lg-1 {
+ margin-right: 0.25rem !important; }
+ .mb-lg-1,
+ .my-lg-1 {
+ margin-bottom: 0.25rem !important; }
+ .ml-lg-1,
+ .mx-lg-1 {
+ margin-left: 0.25rem !important; }
+ .m-lg-2 {
+ margin: 0.5rem !important; }
+ .mt-lg-2,
+ .my-lg-2 {
+ margin-top: 0.5rem !important; }
+ .mr-lg-2,
+ .mx-lg-2 {
+ margin-right: 0.5rem !important; }
+ .mb-lg-2,
+ .my-lg-2 {
+ margin-bottom: 0.5rem !important; }
+ .ml-lg-2,
+ .mx-lg-2 {
+ margin-left: 0.5rem !important; }
+ .m-lg-3 {
+ margin: 1rem !important; }
+ .mt-lg-3,
+ .my-lg-3 {
+ margin-top: 1rem !important; }
+ .mr-lg-3,
+ .mx-lg-3 {
+ margin-right: 1rem !important; }
+ .mb-lg-3,
+ .my-lg-3 {
+ margin-bottom: 1rem !important; }
+ .ml-lg-3,
+ .mx-lg-3 {
+ margin-left: 1rem !important; }
+ .m-lg-4 {
+ margin: 1.5rem !important; }
+ .mt-lg-4,
+ .my-lg-4 {
+ margin-top: 1.5rem !important; }
+ .mr-lg-4,
+ .mx-lg-4 {
+ margin-right: 1.5rem !important; }
+ .mb-lg-4,
+ .my-lg-4 {
+ margin-bottom: 1.5rem !important; }
+ .ml-lg-4,
+ .mx-lg-4 {
+ margin-left: 1.5rem !important; }
+ .m-lg-5 {
+ margin: 3rem !important; }
+ .mt-lg-5,
+ .my-lg-5 {
+ margin-top: 3rem !important; }
+ .mr-lg-5,
+ .mx-lg-5 {
+ margin-right: 3rem !important; }
+ .mb-lg-5,
+ .my-lg-5 {
+ margin-bottom: 3rem !important; }
+ .ml-lg-5,
+ .mx-lg-5 {
+ margin-left: 3rem !important; }
+ .p-lg-0 {
+ padding: 0 !important; }
+ .pt-lg-0,
+ .py-lg-0 {
+ padding-top: 0 !important; }
+ .pr-lg-0,
+ .px-lg-0 {
+ padding-right: 0 !important; }
+ .pb-lg-0,
+ .py-lg-0 {
+ padding-bottom: 0 !important; }
+ .pl-lg-0,
+ .px-lg-0 {
+ padding-left: 0 !important; }
+ .p-lg-1 {
+ padding: 0.25rem !important; }
+ .pt-lg-1,
+ .py-lg-1 {
+ padding-top: 0.25rem !important; }
+ .pr-lg-1,
+ .px-lg-1 {
+ padding-right: 0.25rem !important; }
+ .pb-lg-1,
+ .py-lg-1 {
+ padding-bottom: 0.25rem !important; }
+ .pl-lg-1,
+ .px-lg-1 {
+ padding-left: 0.25rem !important; }
+ .p-lg-2 {
+ padding: 0.5rem !important; }
+ .pt-lg-2,
+ .py-lg-2 {
+ padding-top: 0.5rem !important; }
+ .pr-lg-2,
+ .px-lg-2 {
+ padding-right: 0.5rem !important; }
+ .pb-lg-2,
+ .py-lg-2 {
+ padding-bottom: 0.5rem !important; }
+ .pl-lg-2,
+ .px-lg-2 {
+ padding-left: 0.5rem !important; }
+ .p-lg-3 {
+ padding: 1rem !important; }
+ .pt-lg-3,
+ .py-lg-3 {
+ padding-top: 1rem !important; }
+ .pr-lg-3,
+ .px-lg-3 {
+ padding-right: 1rem !important; }
+ .pb-lg-3,
+ .py-lg-3 {
+ padding-bottom: 1rem !important; }
+ .pl-lg-3,
+ .px-lg-3 {
+ padding-left: 1rem !important; }
+ .p-lg-4 {
+ padding: 1.5rem !important; }
+ .pt-lg-4,
+ .py-lg-4 {
+ padding-top: 1.5rem !important; }
+ .pr-lg-4,
+ .px-lg-4 {
+ padding-right: 1.5rem !important; }
+ .pb-lg-4,
+ .py-lg-4 {
+ padding-bottom: 1.5rem !important; }
+ .pl-lg-4,
+ .px-lg-4 {
+ padding-left: 1.5rem !important; }
+ .p-lg-5 {
+ padding: 3rem !important; }
+ .pt-lg-5,
+ .py-lg-5 {
+ padding-top: 3rem !important; }
+ .pr-lg-5,
+ .px-lg-5 {
+ padding-right: 3rem !important; }
+ .pb-lg-5,
+ .py-lg-5 {
+ padding-bottom: 3rem !important; }
+ .pl-lg-5,
+ .px-lg-5 {
+ padding-left: 3rem !important; }
+ .m-lg-n1 {
+ margin: -0.25rem !important; }
+ .mt-lg-n1,
+ .my-lg-n1 {
+ margin-top: -0.25rem !important; }
+ .mr-lg-n1,
+ .mx-lg-n1 {
+ margin-right: -0.25rem !important; }
+ .mb-lg-n1,
+ .my-lg-n1 {
+ margin-bottom: -0.25rem !important; }
+ .ml-lg-n1,
+ .mx-lg-n1 {
+ margin-left: -0.25rem !important; }
+ .m-lg-n2 {
+ margin: -0.5rem !important; }
+ .mt-lg-n2,
+ .my-lg-n2 {
+ margin-top: -0.5rem !important; }
+ .mr-lg-n2,
+ .mx-lg-n2 {
+ margin-right: -0.5rem !important; }
+ .mb-lg-n2,
+ .my-lg-n2 {
+ margin-bottom: -0.5rem !important; }
+ .ml-lg-n2,
+ .mx-lg-n2 {
+ margin-left: -0.5rem !important; }
+ .m-lg-n3 {
+ margin: -1rem !important; }
+ .mt-lg-n3,
+ .my-lg-n3 {
+ margin-top: -1rem !important; }
+ .mr-lg-n3,
+ .mx-lg-n3 {
+ margin-right: -1rem !important; }
+ .mb-lg-n3,
+ .my-lg-n3 {
+ margin-bottom: -1rem !important; }
+ .ml-lg-n3,
+ .mx-lg-n3 {
+ margin-left: -1rem !important; }
+ .m-lg-n4 {
+ margin: -1.5rem !important; }
+ .mt-lg-n4,
+ .my-lg-n4 {
+ margin-top: -1.5rem !important; }
+ .mr-lg-n4,
+ .mx-lg-n4 {
+ margin-right: -1.5rem !important; }
+ .mb-lg-n4,
+ .my-lg-n4 {
+ margin-bottom: -1.5rem !important; }
+ .ml-lg-n4,
+ .mx-lg-n4 {
+ margin-left: -1.5rem !important; }
+ .m-lg-n5 {
+ margin: -3rem !important; }
+ .mt-lg-n5,
+ .my-lg-n5 {
+ margin-top: -3rem !important; }
+ .mr-lg-n5,
+ .mx-lg-n5 {
+ margin-right: -3rem !important; }
+ .mb-lg-n5,
+ .my-lg-n5 {
+ margin-bottom: -3rem !important; }
+ .ml-lg-n5,
+ .mx-lg-n5 {
+ margin-left: -3rem !important; }
+ .m-lg-auto {
+ margin: auto !important; }
+ .mt-lg-auto,
+ .my-lg-auto {
+ margin-top: auto !important; }
+ .mr-lg-auto,
+ .mx-lg-auto {
+ margin-right: auto !important; }
+ .mb-lg-auto,
+ .my-lg-auto {
+ margin-bottom: auto !important; }
+ .ml-lg-auto,
+ .mx-lg-auto {
+ margin-left: auto !important; } }
+
+@media (min-width: 1200px) {
+ .m-xl-0 {
+ margin: 0 !important; }
+ .mt-xl-0,
+ .my-xl-0 {
+ margin-top: 0 !important; }
+ .mr-xl-0,
+ .mx-xl-0 {
+ margin-right: 0 !important; }
+ .mb-xl-0,
+ .my-xl-0 {
+ margin-bottom: 0 !important; }
+ .ml-xl-0,
+ .mx-xl-0 {
+ margin-left: 0 !important; }
+ .m-xl-1 {
+ margin: 0.25rem !important; }
+ .mt-xl-1,
+ .my-xl-1 {
+ margin-top: 0.25rem !important; }
+ .mr-xl-1,
+ .mx-xl-1 {
+ margin-right: 0.25rem !important; }
+ .mb-xl-1,
+ .my-xl-1 {
+ margin-bottom: 0.25rem !important; }
+ .ml-xl-1,
+ .mx-xl-1 {
+ margin-left: 0.25rem !important; }
+ .m-xl-2 {
+ margin: 0.5rem !important; }
+ .mt-xl-2,
+ .my-xl-2 {
+ margin-top: 0.5rem !important; }
+ .mr-xl-2,
+ .mx-xl-2 {
+ margin-right: 0.5rem !important; }
+ .mb-xl-2,
+ .my-xl-2 {
+ margin-bottom: 0.5rem !important; }
+ .ml-xl-2,
+ .mx-xl-2 {
+ margin-left: 0.5rem !important; }
+ .m-xl-3 {
+ margin: 1rem !important; }
+ .mt-xl-3,
+ .my-xl-3 {
+ margin-top: 1rem !important; }
+ .mr-xl-3,
+ .mx-xl-3 {
+ margin-right: 1rem !important; }
+ .mb-xl-3,
+ .my-xl-3 {
+ margin-bottom: 1rem !important; }
+ .ml-xl-3,
+ .mx-xl-3 {
+ margin-left: 1rem !important; }
+ .m-xl-4 {
+ margin: 1.5rem !important; }
+ .mt-xl-4,
+ .my-xl-4 {
+ margin-top: 1.5rem !important; }
+ .mr-xl-4,
+ .mx-xl-4 {
+ margin-right: 1.5rem !important; }
+ .mb-xl-4,
+ .my-xl-4 {
+ margin-bottom: 1.5rem !important; }
+ .ml-xl-4,
+ .mx-xl-4 {
+ margin-left: 1.5rem !important; }
+ .m-xl-5 {
+ margin: 3rem !important; }
+ .mt-xl-5,
+ .my-xl-5 {
+ margin-top: 3rem !important; }
+ .mr-xl-5,
+ .mx-xl-5 {
+ margin-right: 3rem !important; }
+ .mb-xl-5,
+ .my-xl-5 {
+ margin-bottom: 3rem !important; }
+ .ml-xl-5,
+ .mx-xl-5 {
+ margin-left: 3rem !important; }
+ .p-xl-0 {
+ padding: 0 !important; }
+ .pt-xl-0,
+ .py-xl-0 {
+ padding-top: 0 !important; }
+ .pr-xl-0,
+ .px-xl-0 {
+ padding-right: 0 !important; }
+ .pb-xl-0,
+ .py-xl-0 {
+ padding-bottom: 0 !important; }
+ .pl-xl-0,
+ .px-xl-0 {
+ padding-left: 0 !important; }
+ .p-xl-1 {
+ padding: 0.25rem !important; }
+ .pt-xl-1,
+ .py-xl-1 {
+ padding-top: 0.25rem !important; }
+ .pr-xl-1,
+ .px-xl-1 {
+ padding-right: 0.25rem !important; }
+ .pb-xl-1,
+ .py-xl-1 {
+ padding-bottom: 0.25rem !important; }
+ .pl-xl-1,
+ .px-xl-1 {
+ padding-left: 0.25rem !important; }
+ .p-xl-2 {
+ padding: 0.5rem !important; }
+ .pt-xl-2,
+ .py-xl-2 {
+ padding-top: 0.5rem !important; }
+ .pr-xl-2,
+ .px-xl-2 {
+ padding-right: 0.5rem !important; }
+ .pb-xl-2,
+ .py-xl-2 {
+ padding-bottom: 0.5rem !important; }
+ .pl-xl-2,
+ .px-xl-2 {
+ padding-left: 0.5rem !important; }
+ .p-xl-3 {
+ padding: 1rem !important; }
+ .pt-xl-3,
+ .py-xl-3 {
+ padding-top: 1rem !important; }
+ .pr-xl-3,
+ .px-xl-3 {
+ padding-right: 1rem !important; }
+ .pb-xl-3,
+ .py-xl-3 {
+ padding-bottom: 1rem !important; }
+ .pl-xl-3,
+ .px-xl-3 {
+ padding-left: 1rem !important; }
+ .p-xl-4 {
+ padding: 1.5rem !important; }
+ .pt-xl-4,
+ .py-xl-4 {
+ padding-top: 1.5rem !important; }
+ .pr-xl-4,
+ .px-xl-4 {
+ padding-right: 1.5rem !important; }
+ .pb-xl-4,
+ .py-xl-4 {
+ padding-bottom: 1.5rem !important; }
+ .pl-xl-4,
+ .px-xl-4 {
+ padding-left: 1.5rem !important; }
+ .p-xl-5 {
+ padding: 3rem !important; }
+ .pt-xl-5,
+ .py-xl-5 {
+ padding-top: 3rem !important; }
+ .pr-xl-5,
+ .px-xl-5 {
+ padding-right: 3rem !important; }
+ .pb-xl-5,
+ .py-xl-5 {
+ padding-bottom: 3rem !important; }
+ .pl-xl-5,
+ .px-xl-5 {
+ padding-left: 3rem !important; }
+ .m-xl-n1 {
+ margin: -0.25rem !important; }
+ .mt-xl-n1,
+ .my-xl-n1 {
+ margin-top: -0.25rem !important; }
+ .mr-xl-n1,
+ .mx-xl-n1 {
+ margin-right: -0.25rem !important; }
+ .mb-xl-n1,
+ .my-xl-n1 {
+ margin-bottom: -0.25rem !important; }
+ .ml-xl-n1,
+ .mx-xl-n1 {
+ margin-left: -0.25rem !important; }
+ .m-xl-n2 {
+ margin: -0.5rem !important; }
+ .mt-xl-n2,
+ .my-xl-n2 {
+ margin-top: -0.5rem !important; }
+ .mr-xl-n2,
+ .mx-xl-n2 {
+ margin-right: -0.5rem !important; }
+ .mb-xl-n2,
+ .my-xl-n2 {
+ margin-bottom: -0.5rem !important; }
+ .ml-xl-n2,
+ .mx-xl-n2 {
+ margin-left: -0.5rem !important; }
+ .m-xl-n3 {
+ margin: -1rem !important; }
+ .mt-xl-n3,
+ .my-xl-n3 {
+ margin-top: -1rem !important; }
+ .mr-xl-n3,
+ .mx-xl-n3 {
+ margin-right: -1rem !important; }
+ .mb-xl-n3,
+ .my-xl-n3 {
+ margin-bottom: -1rem !important; }
+ .ml-xl-n3,
+ .mx-xl-n3 {
+ margin-left: -1rem !important; }
+ .m-xl-n4 {
+ margin: -1.5rem !important; }
+ .mt-xl-n4,
+ .my-xl-n4 {
+ margin-top: -1.5rem !important; }
+ .mr-xl-n4,
+ .mx-xl-n4 {
+ margin-right: -1.5rem !important; }
+ .mb-xl-n4,
+ .my-xl-n4 {
+ margin-bottom: -1.5rem !important; }
+ .ml-xl-n4,
+ .mx-xl-n4 {
+ margin-left: -1.5rem !important; }
+ .m-xl-n5 {
+ margin: -3rem !important; }
+ .mt-xl-n5,
+ .my-xl-n5 {
+ margin-top: -3rem !important; }
+ .mr-xl-n5,
+ .mx-xl-n5 {
+ margin-right: -3rem !important; }
+ .mb-xl-n5,
+ .my-xl-n5 {
+ margin-bottom: -3rem !important; }
+ .ml-xl-n5,
+ .mx-xl-n5 {
+ margin-left: -3rem !important; }
+ .m-xl-auto {
+ margin: auto !important; }
+ .mt-xl-auto,
+ .my-xl-auto {
+ margin-top: auto !important; }
+ .mr-xl-auto,
+ .mx-xl-auto {
+ margin-right: auto !important; }
+ .mb-xl-auto,
+ .my-xl-auto {
+ margin-bottom: auto !important; }
+ .ml-xl-auto,
+ .mx-xl-auto {
+ margin-left: auto !important; } }
+
+.text-monospace {
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }
+
+.text-justify {
+ text-align: justify !important; }
+
+.text-wrap {
+ white-space: normal !important; }
+
+.text-nowrap {
+ white-space: nowrap !important; }
+
+.text-truncate {
+ overflow: hidden;
+ -o-text-overflow: ellipsis;
+ text-overflow: ellipsis;
+ white-space: nowrap; }
+
+.text-left {
+ text-align: left !important; }
+
+.text-right {
+ text-align: right !important; }
+
+.text-center {
+ text-align: center !important; }
+
+@media (min-width: 576px) {
+ .text-sm-left {
+ text-align: left !important; }
+ .text-sm-right {
+ text-align: right !important; }
+ .text-sm-center {
+ text-align: center !important; } }
+
+@media (min-width: 768px) {
+ .text-md-left {
+ text-align: left !important; }
+ .text-md-right {
+ text-align: right !important; }
+ .text-md-center {
+ text-align: center !important; } }
+
+@media (min-width: 992px) {
+ .text-lg-left {
+ text-align: left !important; }
+ .text-lg-right {
+ text-align: right !important; }
+ .text-lg-center {
+ text-align: center !important; } }
+
+@media (min-width: 1200px) {
+ .text-xl-left {
+ text-align: left !important; }
+ .text-xl-right {
+ text-align: right !important; }
+ .text-xl-center {
+ text-align: center !important; } }
+
+.text-lowercase {
+ text-transform: lowercase !important; }
+
+.text-uppercase {
+ text-transform: uppercase !important; }
+
+.text-capitalize {
+ text-transform: capitalize !important; }
+
+.font-weight-light {
+ font-weight: 300 !important; }
+
+.font-weight-lighter {
+ font-weight: lighter !important; }
+
+.font-weight-normal {
+ font-weight: 400 !important; }
+
+.font-weight-bold {
+ font-weight: 700 !important; }
+
+.font-weight-bolder {
+ font-weight: bolder !important; }
+
+.font-italic {
+ font-style: italic !important; }
+
+.text-white {
+ color: #fff !important; }
+
+.text-primary {
+ color: #C2E54F !important; }
+
+a.text-primary:hover, a.text-primary:focus {
+ color: #a2ca1e !important; }
+
+.text-secondary {
+ color: #6c757d !important; }
+
+a.text-secondary:hover, a.text-secondary:focus {
+ color: #494f54 !important; }
+
+.text-success {
+ color: #71bc42 !important; }
+
+a.text-success:hover, a.text-success:focus {
+ color: #4f832e !important; }
+
+.text-info {
+ color: #17a2b8 !important; }
+
+a.text-info:hover, a.text-info:focus {
+ color: #0f6674 !important; }
+
+.text-warning {
+ color: #ffc107 !important; }
+
+a.text-warning:hover, a.text-warning:focus {
+ color: #ba8b00 !important; }
+
+.text-danger {
+ color: #dc3545 !important; }
+
+a.text-danger:hover, a.text-danger:focus {
+ color: #a71d2a !important; }
+
+.text-light {
+ color: #f8f9fa !important; }
+
+a.text-light:hover, a.text-light:focus {
+ color: #cbd3da !important; }
+
+.text-dark {
+ color: #343a40 !important; }
+
+a.text-dark:hover, a.text-dark:focus {
+ color: #121416 !important; }
+
+.text-body {
+ color: #212529 !important; }
+
+.text-muted {
+ color: #6c757d !important; }
+
+.text-black-50 {
+ color: rgba(0, 0, 0, 0.5) !important; }
+
+.text-white-50 {
+ color: rgba(255, 255, 255, 0.5) !important; }
+
+.text-hide {
+ font: 0/0 a;
+ color: transparent;
+ text-shadow: none;
+ background-color: transparent;
+ border: 0; }
+
+.text-decoration-none {
+ text-decoration: none !important; }
+
+.text-break {
+ word-break: break-word !important;
+ overflow-wrap: break-word !important; }
+
+.text-reset {
+ color: inherit !important; }
+
+.visible {
+ visibility: visible !important; }
+
+.invisible {
+ visibility: hidden !important; }
+
+@media print {
+ *,
+ *::before,
+ *::after {
+ text-shadow: none !important;
+ -webkit-box-shadow: none !important;
+ box-shadow: none !important; }
+ a:not(.btn) {
+ text-decoration: underline; }
+ abbr[title]::after {
+ content: " (" attr(title) ")"; }
+ pre {
+ white-space: pre-wrap !important; }
+ pre,
+ blockquote {
+ border: 1px solid #adb5bd;
+ page-break-inside: avoid; }
+ thead {
+ display: table-header-group; }
+ tr,
+ img {
+ page-break-inside: avoid; }
+ p,
+ h2,
+ h3 {
+ orphans: 3;
+ widows: 3; }
+ h2,
+ h3 {
+ page-break-after: avoid; }
+ @page {
+ size: a3; }
+ body {
+ min-width: 992px !important; }
+ .container {
+ min-width: 992px !important; }
+ .navbar {
+ display: none; }
+ .badge {
+ border: 1px solid #000; }
+ .table {
+ border-collapse: collapse !important; }
+ .table td,
+ .table th {
+ background-color: #fff !important; }
+ .table-bordered th,
+ .table-bordered td {
+ border: 1px solid #dee2e6 !important; }
+ .table-dark {
+ color: inherit; }
+ .table-dark th,
+ .table-dark td,
+ .table-dark thead th,
+ .table-dark tbody + tbody {
+ border-color: #dee2e6; }
+ .table .thead-dark th {
+ color: inherit;
+ border-color: #dee2e6; } }
diff --git a/static/main/css/jquery-ui.css b/static/main/css/jquery-ui.css
new file mode 100644
index 0000000..aa6b21a
--- /dev/null
+++ b/static/main/css/jquery-ui.css
@@ -0,0 +1,654 @@
+/*! jQuery UI - v1.11.4 - 2015-12-03
+* http://jqueryui.com
+* Includes: core.css, button.css, slider.css, theme.css
+* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=5px&bgColorHeader=5c9ccc&bgTextureHeader=gloss_wave&bgImgOpacityHeader=55&borderColorHeader=4297d7&fcHeader=ffffff&iconColorHeader=d8e7f3&bgColorContent=fcfdfd&bgTextureContent=inset_hard&bgImgOpacityContent=100&borderColorContent=a6c9e2&fcContent=222222&iconColorContent=469bdd&bgColorDefault=dfeffc&bgTextureDefault=glass&bgImgOpacityDefault=85&borderColorDefault=c5dbec&fcDefault=2e6e9e&iconColorDefault=6da8d5&bgColorHover=d0e5f5&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=79b7e7&fcHover=1d5987&iconColorHover=217bc0&bgColorActive=f5f8f9&bgTextureActive=inset_hard&bgImgOpacityActive=100&borderColorActive=79b7e7&fcActive=e17009&iconColorActive=f9bd01&bgColorHighlight=fbec88&bgTextureHighlight=flat&bgImgOpacityHighlight=55&borderColorHighlight=fad42e&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
+* Copyright jQuery Foundation and other contributors; Licensed MIT */
+
+/* Layout helpers
+----------------------------------*/
+.ui-helper-hidden {
+ display: none;
+}
+.ui-helper-hidden-accessible {
+ border: 0;
+ clip: rect(0 0 0 0);
+ height: 1px;
+ margin: -1px;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ width: 1px;
+}
+.ui-helper-reset {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ outline: 0;
+ line-height: 1.3;
+ text-decoration: none;
+ font-size: 100%;
+ list-style: none;
+}
+.ui-helper-clearfix:before,
+.ui-helper-clearfix:after {
+ content: "";
+ display: table;
+ border-collapse: collapse;
+}
+.ui-helper-clearfix:after {
+ clear: both;
+}
+.ui-helper-clearfix {
+ min-height: 0; /* support: IE7 */
+}
+.ui-helper-zfix {
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+ position: absolute;
+ opacity: 0;
+ filter:Alpha(Opacity=0); /* support: IE8 */
+}
+
+.ui-front {
+ z-index: 100;
+}
+
+
+/* Interaction Cues
+----------------------------------*/
+.ui-state-disabled {
+ cursor: default !important;
+}
+
+
+/* Icons
+----------------------------------*/
+
+/* states and images */
+.ui-icon {
+ display: block;
+ text-indent: -99999px;
+ overflow: hidden;
+ background-repeat: no-repeat;
+}
+
+
+/* Misc visuals
+----------------------------------*/
+
+/* Overlays */
+.ui-widget-overlay {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+}
+.ui-button {
+ display: inline-block;
+ position: relative;
+ padding: 0;
+ line-height: normal;
+ margin-right: .1em;
+ cursor: pointer;
+ vertical-align: middle;
+ text-align: center;
+ overflow: visible; /* removes extra width in IE */
+}
+.ui-button,
+.ui-button:link,
+.ui-button:visited,
+.ui-button:hover,
+.ui-button:active {
+ text-decoration: none;
+}
+/* to make room for the icon, a width needs to be set here */
+.ui-button-icon-only {
+ width: 2.2em;
+}
+/* button elements seem to need a little more width */
+button.ui-button-icon-only {
+ width: 2.4em;
+}
+.ui-button-icons-only {
+ width: 3.4em;
+}
+button.ui-button-icons-only {
+ width: 3.7em;
+}
+
+/* button text element */
+.ui-button .ui-button-text {
+ display: block;
+ line-height: normal;
+}
+.ui-button-text-only .ui-button-text {
+ padding: .4em 1em;
+}
+.ui-button-icon-only .ui-button-text,
+.ui-button-icons-only .ui-button-text {
+ padding: .4em;
+ text-indent: -9999999px;
+}
+.ui-button-text-icon-primary .ui-button-text,
+.ui-button-text-icons .ui-button-text {
+ padding: .4em 1em .4em 2.1em;
+}
+.ui-button-text-icon-secondary .ui-button-text,
+.ui-button-text-icons .ui-button-text {
+ padding: .4em 2.1em .4em 1em;
+}
+.ui-button-text-icons .ui-button-text {
+ padding-left: 2.1em;
+ padding-right: 2.1em;
+}
+/* no icon support for input elements, provide padding by default */
+input.ui-button {
+ padding: .4em 1em;
+}
+
+/* button icon element(s) */
+.ui-button-icon-only .ui-icon,
+.ui-button-text-icon-primary .ui-icon,
+.ui-button-text-icon-secondary .ui-icon,
+.ui-button-text-icons .ui-icon,
+.ui-button-icons-only .ui-icon {
+ position: absolute;
+ top: 50%;
+ margin-top: -8px;
+}
+.ui-button-icon-only .ui-icon {
+ left: 50%;
+ margin-left: -8px;
+}
+.ui-button-text-icon-primary .ui-button-icon-primary,
+.ui-button-text-icons .ui-button-icon-primary,
+.ui-button-icons-only .ui-button-icon-primary {
+ left: .5em;
+}
+.ui-button-text-icon-secondary .ui-button-icon-secondary,
+.ui-button-text-icons .ui-button-icon-secondary,
+.ui-button-icons-only .ui-button-icon-secondary {
+ right: .5em;
+}
+
+/* button sets */
+.ui-buttonset {
+ margin-right: 7px;
+}
+.ui-buttonset .ui-button {
+ margin-left: 0;
+ margin-right: -.3em;
+}
+
+/* workarounds */
+/* reset extra padding in Firefox, see h5bp.com/l */
+input.ui-button::-moz-focus-inner,
+button.ui-button::-moz-focus-inner {
+ border: 0;
+ padding: 0;
+}
+.ui-slider {
+ position: relative;
+ text-align: left;
+}
+.ui-slider .ui-slider-handle {
+ position: absolute;
+ z-index: 2;
+ width: 1.2em;
+ height: 1.2em;
+ cursor: default;
+ -ms-touch-action: none;
+ touch-action: none;
+}
+.ui-slider .ui-slider-range {
+ position: absolute;
+ z-index: 1;
+ font-size: .7em;
+ display: block;
+ border: 0;
+ background-position: 0 0;
+}
+
+/* support: IE8 - See #6727 */
+.ui-slider.ui-state-disabled .ui-slider-handle,
+.ui-slider.ui-state-disabled .ui-slider-range {
+ -webkit-filter: inherit;
+ filter: inherit;
+}
+
+.ui-slider-horizontal {
+ height: .8em;
+}
+.ui-slider-horizontal .ui-slider-handle {
+ top: -.3em;
+ margin-left: -.6em;
+}
+.ui-slider-horizontal .ui-slider-range {
+ top: 0;
+ height: 100%;
+}
+.ui-slider-horizontal .ui-slider-range-min {
+ left: 0;
+}
+.ui-slider-horizontal .ui-slider-range-max {
+ right: 0;
+}
+
+.ui-slider-vertical {
+ width: .8em;
+ height: 100px;
+}
+.ui-slider-vertical .ui-slider-handle {
+ left: -.3em;
+ margin-left: 0;
+ margin-bottom: -.6em;
+}
+.ui-slider-vertical .ui-slider-range {
+ left: 0;
+ width: 100%;
+}
+.ui-slider-vertical .ui-slider-range-min {
+ bottom: 0;
+}
+.ui-slider-vertical .ui-slider-range-max {
+ top: 0;
+}
+
+/* Component containers
+----------------------------------*/
+.ui-widget {
+ font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
+ font-size: 1.1em;
+}
+.ui-widget .ui-widget {
+ font-size: 1em;
+}
+.ui-widget input,
+.ui-widget select,
+.ui-widget textarea,
+.ui-widget button {
+ font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
+ font-size: 1em;
+}
+.ui-widget-content {
+ border: 1px solid #a6c9e2;
+ color: #222222;
+}
+.ui-widget-content a {
+ color: #222222;
+}
+.ui-widget-header {
+ border: 1px solid #4297d7;
+ background: #5c9ccc url("images/ui-bg_gloss-wave_55_5c9ccc_500x100.png") 50% 50% repeat-x;
+ color: #ffffff;
+ font-weight: bold;
+}
+.ui-widget-header a {
+ color: #ffffff;
+}
+
+/* Interaction states
+----------------------------------*/
+.ui-state-default,
+.ui-widget-content .ui-state-default,
+.ui-widget-header .ui-state-default {
+ border: 1px solid #c5dbec;
+ background: #dfeffc url("images/ui-bg_glass_85_dfeffc_1x400.png") 50% 50% repeat-x;
+ font-weight: bold;
+ color: #2e6e9e;
+}
+.ui-state-default a,
+.ui-state-default a:link,
+.ui-state-default a:visited {
+ color: #2e6e9e;
+ text-decoration: none;
+}
+.ui-state-hover,
+.ui-widget-content .ui-state-hover,
+.ui-widget-header .ui-state-hover,
+.ui-state-focus,
+.ui-widget-content .ui-state-focus,
+.ui-widget-header .ui-state-focus {
+ border: 1px solid #79b7e7;
+ background: #d0e5f5 url("images/ui-bg_glass_75_d0e5f5_1x400.png") 50% 50% repeat-x;
+ font-weight: bold;
+ color: #1d5987;
+}
+.ui-state-hover a,
+.ui-state-hover a:hover,
+.ui-state-hover a:link,
+.ui-state-hover a:visited,
+.ui-state-focus a,
+.ui-state-focus a:hover,
+.ui-state-focus a:link,
+.ui-state-focus a:visited {
+ color: #1d5987;
+ text-decoration: none;
+}
+.ui-state-active,
+.ui-widget-content .ui-state-active,
+.ui-widget-header .ui-state-active {
+ border: 1px solid #79b7e7;
+ background: #f5f8f9 url("images/ui-bg_inset-hard_100_f5f8f9_1x100.png") 50% 50% repeat-x;
+ font-weight: bold;
+ color: #e17009;
+}
+.ui-state-active a,
+.ui-state-active a:link,
+.ui-state-active a:visited {
+ color: #e17009;
+ text-decoration: none;
+}
+
+/* Interaction Cues
+----------------------------------*/
+.ui-state-highlight,
+.ui-widget-content .ui-state-highlight,
+.ui-widget-header .ui-state-highlight {
+ border: 1px solid #fad42e;
+ background: #fbec88;
+ color: #363636;
+}
+.ui-state-highlight a,
+.ui-widget-content .ui-state-highlight a,
+.ui-widget-header .ui-state-highlight a {
+ color: #363636;
+}
+.ui-state-error,
+.ui-widget-content .ui-state-error,
+.ui-widget-header .ui-state-error {
+ border: 1px solid #cd0a0a;
+ background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
+ color: #cd0a0a;
+}
+.ui-state-error a,
+.ui-widget-content .ui-state-error a,
+.ui-widget-header .ui-state-error a {
+ color: #cd0a0a;
+}
+.ui-state-error-text,
+.ui-widget-content .ui-state-error-text,
+.ui-widget-header .ui-state-error-text {
+ color: #cd0a0a;
+}
+.ui-priority-primary,
+.ui-widget-content .ui-priority-primary,
+.ui-widget-header .ui-priority-primary {
+ font-weight: bold;
+}
+.ui-priority-secondary,
+.ui-widget-content .ui-priority-secondary,
+.ui-widget-header .ui-priority-secondary {
+ opacity: .7;
+ filter:Alpha(Opacity=70); /* support: IE8 */
+ font-weight: normal;
+}
+.ui-state-disabled,
+.ui-widget-content .ui-state-disabled,
+.ui-widget-header .ui-state-disabled {
+ opacity: .35;
+ filter:Alpha(Opacity=35); /* support: IE8 */
+ background-image: none;
+}
+.ui-state-disabled .ui-icon {
+ filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
+}
+
+/* Icons
+----------------------------------*/
+
+/* states and images */
+.ui-icon {
+ width: 16px;
+ height: 16px;
+}
+.ui-icon,
+.ui-widget-content .ui-icon {
+ background-image: url("images/ui-icons_469bdd_256x240.png");
+}
+.ui-widget-header .ui-icon {
+ background-image: url("images/ui-icons_d8e7f3_256x240.png");
+}
+.ui-state-default .ui-icon {
+ background-image: url("images/ui-icons_6da8d5_256x240.png");
+}
+.ui-state-hover .ui-icon,
+.ui-state-focus .ui-icon {
+ background-image: url("images/ui-icons_217bc0_256x240.png");
+}
+.ui-state-active .ui-icon {
+ background-image: url("images/ui-icons_f9bd01_256x240.png");
+}
+.ui-state-highlight .ui-icon {
+ background-image: url("images/ui-icons_2e83ff_256x240.png");
+}
+.ui-state-error .ui-icon,
+.ui-state-error-text .ui-icon {
+ background-image: url("images/ui-icons_cd0a0a_256x240.png");
+}
+
+/* positioning */
+.ui-icon-blank { background-position: 16px 16px; }
+.ui-icon-carat-1-n { background-position: 0 0; }
+.ui-icon-carat-1-ne { background-position: -16px 0; }
+.ui-icon-carat-1-e { background-position: -32px 0; }
+.ui-icon-carat-1-se { background-position: -48px 0; }
+.ui-icon-carat-1-s { background-position: -64px 0; }
+.ui-icon-carat-1-sw { background-position: -80px 0; }
+.ui-icon-carat-1-w { background-position: -96px 0; }
+.ui-icon-carat-1-nw { background-position: -112px 0; }
+.ui-icon-carat-2-n-s { background-position: -128px 0; }
+.ui-icon-carat-2-e-w { background-position: -144px 0; }
+.ui-icon-triangle-1-n { background-position: 0 -16px; }
+.ui-icon-triangle-1-ne { background-position: -16px -16px; }
+.ui-icon-triangle-1-e { background-position: -32px -16px; }
+.ui-icon-triangle-1-se { background-position: -48px -16px; }
+.ui-icon-triangle-1-s { background-position: -64px -16px; }
+.ui-icon-triangle-1-sw { background-position: -80px -16px; }
+.ui-icon-triangle-1-w { background-position: -96px -16px; }
+.ui-icon-triangle-1-nw { background-position: -112px -16px; }
+.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
+.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
+.ui-icon-arrow-1-n { background-position: 0 -32px; }
+.ui-icon-arrow-1-ne { background-position: -16px -32px; }
+.ui-icon-arrow-1-e { background-position: -32px -32px; }
+.ui-icon-arrow-1-se { background-position: -48px -32px; }
+.ui-icon-arrow-1-s { background-position: -64px -32px; }
+.ui-icon-arrow-1-sw { background-position: -80px -32px; }
+.ui-icon-arrow-1-w { background-position: -96px -32px; }
+.ui-icon-arrow-1-nw { background-position: -112px -32px; }
+.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
+.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
+.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
+.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
+.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
+.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
+.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
+.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
+.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
+.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
+.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
+.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
+.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
+.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
+.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
+.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
+.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
+.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
+.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
+.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
+.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
+.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
+.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
+.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
+.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
+.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
+.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
+.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
+.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
+.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
+.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
+.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
+.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
+.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
+.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
+.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
+.ui-icon-arrow-4 { background-position: 0 -80px; }
+.ui-icon-arrow-4-diag { background-position: -16px -80px; }
+.ui-icon-extlink { background-position: -32px -80px; }
+.ui-icon-newwin { background-position: -48px -80px; }
+.ui-icon-refresh { background-position: -64px -80px; }
+.ui-icon-shuffle { background-position: -80px -80px; }
+.ui-icon-transfer-e-w { background-position: -96px -80px; }
+.ui-icon-transferthick-e-w { background-position: -112px -80px; }
+.ui-icon-folder-collapsed { background-position: 0 -96px; }
+.ui-icon-folder-open { background-position: -16px -96px; }
+.ui-icon-document { background-position: -32px -96px; }
+.ui-icon-document-b { background-position: -48px -96px; }
+.ui-icon-note { background-position: -64px -96px; }
+.ui-icon-mail-closed { background-position: -80px -96px; }
+.ui-icon-mail-open { background-position: -96px -96px; }
+.ui-icon-suitcase { background-position: -112px -96px; }
+.ui-icon-comment { background-position: -128px -96px; }
+.ui-icon-person { background-position: -144px -96px; }
+.ui-icon-print { background-position: -160px -96px; }
+.ui-icon-trash { background-position: -176px -96px; }
+.ui-icon-locked { background-position: -192px -96px; }
+.ui-icon-unlocked { background-position: -208px -96px; }
+.ui-icon-bookmark { background-position: -224px -96px; }
+.ui-icon-tag { background-position: -240px -96px; }
+.ui-icon-home { background-position: 0 -112px; }
+.ui-icon-flag { background-position: -16px -112px; }
+.ui-icon-calendar { background-position: -32px -112px; }
+.ui-icon-cart { background-position: -48px -112px; }
+.ui-icon-pencil { background-position: -64px -112px; }
+.ui-icon-clock { background-position: -80px -112px; }
+.ui-icon-disk { background-position: -96px -112px; }
+.ui-icon-calculator { background-position: -112px -112px; }
+.ui-icon-zoomin { background-position: -128px -112px; }
+.ui-icon-zoomout { background-position: -144px -112px; }
+.ui-icon-search { background-position: -160px -112px; }
+.ui-icon-wrench { background-position: -176px -112px; }
+.ui-icon-gear { background-position: -192px -112px; }
+.ui-icon-heart { background-position: -208px -112px; }
+.ui-icon-star { background-position: -224px -112px; }
+.ui-icon-link { background-position: -240px -112px; }
+.ui-icon-cancel { background-position: 0 -128px; }
+.ui-icon-plus { background-position: -16px -128px; }
+.ui-icon-plusthick { background-position: -32px -128px; }
+.ui-icon-minus { background-position: -48px -128px; }
+.ui-icon-minusthick { background-position: -64px -128px; }
+.ui-icon-close { background-position: -80px -128px; }
+.ui-icon-closethick { background-position: -96px -128px; }
+.ui-icon-key { background-position: -112px -128px; }
+.ui-icon-lightbulb { background-position: -128px -128px; }
+.ui-icon-scissors { background-position: -144px -128px; }
+.ui-icon-clipboard { background-position: -160px -128px; }
+.ui-icon-copy { background-position: -176px -128px; }
+.ui-icon-contact { background-position: -192px -128px; }
+.ui-icon-image { background-position: -208px -128px; }
+.ui-icon-video { background-position: -224px -128px; }
+.ui-icon-script { background-position: -240px -128px; }
+.ui-icon-alert { background-position: 0 -144px; }
+.ui-icon-info { background-position: -16px -144px; }
+.ui-icon-notice { background-position: -32px -144px; }
+.ui-icon-help { background-position: -48px -144px; }
+.ui-icon-check { background-position: -64px -144px; }
+.ui-icon-bullet { background-position: -80px -144px; }
+.ui-icon-radio-on { background-position: -96px -144px; }
+.ui-icon-radio-off { background-position: -112px -144px; }
+.ui-icon-pin-w { background-position: -128px -144px; }
+.ui-icon-pin-s { background-position: -144px -144px; }
+.ui-icon-play { background-position: 0 -160px; }
+.ui-icon-pause { background-position: -16px -160px; }
+.ui-icon-seek-next { background-position: -32px -160px; }
+.ui-icon-seek-prev { background-position: -48px -160px; }
+.ui-icon-seek-end { background-position: -64px -160px; }
+.ui-icon-seek-start { background-position: -80px -160px; }
+/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
+.ui-icon-seek-first { background-position: -80px -160px; }
+.ui-icon-stop { background-position: -96px -160px; }
+.ui-icon-eject { background-position: -112px -160px; }
+.ui-icon-volume-off { background-position: -128px -160px; }
+.ui-icon-volume-on { background-position: -144px -160px; }
+.ui-icon-power { background-position: 0 -176px; }
+.ui-icon-signal-diag { background-position: -16px -176px; }
+.ui-icon-signal { background-position: -32px -176px; }
+.ui-icon-battery-0 { background-position: -48px -176px; }
+.ui-icon-battery-1 { background-position: -64px -176px; }
+.ui-icon-battery-2 { background-position: -80px -176px; }
+.ui-icon-battery-3 { background-position: -96px -176px; }
+.ui-icon-circle-plus { background-position: 0 -192px; }
+.ui-icon-circle-minus { background-position: -16px -192px; }
+.ui-icon-circle-close { background-position: -32px -192px; }
+.ui-icon-circle-triangle-e { background-position: -48px -192px; }
+.ui-icon-circle-triangle-s { background-position: -64px -192px; }
+.ui-icon-circle-triangle-w { background-position: -80px -192px; }
+.ui-icon-circle-triangle-n { background-position: -96px -192px; }
+.ui-icon-circle-arrow-e { background-position: -112px -192px; }
+.ui-icon-circle-arrow-s { background-position: -128px -192px; }
+.ui-icon-circle-arrow-w { background-position: -144px -192px; }
+.ui-icon-circle-arrow-n { background-position: -160px -192px; }
+.ui-icon-circle-zoomin { background-position: -176px -192px; }
+.ui-icon-circle-zoomout { background-position: -192px -192px; }
+.ui-icon-circle-check { background-position: -208px -192px; }
+.ui-icon-circlesmall-plus { background-position: 0 -208px; }
+.ui-icon-circlesmall-minus { background-position: -16px -208px; }
+.ui-icon-circlesmall-close { background-position: -32px -208px; }
+.ui-icon-squaresmall-plus { background-position: -48px -208px; }
+.ui-icon-squaresmall-minus { background-position: -64px -208px; }
+.ui-icon-squaresmall-close { background-position: -80px -208px; }
+.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
+.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
+.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
+.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
+.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
+.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
+
+
+/* Misc visuals
+----------------------------------*/
+
+/* Corner radius */
+.ui-corner-all,
+.ui-corner-top,
+.ui-corner-left,
+.ui-corner-tl {
+ border-top-left-radius: 5px;
+}
+.ui-corner-all,
+.ui-corner-top,
+.ui-corner-right,
+.ui-corner-tr {
+ border-top-right-radius: 5px;
+}
+.ui-corner-all,
+.ui-corner-bottom,
+.ui-corner-left,
+.ui-corner-bl {
+ border-bottom-left-radius: 5px;
+}
+.ui-corner-all,
+.ui-corner-bottom,
+.ui-corner-right,
+.ui-corner-br {
+ border-bottom-right-radius: 5px;
+}
+
+/* Overlays */
+.ui-widget-overlay {
+ background: #aaaaaa;
+ opacity: .3;
+ filter: Alpha(Opacity=30); /* support: IE8 */
+}
+.ui-widget-shadow {
+ margin: -8px 0 0 -8px;
+ padding: 8px;
+ background: #aaaaaa;
+ opacity: .3;
+ filter: Alpha(Opacity=30); /* support: IE8 */
+ border-radius: 8px;
+}
\ No newline at end of file
diff --git a/static/main/css/jquery.fancybox.min.css b/static/main/css/jquery.fancybox.min.css
new file mode 100644
index 0000000..7cc60b2
--- /dev/null
+++ b/static/main/css/jquery.fancybox.min.css
@@ -0,0 +1 @@
+body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}
\ No newline at end of file
diff --git a/static/main/css/magnific-popup.css b/static/main/css/magnific-popup.css
new file mode 100644
index 0000000..a0fee00
--- /dev/null
+++ b/static/main/css/magnific-popup.css
@@ -0,0 +1,351 @@
+/* Magnific Popup CSS */
+.mfp-bg {
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 2042;
+ overflow: hidden;
+ position: fixed;
+ background: #0b0b0b;
+ opacity: 0.8; }
+
+.mfp-wrap {
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 2043;
+ position: fixed;
+ outline: none !important;
+ -webkit-backface-visibility: hidden; }
+
+.mfp-container {
+ text-align: center;
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ left: 0;
+ top: 0;
+ padding: 0 8px;
+ box-sizing: border-box; }
+
+.mfp-container:before {
+ content: '';
+ display: inline-block;
+ height: 100%;
+ vertical-align: middle; }
+
+.mfp-align-top .mfp-container:before {
+ display: none; }
+
+.mfp-content {
+ position: relative;
+ display: inline-block;
+ vertical-align: middle;
+ margin: 0 auto;
+ text-align: left;
+ z-index: 2045; }
+
+.mfp-inline-holder .mfp-content,
+.mfp-ajax-holder .mfp-content {
+ width: 100%;
+ cursor: auto; }
+
+.mfp-ajax-cur {
+ cursor: progress; }
+
+.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
+ cursor: -moz-zoom-out;
+ cursor: -webkit-zoom-out;
+ cursor: zoom-out; }
+
+.mfp-zoom {
+ cursor: pointer;
+ cursor: -webkit-zoom-in;
+ cursor: -moz-zoom-in;
+ cursor: zoom-in; }
+
+.mfp-auto-cursor .mfp-content {
+ cursor: auto; }
+
+.mfp-close,
+.mfp-arrow,
+.mfp-preloader,
+.mfp-counter {
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none; }
+
+.mfp-loading.mfp-figure {
+ display: none; }
+
+.mfp-hide {
+ display: none !important; }
+
+.mfp-preloader {
+ color: #CCC;
+ position: absolute;
+ top: 50%;
+ width: auto;
+ text-align: center;
+ margin-top: -0.8em;
+ left: 8px;
+ right: 8px;
+ z-index: 2044; }
+ .mfp-preloader a {
+ color: #CCC; }
+ .mfp-preloader a:hover {
+ color: #FFF; }
+
+.mfp-s-ready .mfp-preloader {
+ display: none; }
+
+.mfp-s-error .mfp-content {
+ display: none; }
+
+button.mfp-close,
+button.mfp-arrow {
+ overflow: visible;
+ cursor: pointer;
+ background: transparent;
+ border: 0;
+ -webkit-appearance: none;
+ display: block;
+ outline: none;
+ padding: 0;
+ z-index: 2046;
+ box-shadow: none;
+ touch-action: manipulation; }
+
+button::-moz-focus-inner {
+ padding: 0;
+ border: 0; }
+
+.mfp-close {
+ width: 44px;
+ height: 44px;
+ line-height: 44px;
+ position: absolute;
+ right: 0;
+ top: 0;
+ text-decoration: none;
+ text-align: center;
+ opacity: 0.65;
+ padding: 0 0 18px 10px;
+ color: #FFF;
+ font-style: normal;
+ font-size: 28px;
+ font-family: Arial, Baskerville, monospace; }
+ .mfp-close:hover,
+ .mfp-close:focus {
+ opacity: 1; }
+ .mfp-close:active {
+ top: 1px; }
+
+.mfp-close-btn-in .mfp-close {
+ color: #333; }
+
+.mfp-image-holder .mfp-close,
+.mfp-iframe-holder .mfp-close {
+ color: #FFF;
+ right: -6px;
+ text-align: right;
+ padding-right: 6px;
+ width: 100%; }
+
+.mfp-counter {
+ position: absolute;
+ top: 0;
+ right: 0;
+ color: #CCC;
+ font-size: 12px;
+ line-height: 18px;
+ white-space: nowrap; }
+
+.mfp-arrow {
+ position: absolute;
+ opacity: 0.65;
+ margin: 0;
+ top: 50%;
+ margin-top: -55px;
+ padding: 0;
+ width: 90px;
+ height: 110px;
+ -webkit-tap-highlight-color: transparent; }
+ .mfp-arrow:active {
+ margin-top: -54px; }
+ .mfp-arrow:hover,
+ .mfp-arrow:focus {
+ opacity: 1; }
+ .mfp-arrow:before,
+ .mfp-arrow:after {
+ content: '';
+ display: block;
+ width: 0;
+ height: 0;
+ position: absolute;
+ left: 0;
+ top: 0;
+ margin-top: 35px;
+ margin-left: 35px;
+ border: medium inset transparent; }
+ .mfp-arrow:after {
+ border-top-width: 13px;
+ border-bottom-width: 13px;
+ top: 8px; }
+ .mfp-arrow:before {
+ border-top-width: 21px;
+ border-bottom-width: 21px;
+ opacity: 0.7; }
+
+.mfp-arrow-left {
+ left: 0; }
+ .mfp-arrow-left:after {
+ border-right: 17px solid #FFF;
+ margin-left: 31px; }
+ .mfp-arrow-left:before {
+ margin-left: 25px;
+ border-right: 27px solid #3F3F3F; }
+
+.mfp-arrow-right {
+ right: 0; }
+ .mfp-arrow-right:after {
+ border-left: 17px solid #FFF;
+ margin-left: 39px; }
+ .mfp-arrow-right:before {
+ border-left: 27px solid #3F3F3F; }
+
+.mfp-iframe-holder {
+ padding-top: 40px;
+ padding-bottom: 40px; }
+ .mfp-iframe-holder .mfp-content {
+ line-height: 0;
+ width: 100%;
+ max-width: 900px; }
+ .mfp-iframe-holder .mfp-close {
+ top: -40px; }
+
+.mfp-iframe-scaler {
+ width: 100%;
+ height: 0;
+ overflow: hidden;
+ padding-top: 56.25%; }
+ .mfp-iframe-scaler iframe {
+ position: absolute;
+ display: block;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
+ background: #000; }
+
+/* Main image in popup */
+img.mfp-img {
+ width: auto;
+ max-width: 100%;
+ height: auto;
+ display: block;
+ line-height: 0;
+ box-sizing: border-box;
+ padding: 40px 0 40px;
+ margin: 0 auto; }
+
+/* The shadow behind the image */
+.mfp-figure {
+ line-height: 0; }
+ .mfp-figure:after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 40px;
+ bottom: 40px;
+ display: block;
+ right: 0;
+ width: auto;
+ height: auto;
+ z-index: -1;
+ box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
+ background: #444; }
+ .mfp-figure small {
+ color: #BDBDBD;
+ display: block;
+ font-size: 12px;
+ line-height: 14px; }
+ .mfp-figure figure {
+ margin: 0; }
+
+.mfp-bottom-bar {
+ margin-top: -36px;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ cursor: auto; }
+
+.mfp-title {
+ text-align: left;
+ line-height: 18px;
+ color: #F3F3F3;
+ word-wrap: break-word;
+ padding-right: 36px; }
+
+.mfp-image-holder .mfp-content {
+ max-width: 100%; }
+
+.mfp-gallery .mfp-image-holder .mfp-figure {
+ cursor: pointer; }
+
+@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
+ /**
+ * Remove all paddings around the image on small screen
+ */
+ .mfp-img-mobile .mfp-image-holder {
+ padding-left: 0;
+ padding-right: 0; }
+ .mfp-img-mobile img.mfp-img {
+ padding: 0; }
+ .mfp-img-mobile .mfp-figure:after {
+ top: 0;
+ bottom: 0; }
+ .mfp-img-mobile .mfp-figure small {
+ display: inline;
+ margin-left: 5px; }
+ .mfp-img-mobile .mfp-bottom-bar {
+ background: rgba(0, 0, 0, 0.6);
+ bottom: 0;
+ margin: 0;
+ top: auto;
+ padding: 3px 5px;
+ position: fixed;
+ box-sizing: border-box; }
+ .mfp-img-mobile .mfp-bottom-bar:empty {
+ padding: 0; }
+ .mfp-img-mobile .mfp-counter {
+ right: 5px;
+ top: 3px; }
+ .mfp-img-mobile .mfp-close {
+ top: 0;
+ right: 0;
+ width: 35px;
+ height: 35px;
+ line-height: 35px;
+ background: rgba(0, 0, 0, 0.6);
+ position: fixed;
+ text-align: center;
+ padding: 0; } }
+
+@media all and (max-width: 900px) {
+ .mfp-arrow {
+ -webkit-transform: scale(0.75);
+ transform: scale(0.75); }
+ .mfp-arrow-left {
+ -webkit-transform-origin: 0;
+ transform-origin: 0; }
+ .mfp-arrow-right {
+ -webkit-transform-origin: 100%;
+ transform-origin: 100%; }
+ .mfp-container {
+ padding-left: 6px;
+ padding-right: 6px; } }
\ No newline at end of file
diff --git a/static/main/css/mediaelementplayer.css b/static/main/css/mediaelementplayer.css
new file mode 100644
index 0000000..dfd427b
--- /dev/null
+++ b/static/main/css/mediaelementplayer.css
@@ -0,0 +1,773 @@
+/* Accessibility: hide screen reader texts (and prefer "top" for RTL languages).
+Reference: http://blog.rrwd.nl/2015/04/04/the-screen-reader-text-class-why-and-how/ */
+.mejs__offscreen {
+ border: 0;
+ clip: rect( 1px, 1px, 1px, 1px );
+ -webkit-clip-path: inset( 50% );
+ clip-path: inset( 50% );
+ height: 1px;
+ margin: -1px;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ width: 1px;
+ word-wrap: normal;
+}
+
+.mejs__container {
+ background: #000;
+ box-sizing: border-box;
+ font-family: 'Helvetica', Arial, serif;
+ position: relative;
+ text-align: left;
+ text-indent: 0;
+ vertical-align: top;
+}
+
+.mejs__container * {
+ box-sizing: border-box;
+}
+
+/* Hide native play button and control bar from iOS to favor plugin button */
+.mejs__container video::-webkit-media-controls,
+.mejs__container video::-webkit-media-controls-panel,
+.mejs__container video::-webkit-media-controls-panel-container,
+.mejs__container video::-webkit-media-controls-start-playback-button {
+ -webkit-appearance: none;
+ display: none !important;
+}
+
+.mejs__fill-container,
+.mejs__fill-container .mejs__container {
+ height: 100%;
+ width: 100%;
+}
+
+.mejs__fill-container {
+ background: transparent;
+ margin: 0 auto;
+ overflow: hidden;
+ position: relative;
+}
+
+.mejs__container:focus {
+ outline: none;
+}
+
+.mejs__iframe-overlay {
+ height: 100%;
+ position: absolute;
+ width: 100%;
+}
+
+.mejs__embed,
+.mejs__embed body {
+ background: #000;
+ height: 100%;
+ margin: 0;
+ overflow: hidden;
+ padding: 0;
+ width: 100%;
+}
+
+.mejs__fullscreen {
+ overflow: hidden !important;
+}
+
+.mejs__container-fullscreen {
+ bottom: 0;
+ left: 0;
+ overflow: hidden;
+ position: fixed;
+ right: 0;
+ top: 0;
+ z-index: 1000;
+}
+
+.mejs__container-fullscreen .mejs__mediaelement,
+.mejs__container-fullscreen video {
+ height: 100% !important;
+ width: 100% !important;
+}
+
+/* Start: LAYERS */
+.mejs__background {
+ left: 0;
+ position: absolute;
+ top: 0;
+}
+
+.mejs__mediaelement {
+ height: 100%;
+ left: 0;
+ position: absolute;
+ top: 0;
+ width: 100%;
+ z-index: 0;
+}
+
+.mejs__poster {
+ background-position: 50% 50%;
+ background-repeat: no-repeat;
+ background-size: cover;
+ left: 0;
+ position: absolute;
+ top: 0;
+ z-index: 1;
+}
+
+:root .mejs__poster-img {
+ display: none;
+}
+
+.mejs__poster-img {
+ border: 0;
+ padding: 0;
+}
+
+.mejs__overlay {
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ left: 0;
+ position: absolute;
+ top: 0;
+}
+
+.mejs__layer {
+ z-index: 1;
+}
+
+.mejs__overlay-play {
+ cursor: pointer;
+}
+
+.mejs__overlay-button {
+ background: url('mejs-controls.svg') no-repeat;
+ background-position: 0 -39px;
+ height: 80px;
+ width: 80px;
+}
+
+.mejs__overlay:hover > .mejs__overlay-button {
+ background-position: -80px -39px;
+}
+
+.mejs__overlay-loading {
+ height: 80px;
+ width: 80px;
+}
+
+.mejs__overlay-loading-bg-img {
+ -webkit-animation: mejs__loading-spinner 1s linear infinite;
+ animation: mejs__loading-spinner 1s linear infinite;
+ background: transparent url('mejs-controls.svg') -160px -40px no-repeat;
+ display: block;
+ height: 80px;
+ width: 80px;
+ z-index: 1;
+}
+
+@-webkit-keyframes mejs__loading-spinner {
+ 100% {
+ -webkit-transform: rotate(360deg);
+ transform: rotate(360deg);
+ }
+}
+
+@keyframes mejs__loading-spinner {
+ 100% {
+ -webkit-transform: rotate(360deg);
+ transform: rotate(360deg);
+ }
+}
+
+/* End: LAYERS */
+
+/* Start: CONTROL BAR */
+.mejs__controls {
+ bottom: 0;
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ height: 40px;
+ left: 0;
+ list-style-type: none;
+ margin: 0;
+ padding: 0 10px;
+ position: absolute;
+ width: 100%;
+ z-index: 3;
+}
+
+.mejs__controls:not([style*='display: none']) {
+ background: rgba(255, 0, 0, 0.7);
+ background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.35));
+ background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
+}
+
+.mejs__button,
+.mejs__time,
+.mejs__time-rail {
+ font-size: 10px;
+ height: 40px;
+ line-height: 10px;
+ margin: 0;
+ width: 32px;
+}
+
+.mejs__button > button {
+ background: transparent url('mejs-controls.svg');
+ border: 0;
+ cursor: pointer;
+ display: block;
+ font-size: 0;
+ height: 20px;
+ line-height: 0;
+ margin: 10px 6px;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ text-decoration: none;
+ width: 20px;
+}
+
+/* :focus for accessibility */
+.mejs__button > button:focus {
+ outline: dotted 1px #999;
+}
+
+.mejs__container-keyboard-inactive a,
+.mejs__container-keyboard-inactive a:focus,
+.mejs__container-keyboard-inactive button,
+.mejs__container-keyboard-inactive button:focus,
+.mejs__container-keyboard-inactive [role=slider],
+.mejs__container-keyboard-inactive [role=slider]:focus {
+ outline: 0;
+}
+
+/* End: CONTROL BAR */
+
+/* Start: Time (Current / Duration) */
+.mejs__time {
+ box-sizing: content-box;
+ color: #fff;
+ font-size: 11px;
+ font-weight: bold;
+ height: 24px;
+ overflow: hidden;
+ padding: 16px 6px 0;
+ text-align: center;
+ width: auto;
+}
+
+/* End: Time (Current / Duration) */
+
+/* Start: Play/Pause/Stop */
+.mejs__play > button {
+ background-position: 0 0;
+}
+
+.mejs__pause > button {
+ background-position: -20px 0;
+}
+
+.mejs__replay > button {
+ background-position: -160px 0;
+}
+
+/* End: Play/Pause/Stop */
+
+/* Start: Progress Bar */
+.mejs__time-rail {
+ direction: ltr;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ height: 40px;
+ margin: 0 10px;
+ padding-top: 10px;
+ position: relative;
+}
+
+.mejs__time-total,
+.mejs__time-buffering,
+.mejs__time-loaded,
+.mejs__time-current,
+.mejs__time-float,
+.mejs__time-hovered,
+.mejs__time-float-current,
+.mejs__time-float-corner,
+.mejs__time-marker {
+ border-radius: 2px;
+ cursor: pointer;
+ display: block;
+ height: 10px;
+ position: absolute;
+}
+
+.mejs__time-total {
+ background: rgba(255, 255, 255, 0.3);
+ margin: 5px 0 0;
+ width: 100%;
+}
+
+.mejs__time-buffering {
+ -webkit-animation: buffering-stripes 2s linear infinite;
+ animation: buffering-stripes 2s linear infinite;
+ background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
+ background: linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
+ background-size: 15px 15px;
+ width: 100%;
+}
+
+@-webkit-keyframes buffering-stripes {
+ from {
+ background-position: 0 0;
+ }
+ to {
+ background-position: 30px 0;
+ }
+}
+
+@keyframes buffering-stripes {
+ from {
+ background-position: 0 0;
+ }
+ to {
+ background-position: 30px 0;
+ }
+}
+
+.mejs__time-loaded {
+ background: rgba(255, 255, 255, 0.3);
+}
+
+.mejs__time-current,
+.mejs__time-handle-content {
+ background: rgba(255, 255, 255, 0.9);
+}
+
+.mejs__time-hovered {
+ background: rgba(255, 255, 255, 0.5);
+ z-index: 10;
+}
+
+.mejs__time-hovered.negative {
+ background: rgba(0, 0, 0, 0.2);
+}
+
+.mejs__time-current,
+.mejs__time-buffering,
+.mejs__time-loaded,
+.mejs__time-hovered {
+ left: 0;
+ -webkit-transform: scaleX(0);
+ -ms-transform: scaleX(0);
+ transform: scaleX(0);
+ -webkit-transform-origin: 0 0;
+ -ms-transform-origin: 0 0;
+ transform-origin: 0 0;
+ -webkit-transition: 0.15s ease-in all;
+ transition: 0.15s ease-in all;
+ width: 100%;
+}
+
+.mejs__time-buffering {
+ -webkit-transform: scaleX(1);
+ -ms-transform: scaleX(1);
+ transform: scaleX(1);
+}
+
+.mejs__time-hovered {
+ -webkit-transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
+ transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
+}
+
+.mejs__time-hovered.no-hover {
+ -webkit-transform: scaleX(0) !important;
+ -ms-transform: scaleX(0) !important;
+ transform: scaleX(0) !important;
+}
+
+.mejs__time-handle,
+.mejs__time-handle-content {
+ border: 4px solid transparent;
+ cursor: pointer;
+ left: 0;
+ position: absolute;
+ -webkit-transform: translateX(0);
+ -ms-transform: translateX(0);
+ transform: translateX(0);
+ z-index: 11;
+}
+
+.mejs__time-handle-content {
+ border: 4px solid rgba(255, 255, 255, 0.9);
+ border-radius: 50%;
+ height: 10px;
+ left: -7px;
+ top: -4px;
+ -webkit-transform: scale(0);
+ -ms-transform: scale(0);
+ transform: scale(0);
+ width: 10px;
+}
+
+.mejs__time-rail:hover .mejs__time-handle-content,
+.mejs__time-rail .mejs__time-handle-content:focus,
+.mejs__time-rail .mejs__time-handle-content:active {
+ -webkit-transform: scale(1);
+ -ms-transform: scale(1);
+ transform: scale(1);
+}
+
+.mejs__time-float {
+ background: #eee;
+ border: solid 1px #333;
+ bottom: 100%;
+ color: #111;
+ display: none;
+ height: 17px;
+ margin-bottom: 9px;
+ position: absolute;
+ text-align: center;
+ -webkit-transform: translateX(-50%);
+ -ms-transform: translateX(-50%);
+ transform: translateX(-50%);
+ width: 36px;
+}
+
+.mejs__time-float-current {
+ display: block;
+ left: 0;
+ margin: 2px;
+ text-align: center;
+ width: 30px;
+}
+
+.mejs__time-float-corner {
+ border: solid 5px #eee;
+ border-color: #eee transparent transparent;
+ border-radius: 0;
+ display: block;
+ height: 0;
+ left: 50%;
+ line-height: 0;
+ position: absolute;
+ top: 100%;
+ -webkit-transform: translateX(-50%);
+ -ms-transform: translateX(-50%);
+ transform: translateX(-50%);
+ width: 0;
+}
+
+.mejs__long-video .mejs__time-float {
+ margin-left: -23px;
+ width: 64px;
+}
+
+.mejs__long-video .mejs__time-float-current {
+ width: 60px;
+}
+
+.mejs__broadcast {
+ color: #fff;
+ height: 10px;
+ position: absolute;
+ top: 15px;
+ width: 100%;
+}
+
+/* End: Progress Bar */
+
+/* Start: Fullscreen */
+.mejs__fullscreen-button > button {
+ background-position: -80px 0;
+}
+
+.mejs__unfullscreen > button {
+ background-position: -100px 0;
+}
+
+/* End: Fullscreen */
+
+/* Start: Mute/Volume */
+.mejs__mute > button {
+ background-position: -60px 0;
+}
+
+.mejs__unmute > button {
+ background-position: -40px 0;
+}
+
+.mejs__volume-button {
+ position: relative;
+}
+
+.mejs__volume-button > .mejs__volume-slider {
+ -webkit-backface-visibility: hidden;
+ background: rgba(50, 50, 50, 0.7);
+ border-radius: 0;
+ bottom: 100%;
+ display: none;
+ height: 115px;
+ left: 50%;
+ margin: 0;
+ position: absolute;
+ -webkit-transform: translateX(-50%);
+ -ms-transform: translateX(-50%);
+ transform: translateX(-50%);
+ width: 25px;
+ z-index: 1;
+}
+
+.mejs__volume-button:hover {
+ border-radius: 0 0 4px 4px;
+}
+
+.mejs__volume-total {
+ background: rgba(255, 255, 255, 0.5);
+ height: 100px;
+ left: 50%;
+ margin: 0;
+ position: absolute;
+ top: 8px;
+ -webkit-transform: translateX(-50%);
+ -ms-transform: translateX(-50%);
+ transform: translateX(-50%);
+ width: 2px;
+}
+
+.mejs__volume-current {
+ background: rgba(255, 255, 255, 0.9);
+ left: 0;
+ margin: 0;
+ position: absolute;
+ width: 100%;
+}
+
+.mejs__volume-handle {
+ background: rgba(255, 255, 255, 0.9);
+ border-radius: 1px;
+ cursor: ns-resize;
+ height: 6px;
+ left: 50%;
+ position: absolute;
+ -webkit-transform: translateX(-50%);
+ -ms-transform: translateX(-50%);
+ transform: translateX(-50%);
+ width: 16px;
+}
+
+.mejs__horizontal-volume-slider {
+ display: block;
+ height: 36px;
+ position: relative;
+ vertical-align: middle;
+ width: 56px;
+}
+
+.mejs__horizontal-volume-total {
+ background: rgba(50, 50, 50, 0.8);
+ border-radius: 2px;
+ font-size: 1px;
+ height: 8px;
+ left: 0;
+ margin: 0;
+ padding: 0;
+ position: absolute;
+ top: 16px;
+ width: 50px;
+}
+
+.mejs__horizontal-volume-current {
+ background: rgba(255, 255, 255, 0.8);
+ border-radius: 2px;
+ font-size: 1px;
+ height: 100%;
+ left: 0;
+ margin: 0;
+ padding: 0;
+ position: absolute;
+ top: 0;
+ width: 100%;
+}
+
+.mejs__horizontal-volume-handle {
+ display: none;
+}
+
+/* End: Mute/Volume */
+
+/* Start: Track (Captions and Chapters) */
+.mejs__captions-button,
+.mejs__chapters-button {
+ position: relative;
+}
+
+.mejs__captions-button > button {
+ background-position: -140px 0;
+}
+
+.mejs__chapters-button > button {
+ background-position: -180px 0;
+}
+
+.mejs__captions-button > .mejs__captions-selector,
+.mejs__chapters-button > .mejs__chapters-selector {
+ background: rgba(50, 50, 50, 0.7);
+ border: solid 1px transparent;
+ border-radius: 0;
+ bottom: 100%;
+ margin-right: -43px;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ right: 50%;
+ visibility: visible;
+ width: 86px;
+}
+
+.mejs__chapters-button > .mejs__chapters-selector {
+ margin-right: -55px;
+ width: 110px;
+}
+
+.mejs__captions-selector-list,
+.mejs__chapters-selector-list {
+ list-style-type: none !important;
+ margin: 0;
+ overflow: hidden;
+ padding: 0;
+}
+
+.mejs__captions-selector-list-item,
+.mejs__chapters-selector-list-item {
+ color: #fff;
+ cursor: pointer;
+ display: block;
+ list-style-type: none !important;
+ margin: 0 0 6px;
+ overflow: hidden;
+ padding: 0;
+}
+
+.mejs__captions-selector-list-item:hover,
+.mejs__chapters-selector-list-item:hover {
+ background-color: rgb(200, 200, 200) !important;
+ background-color: rgba(255, 255, 255, 0.4) !important;
+}
+
+.mejs__captions-selector-input,
+.mejs__chapters-selector-input {
+ clear: both;
+ float: left;
+ left: -1000px;
+ margin: 3px 3px 0 5px;
+ position: absolute;
+}
+
+.mejs__captions-selector-label,
+.mejs__chapters-selector-label {
+ cursor: pointer;
+ float: left;
+ font-size: 10px;
+ line-height: 15px;
+ padding: 4px 10px 0;
+ width: 100%;
+}
+
+.mejs__captions-selected,
+.mejs__chapters-selected {
+ color: rgba(33, 248, 248, 1);
+}
+
+.mejs__captions-translations {
+ font-size: 10px;
+ margin: 0 0 5px;
+}
+
+.mejs__captions-layer {
+ bottom: 0;
+ color: #fff;
+ font-size: 16px;
+ left: 0;
+ line-height: 20px;
+ position: absolute;
+ text-align: center;
+}
+
+.mejs__captions-layer a {
+ color: #fff;
+ text-decoration: underline;
+}
+
+.mejs__captions-layer[lang=ar] {
+ font-size: 20px;
+ font-weight: normal;
+}
+
+.mejs__captions-position {
+ bottom: 15px;
+ left: 0;
+ position: absolute;
+ width: 100%;
+}
+
+.mejs__captions-position-hover {
+ bottom: 35px;
+}
+
+.mejs__captions-text,
+.mejs__captions-text * {
+ background: rgba(20, 20, 20, 0.5);
+ box-shadow: 5px 0 0 rgba(20, 20, 20, 0.5), -5px 0 0 rgba(20, 20, 20, 0.5);
+ padding: 0;
+ white-space: pre-wrap;
+}
+
+.mejs__container.mejs__hide-cues video::-webkit-media-text-track-container {
+ display: none;
+}
+
+/* End: Track (Captions and Chapters) */
+
+/* Start: Error */
+.mejs__overlay-error {
+ position: relative;
+}
+.mejs__overlay-error > img {
+ left: 0;
+ position: absolute;
+ top: 0;
+ z-index: -1;
+}
+.mejs__cannotplay,
+.mejs__cannotplay a {
+ color: #fff;
+ font-size: 0.8em;
+}
+
+.mejs__cannotplay {
+ position: relative;
+}
+
+.mejs__cannotplay p,
+.mejs__cannotplay a {
+ display: inline-block;
+ padding: 0 15px;
+ width: 100%;
+}
+/* End: Error */
\ No newline at end of file
diff --git a/static/main/css/owl.carousel.min.css b/static/main/css/owl.carousel.min.css
new file mode 100644
index 0000000..1ece042
--- /dev/null
+++ b/static/main/css/owl.carousel.min.css
@@ -0,0 +1,6 @@
+/**
+ * Owl Carousel v2.2.1
+ * Copyright 2013-2017 David Deutsch
+ * Licensed under ()
+ */
+.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
\ No newline at end of file
diff --git a/static/main/css/owl.theme.default.min.css b/static/main/css/owl.theme.default.min.css
new file mode 100644
index 0000000..e15a77e
--- /dev/null
+++ b/static/main/css/owl.theme.default.min.css
@@ -0,0 +1,15 @@
+/**
+ * Owl Carousel v2.2.1
+ * Copyright 2013-2017 David Deutsch
+ * Licensed under ()
+ */
+.owl-theme .owl-dots,
+.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}
+.owl-theme .owl-nav{margin-top:10px}
+.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px;position: absolute;}
+.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}
+.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}
+.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}
+.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}
+.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}
+.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
\ No newline at end of file
diff --git a/static/main/css/style.css b/static/main/css/style.css
new file mode 100644
index 0000000..d7bde77
--- /dev/null
+++ b/static/main/css/style.css
@@ -0,0 +1,1020 @@
+/* Base */
+html {
+ overflow-x: hidden; }
+
+body {
+ line-height: 1.7;
+ color: #666666;
+ font-weight: 400;
+ font-size: 1rem; }
+
+::-moz-selection {
+ background: #000;
+ color: #fff; }
+
+::selection {
+ background: #000;
+ color: #fff; }
+
+a {
+ -webkit-transition: .3s all ease;
+ -o-transition: .3s all ease;
+ transition: .3s all ease; }
+ a:hover {
+ text-decoration: none; }
+
+h1, h2, h3, h4, h5,
+.h1, .h2, .h3, .h4, .h5 {
+ font-family: "Jost", sans-serif;
+ color: #000; }
+
+.border-2 {
+ border-width: 2px; }
+
+.text-black {
+ color: #000 !important; }
+
+.bg-black {
+ background: #000 !important; }
+
+.color-black-opacity-5 {
+ color: rgba(0, 0, 0, 0.5); }
+
+.color-white-opacity-5 {
+ color: rgba(255, 255, 255, 0.5); }
+
+body:after {
+ -webkit-transition: .3s all ease-in-out;
+ -o-transition: .3s all ease-in-out;
+ transition: .3s all ease-in-out; }
+
+.offcanvas-menu {
+ position: relative; }
+ .offcanvas-menu:after {
+ position: absolute;
+ content: "";
+ bottom: 0;
+ left: 0;
+ top: 0;
+ right: 0;
+ z-index: 999;
+ background: rgba(0, 0, 0, 0.2); }
+
+.btn {
+ font-size: 16px;
+ border-radius: 30px;
+ padding: 10px 30px; }
+ .btn:hover, .btn:active, .btn:focus {
+ outline: none;
+ -webkit-box-shadow: none !important;
+ box-shadow: none !important; }
+ .btn.btn-primary {
+ background: #C2E54F;
+ border-color: #C2E54F;
+ color: #fff; }
+ .btn.btn-primary:hover {
+ background: #000;
+ border-color: #000;
+ color: #fff; }
+ .btn.btn-primary.btn-black--hover:hover {
+ background: #666666;
+ color: #fff; }
+
+.line-height-1 {
+ line-height: 1 !important; }
+
+.bg-black {
+ background: #000; }
+
+.form-control {
+ height: 43px;
+ border-radius: 30px;
+ font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }
+ .form-control:active, .form-control:focus {
+ border-color: #C2E54F; }
+ .form-control:hover, .form-control:active, .form-control:focus {
+ -webkit-box-shadow: none !important;
+ box-shadow: none !important; }
+
+.site-section {
+ padding: 2.5em 0; }
+ @media (min-width: 768px) {
+ .site-section {
+ padding: 7em 0; } }
+ .site-section.site-section-sm {
+ padding: 4em 0; }
+
+.site-section-heading {
+ padding-bottom: 20px;
+ margin-bottom: 0px;
+ position: relative;
+ font-size: 2.5rem; }
+ @media (min-width: 768px) {
+ .site-section-heading {
+ font-size: 3rem; } }
+
+.site-footer {
+ padding: 4em 0;
+ background: #333333; }
+ @media (min-width: 768px) {
+ .site-footer {
+ padding: 8em 0; } }
+ .site-footer .border-top {
+ border-top: 1px solid rgba(255, 255, 255, 0.1) !important; }
+ .site-footer p {
+ color: #737373; }
+ .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5 {
+ color: #fff; }
+ .site-footer a {
+ color: #999999; }
+ .site-footer a:hover {
+ color: white; }
+ .site-footer ul li {
+ margin-bottom: 10px; }
+ .site-footer .footer-heading {
+ font-size: 16px;
+ color: #fff; }
+
+.bg-text-line {
+ display: inline;
+ background: #000;
+ -webkit-box-shadow: 20px 0 0 #000, -20px 0 0 #000;
+ box-shadow: 20px 0 0 #000, -20px 0 0 #000; }
+
+.text-white-opacity-05 {
+ color: rgba(255, 255, 255, 0.5); }
+
+.text-black-opacity-05 {
+ color: rgba(0, 0, 0, 0.5); }
+
+.hover-bg-enlarge {
+ overflow: hidden;
+ position: relative; }
+ @media (max-width: 991.98px) {
+ .hover-bg-enlarge {
+ height: auto !important; } }
+ .hover-bg-enlarge > div {
+ -webkit-transform: scale(1);
+ -ms-transform: scale(1);
+ transform: scale(1);
+ -webkit-transition: .8s all ease-in-out;
+ -o-transition: .8s all ease-in-out;
+ transition: .8s all ease-in-out; }
+ .hover-bg-enlarge:hover > div, .hover-bg-enlarge:focus > div, .hover-bg-enlarge:active > div {
+ -webkit-transform: scale(1.2);
+ -ms-transform: scale(1.2);
+ transform: scale(1.2); }
+ @media (max-width: 991.98px) {
+ .hover-bg-enlarge .bg-image-md-height {
+ height: 300px !important; } }
+
+.bg-image {
+ background-size: cover;
+ background-position: center center;
+ background-repeat: no-repeat;
+ background-attachment: fixed; }
+ .bg-image.overlay {
+ position: relative; }
+ .bg-image.overlay:after {
+ position: absolute;
+ content: "";
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ z-index: 0;
+ width: 100%;
+ background: rgba(0, 0, 0, 0.7); }
+ .bg-image > .container {
+ position: relative;
+ z-index: 1; }
+
+@media (max-width: 991.98px) {
+ .img-md-fluid {
+ max-width: 100%; } }
+
+@media (max-width: 991.98px) {
+ .display-1, .display-3 {
+ font-size: 3rem; } }
+
+.play-single-big {
+ width: 90px;
+ height: 90px;
+ display: inline-block;
+ border: 2px solid #fff;
+ color: #fff !important;
+ border-radius: 50%;
+ position: relative;
+ -webkit-transition: .3s all ease-in-out;
+ -o-transition: .3s all ease-in-out;
+ transition: .3s all ease-in-out; }
+ .play-single-big > span {
+ font-size: 50px;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-40%, -50%);
+ -ms-transform: translate(-40%, -50%);
+ transform: translate(-40%, -50%); }
+ .play-single-big:hover {
+ width: 120px;
+ height: 120px; }
+
+.overlap-to-top {
+ margin-top: -150px; }
+
+.ul-check {
+ margin-bottom: 50px; }
+ .ul-check li {
+ position: relative;
+ padding-left: 35px;
+ margin-bottom: 15px;
+ line-height: 1.5; }
+ .ul-check li:before {
+ left: 0;
+ font-size: 20px;
+ top: -.3rem;
+ font-family: "icomoon";
+ content: "\e5ca";
+ position: absolute; }
+ .ul-check.white li:before {
+ color: #fff; }
+ .ul-check.success li:before {
+ color: #71bc42; }
+ .ul-check.primary li:before {
+ color: #C2E54F; }
+ .ul-check li.remove {
+ text-decoration: line-through;
+ color: #dee2e6; }
+ .ul-check li.remove:before {
+ color: #dee2e6; }
+
+.select-wrap, .wrap-icon {
+ position: relative; }
+ .select-wrap .icon, .wrap-icon .icon {
+ position: absolute;
+ right: 10px;
+ top: 50%;
+ -webkit-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ transform: translateY(-50%);
+ font-size: 22px; }
+ .select-wrap select, .wrap-icon select {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ width: 100%; }
+
+.spinner-border {
+ color: #C2E54F; }
+
+/*PRELOADING------------ */
+#overlayer {
+ width: 100%;
+ height: 100%;
+ position: fixed;
+ z-index: 7100;
+ background: #fff;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0; }
+
+.loader {
+ z-index: 7700;
+ position: fixed;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ -ms-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%); }
+
+/* Navbar */
+.site-navbar {
+ margin-bottom: 0px;
+ z-index: 1999;
+ position: absolute;
+ top: 0;
+ width: 100%;
+ border-bottom: rgba(255, 255, 255, 0.7); }
+ .site-navbar .site-logo {
+ font-size: 1.5rem; }
+ .site-navbar .site-logo a {
+ border: 4px solid #fff;
+ display: inline-block;
+ padding: 5px 10px; }
+ .site-navbar .site-navigation .site-menu {
+ margin: 0;
+ padding: 0;
+ margin-bottom: 0;
+ font-family: "Jost", sans-serif; }
+ .site-navbar .site-navigation .site-menu a {
+ text-decoration: none !important;
+ display: inline-block;
+ position: relative;
+ padding: 5px 20px; }
+ .site-navbar .site-navigation .site-menu a:before {
+ position: absolute;
+ content: "";
+ bottom: 0;
+ left: 18px;
+ right: 18px;
+ height: 2px;
+ width: 0;
+ background: #fff;
+ -webkit-transition: .3s all ease-in-out;
+ -o-transition: .3s all ease-in-out;
+ transition: .3s all ease-in-out; }
+ .site-navbar .site-navigation .site-menu a:hover, .site-navbar .site-navigation .site-menu a.active {
+ color: #000; }
+ .site-navbar .site-navigation .site-menu a:hover:before, .site-navbar .site-navigation .site-menu a.active:before {
+ width: 100%; }
+ .site-navbar .site-navigation .site-menu > li {
+ display: inline-block; }
+ .site-navbar .site-navigation .site-menu > li > a {
+ padding: 5px 20px;
+ color: #000;
+ display: inline-block;
+ text-decoration: none !important; }
+ .site-navbar .site-navigation .site-menu > li > a:hover {
+ color: #C2E54F; }
+ .site-navbar .site-navigation .site-menu .has-children {
+ position: relative; }
+ .site-navbar .site-navigation .site-menu .has-children > a {
+ position: relative;
+ padding-right: 20px; }
+ .site-navbar .site-navigation .site-menu .has-children > a:before {
+ position: absolute;
+ content: "\e313";
+ font-size: 16px;
+ top: 50%;
+ right: 0;
+ -webkit-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ transform: translateY(-50%);
+ font-family: 'icomoon'; }
+ .site-navbar .site-navigation .site-menu .has-children .dropdown {
+ visibility: hidden;
+ opacity: 0;
+ top: 100%;
+ position: absolute;
+ text-align: left;
+ border-top: 2px solid #C2E54F;
+ -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
+ box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
+ padding: 0px 0;
+ margin-top: 20px;
+ margin-left: 0px;
+ background: #fff;
+ -webkit-transition: 0.2s 0s;
+ -o-transition: 0.2s 0s;
+ transition: 0.2s 0s; }
+ .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
+ position: absolute; }
+ .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
+ bottom: 100%;
+ left: 20%;
+ border: solid transparent;
+ content: " ";
+ height: 0;
+ width: 0;
+ position: absolute;
+ pointer-events: none; }
+ .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
+ border-color: rgba(136, 183, 213, 0);
+ border-bottom-color: #fff;
+ border-width: 10px;
+ margin-left: -10px; }
+ .site-navbar .site-navigation .site-menu .has-children .dropdown a {
+ text-transform: none;
+ letter-spacing: normal;
+ -webkit-transition: 0s all;
+ -o-transition: 0s all;
+ transition: 0s all;
+ color: #000; }
+ .site-navbar .site-navigation .site-menu .has-children .dropdown .active {
+ color: #C2E54F !important; }
+ .site-navbar .site-navigation .site-menu .has-children .dropdown > li {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ min-width: 210px; }
+ .site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
+ padding: 9px 20px;
+ display: block; }
+ .site-navbar .site-navigation .site-menu .has-children .dropdown > li > a:hover {
+ background: #eff1f3;
+ color: #000; }
+ .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {
+ content: "\e315";
+ right: 20px; }
+ .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
+ left: 100%;
+ top: 0; }
+ .site-navbar .site-navigation .site-menu .has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children:focus > a, .site-navbar .site-navigation .site-menu .has-children:active > a {
+ color: #C2E54F; }
+ .site-navbar .site-navigation .site-menu .has-children:hover, .site-navbar .site-navigation .site-menu .has-children:focus, .site-navbar .site-navigation .site-menu .has-children:active {
+ cursor: pointer; }
+ .site-navbar .site-navigation .site-menu .has-children:hover > .dropdown, .site-navbar .site-navigation .site-menu .has-children:focus > .dropdown, .site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
+ -webkit-transition-delay: 0s;
+ -o-transition-delay: 0s;
+ transition-delay: 0s;
+ margin-top: 0px;
+ visibility: visible;
+ opacity: 1; }
+
+.site-mobile-menu {
+ width: 300px;
+ position: fixed;
+ right: 0;
+ z-index: 2000;
+ padding-top: 20px;
+ background: #fff;
+ height: calc(100vh);
+ -webkit-transform: translateX(110%);
+ -ms-transform: translateX(110%);
+ transform: translateX(110%);
+ -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
+ box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
+ -webkit-transition: .3s all ease-in-out;
+ -o-transition: .3s all ease-in-out;
+ transition: .3s all ease-in-out; }
+ .offcanvas-menu .site-mobile-menu {
+ -webkit-transform: translateX(0%);
+ -ms-transform: translateX(0%);
+ transform: translateX(0%); }
+ .site-mobile-menu .site-mobile-menu-header {
+ width: 100%;
+ float: left;
+ padding-left: 20px;
+ padding-right: 20px; }
+ .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
+ float: right;
+ margin-top: 8px; }
+ .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
+ font-size: 30px;
+ display: inline-block;
+ padding-left: 10px;
+ padding-right: 0px;
+ line-height: 1;
+ cursor: pointer;
+ -webkit-transition: .3s all ease;
+ -o-transition: .3s all ease;
+ transition: .3s all ease; }
+ .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
+ float: left;
+ margin-top: 10px;
+ margin-left: 0px; }
+ .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
+ display: inline-block;
+ text-transform: uppercase; }
+ .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
+ max-width: 70px; }
+ .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
+ text-decoration: none; }
+ .site-mobile-menu .site-mobile-menu-body {
+ overflow-y: scroll;
+ -webkit-overflow-scrolling: touch;
+ position: relative;
+ padding: 0 20px 20px 20px;
+ height: calc(100vh - 52px);
+ padding-bottom: 150px; }
+ .site-mobile-menu .site-nav-wrap {
+ padding: 0;
+ margin: 0;
+ list-style: none;
+ position: relative; }
+ .site-mobile-menu .site-nav-wrap a {
+ padding: 10px 20px;
+ display: block;
+ position: relative;
+ color: #212529; }
+ .site-mobile-menu .site-nav-wrap a:hover {
+ color: #C2E54F; }
+ .site-mobile-menu .site-nav-wrap li {
+ position: relative;
+ display: block; }
+ .site-mobile-menu .site-nav-wrap li .active {
+ color: #C2E54F; }
+ .site-mobile-menu .site-nav-wrap .arrow-collapse {
+ position: absolute;
+ right: 0px;
+ top: 10px;
+ z-index: 20;
+ width: 36px;
+ height: 36px;
+ text-align: center;
+ cursor: pointer;
+ border-radius: 50%; }
+ .site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
+ background: #f8f9fa; }
+ .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
+ font-size: 12px;
+ z-index: 20;
+ font-family: "icomoon";
+ content: "\f078";
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%) rotate(-180deg);
+ -ms-transform: translate(-50%, -50%) rotate(-180deg);
+ transform: translate(-50%, -50%) rotate(-180deg);
+ -webkit-transition: .3s all ease;
+ -o-transition: .3s all ease;
+ transition: .3s all ease; }
+ .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
+ -webkit-transform: translate(-50%, -50%);
+ -ms-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%); }
+ .site-mobile-menu .site-nav-wrap > li {
+ display: block;
+ position: relative;
+ float: left;
+ width: 100%; }
+ .site-mobile-menu .site-nav-wrap > li > a {
+ padding-left: 20px;
+ font-size: 20px; }
+ .site-mobile-menu .site-nav-wrap > li > ul {
+ padding: 0;
+ margin: 0;
+ list-style: none; }
+ .site-mobile-menu .site-nav-wrap > li > ul > li {
+ display: block; }
+ .site-mobile-menu .site-nav-wrap > li > ul > li > a {
+ padding-left: 40px;
+ font-size: 16px; }
+ .site-mobile-menu .site-nav-wrap > li > ul > li > ul {
+ padding: 0;
+ margin: 0; }
+ .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
+ display: block; }
+ .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
+ font-size: 16px;
+ padding-left: 60px; }
+ .site-mobile-menu .site-nav-wrap[data-class="social"] {
+ float: left;
+ width: 100%;
+ margin-top: 30px;
+ padding-bottom: 5em; }
+ .site-mobile-menu .site-nav-wrap[data-class="social"] > li {
+ width: auto; }
+ .site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
+ padding-left: 15px !important; }
+
+.sticky-wrapper {
+ position: absolute;
+ z-index: 100;
+ width: 100%; }
+ .sticky-wrapper .site-navbar {
+ -webkit-transition: .3s all ease;
+ -o-transition: .3s all ease;
+ transition: .3s all ease; }
+ .sticky-wrapper .site-navbar .site-menu-toggle {
+ color: #fff; }
+ .sticky-wrapper .site-navbar .site-logo a {
+ color: #fff; }
+ .sticky-wrapper .site-navbar .site-menu > li > a {
+ color: #fff; }
+ .sticky-wrapper .site-navbar .site-menu > li > a:hover, .sticky-wrapper .site-navbar .site-menu > li > a.active {
+ color: #fff !important; }
+ .sticky-wrapper.is-sticky .site-navbar {
+ background: #fff;
+ border-bottom: 1px solid transparent;
+ -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
+ box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1); }
+ .sticky-wrapper.is-sticky .site-navbar .site-menu-toggle {
+ color: #000; }
+ .sticky-wrapper.is-sticky .site-navbar .site-logo {
+ font-size: 1.5rem; }
+ .sticky-wrapper.is-sticky .site-navbar .site-logo a {
+ border: 4px solid #000; }
+ .sticky-wrapper.is-sticky .site-navbar .site-logo a {
+ color: #000; }
+ .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
+ color: #000 !important; }
+ .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover, .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active {
+ color: #C2E54F !important; }
+ .sticky-wrapper .shrink {
+ padding-top: 10px !important;
+ padding-bottom: 10px !important; }
+
+/* Blocks */
+.site-blocks-cover {
+ background-size: cover;
+ background-repeat: no-repeat;
+ background-position: top;
+ background-position: center center;
+ overflow: hidden;
+ position: relative; }
+ .site-blocks-cover .lead {
+ font-family: "Jost", sans-serif;
+ font-size: 1.3rem;
+ color: #1a1a1a; }
+ .site-blocks-cover.overlay {
+ position: relative; }
+ .site-blocks-cover.overlay:before {
+ position: absolute;
+ content: "";
+ left: 0;
+ bottom: 0;
+ right: 0;
+ top: 0;
+ z-index: 2;
+ background: rgba(0, 0, 0, 0); }
+ .site-blocks-cover, .site-blocks-cover > .container > .row {
+ min-height: 600px;
+ height: calc(100vh); }
+ .site-blocks-cover.inner-page-cover, .site-blocks-cover.inner-page-cover > .container > .row {
+ min-height: 400px;
+ height: calc(20vh); }
+ .site-blocks-cover .text-intro {
+ position: relative;
+ z-index: 2; }
+ .site-blocks-cover h1 {
+ font-size: 3rem;
+ font-family: "Jost", sans-serif; }
+ .site-blocks-cover .img-face {
+ position: absolute;
+ right: -5%;
+ bottom: 0;
+ z-index: 1; }
+ @media (max-width: 991.98px) {
+ .site-blocks-cover .img-face {
+ right: -25%; } }
+
+.section-title {
+ position: relative;
+ padding-bottom: 20px; }
+ .section-title:after {
+ content: "";
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ height: 2px;
+ background: #C2E54F;
+ width: 50px; }
+ .section-title.text-center:after {
+ left: 50%;
+ -webkit-transform: translateX(-50%);
+ -ms-transform: translateX(-50%);
+ transform: translateX(-50%); }
+ .section-title.text-center:after {
+ background: #C2E54F; }
+
+.position-relative {
+ position: relative; }
+
+.service {
+ padding: 30px;
+ background: #fff;
+ -webkit-box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.1);
+ box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.1);
+ -webkit-transition: .3s all ease-in-out;
+ -o-transition: .3s all ease-in-out;
+ transition: .3s all ease-in-out;
+ top: 0;
+ position: relative; }
+ .service .svg-icon {
+ margin-right: 20px; }
+ .service .svg-icon img {
+ width: 150px; }
+ .service:hover {
+ -webkit-box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
+ box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
+ top: -2px; }
+ .service .service-number {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 60px;
+ flex: 0 0 60px; }
+ .service .service-number span {
+ position: relative;
+ width: 50px;
+ height: 50px;
+ line-height: 50px;
+ border-radius: 50%;
+ background: #e3d3c1;
+ display: inline-block;
+ color: #fff;
+ text-align: center; }
+ .service .service-about *:last-child {
+ margin-bottom: 0; }
+ .service .service-about h3 {
+ font-size: 1.2rem;
+ margin-bottom: 10px; }
+
+.gal-item {
+ margin-bottom: 30px; }
+
+.filters .btn {
+ border-color: transparent;
+ font-size: .8rem;
+ margin: 5px;
+ letter-spacing: .2rem;
+ background: rgba(52, 58, 64, 0.05);
+ color: #343a40;
+ padding: 5px 20px;
+ border-radius: 30px !important;
+ border: none !important;
+ text-transform: uppercase; }
+ .filters .btn:hover, .filters .btn:focus, .filters .btn:active {
+ border-color: transparent !important;
+ background: rgba(52, 58, 64, 0.3) !important;
+ color: #000; }
+ .filters .btn.active {
+ background: #C2E54F !important;
+ color: #fff !important;
+ border-color: #C2E54F !important; }
+
+/* Isotope Transitions
+------------------------------- */
+.isotope,
+.isotope .item {
+ -webkit-transition-duration: 0.8s;
+ -moz-transition-duration: 0.8s;
+ -ms-transition-duration: 0.8s;
+ -o-transition-duration: 0.8s;
+ transition-duration: 0.8s; }
+
+.isotope {
+ -webkit-transition-property: height, width;
+ -moz-transition-property: height, width;
+ -ms-transition-property: height, width;
+ -o-transition-property: height, width;
+ transition-property: height, width; }
+
+.isotope .item {
+ -webkit-transition-property: -webkit-transform, opacity;
+ -moz-transition-property: -moz-transform, opacity;
+ -ms-transition-property: -ms-transform, opacity;
+ -o-transition-property: top, left, opacity;
+ -webkit-transition-property: opacity, -webkit-transform;
+ transition-property: opacity, -webkit-transform;
+ -o-transition-property: transform, opacity;
+ transition-property: transform, opacity;
+ transition-property: transform, opacity, -webkit-transform; }
+
+/* responsive media queries */
+.item {
+ border: none;
+ margin-bottom: 30px;
+ border-radius: 4px; }
+ .item a {
+ display: block;
+ overflow: hidden;
+ position: relative;
+ border-radius: 4px; }
+ .item a img {
+ position: relative;
+ -webkit-transform: scale(1);
+ -ms-transform: scale(1);
+ transform: scale(1);
+ -webkit-transition: .3s all ease-in-out;
+ -o-transition: .3s all ease-in-out;
+ transition: .3s all ease-in-out; }
+ .item .item-wrap {
+ display: block;
+ position: relative; }
+ .item .item-wrap:after {
+ z-index: 2;
+ position: absolute;
+ content: "";
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: rgba(0, 0, 0, 0.4);
+ visibility: hidden;
+ opacity: 0;
+ -webkit-transition: .3s all ease-in-out;
+ -o-transition: .3s all ease-in-out;
+ transition: .3s all ease-in-out; }
+ .item .item-wrap > span {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ z-index: 3;
+ -webkit-transform: translate(-50%, -50%) scale(0);
+ -ms-transform: translate(-50%, -50%) scale(0);
+ transform: translate(-50%, -50%) scale(0);
+ color: #fff;
+ font-size: 1.7rem;
+ opacity: 0;
+ visibility: hidden;
+ -webkit-transition: .3s all ease;
+ -o-transition: .3s all ease;
+ transition: .3s all ease; }
+ .item .item-wrap:hover:after {
+ opacity: 1;
+ visibility: visible; }
+ .item .item-wrap:hover span {
+ margin-top: 0px;
+ opacity: 1;
+ visibility: visible;
+ -webkit-transform: translate(-50%, -50%) scale(1);
+ -ms-transform: translate(-50%, -50%) scale(1);
+ transform: translate(-50%, -50%) scale(1); }
+ .item:hover a img {
+ -webkit-transform: scale(1.05);
+ -ms-transform: scale(1.05);
+ transform: scale(1.05);
+ -webkit-transition: .3s all ease-in-out;
+ -o-transition: .3s all ease-in-out;
+ transition: .3s all ease-in-out; }
+
+.slide-one-item .slide {
+ text-align: center; }
+ .slide-one-item .slide blockquote {
+ position: relative;
+ max-width: 700px;
+ font-size: 1.2rem;
+ color: #000;
+ margin-left: auto;
+ margin-right: auto;
+ text-align: center;
+ font-style: italic;
+ color: #fff; }
+ .slide-one-item .slide blockquote:before {
+ color: #fff;
+ font-size: 2.2rem;
+ font-style: normal;
+ font-family: 'icomoon';
+ content: "\e244"; }
+ .slide-one-item .slide cite {
+ margin-top: 50px;
+ font-size: 1rem;
+ color: rgba(255, 255, 255, 0.5); }
+
+.slide-one-item .owl-dots {
+ text-align: center; }
+ .slide-one-item .owl-dots .owl-dot {
+ display: inline-block; }
+ .slide-one-item .owl-dots .owl-dot > span {
+ margin: 7px;
+ background: rgba(255, 255, 255, 0.3);
+ display: inline-block;
+ width: 7px;
+ height: 7px;
+ border-radius: 50%; }
+ .slide-one-item .owl-dots .owl-dot:hover > span {
+ background: rgba(255, 255, 255, 0.5); }
+ .slide-one-item .owl-dots .owl-dot.active > span {
+ background: #fff; }
+
+.blog_entry img {
+ border-top-left-radius: 4px;
+ border-top-right-radius: 4px; }
+
+.blog_entry > div {
+ border: 1px solid #eee;
+ border-top: none; }
+
+.blog_entry h3 {
+ font-size: 1.3rem; }
+ .blog_entry h3 a {
+ color: #000; }
+
+.blog_entry .date {
+ color: #999999;
+ display: block;
+ font-size: .9rem;
+ margin-bottom: 15px; }
+
+.blog_entry .more a {
+ position: relative;
+ color: #000;
+ padding-bottom: 10px; }
+ .blog_entry .more a:before {
+ content: "";
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ height: 2px;
+ background: #000;
+ -webkit-transition: .3s all ease;
+ -o-transition: .3s all ease;
+ transition: .3s all ease; }
+ .blog_entry .more a:hover:before {
+ background: #C2E54F; }
+
+.sidebar-box {
+ margin-bottom: 30px;
+ padding: 25px;
+ font-size: 15px;
+ width: 100%;
+ float: left;
+ background: #fff; }
+ .sidebar-box *:last-child {
+ margin-bottom: 0; }
+ .sidebar-box h3 {
+ font-size: 18px;
+ margin-bottom: 15px; }
+
+.categories li, .sidelink li {
+ position: relative;
+ margin-bottom: 10px;
+ padding-bottom: 10px;
+ border-bottom: 1px dotted #dee2e6;
+ list-style: none; }
+ .categories li:last-child, .sidelink li:last-child {
+ margin-bottom: 0;
+ border-bottom: none;
+ padding-bottom: 0; }
+ .categories li a, .sidelink li a {
+ font-size: 18px;
+ color: #000;
+ display: block; }
+ .categories li a:hover, .sidelink li a:hover {
+ color: #C2E54F; }
+ .categories li a span, .sidelink li a span {
+ position: absolute;
+ right: 0;
+ top: 0;
+ color: #ccc; }
+ .categories li.active a, .sidelink li.active a {
+ color: #000;
+ font-style: italic; }
+
+.comment-form-wrap {
+ clear: both; }
+
+.comment-list {
+ padding: 0;
+ margin: 0; }
+ .comment-list .children {
+ padding: 50px 0 0 40px;
+ margin: 0;
+ float: left;
+ width: 100%; }
+ .comment-list li {
+ padding: 0;
+ margin: 0 0 30px 0;
+ float: left;
+ width: 100%;
+ clear: both;
+ list-style: none; }
+ .comment-list li .vcard {
+ width: 80px;
+ float: left; }
+ .comment-list li .vcard img {
+ width: 50px;
+ border-radius: 50%; }
+ .comment-list li .comment-body {
+ float: right;
+ width: calc(100% - 80px); }
+ .comment-list li .comment-body h3 {
+ font-size: 20px; }
+ .comment-list li .comment-body .meta {
+ text-transform: uppercase;
+ font-size: 13px;
+ letter-spacing: .1em;
+ color: #ccc; }
+ .comment-list li .comment-body .reply {
+ padding: 5px 10px;
+ background: #e6e6e6;
+ color: #000;
+ text-transform: uppercase;
+ font-size: 14px; }
+ .comment-list li .comment-body .reply:hover {
+ color: #000;
+ background: #e3e3e3; }
+
+.search-form .form-group {
+ position: relative; }
+ .search-form .form-group input {
+ padding-right: 50px; }
+
+.search-form .icon {
+ position: absolute;
+ top: 50%;
+ right: 20px;
+ -webkit-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ transform: translateY(-50%); }
+
+.post-meta {
+ font-size: 13px;
+ text-transform: uppercase;
+ letter-spacing: .2em; }
+ .post-meta a {
+ color: #fff;
+ border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
+
+.form .form-control {
+ border: none;
+ border-radius: 0px;
+ border-bottom: 1px solid #eee; }
+ .form .form-control:active, .form .form-control:focus {
+ border-color: #000; }
+
+.footer {
+ font-size: .9rem; }
+ .footer .footer-title {
+ font-size: 1.1rem;
+ margin-bottom: 30px; }
+ .footer ul li {
+ margin-bottom: 10px; }
+ .footer a {
+ color: #888888; }
+ .footer a:hover {
+ color: #000; }
diff --git a/static/main/fonts/flaticon/font/Flaticon.eot b/static/main/fonts/flaticon/font/Flaticon.eot
new file mode 100644
index 0000000..c840670
Binary files /dev/null and b/static/main/fonts/flaticon/font/Flaticon.eot differ
diff --git a/static/main/fonts/flaticon/font/Flaticon.svg b/static/main/fonts/flaticon/font/Flaticon.svg
new file mode 100644
index 0000000..5eefc0d
--- /dev/null
+++ b/static/main/fonts/flaticon/font/Flaticon.svg
@@ -0,0 +1,82 @@
+
+
+
+
+
+Created by FontForge 20170731 at Wed Apr 3 06:02:18 2019
+ By root
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/static/main/fonts/flaticon/font/Flaticon.ttf b/static/main/fonts/flaticon/font/Flaticon.ttf
new file mode 100644
index 0000000..7620913
Binary files /dev/null and b/static/main/fonts/flaticon/font/Flaticon.ttf differ
diff --git a/static/main/fonts/flaticon/font/Flaticon.woff b/static/main/fonts/flaticon/font/Flaticon.woff
new file mode 100644
index 0000000..b9a3f6c
Binary files /dev/null and b/static/main/fonts/flaticon/font/Flaticon.woff differ
diff --git a/static/main/fonts/flaticon/font/Flaticon.woff2 b/static/main/fonts/flaticon/font/Flaticon.woff2
new file mode 100644
index 0000000..14f2dd0
Binary files /dev/null and b/static/main/fonts/flaticon/font/Flaticon.woff2 differ
diff --git a/static/main/fonts/flaticon/font/_flaticon.scss b/static/main/fonts/flaticon/font/_flaticon.scss
new file mode 100644
index 0000000..6774383
--- /dev/null
+++ b/static/main/fonts/flaticon/font/_flaticon.scss
@@ -0,0 +1,52 @@
+ /*
+ Flaticon icon font: Flaticon
+ Creation date: 03/04/2019 06:02
+ */
+
+ @font-face {
+ font-family: "Flaticon";
+ src: url("./Flaticon.eot");
+ src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
+ url("./Flaticon.woff2") format("woff2"),
+ url("./Flaticon.woff") format("woff"),
+ url("./Flaticon.ttf") format("truetype"),
+ url("./Flaticon.svg#Flaticon") format("svg");
+ font-weight: normal;
+ font-style: normal;
+}
+
+@media screen and (-webkit-min-device-pixel-ratio:0) {
+ @font-face {
+ font-family: "Flaticon";
+ src: url("./Flaticon.svg#Flaticon") format("svg");
+ }
+}
+
+ .fi:before{
+ display: inline-block;
+ font-family: "Flaticon";
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ line-height: 1;
+ text-decoration: inherit;
+ text-rendering: optimizeLegibility;
+ text-transform: none;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ font-smoothing: antialiased;
+ }
+
+ .flaticon-startup:before { content: "\f100"; }
+.flaticon-graphic-design:before { content: "\f101"; }
+.flaticon-settings:before { content: "\f102"; }
+.flaticon-idea:before { content: "\f103"; }
+.flaticon-smartphone:before { content: "\f104"; }
+.flaticon-head:before { content: "\f105"; }
+
+ $font-Flaticon-startup: "\f100";
+ $font-Flaticon-graphic-design: "\f101";
+ $font-Flaticon-settings: "\f102";
+ $font-Flaticon-idea: "\f103";
+ $font-Flaticon-smartphone: "\f104";
+ $font-Flaticon-head: "\f105";
\ No newline at end of file
diff --git a/static/main/fonts/flaticon/font/flaticon.css b/static/main/fonts/flaticon/font/flaticon.css
new file mode 100644
index 0000000..4580960
--- /dev/null
+++ b/static/main/fonts/flaticon/font/flaticon.css
@@ -0,0 +1,44 @@
+ /*
+ Flaticon icon font: Flaticon
+ Creation date: 03/04/2019 06:02
+ */
+
+@font-face {
+ font-family: "Flaticon";
+ src: url("./Flaticon.eot");
+ src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
+ url("./Flaticon.woff2") format("woff2"),
+ url("./Flaticon.woff") format("woff"),
+ url("./Flaticon.ttf") format("truetype"),
+ url("./Flaticon.svg#Flaticon") format("svg");
+ font-weight: normal;
+ font-style: normal;
+}
+
+@media screen and (-webkit-min-device-pixel-ratio:0) {
+ @font-face {
+ font-family: "Flaticon";
+ src: url("./Flaticon.svg#Flaticon") format("svg");
+ }
+}
+
+[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
+[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
+ font-family: Flaticon;
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
+
+ /* Better Font Rendering =========== */
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.flaticon-startup:before { content: "\f100"; }
+.flaticon-graphic-design:before { content: "\f101"; }
+.flaticon-settings:before { content: "\f102"; }
+.flaticon-idea:before { content: "\f103"; }
+.flaticon-smartphone:before { content: "\f104"; }
+.flaticon-head:before { content: "\f105"; }
\ No newline at end of file
diff --git a/static/main/fonts/flaticon/font/flaticon.html b/static/main/fonts/flaticon/font/flaticon.html
new file mode 100644
index 0000000..a7ad01e
--- /dev/null
+++ b/static/main/fonts/flaticon/font/flaticon.html
@@ -0,0 +1,485 @@
+
+
+
+
+
+
+
+ Flaticon WebFont
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
.flaticon-graphic-design
+
+
+
+
+
+
+
+
+
.flaticon-smartphone
+
+
+
+
+
+
+
+
+
+
+
+
+ License and attribution:
+ Copy the Attribution License:
+
+
+
+
+
+
+
+ Examples:
+
+
+
+
+ <i class="flaticon-startup"></i>
+
+
+
+
+
+
+ <i class="flaticon-graphic-design"></i>
+
+
+
+
+
+
+ <i class="flaticon-settings"></i>
+
+
+
+
+
+
+ <i class="flaticon-idea"></i>
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/static/main/fonts/flaticon/license/license.pdf b/static/main/fonts/flaticon/license/license.pdf
new file mode 100644
index 0000000..bdeedb7
Binary files /dev/null and b/static/main/fonts/flaticon/license/license.pdf differ
diff --git a/static/main/fonts/icomoon/demo-files/demo.css b/static/main/fonts/icomoon/demo-files/demo.css
new file mode 100644
index 0000000..976bde3
--- /dev/null
+++ b/static/main/fonts/icomoon/demo-files/demo.css
@@ -0,0 +1,155 @@
+body {
+ padding: 0;
+ margin: 0;
+ font-family: sans-serif;
+ font-size: 1em;
+ line-height: 1.5;
+ color: #555;
+ background: #fff;
+}
+h1 {
+ font-size: 1.5em;
+ font-weight: normal;
+}
+small {
+ font-size: .66666667em;
+}
+a {
+ color: #e74c3c;
+ text-decoration: none;
+}
+a:hover, a:focus {
+ box-shadow: 0 1px #e74c3c;
+}
+.bshadow0, input {
+ box-shadow: inset 0 -2px #e7e7e7;
+}
+input:hover {
+ box-shadow: inset 0 -2px #ccc;
+}
+input, fieldset {
+ font-family: sans-serif;
+ font-size: 1em;
+ margin: 0;
+ padding: 0;
+ border: 0;
+}
+input {
+ color: inherit;
+ line-height: 1.5;
+ height: 1.5em;
+ padding: .25em 0;
+}
+input:focus {
+ outline: none;
+ box-shadow: inset 0 -2px #449fdb;
+}
+.glyph {
+ font-size: 16px;
+ width: 15em;
+ padding-bottom: 1em;
+ margin-right: 4em;
+ margin-bottom: 1em;
+ float: left;
+ overflow: hidden;
+}
+.liga {
+ width: 80%;
+ width: calc(100% - 2.5em);
+}
+.talign-right {
+ text-align: right;
+}
+.talign-center {
+ text-align: center;
+}
+.bgc1 {
+ background: #f1f1f1;
+}
+.fgc1 {
+ color: #999;
+}
+.fgc0 {
+ color: #000;
+}
+p {
+ margin-top: 1em;
+ margin-bottom: 1em;
+}
+.mvm {
+ margin-top: .75em;
+ margin-bottom: .75em;
+}
+.mtn {
+ margin-top: 0;
+}
+.mtl, .mal {
+ margin-top: 1.5em;
+}
+.mbl, .mal {
+ margin-bottom: 1.5em;
+}
+.mal, .mhl {
+ margin-left: 1.5em;
+ margin-right: 1.5em;
+}
+.mhmm {
+ margin-left: 1em;
+ margin-right: 1em;
+}
+.mls {
+ margin-left: .25em;
+}
+.ptl {
+ padding-top: 1.5em;
+}
+.pbs, .pvs {
+ padding-bottom: .25em;
+}
+.pvs, .pts {
+ padding-top: .25em;
+}
+.unit {
+ float: left;
+}
+.unitRight {
+ float: right;
+}
+.size1of2 {
+ width: 50%;
+}
+.size1of1 {
+ width: 100%;
+}
+.clearfix:before, .clearfix:after {
+ content: " ";
+ display: table;
+}
+.clearfix:after {
+ clear: both;
+}
+.hidden-true {
+ display: none;
+}
+.textbox0 {
+ width: 3em;
+ background: #f1f1f1;
+ padding: .25em .5em;
+ line-height: 1.5;
+ height: 1.5em;
+}
+#testDrive {
+ display: block;
+ padding-top: 24px;
+ line-height: 1.5;
+}
+.fs0 {
+ font-size: 16px;
+}
+.fs1 {
+ font-size: 28px;
+}
+.fs2 {
+ font-size: 24px;
+}
+
diff --git a/static/main/fonts/icomoon/demo-files/demo.js b/static/main/fonts/icomoon/demo-files/demo.js
new file mode 100644
index 0000000..6f45f1c
--- /dev/null
+++ b/static/main/fonts/icomoon/demo-files/demo.js
@@ -0,0 +1,30 @@
+if (!('boxShadow' in document.body.style)) {
+ document.body.setAttribute('class', 'noBoxShadow');
+}
+
+document.body.addEventListener("click", function(e) {
+ var target = e.target;
+ if (target.tagName === "INPUT" &&
+ target.getAttribute('class').indexOf('liga') === -1) {
+ target.select();
+ }
+});
+
+(function() {
+ var fontSize = document.getElementById('fontSize'),
+ testDrive = document.getElementById('testDrive'),
+ testText = document.getElementById('testText');
+ function updateTest() {
+ testDrive.innerHTML = testText.value || String.fromCharCode(160);
+ if (window.icomoonLiga) {
+ window.icomoonLiga(testDrive);
+ }
+ }
+ function updateSize() {
+ testDrive.style.fontSize = fontSize.value + 'px';
+ }
+ fontSize.addEventListener('change', updateSize, false);
+ testText.addEventListener('input', updateTest, false);
+ testText.addEventListener('change', updateTest, false);
+ updateSize();
+}());
diff --git a/static/main/fonts/icomoon/demo.html b/static/main/fonts/icomoon/demo.html
new file mode 100644
index 0000000..04b8e12
--- /dev/null
+++ b/static/main/fonts/icomoon/demo.html
@@ -0,0 +1,26137 @@
+
+
+
+
+ IcoMoon Demo
+
+
+
+
+
+
+
Font Name: icomoon (Glyphs: 1520)
+
+
+
Grid Size: 14
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Grid Size: 24
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Font Test Drive
+
+ Font Size:
+ px
+
+
+
+
+
+
+
+
+
+
+
diff --git a/static/main/fonts/icomoon/fonts/icomoon.eot b/static/main/fonts/icomoon/fonts/icomoon.eot
new file mode 100644
index 0000000..352a9b2
Binary files /dev/null and b/static/main/fonts/icomoon/fonts/icomoon.eot differ
diff --git a/static/main/fonts/icomoon/fonts/icomoon.svg b/static/main/fonts/icomoon/fonts/icomoon.svg
new file mode 100644
index 0000000..bf75889
--- /dev/null
+++ b/static/main/fonts/icomoon/fonts/icomoon.svg
@@ -0,0 +1,1530 @@
+
+
+
+Generated by IcoMoon
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/static/main/fonts/icomoon/fonts/icomoon.ttf b/static/main/fonts/icomoon/fonts/icomoon.ttf
new file mode 100644
index 0000000..c3d4be0
Binary files /dev/null and b/static/main/fonts/icomoon/fonts/icomoon.ttf differ
diff --git a/static/main/fonts/icomoon/fonts/icomoon.woff b/static/main/fonts/icomoon/fonts/icomoon.woff
new file mode 100644
index 0000000..ba6edd9
Binary files /dev/null and b/static/main/fonts/icomoon/fonts/icomoon.woff differ
diff --git a/static/main/fonts/icomoon/selection.json b/static/main/fonts/icomoon/selection.json
new file mode 100644
index 0000000..80bd71f
--- /dev/null
+++ b/static/main/fonts/icomoon/selection.json
@@ -0,0 +1,41190 @@
+{
+ "IcoMoonType": "selection",
+ "icons": [
+ {
+ "icon": {
+ "paths": [
+ "M846.857 600c34.857 20 46.857 65.143 26.857 100l-36.571 62.857c-20 34.857-65.143 46.857-100 26.857l-152-87.429v175.429c0 40-33.143 73.143-73.143 73.143h-73.143c-40 0-73.143-33.143-73.143-73.143v-175.429l-152 87.429c-34.857 20-80 8-100-26.857l-36.571-62.857c-20-34.857-8-80 26.857-100l152-88-152-88c-34.857-20-46.857-65.143-26.857-100l36.571-62.857c20-34.857 65.143-46.857 100-26.857l152 87.429v-175.429c0-40 33.143-73.143 73.143-73.143h73.143c40 0 73.143 33.143 73.143 73.143v175.429l152-87.429c34.857-20 80-8 100 26.857l36.571 62.857c20 34.857 8 80-26.857 100l-152 88z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "asterisk"
+ ],
+ "defaultCode": 61545,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "asterisk",
+ "id": 0,
+ "order": 856,
+ "prevSize": 28,
+ "code": 61545
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 0
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-237.714v237.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h237.714v-237.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857v237.714h237.714c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus"
+ ],
+ "defaultCode": 61543,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "plus",
+ "id": 1,
+ "order": 857,
+ "prevSize": 28,
+ "code": 61543
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 1
+ },
+ {
+ "icon": {
+ "paths": [
+ "M402.286 717.714v137.143c0 12.571-10.286 22.857-22.857 22.857h-137.143c-12.571 0-22.857-10.286-22.857-22.857v-137.143c0-12.571 10.286-22.857 22.857-22.857h137.143c12.571 0 22.857 10.286 22.857 22.857zM582.857 374.857c0 108.571-73.714 150.286-128 180.571-33.714 19.429-54.857 58.857-54.857 75.429v0c0 12.571-9.714 27.429-22.857 27.429h-137.143c-12.571 0-20.571-19.429-20.571-32v-25.714c0-69.143 68.571-128.571 118.857-151.429 44-20 62.286-38.857 62.286-75.429 0-32-41.714-60.571-88-60.571-25.714 0-49.143 8-61.714 16.571-13.714 9.714-27.429 23.429-61.143 65.714-4.571 5.714-11.429 9.143-17.714 9.143-5.143 0-9.714-1.714-14.286-4.571l-93.714-71.429c-9.714-7.429-12-20-5.714-30.286 61.714-102.286 148.571-152 265.143-152 122.286 0 259.429 97.714 259.429 228.571z"
+ ],
+ "width": 634.88,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "question"
+ ],
+ "defaultCode": 61736,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "question",
+ "id": 2,
+ "order": 858,
+ "prevSize": 28,
+ "code": 61736
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 2
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-694.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h694.857c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minus"
+ ],
+ "defaultCode": 61544,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "minus",
+ "id": 3,
+ "order": 859,
+ "prevSize": 28,
+ "code": 61544
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 3
+ },
+ {
+ "icon": {
+ "paths": [
+ "M970.857 106.286c0 16.571-13.143 33.143-24.571 44.571l-361.143 361.143v438.857h182.857c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h182.857v-438.857l-361.143-361.143c-11.429-11.429-24.571-28-24.571-44.571 0-28 35.429-33.143 56.571-33.143h804.571c21.143 0 56.571 5.143 56.571 33.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "glass"
+ ],
+ "defaultCode": 61440,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "glass",
+ "id": 4,
+ "order": 860,
+ "prevSize": 28,
+ "code": 61440
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 4
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 128v640c0 80.571-120.571 109.714-182.857 109.714s-182.857-29.143-182.857-109.714 120.571-109.714 182.857-109.714c37.714 0 75.429 6.857 109.714 22.286v-306.857l-438.857 135.429v405.143c0 80.571-120.571 109.714-182.857 109.714s-182.857-29.143-182.857-109.714 120.571-109.714 182.857-109.714c37.714 0 75.429 6.857 109.714 22.286v-552.571c0-24 16-45.143 38.857-52.571l475.429-146.286c5.143-1.714 10.286-2.286 16-2.286 30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "music"
+ ],
+ "defaultCode": 61441,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "music",
+ "id": 5,
+ "order": 861,
+ "prevSize": 28,
+ "code": 61441
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 5
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658.286 475.429c0-141.143-114.857-256-256-256s-256 114.857-256 256 114.857 256 256 256 256-114.857 256-256zM950.857 950.857c0 40-33.143 73.143-73.143 73.143-19.429 0-38.286-8-51.429-21.714l-196-195.429c-66.857 46.286-146.857 70.857-228 70.857-222.286 0-402.286-180-402.286-402.286s180-402.286 402.286-402.286 402.286 180 402.286 402.286c0 81.143-24.571 161.143-70.857 228l196 196c13.143 13.143 21.143 32 21.143 51.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "search"
+ ],
+ "defaultCode": 61442,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "search",
+ "id": 6,
+ "order": 862,
+ "prevSize": 28,
+ "code": 61442
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 6
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 859.429v-438.857c-12 13.714-25.143 26.286-39.429 37.714-81.714 62.857-164 126.857-243.429 193.143-42.857 36-96 80-155.429 80h-1.143c-59.429 0-112.571-44-155.429-80-79.429-66.286-161.714-130.286-243.429-193.143-14.286-11.429-27.429-24-39.429-37.714v438.857c0 9.714 8.571 18.286 18.286 18.286h841.143c9.714 0 18.286-8.571 18.286-18.286zM950.857 258.857c0-14.286 3.429-39.429-18.286-39.429h-841.143c-9.714 0-18.286 8.571-18.286 18.286 0 65.143 32.571 121.714 84 162.286 76.571 60 153.143 120.571 229.143 181.143 30.286 24.571 85.143 77.143 125.143 77.143h1.143c40 0 94.857-52.571 125.143-77.143 76-60.571 152.571-121.143 229.143-181.143 37.143-29.143 84-92.571 84-141.143zM1024 237.714v621.714c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "envelope-o"
+ ],
+ "defaultCode": 61443,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "envelope-o",
+ "id": 7,
+ "order": 863,
+ "prevSize": 28,
+ "code": 61443
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 7
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 950.857c-9.143 0-18.286-3.429-25.143-10.286l-356.571-344c-4.571-4-130.286-118.857-130.286-256 0-167.429 102.286-267.429 273.143-267.429 100 0 193.714 78.857 238.857 123.429 45.143-44.571 138.857-123.429 238.857-123.429 170.857 0 273.143 100 273.143 267.429 0 137.143-125.714 252-130.857 257.143l-356 342.857c-6.857 6.857-16 10.286-25.143 10.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "heart"
+ ],
+ "defaultCode": 61444,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "heart",
+ "id": 8,
+ "order": 864,
+ "prevSize": 28,
+ "code": 61444
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 8
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 369.714c0 10.286-7.429 20-14.857 27.429l-207.429 202.286 49.143 285.714c0.571 4 0.571 7.429 0.571 11.429 0 14.857-6.857 28.571-23.429 28.571-8 0-16-2.857-22.857-6.857l-256.571-134.857-256.571 134.857c-7.429 4-14.857 6.857-22.857 6.857-16.571 0-24-13.714-24-28.571 0-4 0.571-7.429 1.143-11.429l49.143-285.714-208-202.286c-6.857-7.429-14.286-17.143-14.286-27.429 0-17.143 17.714-24 32-26.286l286.857-41.714 128.571-260c5.143-10.857 14.857-23.429 28-23.429s22.857 12.571 28 23.429l128.571 260 286.857 41.714c13.714 2.286 32 9.143 32 26.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star"
+ ],
+ "defaultCode": 61445,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "star",
+ "id": 9,
+ "order": 865,
+ "prevSize": 28,
+ "code": 61445
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 9
+ },
+ {
+ "icon": {
+ "paths": [
+ "M649.714 573.714l174.857-169.714-241.143-35.429-108-218.286-108 218.286-241.143 35.429 174.857 169.714-41.714 240.571 216-113.714 215.429 113.714zM950.857 369.714c0 10.286-7.429 20-14.857 27.429l-207.429 202.286 49.143 285.714c0.571 4 0.571 7.429 0.571 11.429 0 15.429-6.857 28.571-23.429 28.571-8 0-16-2.857-22.857-6.857l-256.571-134.857-256.571 134.857c-7.429 4-14.857 6.857-22.857 6.857-16.571 0-24-13.714-24-28.571 0-4 0.571-7.429 1.143-11.429l49.143-285.714-208-202.286c-6.857-7.429-14.286-17.143-14.286-27.429 0-17.143 17.714-24 32-26.286l286.857-41.714 128.571-260c5.143-10.857 14.857-23.429 28-23.429s22.857 12.571 28 23.429l128.571 260 286.857 41.714c13.714 2.286 32 9.143 32 26.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star-o"
+ ],
+ "defaultCode": 61446,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "star-o",
+ "id": 10,
+ "order": 866,
+ "prevSize": 28,
+ "code": 61446
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 10
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 799.429c0 83.429-54.857 151.429-121.714 151.429h-488c-66.857 0-121.714-68-121.714-151.429 0-150.286 37.143-324 186.857-324 46.286 45.143 109.143 73.143 178.857 73.143s132.571-28 178.857-73.143c149.714 0 186.857 173.714 186.857 324zM585.143 292.571c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user"
+ ],
+ "defaultCode": 61447,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "user",
+ "id": 11,
+ "order": 867,
+ "prevSize": 28,
+ "code": 61447
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 11
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 914.286v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM219.429 694.857v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM219.429 475.429v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM804.571 914.286v-292.571c0-20-16.571-36.571-36.571-36.571h-438.857c-20 0-36.571 16.571-36.571 36.571v292.571c0 20 16.571 36.571 36.571 36.571h438.857c20 0 36.571-16.571 36.571-36.571zM219.429 256v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM1024 914.286v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM804.571 475.429v-292.571c0-20-16.571-36.571-36.571-36.571h-438.857c-20 0-36.571 16.571-36.571 36.571v292.571c0 20 16.571 36.571 36.571 36.571h438.857c20 0 36.571-16.571 36.571-36.571zM1024 694.857v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM1024 475.429v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM1024 256v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM1097.143 164.571v768c0 50.286-41.143 91.429-91.429 91.429h-914.286c-50.286 0-91.429-41.143-91.429-91.429v-768c0-50.286 41.143-91.429 91.429-91.429h914.286c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "film"
+ ],
+ "defaultCode": 61448,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "film",
+ "id": 12,
+ "order": 868,
+ "prevSize": 28,
+ "code": 61448
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 12
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 585.143v219.429c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143zM438.857 146.286v219.429c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143zM950.857 585.143v219.429c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143zM950.857 146.286v219.429c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "th-large"
+ ],
+ "defaultCode": 61449,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "th-large",
+ "id": 13,
+ "order": 869,
+ "prevSize": 28,
+ "code": 61449
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 13
+ },
+ {
+ "icon": {
+ "paths": [
+ "M292.571 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM292.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM658.286 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM292.571 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM658.286 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM658.286 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "th"
+ ],
+ "defaultCode": 61450,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "th",
+ "id": 14,
+ "order": 870,
+ "prevSize": 28,
+ "code": 61450
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 14
+ },
+ {
+ "icon": {
+ "paths": [
+ "M292.571 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM292.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h548.571c30.286 0 54.857 24.571 54.857 54.857zM292.571 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h548.571c30.286 0 54.857 24.571 54.857 54.857zM1024 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h548.571c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "th-list"
+ ],
+ "defaultCode": 61451,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "th-list",
+ "id": 15,
+ "order": 871,
+ "prevSize": 28,
+ "code": 61451
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 15
+ },
+ {
+ "icon": {
+ "paths": [
+ "M954.857 323.429c0 14.286-5.714 28.571-16 38.857l-491.429 491.429c-10.286 10.286-24.571 16-38.857 16s-28.571-5.714-38.857-16l-284.571-284.571c-10.286-10.286-16-24.571-16-38.857s5.714-28.571 16-38.857l77.714-77.714c10.286-10.286 24.571-16 38.857-16s28.571 5.714 38.857 16l168 168.571 374.857-375.429c10.286-10.286 24.571-16 38.857-16s28.571 5.714 38.857 16l77.714 77.714c10.286 10.286 16 24.571 16 38.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check"
+ ],
+ "defaultCode": 61452,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "check",
+ "id": 16,
+ "order": 872,
+ "prevSize": 28,
+ "code": 61452
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 16
+ },
+ {
+ "icon": {
+ "paths": [
+ "M741.714 755.429c0 14.286-5.714 28.571-16 38.857l-77.714 77.714c-10.286 10.286-24.571 16-38.857 16s-28.571-5.714-38.857-16l-168-168-168 168c-10.286 10.286-24.571 16-38.857 16s-28.571-5.714-38.857-16l-77.714-77.714c-10.286-10.286-16-24.571-16-38.857s5.714-28.571 16-38.857l168-168-168-168c-10.286-10.286-16-24.571-16-38.857s5.714-28.571 16-38.857l77.714-77.714c10.286-10.286 24.571-16 38.857-16s28.571 5.714 38.857 16l168 168 168-168c10.286-10.286 24.571-16 38.857-16s28.571 5.714 38.857 16l77.714 77.714c10.286 10.286 16 24.571 16 38.857s-5.714 28.571-16 38.857l-168 168 168 168c10.286 10.286 16 24.571 16 38.857z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "close",
+ "remove",
+ "times"
+ ],
+ "defaultCode": 61453,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "close, remove, times",
+ "id": 17,
+ "order": 873,
+ "prevSize": 28,
+ "code": 61453
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 17
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-128v128c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-128h-128c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h128v-128c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286v128h128c9.714 0 18.286 8.571 18.286 18.286zM658.286 475.429c0-141.143-114.857-256-256-256s-256 114.857-256 256 114.857 256 256 256 256-114.857 256-256zM950.857 950.857c0 40.571-32.571 73.143-73.143 73.143-19.429 0-38.286-8-51.429-21.714l-196-195.429c-66.857 46.286-146.857 70.857-228 70.857-222.286 0-402.286-180-402.286-402.286s180-402.286 402.286-402.286 402.286 180 402.286 402.286c0 81.143-24.571 161.143-70.857 228l196 196c13.143 13.143 21.143 32 21.143 51.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "search-plus"
+ ],
+ "defaultCode": 61454,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "search-plus",
+ "id": 18,
+ "order": 874,
+ "prevSize": 28,
+ "code": 61454
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 18
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-329.143c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h329.143c9.714 0 18.286 8.571 18.286 18.286zM658.286 475.429c0-141.143-114.857-256-256-256s-256 114.857-256 256 114.857 256 256 256 256-114.857 256-256zM950.857 950.857c0 40.571-32.571 73.143-73.143 73.143-19.429 0-38.286-8-51.429-21.714l-196-195.429c-66.857 46.286-146.857 70.857-228 70.857-222.286 0-402.286-180-402.286-402.286s180-402.286 402.286-402.286 402.286 180 402.286 402.286c0 81.143-24.571 161.143-70.857 228l196 196c13.143 13.143 21.143 32 21.143 51.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "search-minus"
+ ],
+ "defaultCode": 61456,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "search-minus",
+ "id": 19,
+ "order": 875,
+ "prevSize": 28,
+ "code": 61456
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 19
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 512c0 241.714-197.143 438.857-438.857 438.857s-438.857-197.143-438.857-438.857c0-138.857 64-266.857 175.429-350.286 32.571-24.571 78.286-18.286 102.286 14.286 24.571 32 17.714 78.286-14.286 102.286-74.286 56-117.143 141.143-117.143 233.714 0 161.143 131.429 292.571 292.571 292.571s292.571-131.429 292.571-292.571c0-92.571-42.857-177.714-117.143-233.714-32-24-38.857-70.286-14.286-102.286 24-32.571 70.286-38.857 102.286-14.286 111.429 83.429 175.429 211.429 175.429 350.286zM512 73.143v365.714c0 40-33.143 73.143-73.143 73.143s-73.143-33.143-73.143-73.143v-365.714c0-40 33.143-73.143 73.143-73.143s73.143 33.143 73.143 73.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "power-off"
+ ],
+ "defaultCode": 61457,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "power-off",
+ "id": 20,
+ "order": 876,
+ "prevSize": 28,
+ "code": 61457
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 20
+ },
+ {
+ "icon": {
+ "paths": [
+ "M146.286 822.857v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM365.714 749.714v182.857c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-182.857c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM585.143 603.429v329.143c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM804.571 384v548.571c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-548.571c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 91.429v841.143c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-841.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal"
+ ],
+ "defaultCode": 61458,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "signal",
+ "id": 21,
+ "order": 877,
+ "prevSize": 28,
+ "code": 61458
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 21
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 512c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM877.714 449.714v126.857c0 8.571-6.857 18.857-16 20.571l-105.714 16c-6.286 18.286-13.143 35.429-22.286 52 19.429 28 40 53.143 61.143 78.857 3.429 4 5.714 9.143 5.714 14.286s-1.714 9.143-5.143 13.143c-13.714 18.286-90.857 102.286-110.286 102.286-5.143 0-10.286-2.286-14.857-5.143l-78.857-61.714c-16.571 8.571-34.286 16-52 21.714-4 34.857-7.429 72-16.571 106.286-2.286 9.143-10.286 16-20.571 16h-126.857c-10.286 0-19.429-7.429-20.571-17.143l-16-105.143c-17.714-5.714-34.857-12.571-51.429-21.143l-80.571 61.143c-4 3.429-9.143 5.143-14.286 5.143s-10.286-2.286-14.286-6.286c-30.286-27.429-70.286-62.857-94.286-96-2.857-4-4-8.571-4-13.143 0-5.143 1.714-9.143 4.571-13.143 19.429-26.286 40.571-51.429 60-78.286-9.714-18.286-17.714-37.143-23.429-56.571l-104.571-15.429c-9.714-1.714-16.571-10.857-16.571-20.571v-126.857c0-8.571 6.857-18.857 15.429-20.571l106.286-16c5.714-18.286 13.143-35.429 22.286-52.571-19.429-27.429-40-53.143-61.143-78.857-3.429-4-5.714-8.571-5.714-13.714s2.286-9.143 5.143-13.143c13.714-18.857 90.857-102.286 110.286-102.286 5.143 0 10.286 2.286 14.857 5.714l78.857 61.143c16.571-8.571 34.286-16 52-21.714 4-34.857 7.429-72 16.571-106.286 2.286-9.143 10.286-16 20.571-16h126.857c10.286 0 19.429 7.429 20.571 17.143l16 105.143c17.714 5.714 34.857 12.571 51.429 21.143l81.143-61.143c3.429-3.429 8.571-5.143 13.714-5.143s10.286 2.286 14.286 5.714c30.286 28 70.286 63.429 94.286 97.143 2.857 3.429 4 8 4 12.571 0 5.143-1.714 9.143-4.571 13.143-19.429 26.286-40.571 51.429-60 78.286 9.714 18.286 17.714 37.143 23.429 56l104.571 16c9.714 1.714 16.571 10.857 16.571 20.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cog",
+ "gear"
+ ],
+ "defaultCode": 61459,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cog, gear",
+ "id": 22,
+ "order": 878,
+ "prevSize": 28,
+ "code": 61459
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 22
+ },
+ {
+ "icon": {
+ "paths": [
+ "M292.571 420.571v329.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM438.857 420.571v329.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM585.143 420.571v329.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM658.286 834.286v-541.714h-512v541.714c0 27.429 15.429 43.429 18.286 43.429h475.429c2.857 0 18.286-16 18.286-43.429zM274.286 219.429h256l-27.429-66.857c-1.714-2.286-6.857-5.714-9.714-6.286h-181.143c-3.429 0.571-8 4-9.714 6.286zM804.571 237.714v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v541.714c0 62.857-41.143 116.571-91.429 116.571h-475.429c-50.286 0-91.429-51.429-91.429-114.286v-544h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h176.571l40-95.429c11.429-28 45.714-50.857 76-50.857h182.857c30.286 0 64.571 22.857 76 50.857l40 95.429h176.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trash-o"
+ ],
+ "defaultCode": 61460,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "trash-o",
+ "id": 23,
+ "order": 879,
+ "prevSize": 28,
+ "code": 61460
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 23
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 566.857v274.286c0 20-16.571 36.571-36.571 36.571h-219.429v-219.429h-146.286v219.429h-219.429c-20 0-36.571-16.571-36.571-36.571v-274.286c0-1.143 0.571-2.286 0.571-3.429l328.571-270.857 328.571 270.857c0.571 1.143 0.571 2.286 0.571 3.429zM932 527.429l-35.429 42.286c-2.857 3.429-7.429 5.714-12 6.286h-1.714c-4.571 0-8.571-1.143-12-4l-395.429-329.714-395.429 329.714c-4 2.857-8.571 4.571-13.714 4-4.571-0.571-9.143-2.857-12-6.286l-35.429-42.286c-6.286-7.429-5.143-19.429 2.286-25.714l410.857-342.286c24-20 62.857-20 86.857 0l139.429 116.571v-111.429c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v233.143l125.143 104c7.429 6.286 8.571 18.286 2.286 25.714z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "home"
+ ],
+ "defaultCode": 61461,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "home",
+ "id": 24,
+ "order": 880,
+ "prevSize": 28,
+ "code": 61461
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 24
+ },
+ {
+ "icon": {
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-o"
+ ],
+ "defaultCode": 61462,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "file-o",
+ "id": 25,
+ "order": 881,
+ "prevSize": 28,
+ "code": 61462
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 25
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 310.857v256c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-201.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "clock-o"
+ ],
+ "defaultCode": 61463,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "clock-o",
+ "id": 26,
+ "order": 882,
+ "prevSize": 28,
+ "code": 61463
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 26
+ },
+ {
+ "icon": {
+ "paths": [
+ "M634.857 569.143v-2.286l-13.714-182.857c-0.571-10.286-9.714-18.286-19.429-18.286h-106.286c-9.714 0-18.857 8-19.429 18.286l-13.714 182.857v2.286c-0.571 9.143 8 16 16.571 16h139.429c8.571 0 17.143-6.857 16.571-16zM1068.571 836c0 16.571-4.571 41.714-26.286 41.714h-402.286c9.714 0 17.714-8 17.143-18.286l-11.429-146.286c-0.571-10.286-9.714-18.286-19.429-18.286h-155.429c-9.714 0-18.857 8-19.429 18.286l-11.429 146.286c-0.571 10.286 7.429 18.286 17.143 18.286h-402.286c-21.714 0-26.286-25.143-26.286-41.714 0-22.857 6.286-45.714 14.857-66.286l238.286-596.571c5.714-14.286 21.143-26.857 36.571-26.857h193.714c-9.714 0-18.857 8-19.429 18.286l-8.571 109.714c-0.571 10.286 6.857 18.286 17.143 18.286h94.857c10.286 0 17.714-8 17.143-18.286l-8.571-109.714c-0.571-10.286-9.714-18.286-19.429-18.286h193.714c15.429 0 30.857 12.571 36.571 26.857l238.286 596.571c8.571 20.571 14.857 43.429 14.857 66.286z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "road"
+ ],
+ "defaultCode": 61464,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "road",
+ "id": 27,
+ "order": 883,
+ "prevSize": 28,
+ "code": 61464
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 27
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM877.714 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM950.857 640v182.857c0 30.286-24.571 54.857-54.857 54.857h-841.143c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h265.714l77.143 77.714c21.143 20.571 48.571 32 77.714 32s56.571-11.429 77.714-32l77.714-77.714h265.143c30.286 0 54.857 24.571 54.857 54.857zM765.143 314.857c5.714 13.714 2.857 29.714-8 40l-256 256c-6.857 7.429-16.571 10.857-25.714 10.857s-18.857-3.429-25.714-10.857l-256-256c-10.857-10.286-13.714-26.286-8-40 5.714-13.143 18.857-22.286 33.714-22.286h146.286v-256c0-20 16.571-36.571 36.571-36.571h146.286c20 0 36.571 16.571 36.571 36.571v256h146.286c14.857 0 28 9.143 33.714 22.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "download"
+ ],
+ "defaultCode": 61465,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "download",
+ "id": 28,
+ "order": 884,
+ "prevSize": 28,
+ "code": 61465
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 28
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 530.286c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-201.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v201.143h109.714c10.286 0 18.286 8 18.286 18.286zM438.857 201.143c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857-139.429-310.857-310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-o-down"
+ ],
+ "defaultCode": 61466,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrow-circle-o-down",
+ "id": 29,
+ "order": 885,
+ "prevSize": 28,
+ "code": 61466
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 29
+ },
+ {
+ "icon": {
+ "paths": [
+ "M638.857 500.571c-2.857 6.857-9.714 11.429-17.143 11.429h-109.714v201.143c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-201.143h-109.714c-10.286 0-18.286-8-18.286-18.286 0-5.143 2.286-9.714 5.714-13.714l182.286-182.286c4-3.429 8.571-5.143 13.143-5.143s9.143 1.714 13.143 5.143l182.857 182.857c5.143 5.714 6.857 13.143 4 20zM438.857 201.143c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857-139.429-310.857-310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-o-up"
+ ],
+ "defaultCode": 61467,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrow-circle-o-up",
+ "id": 30,
+ "order": 886,
+ "prevSize": 28,
+ "code": 61467
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 30
+ },
+ {
+ "icon": {
+ "paths": [
+ "M584.571 548.571h180.571c-1.143-2.857-1.714-6.286-2.857-9.143l-121.143-283.429h-404.571l-121.143 283.429c-1.143 2.857-1.714 6.286-2.857 9.143h180.571l54.286 109.714h182.857zM877.714 565.714v275.429c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-275.429c0-20.571 6.286-50.857 14.286-70.286l136-315.429c8-18.857 30.857-33.714 50.857-33.714h475.429c20 0 42.857 14.857 50.857 33.714l136 315.429c8 19.429 14.286 49.714 14.286 70.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "inbox"
+ ],
+ "defaultCode": 61468,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "inbox",
+ "id": 31,
+ "order": 887,
+ "prevSize": 28,
+ "code": 61468
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 31
+ },
+ {
+ "icon": {
+ "paths": [
+ "M676.571 512c0 13.143-6.857 25.143-18.286 31.429l-310.857 182.857c-5.714 3.429-12 5.143-18.286 5.143s-12.571-1.714-18.286-4.571c-11.429-6.857-18.286-18.857-18.286-32v-365.714c0-13.143 6.857-25.143 18.286-32 11.429-6.286 25.714-6.286 36.571 0.571l310.857 182.857c11.429 6.286 18.286 18.286 18.286 31.429zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play-circle-o"
+ ],
+ "defaultCode": 61469,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "play-circle-o",
+ "id": 32,
+ "order": 888,
+ "prevSize": 28,
+ "code": 61469
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 32
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 146.286v256c0 20-16.571 36.571-36.571 36.571h-256c-14.857 0-28-9.143-33.714-22.857-5.714-13.143-2.857-29.143 8-39.429l78.857-78.857c-53.714-49.714-124.571-78.286-199.429-78.286-161.143 0-292.571 131.429-292.571 292.571s131.429 292.571 292.571 292.571c90.857 0 174.857-41.143 230.857-113.714 2.857-4 8-6.286 13.143-6.857 5.143 0 10.286 1.714 14.286 5.143l78.286 78.857c6.857 6.286 6.857 17.143 1.143 24.571-83.429 100.571-206.857 158.286-337.714 158.286-241.714 0-438.857-197.143-438.857-438.857s197.143-438.857 438.857-438.857c112.571 0 221.714 45.143 302.286 121.143l74.286-73.714c10.286-10.857 26.286-13.714 40-8 13.143 5.714 22.286 18.857 22.286 33.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "repeat",
+ "rotate-right"
+ ],
+ "defaultCode": 61470,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "repeat, rotate-right",
+ "id": 33,
+ "order": 889,
+ "prevSize": 28,
+ "code": 61470
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 33
+ },
+ {
+ "icon": {
+ "paths": [
+ "M863.429 603.429c0 1.143 0 2.857-0.571 4-48.571 202.286-215.429 343.429-426.286 343.429-111.429 0-219.429-44-300.571-121.143l-73.714 73.714c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-256c0-20 16.571-36.571 36.571-36.571h256c20 0 36.571 16.571 36.571 36.571 0 9.714-4 18.857-10.857 25.714l-78.286 78.286c53.714 50.286 125.143 78.857 198.857 78.857 101.714 0 196-52.571 249.143-139.429 13.714-22.286 20.571-44 30.286-66.857 2.857-8 8.571-13.143 17.143-13.143h109.714c10.286 0 18.286 8.571 18.286 18.286zM877.714 146.286v256c0 20-16.571 36.571-36.571 36.571h-256c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l78.857-78.857c-54.286-50.286-125.714-78.286-199.429-78.286-101.714 0-196 52.571-249.143 139.429-13.714 22.286-20.571 44-30.286 66.857-2.857 8-8.571 13.143-17.143 13.143h-113.714c-10.286 0-18.286-8.571-18.286-18.286v-4c49.143-202.857 217.714-343.429 428.571-343.429 112 0 221.143 44.571 302.286 121.143l74.286-73.714c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "refresh"
+ ],
+ "defaultCode": 61473,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "refresh",
+ "id": 34,
+ "order": 890,
+ "prevSize": 28,
+ "code": 61473
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 34
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 676.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 530.286v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 384v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM877.714 676.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-548.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h548.571c9.714 0 18.286 8.571 18.286 18.286zM877.714 530.286v36.571c0 9.714-8.571 18.286-18.286 18.286h-548.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h548.571c9.714 0 18.286 8.571 18.286 18.286zM877.714 384v36.571c0 9.714-8.571 18.286-18.286 18.286h-548.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h548.571c9.714 0 18.286 8.571 18.286 18.286zM950.857 786.286v-475.429c0-9.714-8.571-18.286-18.286-18.286h-841.143c-9.714 0-18.286 8.571-18.286 18.286v475.429c0 9.714 8.571 18.286 18.286 18.286h841.143c9.714 0 18.286-8.571 18.286-18.286zM1024 164.571v621.714c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "list-alt"
+ ],
+ "defaultCode": 61474,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "list-alt",
+ "id": 35,
+ "order": 891,
+ "prevSize": 28,
+ "code": 61474
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 35
+ },
+ {
+ "icon": {
+ "paths": [
+ "M182.857 438.857h292.571v-109.714c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286v109.714zM658.286 493.714v329.143c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-329.143c0-30.286 24.571-54.857 54.857-54.857h18.286v-109.714c0-140.571 115.429-256 256-256s256 115.429 256 256v109.714h18.286c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lock"
+ ],
+ "defaultCode": 61475,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "lock",
+ "id": 36,
+ "order": 892,
+ "prevSize": 28,
+ "code": 61475
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 36
+ },
+ {
+ "icon": {
+ "paths": [
+ "M182.857 146.286c0 26.286-14.286 49.714-36.571 62.857v723.429c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-723.429c-22.286-13.143-36.571-36.571-36.571-62.857 0-40.571 32.571-73.143 73.143-73.143s73.143 32.571 73.143 73.143zM1024 182.857v436c0 21.143-13.143 29.143-29.714 37.714-64.571 34.857-136 66.286-210.857 66.286-105.143 0-155.429-80-280-80-90.857 0-186.286 41.143-265.143 83.429-6.286 3.429-12 5.143-18.857 5.143-20 0-36.571-16.571-36.571-36.571v-424c0-13.714 6.857-23.429 17.714-31.429 13.714-9.143 30.286-17.143 45.143-24.571 72-36.571 159.429-68.571 240.571-68.571 89.714 0 160 29.714 239.429 66.857 16 8 32.571 10.857 50.286 10.857 89.714 0 186.286-77.714 211.429-77.714 20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1060.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flag"
+ ],
+ "defaultCode": 61476,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "flag",
+ "id": 37,
+ "order": 893,
+ "prevSize": 28,
+ "code": 61476
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 37
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 506.286c0 62.286-11.429 122.857-34.286 179.429l-11.429 28-105.714 18.857c-16.571 62.286-73.143 108.571-141.143 108.571v18.286c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v18.286c54.857 0 102.286 30.286 127.429 74.857l38.857-6.857c10.857-35.429 16.571-72 16.571-110.286 0-172.571-170.857-323.429-365.714-323.429s-365.714 150.857-365.714 323.429c0 38.286 5.714 74.857 16.571 110.286l38.857 6.857c25.143-44.571 72.571-74.857 127.429-74.857v-18.286c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v329.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-18.286c-68 0-124.571-46.286-141.143-108.571l-105.714-18.857-11.429-28c-22.857-56.571-34.286-117.143-34.286-179.429 0-234.857 217.714-433.143 475.429-433.143s475.429 198.286 475.429 433.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "headphones"
+ ],
+ "defaultCode": 61477,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "headphones",
+ "id": 38,
+ "order": 894,
+ "prevSize": 28,
+ "code": 61477
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 38
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 201.143v621.714c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-190.286-190.286h-149.714c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h149.714l190.286-190.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 438.85714285714283,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume-off"
+ ],
+ "defaultCode": 61478,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "volume-off",
+ "id": 39,
+ "order": 895,
+ "prevSize": 28,
+ "code": 61478
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 39
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 201.143v621.714c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-190.286-190.286h-149.714c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h149.714l190.286-190.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571zM658.286 512c0 57.143-34.857 112.571-88.571 134.286-4.571 2.286-9.714 2.857-14.286 2.857-20 0-36.571-16-36.571-36.571 0-43.429 66.286-31.429 66.286-100.571s-66.286-57.143-66.286-100.571c0-20.571 16.571-36.571 36.571-36.571 4.571 0 9.714 0.571 14.286 2.857 53.714 21.143 88.571 77.143 88.571 134.286z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume-down"
+ ],
+ "defaultCode": 61479,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "volume-down",
+ "id": 40,
+ "order": 896,
+ "prevSize": 28,
+ "code": 61479
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 40
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 201.143v621.714c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-190.286-190.286h-149.714c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h149.714l190.286-190.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571zM658.286 512c0 57.143-34.857 112.571-88.571 134.286-4.571 2.286-9.714 2.857-14.286 2.857-20 0-36.571-16-36.571-36.571 0-43.429 66.286-31.429 66.286-100.571s-66.286-57.143-66.286-100.571c0-20.571 16.571-36.571 36.571-36.571 4.571 0 9.714 0.571 14.286 2.857 53.714 21.143 88.571 77.143 88.571 134.286zM804.571 512c0 116-69.714 224-177.143 269.143-4.571 1.714-9.714 2.857-14.286 2.857-20.571 0-37.143-16.571-37.143-36.571 0-16 9.143-26.857 22.286-33.714 15.429-8 29.714-14.857 43.429-25.143 56.571-41.143 89.714-106.857 89.714-176.571s-33.143-135.429-89.714-176.571c-13.714-10.286-28-17.143-43.429-25.143-13.143-6.857-22.286-17.714-22.286-33.714 0-20 16.571-36.571 36.571-36.571 5.143 0 10.286 1.143 14.857 2.857 107.429 45.143 177.143 153.143 177.143 269.143zM950.857 512c0 175.429-104.571 334.286-265.714 403.429-4.571 1.714-9.714 2.857-14.857 2.857-20 0-36.571-16.571-36.571-36.571 0-16.571 8.571-25.714 22.286-33.714 8-4.571 17.143-7.429 25.714-12 16-8.571 32-18.286 46.857-29.143 93.714-69.143 149.143-178.286 149.143-294.857s-55.429-225.714-149.143-294.857c-14.857-10.857-30.857-20.571-46.857-29.143-8.571-4.571-17.714-7.429-25.714-12-13.714-8-22.286-17.143-22.286-33.714 0-20 16.571-36.571 36.571-36.571 5.143 0 10.286 1.143 14.857 2.857 161.143 69.143 265.714 228 265.714 403.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume-up"
+ ],
+ "defaultCode": 61480,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "volume-up",
+ "id": 41,
+ "order": 897,
+ "prevSize": 28,
+ "code": 61480
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 41
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 658.286v73.143h-73.143v-73.143h73.143zM219.429 219.429v73.143h-73.143v-73.143h73.143zM658.286 219.429v73.143h-73.143v-73.143h73.143zM73.143 804h219.429v-218.857h-219.429v218.857zM73.143 365.714h219.429v-219.429h-219.429v219.429zM512 365.714h219.429v-219.429h-219.429v219.429zM365.714 512v365.714h-365.714v-365.714h365.714zM658.286 804.571v73.143h-73.143v-73.143h73.143zM804.571 804.571v73.143h-73.143v-73.143h73.143zM804.571 512v219.429h-219.429v-73.143h-73.143v219.429h-73.143v-365.714h219.429v73.143h73.143v-73.143h73.143zM365.714 73.143v365.714h-365.714v-365.714h365.714zM804.571 73.143v365.714h-365.714v-365.714h365.714z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "qrcode"
+ ],
+ "defaultCode": 61481,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "qrcode",
+ "id": 42,
+ "order": 898,
+ "prevSize": 28,
+ "code": 61481
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 42
+ },
+ {
+ "icon": {
+ "paths": [
+ "M36 877.714h-36v-804.571h36v804.571zM72 877.143h-18.286v-804h18.286v804zM125.714 877.143h-17.714v-804h17.714v804zM215.429 877.143h-17.714v-804h17.714v804zM305.143 877.143h-35.429v-804h35.429v804zM377.143 877.143h-17.714v-804h17.714v804zM413.143 877.143h-17.714v-804h17.714v804zM449.143 877.143h-17.714v-804h17.714v804zM538.857 877.143h-36v-804h36v804zM628.571 877.143h-36v-804h36v804zM700.571 877.143h-36v-804h36v804zM772.571 877.143h-36v-804h36v804zM826.286 877.143h-36v-804h36v804zM934.286 877.143h-53.714v-804h53.714v804zM970.286 877.143h-18.286v-804h18.286v804zM1024 877.714h-36v-804.571h36v804.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "barcode"
+ ],
+ "defaultCode": 61482,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "barcode",
+ "id": 43,
+ "order": 899,
+ "prevSize": 28,
+ "code": 61482
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 43
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 256c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM865.714 585.143c0 19.429-8 38.286-21.143 51.429l-280.571 281.143c-13.714 13.143-32.571 21.143-52 21.143s-38.286-8-51.429-21.143l-408.571-409.143c-29.143-28.571-52-84-52-124.571v-237.714c0-40 33.143-73.143 73.143-73.143h237.714c40.571 0 96 22.857 125.143 52l408.571 408c13.143 13.714 21.143 32.571 21.143 52z"
+ ],
+ "width": 865.7188571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tag"
+ ],
+ "defaultCode": 61483,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "tag",
+ "id": 44,
+ "order": 900,
+ "prevSize": 28,
+ "code": 61483
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 44
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 256c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM865.714 585.143c0 19.429-8 38.286-21.143 51.429l-280.571 281.143c-13.714 13.143-32.571 21.143-52 21.143s-38.286-8-51.429-21.143l-408.571-409.143c-29.143-28.571-52-84-52-124.571v-237.714c0-40 33.143-73.143 73.143-73.143h237.714c40.571 0 96 22.857 125.143 52l408.571 408c13.143 13.714 21.143 32.571 21.143 52zM1085.143 585.143c0 19.429-8 38.286-21.143 51.429l-280.571 281.143c-13.714 13.143-32.571 21.143-52 21.143-29.714 0-44.571-13.714-64-33.714l268.571-268.571c13.143-13.143 21.143-32 21.143-51.429s-8-38.286-21.143-52l-408.571-408c-29.143-29.143-84.571-52-125.143-52h128c40.571 0 96 22.857 125.143 52l408.571 408c13.143 13.714 21.143 32.571 21.143 52z"
+ ],
+ "width": 1085.1474285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tags"
+ ],
+ "defaultCode": 61484,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "tags",
+ "id": 45,
+ "order": 901,
+ "prevSize": 28,
+ "code": 61484
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 45
+ },
+ {
+ "icon": {
+ "paths": [
+ "M936.571 273.143c14.286 20.571 18.286 47.429 10.286 73.714l-157.143 517.714c-14.286 48.571-64.571 86.286-113.714 86.286h-527.429c-58.286 0-120.571-46.286-141.714-105.714-9.143-25.714-9.143-50.857-1.143-72.571 1.143-11.429 3.429-22.857 4-36.571 0.571-9.143-4.571-16.571-3.429-23.429 2.286-13.714 14.286-23.429 23.429-38.857 17.143-28.571 36.571-74.857 42.857-104.571 2.857-10.857-2.857-23.429 0-33.143 2.857-10.857 13.714-18.857 19.429-29.143 15.429-26.286 35.429-77.143 38.286-104 1.143-12-4.571-25.143-1.143-34.286 4-13.143 16.571-18.857 25.143-30.286 13.714-18.857 36.571-73.143 40-103.429 1.143-9.714-4.571-19.429-2.857-29.714 2.286-10.857 16-22.286 25.143-35.429 24-35.429 28.571-113.714 101.143-93.143l-0.571 1.714c9.714-2.286 19.429-5.143 29.143-5.143h434.857c26.857 0 50.857 12 65.143 32 14.857 20.571 18.286 47.429 10.286 74.286l-156.571 517.714c-26.857 88-41.714 107.429-114.286 107.429h-496.571c-7.429 0-16.571 1.714-21.714 8.571-4.571 6.857-5.143 12-0.571 24.571 11.429 33.143 50.857 40 82.286 40h527.429c21.143 0 45.714-12 52-32.571l171.429-564c3.429-10.857 3.429-22.286 2.857-32.571 13.143 5.143 25.143 13.143 33.714 24.571zM328.571 274.286c-3.429 10.286 2.286 18.286 12.571 18.286h347.429c9.714 0 20.571-8 24-18.286l12-36.571c3.429-10.286-2.286-18.286-12.571-18.286h-347.429c-9.714 0-20.571 8-24 18.286zM281.143 420.571c-3.429 10.286 2.286 18.286 12.571 18.286h347.429c9.714 0 20.571-8 24-18.286l12-36.571c3.429-10.286-2.286-18.286-12.571-18.286h-347.429c-9.714 0-20.571 8-24 18.286z"
+ ],
+ "width": 952.5394285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "book"
+ ],
+ "defaultCode": 61485,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "book",
+ "id": 46,
+ "order": 902,
+ "prevSize": 28,
+ "code": 61485
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 46
+ },
+ {
+ "icon": {
+ "paths": [
+ "M665.143 73.143c8.571 0 17.143 1.714 25.143 5.143 25.143 9.714 41.143 33.143 41.143 58.857v736.571c0 25.714-16 49.143-41.143 58.857-8 3.429-16.571 4.571-25.143 4.571-17.714 0-34.286-6.286-47.429-18.286l-252-242.286-252 242.286c-13.143 12-29.714 18.857-47.429 18.857-8.571 0-17.143-1.714-25.143-5.143-25.143-9.714-41.143-33.143-41.143-58.857v-736.571c0-25.714 16-49.143 41.143-58.857 8-3.429 16.571-5.143 25.143-5.143h598.857z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bookmark"
+ ],
+ "defaultCode": 61486,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bookmark",
+ "id": 47,
+ "order": 903,
+ "prevSize": 28,
+ "code": 61486
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 47
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 877.714h512v-146.286h-512v146.286zM219.429 512h512v-219.429h-91.429c-30.286 0-54.857-24.571-54.857-54.857v-91.429h-365.714v365.714zM877.714 548.571c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM950.857 548.571v237.714c0 9.714-8.571 18.286-18.286 18.286h-128v91.429c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-91.429h-128c-9.714 0-18.286-8.571-18.286-18.286v-237.714c0-60 49.714-109.714 109.714-109.714h36.571v-310.857c0-30.286 24.571-54.857 54.857-54.857h384c30.286 0 72 17.143 93.714 38.857l86.857 86.857c21.714 21.714 38.857 63.429 38.857 93.714v146.286h36.571c60 0 109.714 49.714 109.714 109.714z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "print"
+ ],
+ "defaultCode": 61487,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "print",
+ "id": 48,
+ "order": 904,
+ "prevSize": 28,
+ "code": 61487
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 48
+ },
+ {
+ "icon": {
+ "paths": [
+ "M548.571 384c90.857 0 164.571 73.714 164.571 164.571s-73.714 164.571-164.571 164.571-164.571-73.714-164.571-164.571 73.714-164.571 164.571-164.571zM950.857 146.286c80.571 0 146.286 65.714 146.286 146.286v512c0 80.571-65.714 146.286-146.286 146.286h-804.571c-80.571 0-146.286-65.714-146.286-146.286v-512c0-80.571 65.714-146.286 146.286-146.286h128l29.143-77.714c14.286-37.714 58.857-68.571 98.857-68.571h292.571c40 0 84.571 30.857 98.857 68.571l29.143 77.714h128zM548.571 804.571c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera"
+ ],
+ "defaultCode": 61488,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "camera",
+ "id": 49,
+ "order": 905,
+ "prevSize": 28,
+ "code": 61488
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 49
+ },
+ {
+ "icon": {
+ "paths": [
+ "M414.286 319.429l-97.143 257.143c56.571 0.571 113.143 2.286 169.714 2.286 10.857 0 21.714-0.571 32.571-1.143-29.714-86.857-64.571-175.429-105.143-258.286zM0 950.857l1.143-45.143c53.714-16.571 112-5.143 136-66.857l135.429-352 160-413.714h73.143c2.286 4 4.571 8 6.286 12l117.143 274.286c42.857 101.143 82.286 203.429 125.714 304 25.714 59.429 45.714 120.571 74.286 178.857 4 9.143 12 26.286 20 32.571 18.857 14.857 71.429 18.286 98.286 28.571 1.714 10.857 3.429 21.714 3.429 32.571 0 5.143-0.571 9.714-0.571 14.857-72.571 0-145.143-9.143-217.714-9.143-74.857 0-149.714 6.286-224.571 8.571 0-14.857 0.571-29.714 2.286-44.571l74.857-16c15.429-3.429 45.714-7.429 45.714-28.571 0-20.571-73.714-190.286-82.857-213.714l-257.143-1.143c-14.857 33.143-72.571 182.857-72.571 204.571 0 44 84 45.714 116.571 50.286 0.571 10.857 0.571 21.714 0.571 33.143 0 5.143-0.571 10.286-1.143 15.429-66.286 0-133.143-11.429-199.429-11.429-8 0-19.429 3.429-27.429 4.571-36 6.286-71.429 8-107.429 8z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "font"
+ ],
+ "defaultCode": 61489,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "font",
+ "id": 50,
+ "order": 906,
+ "prevSize": 28,
+ "code": 61489
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 50
+ },
+ {
+ "icon": {
+ "paths": [
+ "M317.143 869.143c25.143 10.857 52.571 18.286 80 18.286 130.286 0 214.857-52 214.857-191.429 0-35.429-4.571-72.571-23.429-102.857-53.143-85.714-129.714-90.286-221.714-90.286-17.143 0-41.714 0-57.714 5.714 0 60.571-0.571 121.143-0.571 181.143 0 39.429-5.143 146.286 8.571 179.429zM309.143 442.857c20.571 3.429 41.714 4 62.286 4 117.714 0 201.714-33.143 201.714-165.143 0-111.429-98.857-149.714-194.286-149.714-25.143 0-49.714 3.429-74.286 7.429 0 57.714 4.571 115.429 4.571 173.143 0 30.286-0.571 60.571-0.571 90.857 0 13.143 0 26.286 0.571 39.429zM0 950.857l1.143-53.714c36.571-9.143 73.714-9.714 109.143-24.571 20-33.714 17.143-93.143 17.143-131.429 0-12.571 1.143-558.857-12.571-585.714-8.571-16.571-92.571-20.571-111.429-22.857l-2.286-47.429c136-2.286 272-12 407.429-12 25.714 0 52 0.571 77.714 0.571 129.143 0 271.429 61.714 271.429 210.286 0 102.286-77.714 140.571-158.286 177.143 108.571 24.571 205.143 98.286 205.143 218.286 0 196.571-178.857 261.714-346.286 261.714-50.286 0-100.571-3.429-150.857-3.429-102.286 0-205.714 9.143-307.429 13.143z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bold"
+ ],
+ "defaultCode": 61490,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bold",
+ "id": 51,
+ "order": 907,
+ "prevSize": 28,
+ "code": 61490
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 51
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 949.714l9.714-48.571c36.571-11.429 76-16 110.286-33.714 13.143-16.571 19.429-37.714 23.429-57.714 7.429-38.857 132-599.429 130.286-645.143v-14.286c-31.429-17.143-69.714-12.571-104-18.286l10.857-58.857c73.714 3.429 148.571 9.143 222.857 9.143 60.571 0 121.143-5.714 181.714-9.143-2.286 17.143-6.286 34.286-10.857 50.857-39.429 13.714-81.143 20-120 35.429-12.571 30.857-15.429 64.571-21.143 97.143-27.429 148-64 296-94.286 442.857-5.714 27.429-33.714 141.143-31.429 165.143l0.571 10.286c34.857 8 70.286 12 105.714 17.714-1.143 18.857-4.571 37.714-9.143 56.571-12.571 0-24.571 1.714-37.143 1.714-32.571 0-66.286-10.857-98.857-11.429-39.429-0.571-78.857-1.143-117.714-1.143-50.857 0-100.571 8.571-150.857 11.429z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "italic"
+ ],
+ "defaultCode": 61491,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "italic",
+ "id": 52,
+ "order": 908,
+ "prevSize": 28,
+ "code": 61491
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 52
+ },
+ {
+ "icon": {
+ "paths": [
+ "M996.571 804.571c25.143 0 33.143 16 17.714 36l-72 92.571c-15.429 20-40.571 20-56 0l-72-92.571c-15.429-20-7.429-36 17.714-36h45.714v-585.143h-45.714c-25.143 0-33.143-16-17.714-36l72-92.571c15.429-20 40.571-20 56 0l72 92.571c15.429 20 7.429 36-17.714 36h-45.714v585.143h45.714zM46.286 73.714l30.857 15.429c4 1.714 108.571 2.857 120.571 2.857 50.286 0 100.571-2.286 150.857-2.286 41.143 0 81.714 0.571 122.857 0.571h167.429c22.857 0 36 5.143 51.429-16.571l24-0.571c5.143 0 10.857 0.571 16 0.571 1.143 64 1.143 128 1.143 192 0 20 0.571 42.286-2.857 62.286-12.571 4.571-25.714 8.571-38.857 10.286-13.143-22.857-22.286-48-30.857-73.143-4-11.429-17.714-88.571-18.857-89.714-12-14.857-25.143-12-42.857-12-52 0-106.286-2.286-157.714 4-2.857 25.143-5.143 52-4.571 77.714 0.571 160.571 2.286 321.143 2.286 481.714 0 44-6.857 90.286 5.714 132.571 43.429 22.286 94.857 25.714 139.429 45.714 1.143 9.143 2.857 18.857 2.857 28.571 0 5.143-0.571 10.857-1.714 16.571l-19.429 0.571c-81.143 2.286-161.143-10.286-242.857-10.286-57.714 0-115.429 10.286-173.143 10.286-0.571-9.714-1.714-20-1.714-29.714v-5.143c21.714-34.857 100-35.429 136-56.571 12.571-28 10.857-182.857 10.857-218.857 0-115.429-3.429-230.857-3.429-346.286v-66.857c0-10.286 2.286-51.429-4.571-59.429-8-8.571-82.857-6.857-92.571-6.857-21.143 0-82.286 9.714-98.857 21.714-27.429 18.857-27.429 133.143-61.714 135.429-10.286-6.286-24.571-15.429-32-25.143v-218.857z"
+ ],
+ "width": 1029.7051428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text-height"
+ ],
+ "defaultCode": 61492,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "text-height",
+ "id": 53,
+ "order": 909,
+ "prevSize": 28,
+ "code": 61492
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 53
+ },
+ {
+ "icon": {
+ "paths": [
+ "M46.286 73.714l30.857 15.429c4 1.714 108.571 2.857 120.571 2.857 50.286 0 100.571-2.286 150.857-2.286 151.429 0 304.571-3.429 456 1.714 12.571 0.571 24.571-7.429 32-17.714l24-0.571c5.143 0 10.857 0.571 16 0.571 1.143 64 1.143 128 1.143 192 0 20.571 0.571 42.286-2.857 62.286-12.571 4.571-25.714 8.571-38.857 10.286-13.143-22.857-22.286-48-30.857-73.143-4-11.429-18.286-88.571-18.857-89.714-4-5.143-9.143-8.571-15.429-10.857-4.571-1.714-32-1.143-37.714-1.143-70.286 0-151.429-4-220.571 4-2.857 25.143-5.143 52-4.571 77.714l0.571 86.857v-29.714c0.571 93.143 1.714 185.714 1.714 278.286 0 44-6.857 90.286 5.714 132.571 43.429 22.286 94.857 25.714 139.429 45.714 1.143 9.143 2.857 18.857 2.857 28.571 0 5.143-0.571 10.857-1.714 16.571l-19.429 0.571c-81.143 2.286-161.143-10.286-242.857-10.286-57.714 0-115.429 10.286-173.143 10.286-0.571-9.714-1.714-20-1.714-29.714v-5.143c21.714-34.857 100-35.429 136-56.571 14.286-32 10.286-302.286 10.286-352.571 0-8-2.857-16.571-2.857-25.143 0-23.429 4-157.714-4.571-167.429-8-8.571-82.857-6.857-92.571-6.857-24 0-158.286 12.571-172 21.714-26.857 17.714-27.429 132.571-61.714 135.429-10.286-6.286-24.571-15.429-32-25.143v-218.857zM748.571 806.286c20 0 96 68 111.429 80 8.571 6.857 14.857 16.571 14.857 28s-6.286 21.143-14.857 28c-15.429 12-91.429 80-111.429 80-26.286 0-17.143-61.143-17.143-71.429h-585.143c0 10.286 9.143 71.429-17.143 71.429-20 0-96-68-111.429-80-8.571-6.857-14.857-16.571-14.857-28s6.286-21.143 14.857-28c15.429-12 91.429-80 111.429-80 26.286 0 17.143 61.143 17.143 71.429h585.143c0-10.286-9.143-71.429 17.143-71.429z"
+ ],
+ "width": 878.2994285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text-width"
+ ],
+ "defaultCode": 61493,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "text-width",
+ "id": 54,
+ "order": 910,
+ "prevSize": 28,
+ "code": 61493
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 54
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 768v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM804.571 548.571v73.143c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h731.429c20 0 36.571 16.571 36.571 36.571zM950.857 329.143v73.143c0 20-16.571 36.571-36.571 36.571h-877.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h877.714c20 0 36.571 16.571 36.571 36.571zM731.429 109.714v73.143c0 20-16.571 36.571-36.571 36.571h-658.286c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h658.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "align-left"
+ ],
+ "defaultCode": 61494,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "align-left",
+ "id": 55,
+ "order": 911,
+ "prevSize": 28,
+ "code": 61494
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 55
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 768v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM804.571 548.571v73.143c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571zM950.857 329.143v73.143c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571zM731.429 109.714v73.143c0 20-16.571 36.571-36.571 36.571h-365.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h365.714c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "align-center"
+ ],
+ "defaultCode": 61495,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "align-center",
+ "id": 56,
+ "order": 912,
+ "prevSize": 28,
+ "code": 61495
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 56
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 768v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 548.571v73.143c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h731.429c20 0 36.571 16.571 36.571 36.571zM1024 329.143v73.143c0 20-16.571 36.571-36.571 36.571h-877.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h877.714c20 0 36.571 16.571 36.571 36.571zM1024 109.714v73.143c0 20-16.571 36.571-36.571 36.571h-658.286c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h658.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "align-right"
+ ],
+ "defaultCode": 61496,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "align-right",
+ "id": 57,
+ "order": 913,
+ "prevSize": 28,
+ "code": 61496
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 57
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 768v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 548.571v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 329.143v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 109.714v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "align-justify"
+ ],
+ "defaultCode": 61497,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "align-justify",
+ "id": 58,
+ "order": 914,
+ "prevSize": 28,
+ "code": 61497
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 58
+ },
+ {
+ "icon": {
+ "paths": [
+ "M146.286 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286zM146.286 530.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286zM146.286 310.857v109.714c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286zM146.286 91.429v109.714c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286zM1024 530.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286zM1024 310.857v109.714c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286zM1024 91.429v109.714c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "list"
+ ],
+ "defaultCode": 61498,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "list",
+ "id": 59,
+ "order": 915,
+ "prevSize": 28,
+ "code": 61498
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 59
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 310.857v329.143c0 9.714-8.571 18.286-18.286 18.286-4.571 0-9.714-1.714-13.143-5.143l-164.571-164.571c-3.429-3.429-5.143-8.571-5.143-13.143s1.714-9.714 5.143-13.143l164.571-164.571c3.429-3.429 8.571-5.143 13.143-5.143 9.714 0 18.286 8.571 18.286 18.286zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-987.429c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h987.429c9.714 0 18.286 8.571 18.286 18.286zM1024 530.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-621.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h621.714c9.714 0 18.286 8.571 18.286 18.286zM1024 310.857v109.714c0 9.714-8.571 18.286-18.286 18.286h-621.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h621.714c9.714 0 18.286 8.571 18.286 18.286zM1024 91.429v109.714c0 9.714-8.571 18.286-18.286 18.286h-987.429c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h987.429c9.714 0 18.286 8.571 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dedent",
+ "outdent"
+ ],
+ "defaultCode": 61499,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "dedent, outdent",
+ "id": 60,
+ "order": 916,
+ "prevSize": 28,
+ "code": 61499
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 60
+ },
+ {
+ "icon": {
+ "paths": [
+ "M201.143 475.429c0 4.571-1.714 9.714-5.143 13.143l-164.571 164.571c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8.571-18.286-18.286v-329.143c0-9.714 8.571-18.286 18.286-18.286 4.571 0 9.714 1.714 13.143 5.143l164.571 164.571c3.429 3.429 5.143 8.571 5.143 13.143zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-987.429c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h987.429c9.714 0 18.286 8.571 18.286 18.286zM1024 530.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-621.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h621.714c9.714 0 18.286 8.571 18.286 18.286zM1024 310.857v109.714c0 9.714-8.571 18.286-18.286 18.286h-621.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h621.714c9.714 0 18.286 8.571 18.286 18.286zM1024 91.429v109.714c0 9.714-8.571 18.286-18.286 18.286h-987.429c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h987.429c9.714 0 18.286 8.571 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "indent"
+ ],
+ "defaultCode": 61500,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "indent",
+ "id": 61,
+ "order": 917,
+ "prevSize": 28,
+ "code": 61500
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 61
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 201.143v621.714c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-3.429-25.714-10.857l-230.286-230.286v94.857c0 90.857-73.714 164.571-164.571 164.571h-402.286c-90.857 0-164.571-73.714-164.571-164.571v-402.286c0-90.857 73.714-164.571 164.571-164.571h402.286c90.857 0 164.571 73.714 164.571 164.571v94.286l230.286-229.714c6.857-7.429 16-10.857 25.714-10.857 4.571 0 9.714 1.143 14.286 2.857 13.143 5.714 22.286 18.857 22.286 33.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "video-camera"
+ ],
+ "defaultCode": 61501,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "video-camera",
+ "id": 62,
+ "order": 918,
+ "prevSize": 28,
+ "code": 61501
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 62
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 329.143c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM950.857 548.571v256h-804.571v-109.714l182.857-182.857 91.429 91.429 292.571-292.571zM1005.714 146.286h-914.286c-9.714 0-18.286 8.571-18.286 18.286v694.857c0 9.714 8.571 18.286 18.286 18.286h914.286c9.714 0 18.286-8.571 18.286-18.286v-694.857c0-9.714-8.571-18.286-18.286-18.286zM1097.143 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-914.286c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h914.286c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "image",
+ "photo",
+ "picture-o"
+ ],
+ "defaultCode": 61502,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "image, photo, picture-o",
+ "id": 63,
+ "order": 919,
+ "prevSize": 28,
+ "code": 61502
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 63
+ },
+ {
+ "icon": {
+ "paths": [
+ "M207.429 877.714l52-52-134.286-134.286-52 52v61.143h73.143v73.143h61.143zM506.286 347.429c0-7.429-5.143-12.571-12.571-12.571-3.429 0-6.857 1.143-9.714 4l-309.714 309.714c-2.857 2.857-4 6.286-4 9.714 0 7.429 5.143 12.571 12.571 12.571 3.429 0 6.857-1.143 9.714-4l309.714-309.714c2.857-2.857 4-6.286 4-9.714zM475.429 237.714l237.714 237.714-475.429 475.429h-237.714v-237.714zM865.714 292.571c0 19.429-8 38.286-21.143 51.429l-94.857 94.857-237.714-237.714 94.857-94.286c13.143-13.714 32-21.714 51.429-21.714s38.286 8 52 21.714l134.286 133.714c13.143 13.714 21.143 32.571 21.143 52z"
+ ],
+ "width": 865.7188571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pencil"
+ ],
+ "defaultCode": 61504,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "pencil",
+ "id": 64,
+ "order": 920,
+ "prevSize": 28,
+ "code": 61504
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 64
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 365.714c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM585.143 365.714c0 34.857-4 70.857-18.857 102.286l-208 442.286c-12 25.143-38.286 40.571-65.714 40.571s-53.714-15.429-65.143-40.571l-208.571-442.286c-14.857-31.429-18.857-67.429-18.857-102.286 0-161.714 130.857-292.571 292.571-292.571s292.571 130.857 292.571 292.571z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map-marker"
+ ],
+ "defaultCode": 61505,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "map-marker",
+ "id": 65,
+ "order": 921,
+ "prevSize": 28,
+ "code": 61505
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 65
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 822.857v-621.714c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "adjust"
+ ],
+ "defaultCode": 61506,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "adjust",
+ "id": 66,
+ "order": 922,
+ "prevSize": 28,
+ "code": 61506
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 66
+ },
+ {
+ "icon": {
+ "paths": [
+ "M292.571 658.286c0-14.286-4.571-28-11.429-39.429-7.429-11.429-37.714-50.286-49.714-88.571-1.714-6.286-7.429-9.143-12-9.143s-10.286 2.857-12 9.143c-12 38.286-42.286 77.143-49.714 88.571-6.857 11.429-11.429 25.143-11.429 39.429 0 40.571 32.571 73.143 73.143 73.143s73.143-32.571 73.143-73.143zM585.143 585.143c0 161.714-130.857 292.571-292.571 292.571s-292.571-130.857-292.571-292.571c0-57.714 17.714-111.429 46.286-157.143 29.143-45.714 151.429-200.571 197.714-354.857 7.429-24.571 30.286-36.571 48.571-36.571s41.714 12 48.571 36.571c46.286 154.286 168.571 309.143 197.714 354.857s46.286 99.429 46.286 157.143z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tint"
+ ],
+ "defaultCode": 61507,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "tint",
+ "id": 67,
+ "order": 923,
+ "prevSize": 28,
+ "code": 61507
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 67
+ },
+ {
+ "icon": {
+ "paths": [
+ "M507.429 676.571l66.286-66.286-86.857-86.857-66.286 66.286v32h54.857v54.857h32zM758.857 265.143c-5.143-5.143-13.714-4.571-18.857 0.571l-200 200c-5.143 5.143-5.714 13.714-0.571 18.857s13.714 4.571 18.857-0.571l200-200c5.143-5.143 5.714-13.714 0.571-18.857zM804.571 604.571v108.571c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c22.857 0 45.714 4.571 66.857 14.286 5.143 2.286 9.143 7.429 10.286 13.143 1.143 6.286-0.571 12-5.143 16.571l-28 28c-5.143 5.143-12 6.857-18.286 4.571-8.571-2.286-17.143-3.429-25.714-3.429h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429v-72c0-4.571 1.714-9.143 5.143-12.571l36.571-36.571c5.714-5.714 13.143-6.857 20-4s11.429 9.143 11.429 16.571zM749.714 182.857l164.571 164.571-384 384h-164.571v-164.571zM1003.429 258.286l-52.571 52.571-164.571-164.571 52.571-52.571c21.143-21.143 56.571-21.143 77.714 0l86.857 86.857c21.143 21.143 21.143 56.571 0 77.714z"
+ ],
+ "width": 1024.5851428571427,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "edit",
+ "pencil-square-o"
+ ],
+ "defaultCode": 61508,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "edit, pencil-square-o",
+ "id": 68,
+ "order": 924,
+ "prevSize": 28,
+ "code": 61508
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 68
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 565.143v148c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h145.714c9.714 0 18.286 8 18.286 18.286 0 9.143-6.286 16.571-14.857 18.286-28.571 9.714-54.286 21.143-76 34.286-2.857 1.143-5.714 2.286-9.143 2.286h-64c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429v-122.286c0-6.857 4-13.143 10.286-16.571 11.429-5.143 21.714-12.571 30.857-21.143 5.143-5.143 13.143-7.429 20-4.571s12 9.143 12 16.571zM940 281.714l-219.429 219.429c-6.857 7.429-16 10.857-25.714 10.857-4.571 0-9.714-1.143-14.286-2.857-13.143-5.714-22.286-18.857-22.286-33.714v-109.714h-91.429c-125.714 0-205.714 24-250.286 74.857-46.286 53.143-60 138.857-42.286 270.286 1.143 8-4 16-11.429 19.429-2.286 0.571-4.571 1.143-6.857 1.143-5.714 0-11.429-2.857-14.857-7.429-4-5.714-94.857-134.286-94.857-248.571 0-153.143 48-329.143 420.571-329.143h91.429v-109.714c0-14.857 9.143-28 22.286-33.714 4.571-1.714 9.714-2.857 14.286-2.857 9.714 0 18.857 4 25.714 10.857l219.429 219.429c14.286 14.286 14.286 37.143 0 51.429z"
+ ],
+ "width": 954.2948571428572,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "share-square-o"
+ ],
+ "defaultCode": 61509,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "share-square-o",
+ "id": 69,
+ "order": 925,
+ "prevSize": 28,
+ "code": 61509
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 69
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 531.429v181.714c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c22.857 0 45.714 4.571 66.857 14.286 5.143 2.286 9.143 7.429 10.286 13.143 1.143 6.286-0.571 12-5.143 16.571l-28 28c-3.429 3.429-8.571 5.714-13.143 5.714-1.714 0-3.429-0.571-5.143-1.143-8.571-2.286-17.143-3.429-25.714-3.429h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429v-145.143c0-4.571 1.714-9.143 5.143-12.571l36.571-36.571c4-4 8.571-5.714 13.143-5.714 2.286 0 4.571 0.571 6.857 1.714 6.857 2.857 11.429 9.143 11.429 16.571zM936.571 252l-465.143 465.143c-18.286 18.286-46.857 18.286-65.143 0l-245.714-245.714c-18.286-18.286-18.286-46.857 0-65.143l62.857-62.857c18.286-18.286 46.857-18.286 65.143 0l150.286 150.286 369.714-369.714c18.286-18.286 46.857-18.286 65.143 0l62.857 62.857c18.286 18.286 18.286 46.857 0 65.143z"
+ ],
+ "width": 954.8799999999999,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check-square-o"
+ ],
+ "defaultCode": 61510,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "check-square-o",
+ "id": 70,
+ "order": 926,
+ "prevSize": 28,
+ "code": 61510
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 70
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 512c0 9.714-4 18.857-10.857 25.714l-146.286 146.286c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-73.143h-219.429v219.429h73.143c20 0 36.571 16.571 36.571 36.571 0 9.714-4 18.857-10.857 25.714l-146.286 146.286c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h73.143v-219.429h-219.429v73.143c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l146.286-146.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571v73.143h219.429v-219.429h-73.143c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l146.286-146.286c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l146.286 146.286c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-73.143v219.429h219.429v-73.143c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l146.286 146.286c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrows"
+ ],
+ "defaultCode": 61511,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrows",
+ "id": 71,
+ "order": 927,
+ "prevSize": 28,
+ "code": 61511
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 71
+ },
+ {
+ "icon": {
+ "paths": [
+ "M559.429 80.571c14.286-14.286 25.714-9.143 25.714 10.857v841.143c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-3.429-3.429-5.714-6.857-7.429-10.857v387.429c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v387.429c1.714-4 4-7.429 7.429-10.857z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "step-backward"
+ ],
+ "defaultCode": 61512,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "step-backward",
+ "id": 72,
+ "order": 928,
+ "prevSize": 28,
+ "code": 61512
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 72
+ },
+ {
+ "icon": {
+ "paths": [
+ "M998.286 80.571c14.286-14.286 25.714-9.143 25.714 10.857v841.143c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-3.429-3.429-5.714-6.857-7.429-10.857v405.714c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-3.429-3.429-5.714-6.857-7.429-10.857v387.429c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v387.429c1.714-4 4-7.429 7.429-10.857l405.714-405.714c14.286-14.286 25.714-9.143 25.714 10.857v405.714c1.714-4 4-7.429 7.429-10.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fast-backward"
+ ],
+ "defaultCode": 61513,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "fast-backward",
+ "id": 73,
+ "order": 929,
+ "prevSize": 28,
+ "code": 61513
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 73
+ },
+ {
+ "icon": {
+ "paths": [
+ "M925.143 80.571c14.286-14.286 25.714-9.143 25.714 10.857v841.143c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-3.429-3.429-5.714-6.857-7.429-10.857v405.714c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-14.286-14.286-14.286-37.143 0-51.429l405.714-405.714c14.286-14.286 25.714-9.143 25.714 10.857v405.714c1.714-4 4-7.429 7.429-10.857z"
+ ],
+ "width": 1017.1245714285715,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "backward"
+ ],
+ "defaultCode": 61514,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "backward",
+ "id": 74,
+ "order": 930,
+ "prevSize": 28,
+ "code": 61514
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 74
+ },
+ {
+ "icon": {
+ "paths": [
+ "M790.857 529.714l-758.857 421.714c-17.714 9.714-32 1.143-32-18.857v-841.143c0-20 14.286-28.571 32-18.857l758.857 421.714c17.714 9.714 17.714 25.714 0 35.429z"
+ ],
+ "width": 808.5942857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play"
+ ],
+ "defaultCode": 61515,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "play",
+ "id": 75,
+ "order": 931,
+ "prevSize": 28,
+ "code": 61515
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 75
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 109.714v804.571c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h292.571c20 0 36.571 16.571 36.571 36.571zM365.714 109.714v804.571c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h292.571c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause"
+ ],
+ "defaultCode": 61516,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "pause",
+ "id": 76,
+ "order": 932,
+ "prevSize": 28,
+ "code": 61516
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 76
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 109.714v804.571c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stop"
+ ],
+ "defaultCode": 61517,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "stop",
+ "id": 77,
+ "order": 933,
+ "prevSize": 28,
+ "code": 61517
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 77
+ },
+ {
+ "icon": {
+ "paths": [
+ "M25.714 943.429c-14.286 14.286-25.714 9.143-25.714-10.857v-841.143c0-20 11.429-25.143 25.714-10.857l405.714 405.714c3.429 3.429 5.714 6.857 7.429 10.857v-405.714c0-20 11.429-25.143 25.714-10.857l405.714 405.714c14.286 14.286 14.286 37.143 0 51.429l-405.714 405.714c-14.286 14.286-25.714 9.143-25.714-10.857v-405.714c-1.714 4-4 7.429-7.429 10.857z"
+ ],
+ "width": 884.5897142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "forward"
+ ],
+ "defaultCode": 61518,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "forward",
+ "id": 78,
+ "order": 934,
+ "prevSize": 28,
+ "code": 61518
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 78
+ },
+ {
+ "icon": {
+ "paths": [
+ "M25.714 943.429c-14.286 14.286-25.714 9.143-25.714-10.857v-841.143c0-20 11.429-25.143 25.714-10.857l405.714 405.714c3.429 3.429 5.714 6.857 7.429 10.857v-405.714c0-20 11.429-25.143 25.714-10.857l405.714 405.714c3.429 3.429 5.714 6.857 7.429 10.857v-387.429c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v804.571c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-387.429c-1.714 4-4 7.429-7.429 10.857l-405.714 405.714c-14.286 14.286-25.714 9.143-25.714-10.857v-405.714c-1.714 4-4 7.429-7.429 10.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fast-forward"
+ ],
+ "defaultCode": 61520,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "fast-forward",
+ "id": 79,
+ "order": 935,
+ "prevSize": 28,
+ "code": 61520
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 79
+ },
+ {
+ "icon": {
+ "paths": [
+ "M25.714 943.429c-14.286 14.286-25.714 9.143-25.714-10.857v-841.143c0-20 11.429-25.143 25.714-10.857l405.714 405.714c3.429 3.429 5.714 6.857 7.429 10.857v-387.429c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v804.571c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-387.429c-1.714 4-4 7.429-7.429 10.857z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "step-forward"
+ ],
+ "defaultCode": 61521,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "step-forward",
+ "id": 80,
+ "order": 936,
+ "prevSize": 28,
+ "code": 61521
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 80
+ },
+ {
+ "icon": {
+ "paths": [
+ "M8 559.429l405.714-405.714c14.286-14.286 37.143-14.286 51.429 0l405.714 405.714c14.286 14.286 9.143 25.714-10.857 25.714h-841.143c-20 0-25.143-11.429-10.857-25.714zM841.714 877.714h-804.571c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571z"
+ ],
+ "width": 878.8845714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eject"
+ ],
+ "defaultCode": 61522,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "eject",
+ "id": 81,
+ "order": 937,
+ "prevSize": 28,
+ "code": 61522
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 81
+ },
+ {
+ "icon": {
+ "paths": [
+ "M669.143 172l-303.429 303.429 303.429 303.429c14.286 14.286 14.286 37.143 0 51.429l-94.857 94.857c-14.286 14.286-37.143 14.286-51.429 0l-424-424c-14.286-14.286-14.286-37.143 0-51.429l424-424c14.286-14.286 37.143-14.286 51.429 0l94.857 94.857c14.286 14.286 14.286 37.143 0 51.429z"
+ ],
+ "width": 768,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-left"
+ ],
+ "defaultCode": 61523,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "chevron-left",
+ "id": 82,
+ "order": 938,
+ "prevSize": 28,
+ "code": 61523
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 82
+ },
+ {
+ "icon": {
+ "paths": [
+ "M632.571 501.143l-424 424c-14.286 14.286-37.143 14.286-51.429 0l-94.857-94.857c-14.286-14.286-14.286-37.143 0-51.429l303.429-303.429-303.429-303.429c-14.286-14.286-14.286-37.143 0-51.429l94.857-94.857c14.286-14.286 37.143-14.286 51.429 0l424 424c14.286 14.286 14.286 37.143 0 51.429z"
+ ],
+ "width": 694.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-right"
+ ],
+ "defaultCode": 61524,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "chevron-right",
+ "id": 83,
+ "order": 939,
+ "prevSize": 28,
+ "code": 61524
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 83
+ },
+ {
+ "icon": {
+ "paths": [
+ "M694.857 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-146.286v-146.286c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v146.286h-146.286c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h146.286v146.286c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571v-146.286h146.286c20 0 36.571-16.571 36.571-36.571zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus-circle"
+ ],
+ "defaultCode": 61525,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "plus-circle",
+ "id": 84,
+ "order": 940,
+ "prevSize": 28,
+ "code": 61525
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 84
+ },
+ {
+ "icon": {
+ "paths": [
+ "M694.857 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-438.857c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h438.857c20 0 36.571-16.571 36.571-36.571zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minus-circle"
+ ],
+ "defaultCode": 61526,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "minus-circle",
+ "id": 85,
+ "order": 941,
+ "prevSize": 28,
+ "code": 61526
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 85
+ },
+ {
+ "icon": {
+ "paths": [
+ "M656.571 641.143c0-9.714-4-18.857-10.857-25.714l-103.429-103.429 103.429-103.429c6.857-6.857 10.857-16 10.857-25.714s-4-19.429-10.857-26.286l-51.429-51.429c-6.857-6.857-16.571-10.857-26.286-10.857s-18.857 4-25.714 10.857l-103.429 103.429-103.429-103.429c-6.857-6.857-16-10.857-25.714-10.857s-19.429 4-26.286 10.857l-51.429 51.429c-6.857 6.857-10.857 16.571-10.857 26.286s4 18.857 10.857 25.714l103.429 103.429-103.429 103.429c-6.857 6.857-10.857 16-10.857 25.714s4 19.429 10.857 26.286l51.429 51.429c6.857 6.857 16.571 10.857 26.286 10.857s18.857-4 25.714-10.857l103.429-103.429 103.429 103.429c6.857 6.857 16 10.857 25.714 10.857s19.429-4 26.286-10.857l51.429-51.429c6.857-6.857 10.857-16.571 10.857-26.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "times-circle"
+ ],
+ "defaultCode": 61527,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "times-circle",
+ "id": 86,
+ "order": 942,
+ "prevSize": 28,
+ "code": 61527
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 86
+ },
+ {
+ "icon": {
+ "paths": [
+ "M733.714 419.429c0-9.714-3.429-19.429-10.286-26.286l-52-51.429c-6.857-6.857-16-10.857-25.714-10.857s-18.857 4-25.714 10.857l-233.143 232.571-129.143-129.143c-6.857-6.857-16-10.857-25.714-10.857s-18.857 4-25.714 10.857l-52 51.429c-6.857 6.857-10.286 16.571-10.286 26.286s3.429 18.857 10.286 25.714l206.857 206.857c6.857 6.857 16.571 10.857 25.714 10.857 9.714 0 19.429-4 26.286-10.857l310.286-310.286c6.857-6.857 10.286-16 10.286-25.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check-circle"
+ ],
+ "defaultCode": 61528,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "check-circle",
+ "id": 87,
+ "order": 943,
+ "prevSize": 28,
+ "code": 61528
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 87
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 786.286v-109.714c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286zM658.286 402.286c0-104.571-109.714-182.857-208-182.857-93.143 0-162.857 40-212 121.714-5.143 8-2.857 18.286 4.571 24l75.429 57.143c2.857 2.286 6.857 3.429 10.857 3.429 5.143 0 10.857-2.286 14.286-6.857 26.857-34.286 38.286-44.571 49.143-52.571 9.714-6.857 28.571-13.714 49.143-13.714 36.571 0 70.286 23.429 70.286 48.571 0 29.714-15.429 44.571-50.286 60.571-40.571 18.286-96 65.714-96 121.143v20.571c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286v0c0-13.143 16.571-41.143 43.429-56.571 43.429-24.571 102.857-57.714 102.857-144.571zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "question-circle"
+ ],
+ "defaultCode": 61529,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "question-circle",
+ "id": 88,
+ "order": 944,
+ "prevSize": 28,
+ "code": 61529
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 88
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 786.286v-91.429c0-10.286-8-18.286-18.286-18.286h-54.857v-292.571c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v91.429c0 10.286 8 18.286 18.286 18.286h54.857v182.857h-54.857c-10.286 0-18.286 8-18.286 18.286v91.429c0 10.286 8 18.286 18.286 18.286h256c10.286 0 18.286-8 18.286-18.286zM512 274.286v-91.429c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v91.429c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "info-circle"
+ ],
+ "defaultCode": 61530,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "info-circle",
+ "id": 89,
+ "order": 945,
+ "prevSize": 28,
+ "code": 61530
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 89
+ },
+ {
+ "icon": {
+ "paths": [
+ "M684 585.143h-62.286c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h62.286c-24.571-82.286-89.714-147.429-172-172v62.286c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-62.286c-82.286 24.571-147.429 89.714-172 172h62.286c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-62.286c24.571 82.286 89.714 147.429 172 172v-62.286c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v62.286c82.286-24.571 147.429-89.714 172-172zM877.714 475.429v73.143c0 20-16.571 36.571-36.571 36.571h-81.714c-28 122.857-124.571 219.429-247.429 247.429v81.714c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-81.714c-122.857-28-219.429-124.571-247.429-247.429h-81.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h81.714c28-122.857 124.571-219.429 247.429-247.429v-81.714c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v81.714c122.857 28 219.429 124.571 247.429 247.429h81.714c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crosshairs"
+ ],
+ "defaultCode": 61531,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "crosshairs",
+ "id": 90,
+ "order": 946,
+ "prevSize": 28,
+ "code": 61531
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 90
+ },
+ {
+ "icon": {
+ "paths": [
+ "M626.857 616.571l-83.429 83.429c-7.429 7.429-18.857 7.429-26.286 0l-78.286-78.286-78.286 78.286c-7.429 7.429-18.857 7.429-26.286 0l-83.429-83.429c-7.429-7.429-7.429-18.857 0-26.286l78.286-78.286-78.286-78.286c-7.429-7.429-7.429-18.857 0-26.286l83.429-83.429c7.429-7.429 18.857-7.429 26.286 0l78.286 78.286 78.286-78.286c7.429-7.429 18.857-7.429 26.286 0l83.429 83.429c7.429 7.429 7.429 18.857 0 26.286l-78.286 78.286 78.286 78.286c7.429 7.429 7.429 18.857 0 26.286zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "times-circle-o"
+ ],
+ "defaultCode": 61532,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "times-circle-o",
+ "id": 91,
+ "order": 947,
+ "prevSize": 28,
+ "code": 61532
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 91
+ },
+ {
+ "icon": {
+ "paths": [
+ "M669.143 464.571l-241.143 241.143c-14.286 14.286-37.143 14.286-51.429 0l-168-168c-14.286-14.286-14.286-37.143 0-51.429l58.286-58.286c14.286-14.286 37.143-14.286 51.429 0l84 84 157.143-157.143c14.286-14.286 37.143-14.286 51.429 0l58.286 58.286c14.286 14.286 14.286 37.143 0 51.429zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check-circle-o"
+ ],
+ "defaultCode": 61533,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "check-circle-o",
+ "id": 92,
+ "order": 948,
+ "prevSize": 28,
+ "code": 61533
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 92
+ },
+ {
+ "icon": {
+ "paths": [
+ "M749.714 510.286c0-62.286-18.286-120-49.714-168.571l-430.857 430.286c49.143 32 107.429 50.857 169.714 50.857 171.429 0 310.857-140 310.857-312.571zM178.857 681.143l431.429-430.857c-49.143-33.143-108-52-171.429-52-171.429 0-310.857 140-310.857 312 0 63.429 18.857 121.714 50.857 170.857zM877.714 510.286c0 243.429-196.571 440.571-438.857 440.571s-438.857-197.143-438.857-440.571c0-242.857 196.571-440 438.857-440s438.857 197.143 438.857 440z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ban"
+ ],
+ "defaultCode": 61534,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "ban",
+ "id": 93,
+ "order": 949,
+ "prevSize": 28,
+ "code": 61534
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 93
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 512v73.143c0 38.857-25.714 73.143-66.857 73.143h-402.286l167.429 168c13.714 13.143 21.714 32 21.714 51.429s-8 38.286-21.714 51.429l-42.857 43.429c-13.143 13.143-32 21.143-51.429 21.143s-38.286-8-52-21.143l-372-372.571c-13.143-13.143-21.143-32-21.143-51.429s8-38.286 21.143-52l372-371.429c13.714-13.714 32.571-21.714 52-21.714s37.714 8 51.429 21.714l42.857 42.286c13.714 13.714 21.714 32.571 21.714 52s-8 38.286-21.714 52l-167.429 167.429h402.286c41.143 0 66.857 34.286 66.857 73.143z"
+ ],
+ "width": 914.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-left"
+ ],
+ "defaultCode": 61536,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrow-left",
+ "id": 94,
+ "order": 950,
+ "prevSize": 28,
+ "code": 61536
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 94
+ },
+ {
+ "icon": {
+ "paths": [
+ "M841.143 548.571c0 19.429-7.429 38.286-21.143 52l-372 372c-13.714 13.143-32.571 21.143-52 21.143s-37.714-8-51.429-21.143l-42.857-42.857c-13.714-13.714-21.714-32.571-21.714-52s8-38.286 21.714-52l167.429-167.429h-402.286c-41.143 0-66.857-34.286-66.857-73.143v-73.143c0-38.857 25.714-73.143 66.857-73.143h402.286l-167.429-168c-13.714-13.143-21.714-32-21.714-51.429s8-38.286 21.714-51.429l42.857-42.857c13.714-13.714 32-21.714 51.429-21.714s38.286 8 52 21.714l372 372c13.714 13.143 21.143 32 21.143 51.429z"
+ ],
+ "width": 841.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-right"
+ ],
+ "defaultCode": 61537,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrow-right",
+ "id": 95,
+ "order": 951,
+ "prevSize": 28,
+ "code": 61537
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 95
+ },
+ {
+ "icon": {
+ "paths": [
+ "M920.571 554.857c0 19.429-8 37.714-21.143 51.429l-42.857 42.857c-13.714 13.714-32.571 21.714-52 21.714s-38.286-8-51.429-21.714l-168-167.429v402.286c0 41.143-34.286 66.857-73.143 66.857h-73.143c-38.857 0-73.143-25.714-73.143-66.857v-402.286l-168 167.429c-13.143 13.714-32 21.714-51.429 21.714s-38.286-8-51.429-21.714l-42.857-42.857c-13.714-13.714-21.714-32-21.714-51.429s8-38.286 21.714-52l372-372c13.143-13.714 32-21.143 51.429-21.143s38.286 7.429 52 21.143l372 372c13.143 13.714 21.143 32.571 21.143 52z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-up"
+ ],
+ "defaultCode": 61538,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrow-up",
+ "id": 96,
+ "order": 952,
+ "prevSize": 28,
+ "code": 61538
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 96
+ },
+ {
+ "icon": {
+ "paths": [
+ "M920.571 475.429c0 19.429-8 38.286-21.143 51.429l-372 372.571c-13.714 13.143-32.571 21.143-52 21.143s-38.286-8-51.429-21.143l-372-372.571c-13.714-13.143-21.714-32-21.714-51.429s8-38.286 21.714-52l42.286-42.857c13.714-13.143 32.571-21.143 52-21.143s38.286 8 51.429 21.143l168 168v-402.286c0-40 33.143-73.143 73.143-73.143h73.143c40 0 73.143 33.143 73.143 73.143v402.286l168-168c13.143-13.143 32-21.143 51.429-21.143s38.286 8 52 21.143l42.857 42.857c13.143 13.714 21.143 32.571 21.143 52z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-down"
+ ],
+ "defaultCode": 61539,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrow-down",
+ "id": 97,
+ "order": 953,
+ "prevSize": 28,
+ "code": 61539
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 97
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 365.714c0 9.714-4 18.857-10.857 25.714l-292.571 292.571c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-146.286h-128c-246.286 0-408 47.429-408 320 0 23.429 1.143 46.857 2.857 70.286 0.571 9.143 2.857 19.429 2.857 28.571 0 10.857-6.857 20-18.286 20-8 0-12-4-16-9.714-8.571-12-14.857-30.286-21.143-43.429-32.571-73.143-72.571-177.714-72.571-257.714 0-64 6.286-129.714 30.286-190.286 79.429-197.143 312.571-230.286 500-230.286h128v-146.286c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l292.571 292.571c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mail-forward",
+ "share"
+ ],
+ "defaultCode": 61540,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "mail-forward, share",
+ "id": 98,
+ "order": 954,
+ "prevSize": 28,
+ "code": 61540
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 98
+ },
+ {
+ "icon": {
+ "paths": [
+ "M431.429 603.429c0 4.571-2.286 9.714-5.714 13.143l-189.714 189.714 82.286 82.286c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l82.286 82.286 189.714-189.714c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l65.143 65.143c3.429 3.429 5.714 8.571 5.714 13.143zM877.714 109.714v256c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-82.286-82.286-189.714 189.714c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-65.143-65.143c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l189.714-189.714-82.286-82.286c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h256c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "expand"
+ ],
+ "defaultCode": 61541,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "expand",
+ "id": 99,
+ "order": 955,
+ "prevSize": 28,
+ "code": 61541
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 99
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 548.571v256c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-82.286-82.286-189.714 189.714c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-65.143-65.143c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l189.714-189.714-82.286-82.286c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h256c20 0 36.571 16.571 36.571 36.571zM870.286 164.571c0 4.571-2.286 9.714-5.714 13.143l-189.714 189.714 82.286 82.286c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l82.286 82.286 189.714-189.714c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l65.143 65.143c3.429 3.429 5.714 8.571 5.714 13.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "compress"
+ ],
+ "defaultCode": 61542,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "compress",
+ "id": 100,
+ "order": 956,
+ "prevSize": 28,
+ "code": 61542
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 100
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM512 785.714v-108.571c0-10.286-8-18.857-17.714-18.857h-109.714c-10.286 0-18.857 8.571-18.857 18.857v108.571c0 10.286 8.571 18.857 18.857 18.857h109.714c9.714 0 17.714-8.571 17.714-18.857zM510.857 589.143l10.286-354.857c0-4-1.714-8-5.714-10.286-3.429-2.857-8.571-4.571-13.714-4.571h-125.714c-5.143 0-10.286 1.714-13.714 4.571-4 2.286-5.714 6.286-5.714 10.286l9.714 354.857c0 8 8.571 14.286 19.429 14.286h105.714c10.286 0 18.857-6.286 19.429-14.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exclamation-circle"
+ ],
+ "defaultCode": 61546,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "exclamation-circle",
+ "id": 101,
+ "order": 957,
+ "prevSize": 28,
+ "code": 61546
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 101
+ },
+ {
+ "icon": {
+ "paths": [
+ "M530.286 774.857v-409.143h-182.857v409.143c0 20 16.571 29.714 36.571 29.714h109.714c20 0 36.571-9.714 36.571-29.714zM269.714 292.571h111.429l-72-92c-6.286-7.429-20-17.714-39.429-17.714-30.286 0-54.857 24.571-54.857 54.857s24.571 54.857 54.857 54.857zM662.857 237.714c0-30.286-24.571-54.857-54.857-54.857-19.429 0-33.143 10.286-39.429 17.714l-71.429 92h110.857c30.286 0 54.857-24.571 54.857-54.857zM877.714 384v182.857c0 10.286-8 18.286-18.286 18.286h-54.857v237.714c0 30.286-24.571 54.857-54.857 54.857h-621.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-54.857c-10.286 0-18.286-8-18.286-18.286v-182.857c0-10.286 8-18.286 18.286-18.286h251.429c-70.857 0-128-57.143-128-128s57.143-128 128-128c38.286 0 73.714 16 96 44l73.143 94.286 73.143-94.286c22.286-28 57.714-44 96-44 70.857 0 128 57.143 128 128s-57.143 128-128 128h251.429c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gift"
+ ],
+ "defaultCode": 61547,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "gift",
+ "id": 102,
+ "order": 958,
+ "prevSize": 28,
+ "code": 61547
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 102
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 402.286c0-20-16.571-36.571-36.571-36.571-202.286 0-332.571 84.571-464.571 230.286-6.857 7.429-10.857 15.429-10.857 25.714 0 20 16.571 36.571 36.571 36.571 10.286 0 18.286-4 25.714-10.857 28-25.143 53.143-52.571 80.571-78.286 103.429-93.143 192-130.286 332.571-130.286 20 0 36.571-16.571 36.571-36.571zM1024 289.143c0 36.571-4 73.714-11.429 110.286-36.571 177.714-150.857 293.143-309.714 372-77.143 38.857-163.429 61.714-250.286 61.714-54.857 0-111.429-9.143-163.429-26.857-27.429-9.143-82.286-45.143-105.143-45.143-28.571 0-62.857 116.571-112.571 116.571-36 0-46.857-17.714-62.286-44-5.143-9.714-9.143-13.143-9.143-25.143 0-59.429 113.143-105.714 113.143-138.857 0-5.143-14.857-35.429-17.143-46.857-3.429-19.429-5.143-39.429-5.143-59.429 0-181.714 144.571-311.429 306.857-365.143 117.143-38.857 366.286 6.286 445.714-69.143 31.429-29.143 46.857-56 94.857-56 64.571 0 85.714 167.429 85.714 216z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "leaf"
+ ],
+ "defaultCode": 61548,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "leaf",
+ "id": 103,
+ "order": 959,
+ "prevSize": 28,
+ "code": 61548
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 103
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 969.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286zM658.286 365.714c0 218.857-256 238.286-256 384 0 40 20 93.143 38.286 128l-2.286-0.571 0.571 0.571c-157.714-72.571-292.571-172.571-292.571-365.714 0-218.857 256-238.286 256-384 0-40-20-93.143-37.714-128l1.714 0.571-0.571-0.571c157.714 72.571 292.571 172.571 292.571 365.714z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fire"
+ ],
+ "defaultCode": 61549,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "fire",
+ "id": 104,
+ "order": 960,
+ "prevSize": 28,
+ "code": 61549
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 104
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 548.571c-54.286-84-128.571-156-217.714-201.714 22.857 38.857 34.857 83.429 34.857 128.571 0 141.143-114.857 256-256 256s-256-114.857-256-256c0-45.143 12-89.714 34.857-128.571-89.143 45.714-163.429 117.714-217.714 201.714 97.714 150.857 255.429 256 438.857 256s341.143-105.143 438.857-256zM539.429 329.143c0-14.857-12.571-27.429-27.429-27.429-95.429 0-173.714 78.286-173.714 173.714 0 14.857 12.571 27.429 27.429 27.429s27.429-12.571 27.429-27.429c0-65.143 53.714-118.857 118.857-118.857 14.857 0 27.429-12.571 27.429-27.429zM1024 548.571c0 14.286-4.571 27.429-11.429 39.429-105.143 173.143-297.714 289.714-500.571 289.714s-395.429-117.143-500.571-289.714c-6.857-12-11.429-25.143-11.429-39.429s4.571-27.429 11.429-39.429c105.143-172.571 297.714-289.714 500.571-289.714s395.429 117.143 500.571 289.714c6.857 12 11.429 25.143 11.429 39.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eye"
+ ],
+ "defaultCode": 61550,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "eye",
+ "id": 105,
+ "order": 961,
+ "prevSize": 28,
+ "code": 61550
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 105
+ },
+ {
+ "icon": {
+ "paths": [
+ "M317.143 762.857l44.571-80.571c-66.286-48-105.714-125.143-105.714-206.857 0-45.143 12-89.714 34.857-128.571-89.143 45.714-163.429 117.714-217.714 201.714 59.429 92 143.429 169.143 244 214.286zM539.429 329.143c0-14.857-12.571-27.429-27.429-27.429-95.429 0-173.714 78.286-173.714 173.714 0 14.857 12.571 27.429 27.429 27.429s27.429-12.571 27.429-27.429c0-65.714 53.714-118.857 118.857-118.857 14.857 0 27.429-12.571 27.429-27.429zM746.857 220c0 1.143 0 4-0.571 5.143-120.571 215.429-240 432-360.571 647.429l-28 50.857c-3.429 5.714-9.714 9.143-16 9.143-10.286 0-64.571-33.143-76.571-40-5.714-3.429-9.143-9.143-9.143-16 0-9.143 19.429-40 25.143-49.714-110.857-50.286-204-136-269.714-238.857-7.429-11.429-11.429-25.143-11.429-39.429 0-13.714 4-28 11.429-39.429 113.143-173.714 289.714-289.714 500.571-289.714 34.286 0 69.143 3.429 102.857 9.714l30.857-55.429c3.429-5.714 9.143-9.143 16-9.143 10.286 0 64 33.143 76 40 5.714 3.429 9.143 9.143 9.143 15.429zM768 475.429c0 106.286-65.714 201.143-164.571 238.857l160-286.857c2.857 16 4.571 32 4.571 48zM1024 548.571c0 14.857-4 26.857-11.429 39.429-17.714 29.143-40 57.143-62.286 82.857-112 128.571-266.286 206.857-438.286 206.857l42.286-75.429c166.286-14.286 307.429-115.429 396.571-253.714-42.286-65.714-96.571-123.429-161.143-168l36-64c70.857 47.429 142.286 118.857 186.857 192.571 7.429 12.571 11.429 24.571 11.429 39.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eye-slash"
+ ],
+ "defaultCode": 61552,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "eye-slash",
+ "id": 106,
+ "order": 962,
+ "prevSize": 28,
+ "code": 61552
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 106
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 785.714v-108.571c0-10.286-8-18.857-18.286-18.857h-109.714c-10.286 0-18.286 8.571-18.286 18.857v108.571c0 10.286 8 18.857 18.286 18.857h109.714c10.286 0 18.286-8.571 18.286-18.857zM584 572l10.286-262.286c0-3.429-1.714-8-5.714-10.857-3.429-2.857-8.571-6.286-13.714-6.286h-125.714c-5.143 0-10.286 3.429-13.714 6.286-4 2.857-5.714 8.571-5.714 12l9.714 261.143c0 7.429 8.571 13.143 19.429 13.143h105.714c10.286 0 18.857-5.714 19.429-13.143zM576 38.286l438.857 804.571c12.571 22.286 12 49.714-1.143 72s-37.143 36-62.857 36h-877.714c-25.714 0-49.714-13.714-62.857-36s-13.714-49.714-1.143-72l438.857-804.571c12.571-23.429 37.143-38.286 64-38.286s51.429 14.857 64 38.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exclamation-triangle",
+ "warning"
+ ],
+ "defaultCode": 61553,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "exclamation-triangle, warning",
+ "id": 107,
+ "order": 963,
+ "prevSize": 28,
+ "code": 61553
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 107
+ },
+ {
+ "icon": {
+ "paths": [
+ "M786.286 91.429c36.571 36.571 0 128-54.857 182.857l-92 92 91.429 397.714c1.714 6.857-1.143 14.286-6.857 18.857l-73.143 54.857c-2.857 2.286-6.857 3.429-10.857 3.429-1.143 0-2.286 0-4-0.571-5.143-1.143-9.714-4-12-9.143l-159.429-290.286-148 148 30.286 110.857c1.714 6.286 0 12.571-4.571 17.714l-54.857 54.857c-3.429 3.429-8.571 5.143-13.143 5.143h-1.143c-5.714-0.571-10.286-2.857-13.714-7.429l-108-144-144-108c-4.571-2.857-6.857-8-7.429-13.143s1.714-10.286 5.143-14.286l54.857-55.429c3.429-3.429 8.571-5.143 13.143-5.143 1.714 0 3.429 0 4.571 0.571l110.857 30.286 148-148-290.286-159.429c-5.143-2.857-8.571-8-9.714-13.714-0.571-5.143 1.143-11.429 5.143-15.429l73.143-73.143c4.571-4 11.429-6.286 17.143-4.571l380 90.857 91.429-91.429c54.857-54.857 146.286-91.429 182.857-54.857z"
+ ],
+ "width": 822.272,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plane"
+ ],
+ "defaultCode": 61554,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "plane",
+ "id": 108,
+ "order": 964,
+ "prevSize": 28,
+ "code": 61554
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 108
+ },
+ {
+ "icon": {
+ "paths": [
+ "M73.143 950.857h164.571v-164.571h-164.571v164.571zM274.286 950.857h182.857v-164.571h-182.857v164.571zM73.143 749.714h164.571v-182.857h-164.571v182.857zM274.286 749.714h182.857v-182.857h-182.857v182.857zM73.143 530.286h164.571v-164.571h-164.571v164.571zM493.714 950.857h182.857v-164.571h-182.857v164.571zM274.286 530.286h182.857v-164.571h-182.857v164.571zM713.143 950.857h164.571v-164.571h-164.571v164.571zM493.714 749.714h182.857v-182.857h-182.857v182.857zM292.571 256v-164.571c0-9.714-8.571-18.286-18.286-18.286h-36.571c-9.714 0-18.286 8.571-18.286 18.286v164.571c0 9.714 8.571 18.286 18.286 18.286h36.571c9.714 0 18.286-8.571 18.286-18.286zM713.143 749.714h164.571v-182.857h-164.571v182.857zM493.714 530.286h182.857v-164.571h-182.857v164.571zM713.143 530.286h164.571v-164.571h-164.571v164.571zM731.429 256v-164.571c0-9.714-8.571-18.286-18.286-18.286h-36.571c-9.714 0-18.286 8.571-18.286 18.286v164.571c0 9.714 8.571 18.286 18.286 18.286h36.571c9.714 0 18.286-8.571 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar"
+ ],
+ "defaultCode": 61555,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "calendar",
+ "id": 109,
+ "order": 965,
+ "prevSize": 28,
+ "code": 61555
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 109
+ },
+ {
+ "icon": {
+ "paths": [
+ "M380.571 274.857c-32 49.143-55.429 102.286-78.286 156-33.143-69.143-69.714-138.286-156-138.286h-128c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h128c101.714 0 176.571 47.429 234.286 128.571zM1024 731.429c0 4.571-1.714 9.714-5.143 13.143l-182.857 182.857c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8.571-18.286-18.286v-109.714c-169.714 0-274.286 20-380-128.571 31.429-49.143 54.857-102.286 77.714-156 33.143 69.143 69.714 138.286 156 138.286h146.286v-109.714c0-10.286 8-18.286 18.286-18.286 5.143 0 9.714 2.286 13.714 5.714l182.286 182.286c3.429 3.429 5.143 8.571 5.143 13.143zM1024 219.429c0 4.571-1.714 9.714-5.143 13.143l-182.857 182.857c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8-18.286-18.286v-109.714h-146.286c-76 0-112 52-144 113.714-16.571 32-30.857 65.143-44.571 97.714-63.429 147.429-137.714 300.571-323.429 300.571h-128c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h128c76 0 112-52 144-113.714 16.571-32 30.857-65.143 44.571-97.714 63.429-147.429 137.714-300.571 323.429-300.571h146.286v-109.714c0-10.286 8-18.286 18.286-18.286 5.143 0 9.714 2.286 13.714 5.714l182.286 182.286c3.429 3.429 5.143 8.571 5.143 13.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "random"
+ ],
+ "defaultCode": 61556,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "random",
+ "id": 110,
+ "order": 966,
+ "prevSize": 28,
+ "code": 61556
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 110
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 512c0 202.286-229.143 365.714-512 365.714-28 0-56-1.714-82.857-4.571-74.857 66.286-164 113.143-262.857 138.286-20.571 5.714-42.857 9.714-65.143 12.571-12.571 1.143-24.571-8-27.429-21.714v-0.571c-2.857-14.286 6.857-22.857 15.429-33.143 36-40.571 77.143-74.857 104-170.286-117.714-66.857-193.143-170.286-193.143-286.286 0-201.714 229.143-365.714 512-365.714s512 163.429 512 365.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "comment"
+ ],
+ "defaultCode": 61557,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "comment",
+ "id": 111,
+ "order": 967,
+ "prevSize": 28,
+ "code": 61557
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 111
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 475.429v73.143c0 233.143-184.571 402.286-438.857 402.286s-438.857-169.143-438.857-402.286v-73.143c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571v73.143c0 104.571 121.714 109.714 146.286 109.714s146.286-5.143 146.286-109.714v-73.143c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571zM292.571 109.714v219.429c0 20-16.571 36.571-36.571 36.571h-219.429c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571zM877.714 109.714v219.429c0 20-16.571 36.571-36.571 36.571h-219.429c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "magnet"
+ ],
+ "defaultCode": 61558,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "magnet",
+ "id": 112,
+ "order": 968,
+ "prevSize": 28,
+ "code": 61558
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 112
+ },
+ {
+ "icon": {
+ "paths": [
+ "M961.714 760.571l-94.857 94.286c-14.286 14.286-37.143 14.286-51.429 0l-303.429-303.429-303.429 303.429c-14.286 14.286-37.143 14.286-51.429 0l-94.857-94.286c-14.286-14.286-14.286-37.714 0-52l424-423.429c14.286-14.286 37.143-14.286 51.429 0l424 423.429c14.286 14.286 14.286 37.714 0 52z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-up"
+ ],
+ "defaultCode": 61559,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "chevron-up",
+ "id": 113,
+ "order": 969,
+ "prevSize": 28,
+ "code": 61559
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 113
+ },
+ {
+ "icon": {
+ "paths": [
+ "M961.714 461.714l-424 423.429c-14.286 14.286-37.143 14.286-51.429 0l-424-423.429c-14.286-14.286-14.286-37.714 0-52l94.857-94.286c14.286-14.286 37.143-14.286 51.429 0l303.429 303.429 303.429-303.429c14.286-14.286 37.143-14.286 51.429 0l94.857 94.286c14.286 14.286 14.286 37.714 0 52z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-down"
+ ],
+ "defaultCode": 61560,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "chevron-down",
+ "id": 114,
+ "order": 970,
+ "prevSize": 28,
+ "code": 61560
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 114
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 859.429c0 9.714-8.571 18.286-18.286 18.286h-548.571c-21.143 0-18.286-22.286-18.286-36.571v-329.143h-109.714c-20 0-36.571-16.571-36.571-36.571 0-8.571 2.857-17.143 8.571-23.429l182.857-219.429c6.857-8 17.143-12.571 28-12.571s21.143 4.571 28 12.571l182.857 219.429c5.714 6.286 8.571 14.857 8.571 23.429 0 20-16.571 36.571-36.571 36.571h-109.714v219.429h329.143c5.143 0 10.857 2.286 14.286 6.286l91.429 109.714c2.286 3.429 4 8 4 12zM1097.143 621.714c0 8.571-2.857 17.143-8.571 23.429l-182.857 219.429c-6.857 8-17.143 13.143-28 13.143s-21.143-5.143-28-13.143l-182.857-219.429c-5.714-6.286-8.571-14.857-8.571-23.429 0-20 16.571-36.571 36.571-36.571h109.714v-219.429h-329.143c-5.143 0-10.857-2.286-14.286-6.857l-91.429-109.714c-2.286-2.857-4-7.429-4-11.429 0-9.714 8.571-18.286 18.286-18.286h548.571c21.143 0 18.286 22.286 18.286 36.571v329.143h109.714c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "retweet"
+ ],
+ "defaultCode": 61561,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "retweet",
+ "id": 115,
+ "order": 971,
+ "prevSize": 28,
+ "code": 61561
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 115
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 877.714c0 40-33.143 73.143-73.143 73.143s-73.143-33.143-73.143-73.143 33.143-73.143 73.143-73.143 73.143 33.143 73.143 73.143zM877.714 877.714c0 40-33.143 73.143-73.143 73.143s-73.143-33.143-73.143-73.143 33.143-73.143 73.143-73.143 73.143 33.143 73.143 73.143zM950.857 256v292.571c0 18.286-14.286 34.286-32.571 36.571l-596.571 69.714c2.857 13.143 7.429 26.286 7.429 40 0 13.143-8 25.143-13.714 36.571h525.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-585.143c-20 0-36.571-16.571-36.571-36.571 0-17.714 25.714-60.571 34.857-78.286l-101.143-470.286h-116.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286c38.286 0 39.429 45.714 45.143 73.143h686.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shopping-cart"
+ ],
+ "defaultCode": 61562,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "shopping-cart",
+ "id": 116,
+ "order": 972,
+ "prevSize": 28,
+ "code": 61562
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 116
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 347.429v402.286c0 70.286-57.714 128-128 128h-694.857c-70.286 0-128-57.714-128-128v-548.571c0-70.286 57.714-128 128-128h182.857c70.286 0 128 57.714 128 128v18.286h384c70.286 0 128 57.714 128 128z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder"
+ ],
+ "defaultCode": 61563,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "folder",
+ "id": 117,
+ "order": 973,
+ "prevSize": 28,
+ "code": 61563
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 117
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1073.714 544c0 13.714-8.571 27.429-17.714 37.714l-192 226.286c-33.143 38.857-100.571 69.714-150.857 69.714h-621.714c-20.571 0-49.714-6.286-49.714-32 0-13.714 8.571-27.429 17.714-37.714l192-226.286c33.143-38.857 100.571-69.714 150.857-69.714h621.714c20.571 0 49.714 6.286 49.714 32zM877.714 347.429v91.429h-475.429c-71.429 0-160 40.571-206.286 95.429l-195.429 229.714c0-4.571-0.571-9.714-0.571-14.286v-548.571c0-70.286 57.714-128 128-128h182.857c70.286 0 128 57.714 128 128v18.286h310.857c70.286 0 128 57.714 128 128z"
+ ],
+ "width": 1073.7371428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-open"
+ ],
+ "defaultCode": 61564,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "folder-open",
+ "id": 118,
+ "order": 974,
+ "prevSize": 28,
+ "code": 61564
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 118
+ },
+ {
+ "icon": {
+ "paths": [
+ "M402.286 182.857c0 20-16.571 36.571-36.571 36.571h-73.143v585.143h73.143c20 0 36.571 16.571 36.571 36.571 0 9.714-4 18.857-10.857 25.714l-146.286 146.286c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h73.143v-585.143h-73.143c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l146.286-146.286c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l146.286 146.286c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 438.85714285714283,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrows-v"
+ ],
+ "defaultCode": 61565,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrows-v",
+ "id": 119,
+ "order": 975,
+ "prevSize": 28,
+ "code": 61565
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 119
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 512c0 9.714-4 18.857-10.857 25.714l-146.286 146.286c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-73.143h-585.143v73.143c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l146.286-146.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571v73.143h585.143v-73.143c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l146.286 146.286c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrows-h"
+ ],
+ "defaultCode": 61566,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrows-h",
+ "id": 120,
+ "order": 976,
+ "prevSize": 28,
+ "code": 61566
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 120
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 512v292.571h-146.286v-292.571h146.286zM585.143 219.429v585.143h-146.286v-585.143h146.286zM1170.286 877.714v73.143h-1170.286v-877.714h73.143v804.571h1097.143zM804.571 365.714v438.857h-146.286v-438.857h146.286zM1024 146.286v658.286h-146.286v-658.286h146.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bar-chart",
+ "bar-chart-o"
+ ],
+ "defaultCode": 61568,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bar-chart, bar-chart-o",
+ "id": 121,
+ "order": 977,
+ "prevSize": 28,
+ "code": 61568
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 121
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 348.571c-21.714 9.714-44.571 16-69.143 19.429 25.143-14.857 44-38.857 53.143-66.857-23.429 13.714-49.143 24-76.571 29.143-21.714-23.429-53.143-37.714-87.429-37.714-66.286 0-120 53.714-120 120 0 9.143 0.571 18.857 2.857 27.429-100-5.143-188.571-52.571-248-125.714-10.286 17.714-16.571 38.857-16.571 60.571 0 41.714 19.429 78.286 52 100-20-0.571-38.857-6.286-57.143-14.857v1.143c0 58.286 44 106.857 98.857 117.714-10.286 2.857-18.286 4.571-29.143 4.571-7.429 0-14.857-1.143-22.286-2.286 15.429 47.429 59.429 82.286 112 83.429-41.143 32-92.571 51.429-149.143 51.429-9.714 0-19.429-0.571-28.571-1.714 53.143 33.714 116 53.714 184 53.714 220.571 0 341.714-182.857 341.714-341.714 0-5.143 0-10.286-0.571-15.429 23.429-16.571 44-37.714 60-62.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "twitter-square"
+ ],
+ "defaultCode": 61569,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "twitter-square",
+ "id": 122,
+ "order": 978,
+ "prevSize": 28,
+ "code": 61569
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 122
+ },
+ {
+ "icon": {
+ "paths": [
+ "M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-107.429v-340h113.714l17.143-132.571h-130.857v-84.571c0-38.286 10.286-64 65.714-64l69.714-0.571v-118.286c-12-1.714-53.714-5.143-101.714-5.143-101.143 0-170.857 61.714-170.857 174.857v97.714h-114.286v132.571h114.286v340h-304c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "facebook-square"
+ ],
+ "defaultCode": 61570,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "facebook-square",
+ "id": 123,
+ "order": 979,
+ "prevSize": 28,
+ "code": 61570
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 123
+ },
+ {
+ "icon": {
+ "paths": [
+ "M530.286 475.429c0-10.286-8-18.286-18.286-18.286-50.286 0-91.429 41.143-91.429 91.429 0 10.286 8 18.286 18.286 18.286s18.286-8 18.286-18.286c0-30.286 24.571-54.857 54.857-54.857 10.286 0 18.286-8 18.286-18.286zM658.286 549.714c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286zM73.143 877.714h877.714v-73.143h-877.714v73.143zM731.429 549.714c0-121.143-98.286-219.429-219.429-219.429s-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429zM146.286 182.857h219.429v-73.143h-219.429v73.143zM73.143 292.571h877.714v-146.286h-473.143l-36.571 73.143h-368v73.143zM1024 146.286v731.429c0 40.571-32.571 73.143-73.143 73.143h-877.714c-40.571 0-73.143-32.571-73.143-73.143v-731.429c0-40.571 32.571-73.143 73.143-73.143h877.714c40.571 0 73.143 32.571 73.143 73.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera-retro"
+ ],
+ "defaultCode": 61571,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "camera-retro",
+ "id": 124,
+ "order": 980,
+ "prevSize": 28,
+ "code": 61571
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 124
+ },
+ {
+ "icon": {
+ "paths": [
+ "M475.429 292.571c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714c0 16.571 4 32.571 10.857 47.429-14.857-6.857-30.857-10.857-47.429-10.857-60.571 0-109.714 49.143-109.714 109.714s49.143 109.714 109.714 109.714 109.714-49.143 109.714-109.714c0-16.571-4-32.571-10.857-47.429 14.857 6.857 30.857 10.857 47.429 10.857 60.571 0 109.714-49.143 109.714-109.714zM961.714 694.857c0 13.143-52.571 65.714-65.714 65.714-14.857 0-61.143-53.714-73.143-65.714l-54.857 54.857 125.714 125.714c10.286 10.286 16 24.571 16 38.857 0 32-36.571 68.571-68.571 68.571-14.286 0-28.571-5.714-38.857-16l-383.429-383.429c-60 44.571-133.143 74.857-208.571 74.857-124.571 0-210.286-86.286-210.286-210.286 0-187.429 187.429-374.857 374.857-374.857 124 0 210.286 85.714 210.286 210.286 0 75.429-30.286 148.571-74.857 208.571l202.857 202.857 54.857-54.857c-12-12-65.714-58.286-65.714-73.143 0-13.143 52.571-65.714 65.714-65.714 4.571 0 9.714 2.286 13.143 5.714 21.143 21.143 180.571 171.429 180.571 188z"
+ ],
+ "width": 961.6822857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "key"
+ ],
+ "defaultCode": 61572,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "key",
+ "id": 125,
+ "order": 981,
+ "prevSize": 28,
+ "code": 61572
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 125
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 512c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM950.857 804.571c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143c0 40.571 33.143 73.143 73.143 73.143 40.571 0 73.143-33.143 73.143-73.143zM950.857 219.429c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143c0 40.571 33.143 73.143 73.143 73.143 40.571 0 73.143-33.143 73.143-73.143zM731.429 460v105.714c0 7.429-5.714 16-13.143 17.143l-88.571 13.714c-4.571 14.857-10.857 29.143-18.286 43.429 16 22.857 33.143 44 51.429 65.714 2.286 3.429 4 6.857 4 11.429 0 4-1.143 8-4 10.857-11.429 15.429-75.429 85.143-92 85.143-4.571 0-8.571-1.714-12-4l-65.714-51.429c-14.286 7.429-28.571 13.143-44 17.714-2.857 29.143-5.714 60.571-13.143 88.571-2.286 8-9.143 13.714-17.143 13.714h-106.286c-8 0-16-6.286-17.143-14.286l-13.143-87.429c-14.857-4.571-29.143-10.857-42.857-17.714l-67.429 50.857c-2.857 2.857-7.429 4-11.429 4-4.571 0-8.571-1.714-12-4.571-14.857-13.714-82.286-74.857-82.286-91.429 0-4 1.714-7.429 4-10.857 16.571-21.714 33.714-42.857 50.286-65.143-8-15.429-14.857-30.857-20-46.857l-86.857-13.714c-8-1.143-13.714-8.571-13.714-16.571v-105.714c0-7.429 5.714-16 13.143-17.143l88.571-13.714c4.571-14.857 10.857-29.143 18.286-43.429-16-22.857-33.143-44-51.429-65.714-2.286-3.429-4-7.429-4-11.429s1.143-8 4-11.429c11.429-15.429 75.429-84.571 92-84.571 4.571 0 8.571 1.714 12 4l65.714 51.429c14.286-7.429 28.571-13.143 44-18.286 2.857-28.571 5.714-60 13.143-88 2.286-8 9.143-13.714 17.143-13.714h106.286c8 0 16 6.286 17.143 14.286l13.143 87.429c14.857 4.571 29.143 10.857 42.857 17.714l67.429-50.857c3.429-2.857 7.429-4 11.429-4 4.571 0 8.571 1.714 12 4.571 14.857 13.714 82.286 75.429 82.286 91.429 0 4-1.714 7.429-4 10.857-16.571 22.286-33.714 42.857-49.714 65.143 7.429 15.429 14.286 30.857 19.429 46.857l86.857 13.143c8 1.714 13.714 9.143 13.714 17.143zM1097.143 764.571v80c0 8.571-73.714 16.571-85.143 17.714-4.571 10.857-10.286 20.571-17.143 29.714 5.143 11.429 29.143 68.571 29.143 78.857 0 1.714-0.571 2.857-2.286 4-6.857 4-68 40.571-70.857 40.571-7.429 0-50.286-57.143-56-65.714-5.714 0.571-11.429 1.143-17.143 1.143s-11.429-0.571-17.143-1.143c-5.714 8.571-48.571 65.714-56 65.714-2.857 0-64-36.571-70.857-40.571-1.714-1.143-2.286-2.857-2.286-4 0-9.714 24-67.429 29.143-78.857-6.857-9.143-12.571-18.857-17.143-29.714-11.429-1.143-85.143-9.143-85.143-17.714v-80c0-8.571 73.714-16.571 85.143-17.714 4.571-10.286 10.286-20.571 17.143-29.714-5.143-11.429-29.143-69.143-29.143-78.857 0-1.143 0.571-2.857 2.286-4 6.857-3.429 68-40 70.857-40 7.429 0 50.286 56.571 56 65.143 5.714-0.571 11.429-1.143 17.143-1.143s11.429 0.571 17.143 1.143c16-22.286 33.143-44.571 52.571-64l3.429-1.143c2.857 0 64 36 70.857 40 1.714 1.143 2.286 2.857 2.286 4 0 10.286-24 67.429-29.143 78.857 6.857 9.143 12.571 19.429 17.143 29.714 11.429 1.143 85.143 9.143 85.143 17.714zM1097.143 179.429v80c0 8.571-73.714 16.571-85.143 17.714-4.571 10.857-10.286 20.571-17.143 29.714 5.143 11.429 29.143 68.571 29.143 78.857 0 1.714-0.571 2.857-2.286 4-6.857 4-68 40.571-70.857 40.571-7.429 0-50.286-57.143-56-65.714-5.714 0.571-11.429 1.143-17.143 1.143s-11.429-0.571-17.143-1.143c-5.714 8.571-48.571 65.714-56 65.714-2.857 0-64-36.571-70.857-40.571-1.714-1.143-2.286-2.857-2.286-4 0-9.714 24-67.429 29.143-78.857-6.857-9.143-12.571-18.857-17.143-29.714-11.429-1.143-85.143-9.143-85.143-17.714v-80c0-8.571 73.714-16.571 85.143-17.714 4.571-10.286 10.286-20.571 17.143-29.714-5.143-11.429-29.143-69.143-29.143-78.857 0-1.143 0.571-2.857 2.286-4 6.857-3.429 68-40 70.857-40 7.429 0 50.286 56.571 56 65.143 5.714-0.571 11.429-1.143 17.143-1.143s11.429 0.571 17.143 1.143c16-22.286 33.143-44.571 52.571-64l3.429-1.143c2.857 0 64 36 70.857 40 1.714 1.143 2.286 2.857 2.286 4 0 10.286-24 67.429-29.143 78.857 6.857 9.143 12.571 19.429 17.143 29.714 11.429 1.143 85.143 9.143 85.143 17.714z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cogs",
+ "gears"
+ ],
+ "defaultCode": 61573,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cogs, gears",
+ "id": 126,
+ "order": 982,
+ "prevSize": 28,
+ "code": 61573
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 126
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 438.857c0 161.714-180 292.571-402.286 292.571-34.857 0-68.571-3.429-100.571-9.143-47.429 33.714-101.143 58.286-158.857 73.143-15.429 4-32 6.857-49.143 9.143h-1.714c-8.571 0-16.571-6.857-18.286-16.571v0c-2.286-10.857 5.143-17.714 11.429-25.143 22.286-25.143 47.429-47.429 66.857-94.857-92.571-53.714-152-136.571-152-229.143 0-161.714 180-292.571 402.286-292.571s402.286 130.857 402.286 292.571zM1024 585.143c0 93.143-59.429 175.429-152 229.143 19.429 47.429 44.571 69.714 66.857 94.857 6.286 7.429 13.714 14.286 11.429 25.143v0c-2.286 10.286-10.857 17.714-20 16.571-17.143-2.286-33.714-5.143-49.143-9.143-57.714-14.857-111.429-39.429-158.857-73.143-32 5.714-65.714 9.143-100.571 9.143-103.429 0-198.286-28.571-269.714-75.429 16.571 1.143 33.714 2.286 50.286 2.286 122.857 0 238.857-35.429 327.429-99.429 95.429-69.714 148-164 148-266.286 0-29.714-4.571-58.857-13.143-86.857 96.571 53.143 159.429 137.714 159.429 233.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "comments"
+ ],
+ "defaultCode": 61574,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "comments",
+ "id": 127,
+ "order": 983,
+ "prevSize": 28,
+ "code": 61574
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 127
+ },
+ {
+ "icon": {
+ "paths": [
+ "M146.286 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 438.857c0-38.857-34.857-73.143-73.143-73.143h-201.143c0-66.857 54.857-115.429 54.857-182.857 0-66.857-13.143-109.714-91.429-109.714-36.571 37.143-17.714 124.571-73.143 182.857-16 16.571-29.714 34.286-44 52-25.714 33.143-93.714 130.857-138.857 130.857h-18.286v365.714h18.286c32 0 84.571 20.571 115.429 31.429 62.857 21.714 128 41.714 195.429 41.714h69.143c64.571 0 109.714-25.714 109.714-95.429 0-10.857-1.143-21.714-2.857-32 24-13.143 37.143-45.714 37.143-72 0-13.714-3.429-27.429-10.286-39.429 19.429-18.286 30.286-41.143 30.286-68 0-18.286-8-45.143-20-58.857 26.857-0.571 42.857-52 42.857-73.143zM877.714 438.286c0 33.143-9.714 65.714-28 93.143 3.429 12.571 5.143 26.286 5.143 39.429 0 28.571-7.429 57.143-21.714 82.286 1.143 8 1.714 16.571 1.714 24.571 0 36.571-12 73.143-34.286 101.714 1.143 108-72.571 171.429-178.286 171.429h-73.714c-81.143 0-156.571-24-232-50.286-16.571-5.714-62.857-22.857-78.857-22.857h-164.571c-40.571 0-73.143-32.571-73.143-73.143v-365.714c0-40.571 32.571-73.143 73.143-73.143h156.571c22.286-14.857 61.143-66.286 78.286-88.571 19.429-25.143 39.429-49.714 61.143-73.143 34.286-36.571 16-126.857 73.143-182.857 13.714-13.143 32-21.143 51.429-21.143 59.429 0 116.571 21.143 144.571 76.571 17.714 34.857 20 68 20 106.286 0 40-10.286 74.286-27.429 109.714h100.571c78.857 0 146.286 66.857 146.286 145.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumbs-o-up"
+ ],
+ "defaultCode": 61575,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "thumbs-o-up",
+ "id": 128,
+ "order": 984,
+ "prevSize": 28,
+ "code": 61575
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 128
+ },
+ {
+ "icon": {
+ "paths": [
+ "M146.286 256c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 585.143c0-21.143-16-72.571-42.857-73.143 12-13.714 20-40.571 20-58.857 0-26.857-10.857-49.714-30.286-68 6.857-12 10.286-25.714 10.286-39.429 0-26.286-13.143-58.857-37.143-72 1.714-10.286 2.857-21.143 2.857-32 0-66.857-42.286-95.429-105.714-95.429h-73.143c-67.429 0-132.571 20-195.429 41.714-30.857 10.857-83.429 31.429-115.429 31.429h-18.286v365.714h18.286c45.143 0 113.143 97.714 138.857 130.857 14.286 17.714 28 35.429 44 52 55.429 58.286 36.571 145.714 73.143 182.857 78.286 0 91.429-42.857 91.429-109.714 0-67.429-54.857-116-54.857-182.857h201.143c38.286 0 73.143-34.286 73.143-73.143zM877.714 585.714c0 78.857-67.429 145.714-146.286 145.714h-100.571c17.143 35.429 27.429 69.714 27.429 109.714 0 37.714-2.286 72-20 106.286-28 55.429-85.143 76.571-144.571 76.571-19.429 0-37.714-8-51.429-21.143-57.143-56-39.429-146.286-73.143-183.429-21.714-22.857-41.714-47.429-61.143-72.571-17.143-22.286-56-73.714-78.286-88.571h-156.571c-40.571 0-73.143-32.571-73.143-73.143v-365.714c0-40.571 32.571-73.143 73.143-73.143h164.571c16 0 62.286-17.143 78.857-22.857 82.286-28.571 153.714-50.286 241.714-50.286h64c104 0 178.857 61.714 178.286 168.571v2.857c22.286 28.571 34.286 65.143 34.286 101.714 0 8-0.571 16.571-1.714 24.571 14.286 25.143 21.714 53.714 21.714 82.286 0 13.143-1.714 26.857-5.143 39.429 18.286 27.429 28 60 28 93.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumbs-o-down"
+ ],
+ "defaultCode": 61576,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "thumbs-o-down",
+ "id": 129,
+ "order": 985,
+ "prevSize": 28,
+ "code": 61576
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 129
+ },
+ {
+ "icon": {
+ "paths": [
+ "M475.429 18.286v765.143l-256.571 134.857c-7.429 4-14.857 6.857-22.857 6.857-16.571 0-24-13.714-24-28.571 0-4 0.571-7.429 1.143-11.429l49.143-285.714-208-202.286c-6.857-7.429-14.286-17.143-14.286-27.429 0-17.143 17.714-24 32-26.286l286.857-41.714 128.571-260c5.143-10.857 14.857-23.429 28-23.429v0z"
+ ],
+ "width": 475.4285714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star-half"
+ ],
+ "defaultCode": 61577,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "star-half",
+ "id": 130,
+ "order": 986,
+ "prevSize": 28,
+ "code": 61577
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 130
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 340.571c0-160.571-108.571-194.286-200-194.286-85.143 0-181.143 92-210.857 127.429-13.714 16.571-42.286 16.571-56 0-29.714-35.429-125.714-127.429-210.857-127.429-91.429 0-200 33.714-200 194.286 0 104.571 105.714 201.714 106.857 202.857l332 320 331.429-319.429c1.714-1.714 107.429-98.857 107.429-203.429zM1024 340.571c0 137.143-125.714 252-130.857 257.143l-356 342.857c-6.857 6.857-16 10.286-25.143 10.286s-18.286-3.429-25.143-10.286l-356.571-344c-4.571-4-130.286-118.857-130.286-256 0-167.429 102.286-267.429 273.143-267.429 100 0 193.714 78.857 238.857 123.429 45.143-44.571 138.857-123.429 238.857-123.429 170.857 0 273.143 100 273.143 267.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "heart-o"
+ ],
+ "defaultCode": 61578,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "heart-o",
+ "id": 131,
+ "order": 987,
+ "prevSize": 28,
+ "code": 61578
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 131
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 822.857c0 16 7.429 54.857-18.286 54.857h-182.857c-90.857 0-164.571-73.714-164.571-164.571v-402.286c0-90.857 73.714-164.571 164.571-164.571h182.857c9.714 0 18.286 8.571 18.286 18.286 0 16 7.429 54.857-18.286 54.857h-182.857c-50.286 0-91.429 41.143-91.429 91.429v402.286c0 50.286 41.143 91.429 91.429 91.429h164.571c14.286 0 36.571-2.857 36.571 18.286zM896 512c0 9.714-4 18.857-10.857 25.714l-310.857 310.857c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-164.571h-256c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h256v-164.571c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l310.857 310.857c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 896,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sign-out"
+ ],
+ "defaultCode": 61579,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sign-out",
+ "id": 132,
+ "order": 988,
+ "prevSize": 28,
+ "code": 61579
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 132
+ },
+ {
+ "icon": {
+ "paths": [
+ "M135.429 808h132v-396.571h-132v396.571zM276 289.143c-0.571-38.857-28.571-68.571-73.714-68.571s-74.857 29.714-74.857 68.571c0 37.714 28.571 68.571 73.143 68.571h0.571c46.286 0 74.857-30.857 74.857-68.571zM610.286 808h132v-227.429c0-121.714-65.143-178.286-152-178.286-70.857 0-102.286 39.429-119.429 66.857h1.143v-57.714h-132s1.714 37.143 0 396.571v0h132v-221.714c0-11.429 0.571-23.429 4-32 9.714-23.429 31.429-48 68-48 47.429 0 66.286 36 66.286 89.714v212zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "linkedin-square"
+ ],
+ "defaultCode": 61580,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "linkedin-square",
+ "id": 133,
+ "order": 989,
+ "prevSize": 28,
+ "code": 61580
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 133
+ },
+ {
+ "icon": {
+ "paths": [
+ "M274.286 493.714v-256c0-10.286-8-18.286-18.286-18.286s-18.286 8-18.286 18.286v256c0 10.286 8 18.286 18.286 18.286s18.286-8 18.286-18.286zM658.286 694.857c0 20-16.571 36.571-36.571 36.571h-245.143l-29.143 276c-1.143 9.143-8.571 16.571-17.714 16.571h-0.571c-9.143 0-16.571-6.286-18.286-15.429l-43.429-277.143h-230.857c-20 0-36.571-16.571-36.571-36.571 0-93.714 70.857-182.857 146.286-182.857v-292.571c-40 0-73.143-33.143-73.143-73.143s33.143-73.143 73.143-73.143h365.714c40 0 73.143 33.143 73.143 73.143s-33.143 73.143-73.143 73.143v292.571c75.429 0 146.286 89.143 146.286 182.857z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumb-tack"
+ ],
+ "defaultCode": 61581,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "thumb-tack",
+ "id": 134,
+ "order": 990,
+ "prevSize": 28,
+ "code": 61581
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 134
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 530.286v182.857c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h402.286c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429v-182.857c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM1024 36.571v292.571c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-100.571-100.571-372.571 372.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-65.143-65.143c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l372.571-372.571-100.571-100.571c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h292.571c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "external-link"
+ ],
+ "defaultCode": 61582,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "external-link",
+ "id": 135,
+ "order": 991,
+ "prevSize": 28,
+ "code": 61582
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 135
+ },
+ {
+ "icon": {
+ "paths": [
+ "M676.571 512c0 9.714-4 18.857-10.857 25.714l-310.857 310.857c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-164.571h-256c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h256v-164.571c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l310.857 310.857c6.857 6.857 10.857 16 10.857 25.714zM877.714 310.857v402.286c0 90.857-73.714 164.571-164.571 164.571h-182.857c-9.714 0-18.286-8.571-18.286-18.286 0-16-7.429-54.857 18.286-54.857h182.857c50.286 0 91.429-41.143 91.429-91.429v-402.286c0-50.286-41.143-91.429-91.429-91.429h-164.571c-14.286 0-36.571 2.857-36.571-18.286 0-16-7.429-54.857 18.286-54.857h182.857c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sign-in"
+ ],
+ "defaultCode": 61584,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sign-in",
+ "id": 136,
+ "order": 992,
+ "prevSize": 28,
+ "code": 61584
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 136
+ },
+ {
+ "icon": {
+ "paths": [
+ "M261.714 504.571c-24-52.571-42.286-122.286-42.286-212h-146.286v54.857c0 56 76 133.714 188.571 157.143zM877.714 347.429v-54.857h-146.286c0 89.714-18.286 159.429-42.286 212 112.571-23.429 188.571-101.143 188.571-157.143zM950.857 274.286v73.143c0 108.571-131.429 228.571-309.714 237.143-22.857 29.143-44 46.286-54.286 54.286-30.286 27.429-38.286 56-38.286 92.571s18.286 73.143 73.143 73.143 109.714 36.571 109.714 91.429v36.571c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-54.857 54.857-91.429 109.714-91.429s73.143-36.571 73.143-73.143-8-65.143-38.286-92.571c-10.286-8-31.429-25.143-54.286-54.286-178.286-8.571-309.714-128.571-309.714-237.143v-73.143c0-30.286 24.571-54.857 54.857-54.857h164.571v-54.857c0-50.286 41.143-91.429 91.429-91.429h329.143c50.286 0 91.429 41.143 91.429 91.429v54.857h164.571c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trophy"
+ ],
+ "defaultCode": 61585,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "trophy",
+ "id": 137,
+ "order": 993,
+ "prevSize": 28,
+ "code": 61585
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 137
+ },
+ {
+ "icon": {
+ "paths": [
+ "M296.571 685.714v0c1.143-1.714 0.571-5.143-1.714-7.429-2.857-2.286-6.286-2.857-8-1.143-1.143 1.714-0.571 5.143 1.714 7.429 2.857 2.286 6.286 2.857 8 1.143zM280.571 662.286c-1.714-2.286-4.571-3.429-6.857-2.286-1.714 1.143-1.714 4.571 0 6.857 2.286 2.857 5.143 4 6.857 2.857v0c1.714-1.143 1.714-4.571 0-7.429zM257.143 639.429v0c0.571-1.143-0.571-3.429-2.857-4.571-1.714-0.571-4-0.571-4.571 1.143-1.143 1.714 0 3.429 2.286 4.571 2.286 0.571 4.571 0.571 5.143-1.143zM269.143 652.571v0c1.143-1.143 1.143-4-1.143-5.714-1.714-2.286-4.571-2.857-5.714-1.714-1.714 1.714-1.143 4 0.571 6.286 1.714 1.714 4.571 2.857 6.286 1.143zM318.286 695.429v0c0.571-2.286-1.714-5.143-5.143-6.286s-6.286 0-7.429 2.286c-0.571 2.286 1.714 5.143 5.143 6.286s6.286 0 7.429-2.286zM342.286 697.143v0c0-2.286-2.857-4.571-6.857-4.571-3.429 0-5.714 2.286-5.714 4.571s2.857 4.571 6.286 4.571 6.286-2.286 6.286-4.571zM364.571 693.143v0c-0.571-2.286-4-3.429-7.429-2.857s-5.714 2.857-5.143 5.143 3.429 4 6.857 3.429 5.714-3.429 5.714-5.714zM731.429 512c0-161.714-130.857-292.571-292.571-292.571s-292.571 130.857-292.571 292.571c0 129.143 84 238.857 200 277.714 14.857 2.857 20-6.286 20-14.286 0-6.857 0-29.714-0.571-54.286 0 0-81.143 17.714-98.286-34.857 0 0-13.143-33.714-32.571-42.286 0 0-26.286-18.286 2.286-18.286 0 0 28.571 2.286 44.571 30.286 25.714 45.143 68.571 32 85.143 24.571 2.857-18.857 10.286-32 18.857-39.429-65.143-7.429-133.714-32.571-133.714-144.571 0-32 11.429-57.714 30.286-78.286-2.857-7.429-13.143-37.143 2.857-77.714 24.571-7.429 80.571 30.286 80.571 30.286 23.429-6.857 48-9.714 73.143-9.714s49.714 2.857 73.143 9.714c0 0 56-37.714 80.571-30.286 16 40.571 5.714 70.286 2.857 77.714 18.857 20.571 30.286 46.286 30.286 78.286 0 112.571-68.571 137.143-133.714 144.571 10.286 9.143 20 26.857 20 54.286 0 38.857-0.571 70.286-0.571 80 0 8 5.143 17.143 20 14.286 116-38.857 200-148.571 200-277.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "github-square"
+ ],
+ "defaultCode": 61586,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "github-square",
+ "id": 138,
+ "order": 994,
+ "prevSize": 28,
+ "code": 61586
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 138
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 841.143c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM877.714 841.143c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM950.857 713.143v182.857c0 30.286-24.571 54.857-54.857 54.857h-841.143c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h244c15.429 42.286 56 73.143 103.429 73.143h146.286c47.429 0 88-30.857 103.429-73.143h244c30.286 0 54.857 24.571 54.857 54.857zM765.143 342.857c-5.714 13.714-18.857 22.857-33.714 22.857h-146.286v256c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-256h-146.286c-14.857 0-28-9.143-33.714-22.857-5.714-13.143-2.857-29.143 8-39.429l256-256c6.857-7.429 16.571-10.857 25.714-10.857s18.857 3.429 25.714 10.857l256 256c10.857 10.286 13.714 26.286 8 39.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "upload"
+ ],
+ "defaultCode": 61587,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "upload",
+ "id": 139,
+ "order": 995,
+ "prevSize": 28,
+ "code": 61587
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 139
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804 472c0-26.857-5.143-97.143-14.286-120-10.857-27.429-17.143-42.857-17.143-73.714 0-26.286 5.714-52 5.714-77.714 0-10.857-0.571-22.286-5.714-31.429-2.286-0.571-5.143-0.571-7.429-0.571-22.286 0-44.571 5.143-66.857 5.143-68 0-132.571-27.429-200.571-27.429-53.143 0-104.571 20-153.714 39.429-38.857 15.429-81.714 33.714-115.429 58.857-115.429 87.429-155.429 247.429-155.429 385.143 0 46.286 14.286 91.429 14.286 137.714 0 26.286-12.571 50.286-12.571 75.429 0 16 9.143 29.143 26.286 29.143 28 0 54.857-12.571 83.429-12.571 65.143 0 128.571 17.714 193.714 17.714 50.857 0 114.857-4 162.286-20.571 150.286-53.143 263.429-226.857 263.429-384.571zM877.143 470.857c0 190.286-132 390.857-312.571 454.857-56.571 20-126.857 25.143-186.286 25.143-65.143 0-129.143-16.571-193.714-16.571-27.429 0-54.857 16.571-83.429 16.571-56.571 0-99.429-50.857-99.429-105.143 0-26.857 12.571-50.857 12.571-77.143 0-46.286-14.286-91.429-14.286-138.286 0-162.286 49.714-341.714 184.571-444 38.857-29.714 87.429-50.857 132.571-68.571 58.286-23.429 117.143-44.571 180.571-44.571 68 0 132.571 27.429 199.429 27.429 21.714 0 43.429-5.714 65.714-5.714 65.143 0 88.571 46.286 88.571 105.714 0 25.714-5.714 52-5.714 77.714 0 20.571 5.143 28.571 12 46.857 13.143 33.143 19.429 109.143 19.429 145.714z"
+ ],
+ "width": 877.1291428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lemon-o"
+ ],
+ "defaultCode": 61588,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "lemon-o",
+ "id": 140,
+ "order": 996,
+ "prevSize": 28,
+ "code": 61588
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 140
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 708.571c0 20.571-9.143 60.571-17.714 79.429-12 28-44 46.286-69.714 60.571-33.714 18.286-68 29.143-106.286 29.143-53.143 0-101.143-21.714-149.714-39.429-34.857-12.571-68.571-28-100-47.429-97.143-60-214.286-177.143-274.286-274.286-19.429-31.429-34.857-65.143-47.429-100-17.714-48.571-39.429-96.571-39.429-149.714 0-38.286 10.857-72.571 29.143-106.286 14.286-25.714 32.571-57.714 60.571-69.714 18.857-8.571 58.857-17.714 79.429-17.714 4 0 8 0 12 1.714 12 4 24.571 32 30.286 43.429 18.286 32.571 36 65.714 54.857 97.714 9.143 14.857 26.286 33.143 26.286 50.857 0 34.857-103.429 85.714-103.429 116.571 0 15.429 14.286 35.429 22.286 49.143 57.714 104 129.714 176 233.714 233.714 13.714 8 33.714 22.286 49.143 22.286 30.857 0 81.714-103.429 116.571-103.429 17.714 0 36 17.143 50.857 26.286 32 18.857 65.143 36.571 97.714 54.857 11.429 5.714 39.429 18.286 43.429 30.286 1.714 4 1.714 8 1.714 12z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone"
+ ],
+ "defaultCode": 61589,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "phone",
+ "id": 141,
+ "order": 997,
+ "prevSize": 28,
+ "code": 61589
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 141
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 146.286h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429v-475.429c0-50.286-41.143-91.429-91.429-91.429zM804.571 237.714v475.429c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "square-o"
+ ],
+ "defaultCode": 61590,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "square-o",
+ "id": 142,
+ "order": 998,
+ "prevSize": 28,
+ "code": 61590
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 142
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658.286 146.286h-585.143v709.714l292.571-280.571 50.857 48.571 241.714 232v-709.714zM665.143 73.143c8.571 0 17.143 1.714 25.143 5.143 25.143 9.714 41.143 33.143 41.143 58.857v736.571c0 25.714-16 49.143-41.143 58.857-8 3.429-16.571 4.571-25.143 4.571-17.714 0-34.286-6.286-47.429-18.286l-252-242.286-252 242.286c-13.143 12-29.714 18.857-47.429 18.857-8.571 0-17.143-1.714-25.143-5.143-25.143-9.714-41.143-33.143-41.143-58.857v-736.571c0-25.714 16-49.143 41.143-58.857 8-3.429 16.571-5.143 25.143-5.143h598.857z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bookmark-o"
+ ],
+ "defaultCode": 61591,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bookmark-o",
+ "id": 143,
+ "order": 999,
+ "prevSize": 28,
+ "code": 61591
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 143
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 681.714c0-2.857 0-6.286-1.143-9.143-3.429-10.286-86.857-52.571-102.857-61.714-10.857-6.286-24-18.857-37.143-18.857-25.143 0-62.286 74.857-84.571 74.857-11.429 0-25.714-10.286-36-16-75.429-42.286-127.429-94.286-169.714-169.714-5.714-10.286-16-24.571-16-36 0-22.286 74.857-59.429 74.857-84.571 0-13.143-12.571-26.286-18.857-37.143-9.143-16-51.429-99.429-61.714-102.857-2.857-1.143-6.286-1.143-9.143-1.143-14.857 0-44 6.857-57.714 12.571-37.714 17.143-65.143 89.143-65.143 128.571 0 38.286 15.429 73.143 28.571 108.571 45.714 125.143 181.714 261.143 306.857 306.857 35.429 13.143 70.286 28.571 108.571 28.571 39.429 0 111.429-27.429 128.571-65.143 5.714-13.714 12.571-42.857 12.571-57.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone-square"
+ ],
+ "defaultCode": 61592,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "phone-square",
+ "id": 144,
+ "order": 1000,
+ "prevSize": 28,
+ "code": 61592
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 144
+ },
+ {
+ "icon": {
+ "paths": [
+ "M925.714 233.143c-25.143 36.571-56.571 69.143-92.571 95.429 0.571 8 0.571 16 0.571 24 0 244-185.714 525.143-525.143 525.143-104.571 0-201.714-30.286-283.429-82.857 14.857 1.714 29.143 2.286 44.571 2.286 86.286 0 165.714-29.143 229.143-78.857-81.143-1.714-149.143-54.857-172.571-128 11.429 1.714 22.857 2.857 34.857 2.857 16.571 0 33.143-2.286 48.571-6.286-84.571-17.143-148-91.429-148-181.143v-2.286c24.571 13.714 53.143 22.286 83.429 23.429-49.714-33.143-82.286-89.714-82.286-153.714 0-34.286 9.143-65.714 25.143-93.143 90.857 112 227.429 185.143 380.571 193.143-2.857-13.714-4.571-28-4.571-42.286 0-101.714 82.286-184.571 184.571-184.571 53.143 0 101.143 22.286 134.857 58.286 41.714-8 81.714-23.429 117.143-44.571-13.714 42.857-42.857 78.857-81.143 101.714 37.143-4 73.143-14.286 106.286-28.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "twitter"
+ ],
+ "defaultCode": 61593,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "twitter",
+ "id": 145,
+ "order": 1001,
+ "prevSize": 28,
+ "code": 61593
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 145
+ },
+ {
+ "icon": {
+ "paths": [
+ "M548 6.857v150.857h-89.714c-70.286 0-83.429 33.714-83.429 82.286v108h167.429l-22.286 169.143h-145.143v433.714h-174.857v-433.714h-145.714v-169.143h145.714v-124.571c0-144.571 88.571-223.429 217.714-223.429 61.714 0 114.857 4.571 130.286 6.857z"
+ ],
+ "width": 602.2582857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "facebook",
+ "facebook-f"
+ ],
+ "defaultCode": 61594,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "facebook, facebook-f",
+ "id": 146,
+ "order": 1002,
+ "prevSize": 28,
+ "code": 61594
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 146
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857 0 193.714-125.714 358.286-300 416.571-22.286 4-30.286-9.714-30.286-21.143 0-14.286 0.571-61.714 0.571-120.571 0-41.143-13.714-67.429-29.714-81.143 97.714-10.857 200.571-48 200.571-216.571 0-48-17.143-86.857-45.143-117.714 4.571-11.429 19.429-56-4.571-116.571-36.571-11.429-120.571 45.143-120.571 45.143-34.857-9.714-72.571-14.857-109.714-14.857s-74.857 5.143-109.714 14.857c0 0-84-56.571-120.571-45.143-24 60.571-9.143 105.143-4.571 116.571-28 30.857-45.143 69.714-45.143 117.714 0 168 102.286 205.714 200 216.571-12.571 11.429-24 30.857-28 58.857-25.143 11.429-89.143 30.857-127.429-36.571-24-41.714-67.429-45.143-67.429-45.143-42.857-0.571-2.857 26.857-2.857 26.857 28.571 13.143 48.571 64 48.571 64 25.714 78.286 148 52 148 52 0 36.571 0.571 70.857 0.571 81.714 0 11.429-8 25.143-30.286 21.143-174.286-58.286-300-222.857-300-416.571 0-242.286 196.571-438.857 438.857-438.857zM166.286 703.429c1.143-2.286-0.571-5.143-4-6.857-3.429-1.143-6.286-0.571-7.429 1.143-1.143 2.286 0.571 5.143 4 6.857 2.857 1.714 6.286 1.143 7.429-1.143zM184 722.857c2.286-1.714 1.714-5.714-1.143-9.143-2.857-2.857-6.857-4-9.143-1.714-2.286 1.714-1.714 5.714 1.143 9.143 2.857 2.857 6.857 4 9.143 1.714zM201.143 748.571c2.857-2.286 2.857-6.857 0-10.857-2.286-4-6.857-5.714-9.714-3.429-2.857 1.714-2.857 6.286 0 10.286s7.429 5.714 9.714 4zM225.143 772.571c2.286-2.286 1.143-7.429-2.286-10.857-4-4-9.143-4.571-11.429-1.714-2.857 2.286-1.714 7.429 2.286 10.857 4 4 9.143 4.571 11.429 1.714zM257.714 786.857c1.143-3.429-2.286-7.429-7.429-9.143-4.571-1.143-9.714 0.571-10.857 4s2.286 7.429 7.429 8.571c4.571 1.714 9.714 0 10.857-3.429zM293.714 789.714c0-4-4.571-6.857-9.714-6.286-5.143 0-9.143 2.857-9.143 6.286 0 4 4 6.857 9.714 6.286 5.143 0 9.143-2.857 9.143-6.286zM326.857 784c-0.571-3.429-5.143-5.714-10.286-5.143-5.143 1.143-8.571 4.571-8 8.571 0.571 3.429 5.143 5.714 10.286 4.571s8.571-4.571 8-8z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "github"
+ ],
+ "defaultCode": 61595,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "github",
+ "id": 147,
+ "order": 1003,
+ "prevSize": 28,
+ "code": 61595
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 147
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 329.143v146.286c0 20-16.571 36.571-36.571 36.571h-36.571c-20 0-36.571-16.571-36.571-36.571v-146.286c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286v109.714h54.857c30.286 0 54.857 24.571 54.857 54.857v329.143c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-329.143c0-30.286 24.571-54.857 54.857-54.857h384v-109.714c0-141.143 114.857-256 256-256s256 114.857 256 256z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unlock"
+ ],
+ "defaultCode": 61596,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "unlock",
+ "id": 148,
+ "order": 1004,
+ "prevSize": 28,
+ "code": 61596
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 148
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1005.714 73.143c50.286 0 91.429 41.143 91.429 91.429v694.857c0 50.286-41.143 91.429-91.429 91.429h-914.286c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h914.286zM91.429 146.286c-9.714 0-18.286 8.571-18.286 18.286v128h950.857v-128c0-9.714-8.571-18.286-18.286-18.286h-914.286zM1005.714 877.714c9.714 0 18.286-8.571 18.286-18.286v-347.429h-950.857v347.429c0 9.714 8.571 18.286 18.286 18.286h914.286zM146.286 804.571v-73.143h146.286v73.143h-146.286zM365.714 804.571v-73.143h219.429v73.143h-219.429z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "credit-card"
+ ],
+ "defaultCode": 61597,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "credit-card",
+ "id": 149,
+ "order": 1005,
+ "prevSize": 28,
+ "code": 61597
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 149
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM512 838.286c0.571 10.286-2.857 20-9.714 27.429-6.857 8-16.571 12-26.857 12h-77.143c-18.857 0-34.286-14.286-36-33.143-16.571-174.286-154.857-312.571-329.143-329.143-18.857-1.714-33.143-17.143-33.143-36v-77.143c0-10.286 4-20 12-26.857 6.286-6.286 15.429-9.714 24.571-9.714h2.857c121.714 9.714 236.571 62.857 322.857 149.714 86.857 86.286 140 201.143 149.714 322.857zM804.571 839.429c0.571 9.714-2.857 19.429-10.286 26.857-6.857 7.429-16 11.429-26.286 11.429h-81.714c-19.429 0-35.429-14.857-36.571-34.286-18.857-332-283.429-596.571-615.429-616-19.429-1.143-34.286-17.143-34.286-36v-81.714c0-10.286 4-19.429 11.429-26.286 6.857-6.857 16-10.286 25.143-10.286h1.714c200 10.286 388 94.286 529.714 236.571 142.286 141.714 226.286 329.714 236.571 529.714z"
+ ],
+ "width": 805.1565714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "feed",
+ "rss"
+ ],
+ "defaultCode": 61598,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "feed, rss",
+ "id": 150,
+ "order": 1006,
+ "prevSize": 28,
+ "code": 61598
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 150
+ },
+ {
+ "icon": {
+ "paths": [
+ "M594.286 694.857c0 25.143-20.571 45.714-45.714 45.714s-45.714-20.571-45.714-45.714 20.571-45.714 45.714-45.714 45.714 20.571 45.714 45.714zM740.571 694.857c0 25.143-20.571 45.714-45.714 45.714s-45.714-20.571-45.714-45.714 20.571-45.714 45.714-45.714 45.714 20.571 45.714 45.714zM804.571 786.286v-182.857c0-9.714-8.571-18.286-18.286-18.286h-694.857c-9.714 0-18.286 8.571-18.286 18.286v182.857c0 9.714 8.571 18.286 18.286 18.286h694.857c9.714 0 18.286-8.571 18.286-18.286zM101.714 512h674.286l-89.714-275.429c-2.857-9.714-13.714-17.143-24-17.143h-446.857c-10.286 0-21.143 7.429-24 17.143zM877.714 603.429v182.857c0 50.286-41.143 91.429-91.429 91.429h-694.857c-50.286 0-91.429-41.143-91.429-91.429v-182.857c0-15.429 4.571-28.571 9.143-42.857l112.571-346.286c13.143-40 51.429-68 93.714-68h446.857c42.286 0 80.571 28 93.714 68l112.571 346.286c4.571 14.286 9.143 27.429 9.143 42.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hdd-o"
+ ],
+ "defaultCode": 61600,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hdd-o",
+ "id": 151,
+ "order": 1007,
+ "prevSize": 28,
+ "code": 61600
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 151
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 365.714c40.571 0 73.143 32.571 73.143 73.143s-32.571 73.143-73.143 73.143v219.429c0 40-33.143 73.143-73.143 73.143-101.714-84.571-265.714-200.571-464-217.143-68 22.857-91.429 102.286-46.857 148-40 65.714 11.429 112 72 159.429-35.429 69.714-182.857 70.857-235.429 22.286-33.143-101.714-82.286-203.429-42.286-332h-69.714c-50.286 0-91.429-41.143-91.429-91.429v-109.714c0-50.286 41.143-91.429 91.429-91.429h274.286c219.429 0 402.286-128 512-219.429 40 0 73.143 33.143 73.143 73.143v219.429zM877.714 710.857v-545.143c-149.143 114.286-293.714 180-438.857 196v154.286c145.143 16 289.714 80.571 438.857 194.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bullhorn"
+ ],
+ "defaultCode": 61601,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bullhorn",
+ "id": 152,
+ "order": 1008,
+ "prevSize": 28,
+ "code": 61601
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 152
+ },
+ {
+ "icon": {
+ "paths": [
+ "M521.143 969.143c0-5.143-4-9.143-9.143-9.143-45.143 0-82.286-37.143-82.286-82.286 0-5.143-4-9.143-9.143-9.143s-9.143 4-9.143 9.143c0 55.429 45.143 100.571 100.571 100.571 5.143 0 9.143-4 9.143-9.143zM140.571 804.571h742.857c-102.286-115.429-152-272-152-475.429 0-73.714-69.714-182.857-219.429-182.857s-219.429 109.143-219.429 182.857c0 203.429-49.714 360-152 475.429zM987.429 804.571c0 40-33.143 73.143-73.143 73.143h-256c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-256c-40 0-73.143-33.143-73.143-73.143 84.571-71.429 182.857-199.429 182.857-475.429 0-109.714 90.857-229.714 242.286-252-2.857-6.857-4.571-14.286-4.571-22.286 0-30.286 24.571-54.857 54.857-54.857s54.857 24.571 54.857 54.857c0 8-1.714 15.429-4.571 22.286 151.429 22.286 242.286 142.286 242.286 252 0 276 98.286 404 182.857 475.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bell-o"
+ ],
+ "defaultCode": 61602,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bell-o",
+ "id": 153,
+ "order": 1009,
+ "prevSize": 28,
+ "code": 61602
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 153
+ },
+ {
+ "icon": {
+ "paths": [
+ "M786.286 512l78.857 77.143c10.857 10.286 14.857 25.714 11.429 40-4 14.286-15.429 25.714-29.714 29.143l-107.429 27.429 30.286 106.286c4 14.286 0 29.714-10.857 40-10.286 10.857-25.714 14.857-40 10.857l-106.286-30.286-27.429 107.429c-3.429 14.286-14.857 25.714-29.143 29.714-3.429 0.571-7.429 1.143-10.857 1.143-10.857 0-21.714-4.571-29.143-12.571l-77.143-78.857-77.143 78.857c-10.286 10.857-25.714 14.857-40 11.429-14.857-4-25.714-15.429-29.143-29.714l-27.429-107.429-106.286 30.286c-14.286 4-29.714 0-40-10.857-10.857-10.286-14.857-25.714-10.857-40l30.286-106.286-107.429-27.429c-14.286-3.429-25.714-14.857-29.714-29.143-3.429-14.286 0.571-29.714 11.429-40l78.857-77.143-78.857-77.143c-10.857-10.286-14.857-25.714-11.429-40 4-14.286 15.429-25.714 29.714-29.143l107.429-27.429-30.286-106.286c-4-14.286 0-29.714 10.857-40 10.286-10.857 25.714-14.857 40-10.857l106.286 30.286 27.429-107.429c3.429-14.286 14.857-25.714 29.143-29.143 14.286-4 29.714 0 40 10.857l77.143 79.429 77.143-79.429c10.286-10.857 25.143-14.857 40-10.857 14.286 3.429 25.714 14.857 29.143 29.143l27.429 107.429 106.286-30.286c14.286-4 29.714 0 40 10.857 10.857 10.286 14.857 25.714 10.857 40l-30.286 106.286 107.429 27.429c14.286 3.429 25.714 14.857 29.714 29.143 3.429 14.286-0.571 29.714-11.429 40z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "certificate"
+ ],
+ "defaultCode": 61603,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "certificate",
+ "id": 154,
+ "order": 1010,
+ "prevSize": 28,
+ "code": 61603
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 154
+ },
+ {
+ "icon": {
+ "paths": [
+ "M146.286 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM950.857 438.857c0-38.857-34.857-73.143-73.143-73.143h-329.143c0-36 54.857-73.143 54.857-146.286 0-54.857-42.857-73.143-91.429-73.143-16 0-45.143 66.286-51.429 79.429-6.857 12.571-13.714 25.143-21.143 37.143-18.857 30.286-40.571 56.571-64 82.857-36.571 41.714-77.143 93.143-137.714 93.143h-18.286v365.714h18.286c100 0 197.714 73.143 308.571 73.143 64 0 108-26.857 108-95.429 0-10.857-1.143-21.714-2.857-32 24-13.143 37.143-45.714 37.143-72 0-13.714-3.429-27.429-10.286-39.429 19.429-18.286 30.286-41.143 30.286-68 0-18.286-8-45.143-20-58.857h189.143c39.429 0 73.143-33.714 73.143-73.143zM1024 438.286c0 80-66.286 146.857-146.286 146.857h-96.571c-1.714 24-9.143 46.857-21.143 68 1.143 8 1.714 16.571 1.714 24.571 0 36.571-12 73.143-34.286 101.714 1.143 108-72.571 171.429-178.286 171.429-64 0-124.571-17.714-184-39.429-34.857-12.571-91.429-33.714-127.429-33.714h-164.571c-40.571 0-73.143-32.571-73.143-73.143v-365.714c0-40.571 32.571-73.143 73.143-73.143h164.571c27.429 0 66.286-49.143 82.857-68 20.571-23.429 40-46.857 57.143-73.714 33.143-53.143 57.714-150.857 134.286-150.857 90.857 0 164.571 49.714 164.571 146.286 0 25.143-4 49.714-12.571 73.143h213.714c78.857 0 146.286 66.857 146.286 145.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-o-right"
+ ],
+ "defaultCode": 61604,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hand-o-right",
+ "id": 155,
+ "order": 1011,
+ "prevSize": 28,
+ "code": 61604
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 155
+ },
+ {
+ "icon": {
+ "paths": [
+ "M786.286 804.571h18.286v-365.714h-18.286c-60.571 0-101.143-51.429-137.714-93.143-23.429-26.286-45.143-52.571-64-82.857-8-12.571-14.857-25.714-21.714-38.857s-35.429-77.714-50.857-77.714c-48.571 0-91.429 18.286-91.429 73.143 0 73.143 54.857 110.286 54.857 146.286h-329.143c-38.286 0-73.143 34.286-73.143 73.143 0 39.429 33.714 73.143 73.143 73.143h189.143c-12 13.714-20 40.571-20 58.857 0 26.857 10.857 49.714 30.286 68-6.857 12-10.286 25.714-10.286 39.429 0 26.286 13.143 58.857 37.143 72-1.714 10.286-2.286 21.143-2.286 32 0 67.429 41.714 95.429 105.143 95.429 113.714 0 210.857-73.143 310.857-73.143zM950.857 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM1024 438.857v365.714c0 40.571-32.571 73.143-73.143 73.143h-164.571c-36 0-92.571 21.143-127.429 33.714-58.286 21.143-118.286 39.429-181.143 39.429-105.143 0-181.714-59.429-181.143-168.571l0.571-2.857c-22.857-28.571-34.857-65.143-34.857-101.714 0-8 0.571-16.571 1.714-24.571-12-21.143-19.429-44-21.143-68h-96.571c-80 0-146.286-66.857-146.286-146.857 0-78.857 67.429-145.714 146.286-145.714h213.714c-8.571-23.429-12.571-48-12.571-73.143 0-96.571 73.714-146.286 164.571-146.286 76.571 0 101.143 97.714 134.286 150.857 17.143 26.857 36.571 50.286 57.143 73.714 16.571 18.857 55.429 68 82.857 68h164.571c40.571 0 73.143 32.571 73.143 73.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-o-left"
+ ],
+ "defaultCode": 61605,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hand-o-left",
+ "id": 156,
+ "order": 1012,
+ "prevSize": 28,
+ "code": 61605
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 156
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 914.286c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 477.714c0-64.571-26.286-108-95.429-108-10.857 0-21.714 1.143-32 2.857-13.143-24-45.714-37.143-72-37.143-13.714 0-27.429 3.429-39.429 10.286-18.286-19.429-41.143-30.286-68-30.286-18.286 0-45.143 8-58.857 20v-189.143c0-39.429-33.714-73.143-73.143-73.143-38.857 0-73.143 34.857-73.143 73.143v329.143c-36 0-73.143-54.857-146.286-54.857-54.857 0-73.143 42.857-73.143 91.429 0 16 66.286 45.143 79.429 51.429 12.571 6.857 25.143 13.714 37.143 21.143 30.286 18.857 56.571 40.571 82.857 64 41.714 36.571 93.143 77.143 93.143 137.714v18.286h365.714v-18.286c0-100 73.143-197.714 73.143-308.571zM877.714 474.857c0 64-17.714 124.571-39.429 184-12.571 34.857-33.714 91.429-33.714 127.429v164.571c0 40.571-32.571 73.143-73.143 73.143h-365.714c-40.571 0-73.143-32.571-73.143-73.143v-164.571c0-27.429-49.143-66.286-68-82.857-23.429-20.571-46.857-40-73.714-57.143-53.143-33.143-150.857-57.714-150.857-134.286 0-90.857 49.714-164.571 146.286-164.571 25.143 0 49.714 4 73.143 12.571v-213.714c0-78.857 66.857-146.286 145.714-146.286 80 0 146.857 66.286 146.857 146.286v96.571c24 1.714 46.857 9.143 68 21.143 8-1.143 16.571-1.714 24.571-1.714 36.571 0 73.143 12 101.714 34.286 108-1.143 171.429 72.571 171.429 178.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-o-up"
+ ],
+ "defaultCode": 61606,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hand-o-up",
+ "id": 157,
+ "order": 1013,
+ "prevSize": 28,
+ "code": 61606
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 157
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 548.571c0-113.714-73.143-210.857-73.143-310.857v-18.286h-365.714v18.286c0 60.571-51.429 101.143-93.143 137.714-26.286 23.429-52.571 45.143-82.857 64-12.571 8-25.714 14.857-38.857 21.714s-77.714 35.429-77.714 50.857c0 48.571 18.286 91.429 73.143 91.429 73.143 0 110.286-54.857 146.286-54.857v329.143c0 38.286 34.286 73.143 73.143 73.143 39.429 0 73.143-33.714 73.143-73.143v-189.143c14.857 11.429 40 20 58.857 20 26.857 0 49.714-10.857 68-30.286 12 6.857 25.714 10.286 39.429 10.286 26.286 0 58.857-13.143 72-37.143 10.286 1.714 21.143 2.286 32 2.286 67.429 0 95.429-41.714 95.429-105.143zM731.429 109.714c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM877.714 546.286c0 105.143-59.429 181.714-168.571 181.143l-2.857-0.571c-28.571 22.857-65.143 34.857-101.714 34.857-8 0-16.571-0.571-24.571-1.714-19.429 10.857-45.714 18.857-68 21.143v96.571c0 80-66.857 146.286-146.857 146.286-78.857 0-145.714-67.429-145.714-146.286v-213.714c-22.286 9.143-49.143 12.571-73.143 12.571-96 0-146.286-73.714-146.286-164.571 0-76.571 97.714-101.143 150.857-134.286 26.857-17.143 50.286-36.571 73.714-57.143 18.857-16.571 68-55.429 68-82.857v-164.571c0-40.571 32.571-73.143 73.143-73.143h365.714c40.571 0 73.143 32.571 73.143 73.143v164.571c0 36 21.143 92.571 33.714 127.429 21.143 58.286 39.429 118.286 39.429 181.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-o-down"
+ ],
+ "defaultCode": 61607,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hand-o-down",
+ "id": 158,
+ "order": 1014,
+ "prevSize": 28,
+ "code": 61607
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 158
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-286.857l108-108c6.857-6.857 10.857-16 10.857-25.714s-4-18.857-10.857-25.714l-52-52c-6.857-6.857-16-10.286-25.714-10.286s-18.857 3.429-25.714 10.286l-258.857 258.857c-6.857 6.857-10.286 16-10.286 25.714s3.429 18.857 10.286 25.714l258.857 258.857c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286l52-52c6.857-6.857 10.286-16 10.286-25.714s-3.429-18.857-10.286-25.714l-108-108h286.857c20 0 36.571-16.571 36.571-36.571zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-left"
+ ],
+ "defaultCode": 61608,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrow-circle-left",
+ "id": 159,
+ "order": 1015,
+ "prevSize": 28,
+ "code": 61608
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 159
+ },
+ {
+ "icon": {
+ "paths": [
+ "M734.286 512c0-9.714-3.429-18.857-10.286-25.714l-258.857-258.857c-6.857-6.857-16-10.286-25.714-10.286s-18.857 3.429-25.714 10.286l-52 52c-6.857 6.857-10.286 16-10.286 25.714s3.429 18.857 10.286 25.714l108 108h-286.857c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h286.857l-108 108c-6.857 6.857-10.857 16-10.857 25.714s4 18.857 10.857 25.714l52 52c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286l258.857-258.857c6.857-6.857 10.286-16 10.286-25.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-right"
+ ],
+ "defaultCode": 61609,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrow-circle-right",
+ "id": 160,
+ "order": 1016,
+ "prevSize": 28,
+ "code": 61609
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 160
+ },
+ {
+ "icon": {
+ "paths": [
+ "M733.714 511.429c0-9.714-3.429-18.857-10.286-25.714l-258.857-258.857c-6.857-6.857-16-10.286-25.714-10.286s-18.857 3.429-25.714 10.286l-258.857 258.857c-6.857 6.857-10.286 16-10.286 25.714s3.429 18.857 10.286 25.714l52 52c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286l108-108v286.857c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571v-286.857l108 108c6.857 6.857 16 10.857 25.714 10.857s18.857-4 25.714-10.857l52-52c6.857-6.857 10.286-16 10.286-25.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-up"
+ ],
+ "defaultCode": 61610,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrow-circle-up",
+ "id": 161,
+ "order": 1017,
+ "prevSize": 28,
+ "code": 61610
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 161
+ },
+ {
+ "icon": {
+ "paths": [
+ "M733.714 512.571c0-9.714-3.429-18.857-10.286-25.714l-52-52c-6.857-6.857-16-10.286-25.714-10.286s-18.857 3.429-25.714 10.286l-108 108v-286.857c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v286.857l-108-108c-6.857-6.857-16-10.857-25.714-10.857s-18.857 4-25.714 10.857l-52 52c-6.857 6.857-10.286 16-10.286 25.714s3.429 18.857 10.286 25.714l258.857 258.857c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286l258.857-258.857c6.857-6.857 10.286-16 10.286-25.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-down"
+ ],
+ "defaultCode": 61611,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrow-circle-down",
+ "id": 162,
+ "order": 1018,
+ "prevSize": 28,
+ "code": 61611
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 162
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM595.429 370.857c-4.571 3.429-7.429 9.714-13.143 10.857 2.857-0.571 5.714-10.857 7.429-13.143 3.429-4 8-6.286 12.571-8.571 9.714-4 19.429-5.143 29.714-6.857 9.714-2.286 21.714-2.286 29.143 6.286-1.714-1.714 12-13.714 13.714-14.286 5.143-2.857 13.714-1.714 17.143-6.857 1.143-1.714 1.143-12.571 1.143-12.571-9.714 1.143-13.143-8-13.714-16 0 0.571-1.143 2.286-3.429 4.571 0.571-8.571-10.286-2.286-14.286-3.429-13.143-3.429-11.429-12.571-15.429-22.286-2.286-5.143-8.571-6.857-10.857-12-2.286-3.429-3.429-10.857-8.571-11.429-3.429-0.571-9.714 12-10.857 11.429-5.143-2.857-7.429 1.143-11.429 3.429-3.429 2.286-6.286 1.143-9.714 2.857 10.286-3.429-4.571-9.143-9.714-8 8-2.286 4-10.857-0.571-14.857h2.857c-1.143-5.143-17.143-9.714-22.286-13.143s-32.571-9.143-38.286-5.714c-6.857 4 1.714 15.429 1.714 21.143 0.571 6.857-6.857 8.571-6.857 14.286 0 9.714 18.286 8 13.714 21.143-2.857 8-13.714 9.714-18.286 16-4.571 5.714 0.571 16 5.143 20 4.571 3.429-8 9.143-9.714 10.286-9.714 4.571-17.143-9.714-19.429-18.286-1.714-6.286-2.286-13.714-9.143-17.143-3.429-1.143-14.286-2.857-16.571 0.571-3.429-8.571-15.429-12-23.429-14.857-11.429-4-21.143-4-33.143-2.286 4-0.571-1.143-18.286-10.857-15.429 2.857-5.714 1.714-12 2.857-17.714 1.143-4.571 3.429-9.143 6.857-13.143 1.143-2.286 13.714-15.429 9.714-16 9.714 1.143 20.571 1.714 28.571-6.286 5.143-5.143 7.429-13.714 12.571-19.429 7.429-8.571 16.571 2.286 24.571 2.857 11.429 0.571 10.857-12 4.571-17.714 7.429 0.571 1.143-13.143-2.857-14.857-5.143-1.714-24.571 3.429-14.286 7.429-2.286-1.143-16 27.429-24 13.143-2.286-2.857-3.429-14.857-8.571-15.429-4.571 0-7.429 5.143-9.143 8.571 2.857-7.429-16-12.571-20-13.143 8.571-5.714 1.714-12-4.571-15.429-4.571-2.857-18.857-5.143-22.857-0.571-10.857 13.143 11.429 14.857 17.143 18.286 1.714 1.143 8.571 5.143 4.571 8-3.429 1.714-13.714 4.571-14.857 6.857-3.429 5.143 4 10.857-1.143 16-5.143-5.143-5.143-13.714-9.143-19.429 5.143 6.286-20.571 2.857-20 2.857-8.571 0-22.286 5.714-28.571-2.857-1.143-2.286-1.143-15.429 2.286-12.571-5.143-4-8.571-8-12-10.286-18.857 6.286-36.571 14.286-53.714 23.429 2.286 0.571 4 0.571 6.857-0.571 4.571-1.714 8.571-4.571 13.143-6.857 5.714-2.286 17.714-9.143 24-4 0.571-1.143 2.286-2.286 2.857-2.857 4 4.571 8 9.143 11.429 14.286-4.571-2.286-12-1.143-17.143-0.571-4 1.143-10.857 2.286-12.571 6.857 1.714 2.857 4 7.429 2.857 10.286-7.429-5.143-13.143-13.714-23.429-14.857-4.571 0-9.143 0-12.571 0.571-54.857 30.286-101.143 74.286-134.286 126.857 2.286 2.286 4.571 4 6.857 4.571 5.714 1.714 0 18.286 10.857 9.714 3.429 2.857 4 6.857 1.714 10.857 0.571-0.571 23.429 14.286 25.143 15.429 4 3.429 10.286 7.429 12 12 1.143 4-2.286 8.571-5.714 10.286-0.571-1.143-9.143-9.714-10.286-7.429-1.714 2.857 0 18.286 6.286 17.714-9.143 0.571-5.143 36-7.429 42.857 0 0.571 1.143 0.571 1.143 0.571-1.714 6.857 4 33.714 15.429 30.857-7.429 1.714 13.143 28 16 29.714 7.429 5.143 16 8.571 21.143 16 5.714 8 5.714 20 13.714 26.286-2.286 6.857 12 14.857 11.429 24.571-1.143 0.571-1.714 0.571-2.857 1.143 2.857 8 13.714 8 17.714 15.429 2.286 4.571 0 15.429 7.429 13.143 1.143-12.571-7.429-25.143-13.714-35.429-3.429-5.714-6.857-10.857-9.714-16.571-2.857-5.143-3.429-11.429-5.714-17.143 2.286 0.571 14.857 5.143 13.714 6.857-4.571 11.429 18.286 31.429 24.571 38.857 1.714 1.714 14.857 18.857 8 18.857 7.429 0 17.714 11.429 21.143 17.143 5.143 8.571 4 19.429 7.429 28.571 3.429 11.429 19.429 16.571 28.571 21.714 8 4 14.857 9.714 22.857 12.571 12 4.571 14.857 0.571 25.143-1.143 14.857-2.286 16.571 14.286 28.571 20.571 7.429 4 23.429 9.714 31.429 6.286-3.429 1.143 12 24.571 13.143 26.286 5.143 6.857 14.857 10.286 20.571 17.143 1.714-1.143 3.429-2.857 4-5.143-2.286 6.286 8.571 18.286 14.286 17.143 6.286-1.143 8-13.714 8-18.286-11.429 5.714-21.714 1.143-28-10.286-1.143-2.857-10.286-18.857-2.286-18.857 10.857 0 3.429-8.571 2.286-16.571s-9.143-13.143-13.143-20c-3.429 6.857-14.857 5.143-18.286-0.571 0 1.714-1.714 4.571-1.714 6.857-2.857 0-5.714 0.571-8.571-0.571 1.143-6.857 1.714-15.429 3.429-22.857 2.857-10.286 21.714-30.286-2.857-29.143-8.571 0.571-12 4-14.857 11.429-2.857 6.857-1.714 13.143-9.714 16.571-5.143 2.286-22.286 1.143-27.429-1.714-10.857-6.286-18.286-26.286-18.286-37.714-0.571-15.429 7.429-29.143 0-43.429 3.429-2.857 6.857-8.571 10.857-11.429 3.429-2.286 7.429 1.714 9.143-5.143-1.714-1.143-4-3.429-4.571-3.429 8.571 4 24.571-5.714 32 0 4.571 3.429 9.714 4.571 12.571-1.143 0.571-1.714-4-8.571-1.714-13.143 1.714 9.714 8 11.429 16.571 5.143 3.429 3.429 12.571 2.286 18.857 5.714 6.286 4 7.429 10.286 14.857 1.714 4.571 6.857 5.143 6.857 6.857 13.714 1.714 6.286 5.143 22.286 10.857 25.143 12 7.429 9.143-12.571 8-19.429-0.571-0.571-0.571-19.429-1.143-19.429-18.286-4-11.429-18.286-1.143-28 1.714-1.143 14.857-5.714 20.571-10.286 5.143-4.571 11.429-12.571 8.571-20 2.857 0 5.143-2.286 6.286-5.143-1.714-0.571-8.571-6.286-9.714-5.714 4-2.286 3.429-5.714 1.143-9.143 5.714-3.429 2.857-9.714 8.571-12 6.286 8.571 18.857-1.143 12.571-8 5.714-8 18.857-4 22.286-11.429 8.571 2.286 2.286-8.571 6.857-14.857 4-5.143 10.857-5.143 16-8 0 0.571 14.286-8 9.714-8.571 9.714 1.143 29.143-9.143 14.286-17.714 2.286-5.143-5.143-7.429-10.286-8.571 4-1.143 9.143 1.143 12.571-1.143 7.429-5.143 2.286-7.429-4-9.143-8-2.286-18.286 2.857-24.571 6.857zM502.286 872c78.286-13.714 148-52.571 200.571-108-3.429-3.429-9.714-2.286-14.286-4.571-4.571-1.714-8-3.429-13.714-4.571 1.143-11.429-11.429-15.429-19.429-21.143-7.429-5.714-12-12-22.857-9.714-1.143 0.571-12.571 4.571-10.286 6.857-7.429-6.286-10.857-9.714-20.571-12.571-9.143-2.857-15.429-14.286-24.571-4-4.571 4.571-2.286 11.429-4.571 16-7.429-6.286 6.857-13.714 1.143-20.571-6.857-8-18.857 5.143-24.571 8.571-3.429 2.857-7.429 4-9.714 7.429-2.857 4-4 9.143-6.286 13.143-1.714-4.571-11.429-3.429-12-6.857 2.286 13.714 2.286 28 5.143 41.714 1.714 8 0 21.143-6.857 27.429s-15.429 13.143-16.571 22.857c-1.143 6.857 0.571 13.143 6.857 14.857 0.571 8.571-9.143 14.857-8.571 24 0 0.571 0.571 6.286 1.143 9.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "globe"
+ ],
+ "defaultCode": 61612,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "globe",
+ "id": 163,
+ "order": 1019,
+ "prevSize": 28,
+ "code": 61612
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 163
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 841.143c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM587.429 601.143l-389.714 389.714c-13.143 13.143-32 21.143-51.429 21.143s-38.286-8-52-21.143l-60.571-61.714c-13.714-13.143-21.714-32-21.714-51.429s8-38.286 21.714-52l389.143-389.143c29.714 74.857 89.714 134.857 164.571 164.571zM949.714 352.571c0 18.857-6.857 42.286-13.143 60.571-36 101.714-133.714 172-241.714 172-141.143 0-256-114.857-256-256s114.857-256 256-256c41.714 0 96 12.571 130.857 36 5.714 4 9.143 9.143 9.143 16 0 6.286-4 12.571-9.143 16l-167.429 96.571v128l110.286 61.143c18.857-10.857 151.429-94.286 162.857-94.286s18.286 8.571 18.286 20z"
+ ],
+ "width": 961.6822857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wrench"
+ ],
+ "defaultCode": 61613,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "wrench",
+ "id": 164,
+ "order": 1020,
+ "prevSize": 28,
+ "code": 61613
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 164
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 804.571h365.714v-73.143h-365.714v73.143zM365.714 512h585.143v-73.143h-585.143v73.143zM731.429 219.429h219.429v-73.143h-219.429v73.143zM1024 694.857v146.286c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 402.286v146.286c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 109.714v146.286c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tasks"
+ ],
+ "defaultCode": 61614,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "tasks",
+ "id": 165,
+ "order": 1021,
+ "prevSize": 28,
+ "code": 61614
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 165
+ },
+ {
+ "icon": {
+ "paths": [
+ "M801.714 168.571c5.714 13.714 2.857 29.714-8 40l-281.714 281.714v424c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-3.429-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714v-277.714l-281.714-281.714c-10.857-10.286-13.714-26.286-8-40 5.714-13.143 18.857-22.286 33.714-22.286h731.429c14.857 0 28 9.143 33.714 22.286z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter"
+ ],
+ "defaultCode": 61616,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "filter",
+ "id": 166,
+ "order": 1022,
+ "prevSize": 28,
+ "code": 61616
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 166
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 146.286h292.571v-73.143h-292.571v73.143zM1024 512v274.286c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-274.286h384v91.429c0 20 16.571 36.571 36.571 36.571h182.857c20 0 36.571-16.571 36.571-36.571v-91.429h384zM585.143 512v73.143h-146.286v-73.143h146.286zM1024 237.714v219.429h-1024v-219.429c0-50.286 41.143-91.429 91.429-91.429h201.143v-91.429c0-30.286 24.571-54.857 54.857-54.857h329.143c30.286 0 54.857 24.571 54.857 54.857v91.429h201.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "briefcase"
+ ],
+ "defaultCode": 61617,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "briefcase",
+ "id": 167,
+ "order": 1023,
+ "prevSize": 28,
+ "code": 61617
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 167
+ },
+ {
+ "icon": {
+ "paths": [
+ "M733.143 309.143l-202.857 202.857 202.857 202.857 82.286-82.286c10.286-10.857 26.286-13.714 40-8 13.143 5.714 22.286 18.857 22.286 33.714v256c0 20-16.571 36.571-36.571 36.571h-256c-14.857 0-28-9.143-33.714-22.857-5.714-13.143-2.857-29.143 8-39.429l82.286-82.286-202.857-202.857-202.857 202.857 82.286 82.286c10.857 10.286 13.714 26.286 8 39.429-5.714 13.714-18.857 22.857-33.714 22.857h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-14.857 9.143-28 22.857-33.714 13.143-5.714 29.143-2.857 39.429 8l82.286 82.286 202.857-202.857-202.857-202.857-82.286 82.286c-6.857 6.857-16 10.857-25.714 10.857-4.571 0-9.714-1.143-13.714-2.857-13.714-5.714-22.857-18.857-22.857-33.714v-256c0-20 16.571-36.571 36.571-36.571h256c14.857 0 28 9.143 33.714 22.857 5.714 13.143 2.857 29.143-8 39.429l-82.286 82.286 202.857 202.857 202.857-202.857-82.286-82.286c-10.857-10.286-13.714-26.286-8-39.429 5.714-13.714 18.857-22.857 33.714-22.857h256c20 0 36.571 16.571 36.571 36.571v256c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-4-25.714-10.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrows-alt"
+ ],
+ "defaultCode": 61618,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrows-alt",
+ "id": 168,
+ "order": 1024,
+ "prevSize": 28,
+ "code": 61618
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 168
+ },
+ {
+ "icon": {
+ "paths": [
+ "M338.857 512c-59.429 1.714-113.143 27.429-151.429 73.143h-76.571c-57.143 0-110.857-27.429-110.857-90.857 0-46.286-1.714-201.714 70.857-201.714 12 0 71.429 48.571 148.571 48.571 26.286 0 51.429-4.571 76-13.143-1.714 12.571-2.857 25.143-2.857 37.714 0 52 16.571 103.429 46.286 146.286zM950.857 876c0 92.571-61.143 148-152.571 148h-499.429c-91.429 0-152.571-55.429-152.571-148 0-129.143 30.286-327.429 197.714-327.429 19.429 0 90.286 79.429 204.571 79.429s185.143-79.429 204.571-79.429c167.429 0 197.714 198.286 197.714 327.429zM365.714 146.286c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286zM768 365.714c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429zM1097.143 494.286c0 63.429-53.714 90.857-110.857 90.857h-76.571c-38.286-45.714-92-71.429-151.429-73.143 29.714-42.857 46.286-94.286 46.286-146.286 0-12.571-1.143-25.143-2.857-37.714 24.571 8.571 49.714 13.143 76 13.143 77.143 0 136.571-48.571 148.571-48.571 72.571 0 70.857 155.429 70.857 201.714zM1024 146.286c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "group",
+ "users"
+ ],
+ "defaultCode": 61632,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "group, users",
+ "id": 169,
+ "order": 1025,
+ "prevSize": 28,
+ "code": 61632
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 169
+ },
+ {
+ "icon": {
+ "paths": [
+ "M832 694.857c0-14.857-5.714-28.571-16-38.857l-118.857-118.857c-10.286-10.286-24.571-16-38.857-16-16.571 0-29.714 6.286-41.143 18.286 18.857 18.857 41.143 34.857 41.143 64 0 30.286-24.571 54.857-54.857 54.857-29.143 0-45.143-22.286-64-41.143-12 11.429-18.857 24.571-18.857 41.714 0 14.286 5.714 28.571 16 38.857l117.714 118.286c10.286 10.286 24.571 15.429 38.857 15.429s28.571-5.143 38.857-14.857l84-83.429c10.286-10.286 16-24 16-38.286zM430.286 292c0-14.286-5.714-28.571-16-38.857l-117.714-118.286c-10.286-10.286-24.571-16-38.857-16s-28.571 5.714-38.857 15.429l-84 83.429c-10.286 10.286-16 24-16 38.286 0 14.857 5.714 28.571 16 38.857l118.857 118.857c10.286 10.286 24.571 15.429 38.857 15.429 16.571 0 29.714-5.714 41.143-17.714-18.857-18.857-41.143-34.857-41.143-64 0-30.286 24.571-54.857 54.857-54.857 29.143 0 45.143 22.286 64 41.143 12-11.429 18.857-24.571 18.857-41.714zM941.714 694.857c0 43.429-17.714 85.714-48.571 116l-84 83.429c-30.857 30.857-72.571 47.429-116 47.429-44 0-85.714-17.143-116.571-48.571l-117.714-118.286c-30.857-30.857-47.429-72.571-47.429-116 0-45.143 18.286-88 50.286-119.429l-50.286-50.286c-31.429 32-73.714 50.286-118.857 50.286-43.429 0-85.714-17.143-116.571-48l-118.857-118.857c-31.429-31.429-48-72.571-48-116.571 0-43.429 17.714-85.714 48.571-116l84-83.429c30.857-30.857 72.571-47.429 116-47.429 44 0 85.714 17.143 116.571 48.571l117.714 118.286c30.857 30.857 47.429 72.571 47.429 116 0 45.143-18.286 88-50.286 119.429l50.286 50.286c31.429-32 73.714-50.286 118.857-50.286 43.429 0 85.714 17.143 116.571 48l118.857 118.857c31.429 31.429 48 72.571 48 116.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chain",
+ "link"
+ ],
+ "defaultCode": 61633,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "chain, link",
+ "id": 170,
+ "order": 1026,
+ "prevSize": 28,
+ "code": 61633
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 170
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1097.143 658.286c0 121.143-98.286 219.429-219.429 219.429h-621.714c-141.143 0-256-114.857-256-256 0-102.286 60.571-190.857 147.429-231.429-0.571-8-1.143-16.571-1.143-24.571 0-161.714 130.857-292.571 292.571-292.571 122.286 0 226.857 74.857 270.857 181.714 25.143-22.286 58.286-35.429 94.857-35.429 80.571 0 146.286 65.714 146.286 146.286 0 29.143-8.571 56-23.429 78.857 97.143 22.857 169.714 109.714 169.714 213.714z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud"
+ ],
+ "defaultCode": 61634,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cloud",
+ "id": 171,
+ "order": 1027,
+ "prevSize": 28,
+ "code": 61634
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 171
+ },
+ {
+ "icon": {
+ "paths": [
+ "M872.571 827.429c42.857 68 12.571 123.429-68 123.429h-658.286c-80.571 0-110.857-55.429-68-123.429l287.429-453.143v-228h-36.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h292.571c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-36.571v228zM427.429 413.143l-155.429 245.143h406.857l-155.429-245.143-11.429-17.714v-249.143h-73.143v249.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flask"
+ ],
+ "defaultCode": 61635,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "flask",
+ "id": 172,
+ "order": 1028,
+ "prevSize": 28,
+ "code": 61635
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 172
+ },
+ {
+ "icon": {
+ "paths": [
+ "M548.571 512c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM720 548.571l289.714 227.429c10.286 7.429 15.429 20 14.286 32-1.714 12.571-9.143 23.429-20 29.143l-73.143 36.571c-5.143 2.857-10.857 4-16.571 4-6.286 0-12.571-1.714-17.714-4.571l-394.286-221.143-62.857 37.714c-2.286 1.143-4.571 2.286-6.857 2.857 5.143 17.714 7.429 36.571 5.714 55.429-5.143 58.857-44.571 114.857-107.429 154.857-48.571 30.857-104.571 48-158.286 48-51.429 0-94.857-15.429-126.857-44.571-32.571-30.286-49.143-73.714-45.143-118.286 5.143-58.286 44.571-114.857 106.857-154.857 48.571-30.857 105.143-48 158.857-48 32 0 61.143 6.286 86.286 17.714 3.429-5.143 7.429-9.143 12.571-12.571l69.714-41.714-69.714-41.714c-5.143-3.429-9.143-7.429-12.571-12.571-25.143 11.429-54.286 17.714-86.286 17.714-53.714 0-110.286-17.143-158.857-48-62.286-40-101.714-96.571-106.857-154.857-4-44.571 12.571-88 45.143-117.714 32-29.714 75.429-45.143 126.857-45.143 53.714 0 109.714 17.143 158.286 48 62.857 39.429 102.286 96 107.429 154.857 1.714 18.857-0.571 37.714-5.714 55.429 2.286 0.571 4.571 1.714 6.857 2.857l62.857 37.714 394.286-221.143c5.143-2.857 11.429-4.571 17.714-4.571 5.714 0 11.429 1.143 16.571 4l73.143 36.571c10.857 5.714 18.286 16.571 20 29.143 1.143 12-4 24.571-14.286 32zM330.857 400c34.857-32 13.143-89.714-48.571-128.571-34.857-22.286-75.429-33.714-109.714-33.714-26.286 0-49.714 6.857-64.571 20.571-34.857 32-13.143 89.714 48.571 128.571 34.857 22.286 74.857 33.714 109.714 33.714 26.286 0 49.714-6.857 64.571-20.571zM282.286 825.714c61.714-38.857 83.429-96.571 48.571-128.571-14.857-13.714-38.286-20.571-64.571-20.571-34.857 0-74.857 11.429-109.714 33.714-61.714 38.857-83.429 96.571-48.571 128.571 14.857 13.714 38.286 20.571 64.571 20.571 34.286 0 74.857-11.429 109.714-33.714zM384 475.429l54.857 33.143v-6.286c0-13.143 7.429-25.143 18.857-32l8-4.571-45.143-26.857-14.857 14.857c-4.571 4.571-8 9.143-12.571 13.143-1.714 1.714-2.857 2.286-4 3.429zM512 603.429l54.857 18.286 420.571-329.143-73.143-36.571-438.857 246.286v64.571l-91.429 54.857 5.143 4.571c1.143 1.714 2.286 2.286 4 3.429 4.571 4.571 8 9.143 12.571 13.714l14.857 14.857zM914.286 841.143l73.143-36.571-297.143-233.143-101.143 78.857c-1.714 2.286-4.571 2.857-7.429 4z"
+ ],
+ "width": 1021.7325714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cut",
+ "scissors"
+ ],
+ "defaultCode": 61636,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cut, scissors",
+ "id": 173,
+ "order": 1029,
+ "prevSize": 28,
+ "code": 61636
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 173
+ },
+ {
+ "icon": {
+ "paths": [
+ "M969.143 219.429c30.286 0 54.857 24.571 54.857 54.857v694.857c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-164.571h-310.857c-30.286 0-54.857-24.571-54.857-54.857v-384c0-30.286 17.714-72.571 38.857-93.714l233.143-233.143c21.143-21.143 63.429-38.857 93.714-38.857h237.714c30.286 0 54.857 24.571 54.857 54.857v187.429c22.286-13.143 50.857-22.857 73.143-22.857h237.714zM658.286 341.143l-170.857 170.857h170.857v-170.857zM292.571 121.714l-170.857 170.857h170.857v-170.857zM404.571 491.429l180.571-180.571v-237.714h-219.429v237.714c0 30.286-24.571 54.857-54.857 54.857h-237.714v365.714h292.571v-146.286c0-30.286 17.714-72.571 38.857-93.714zM950.857 950.857v-658.286h-219.429v237.714c0 30.286-24.571 54.857-54.857 54.857h-237.714v365.714h512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "copy",
+ "files-o"
+ ],
+ "defaultCode": 61637,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "copy, files-o",
+ "id": 174,
+ "order": 1030,
+ "prevSize": 28,
+ "code": 61637
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 174
+ },
+ {
+ "icon": {
+ "paths": [
+ "M802.286 791.429c0 89.143-68 157.143-157.143 157.143-50.286 0-98.857-21.714-134.286-57.143l-444-443.429c-40.571-41.143-64.571-97.143-64.571-154.857 0-121.143 95.429-217.714 216.571-217.714 58.286 0 114.286 23.429 156 64.571l345.714 346.286c3.429 3.429 5.714 8 5.714 12.571 0 12-32 44-44 44-5.143 0-9.714-2.286-13.143-5.714l-346.286-346.857c-27.429-26.857-64.571-44-103.429-44-81.143 0-144 65.714-144 146.286 0 38.857 16 76 43.429 103.429l443.429 444c21.714 21.714 52 36 82.857 36 48.571 0 84.571-36 84.571-84.571 0-31.429-14.286-61.143-36-82.857l-332-332c-9.143-8.571-21.714-13.714-34.286-13.714-21.714 0-38.286 16-38.286 38.286 0 12.571 5.714 24.571 14.286 33.714l234.286 234.286c3.429 3.429 5.714 8 5.714 12.571 0 12-32.571 44.571-44.571 44.571-4.571 0-9.143-2.286-12.571-5.714l-234.286-234.286c-22.857-22.286-36-53.714-36-85.143 0-62.857 49.143-112 112-112 32 0 62.857 13.143 85.143 36l332 332c36 35.429 57.143 84 57.143 134.286z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paperclip"
+ ],
+ "defaultCode": 61638,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "paperclip",
+ "id": 175,
+ "order": 1031,
+ "prevSize": 28,
+ "code": 61638
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 175
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 877.714h438.857v-219.429h-438.857v219.429zM731.429 877.714h73.143v-512c0-10.857-9.714-34.286-17.143-41.714l-160.571-160.571c-8-8-30.286-17.143-41.714-17.143v237.714c0 30.286-24.571 54.857-54.857 54.857h-329.143c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-73.143v731.429h73.143v-237.714c0-30.286 24.571-54.857 54.857-54.857h475.429c30.286 0 54.857 24.571 54.857 54.857v237.714zM512 347.429v-182.857c0-9.714-8.571-18.286-18.286-18.286h-109.714c-9.714 0-18.286 8.571-18.286 18.286v182.857c0 9.714 8.571 18.286 18.286 18.286h109.714c9.714 0 18.286-8.571 18.286-18.286zM877.714 365.714v530.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-768c0-30.286 24.571-54.857 54.857-54.857h530.286c30.286 0 72 17.143 93.714 38.857l160 160c21.714 21.714 38.857 63.429 38.857 93.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "floppy-o",
+ "save"
+ ],
+ "defaultCode": 61639,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "floppy-o, save",
+ "id": 176,
+ "order": 1032,
+ "prevSize": 28,
+ "code": 61639
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 176
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "square"
+ ],
+ "defaultCode": 61640,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "square",
+ "id": 177,
+ "order": 1033,
+ "prevSize": 28,
+ "code": 61640
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 177
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 768v73.143c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571zM877.714 475.429v73.143c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571zM877.714 182.857v73.143c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bars",
+ "navicon",
+ "reorder"
+ ],
+ "defaultCode": 61641,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bars, navicon, reorder",
+ "id": 178,
+ "order": 1034,
+ "prevSize": 28,
+ "code": 61641
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 178
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 804.571c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM219.429 512c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h694.857c9.714 0 18.286 8.571 18.286 18.286zM219.429 219.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1024 457.143v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h694.857c9.714 0 18.286 8.571 18.286 18.286zM1024 164.571v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h694.857c9.714 0 18.286 8.571 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "list-ul"
+ ],
+ "defaultCode": 61642,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "list-ul",
+ "id": 179,
+ "order": 1035,
+ "prevSize": 28,
+ "code": 61642
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 179
+ },
+ {
+ "icon": {
+ "paths": [
+ "M217.714 925.714c0 62.857-49.143 98.286-108.571 98.286-36 0-72.571-12-98.286-37.714l32.571-50.286c15.429 14.286 38.857 25.714 60.571 25.714 20 0 41.143-9.714 41.143-32.571 0-32-36.571-33.714-60-32l-14.857-32c20.571-26.286 39.429-55.429 64-77.714v-0.571c-18.286 0-37.143 1.143-55.429 1.143v30.286h-60.571v-86.857h190.286v50.286l-54.286 65.714c38.286 9.143 63.429 38.857 63.429 78.286zM218.857 567.429v90.857h-206.857c-1.714-10.286-3.429-20.571-3.429-30.857 0-105.714 129.143-121.714 129.143-169.714 0-19.429-12-29.714-30.857-29.714-20 0-36.571 17.143-46.286 33.143l-48.571-33.714c18.857-39.429 57.714-61.714 101.143-61.714 53.143 0 98.857 31.429 98.857 88 0 84.571-124 103.429-125.714 148h72.571v-34.286h60zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-10.286 0-18.286-8.571-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h694.857c9.714 0 18.286 8 18.286 18.286zM219.429 236v56.571h-191.429v-56.571h61.143c0-46.286 0.571-92.571 0.571-138.857v-6.857h-1.143c-6.286 12.571-17.714 21.143-28.571 30.857l-40.571-43.429 77.714-72.571h60.571v230.857h61.714zM1024 457.143v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-10.286 0-18.286-8.571-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h694.857c9.714 0 18.286 8 18.286 18.286zM1024 164.571v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-10.286 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8-18.286 18.286-18.286h694.857c9.714 0 18.286 8.571 18.286 18.286z"
+ ],
+ "width": 1032.5577142857144,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "list-ol"
+ ],
+ "defaultCode": 61643,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "list-ol",
+ "id": 180,
+ "order": 1036,
+ "prevSize": 28,
+ "code": 61643
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 180
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1005.714 512c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-987.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h987.429zM276 475.429c-10.857-13.714-20.571-29.143-29.143-45.714-18.286-37.143-27.429-73.143-27.429-107.429 0-69.714 25.714-128 76.571-176.571s125.714-72.571 224.571-72.571c21.714 0 53.143 4 95.429 10.857 25.143 4.571 58.857 13.714 101.143 27.429 4 14.857 8 37.714 12 67.429 5.143 45.143 8 80 8 104.571 0 8-1.143 16.571-2.857 25.714l-6.857 1.714-48-3.429-8-1.143c-19.429-57.714-39.429-96.571-58.857-117.143-33.714-34.857-74.286-52-120-52-43.429 0-78.286 11.429-104 33.714s-38.286 50.286-38.286 83.429c0 28 12.571 54.286 37.714 80s78.286 50.286 159.429 73.714c27.429 8 60 20.571 98.857 37.714 20.571 9.714 38.857 19.429 54.286 29.714h-424.571zM565.714 621.714h234.857c2.857 16 4 33.714 4 52.571 0 41.143-7.429 81.714-23.429 121.143-8.571 21.143-21.714 40.571-40.571 59.429-13.714 13.143-34.286 28.571-62.286 46.286-28.571 17.143-57.143 30.286-87.429 37.714-30.286 8-68.571 12-116 12-31.429 0-69.143-1.143-111.429-13.143l-80-22.857c-22.286-6.286-35.429-11.429-41.143-16-2.286-2.286-4.571-6.286-4.571-12.571v-7.429c0-4.571 1.143-34.286-1.143-89.143-1.143-28.571 1.143-48.571 1.143-60v-25.143l58.286-1.143c21.143 48.571 30.857 77.714 37.143 88 13.714 22.286 29.143 40 45.714 53.714s36.571 24.571 60 32.571c22.857 8.571 48.571 12.571 75.429 12.571 24 0 50.857-5.143 79.429-15.429 29.143-9.714 52.571-26.286 69.714-49.143 17.714-22.857 26.857-47.429 26.857-73.714 0-32-15.429-61.714-46.286-89.714-12.571-10.857-38.857-24.571-78.286-40.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "strikethrough"
+ ],
+ "defaultCode": 61644,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "strikethrough",
+ "id": 181,
+ "order": 1037,
+ "prevSize": 28,
+ "code": 61644
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 181
+ },
+ {
+ "icon": {
+ "paths": [
+ "M27.429 127.429c-10.286-0.571-18.857-0.571-25.714-2.286l-1.714-50.286c7.429-0.571 14.857-0.571 22.857-0.571 20 0 41.714 0.571 64 2.286 53.714 2.857 85.714 4 94.857 4 32.571 0 64.571-0.571 96-1.714 30.857-1.143 58.857-2.286 83.429-2.857 24 0 40.571-0.571 49.143-1.143l-0.571 8 1.143 36.571v5.143c-22.857 3.429-46.286 5.143-70.857 5.143-22.857 0-37.714 4.571-45.143 14.286-5.143 5.714-7.429 30.857-7.429 75.429 0 13.714 0.571 24.571 0.571 33.143l0.571 130.857 8 160c2.286 46.286 11.429 84.571 29.143 115.429 13.143 22.286 31.429 40 54.857 52.571 34.286 18.286 68 26.857 101.143 26.857 38.857 0 75.429-5.143 109.143-16 20-6.286 38.857-15.429 56.571-29.143 17.714-13.143 30.286-25.143 37.143-36.571 14.857-22.857 24.571-45.143 30.286-65.143 8-28 12-71.429 12-130.857 0-102.286-7.429-105.143-16-234.286l-2.286-33.714c-1.714-24.571-5.714-41.714-13.714-50.286-12.571-13.143-27.429-20-44-19.429l-57.143 1.143-8-1.714 1.143-49.143h48l117.143 5.714c38.857 1.714 76-1.714 112-5.714l10.286 1.143c2.286 14.286 3.429 24 3.429 29.143s-1.143 10.857-2.286 17.714c-15.429 4-31.429 6.857-48 7.429-26.857 4-42.286 6.857-45.143 9.714-5.143 5.143-8.571 12.571-8.571 23.429 0 7.429 1.143 18.857 1.714 33.143 0 0 4.571 10.286 12.571 226.286 2.857 86.286-2.857 144.571-8.571 173.714s-13.714 52.571-23.429 69.714c-14.857 25.143-36.571 48.571-64 70.286-28 21.143-62.286 38.286-104 50.857s-90.286 18.857-145.714 18.857c-62.857 0-117.143-8.571-162.286-26.286s-79.429-41.143-102.286-69.714-38.857-65.714-47.429-111.429c-6.286-31.429-9.143-76.571-9.143-135.429v-190.286c0-72-3.429-112.571-9.714-121.714-9.143-13.143-37.143-21.143-84-22.286zM877.714 932.571v-36.571c0-10.286-8-18.286-18.286-18.286h-841.143c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h841.143c10.286 0 18.286-8 18.286-18.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "underline"
+ ],
+ "defaultCode": 61645,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "underline",
+ "id": 182,
+ "order": 1038,
+ "prevSize": 28,
+ "code": 61645
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 182
+ },
+ {
+ "icon": {
+ "paths": [
+ "M292.571 786.286v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM292.571 566.857v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM585.143 786.286v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM292.571 347.429v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM585.143 566.857v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM877.714 786.286v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM585.143 347.429v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM877.714 566.857v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM877.714 347.429v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM950.857 164.571v621.714c0 50.286-41.143 91.429-91.429 91.429h-768c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h768c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "table"
+ ],
+ "defaultCode": 61646,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "table",
+ "id": 183,
+ "order": 1039,
+ "prevSize": 28,
+ "code": 61646
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 183
+ },
+ {
+ "icon": {
+ "paths": [
+ "M680 332l167.429-167.429-61.143-61.143-167.429 167.429zM935.429 164.571c0 9.714-3.429 18.857-10.286 25.714l-734.857 734.857c-6.857 6.857-16 10.286-25.714 10.286s-18.857-3.429-25.714-10.286l-113.143-113.143c-6.857-6.857-10.286-16-10.286-25.714s3.429-18.857 10.286-25.714l734.857-734.857c6.857-6.857 16-10.286 25.714-10.286s18.857 3.429 25.714 10.286l113.143 113.143c6.857 6.857 10.286 16 10.286 25.714zM163.429 56l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56zM363.429 148.571l112 34.286-112 34.286-34.286 112-34.286-112-112-34.286 112-34.286 34.286-112zM894.857 421.714l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56zM529.143 56l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56z"
+ ],
+ "width": 966.2902857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "magic"
+ ],
+ "defaultCode": 61648,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "magic",
+ "id": 184,
+ "order": 1040,
+ "prevSize": 28,
+ "code": 61648
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 184
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 804.571c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143 33.143 73.143 73.143 73.143 73.143-33.143 73.143-73.143zM146.286 512h219.429v-146.286h-90.286c-2.286 0-10.857 3.429-12.571 5.143l-111.429 111.429c-1.714 1.714-5.143 10.286-5.143 12.571v17.143zM877.714 804.571c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143 33.143 73.143 73.143 73.143 73.143-33.143 73.143-73.143zM1024 182.857v585.143c0 42.286-44.571 36.571-73.143 36.571 0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-219.429c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-36.571c-28.571 0-73.143 5.714-73.143-36.571 0-20 16.571-36.571 36.571-36.571v-182.857c0-40.571-5.714-85.714 25.714-117.143l113.143-113.143c14.286-14.286 41.714-25.714 62.286-25.714h91.429v-109.714c0-20 16.571-36.571 36.571-36.571h585.143c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1060.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "truck"
+ ],
+ "defaultCode": 61649,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "truck",
+ "id": 185,
+ "order": 1041,
+ "prevSize": 28,
+ "code": 61649
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 185
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 512c0 242.286-196.571 438.857-438.857 438.857-43.429 0-84.571-6.286-124.571-18.286 16.571-26.286 35.429-60 44.571-93.714 0 0 5.143-19.429 30.857-120.571 14.857 29.143 59.429 54.857 106.857 54.857 141.143 0 237.143-128.571 237.143-301.143 0-129.714-110.286-251.429-278.286-251.429-208 0-313.143 149.714-313.143 274.286 0 75.429 28.571 142.857 89.714 168 9.714 4 18.857 0 21.714-11.429 2.286-7.429 6.857-26.857 9.143-34.857 2.857-11.429 1.714-14.857-6.286-24.571-17.714-21.143-29.143-48-29.143-86.286 0-110.857 82.857-210.286 216-210.286 117.714 0 182.857 72 182.857 168.571 0 126.286-56 233.143-139.429 233.143-45.714 0-80-37.714-69.143-84.571 13.143-55.429 38.857-115.429 38.857-155.429 0-36-19.429-66.286-59.429-66.286-46.857 0-84.571 48.571-84.571 113.714 0 0 0 41.714 14.286 69.714-48 203.429-56.571 238.857-56.571 238.857-8 33.143-8.571 70.286-7.429 101.143-154.857-68-262.857-222.286-262.857-402.286 0-242.286 196.571-438.857 438.857-438.857s438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pinterest"
+ ],
+ "defaultCode": 61650,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "pinterest",
+ "id": 186,
+ "order": 1042,
+ "prevSize": 28,
+ "code": 61650
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 186
+ },
+ {
+ "icon": {
+ "paths": [
+ "M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-414.286c18.857-26.857 49.714-73.143 61.714-120 0 0 5.143-19.429 30.286-119.429 15.429 29.143 59.429 54.286 106.286 54.286 139.429 0 234.286-127.429 234.286-297.714 0-128.571-109.143-248.571-274.857-248.571-206.286 0-310.286 148-310.286 271.429 0 74.286 28.571 140.571 89.143 165.714 9.714 4 18.857 0 21.714-10.857 1.714-7.429 6.286-26.857 8.571-34.857 2.857-10.857 1.714-14.857-6.286-24-17.143-21.143-28.571-47.429-28.571-85.714 0-109.714 82.286-207.429 213.714-207.429 116.571 0 180.571 70.857 180.571 166.286 0 125.143-55.429 230.857-137.714 230.857-45.143 0-79.429-37.714-68.571-84 13.143-54.857 38.286-114.286 38.286-153.714 0-35.429-18.857-65.143-58.286-65.143-46.286 0-83.429 48-83.429 112 0 0 0 41.143 13.714 69.143-47.429 201.143-56 236.571-56 236.571-12.571 52.571-7.429 113.714-4 145.143h-104.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pinterest-square"
+ ],
+ "defaultCode": 61651,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "pinterest-square",
+ "id": 187,
+ "order": 1043,
+ "prevSize": 28,
+ "code": 61651
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 187
+ },
+ {
+ "icon": {
+ "paths": [
+ "M524 517.143c0-14.286-1.714-25.714-3.429-36.571h-206.857v75.429h124c-4.571 32-37.143 94.286-124 94.286-75.429 0-136.571-61.714-136.571-138.286s61.143-138.286 136.571-138.286c42.286 0 70.857 17.714 87.429 33.714l59.429-57.714c-38.286-35.429-88-57.143-146.857-57.143-121.714 0-219.429 98.286-219.429 219.429s97.714 219.429 219.429 219.429c126.286 0 210.286-89.143 210.286-214.286zM721.143 543.429h62.286v-62.857h-62.286v-62.857h-62.857v62.857h-62.857v62.857h62.857v62.857h62.857v-62.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "google-plus-square"
+ ],
+ "defaultCode": 61652,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "google-plus-square",
+ "id": 188,
+ "order": 1044,
+ "prevSize": 28,
+ "code": 61652
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 188
+ },
+ {
+ "icon": {
+ "paths": [
+ "M821.143 521.714c0 239.429-160.571 409.143-402.286 409.143-231.429 0-418.857-187.429-418.857-418.857s187.429-418.857 418.857-418.857c113.143 0 207.429 41.143 280.571 109.714l-113.714 109.143c-30.857-29.714-85.143-64.571-166.857-64.571-142.857 0-259.429 118.286-259.429 264.571s116.571 264.571 259.429 264.571c165.714 0 228-119.429 237.714-180.571h-237.714v-144h395.429c4 21.143 6.857 42.286 6.857 69.714zM1316.571 452v120h-119.429v119.429h-120v-119.429h-119.429v-120h119.429v-119.429h120v119.429h119.429z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "google-plus"
+ ],
+ "defaultCode": 61653,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "google-plus",
+ "id": 189,
+ "order": 1045,
+ "prevSize": 28,
+ "code": 61653
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 189
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 658.286h219.429v-54.857h-73.143v-256h-65.143l-84.571 78.286 44 45.714c13.714-12 22.286-18.286 31.429-32.571h1.143v164.571h-73.143v54.857zM731.429 512c0 104-62.857 237.714-182.857 237.714s-182.857-133.714-182.857-237.714 62.857-237.714 182.857-237.714 182.857 133.714 182.857 237.714zM1024 658.286v-292.571c-80.571 0-146.286-65.714-146.286-146.286h-658.286c0 80.571-65.714 146.286-146.286 146.286v292.571c80.571 0 146.286 65.714 146.286 146.286h658.286c0-80.571 65.714-146.286 146.286-146.286zM1097.143 182.857v658.286c0 20-16.571 36.571-36.571 36.571h-1024c-20 0-36.571-16.571-36.571-36.571v-658.286c0-20 16.571-36.571 36.571-36.571h1024c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "money"
+ ],
+ "defaultCode": 61654,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "money",
+ "id": 190,
+ "order": 1046,
+ "prevSize": 28,
+ "code": 61654
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 190
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 402.286c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-down"
+ ],
+ "defaultCode": 61655,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "caret-down",
+ "id": 191,
+ "order": 1047,
+ "prevSize": 28,
+ "code": 61655
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 191
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 694.857c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-up"
+ ],
+ "defaultCode": 61656,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "caret-up",
+ "id": 192,
+ "order": 1048,
+ "prevSize": 28,
+ "code": 61656
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 192
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 256v512c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 402.2857142857143,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-left"
+ ],
+ "defaultCode": 61657,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "caret-left",
+ "id": 193,
+ "order": 1049,
+ "prevSize": 28,
+ "code": 61657
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 193
+ },
+ {
+ "icon": {
+ "paths": [
+ "M329.143 512c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-512c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 329.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-right"
+ ],
+ "defaultCode": 61658,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "caret-right",
+ "id": 194,
+ "order": 1050,
+ "prevSize": 28,
+ "code": 61658
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 194
+ },
+ {
+ "icon": {
+ "paths": [
+ "M91.429 877.714h347.429v-658.286h-365.714v640c0 9.714 8.571 18.286 18.286 18.286zM877.714 859.429v-640h-365.714v658.286h347.429c9.714 0 18.286-8.571 18.286-18.286zM950.857 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-768c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h768c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "columns"
+ ],
+ "defaultCode": 61659,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "columns",
+ "id": 195,
+ "order": 1051,
+ "prevSize": 28,
+ "code": 61659
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 195
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 621.714c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571zM585.143 402.286c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort",
+ "unsorted"
+ ],
+ "defaultCode": 61660,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sort, unsorted",
+ "id": 196,
+ "order": 1052,
+ "prevSize": 28,
+ "code": 61660
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 196
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 621.714c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-desc",
+ "sort-down"
+ ],
+ "defaultCode": 61661,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sort-desc, sort-down",
+ "id": 197,
+ "order": 1053,
+ "prevSize": 28,
+ "code": 61661
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 197
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 402.286c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-asc",
+ "sort-up"
+ ],
+ "defaultCode": 61662,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sort-asc, sort-up",
+ "id": 198,
+ "order": 1054,
+ "prevSize": 28,
+ "code": 61662
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 198
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 405.714v453.714c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-453.714c17.143 18.857 36.571 35.429 57.714 49.714 94.857 64.571 190.857 129.143 284 197.143 48 35.429 107.429 78.857 169.714 78.857h1.143c62.286 0 121.714-43.429 169.714-78.857 93.143-67.429 189.143-132.571 284.571-197.143 20.571-14.286 40-30.857 57.143-49.714zM1024 237.714c0 64-47.429 121.714-97.714 156.571-89.143 61.714-178.857 123.429-267.429 185.714-37.143 25.714-100 78.286-146.286 78.286h-1.143c-46.286 0-109.143-52.571-146.286-78.286-88.571-62.286-178.286-124-266.857-185.714-40.571-27.429-98.286-92-98.286-144 0-56 30.286-104 91.429-104h841.143c49.714 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "envelope"
+ ],
+ "defaultCode": 61664,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "envelope",
+ "id": 199,
+ "order": 1055,
+ "prevSize": 28,
+ "code": 61664
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 199
+ },
+ {
+ "icon": {
+ "paths": [
+ "M199.429 357.143v566.286h-188.571v-566.286h188.571zM211.429 182.286c0.571 54.286-40.571 97.714-106.286 97.714v0h-1.143c-63.429 0-104-43.429-104-97.714 0-55.429 42.286-97.714 106.286-97.714 64.571 0 104.571 42.286 105.143 97.714zM877.714 598.857v324.571h-188v-302.857c0-76-27.429-128-95.429-128-52 0-82.857 34.857-96.571 68.571-4.571 12.571-6.286 29.143-6.286 46.286v316h-188c2.286-513.143 0-566.286 0-566.286h188v82.286h-1.143c24.571-38.857 69.143-95.429 170.857-95.429 124 0 216.571 81.143 216.571 254.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "linkedin"
+ ],
+ "defaultCode": 61665,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "linkedin",
+ "id": 200,
+ "order": 1056,
+ "prevSize": 28,
+ "code": 61665
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 200
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 512c0 241.714-197.143 438.857-438.857 438.857-130.857 0-254.286-57.714-337.714-158.286-5.714-7.429-5.143-18.286 1.143-24.571l78.286-78.857c4-3.429 9.143-5.143 14.286-5.143 5.143 0.571 10.286 2.857 13.143 6.857 56 72.571 140 113.714 230.857 113.714 161.143 0 292.571-131.429 292.571-292.571s-131.429-292.571-292.571-292.571c-74.857 0-145.714 28.571-198.857 78.286l78.286 78.857c10.857 10.286 13.714 26.286 8 39.429-5.714 13.714-18.857 22.857-33.714 22.857h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-14.857 9.143-28 22.857-33.714 13.143-5.714 29.143-2.857 39.429 8l74.286 73.714c80.571-76 189.714-121.143 302.286-121.143 241.714 0 438.857 197.143 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rotate-left",
+ "undo"
+ ],
+ "defaultCode": 61666,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "rotate-left, undo",
+ "id": 201,
+ "order": 1057,
+ "prevSize": 28,
+ "code": 61666
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 201
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1012 877.714c0 19.429-8 38.286-21.143 51.429l-61.143 61.714c-13.714 13.143-32.571 21.143-52 21.143s-38.286-8-51.429-21.143l-207.429-208c-13.714-13.143-21.714-32-21.714-51.429 0-21.714 9.143-39.429 24.571-54.857l-146.286-146.286-72 72c-5.143 5.143-12 8-19.429 8s-14.286-2.857-19.429-8c17.143 17.143 33.143 29.714 33.143 56 0 14.857-5.714 28-16 38.857-19.429 20.571-40 48-70.857 48-14.286 0-28.571-5.714-38.857-16l-233.143-233.143c-10.286-10.286-16-24.571-16-38.857 0-30.857 27.429-51.429 48-70.857 10.857-10.286 24-16 38.857-16 26.286 0 38.857 16 56 33.143-5.143-5.143-8-12-8-19.429s2.857-14.286 8-19.429l198.857-198.857c5.143-5.143 12-8 19.429-8s14.286 2.857 19.429 8c-17.143-17.143-33.143-29.714-33.143-56 0-14.857 5.714-28 16-38.857 19.429-20.571 40-48 70.857-48 14.286 0 28.571 5.714 38.857 16l233.143 233.143c10.286 10.286 16 24.571 16 38.857 0 30.857-27.429 51.429-48 70.857-10.857 10.286-24 16-38.857 16-26.286 0-38.857-16-56-33.143 5.143 5.143 8 12 8 19.429s-2.857 14.286-8 19.429l-72 72 146.286 146.286c15.429-15.429 33.143-24.571 54.857-24.571 19.429 0 38.286 8 52 21.143l207.429 207.429c13.143 13.714 21.143 32.571 21.143 52z"
+ ],
+ "width": 1034.8251428571427,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gavel",
+ "legal"
+ ],
+ "defaultCode": 61667,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "gavel, legal",
+ "id": 202,
+ "order": 1058,
+ "prevSize": 28,
+ "code": 61667
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 202
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM329.143 402.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM573.714 677.143l57.714-218.286c4.571-19.429-6.857-39.429-26.286-44.571v0c-19.429-5.143-39.429 6.857-44.571 26.286l-57.714 218.286c-45.143 3.429-84.571 34.857-97.143 81.143-15.429 58.857 20 118.857 78.286 134.286 58.857 15.429 118.857-20 134.286-78.286 12-46.286-7.429-93.143-44.571-118.857zM950.857 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM585.143 292.571c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM841.143 402.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM1024 658.286c0 98.286-28 193.143-80.571 276-6.857 10.286-18.286 16.571-30.857 16.571h-801.143c-12.571 0-24-6.286-30.857-16.571-52.571-82.286-80.571-177.714-80.571-276 0-282.286 229.714-512 512-512s512 229.714 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dashboard",
+ "tachometer"
+ ],
+ "defaultCode": 61668,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "dashboard, tachometer",
+ "id": 203,
+ "order": 1059,
+ "prevSize": 28,
+ "code": 61668
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 203
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 219.429c-237.714 0-438.857 133.714-438.857 292.571 0 85.143 57.143 166.286 156 222.286l49.714 28.571-15.429 54.857c-10.857 40.571-25.143 72-40 98.286 57.714-24 110.286-56.571 157.143-97.714l24.571-21.714 32.571 3.429c24.571 2.857 49.714 4.571 74.286 4.571 237.714 0 438.857-133.714 438.857-292.571s-201.143-292.571-438.857-292.571zM1024 512c0 202.286-229.143 365.714-512 365.714-28 0-56-1.714-82.857-4.571-74.857 66.286-164 113.143-262.857 138.286-20.571 5.714-42.857 9.714-65.143 12.571h-2.857c-11.429 0-21.714-9.143-24.571-21.714v-0.571c-2.857-14.286 6.857-22.857 15.429-33.143 36-40.571 77.143-74.857 104-170.286-117.714-66.857-193.143-170.286-193.143-286.286 0-202.286 229.143-365.714 512-365.714v0c282.857 0 512 163.429 512 365.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "comment-o"
+ ],
+ "defaultCode": 61669,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "comment-o",
+ "id": 204,
+ "order": 1060,
+ "prevSize": 28,
+ "code": 61669
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 204
+ },
+ {
+ "icon": {
+ "paths": [
+ "M402.286 219.429c-178.286 0-329.143 100.571-329.143 219.429 0 62.857 42.286 123.429 115.429 165.714l55.429 32-20 48c12-6.857 24-14.286 35.429-22.286l25.143-17.714 30.286 5.714c28.571 5.143 57.714 8 87.429 8 178.286 0 329.143-100.571 329.143-219.429s-150.857-219.429-329.143-219.429zM402.286 146.286c222.286 0 402.286 130.857 402.286 292.571s-180 292.571-402.286 292.571c-34.857 0-68.571-3.429-100.571-9.143-47.429 33.714-101.143 58.286-158.857 73.143-15.429 4-32 6.857-49.143 9.143h-1.714c-8.571 0-16.571-6.857-18.286-16.571v0c-2.286-10.857 5.143-17.714 11.429-25.143 22.286-25.143 47.429-47.429 66.857-94.857-92.571-53.714-152-136.571-152-229.143 0-161.714 180-292.571 402.286-292.571zM872 814.286c19.429 47.429 44.571 69.714 66.857 94.857 6.286 7.429 13.714 14.286 11.429 25.143v0c-2.286 10.286-10.857 17.714-20 16.571-17.143-2.286-33.714-5.143-49.143-9.143-57.714-14.857-111.429-39.429-158.857-73.143-32 5.714-65.714 9.143-100.571 9.143-103.429 0-198.286-28.571-269.714-75.429 16.571 1.143 33.714 2.286 50.286 2.286 122.857 0 238.857-35.429 327.429-99.429 95.429-69.714 148-164 148-266.286 0-29.714-4.571-58.857-13.143-86.857 96.571 53.143 159.429 137.714 159.429 233.143 0 93.143-59.429 175.429-152 229.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "comments-o"
+ ],
+ "defaultCode": 61670,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "comments-o",
+ "id": 205,
+ "order": 1061,
+ "prevSize": 28,
+ "code": 61670
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 205
+ },
+ {
+ "icon": {
+ "paths": [
+ "M505.714 323.429c6.286 6.857 8 16.571 4 25.143l-308.571 661.143c-4.571 8.571-13.714 14.286-24 14.286-2.286 0-5.143-0.571-8-1.143-12.571-4-20-16-17.143-28l112.571-461.714-232 57.714c-2.286 0.571-4.571 0.571-6.857 0.571-6.286 0-13.143-2.286-17.714-6.286-6.857-5.714-9.143-14.286-7.429-22.286l114.857-471.429c2.857-10.857 13.143-18.286 25.143-18.286h187.429c14.286 0 25.714 10.857 25.714 24 0 3.429-1.143 6.857-2.857 10.286l-97.714 264.571 226.286-56c2.286-0.571 4.571-1.143 6.857-1.143 7.429 0 14.286 3.429 19.429 8.571z"
+ ],
+ "width": 512.5851428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bolt",
+ "flash"
+ ],
+ "defaultCode": 61671,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bolt, flash",
+ "id": 206,
+ "order": 1062,
+ "prevSize": 28,
+ "code": 61671
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 206
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 713.143v182.857c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h54.857v-109.714h-292.571v109.714h54.857c30.286 0 54.857 24.571 54.857 54.857v182.857c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h54.857v-109.714h-292.571v109.714h54.857c30.286 0 54.857 24.571 54.857 54.857v182.857c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h54.857v-109.714c0-40 33.143-73.143 73.143-73.143h292.571v-109.714h-54.857c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857v182.857c0 30.286-24.571 54.857-54.857 54.857h-54.857v109.714h292.571c40 0 73.143 33.143 73.143 73.143v109.714h54.857c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sitemap"
+ ],
+ "defaultCode": 61672,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sitemap",
+ "id": 207,
+ "order": 1063,
+ "prevSize": 28,
+ "code": 61672
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 207
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 473.143v331.429c0 79.429-66.857 146.286-146.286 146.286s-146.286-66.857-146.286-146.286c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571c0 38.286 34.857 73.143 73.143 73.143s73.143-34.857 73.143-73.143v-331.429c12-4 24-6.286 36.571-6.286s24.571 2.286 36.571 6.286zM950.857 488.571c0 9.714-8.571 18.286-18.286 18.286-5.143 0-9.143-2.286-13.143-5.714-33.143-30.857-64-52.571-111.429-52.571-54.286 0-101.143 33.714-132 76.571-6.857 9.714-12 20-18.286 29.714-4 6.286-8.571 9.714-16 9.714-8 0-12.571-3.429-16.571-9.714-6.286-9.714-11.429-20-18.286-29.714-30.857-42.857-77.143-76.571-131.429-76.571s-100.571 33.714-131.429 76.571c-6.857 9.714-12 20-18.286 29.714-4 6.286-8.571 9.714-16.571 9.714-7.429 0-12-3.429-16-9.714-6.286-9.714-11.429-20-18.286-29.714-30.857-42.857-77.714-76.571-132-76.571-47.429 0-78.286 21.714-111.429 52.571-4 3.429-8 5.714-13.143 5.714-9.714 0-18.286-8.571-18.286-18.286 0-1.714 0-2.857 0.571-4 52.571-216 261.143-338.286 474.857-338.286 212.571 0 423.429 122.286 474.857 338.286 0.571 1.143 0.571 2.286 0.571 4zM512 73.143v56c-12-0.571-24.571-1.143-36.571-1.143s-24.571 0.571-36.571 1.143v-56c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "umbrella"
+ ],
+ "defaultCode": 61673,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "umbrella",
+ "id": 208,
+ "order": 1064,
+ "prevSize": 28,
+ "code": 61673
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 208
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 950.857h512v-365.714h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-219.429v658.286zM585.143 128v-36.571c0-9.714-8.571-18.286-18.286-18.286h-402.286c-9.714 0-18.286 8.571-18.286 18.286v36.571c0 9.714 8.571 18.286 18.286 18.286h402.286c9.714 0 18.286-8.571 18.286-18.286zM731.429 512h170.857l-170.857-170.857v170.857zM1024 585.143v384c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-91.429h-310.857c-30.286 0-54.857-24.571-54.857-54.857v-768c0-30.286 24.571-54.857 54.857-54.857h621.714c30.286 0 54.857 24.571 54.857 54.857v187.429c7.429 4.571 14.286 9.714 20.571 16l233.143 233.143c21.714 21.714 38.857 63.429 38.857 93.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "clipboard",
+ "paste"
+ ],
+ "defaultCode": 61674,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "clipboard, paste",
+ "id": 209,
+ "order": 1065,
+ "prevSize": 28,
+ "code": 61674
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 209
+ },
+ {
+ "icon": {
+ "paths": [
+ "M420.571 329.143c0 9.714-8.571 18.286-18.286 18.286s-18.286-8.571-18.286-18.286c0-39.429-61.143-54.857-91.429-54.857-9.714 0-18.286-8.571-18.286-18.286s8.571-18.286 18.286-18.286c53.143 0 128 28 128 91.429zM512 329.143c0-114.286-116-182.857-219.429-182.857s-219.429 68.571-219.429 182.857c0 36.571 14.857 74.857 38.857 102.857 10.857 12.571 23.429 24.571 34.857 37.714 40.571 48.571 74.857 105.714 80.571 170.286h130.286c5.714-64.571 40-121.714 80.571-170.286 11.429-13.143 24-25.143 34.857-37.714 24-28 38.857-66.286 38.857-102.857zM585.143 329.143c0 58.857-19.429 109.714-58.857 153.143s-91.429 104.571-96 165.714c16.571 9.714 26.857 28 26.857 46.857 0 13.714-5.143 26.857-14.286 36.571 9.143 9.714 14.286 22.857 14.286 36.571 0 18.857-9.714 36-25.714 46.286 4.571 8 7.429 17.714 7.429 26.857 0 37.143-29.143 54.857-62.286 54.857-14.857 33.143-48 54.857-84 54.857s-69.143-21.714-84-54.857c-33.143 0-62.286-17.714-62.286-54.857 0-9.143 2.857-18.857 7.429-26.857-16-10.286-25.714-27.429-25.714-46.286 0-13.714 5.143-26.857 14.286-36.571-9.143-9.714-14.286-22.857-14.286-36.571 0-18.857 10.286-37.143 26.857-46.857-4.571-61.143-56.571-122.286-96-165.714s-58.857-94.286-58.857-153.143c0-155.429 148-256 292.571-256s292.571 100.571 292.571 256z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lightbulb-o"
+ ],
+ "defaultCode": 61675,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "lightbulb-o",
+ "id": 210,
+ "order": 1066,
+ "prevSize": 28,
+ "code": 61675
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 210
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 676.571v109.714c0 9.714-8.571 18.286-18.286 18.286h-786.286v109.714c0 9.714-8 18.286-18.286 18.286-5.143 0-9.714-2.286-13.714-5.714l-182.286-182.857c-3.429-3.429-5.143-8-5.143-12.571 0-5.143 1.714-9.714 5.143-13.143l182.857-182.857c3.429-3.429 8.571-5.143 13.143-5.143 9.714 0 18.286 8 18.286 18.286v109.714h786.286c9.714 0 18.286 8 18.286 18.286zM1024 365.714c0 4.571-1.714 9.714-5.143 13.143l-182.857 182.857c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8.571-18.286-18.286v-109.714h-786.286c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h786.286v-109.714c0-10.286 8-18.286 18.286-18.286 5.143 0 9.714 2.286 13.714 5.714l182.286 182.286c3.429 3.429 5.143 8.571 5.143 13.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exchange"
+ ],
+ "defaultCode": 61676,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "exchange",
+ "id": 211,
+ "order": 1067,
+ "prevSize": 28,
+ "code": 61676
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 211
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 530.286c0-10.286-8-18.286-18.286-18.286h-128v-201.143c0-9.714-8.571-18.286-18.286-18.286h-109.714c-9.714 0-18.286 8.571-18.286 18.286v201.143h-128c-10.286 0-18.286 8.571-18.286 18.286 0 4.571 1.714 9.714 5.143 13.143l201.143 201.143c3.429 3.429 8 5.143 13.143 5.143 4.571 0 9.714-1.714 13.143-5.143l200.571-200.571c3.429-4 5.714-8.571 5.714-13.714zM1097.143 658.286c0 121.143-98.286 219.429-219.429 219.429h-621.714c-141.143 0-256-114.857-256-256 0-99.429 57.714-189.714 147.429-231.429-0.571-8.571-1.143-16.571-1.143-24.571 0-161.714 130.857-292.571 292.571-292.571 118.857 0 225.714 72 270.857 181.714 26.286-22.857 60-35.429 94.857-35.429 80.571 0 146.286 65.714 146.286 146.286 0 28-8 55.429-23.429 78.857 99.429 23.429 169.714 112 169.714 213.714z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud-download"
+ ],
+ "defaultCode": 61677,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cloud-download",
+ "id": 212,
+ "order": 1068,
+ "prevSize": 28,
+ "code": 61677
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 212
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 493.714c0-4.571-1.714-9.714-5.143-13.143l-201.143-201.143c-3.429-3.429-8-5.143-13.143-5.143-4.571 0-9.714 1.714-13.143 5.143l-200.571 200.571c-3.429 4-5.714 8.571-5.714 13.714 0 10.286 8 18.286 18.286 18.286h128v201.143c0 9.714 8.571 18.286 18.286 18.286h109.714c9.714 0 18.286-8.571 18.286-18.286v-201.143h128c10.286 0 18.286-8.571 18.286-18.286zM1097.143 658.286c0 121.143-98.286 219.429-219.429 219.429h-621.714c-141.143 0-256-114.857-256-256 0-99.429 57.714-189.714 147.429-231.429-0.571-8.571-1.143-16.571-1.143-24.571 0-161.714 130.857-292.571 292.571-292.571 118.857 0 225.714 72 270.857 181.714 26.286-22.857 60-35.429 94.857-35.429 80.571 0 146.286 65.714 146.286 146.286 0 28-8 55.429-23.429 78.857 99.429 23.429 169.714 112 169.714 213.714z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud-upload"
+ ],
+ "defaultCode": 61678,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cloud-upload",
+ "id": 213,
+ "order": 1069,
+ "prevSize": 28,
+ "code": 61678
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 213
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 768c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM804.571 802.857c0 93.143-61.143 148-152.571 148h-499.429c-91.429 0-152.571-54.857-152.571-148 0-113.714 22.857-293.143 158.857-322.857-9.143 21.714-12.571 45.143-12.571 68.571v116c-44 15.429-73.143 57.143-73.143 103.429 0 60.571 49.143 109.714 109.714 109.714s109.714-49.143 109.714-109.714c0-46.286-29.714-88-73.143-103.429v-116c0-18.857 1.714-37.714 14.286-53.143 48 37.714 107.429 59.429 168.571 59.429s120.571-21.714 168.571-59.429c12.571 15.429 14.286 34.286 14.286 53.143v36.571c-80.571 0-146.286 65.714-146.286 146.286v50.857c-11.429 10.286-18.286 25.143-18.286 40.571 0 30.286 24.571 54.857 54.857 54.857s54.857-24.571 54.857-54.857c0-15.429-6.857-30.286-18.286-40.571v-50.857c0-40 33.143-73.143 73.143-73.143s73.143 33.143 73.143 73.143v50.857c-11.429 10.286-18.286 25.143-18.286 40.571 0 30.286 24.571 54.857 54.857 54.857s54.857-24.571 54.857-54.857c0-15.429-6.857-30.286-18.286-40.571v-50.857c0-52-28-100.571-73.143-126.286 0-41.714 4-86.286-12.571-125.143 136 29.714 158.857 209.143 158.857 322.857zM621.714 292.571c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-md"
+ ],
+ "defaultCode": 61680,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "user-md",
+ "id": 214,
+ "order": 1070,
+ "prevSize": 28,
+ "code": 61680
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 214
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 402.286c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 402.286c0 48-30.286 88-73.143 103.429v225.714c0 121.143-114.857 219.429-256 219.429s-256-98.286-256-219.429v-75.429c-124-15.429-219.429-106.857-219.429-217.143v-292.571c0-20 16.571-36.571 36.571-36.571 3.429 0 6.286 0.571 9.143 1.143 12.571-22.286 36.571-37.714 64-37.714 40.571 0 73.143 32.571 73.143 73.143s-32.571 73.143-73.143 73.143c-13.143 0-25.714-4-36.571-10.286v229.714c0 80.571 82.286 146.286 182.857 146.286s182.857-65.714 182.857-146.286v-229.714c-10.857 6.286-23.429 10.286-36.571 10.286-40.571 0-73.143-32.571-73.143-73.143s32.571-73.143 73.143-73.143c27.429 0 51.429 15.429 64 37.714 2.857-0.571 5.714-1.143 9.143-1.143 20 0 36.571 16.571 36.571 36.571v292.571c0 110.286-95.429 201.714-219.429 217.143v75.429c0 80.571 82.286 146.286 182.857 146.286s182.857-65.714 182.857-146.286v-225.714c-42.857-15.429-73.143-55.429-73.143-103.429 0-60.571 49.143-109.714 109.714-109.714s109.714 49.143 109.714 109.714z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stethoscope"
+ ],
+ "defaultCode": 61681,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "stethoscope",
+ "id": 215,
+ "order": 1071,
+ "prevSize": 28,
+ "code": 61681
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 215
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 219.429h292.571v-73.143h-292.571v73.143zM164.571 219.429v731.429h-36.571c-70.286 0-128-57.714-128-128v-475.429c0-70.286 57.714-128 128-128h36.571zM804.571 219.429v731.429h-585.143v-731.429h73.143v-91.429c0-30.286 24.571-54.857 54.857-54.857h329.143c30.286 0 54.857 24.571 54.857 54.857v91.429h73.143zM1024 347.429v475.429c0 70.286-57.714 128-128 128h-36.571v-731.429h36.571c70.286 0 128 57.714 128 128z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "suitcase"
+ ],
+ "defaultCode": 61682,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "suitcase",
+ "id": 216,
+ "order": 1072,
+ "prevSize": 28,
+ "code": 61682
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 216
+ },
+ {
+ "icon": {
+ "paths": [
+ "M521.143 969.143c0-5.143-4-9.143-9.143-9.143-45.143 0-82.286-37.143-82.286-82.286 0-5.143-4-9.143-9.143-9.143s-9.143 4-9.143 9.143c0 55.429 45.143 100.571 100.571 100.571 5.143 0 9.143-4 9.143-9.143zM987.429 804.571c0 40-33.143 73.143-73.143 73.143h-256c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-256c-40 0-73.143-33.143-73.143-73.143 84.571-71.429 182.857-199.429 182.857-475.429 0-109.714 90.857-229.714 242.286-252-2.857-6.857-4.571-14.286-4.571-22.286 0-30.286 24.571-54.857 54.857-54.857s54.857 24.571 54.857 54.857c0 8-1.714 15.429-4.571 22.286 151.429 22.286 242.286 142.286 242.286 252 0 276 98.286 404 182.857 475.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bell"
+ ],
+ "defaultCode": 61683,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bell",
+ "id": 217,
+ "order": 1073,
+ "prevSize": 28,
+ "code": 61683
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 217
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 365.714c0-60.571-49.143-109.714-109.714-109.714h-36.571v219.429h36.571c60.571 0 109.714-49.143 109.714-109.714zM0 804.571h1024c0 80.571-65.714 146.286-146.286 146.286h-731.429c-80.571 0-146.286-65.714-146.286-146.286zM1060.571 365.714c0 121.143-98.286 219.429-219.429 219.429h-36.571v18.286c0 70.286-57.714 128-128 128h-402.286c-70.286 0-128-57.714-128-128v-420.571c0-20 16.571-36.571 36.571-36.571h658.286c121.143 0 219.429 98.286 219.429 219.429z"
+ ],
+ "width": 1060.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "coffee"
+ ],
+ "defaultCode": 61684,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "coffee",
+ "id": 218,
+ "order": 1074,
+ "prevSize": 28,
+ "code": 61684
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 218
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 36.571v365.714c0 46.286-29.714 88-73.143 103.429v445.143c0 40-33.143 73.143-73.143 73.143h-73.143c-40 0-73.143-33.143-73.143-73.143v-445.143c-43.429-15.429-73.143-57.143-73.143-103.429v-365.714c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v237.714c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571v-237.714c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v237.714c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571v-237.714c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571zM804.571 36.571v914.286c0 40-33.143 73.143-73.143 73.143h-73.143c-40 0-73.143-33.143-73.143-73.143v-292.571h-128c-9.714 0-18.286-8.571-18.286-18.286v-457.143c0-100.571 82.286-182.857 182.857-182.857h146.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cutlery"
+ ],
+ "defaultCode": 61685,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cutlery",
+ "id": 219,
+ "order": 1075,
+ "prevSize": 28,
+ "code": 61685
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 219
+ },
+ {
+ "icon": {
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM219.429 457.143c0-10.286 8-18.286 18.286-18.286h402.286c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571zM640 585.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286zM640 731.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-text-o"
+ ],
+ "defaultCode": 61686,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "file-text-o",
+ "id": 220,
+ "order": 1076,
+ "prevSize": 28,
+ "code": 61686
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 220
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 749.714v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 749.714v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 310.857v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 310.857v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 164.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 310.857v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 164.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 310.857v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 164.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 164.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 950.857h219.429v-877.714h-658.286v877.714h219.429v-128c0-9.714 8.571-18.286 18.286-18.286h182.857c9.714 0 18.286 8.571 18.286 18.286v128zM804.571 36.571v950.857c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-950.857c0-20 16.571-36.571 36.571-36.571h731.429c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "building-o"
+ ],
+ "defaultCode": 61687,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "building-o",
+ "id": 221,
+ "order": 1077,
+ "prevSize": 28,
+ "code": 61687
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 221
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 749.714v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 749.714v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 950.857h219.429v-658.286h-146.286v18.286c0 30.286-24.571 54.857-54.857 54.857h-256c-30.286 0-54.857-24.571-54.857-54.857v-18.286h-146.286v658.286h219.429v-128c0-9.714 8.571-18.286 18.286-18.286h182.857c9.714 0 18.286 8.571 18.286 18.286v128zM512 274.286v-182.857c0-9.714-8.571-18.286-18.286-18.286h-36.571c-9.714 0-18.286 8.571-18.286 18.286v54.857h-73.143v-54.857c0-9.714-8.571-18.286-18.286-18.286h-36.571c-9.714 0-18.286 8.571-18.286 18.286v182.857c0 9.714 8.571 18.286 18.286 18.286h36.571c9.714 0 18.286-8.571 18.286-18.286v-54.857h73.143v54.857c0 9.714 8.571 18.286 18.286 18.286h36.571c9.714 0 18.286-8.571 18.286-18.286zM804.571 256v731.429c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-731.429c0-20 16.571-36.571 36.571-36.571h182.857v-164.571c0-30.286 24.571-54.857 54.857-54.857h256c30.286 0 54.857 24.571 54.857 54.857v164.571h182.857c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hospital-o"
+ ],
+ "defaultCode": 61688,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hospital-o",
+ "id": 222,
+ "order": 1078,
+ "prevSize": 28,
+ "code": 61688
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 222
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 804.571c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM146.286 512h219.429v-146.286h-90.286c-3.429 0.571-9.714 2.857-12.571 5.143l-111.429 111.429c-1.714 2.857-4.571 9.143-5.143 12.571v17.143zM877.714 804.571c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM950.857 420.571v-109.714c0-10.286-8-18.286-18.286-18.286h-128v-128c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v128h-128c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h128v128c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286v-128h128c10.286 0 18.286-8 18.286-18.286zM1097.143 109.714v658.286c0 20-16.571 36.571-36.571 36.571h-109.714c0 80.571-65.143 146.286-146.286 146.286-80.571 0-146.286-65.714-146.286-146.286h-219.429c0 80.571-65.143 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-73.143c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571v-237.714c0-20 11.429-48 25.714-62.286l113.143-113.143c14.286-14.286 42.286-25.714 62.286-25.714h91.429v-182.857c0-20 16.571-36.571 36.571-36.571h658.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1133.7142857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ambulance"
+ ],
+ "defaultCode": 61689,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "ambulance",
+ "id": 223,
+ "order": 1079,
+ "prevSize": 28,
+ "code": 61689
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 223
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 640v-109.714c0-10.286-8-18.286-18.286-18.286h-128v-128c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v128h-128c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h128v128c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286v-128h128c10.286 0 18.286-8 18.286-18.286zM365.714 219.429h292.571v-73.143h-292.571v73.143zM146.286 219.429v731.429h-18.286c-70.286 0-128-57.714-128-128v-475.429c0-70.286 57.714-128 128-128h18.286zM822.857 219.429v731.429h-621.714v-731.429h91.429v-91.429c0-30.286 24.571-54.857 54.857-54.857h329.143c30.286 0 54.857 24.571 54.857 54.857v91.429h91.429zM1024 347.429v475.429c0 70.286-57.714 128-128 128h-18.286v-731.429h18.286c70.286 0 128 57.714 128 128z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "medkit"
+ ],
+ "defaultCode": 61690,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "medkit",
+ "id": 224,
+ "order": 1080,
+ "prevSize": 28,
+ "code": 61690
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 224
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1097.143 548.571c0 0 0 18.286-164.571 54.857l-201.143 18.286-128 36.571h-36.571l-167.429 201.143h39.429c20 0 36.571 4 36.571 9.143s-16.571 9.143-36.571 9.143h-182.857v-18.286h36.571v-237.714h-91.429l-109.714 128h-54.857l-18.286-18.286v-109.714h18.286v-18.286h73.143v-4.571l-109.714-13.714v-73.143l109.714-13.714v-4.571h-73.143v-18.286h-18.286v-109.714l18.286-18.286h54.857l109.714 128h91.429v-237.714h-36.571v-18.286h182.857c20 0 36.571 4 36.571 9.143s-16.571 9.143-36.571 9.143h-39.429l167.429 201.143h36.571l128 36.571 201.143 18.286c164.571 36.571 164.571 54.857 164.571 54.857z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fighter-jet"
+ ],
+ "defaultCode": 61691,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "fighter-jet",
+ "id": 225,
+ "order": 1081,
+ "prevSize": 28,
+ "code": 61691
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 225
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 512v-219.429h-146.286v146.286c0 40.571 32.571 73.143 73.143 73.143h73.143zM950.857 768v109.714h-658.286v-109.714l73.143-109.714h-73.143c-121.143 0-219.429-98.286-219.429-219.429v-182.857l-36.571-36.571 18.286-73.143h274.286l18.286-73.143h548.571l18.286 109.714-36.571 18.286v457.143z"
+ ],
+ "width": 987.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "beer"
+ ],
+ "defaultCode": 61692,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "beer",
+ "id": 226,
+ "order": 1082,
+ "prevSize": 28,
+ "code": 61692
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 226
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 768v-512c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v182.857h-292.571v-182.857c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v512c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571v-182.857h292.571v182.857c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "h-square"
+ ],
+ "defaultCode": 61693,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "h-square",
+ "id": 227,
+ "order": 1083,
+ "prevSize": 28,
+ "code": 61693
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 227
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-182.857v-182.857c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v182.857h-182.857c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h182.857v182.857c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571v-182.857h182.857c20 0 36.571-16.571 36.571-36.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus-square"
+ ],
+ "defaultCode": 61694,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "plus-square",
+ "id": 228,
+ "order": 1084,
+ "prevSize": 28,
+ "code": 61694
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 228
+ },
+ {
+ "icon": {
+ "paths": [
+ "M358.286 786.286c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143s-2.286 9.714-5.714 13.143l-224.571 224.571 224.571 224.571c3.429 3.429 5.714 8.571 5.714 13.143zM577.714 786.286c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143s-2.286 9.714-5.714 13.143l-224.571 224.571 224.571 224.571c3.429 3.429 5.714 8.571 5.714 13.143z"
+ ],
+ "width": 603.4285714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-double-left"
+ ],
+ "defaultCode": 61696,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "angle-double-left",
+ "id": 229,
+ "order": 1085,
+ "prevSize": 28,
+ "code": 61696
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 229
+ },
+ {
+ "icon": {
+ "paths": [
+ "M340 548.571c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l224.571-224.571-224.571-224.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143zM559.429 548.571c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l224.571-224.571-224.571-224.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z"
+ ],
+ "width": 566.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-double-right"
+ ],
+ "defaultCode": 61697,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "angle-double-right",
+ "id": 230,
+ "order": 1086,
+ "prevSize": 28,
+ "code": 61697
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 230
+ },
+ {
+ "icon": {
+ "paths": [
+ "M614.286 749.714c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8 5.714-13.143 5.714-4.571 0-9.714-2.286-13.143-5.714l-224.571-224.571-224.571 224.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143zM614.286 530.286c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8 5.714-13.143 5.714-4.571 0-9.714-2.286-13.143-5.714l-224.571-224.571-224.571 224.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-double-up"
+ ],
+ "defaultCode": 61698,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "angle-double-up",
+ "id": 231,
+ "order": 1087,
+ "prevSize": 28,
+ "code": 61698
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 231
+ },
+ {
+ "icon": {
+ "paths": [
+ "M614.286 493.714c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8-5.714 13.143-5.714 4.571 0 9.714 2.286 13.143 5.714l224.571 224.571 224.571-224.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143zM614.286 274.286c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8-5.714 13.143-5.714 4.571 0 9.714 2.286 13.143 5.714l224.571 224.571 224.571-224.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-double-down"
+ ],
+ "defaultCode": 61699,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "angle-double-down",
+ "id": 232,
+ "order": 1088,
+ "prevSize": 28,
+ "code": 61699
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 232
+ },
+ {
+ "icon": {
+ "paths": [
+ "M358.286 310.857c0 4.571-2.286 9.714-5.714 13.143l-224.571 224.571 224.571 224.571c3.429 3.429 5.714 8.571 5.714 13.143s-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8 5.714 13.143z"
+ ],
+ "width": 384,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-left"
+ ],
+ "defaultCode": 61700,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "angle-left",
+ "id": 233,
+ "order": 1089,
+ "prevSize": 28,
+ "code": 61700
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 233
+ },
+ {
+ "icon": {
+ "paths": [
+ "M340 548.571c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8-5.714-13.143 0-4.571 2.286-9.714 5.714-13.143l224.571-224.571-224.571-224.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z"
+ ],
+ "width": 347.4285714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-right"
+ ],
+ "defaultCode": 61701,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "angle-right",
+ "id": 234,
+ "order": 1090,
+ "prevSize": 28,
+ "code": 61701
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 234
+ },
+ {
+ "icon": {
+ "paths": [
+ "M614.286 676.571c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8 5.714-13.143 5.714-4.571 0-9.714-2.286-13.143-5.714l-224.571-224.571-224.571 224.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-up"
+ ],
+ "defaultCode": 61702,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "angle-up",
+ "id": 235,
+ "order": 1091,
+ "prevSize": 28,
+ "code": 61702
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 235
+ },
+ {
+ "icon": {
+ "paths": [
+ "M614.286 420.571c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8-5.714 13.143-5.714 4.571 0 9.714 2.286 13.143 5.714l224.571 224.571 224.571-224.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angle-down"
+ ],
+ "defaultCode": 61703,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "angle-down",
+ "id": 236,
+ "order": 1092,
+ "prevSize": 28,
+ "code": 61703
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 236
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 566.857v-475.429c0-9.714-8.571-18.286-18.286-18.286h-914.286c-9.714 0-18.286 8.571-18.286 18.286v475.429c0 9.714 8.571 18.286 18.286 18.286h914.286c9.714 0 18.286-8.571 18.286-18.286zM1097.143 91.429v621.714c0 50.286-41.143 91.429-91.429 91.429h-310.857c0 48.571 36.571 89.714 36.571 109.714s-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571 0-21.143 36.571-60 36.571-109.714h-310.857c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h914.286c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "desktop"
+ ],
+ "defaultCode": 61704,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "desktop",
+ "id": 237,
+ "order": 1093,
+ "prevSize": 28,
+ "code": 61704
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 237
+ },
+ {
+ "icon": {
+ "paths": [
+ "M237.714 731.429c-50.286 0-91.429-41.143-91.429-91.429v-402.286c0-50.286 41.143-91.429 91.429-91.429h621.714c50.286 0 91.429 41.143 91.429 91.429v402.286c0 50.286-41.143 91.429-91.429 91.429h-621.714zM219.429 237.714v402.286c0 9.714 8.571 18.286 18.286 18.286h621.714c9.714 0 18.286-8.571 18.286-18.286v-402.286c0-9.714-8.571-18.286-18.286-18.286h-621.714c-9.714 0-18.286 8.571-18.286 18.286zM1005.714 768h91.429v54.857c0 30.286-41.143 54.857-91.429 54.857h-914.286c-50.286 0-91.429-24.571-91.429-54.857v-54.857h1005.714zM594.286 822.857c5.143 0 9.143-4 9.143-9.143s-4-9.143-9.143-9.143h-91.429c-5.143 0-9.143 4-9.143 9.143s4 9.143 9.143 9.143h91.429z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "laptop"
+ ],
+ "defaultCode": 61705,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "laptop",
+ "id": 238,
+ "order": 1094,
+ "prevSize": 28,
+ "code": 61705
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 238
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 804.571c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM585.143 713.143v-548.571c0-9.714-8.571-18.286-18.286-18.286h-475.429c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h475.429c9.714 0 18.286-8.571 18.286-18.286zM658.286 164.571v621.714c0 50.286-41.143 91.429-91.429 91.429h-475.429c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h475.429c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tablet"
+ ],
+ "defaultCode": 61706,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "tablet",
+ "id": 239,
+ "order": 1095,
+ "prevSize": 28,
+ "code": 61706
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 239
+ },
+ {
+ "icon": {
+ "paths": [
+ "M265.143 804.571c0-25.143-20.571-45.714-45.714-45.714s-45.714 20.571-45.714 45.714 20.571 45.714 45.714 45.714 45.714-20.571 45.714-45.714zM384 713.143v-402.286c0-9.714-8.571-18.286-18.286-18.286h-292.571c-9.714 0-18.286 8.571-18.286 18.286v402.286c0 9.714 8.571 18.286 18.286 18.286h292.571c9.714 0 18.286-8.571 18.286-18.286zM274.286 228.571c0-5.143-4-9.143-9.143-9.143h-91.429c-5.143 0-9.143 4-9.143 9.143s4 9.143 9.143 9.143h91.429c5.143 0 9.143-4 9.143-9.143zM438.857 219.429v585.143c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-585.143c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 438.85714285714283,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mobile",
+ "mobile-phone"
+ ],
+ "defaultCode": 61707,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "mobile, mobile-phone",
+ "id": 240,
+ "order": 1096,
+ "prevSize": 28,
+ "code": 61707
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 240
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 201.143c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857-139.429-310.857-310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "circle-o"
+ ],
+ "defaultCode": 61708,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "circle-o",
+ "id": 241,
+ "order": 1097,
+ "prevSize": 28,
+ "code": 61708
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 241
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 548.571v219.429c0 60.571-49.143 109.714-109.714 109.714h-219.429c-60.571 0-109.714-49.143-109.714-109.714v-402.286c0-161.143 131.429-292.571 292.571-292.571h36.571c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-36.571c-80.571 0-146.286 65.714-146.286 146.286v18.286c0 30.286 24.571 54.857 54.857 54.857h128c60.571 0 109.714 49.143 109.714 109.714zM950.857 548.571v219.429c0 60.571-49.143 109.714-109.714 109.714h-219.429c-60.571 0-109.714-49.143-109.714-109.714v-402.286c0-161.143 131.429-292.571 292.571-292.571h36.571c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-36.571c-80.571 0-146.286 65.714-146.286 146.286v18.286c0 30.286 24.571 54.857 54.857 54.857h128c60.571 0 109.714 49.143 109.714 109.714z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "quote-left"
+ ],
+ "defaultCode": 61709,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "quote-left",
+ "id": 242,
+ "order": 1098,
+ "prevSize": 28,
+ "code": 61709
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 242
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 182.857v402.286c0 161.143-131.429 292.571-292.571 292.571h-36.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h36.571c80.571 0 146.286-65.714 146.286-146.286v-18.286c0-30.286-24.571-54.857-54.857-54.857h-128c-60.571 0-109.714-49.143-109.714-109.714v-219.429c0-60.571 49.143-109.714 109.714-109.714h219.429c60.571 0 109.714 49.143 109.714 109.714zM950.857 182.857v402.286c0 161.143-131.429 292.571-292.571 292.571h-36.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h36.571c80.571 0 146.286-65.714 146.286-146.286v-18.286c0-30.286-24.571-54.857-54.857-54.857h-128c-60.571 0-109.714-49.143-109.714-109.714v-219.429c0-60.571 49.143-109.714 109.714-109.714h219.429c60.571 0 109.714 49.143 109.714 109.714z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "quote-right"
+ ],
+ "defaultCode": 61710,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "quote-right",
+ "id": 243,
+ "order": 1099,
+ "prevSize": 28,
+ "code": 61710
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 243
+ },
+ {
+ "icon": {
+ "paths": [
+ "M300.571 796.571c0 40-32.571 73.143-73.143 73.143-40 0-73.143-33.143-73.143-73.143 0-40.571 33.143-73.143 73.143-73.143 40.571 0 73.143 32.571 73.143 73.143zM585.143 914.286c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM182.857 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM869.714 796.571c0 40-33.143 73.143-73.143 73.143-40.571 0-73.143-33.143-73.143-73.143 0-40.571 32.571-73.143 73.143-73.143 40 0 73.143 32.571 73.143 73.143zM318.857 227.429c0 50.286-41.143 91.429-91.429 91.429s-91.429-41.143-91.429-91.429 41.143-91.429 91.429-91.429 91.429 41.143 91.429 91.429zM987.429 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM621.714 109.714c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM924.571 227.429c0 70.857-57.714 128-128 128-70.857 0-128-57.143-128-128 0-70.286 57.143-128 128-128 70.286 0 128 57.714 128 128z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "spinner"
+ ],
+ "defaultCode": 61712,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "spinner",
+ "id": 244,
+ "order": 1100,
+ "prevSize": 28,
+ "code": 61712
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 244
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "circle"
+ ],
+ "defaultCode": 61713,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "circle",
+ "id": 245,
+ "order": 1101,
+ "prevSize": 28,
+ "code": 61713
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 245
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 640c0 80-40 184.571-72.571 257.714-6.286 13.143-12.571 31.429-21.143 43.429-4 5.714-8 9.714-16 9.714-11.429 0-18.286-9.143-18.286-20 0-9.143 2.286-19.429 2.857-28.571 1.714-23.429 2.857-46.857 2.857-70.286 0-272.571-161.714-320-408-320h-128v146.286c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-292.571-292.571c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l292.571-292.571c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571v146.286h128c187.429 0 420.571 33.143 500 230.286 24 60.571 30.286 126.286 30.286 190.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mail-reply",
+ "reply"
+ ],
+ "defaultCode": 61714,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "mail-reply, reply",
+ "id": 246,
+ "order": 1102,
+ "prevSize": 28,
+ "code": 61714
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 246
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 694.857c0 41.714-21.714 109.714-73.143 109.714s-73.143-68-73.143-109.714 21.714-109.714 73.143-109.714 73.143 68 73.143 109.714zM731.429 694.857c0 41.714-21.714 109.714-73.143 109.714s-73.143-68-73.143-109.714 21.714-109.714 73.143-109.714 73.143 68 73.143 109.714zM822.857 694.857c0-87.429-53.143-164.571-146.286-164.571-37.714 0-73.714 6.857-111.429 12-29.714 4.571-59.429 6.286-89.714 6.286s-60-1.714-89.714-6.286c-37.143-5.143-73.714-12-111.429-12-93.143 0-146.286 77.143-146.286 164.571 0 174.857 160 201.714 299.429 201.714h96c139.429 0 299.429-26.857 299.429-201.714zM950.857 594.286c0 63.429-6.286 130.857-34.857 189.143-75.429 152.571-282.857 167.429-431.429 167.429-150.857 0-370.857-13.143-449.143-167.429-29.143-57.714-35.429-125.714-35.429-189.143 0-83.429 22.857-162.286 77.714-226.286-10.286-31.429-15.429-64.571-15.429-97.143 0-42.857 9.714-85.714 29.143-124.571 90.286 0 148 39.429 216.571 93.143 57.714-13.714 117.143-20 176.571-20 53.714 0 108 5.714 160 18.286 68-53.143 125.714-91.429 214.857-91.429 19.429 38.857 29.143 81.714 29.143 124.571 0 32.571-5.143 65.143-15.429 96 54.857 64.571 77.714 144 77.714 227.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "github-alt"
+ ],
+ "defaultCode": 61715,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "github-alt",
+ "id": 247,
+ "order": 1103,
+ "prevSize": 28,
+ "code": 61715
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 247
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 749.714v-402.286c0-30.286-24.571-54.857-54.857-54.857h-402.286c-30.286 0-54.857-24.571-54.857-54.857v-36.571c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v548.571c0 30.286 24.571 54.857 54.857 54.857h694.857c30.286 0 54.857-24.571 54.857-54.857zM950.857 347.429v402.286c0 70.286-57.714 128-128 128h-694.857c-70.286 0-128-57.714-128-128v-548.571c0-70.286 57.714-128 128-128h182.857c70.286 0 128 57.714 128 128v18.286h384c70.286 0 128 57.714 128 128z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-o"
+ ],
+ "defaultCode": 61716,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "folder-o",
+ "id": 248,
+ "order": 1104,
+ "prevSize": 28,
+ "code": 61716
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 248
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1017.714 532c0-16-17.714-20-30.286-20h-621.714c-30.286 0-70.286 18.857-89.714 42.286l-168 207.429c-5.143 6.857-10.286 14.286-10.286 22.857 0 16 17.714 20 30.286 20h621.714c30.286 0 70.286-18.857 89.714-42.857l168-207.429c5.143-6.286 10.286-13.714 10.286-22.286zM365.714 438.857h438.857v-91.429c0-30.286-24.571-54.857-54.857-54.857h-329.143c-30.286 0-54.857-24.571-54.857-54.857v-36.571c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v487.429l146.286-180c33.143-40.571 94.286-69.714 146.286-69.714zM1090.857 532c0 25.143-10.857 49.143-26.286 68.571l-168.571 207.429c-32.571 40-94.857 69.714-146.286 69.714h-621.714c-70.286 0-128-57.714-128-128v-548.571c0-70.286 57.714-128 128-128h182.857c70.286 0 128 57.714 128 128v18.286h310.857c70.286 0 128 57.714 128 128v91.429h109.714c38.857 0 77.714 17.714 94.857 54.286 5.714 12 8.571 25.143 8.571 38.857z"
+ ],
+ "width": 1090.8525714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder-open-o"
+ ],
+ "defaultCode": 61717,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "folder-open-o",
+ "id": 249,
+ "order": 1105,
+ "prevSize": 28,
+ "code": 61717
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 249
+ },
+ {
+ "icon": {
+ "paths": [
+ "M648 614.286c-28.571 92-112.571 153.714-209.143 153.714s-180.571-61.714-209.143-153.714c-6.286-19.429 4.571-39.429 24-45.714 18.857-6.286 39.429 4.571 45.714 24 18.857 61.143 75.429 102.286 139.429 102.286s120.571-41.143 139.429-102.286c6.286-19.429 26.857-30.286 46.286-24 18.857 6.286 29.714 26.286 23.429 45.714zM365.714 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM658.286 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM804.571 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "smile-o"
+ ],
+ "defaultCode": 61720,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "smile-o",
+ "id": 250,
+ "order": 1106,
+ "prevSize": 28,
+ "code": 61720
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 250
+ },
+ {
+ "icon": {
+ "paths": [
+ "M648 702.286c6.286 19.429-4.571 39.429-23.429 45.714-19.429 6.286-40-4.571-46.286-24-18.857-61.143-75.429-102.286-139.429-102.286s-120.571 41.143-139.429 102.286c-6.286 19.429-26.857 30.286-45.714 24-19.429-6.286-30.286-26.286-24-45.714 28.571-92 112.571-153.714 209.143-153.714s180.571 61.714 209.143 153.714zM365.714 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM658.286 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM804.571 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "frown-o"
+ ],
+ "defaultCode": 61721,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "frown-o",
+ "id": 251,
+ "order": 1107,
+ "prevSize": 28,
+ "code": 61721
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 251
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658.286 621.714c0 20-16.571 36.571-36.571 36.571h-365.714c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h365.714c20 0 36.571 16.571 36.571 36.571zM365.714 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM658.286 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM804.571 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "meh-o"
+ ],
+ "defaultCode": 61722,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "meh-o",
+ "id": 252,
+ "order": 1108,
+ "prevSize": 28,
+ "code": 61722
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 252
+ },
+ {
+ "icon": {
+ "paths": [
+ "M475.429 621.714v-73.143c0-10.286-8-18.286-18.286-18.286h-109.714v-109.714c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v109.714h-109.714c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h109.714v109.714c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286v-109.714h109.714c10.286 0 18.286-8 18.286-18.286zM804.571 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM950.857 512c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM1097.143 585.143c0 161.714-130.857 292.571-292.571 292.571-74.286 0-141.714-28-193.143-73.143h-125.714c-51.429 45.143-118.857 73.143-193.143 73.143-161.714 0-292.571-130.857-292.571-292.571s130.857-292.571 292.571-292.571h512c161.714 0 292.571 130.857 292.571 292.571z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gamepad"
+ ],
+ "defaultCode": 61723,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "gamepad",
+ "id": 253,
+ "order": 1109,
+ "prevSize": 28,
+ "code": 61723
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 253
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 667.429v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM292.571 521.143v54.857c0 5.143-4 9.143-9.143 9.143h-128c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h128c5.143 0 9.143 4 9.143 9.143zM219.429 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM804.571 667.429v54.857c0 5.143-4 9.143-9.143 9.143h-493.714c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h493.714c5.143 0 9.143 4 9.143 9.143zM438.857 521.143v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM365.714 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM585.143 521.143v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM512 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM731.429 521.143v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM950.857 667.429v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM658.286 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM804.571 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM950.857 374.857v201.143c0 5.143-4 9.143-9.143 9.143h-128c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h64v-137.143c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM1024 804.571v-512h-950.857v512h950.857zM1097.143 292.571v512c0 40.571-32.571 73.143-73.143 73.143h-950.857c-40.571 0-73.143-32.571-73.143-73.143v-512c0-40.571 32.571-73.143 73.143-73.143h950.857c40.571 0 73.143 32.571 73.143 73.143z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard-o"
+ ],
+ "defaultCode": 61724,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "keyboard-o",
+ "id": 254,
+ "order": 1110,
+ "prevSize": 28,
+ "code": 61724
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 254
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 597.143v-352c-45.714 24.571-109.714 52-174.857 52v0c-30.286 0-58.286-5.714-82.857-18.286-61.143-30.286-127.429-59.429-206.857-59.429-73.714 0-164 36-230.286 72.571v342.286c75.429-34.857 171.429-64.571 247.429-64.571 88 0 145.143 29.143 206.286 59.429l16 8c16 8 35.429 12.571 57.714 12.571 63.429 0 132-33.714 167.429-52.571zM182.857 146.286c0 26.857-14.857 50.286-36.571 62.857v723.429c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-723.429c-21.714-12.571-36.571-36-36.571-62.857 0-40.571 32.571-73.143 73.143-73.143s73.143 32.571 73.143 73.143zM1024 182.857v436c0 13.714-8 26.286-20 32.571-2.286 1.143-5.714 2.857-9.714 5.143-36.571 19.429-122.857 66.286-210.857 66.286-33.714 0-64-6.857-90.286-20l-16-8c-57.714-29.143-103.429-52-173.714-52-82.286 0-198.286 42.857-265.143 83.429-5.714 3.429-12.571 5.143-18.857 5.143s-12.571-1.714-18.286-4.571c-11.429-6.857-18.286-18.857-18.286-32v-424c0-12.571 6.857-24.571 17.714-31.429 36.571-21.714 165.714-93.143 285.714-93.143 95.429 0 173.143 34.857 238.857 66.857 14.857 7.429 32 10.857 50.857 10.857 67.429 0 141.714-42.857 177.143-64 7.429-4 13.714-7.429 17.714-9.714 11.429-5.714 24.571-5.143 35.429 1.143 10.857 6.857 17.714 18.857 17.714 31.429z"
+ ],
+ "width": 1060.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flag-o"
+ ],
+ "defaultCode": 61725,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "flag-o",
+ "id": 255,
+ "order": 1111,
+ "prevSize": 28,
+ "code": 61725
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 255
+ },
+ {
+ "icon": {
+ "paths": [
+ "M475.429 571.429v-109.714c-69.714 6.286-153.714 34.286-219.429 66.857v105.714c66.286-30.857 148.571-57.143 219.429-62.857zM475.429 332.571v-112.571c-72 3.429-156.571 37.143-219.429 72v108c67.429-34.857 148.571-64.571 219.429-67.429zM950.857 597.143v-105.143c-52 25.714-142.857 64-219.429 40.571v-128c-7.429-2.286-14.857-5.143-22.286-8.571-65.714-33.143-119.429-64-205.714-64-9.143 0-18.286 0.571-28 1.714v126.857h10.857c86.286 0 157.143 30.857 222.857 63.429 7.429 3.429 14.857 6.286 22.286 8.571v107.429c15.429 6.286 32.571 9.714 52 9.714 63.429 0 132-33.714 167.429-52.571zM950.857 353.143v-108c-45.714 24.571-109.714 52-174.857 52v0c-15.429 0-30.286-1.143-44.571-4.571v112c76.571 21.714 167.429-22.286 219.429-51.429zM182.857 146.286c0 26.857-14.857 50.286-36.571 62.857v723.429c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-723.429c-21.714-12.571-36.571-36-36.571-62.857 0-40.571 32.571-73.143 73.143-73.143s73.143 32.571 73.143 73.143zM1024 182.857v436c0 13.714-8 26.286-20 32.571-2.286 1.143-5.714 2.857-9.714 5.143-36.571 19.429-122.857 66.286-210.857 66.286-33.714 0-64-6.857-90.286-20l-16-8c-57.714-29.143-103.429-52-173.714-52-82.286 0-198.286 42.857-265.143 83.429-5.714 3.429-12.571 5.143-18.857 5.143s-12.571-1.714-18.286-4.571c-11.429-6.857-18.286-18.857-18.286-32v-424c0-12.571 6.857-24.571 17.714-31.429 36.571-21.714 165.714-93.143 285.714-93.143 95.429 0 173.143 34.857 238.857 66.857 14.857 7.429 32 10.857 50.857 10.857 67.429 0 141.714-42.857 177.143-64 7.429-4 13.714-7.429 17.714-9.714 11.429-5.714 24.571-5.143 35.429 1.143 10.857 6.857 17.714 18.857 17.714 31.429z"
+ ],
+ "width": 1060.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flag-checkered"
+ ],
+ "defaultCode": 61726,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "flag-checkered",
+ "id": 256,
+ "order": 1112,
+ "prevSize": 28,
+ "code": 61726
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 256
+ },
+ {
+ "icon": {
+ "paths": [
+ "M334.286 561.714l-266.286 266.286c-7.429 7.429-18.857 7.429-26.286 0l-28.571-28.571c-7.429-7.429-7.429-18.857 0-26.286l224.571-224.571-224.571-224.571c-7.429-7.429-7.429-18.857 0-26.286l28.571-28.571c7.429-7.429 18.857-7.429 26.286 0l266.286 266.286c7.429 7.429 7.429 18.857 0 26.286zM950.857 822.857v36.571c0 10.286-8 18.286-18.286 18.286h-548.571c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h548.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 956.5622857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "terminal"
+ ],
+ "defaultCode": 61728,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "terminal",
+ "id": 257,
+ "order": 1113,
+ "prevSize": 28,
+ "code": 61728
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 257
+ },
+ {
+ "icon": {
+ "paths": [
+ "M352.571 799.429l-28.571 28.571c-7.429 7.429-18.857 7.429-26.286 0l-266.286-266.286c-7.429-7.429-7.429-18.857 0-26.286l266.286-266.286c7.429-7.429 18.857-7.429 26.286 0l28.571 28.571c7.429 7.429 7.429 18.857 0 26.286l-224.571 224.571 224.571 224.571c7.429 7.429 7.429 18.857 0 26.286zM690.286 189.714l-213.143 737.714c-2.857 9.714-13.143 15.429-22.286 12.571l-35.429-9.714c-9.714-2.857-15.429-13.143-12.571-22.857l213.143-737.714c2.857-9.714 13.143-15.429 22.286-12.571l35.429 9.714c9.714 2.857 15.429 13.143 12.571 22.857zM1065.714 561.714l-266.286 266.286c-7.429 7.429-18.857 7.429-26.286 0l-28.571-28.571c-7.429-7.429-7.429-18.857 0-26.286l224.571-224.571-224.571-224.571c-7.429-7.429-7.429-18.857 0-26.286l28.571-28.571c7.429-7.429 18.857-7.429 26.286 0l266.286 266.286c7.429 7.429 7.429 18.857 0 26.286z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "code"
+ ],
+ "defaultCode": 61729,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "code",
+ "id": 258,
+ "order": 1114,
+ "prevSize": 28,
+ "code": 61729
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 258
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 618.286v40c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-3.429-25.714-10.857l-292.571-292.571c-14.286-14.286-14.286-37.143 0-51.429l292.571-292.571c10.286-10.857 26.286-13.714 40-8 13.143 5.714 22.286 18.857 22.286 33.714v39.429l-226.857 227.429c-14.286 14.286-14.286 37.143 0 51.429zM1024 640c0 118.857-89.714 293.714-93.714 301.143-2.857 6.286-9.143 9.714-16 9.714-1.714 0-3.429 0-5.143-0.571-8.571-2.857-13.714-10.857-13.143-19.429 16.571-156-2.857-258.857-60.571-322.857-48.571-54.286-127.429-83.429-250.286-93.143v143.429c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-3.429-25.714-10.857l-292.571-292.571c-14.286-14.286-14.286-37.143 0-51.429l292.571-292.571c10.286-10.857 26.286-13.714 40-8 13.143 5.714 22.286 18.857 22.286 33.714v149.714c157.714 10.857 270.286 52.571 342.286 126.286 86.286 88.571 96.571 208.571 96.571 290.857z"
+ ],
+ "width": 1020.5622857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mail-reply-all",
+ "reply-all"
+ ],
+ "defaultCode": 61730,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "mail-reply-all, reply-all",
+ "id": 259,
+ "order": 1115,
+ "prevSize": 28,
+ "code": 61730
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 259
+ },
+ {
+ "icon": {
+ "paths": [
+ "M677.714 546.857l146.857-142.857-241.143-35.429-17.143-34.286-90.857-184v550.286l33.714 17.714 181.714 96-34.286-202.857-6.857-37.714zM936 397.143l-207.429 202.286 49.143 285.714c4 25.143-5.143 40-22.857 40-6.286 0-14.286-2.286-22.857-6.857l-256.571-134.857-256.571 134.857c-8.571 4.571-16.571 6.857-22.857 6.857-17.714 0-26.857-14.857-22.857-40l49.143-285.714-208-202.286c-24.571-24.571-16.571-48.571 17.714-53.714l286.857-41.714 128.571-260c7.429-15.429 17.714-23.429 28-23.429v0c10.286 0 20 8 28 23.429l128.571 260 286.857 41.714c34.286 5.143 42.286 29.143 17.143 53.714z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star-half-empty",
+ "star-half-full",
+ "star-half-o"
+ ],
+ "defaultCode": 61731,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "star-half-empty, star-half-full, star-half-o",
+ "id": 260,
+ "order": 1116,
+ "prevSize": 28,
+ "code": 61731
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 260
+ },
+ {
+ "icon": {
+ "paths": [
+ "M800.571 199.429l-365.714 731.429c-6.286 12.571-18.857 20-32.571 20-2.857 0-5.714-0.571-8.571-1.143-16.571-4-28-18.286-28-35.429v-329.143h-329.143c-17.143 0-31.429-11.429-35.429-28s4-33.714 18.857-41.143l731.429-365.714c5.143-2.857 10.857-4 16.571-4 9.714 0 18.857 3.429 25.714 10.857 11.429 10.857 14.286 28 6.857 42.286z"
+ ],
+ "width": 805.1565714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "location-arrow"
+ ],
+ "defaultCode": 61732,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "location-arrow",
+ "id": 261,
+ "order": 1117,
+ "prevSize": 28,
+ "code": 61732
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 261
+ },
+ {
+ "icon": {
+ "paths": [
+ "M318.286 731.429h340v-340zM292.571 705.714l340-340h-340v340zM950.857 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-128v128c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-128h-493.714c-10.286 0-18.286-8-18.286-18.286v-493.714h-128c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h128v-128c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v128h486.286l140.571-141.143c7.429-6.857 18.857-6.857 26.286 0 6.857 7.429 6.857 18.857 0 26.286l-141.143 140.571v486.286h128c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 952.5394285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop"
+ ],
+ "defaultCode": 61733,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "crop",
+ "id": 262,
+ "order": 1118,
+ "prevSize": 28,
+ "code": 61733
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 262
+ },
+ {
+ "icon": {
+ "paths": [
+ "M164.571 841.143c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM164.571 182.857c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM530.286 256c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM585.143 256c0 40.571-22.286 76-54.857 94.857-1.714 206.286-148 252-245.143 282.857-90.857 28.571-120.571 42.286-120.571 97.714v14.857c32.571 18.857 54.857 54.286 54.857 94.857 0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-40.571 22.286-76 54.857-94.857v-468.571c-32.571-18.857-54.857-54.286-54.857-94.857 0-60.571 49.143-109.714 109.714-109.714s109.714 49.143 109.714 109.714c0 40.571-22.286 76-54.857 94.857v284c29.143-14.286 60-24 88-32.571 106.286-33.714 166.857-58.857 168-178.286-32.571-18.857-54.857-54.286-54.857-94.857 0-60.571 49.143-109.714 109.714-109.714s109.714 49.143 109.714 109.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "code-fork"
+ ],
+ "defaultCode": 61734,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "code-fork",
+ "id": 263,
+ "order": 1119,
+ "prevSize": 28,
+ "code": 61734
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 263
+ },
+ {
+ "icon": {
+ "paths": [
+ "M250.857 726.286l-146.286 146.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143c-6.857-7.429-6.857-18.857 0-26.286l146.286-146.286c7.429-6.857 18.857-6.857 26.286 0 6.857 7.429 6.857 18.857 0 26.286zM347.429 749.714v182.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286v-182.857c0-10.286 8-18.286 18.286-18.286s18.286 8 18.286 18.286zM219.429 621.714c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286s8-18.286 18.286-18.286h182.857c10.286 0 18.286 8 18.286 18.286zM941.714 694.857c0 44-17.143 85.143-48.571 116l-84 83.429c-30.857 30.857-72 47.429-116 47.429s-85.714-17.143-116.571-48.571l-190.857-191.429c-9.714-9.714-17.143-20.571-24-32l136.571-10.286 156 156.571c20.571 20.571 57.143 21.143 77.714 0.571l84-83.429c10.286-10.286 16-24 16-38.286 0-14.857-5.714-28.571-16-38.857l-156.571-157.143 10.286-136.571c11.429 6.857 22.286 14.286 32 24l192 192c30.857 31.429 48 72.571 48 116.571zM589.143 281.143l-136.571 10.286-156-156.571c-10.286-10.286-24-16-38.857-16s-28.571 5.714-38.857 15.429l-84 83.429c-10.286 10.286-16 24-16 38.286 0 14.857 5.714 28.571 16 38.857l156.571 156.571-10.286 137.143c-11.429-6.857-22.286-14.286-32-24l-192-192c-30.857-31.429-48-72.571-48-116.571s17.143-85.143 48.571-116l84-83.429c30.857-30.857 72-47.429 116-47.429s85.714 17.143 116.571 48.571l190.857 191.429c9.714 9.714 17.143 20.571 24 32zM950.857 329.143c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286s8-18.286 18.286-18.286h182.857c10.286 0 18.286 8 18.286 18.286zM640 18.286v182.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286v-182.857c0-10.286 8-18.286 18.286-18.286s18.286 8 18.286 18.286zM872.571 104.571l-146.286 146.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143c-6.857-7.429-6.857-18.857 0-26.286l146.286-146.286c7.429-6.857 18.857-6.857 26.286 0 6.857 7.429 6.857 18.857 0 26.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chain-broken",
+ "unlink"
+ ],
+ "defaultCode": 61735,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "chain-broken, unlink",
+ "id": 264,
+ "order": 1120,
+ "prevSize": 28,
+ "code": 61735
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 264
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 768v73.143c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h36.571v-219.429h-36.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571v329.143h36.571c20 0 36.571 16.571 36.571 36.571zM292.571 109.714v109.714c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-109.714c0-20 16.571-36.571 36.571-36.571h146.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 365.71428571428567,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "info"
+ ],
+ "defaultCode": 61737,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "info",
+ "id": 265,
+ "order": 1121,
+ "prevSize": 28,
+ "code": 61737
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 265
+ },
+ {
+ "icon": {
+ "paths": [
+ "M292.571 713.143v128c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-128c0-20 16.571-36.571 36.571-36.571h146.286c20 0 36.571 16.571 36.571 36.571zM309.714 109.714l-16 438.857c-0.571 20-17.714 36.571-37.714 36.571h-146.286c-20 0-37.143-16.571-37.714-36.571l-16-438.857c-0.571-20 15.429-36.571 35.429-36.571h182.857c20 0 36 16.571 35.429 36.571z"
+ ],
+ "width": 365.71428571428567,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exclamation"
+ ],
+ "defaultCode": 61738,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "exclamation",
+ "id": 266,
+ "order": 1122,
+ "prevSize": 28,
+ "code": 61738
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 266
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512.571 782.286v95.429h-141.714l-90.857-144-13.714-24c-3.429-4-5.143-8-6.286-12h-1.714c-1.143 4-3.429 8-5.143 12-3.429 6.857-8.571 16-14.286 25.143l-88.571 142.857h-147.429v-95.429h73.143l112.571-166.286-105.714-155.429h-78.286v-96h157.714l79.429 130.286c5.143 8 9.143 16.571 13.143 24 3.429 4 5.143 8 6.286 12h1.714c1.143-4 3.429-8 6.286-12l14.286-24 80-130.286h146.857v96h-71.429l-105.143 152.571 116.571 169.143h62.286zM876.571 394.286v117.714h-293.714l-1.714-15.429c-1.143-8-2.286-18.857-2.286-26.286 0-156 200-169.143 200-252 0-29.714-26.857-49.714-57.143-49.714-21.714 0-41.143 10.286-55.429 22.286-7.429 6.286-14.286 14.286-20.571 21.714l-60-52.571c10.286-14.286 21.714-26.286 36-37.714 24-18.857 58.857-37.143 107.429-37.143 82.857 0 140.571 48.571 140.571 124.571 0 137.143-189.714 148.571-197.714 230.286h132.571v-45.714h72z"
+ ],
+ "width": 879.3965714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "superscript"
+ ],
+ "defaultCode": 61739,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "superscript",
+ "id": 267,
+ "order": 1123,
+ "prevSize": 28,
+ "code": 61739
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 267
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512.571 782.286v95.429h-141.714l-90.857-144-13.714-24c-3.429-4-5.143-8-6.286-12h-1.714c-1.143 4-3.429 8-5.143 12-3.429 6.857-8.571 16-14.286 25.143l-88.571 142.857h-147.429v-95.429h73.143l112.571-166.286-105.714-155.429h-78.286v-96h157.714l79.429 130.286c5.143 8 9.143 16.571 13.143 24 3.429 4 5.143 8 6.286 12h1.714c1.143-4 3.429-8 6.286-12l14.286-24 80-130.286h146.857v96h-71.429l-105.143 152.571 116.571 169.143h62.286zM877.714 906.286v117.714h-293.714l-2.286-15.429c-0.571-8.571-1.714-18.857-1.714-26.286 0-156 200-169.143 200-252 0-29.714-26.857-49.714-57.143-49.714-22.286 0-41.143 10.286-55.429 22.286-7.429 6.286-14.286 14.286-20.571 21.714l-60-52.571c10.286-14.286 21.714-26.286 36-37.714 24-19.429 58.857-37.143 107.429-37.143 82.857 0 140.571 48.571 140.571 124.571 0 136.571-189.714 148-197.714 230.286h132.571v-45.714h72z"
+ ],
+ "width": 880.5668571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subscript"
+ ],
+ "defaultCode": 61740,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "subscript",
+ "id": 268,
+ "order": 1124,
+ "prevSize": 28,
+ "code": 61740
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 268
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 804.571l192-219.429h-438.857l-192 219.429h438.857zM1090.857 189.143c11.429 26.286 6.857 56.571-12 78.286l-512 585.143c-13.714 16-33.714 25.143-54.857 25.143h-438.857c-28.571 0-54.857-16.571-66.857-42.857-11.429-26.286-6.857-56.571 12-78.286l512-585.143c13.714-16 33.714-25.143 54.857-25.143h438.857c28.571 0 54.857 16.571 66.857 42.857z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eraser"
+ ],
+ "defaultCode": 61741,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "eraser",
+ "id": 269,
+ "order": 1125,
+ "prevSize": 28,
+ "code": 61741
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 269
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 627.429c0 58.857-33.714 108-96 108-69.714 0-88-63.429-150.857-63.429-45.714 0-62.857 28.571-62.857 70.857 0 44.571 18.286 87.429 17.714 131.429v2.857c-6.286 0-12.571 0-18.857 0.571-58.857 5.714-118.286 17.143-177.714 17.143-40.571 0-82.857-16-82.857-62.857 0-62.857 63.429-81.143 63.429-150.857 0-62.286-49.143-96-108-96-60 0-115.429 33.143-115.429 98.857 0 72.571 55.429 104 55.429 143.429 0 20-12.571 37.714-26.286 50.857-17.714 16.571-42.857 20-66.857 20-46.857 0-93.714-6.286-140-13.714-10.286-1.714-21.143-2.857-31.429-4.571l-7.429-1.143c-1.143-0.571-2.857-0.571-2.857-1.143v-585.143c2.286 1.714 36 5.714 41.714 6.857 46.286 7.429 93.143 13.714 140 13.714 24 0 49.143-3.429 66.857-20 13.714-13.143 26.286-30.857 26.286-50.857 0-39.429-55.429-70.857-55.429-143.429 0-65.714 55.429-98.857 116-98.857 58.286 0 107.429 33.714 107.429 96 0 69.714-63.429 88-63.429 150.857 0 46.857 42.286 62.857 82.857 62.857 65.714 0 130.857-14.857 196-18.286v1.143c-1.714 2.286-5.714 36-6.857 41.714-7.429 46.286-13.714 93.143-13.714 140 0 24 3.429 49.143 20 66.857 13.143 13.714 30.857 26.286 50.857 26.286 39.429 0 70.857-55.429 143.429-55.429 65.714 0 98.857 55.429 98.857 115.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "puzzle-piece"
+ ],
+ "defaultCode": 61742,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "puzzle-piece",
+ "id": 270,
+ "order": 1126,
+ "prevSize": 28,
+ "code": 61742
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 270
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658.286 402.286v73.143c0 169.143-128 308.571-292.571 326.857v75.429h146.286c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-365.714c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286v-75.429c-164.571-18.286-292.571-157.714-292.571-326.857v-73.143c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v73.143c0 141.143 114.857 256 256 256s256-114.857 256-256v-73.143c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571zM512 182.857v292.571c0 100.571-82.286 182.857-182.857 182.857s-182.857-82.286-182.857-182.857v-292.571c0-100.571 82.286-182.857 182.857-182.857s182.857 82.286 182.857 182.857z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "microphone"
+ ],
+ "defaultCode": 61744,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "microphone",
+ "id": 271,
+ "order": 1127,
+ "prevSize": 28,
+ "code": 61744
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 271
+ },
+ {
+ "icon": {
+ "paths": [
+ "M154.857 540l-57.714 57.714c-15.429-37.714-24-78.857-24-122.286v-73.143c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v73.143c0 22.286 3.429 44 8.571 64.571zM791.429 196l-206.286 206.286v73.143c0 100.571-82.286 182.857-182.857 182.857-21.714 0-42.857-4-62.286-10.857l-54.857 54.857c34.857 18.286 74.857 29.143 117.143 29.143 141.143 0 256-114.857 256-256v-73.143c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v73.143c0 169.143-128 308.571-292.571 326.857v75.429h146.286c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-365.714c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286v-75.429c-48.571-5.143-94.286-21.714-134.286-46.286l-145.143 145.143c-7.429 7.429-18.857 7.429-26.286 0l-46.857-46.857c-7.429-7.429-7.429-18.857 0-26.286l705.143-705.143c7.429-7.429 18.857-7.429 26.286 0l46.857 46.857c7.429 7.429 7.429 18.857 0 26.286zM574.286 120.571l-354.857 354.857v-292.571c0-100.571 82.286-182.857 182.857-182.857 78.857 0 146.286 50.857 172 120.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "microphone-slash"
+ ],
+ "defaultCode": 61745,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "microphone-slash",
+ "id": 272,
+ "order": 1128,
+ "prevSize": 28,
+ "code": 61745
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 272
+ },
+ {
+ "icon": {
+ "paths": [
+ "M621.714 548.571v-365.714h-256v649.714c29.143-15.429 76-42.286 121.714-78.286 61.143-48 134.286-122.857 134.286-205.714zM731.429 109.714v438.857c0 240.571-336.571 392.571-350.857 398.857-4.571 2.286-9.714 3.429-14.857 3.429s-10.286-1.143-14.857-3.429c-14.286-6.286-350.857-158.286-350.857-398.857v-438.857c0-20 16.571-36.571 36.571-36.571h658.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shield"
+ ],
+ "defaultCode": 61746,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "shield",
+ "id": 273,
+ "order": 1129,
+ "prevSize": 28,
+ "code": 61746
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 273
+ },
+ {
+ "icon": {
+ "paths": [
+ "M73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM731.429 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar-o"
+ ],
+ "defaultCode": 61747,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "calendar-o",
+ "id": 274,
+ "order": 1130,
+ "prevSize": 28,
+ "code": 61747
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 274
+ },
+ {
+ "icon": {
+ "paths": [
+ "M292.571 109.714c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 91.429v182.857c0 5.714-2.286 10.857-6.857 14.286-3.429 2.857-7.429 4-11.429 4-1.143 0-2.286 0-4-0.571l-256-54.857c-8-1.714-14.286-9.143-14.286-17.714h-146.286v58.286c83.429 17.143 146.286 90.857 146.286 179.429v457.143c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-457.143c0-81.714 53.714-151.429 128-174.286v-63.429h-18.286c-121.143 0-186.286 125.143-186.857 126.286-6.286 12.571-19.429 20-32.571 20-5.714 0-11.429-1.143-16.571-4-17.714-9.143-25.143-30.857-16-49.143 2.857-5.714 60-116.571 174.857-153.714-8.571-14.286-14.286-30.857-14.286-49.143 0-50.286 41.143-91.429 91.429-91.429s91.429 41.143 91.429 91.429c0 13.143-2.857 25.143-8 36.571h172.571c0-8.571 6.286-16 14.286-17.714l256-54.857c1.714-0.571 2.857-0.571 4-0.571 4 0 8 1.143 11.429 4 4.571 3.429 6.857 8.571 6.857 14.286z"
+ ],
+ "width": 799.4514285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fire-extinguisher"
+ ],
+ "defaultCode": 61748,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "fire-extinguisher",
+ "id": 275,
+ "order": 1131,
+ "prevSize": 28,
+ "code": 61748
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 275
+ },
+ {
+ "icon": {
+ "paths": [
+ "M822.857 256c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM950.857 91.429c0 189.714-52.571 316-188 452-33.143 32.571-70.857 66.286-111.429 100.571l-11.429 216.571c-0.571 5.714-4 11.429-9.143 14.857l-219.429 128c-2.857 1.714-5.714 2.286-9.143 2.286-4.571 0-9.143-1.714-13.143-5.143l-36.571-36.571c-4.571-5.143-6.286-12-4.571-18.286l48.571-157.714-160.571-160.571-157.714 48.571c-1.714 0.571-3.429 0.571-5.143 0.571-4.571 0-9.714-1.714-13.143-5.143l-36.571-36.571c-5.714-6.286-6.857-15.429-2.857-22.286l128-219.429c3.429-5.143 9.143-8.571 14.857-9.143l216.571-11.429c34.286-40.571 68-78.286 100.571-111.429 142.857-142.286 252-188 450.857-188 10.286 0 19.429 8 19.429 18.286z"
+ ],
+ "width": 967.4605714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rocket"
+ ],
+ "defaultCode": 61749,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "rocket",
+ "id": 276,
+ "order": 1132,
+ "prevSize": 28,
+ "code": 61749
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 276
+ },
+ {
+ "icon": {
+ "paths": [
+ "M997.143 441.714l-93.714 436h-190.857l101.714-475.429c4.571-20 1.714-38.286-8.571-50.286-9.714-12-26.857-18.857-47.429-18.857h-96.571l-116.571 544.571h-190.857l116.571-544.571h-163.429l-116.571 544.571h-190.857l116.571-544.571-87.429-186.857h729.143c77.143 0 147.429 32 192.571 88 45.714 56 62.286 132 46.286 207.429z"
+ ],
+ "width": 1013.1748571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "maxcdn"
+ ],
+ "defaultCode": 61750,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "maxcdn",
+ "id": 277,
+ "order": 1133,
+ "prevSize": 28,
+ "code": 61750
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 277
+ },
+ {
+ "icon": {
+ "paths": [
+ "M519.429 797.143l58.286-58.286c14.286-14.286 14.286-37.143 0-51.429l-175.429-175.429 175.429-175.429c14.286-14.286 14.286-37.143 0-51.429l-58.286-58.286c-14.286-14.286-37.143-14.286-51.429 0l-259.429 259.429c-14.286 14.286-14.286 37.143 0 51.429l259.429 259.429c14.286 14.286 37.143 14.286 51.429 0zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-circle-left"
+ ],
+ "defaultCode": 61751,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "chevron-circle-left",
+ "id": 278,
+ "order": 1134,
+ "prevSize": 28,
+ "code": 61751
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 278
+ },
+ {
+ "icon": {
+ "paths": [
+ "M409.714 797.143l259.429-259.429c14.286-14.286 14.286-37.143 0-51.429l-259.429-259.429c-14.286-14.286-37.143-14.286-51.429 0l-58.286 58.286c-14.286 14.286-14.286 37.143 0 51.429l175.429 175.429-175.429 175.429c-14.286 14.286-14.286 37.143 0 51.429l58.286 58.286c14.286 14.286 37.143 14.286 51.429 0zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-circle-right"
+ ],
+ "defaultCode": 61752,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "chevron-circle-right",
+ "id": 279,
+ "order": 1135,
+ "prevSize": 28,
+ "code": 61752
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 279
+ },
+ {
+ "icon": {
+ "paths": [
+ "M665.714 650.857l58.286-58.286c14.286-14.286 14.286-37.143 0-51.429l-259.429-259.429c-14.286-14.286-37.143-14.286-51.429 0l-259.429 259.429c-14.286 14.286-14.286 37.143 0 51.429l58.286 58.286c14.286 14.286 37.143 14.286 51.429 0l175.429-175.429 175.429 175.429c14.286 14.286 37.143 14.286 51.429 0zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-circle-up"
+ ],
+ "defaultCode": 61753,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "chevron-circle-up",
+ "id": 280,
+ "order": 1136,
+ "prevSize": 28,
+ "code": 61753
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 280
+ },
+ {
+ "icon": {
+ "paths": [
+ "M464.571 742.286l259.429-259.429c14.286-14.286 14.286-37.143 0-51.429l-58.286-58.286c-14.286-14.286-37.143-14.286-51.429 0l-175.429 175.429-175.429-175.429c-14.286-14.286-37.143-14.286-51.429 0l-58.286 58.286c-14.286 14.286-14.286 37.143 0 51.429l259.429 259.429c14.286 14.286 37.143 14.286 51.429 0zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chevron-circle-down"
+ ],
+ "defaultCode": 61754,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "chevron-circle-down",
+ "id": 281,
+ "order": 1137,
+ "prevSize": 28,
+ "code": 61754
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 281
+ },
+ {
+ "icon": {
+ "paths": [
+ "M645.714 341.143l9.143-100h-505.143l26.857 305.143h349.714l-12.571 130.286-112.571 30.286-112-30.286-7.429-80h-100l12.571 158.857 206.857 57.143h2.286v-0.571l205.143-56.571 28.571-310.857h-368l-8.571-103.429h385.143zM0 73.143h804.571l-73.143 821.714-330.286 92.571-328-92.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "html5"
+ ],
+ "defaultCode": 61755,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "html5",
+ "id": 282,
+ "order": 1138,
+ "prevSize": 28,
+ "code": 61755
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 282
+ },
+ {
+ "icon": {
+ "paths": [
+ "M157.143 73.143h860l-152 761.714-459.429 152.571-398.857-152.571 40.571-203.429h169.714l-16.571 84 241.143 92 277.714-92 38.857-193.714h-690.286l33.143-169.714h690.857l21.714-109.143h-690.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "css3"
+ ],
+ "defaultCode": 61756,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "css3",
+ "id": 283,
+ "order": 1139,
+ "prevSize": 28,
+ "code": 61756
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 283
+ },
+ {
+ "icon": {
+ "paths": [
+ "M548.571 146.286c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM1024 676.571v201.143c0 7.429-4.571 14.286-11.429 17.143-2.286 0.571-4.571 1.143-6.857 1.143-4.571 0-9.143-1.714-13.143-5.143l-53.143-53.143c-89.714 108-250.857 177.143-427.429 177.143s-337.714-69.143-427.429-177.143l-53.143 53.143c-3.429 3.429-8.571 5.143-13.143 5.143-2.286 0-4.571-0.571-6.857-1.143-6.857-2.857-11.429-9.714-11.429-17.143v-201.143c0-10.286 8-18.286 18.286-18.286h201.143c7.429 0 14.286 4.571 17.143 11.429s1.143 14.286-4 20l-57.143 57.143c51.429 69.143 150.286 119.429 263.429 134.857v-369.714h-109.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h109.714v-93.143c-43.429-25.143-73.143-72-73.143-126.286 0-80.571 65.714-146.286 146.286-146.286s146.286 65.714 146.286 146.286c0 54.286-29.714 101.143-73.143 126.286v93.143h109.714c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-109.714v369.714c113.143-15.429 212-65.714 263.429-134.857l-57.143-57.143c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h201.143c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "anchor"
+ ],
+ "defaultCode": 61757,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "anchor",
+ "id": 284,
+ "order": 1140,
+ "prevSize": 28,
+ "code": 61757
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 284
+ },
+ {
+ "icon": {
+ "paths": [
+ "M603.429 438.857c30.286 0 54.857 24.571 54.857 54.857v329.143c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-329.143c0-30.286 24.571-54.857 54.857-54.857h18.286v-182.857c0-141.143 114.857-256 256-256s256 114.857 256 256c0 20-16.571 36.571-36.571 36.571h-36.571c-20 0-36.571-16.571-36.571-36.571 0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286v182.857h420.571z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unlock-alt"
+ ],
+ "defaultCode": 61758,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "unlock-alt",
+ "id": 285,
+ "order": 1141,
+ "prevSize": 28,
+ "code": 61758
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 285
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 512c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286zM658.286 512c0-121.143-98.286-219.429-219.429-219.429s-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429zM731.429 512c0 161.714-130.857 292.571-292.571 292.571s-292.571-130.857-292.571-292.571 130.857-292.571 292.571-292.571 292.571 130.857 292.571 292.571zM804.571 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bullseye"
+ ],
+ "defaultCode": 61760,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bullseye",
+ "id": 286,
+ "order": 1142,
+ "prevSize": 28,
+ "code": 61760
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 286
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857zM512 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857zM804.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ellipsis-h"
+ ],
+ "defaultCode": 61761,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "ellipsis-h",
+ "id": 287,
+ "order": 1143,
+ "prevSize": 28,
+ "code": 61761
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 287
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857zM219.429 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857zM219.429 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 219.42857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ellipsis-v"
+ ],
+ "defaultCode": 61762,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "ellipsis-v",
+ "id": 288,
+ "order": 1144,
+ "prevSize": 28,
+ "code": 61762
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 288
+ },
+ {
+ "icon": {
+ "paths": [
+ "M292.571 731.429c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM493.143 785.143c-9.714-177.143-150.286-317.714-327.429-327.429-5.143-0.571-10.286 1.714-13.714 5.143s-5.714 8-5.714 13.143v73.143c0 9.714 7.429 17.714 17.143 18.286 117.143 8.571 211.429 102.857 220 220 0.571 9.714 8.571 17.143 18.286 17.143h73.143c5.143 0 9.714-2.286 13.143-5.714s5.714-8.571 5.143-13.714zM712.571 785.714c-9.714-297.143-250.286-537.714-547.429-547.429-5.714-0.571-9.714 1.143-13.143 5.143-3.429 3.429-5.714 8-5.714 13.143v73.143c0 9.714 8 17.714 17.714 18.286 237.143 8.571 430.286 201.714 438.857 438.857 0.571 9.714 8.571 17.714 18.286 17.714h73.143c5.143 0 9.714-2.286 13.143-5.714 4-3.429 5.714-8 5.143-13.143zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rss-square"
+ ],
+ "defaultCode": 61763,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "rss-square",
+ "id": 289,
+ "order": 1145,
+ "prevSize": 28,
+ "code": 61763
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 289
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM658.286 543.429c11.429-6.286 18.286-18.286 18.286-31.429s-6.857-25.143-18.286-31.429l-310.857-182.857c-10.857-6.857-25.143-6.857-36.571-0.571-11.429 6.857-18.286 18.857-18.286 32v365.714c0 13.143 6.857 25.143 18.286 32 5.714 2.857 12 4.571 18.286 4.571s12.571-1.714 18.286-5.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play-circle"
+ ],
+ "defaultCode": 61764,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "play-circle",
+ "id": 290,
+ "order": 1146,
+ "prevSize": 28,
+ "code": 61764
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 290
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 258.286l180.571 180.571-326.857 326.857-180.571-180.571zM464.571 817.714l353.143-353.143c14.286-14.286 14.286-37.143 0-51.429l-206.857-206.857c-13.714-13.714-37.714-13.714-51.429 0l-353.143 353.143c-14.286 14.286-14.286 37.143 0 51.429l206.857 206.857c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286zM972.571 453.714l-518.286 518.857c-28.571 28-75.429 28-103.429 0l-72-72c42.857-42.857 42.857-112.571 0-155.429s-112.571-42.857-155.429 0l-71.429-72c-28.571-28-28.571-74.857 0-103.429l518.286-517.714c28-28.571 74.857-28.571 103.429 0l71.429 71.429c-42.857 42.857-42.857 112.571 0 155.429s112.571 42.857 155.429 0l72 71.429c28 28.571 28 75.429 0 103.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ticket"
+ ],
+ "defaultCode": 61765,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "ticket",
+ "id": 291,
+ "order": 1147,
+ "prevSize": 28,
+ "code": 61765
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 291
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-512c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h512c20 0 36.571-16.571 36.571-36.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minus-square"
+ ],
+ "defaultCode": 61766,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "minus-square",
+ "id": 292,
+ "order": 1148,
+ "prevSize": 28,
+ "code": 61766
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 292
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658.286 457.143v36.571c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h475.429c10.286 0 18.286 8 18.286 18.286zM731.429 713.143v-475.429c0-50.286-41.143-91.429-91.429-91.429h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429zM804.571 237.714v475.429c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "minus-square-o"
+ ],
+ "defaultCode": 61767,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "minus-square-o",
+ "id": 293,
+ "order": 1149,
+ "prevSize": 28,
+ "code": 61767
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 293
+ },
+ {
+ "icon": {
+ "paths": [
+ "M581.714 344.571c-6.286 13.143-18.857 21.143-33.143 21.143h-109.714v493.714c0 10.286-8 18.286-18.286 18.286h-402.286c-6.857 0-13.714-4-16.571-10.286-2.857-6.857-2.286-14.286 2.286-20l91.429-109.714c3.429-4 9.143-6.286 14.286-6.286h182.857v-365.714h-109.714c-14.286 0-26.857-8-33.143-21.143-5.714-12.571-4-28 5.143-38.857l182.857-219.429c13.714-16.571 42.286-16.571 56 0l182.857 219.429c9.143 10.857 11.429 26.286 5.143 38.857z"
+ ],
+ "width": 586.8251428571429,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "level-up"
+ ],
+ "defaultCode": 61768,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "level-up",
+ "id": 294,
+ "order": 1150,
+ "prevSize": 28,
+ "code": 61768
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 294
+ },
+ {
+ "icon": {
+ "paths": [
+ "M18.286 146.286h402.286c10.286 0 18.286 8.571 18.286 18.857v493.143h109.714c14.286 0 26.857 8.571 33.143 21.143 6.286 13.143 4 28.571-5.143 39.429l-182.857 219.429c-13.714 16.571-42.286 16.571-56 0l-182.857-219.429c-9.143-10.857-10.857-26.286-5.143-39.429 6.286-12.571 18.857-21.143 33.143-21.143h109.714v-365.714h-182.857c-5.143 0-10.286-2.286-14.286-6.286l-91.429-109.714c-4.571-5.143-5.143-13.143-2.286-19.429s9.714-10.857 16.571-10.857z"
+ ],
+ "width": 586.8251428571429,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "level-down"
+ ],
+ "defaultCode": 61769,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "level-down",
+ "id": 295,
+ "order": 1151,
+ "prevSize": 28,
+ "code": 61769
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 295
+ },
+ {
+ "icon": {
+ "paths": [
+ "M391.429 742.286l350.857-350.857c14.286-14.286 14.286-37.143 0-51.429l-58.286-58.286c-14.286-14.286-37.143-14.286-51.429 0l-266.857 266.857-120.571-120.571c-14.286-14.286-37.143-14.286-51.429 0l-58.286 58.286c-14.286 14.286-14.286 37.143 0 51.429l204.571 204.571c14.286 14.286 37.143 14.286 51.429 0zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check-square"
+ ],
+ "defaultCode": 61770,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "check-square",
+ "id": 296,
+ "order": 1152,
+ "prevSize": 28,
+ "code": 61770
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 296
+ },
+ {
+ "icon": {
+ "paths": [
+ "M230.857 633.143l86.857 86.857-29.714 29.714h-32v-54.857h-54.857v-32zM467.429 410.286c4.571 4 3.429 12-1.714 17.143l-166.286 166.286c-5.143 5.143-13.143 6.286-17.143 1.714-4.571-4-3.429-12 1.714-17.143l166.286-166.286c5.143-5.143 13.143-6.286 17.143-1.714zM310.857 804.571l310.857-310.857-164.571-164.571-310.857 310.857v164.571h164.571zM658.286 457.143l52.571-52.571c21.143-21.143 21.143-56.571 0-77.714l-86.857-86.857c-21.143-21.143-56.571-21.143-77.714 0l-52.571 52.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pencil-square"
+ ],
+ "defaultCode": 61771,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "pencil-square",
+ "id": 297,
+ "order": 1153,
+ "prevSize": 28,
+ "code": 61771
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 297
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 530.286v-274.286c0-20-16.571-36.571-36.571-36.571h-274.286c-14.857 0-28 9.143-33.714 22.286-5.714 13.714-2.857 29.714 8 40l82.286 82.286-305.143 305.143c-14.286 14.286-14.286 37.143 0 51.429l58.286 58.286c14.286 14.286 37.143 14.286 51.429 0l305.143-305.143 82.286 82.286c6.857 7.429 16 10.857 25.714 10.857 4.571 0 9.714-1.143 14.286-2.857 13.143-5.714 22.286-18.857 22.286-33.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "external-link-square"
+ ],
+ "defaultCode": 61772,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "external-link-square",
+ "id": 298,
+ "order": 1154,
+ "prevSize": 28,
+ "code": 61772
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 298
+ },
+ {
+ "icon": {
+ "paths": [
+ "M574.286 629.143l201.143-201.143c14.286-14.286 14.286-37.143 0-51.429l-201.143-201.143c-10.286-10.857-26.286-13.714-39.429-8-13.714 5.714-22.857 18.857-22.857 33.714v91.429c-328 0-365.714 188-365.714 329.143 0 114.857 92 226.286 95.429 230.857 4 4.571 9.143 6.857 14.286 6.857 2.286 0 5.143-0.571 7.429-1.714 7.429-2.857 12-10.857 10.857-18.857-17.143-137.714-6.286-223.429 35.429-270.286 34.857-39.429 95.429-56.571 202.286-56.571v91.429c0 14.857 9.143 28 22.857 33.714 4 1.714 9.143 2.857 13.714 2.857 9.714 0 18.857-4 25.714-10.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "share-square"
+ ],
+ "defaultCode": 61773,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "share-square",
+ "id": 299,
+ "order": 1155,
+ "prevSize": 28,
+ "code": 61773
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 299
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 621.714l146.286-73.143-146.286-73.143v146.286zM585.143 284v309.714l-292.571 146.286v-309.714zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "compass"
+ ],
+ "defaultCode": 61774,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "compass",
+ "id": 300,
+ "order": 1156,
+ "prevSize": 28,
+ "code": 61774
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 300
+ },
+ {
+ "icon": {
+ "paths": [
+ "M654.286 385.714c6.286 12 5.143 26.857-2.857 37.714l-182.857 256c-6.857 9.714-17.714 15.429-29.714 15.429s-22.857-5.714-29.714-15.429l-182.857-256c-8-10.857-9.143-25.714-2.857-37.714 6.286-12.571 18.857-20 32.571-20h365.714c13.714 0 26.286 7.429 32.571 20zM731.429 786.286v-548.571c0-9.714-8.571-18.286-18.286-18.286h-548.571c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h548.571c9.714 0 18.286-8.571 18.286-18.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-square-o-down",
+ "toggle-down"
+ ],
+ "defaultCode": 61776,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "caret-square-o-down, toggle-down",
+ "id": 301,
+ "order": 1157,
+ "prevSize": 28,
+ "code": 61776
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 301
+ },
+ {
+ "icon": {
+ "paths": [
+ "M654.286 638.286c-6.286 12.571-18.857 20-32.571 20h-365.714c-13.714 0-26.286-7.429-32.571-20-6.286-12-5.143-26.857 2.857-37.714l182.857-256c6.857-9.714 17.714-15.429 29.714-15.429s22.857 5.714 29.714 15.429l182.857 256c8 10.857 9.143 25.714 2.857 37.714zM731.429 786.286v-548.571c0-9.714-8.571-18.286-18.286-18.286h-548.571c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h548.571c9.714 0 18.286-8.571 18.286-18.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-square-o-up",
+ "toggle-up"
+ ],
+ "defaultCode": 61777,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "caret-square-o-up, toggle-up",
+ "id": 302,
+ "order": 1158,
+ "prevSize": 28,
+ "code": 61777
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 302
+ },
+ {
+ "icon": {
+ "paths": [
+ "M621.714 512c0 12-5.714 22.857-15.429 29.714l-256 182.857c-10.857 8-25.714 9.143-37.714 2.857-12.571-6.286-20-18.857-20-32.571v-365.714c0-13.714 7.429-26.286 20-32.571 12-6.286 26.857-5.143 37.714 2.857l256 182.857c9.714 6.857 15.429 17.714 15.429 29.714zM731.429 786.286v-548.571c0-10.286-8-18.286-18.286-18.286h-548.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h548.571c10.286 0 18.286-8 18.286-18.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-square-o-right",
+ "toggle-right"
+ ],
+ "defaultCode": 61778,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "caret-square-o-right, toggle-right",
+ "id": 303,
+ "order": 1159,
+ "prevSize": 28,
+ "code": 61778
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 303
+ },
+ {
+ "icon": {
+ "paths": [
+ "M557.714 746.857l20 90.857c2.286 9.143-2.857 18.286-11.429 21.143-2.286 0.571-55.429 18.857-124 18.857-178.286 0-321.714-107.429-369.714-275.429h-54.286c-10.286 0-18.286-8.571-18.286-18.286v-64.571c0-9.714 8-18.286 18.286-18.286h37.714c-0.571-18.286-0.571-40 0.571-60h-38.286c-10.286 0-18.286-8-18.286-18.286v-65.143c0-10.286 8-18.286 18.286-18.286h56c50.857-160 197.143-266.286 368-266.286 59.429 0 108.571 12.571 110.857 13.143 4.571 1.143 8.571 4.571 11.429 8.571 2.286 4 2.857 9.143 1.714 13.714l-24.571 90.857c-2.286 9.714-12 15.429-21.714 12.571-0.571 0-39.429-9.714-80-9.714-96 0-176.571 52-214.857 137.143h267.429c5.714 0 10.857 2.286 14.286 6.857 3.429 4 5.143 9.714 4 14.857l-13.714 65.143c-1.714 8.571-9.143 14.857-18.286 14.857h-278.857c-1.714 18.286-1.143 37.714 0 60h262.286c5.714 0 10.857 2.857 14.286 6.857 3.429 4.571 4.571 10.286 3.429 15.429l-13.714 64c-1.714 8.571-9.143 14.857-17.714 14.857h-221.143c36.571 89.143 118.857 145.143 216 145.143 49.714 0 90.286-13.714 90.857-13.714 4.571-1.714 10.286-1.143 14.857 1.143 4.571 2.857 7.429 7.429 8.571 12z"
+ ],
+ "width": 580.0228571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eur",
+ "euro"
+ ],
+ "defaultCode": 61779,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "eur, euro",
+ "id": 304,
+ "order": 1160,
+ "prevSize": 28,
+ "code": 61779
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 304
+ },
+ {
+ "icon": {
+ "paths": [
+ "M582.857 649.714v209.714c0 10.286-8 18.286-18.286 18.286h-546.286c-10.286 0-18.286-8-18.286-18.286v-85.714c0-9.714 8-18.286 18.286-18.286h55.429v-218.857h-54.286c-10.286 0-18.286-8-18.286-18.286v-74.857c0-10.286 8-18.286 18.286-18.286h54.286v-127.429c0-130.286 105.143-224.571 250.286-224.571 114.286 0 188 68.571 191.429 71.429 6.857 6.286 7.429 17.143 1.714 24.571l-58.857 72.571c-3.429 4-7.429 6.286-12.571 6.857-4.571 0.571-9.714-1.143-13.143-4-0.571-0.571-49.714-39.429-107.429-39.429-64.571 0-108 38.857-108 97.143v122.857h174.286c10.286 0 18.286 8 18.286 18.286v74.857c0 10.286-8 18.286-18.286 18.286h-174.286v216.571h236.571v-103.429c0-10.286 8-18.286 18.286-18.286h92.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 582.8754285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gbp"
+ ],
+ "defaultCode": 61780,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "gbp",
+ "id": 305,
+ "order": 1161,
+ "prevSize": 28,
+ "code": 61780
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 305
+ },
+ {
+ "icon": {
+ "paths": [
+ "M558.857 677.143c0 116.571-83.429 208.571-204.571 228.571v100c0 10.286-8 18.286-18.286 18.286h-77.143c-9.714 0-18.286-8-18.286-18.286v-100c-133.714-18.857-206.857-98.857-209.714-102.286-5.714-6.857-6.286-16.571-1.143-23.429l58.857-77.143c2.857-4 8-6.286 13.143-6.857s10.286 1.143 13.714 5.143c1.143 0.571 81.143 77.143 182.286 77.143 56 0 116.571-29.714 116.571-94.286 0-54.857-67.429-81.714-144.571-112.571-102.857-40.571-230.857-92-230.857-235.429 0-105.143 82.286-192 201.714-214.857v-102.857c0-10.286 8.571-18.286 18.286-18.286h77.143c10.286 0 18.286 8 18.286 18.286v100.571c116 13.143 177.714 76 180 78.286 5.714 6.286 6.857 14.857 2.857 21.714l-46.286 83.429c-2.857 5.143-7.429 8.571-13.143 9.143-5.714 1.143-10.857-0.571-15.429-4-0.571-0.571-69.714-61.714-155.429-61.714-72.571 0-122.857 36-122.857 88 0 60.571 69.714 87.429 150.857 118.857 105.143 40.571 224 86.857 224 224.571z"
+ ],
+ "width": 583.4605714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dollar",
+ "usd"
+ ],
+ "defaultCode": 61781,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "dollar, usd",
+ "id": 306,
+ "order": 1162,
+ "prevSize": 28,
+ "code": 61781
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 306
+ },
+ {
+ "icon": {
+ "paths": [
+ "M513.143 268.571v58.286c0 10.286-8 18.286-18.286 18.286h-96c-17.714 109.714-101.714 181.143-231.429 196.571 85.143 90.857 176 200.571 262.286 306.286 4.571 5.143 5.714 13.143 2.286 19.429-2.857 6.286-9.143 10.286-16.571 10.286h-111.429c-5.714 0-10.857-2.286-14.286-6.857-92-110.286-176.571-211.429-284.571-326.286-3.429-3.429-5.143-8-5.143-12.571v-72.571c0-9.714 8-18.286 18.286-18.286h64c100.571 0 163.429-33.714 180-96h-244c-10.286 0-18.286-8-18.286-18.286v-58.286c0-10.286 8-18.286 18.286-18.286h236c-21.714-42.857-73.143-64.571-153.143-64.571h-82.857c-10.286 0-18.286-8.571-18.286-18.286v-76c0-10.286 8-18.286 18.286-18.286h475.429c10.286 0 18.286 8 18.286 18.286v58.286c0 10.286-8 18.286-18.286 18.286h-133.143c18.286 23.429 30.286 50.857 36.571 82.286h97.714c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 513.1702857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "inr",
+ "rupee"
+ ],
+ "defaultCode": 61782,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "inr, rupee",
+ "id": 307,
+ "order": 1163,
+ "prevSize": 28,
+ "code": 61782
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 307
+ },
+ {
+ "icon": {
+ "paths": [
+ "M344.571 877.714h-98.286c-10.286 0-18.286-8-18.286-18.286v-188.571h-164.571c-10.286 0-18.286-8-18.286-18.286v-58.857c0-10.286 8-18.286 18.286-18.286h164.571v-48.571h-164.571c-10.286 0-18.286-8-18.286-18.286v-59.429c0-9.714 8-18.286 18.286-18.286h122.286l-183.429-330.286c-2.857-5.714-2.857-12.571 0-18.286 3.429-5.714 9.714-9.143 16-9.143h110.857c6.857 0 13.143 4 16.571 10.286l122.857 242.857c13.714 26.857 22.857 49.714 32 71.429 9.714-24.571 22.286-48.571 33.143-73.714l109.143-240c2.857-6.857 9.714-10.857 16.571-10.857h109.143c6.286 0 12 3.429 15.429 9.143 3.429 5.143 3.429 12 0.571 17.714l-178.857 330.857h122.857c10.286 0 18.286 8.571 18.286 18.286v59.429c0 10.286-8 18.286-18.286 18.286h-165.714v48.571h165.714c10.286 0 18.286 8 18.286 18.286v58.857c0 10.286-8 18.286-18.286 18.286h-165.714v188.571c0 10.286-8.571 18.286-18.286 18.286z"
+ ],
+ "width": 586.8251428571429,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cny",
+ "jpy",
+ "rmb",
+ "yen"
+ ],
+ "defaultCode": 61783,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cny, jpy, rmb, yen",
+ "id": 308,
+ "order": 1164,
+ "prevSize": 28,
+ "code": 61783
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 308
+ },
+ {
+ "icon": {
+ "paths": [
+ "M596 322.857c0-76.571-54.286-128-134.857-128h-182.857v256h182.857c80.571 0 134.857-51.429 134.857-128zM731.429 322.857c0 146.857-106.286 249.714-258.857 249.714h-194.286v67.429h288.571c10.286 0 18.286 8 18.286 18.286v73.143c0 10.286-8 18.286-18.286 18.286h-288.571v109.714c0 10.286-8 18.286-18.286 18.286h-95.429c-10.286 0-18.286-8-18.286-18.286v-109.714h-128c-10.286 0-18.286-8-18.286-18.286v-73.143c0-10.286 8-18.286 18.286-18.286h128v-67.429h-128c-10.286 0-18.286-8-18.286-18.286v-85.143c0-10.286 8-18.286 18.286-18.286h128v-359.429c0-10.286 8-18.286 18.286-18.286h308c152.571 0 258.857 102.857 258.857 249.714z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rouble",
+ "rub",
+ "ruble"
+ ],
+ "defaultCode": 61784,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "rouble, rub, ruble",
+ "id": 309,
+ "order": 1165,
+ "prevSize": 28,
+ "code": 61784
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 309
+ },
+ {
+ "icon": {
+ "paths": [
+ "M293.714 682.857l46.286-170.857h-90.857l42.857 171.429c0.571 1.143 0.571 2.286 1.143 3.429 0-1.143 0.571-2.857 0.571-4zM360 438.857l20-73.143h-166.857l18.286 73.143h128.571zM469.714 438.857h79.429l-20-73.143h-40zM726.286 683.429l44.571-171.429h-92.571l46.286 170.857c0.571 1.714 0.571 2.857 1.143 4 0-1.143 0.571-2.286 0.571-3.429zM789.714 438.857l18.857-73.143h-169.714l19.429 73.143h131.429zM1024 457.143v36.571c0 10.286-8 18.286-18.286 18.286h-121.714l-93.714 352c-2.286 8-9.714 13.714-17.714 13.714h-90.857c-8 0-15.429-5.714-17.714-13.714l-94.857-352h-119.429l-95.429 352c-2.286 8-9.143 13.714-17.714 13.714h-90.857c-8 0-15.429-5.714-17.143-13.714l-91.429-352h-118.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h100l-18.857-73.143h-81.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h62.286l-50.857-196.571c-1.714-5.714-0.571-11.429 2.857-16 3.429-4 9.143-6.857 14.857-6.857h78.286c8.571 0 16 5.714 17.714 13.714l51.429 205.714h205.143l55.429-205.714c2.286-8 9.714-13.714 17.714-13.714h72c8.571 0 15.429 5.714 17.714 13.714l56 205.714h208.571l53.143-205.714c1.714-8 9.143-13.714 17.714-13.714h78.286c5.714 0 11.429 2.857 14.857 6.857 3.429 4.571 4.571 10.857 2.857 16l-52 196.571h63.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-82.857l-19.429 73.143h102.286c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "krw",
+ "won"
+ ],
+ "defaultCode": 61785,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "krw, won",
+ "id": 310,
+ "order": 1166,
+ "prevSize": 28,
+ "code": 61785
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 310
+ },
+ {
+ "icon": {
+ "paths": [
+ "M666.857 365.714c7.429 76-24.571 121.714-74.857 147.429 83.429 20 136 69.714 125.714 181.143-13.143 138.857-116 176-263.429 184v145.714h-88v-143.429c-22.286 0-45.714 0-69.714-0.571v144h-88v-145.714c-20.571 0-41.143-0.571-62.286-0.571h-114.286l17.714-104.571c64.571 1.143 63.429 0 63.429 0 24.571 0 31.429-17.714 33.143-29.143v-229.714h9.143c-3.429-0.571-6.857-0.571-9.143-0.571v-164c-3.429-18.286-14.857-38.857-50.857-38.857 0 0 1.143-1.143-63.429 0v-93.714l121.143 0.571c17.714 0 36.571 0 55.429-0.571v-144h88v141.143c23.429-0.571 46.857-1.143 69.714-1.143v-140h88v144c113.143 9.714 202.857 44.571 212.571 148.571zM544 677.143c0-113.143-186.286-96.571-245.714-96.571v193.143c59.429 0 245.714 12.571 245.714-96.571zM503.429 405.143c0-103.429-155.429-88-205.143-88v175.429c49.714 0 205.143 11.429 205.143-87.429z"
+ ],
+ "width": 760.0274285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bitcoin",
+ "btc"
+ ],
+ "defaultCode": 61786,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bitcoin, btc",
+ "id": 311,
+ "order": 1167,
+ "prevSize": 28,
+ "code": 61786
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 311
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 292.571v-269.714c8 5.143 14.857 10.286 20.571 16l233.143 233.143c5.714 5.714 10.857 12.571 16 20.571h-269.714zM512 310.857c0 30.286 24.571 54.857 54.857 54.857h310.857v603.429c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h457.143v310.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file"
+ ],
+ "defaultCode": 61787,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "file",
+ "id": 312,
+ "order": 1168,
+ "prevSize": 28,
+ "code": 61787
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 312
+ },
+ {
+ "icon": {
+ "paths": [
+ "M838.857 272c5.714 5.714 10.857 12.571 16 20.571h-269.714v-269.714c8 5.143 14.857 10.286 20.571 16zM566.857 365.714h310.857v603.429c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h457.143v310.857c0 30.286 24.571 54.857 54.857 54.857zM658.286 786.286v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM658.286 640v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM658.286 493.714v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-text"
+ ],
+ "defaultCode": 61788,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "file-text",
+ "id": 313,
+ "order": 1169,
+ "prevSize": 28,
+ "code": 61788
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 313
+ },
+ {
+ "icon": {
+ "paths": [
+ "M680.571 233.143h101.143l-41.143-124.571-6.857-26.857c-0.571-4.571-1.143-8-1.143-11.429h-2.286l-1.714 11.429c-1.714 6.857-2.286 15.429-6.286 26.857zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM898.286 890.857v133.143h-333.714v-51.429l210.857-302.286c4.571-6.857 9.143-12.571 12-15.429l6.286-5.143v-1.714c-2.286 0-4.571 0.571-8 0.571-4.571 1.143-10.286 1.714-17.143 1.714h-132.571v65.714h-68.571v-130.857h324v50.857l-210.857 302.857c-3.429 5.143-8 10.286-12 14.857l-6.286 6.286v1.143l8-1.143c5.143-1.143 10.286-1.143 17.143-1.143h141.714v-68h69.143zM949.143 378.286v60.571h-164.571v-60.571h42.857l-26.857-82.286h-138.857l-26.857 82.286h42.857v60.571h-164v-60.571h40l131.429-378.286h92.571l131.429 378.286h40z"
+ ],
+ "width": 965.7051428571427,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-alpha-asc"
+ ],
+ "defaultCode": 61789,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sort-alpha-asc",
+ "id": 314,
+ "order": 1170,
+ "prevSize": 28,
+ "code": 61789
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 314
+ },
+ {
+ "icon": {
+ "paths": [
+ "M680.571 818.286h101.143l-41.143-124.571-6.857-26.857c-0.571-4.571-1.143-8-1.143-11.429h-2.286l-1.714 11.429c-1.714 6.857-2.286 15.429-6.286 26.857zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM949.143 963.429v60.571h-164.571v-60.571h42.857l-26.857-82.286h-138.857l-26.857 82.286h42.857v60.571h-164v-60.571h40l131.429-378.286h92.571l131.429 378.286h40zM898.286 305.714v133.143h-333.714v-51.429l210.857-302.286c4.571-6.857 9.143-12.571 12-15.429l6.286-5.143v-1.714c-2.286 0-4.571 0.571-8 0.571-4.571 1.143-10.286 1.714-17.143 1.714h-132.571v65.714h-68.571v-130.857h324v50.857l-210.857 302.857c-3.429 5.143-8 10.286-12 14.857l-6.286 5.714v1.714l8-1.714c5.143-0.571 10.286-0.571 17.143-0.571h141.714v-68h69.143z"
+ ],
+ "width": 965.7051428571427,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-alpha-desc"
+ ],
+ "defaultCode": 61790,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sort-alpha-desc",
+ "id": 315,
+ "order": 1171,
+ "prevSize": 28,
+ "code": 61790
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 315
+ },
+ {
+ "icon": {
+ "paths": [
+ "M420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 896v109.714c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h475.429c10.286 0 18.286 8 18.286 18.286zM914.286 603.429v109.714c0 10.286-8 18.286-18.286 18.286h-365.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h365.714c10.286 0 18.286 8 18.286 18.286zM804.571 310.857v109.714c0 10.286-8 18.286-18.286 18.286h-256c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h256c10.286 0 18.286 8 18.286 18.286zM694.857 18.286v109.714c0 10.286-8 18.286-18.286 18.286h-146.286c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h146.286c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1040.6034285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-amount-asc"
+ ],
+ "defaultCode": 61792,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sort-amount-asc",
+ "id": 316,
+ "order": 1172,
+ "prevSize": 28,
+ "code": 61792
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 316
+ },
+ {
+ "icon": {
+ "paths": [
+ "M694.857 896v109.714c0 10.286-8 18.286-18.286 18.286h-146.286c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h146.286c10.286 0 18.286 8 18.286 18.286zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM804.571 603.429v109.714c0 10.286-8 18.286-18.286 18.286h-256c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h256c10.286 0 18.286 8 18.286 18.286zM914.286 310.857v109.714c0 10.286-8 18.286-18.286 18.286h-365.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h365.714c10.286 0 18.286 8 18.286 18.286zM1024 18.286v109.714c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h475.429c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1040.6034285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-amount-desc"
+ ],
+ "defaultCode": 61793,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sort-amount-desc",
+ "id": 317,
+ "order": 1173,
+ "prevSize": 28,
+ "code": 61793
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 317
+ },
+ {
+ "icon": {
+ "paths": [
+ "M769.143 750.286c0-46.857-38.286-96.571-84-96.571-40 0-65.143 32.571-65.143 74.857 0 41.143 26.286 76 80.571 76 37.143 0 68.571-22.286 68.571-54.286zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM849.143 783.429c0 115.429-62.857 240.571-198.857 240.571-25.714 0-46.857-4-61.714-9.143-9.143-2.857-17.143-5.714-24-8.571l22.286-64.571c5.143 2.286 11.429 4.571 17.714 6.286 11.429 4 26.286 7.429 42.857 7.429 68.571 0 104-57.143 114.857-116.571h-1.143c-16 17.143-49.714 29.143-83.429 29.143-82.857 0-137.143-65.143-137.143-139.429 0-78.857 60.571-143.429 144.571-143.429 90.857 0 164 74.286 164 198.286zM832 373.714v65.143h-268v-65.143h95.429v-246.857c0-7.429 0.571-14.857 0.571-20.571v-9.143h-1.143l-4 6.857c-2.857 4.571-7.429 10.286-14.857 17.714l-35.429 33.143-46.857-49.143 109.714-105.714h70.286v373.714h94.286z"
+ ],
+ "width": 865.7188571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-numeric-asc"
+ ],
+ "defaultCode": 61794,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sort-numeric-asc",
+ "id": 318,
+ "order": 1174,
+ "prevSize": 28,
+ "code": 61794
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 318
+ },
+ {
+ "icon": {
+ "paths": [
+ "M769.143 165.143c0-46.857-38.286-96.571-84-96.571-40 0-65.143 32.571-65.143 74.857 0 41.143 26.286 76 80.571 76 37.143 0 68.571-22.286 68.571-54.286zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM832 958.857v65.143h-268v-65.143h95.429v-246.857c0-7.429 0.571-14.857 0.571-20.571v-9.143h-1.143l-4 6.857c-2.857 4.571-7.429 10.286-14.857 17.714l-35.429 33.143-46.857-49.143 109.714-105.714h70.286v373.714h94.286zM849.143 198.286c0 115.429-62.857 240.571-198.857 240.571-25.714 0-46.857-4-61.714-9.143-9.143-2.857-17.143-5.714-24-8.571l22.286-64.571c5.143 2.286 11.429 4.571 17.714 6.286 11.429 4 26.286 7.429 42.857 7.429 68.571 0 104-57.143 114.857-116.571h-1.143c-16 17.143-49.714 29.143-83.429 29.143-82.857 0-137.143-65.143-137.143-139.429 0-78.857 60.571-143.429 144.571-143.429 90.857 0 164 74.286 164 198.286z"
+ ],
+ "width": 865.7188571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort-numeric-desc"
+ ],
+ "defaultCode": 61795,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sort-numeric-desc",
+ "id": 319,
+ "order": 1175,
+ "prevSize": 28,
+ "code": 61795
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 319
+ },
+ {
+ "icon": {
+ "paths": [
+ "M146.286 768c0-20-16.571-36.571-36.571-36.571-20.571 0-36.571 16.571-36.571 36.571 0 20.571 16 36.571 36.571 36.571 20 0 36.571-16 36.571-36.571zM237.714 475.429v365.714c0 20-16.571 36.571-36.571 36.571h-164.571c-20 0-36.571-16.571-36.571-36.571v-365.714c0-20 16.571-36.571 36.571-36.571h164.571c20 0 36.571 16.571 36.571 36.571zM914.286 475.429c0 30.286-12 62.857-31.429 85.143 6.286 18.286 8.571 35.429 8.571 43.429 1.143 28.571-7.429 55.429-24.571 78.286 6.286 21.143 6.286 44 0 66.857-5.714 21.143-16.571 40-30.857 53.714 3.429 42.857-6.286 77.714-28 103.429-24.571 29.143-62.286 44-112.571 44.571h-73.714c-81.714 0-158.857-26.857-220.571-48-36-12.571-70.286-24.571-90.286-25.143-19.429-0.571-36.571-16.571-36.571-36.571v-366.286c0-18.857 16-34.857 34.857-36.571 21.143-1.714 76-69.714 101.143-102.857 20.571-26.286 40-50.857 57.714-68.571 22.286-22.286 28.571-56.571 35.429-89.714 6.286-33.714 13.143-69.143 37.714-93.143 6.857-6.857 16-10.857 25.714-10.857 128 0 128 102.286 128 146.286 0 46.857-16.571 80-32 109.714-6.286 12.571-12 18.286-16.571 36.571h158.286c59.429 0 109.714 50.286 109.714 109.714z"
+ ],
+ "width": 914.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumbs-up"
+ ],
+ "defaultCode": 61796,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "thumbs-up",
+ "id": 320,
+ "order": 1176,
+ "prevSize": 28,
+ "code": 61796
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 320
+ },
+ {
+ "icon": {
+ "paths": [
+ "M146.286 329.143c0 20-16.571 36.571-36.571 36.571-20.571 0-36.571-16.571-36.571-36.571 0-20.571 16-36.571 36.571-36.571 20 0 36.571 16 36.571 36.571zM237.714 621.714v-365.714c0-20-16.571-36.571-36.571-36.571h-164.571c-20 0-36.571 16.571-36.571 36.571v365.714c0 20 16.571 36.571 36.571 36.571h164.571c20 0 36.571-16.571 36.571-36.571zM882.857 536.571c19.429 21.714 31.429 54.857 31.429 85.143-0.571 59.429-50.286 109.714-109.714 109.714h-158.286c4.571 18.286 10.286 24 16.571 36.571 14.857 29.714 32 62.857 32 109.714 0 44 0 146.286-128 146.286-9.714 0-18.857-4-25.714-10.857-24.571-24-31.429-59.429-37.714-93.143-6.857-33.143-13.143-67.429-35.429-89.714-17.714-17.714-37.143-42.286-57.714-68.571-25.143-33.143-80-101.143-101.143-102.857-18.857-1.714-34.857-17.714-34.857-36.571v-366.286c0-20 17.143-36 36.571-36.571 20-0.571 54.286-12.571 90.286-25.143 61.714-21.143 138.857-48 220.571-48h73.714c50.286 0.571 88 15.429 112.571 44.571 21.714 25.714 31.429 60.571 28 103.429 14.286 13.714 25.143 32.571 30.857 53.714 6.286 22.857 6.286 45.714 0 66.857 17.143 22.857 25.714 49.714 24.571 78.286 0 8-2.286 25.143-8.571 43.429z"
+ ],
+ "width": 914.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumbs-down"
+ ],
+ "defaultCode": 61797,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "thumbs-down",
+ "id": 321,
+ "order": 1177,
+ "prevSize": 28,
+ "code": 61797
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 321
+ },
+ {
+ "icon": {
+ "paths": [
+ "M525.143 744.571v-89.714c0-18.857-5.714-28.571-16.571-28.571-6.286 0-12.571 2.857-18.857 9.143v128c6.286 6.286 12.571 9.143 18.857 9.143 10.857 0 16.571-9.143 16.571-28zM630.286 674.857h37.714v-19.429c0-19.429-6.286-29.143-18.857-29.143s-18.857 9.714-18.857 29.143v19.429zM304 522.857v40h-45.714v241.714h-42.286v-241.714h-44.571v-40h132.571zM418.857 594.857v209.714h-38.286v-22.857c-14.857 17.143-29.143 25.714-43.429 25.714-12 0-20.571-5.143-24-16-2.286-6.286-3.429-16-3.429-30.857v-165.714h37.714v154.286c0 8.571 0 13.714 0.571 14.857 0.571 5.714 3.429 8.571 8.571 8.571 8 0 15.429-5.714 24-17.714v-160h38.286zM562.857 658.286v83.429c0 18.857-1.143 33.143-4 41.714-4.571 16-14.857 24-30.286 24-13.143 0-26.286-8-38.857-23.429v20.571h-38.286v-281.714h38.286v92c12-14.857 25.143-22.857 38.857-22.857 15.429 0 25.714 8 30.286 24 2.857 8.571 4 22.286 4 42.286zM706.286 732v5.143c0 12.571-0.571 20.571-1.143 24.571-1.143 8.571-4 16-8.571 22.857-10.286 15.429-26.286 22.857-45.714 22.857-20 0-35.429-7.429-46.286-21.714-8-10.286-12-26.857-12-49.143v-73.714c0-22.286 3.429-38.286 11.429-49.143 10.857-14.286 26.286-21.714 45.714-21.714 18.857 0 34.286 7.429 44.571 21.714 8 10.857 12 26.857 12 49.143v43.429h-76v37.143c0 19.429 6.286 29.143 19.429 29.143 9.143 0 14.857-5.143 17.143-14.857 0-2.286 0.571-10.857 0.571-25.714h38.857zM448.571 261.143v89.143c0 19.429-6.286 29.143-18.286 29.143-12.571 0-18.286-9.714-18.286-29.143v-89.143c0-19.429 5.714-29.714 18.286-29.714 12 0 18.286 10.286 18.286 29.714zM753.143 668.571v0c0-49.143 0-101.143-10.857-148.571-8-33.714-35.429-58.286-68-61.714-77.714-8.571-156.571-8.571-235.429-8.571-78.286 0-157.143 0-234.857 8.571-33.143 3.429-60.571 28-68 61.714-10.857 47.429-11.429 99.429-11.429 148.571v0c0 48.571 0 100.571 11.429 148.571 7.429 33.143 34.857 57.714 67.429 61.714 78.286 8.571 157.143 8.571 235.429 8.571s157.143 0 235.429-8.571c32.571-4 60-28.571 67.429-61.714 11.429-48 11.429-100 11.429-148.571zM321.714 296.571l51.429-169.143h-42.857l-29.143 111.429-30.286-111.429h-44.571c8.571 26.286 18.286 52.571 26.857 78.857 13.714 40 22.286 69.714 26.286 90.286v114.857h42.286v-114.857zM486.857 342.857v-74.286c0-22.286-4-38.857-12-49.714-10.857-14.286-25.714-21.714-44.571-21.714-19.429 0-34.286 7.429-44.571 21.714-8 10.857-12 27.429-12 49.714v74.286c0 22.286 4 38.857 12 49.714 10.286 14.286 25.143 21.714 44.571 21.714 18.857 0 33.714-7.429 44.571-21.714 8-10.286 12-27.429 12-49.714zM590.286 411.429h38.286v-211.429h-38.286v161.714c-8.571 12-16.571 17.714-24 17.714-5.143 0-8.571-2.857-9.143-9.143-0.571-1.143-0.571-5.714-0.571-14.857v-155.429h-38.286v167.429c0 14.857 1.143 24.571 3.429 31.429 4 10.286 12.571 15.429 24.571 15.429 14.286 0 28.571-8.571 44-25.714v22.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "youtube-square"
+ ],
+ "defaultCode": 61798,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "youtube-square",
+ "id": 322,
+ "order": 1178,
+ "prevSize": 28,
+ "code": 61798
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 322
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554.857 710.857v120.571c0 25.714-7.429 38.286-22.286 38.286-8.571 0-17.143-4-25.714-12.571v-172c8.571-8.571 17.143-12.571 25.714-12.571 14.857 0 22.286 13.143 22.286 38.286zM748 711.429v26.286h-51.429v-26.286c0-25.714 8.571-38.857 25.714-38.857s25.714 13.143 25.714 38.857zM196 586.857h61.143v-53.714h-178.286v53.714h60v325.143h57.143v-325.143zM360.571 912h50.857v-282.286h-50.857v216c-11.429 16-22.286 24-32.571 24-6.857 0-10.857-4-12-12-0.571-1.714-0.571-8-0.571-20v-208h-50.857v223.429c0 20 1.714 33.143 4.571 41.714 4.571 14.286 16.571 21.143 33.143 21.143 18.286 0 37.714-11.429 58.286-34.857v30.857zM605.714 827.429v-112.571c0-26.286-1.143-45.143-5.143-56.571-6.286-21.143-20.571-32-40.571-32-18.857 0-36.571 10.286-53.143 30.857v-124h-50.857v378.857h50.857v-27.429c17.143 21.143 34.857 31.429 53.143 31.429 20 0 34.286-10.857 40.571-31.429 4-12 5.143-30.857 5.143-57.143zM798.857 821.714v-7.429h-52c0 20.571-0.571 32-1.143 34.857-2.857 13.714-10.286 20.571-22.857 20.571-17.714 0-26.286-13.143-26.286-39.429v-49.714h102.286v-58.857c0-30.286-5.143-52-15.429-66.286-14.857-19.429-34.857-29.143-60.571-29.143-26.286 0-46.286 9.714-61.143 29.143-10.857 14.286-16 36-16 66.286v98.857c0 30.286 5.714 52.571 16.571 66.286 14.857 19.429 34.857 29.143 61.714 29.143s48-10.286 61.714-30.286c6.286-9.143 10.857-19.429 12-30.857 1.143-5.143 1.143-16.571 1.143-33.143zM451.429 300v-120c0-26.286-7.429-39.429-24.571-39.429-16.571 0-24.571 13.143-24.571 39.429v120c0 26.286 8 40 24.571 40 17.143 0 24.571-13.714 24.571-40zM862.286 729.143c0 65.714-0.571 136-14.857 200-10.857 45.143-47.429 78.286-91.429 82.857-105.143 12-211.429 12-317.143 12s-212 0-317.143-12c-44-4.571-81.143-37.714-91.429-82.857-14.857-64-14.857-134.286-14.857-200v0c0-66.286 0.571-136 14.857-200 10.857-45.143 47.429-78.286 92-83.429 104.571-11.429 210.857-11.429 316.571-11.429s212 0 317.143 11.429c44 5.143 81.143 38.286 91.429 83.429 14.857 64 14.857 133.714 14.857 200zM292 0h58.286l-69.143 228v154.857h-57.143v-154.857c-5.143-28-16.571-68-34.857-121.143-12.571-35.429-25.143-71.429-37.143-106.857h60.571l40.571 150.286zM503.429 190.286v100c0 30.286-5.143 53.143-16 67.429-14.286 19.429-34.286 29.143-60.571 29.143-25.714 0-45.714-9.714-60-29.143-10.857-14.857-16-37.143-16-67.429v-100c0-30.286 5.143-52.571 16-66.857 14.286-19.429 34.286-29.143 60-29.143 26.286 0 46.286 9.714 60.571 29.143 10.857 14.286 16 36.571 16 66.857zM694.857 97.714v285.143h-52v-31.429c-20.571 24-40 35.429-58.857 35.429-16.571 0-28.571-6.857-33.714-21.143-2.857-8.571-4.571-22.286-4.571-42.857v-225.143h52v209.714c0 12 0 18.857 0.571 20 1.143 8 5.143 12.571 12 12.571 10.286 0 21.143-8 32.571-24.571v-217.714h52z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "youtube"
+ ],
+ "defaultCode": 61799,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "youtube",
+ "id": 323,
+ "order": 1179,
+ "prevSize": 28,
+ "code": 61799
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 323
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.143 381.143c0 0-5.714 9.714-146.857 260.571-7.429 12.571-17.143 26.286-37.143 26.286h-136.571c-8 0-14.286-4-17.714-9.714s-4-13.143 0-20.571l144.571-256c0.571 0 0.571 0 0-0.571l-92-159.429c-4-7.429-4.571-15.429-0.571-21.143 3.429-5.714 10.286-8.571 18.286-8.571h136.571c20.571 0 30.857 13.714 37.714 25.714 93.143 162.857 93.714 163.429 93.714 163.429zM801.714 14.286c4 5.714 4 13.714 0 21.143l-301.714 533.714c-0.571 0-0.571 0.571 0 0.571l192 351.429c4 7.429 4 15.429 0.571 21.143-4 5.714-10.286 8.571-18.286 8.571h-136.571c-20.571 0-31.429-13.714-37.714-25.714-193.714-354.857-193.714-355.429-193.714-355.429s9.714-17.143 303.429-538.286c7.429-13.143 16-25.714 36.571-25.714h137.714c8 0 14.286 2.857 17.714 8.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "xing"
+ ],
+ "defaultCode": 61800,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "xing",
+ "id": 324,
+ "order": 1180,
+ "prevSize": 28,
+ "code": 61800
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 324
+ },
+ {
+ "icon": {
+ "paths": [
+ "M391.429 437.143c0 0 0-0.571-72-126.857-5.714-9.143-13.714-19.429-29.714-19.429h-105.143c-6.857 0-12 2.286-14.857 6.286-2.857 4.571-2.286 10.857 0.571 16.571l71.429 123.429v0.571l-112 197.714c-3.429 5.714-2.857 11.429 0 16s7.429 7.429 13.714 7.429h105.714c15.429 0 23.429-10.857 28.571-20.571 109.714-193.714 113.714-201.143 113.714-201.143zM748 153.143c-2.857-4.571-7.429-6.857-13.714-6.857h-106.857c-15.429 0-22.286 9.714-28 20-227.429 403.429-234.857 416.571-234.857 416.571s0 0.571 149.714 274.857c5.143 9.143 13.143 20 29.714 20h105.143c6.286 0 11.429-2.286 14.286-6.857s2.857-10.286-0.571-16l-148.571-272v-0.571l233.714-413.143c2.857-5.714 2.857-11.429 0-16zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "xing-square"
+ ],
+ "defaultCode": 61801,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "xing-square",
+ "id": 325,
+ "order": 1181,
+ "prevSize": 28,
+ "code": 61801
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 325
+ },
+ {
+ "icon": {
+ "paths": [
+ "M406.286 644.571l276.571-142.857-276.571-144.571v287.429zM512 152c215.429 0 358.286 10.286 358.286 10.286 20 2.286 64 2.286 102.857 43.429 0 0 31.429 30.857 40.571 101.714 10.857 82.857 10.286 165.714 10.286 165.714v77.714s0.571 82.857-10.286 165.714c-9.143 70.286-40.571 101.714-40.571 101.714-38.857 40.571-82.857 40.571-102.857 42.857 0 0-142.857 10.857-358.286 10.857v0c-266.286-2.286-348-10.286-348-10.286-22.857-4-74.286-2.857-113.143-43.429 0 0-31.429-31.429-40.571-101.714-10.857-82.857-10.286-165.714-10.286-165.714v-77.714s-0.571-82.857 10.286-165.714c9.143-70.857 40.571-101.714 40.571-101.714 38.857-41.143 82.857-41.143 102.857-43.429 0 0 142.857-10.286 358.286-10.286v0z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "youtube-play"
+ ],
+ "defaultCode": 61802,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "youtube-play",
+ "id": 326,
+ "order": 1182,
+ "prevSize": 28,
+ "code": 61802
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 326
+ },
+ {
+ "icon": {
+ "paths": [
+ "M229.714 404l282.286 174.286-195.429 162.857-280-182.286zM793.143 721.143v61.714l-280 167.429v0.571l-0.571-0.571-0.571 0.571v-0.571l-279.429-167.429v-61.714l84 54.857 195.429-162.286v-1.143l0.571 0.571 0.571-0.571v1.143l196 162.286zM316.571 67.429l195.429 162.857-282.286 173.714-193.143-154.286zM794.286 404l193.143 154.857-279.429 182.286-196-162.857zM708 67.429l279.429 182.286-193.143 154.286-282.286-173.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dropbox"
+ ],
+ "defaultCode": 61803,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "dropbox",
+ "id": 327,
+ "order": 1183,
+ "prevSize": 28,
+ "code": 61803
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 327
+ },
+ {
+ "icon": {
+ "paths": [
+ "M736.571 932.571h-638.857v-274.286h-91.429v365.714h821.714v-365.714h-91.429v274.286zM198.286 633.143l18.857-89.714 447.429 94.286-18.857 89.143zM257.143 419.429l38.286-83.429 414.286 193.714-38.286 82.857zM372 216l58.286-70.286 350.857 293.143-58.286 70.286zM598.857 0l272.571 366.286-73.143 54.857-272.571-366.286zM188.571 840.571v-90.857h457.143v90.857h-457.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stack-overflow"
+ ],
+ "defaultCode": 61804,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "stack-overflow",
+ "id": 328,
+ "order": 1184,
+ "prevSize": 28,
+ "code": 61804
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 328
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 512c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM664 512c0 124.571-100.571 225.143-225.143 225.143s-225.143-100.571-225.143-225.143 100.571-225.143 225.143-225.143 225.143 100.571 225.143 225.143zM725.714 277.714c0 29.143-23.429 52.571-52.571 52.571s-52.571-23.429-52.571-52.571 23.429-52.571 52.571-52.571 52.571 23.429 52.571 52.571zM438.857 152c-64 0-201.143-5.143-258.857 17.714-20 8-34.857 17.714-50.286 33.143s-25.143 30.286-33.143 50.286c-22.857 57.714-17.714 194.857-17.714 258.857s-5.143 201.143 17.714 258.857c8 20 17.714 34.857 33.143 50.286s30.286 25.143 50.286 33.143c57.714 22.857 194.857 17.714 258.857 17.714s201.143 5.143 258.857-17.714c20-8 34.857-17.714 50.286-33.143s25.143-30.286 33.143-50.286c22.857-57.714 17.714-194.857 17.714-258.857s5.143-201.143-17.714-258.857c-8-20-17.714-34.857-33.143-50.286s-30.286-25.143-50.286-33.143c-57.714-22.857-194.857-17.714-258.857-17.714zM877.714 512c0 60.571 0.571 120.571-2.857 181.143-3.429 70.286-19.429 132.571-70.857 184s-113.714 67.429-184 70.857c-60.571 3.429-120.571 2.857-181.143 2.857s-120.571 0.571-181.143-2.857c-70.286-3.429-132.571-19.429-184-70.857s-67.429-113.714-70.857-184c-3.429-60.571-2.857-120.571-2.857-181.143s-0.571-120.571 2.857-181.143c3.429-70.286 19.429-132.571 70.857-184s113.714-67.429 184-70.857c60.571-3.429 120.571-2.857 181.143-2.857s120.571-0.571 181.143 2.857c70.286 3.429 132.571 19.429 184 70.857s67.429 113.714 70.857 184c3.429 60.571 2.857 120.571 2.857 181.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "instagram"
+ ],
+ "defaultCode": 61805,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "instagram",
+ "id": 329,
+ "order": 1185,
+ "prevSize": 28,
+ "code": 61805
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 329
+ },
+ {
+ "icon": {
+ "paths": [
+ "M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571zM398.857 512c0-66.857-54.286-121.143-121.143-121.143s-121.143 54.286-121.143 121.143 54.286 121.143 121.143 121.143 121.143-54.286 121.143-121.143zM721.143 512c0-66.857-54.286-121.143-121.143-121.143s-121.143 54.286-121.143 121.143 54.286 121.143 121.143 121.143 121.143-54.286 121.143-121.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flickr"
+ ],
+ "defaultCode": 61806,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "flickr",
+ "id": 330,
+ "order": 1186,
+ "prevSize": 28,
+ "code": 61806
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 330
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 355.429l114.857 174.857h-229.714zM647.429 658.286h53.714l-262.286-394.857-262.286 394.857h53.714l59.429-91.429h298.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "adn"
+ ],
+ "defaultCode": 61808,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "adn",
+ "id": 331,
+ "order": 1187,
+ "prevSize": 28,
+ "code": 61808
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 331
+ },
+ {
+ "icon": {
+ "paths": [
+ "M465.714 490.857c6.286 48-52 85.714-92.571 61.143-45.714-20-45.714-92.571-1.143-113.143 38.286-23.429 93.714 7.429 93.714 52zM529.143 478.857c-10.286-81.143-102.286-134.857-177.143-101.143-47.429 21.143-79.429 71.429-77.143 124.571 2.857 69.714 69.143 126.857 138.857 120.571s124-74.286 115.429-144zM665.714 169.143c-25.143-33.143-68-38.857-105.714-45.143-106.857-17.143-216.571-17.714-323.429 1.143-35.429 5.714-75.429 12-97.714 44 36.571 34.286 88.571 39.429 135.429 45.143 84.571 10.857 171.429 11.429 256 0.571 47.429-5.714 100-10.286 135.429-45.714zM698.286 760.571c-16 56-6.857 131.429-66.286 164-102.286 56.571-226.286 62.857-338.857 42.857-59.429-10.857-129.143-29.714-161.714-85.714-14.286-54.857-23.429-110.857-32.571-166.857l3.429-9.143 10.286-5.143c170.286 112.571 408.571 112.571 579.429 0 26.857 8 6.857 40.571 6.286 60zM801.714 211.429c-19.429 125.143-41.714 249.714-63.429 374.286-6.286 36.571-41.714 57.143-71.429 72.571-106.857 53.714-231.429 62.857-348.571 50.286-79.429-8.571-160.571-29.714-225.143-79.429-30.286-23.429-30.286-63.429-36-97.143-20-117.143-42.857-234.286-57.143-352.571 6.857-51.429 64.571-73.714 107.429-89.714 57.143-21.143 118.286-30.857 178.857-36.571 129.143-12.571 261.143-8 386.286 28.571 44.571 13.143 92.571 31.429 122.857 69.714 13.714 17.714 9.143 40 6.286 60z"
+ ],
+ "width": 809.1062857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bitbucket"
+ ],
+ "defaultCode": 61809,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bitbucket",
+ "id": 332,
+ "order": 1188,
+ "prevSize": 28,
+ "code": 61809
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 332
+ },
+ {
+ "icon": {
+ "paths": [
+ "M484.571 497.143c0-32.571-40-54.857-67.429-38.286-32.571 15.429-32.571 68 0.571 81.714 29.714 17.714 71.429-9.143 66.857-43.429zM530.286 488c6.286 50.286-33.143 99.429-83.429 104s-97.714-36.571-100-87.429c-1.714-37.714 21.714-74.286 56-89.714 53.714-24 120 14.857 127.429 73.143zM628.571 264.571c-25.143 25.714-63.429 29.143-97.143 33.143-61.143 8-123.429 7.429-185.143 0-33.714-4.571-70.857-8.571-97.143-33.143 16-22.857 44.571-27.429 70.286-31.429 77.143-13.714 156-13.143 233.143-0.571 27.429 4 58.286 8.571 76 32zM652.571 690.857c0-13.714 14.286-37.143-5.143-42.857-122.857 81.143-294.286 81.143-417.714 0l-6.857 3.429-2.857 6.857c6.857 40 13.143 80.571 23.429 120 23.429 40.571 73.714 54.286 116.571 61.714 81.143 14.857 170.857 10.286 244.571-30.286 42.857-24 36-78.286 48-118.857zM726.857 294.857c2.286-13.714 5.143-30.286-4.571-42.857-21.714-27.429-56-40.571-88.571-50.286-90.286-26.286-185.714-29.714-278.286-20.571-44 4-88 11.429-129.143 26.286-30.857 12-72.571 28-77.714 64.571 10.286 85.714 26.857 169.714 41.143 254.857 4.571 24 4.571 52.571 26.286 69.714 46.286 35.429 105.143 50.857 162.286 57.143 84.571 9.143 174.286 2.857 251.429-36 21.714-11.429 46.857-26.286 51.429-52.571 16-89.714 31.429-179.429 45.714-270.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bitbucket-square"
+ ],
+ "defaultCode": 61810,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bitbucket-square",
+ "id": 333,
+ "order": 1189,
+ "prevSize": 28,
+ "code": 61810
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 333
+ },
+ {
+ "icon": {
+ "paths": [
+ "M539.429 759.429l45.714 135.429c-17.143 25.714-94.857 54.857-164.571 56-207.429 3.429-285.714-147.429-285.714-253.714v-310.857h-96v-122.857c144-52 178.857-182.286 186.857-256.571 0.571-4.571 4.571-6.857 6.857-6.857h139.429v242.286h190.286v144h-190.857v296c0 40 14.857 95.429 91.429 93.714 25.143-0.571 58.857-8 76.571-16.571z"
+ ],
+ "width": 623.9817142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tumblr"
+ ],
+ "defaultCode": 61811,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "tumblr",
+ "id": 334,
+ "order": 1190,
+ "prevSize": 28,
+ "code": 61811
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 334
+ },
+ {
+ "icon": {
+ "paths": [
+ "M649.143 834.857l-35.429-104.571c-13.714 6.857-39.429 12.571-58.857 12.571-58.286 1.714-70.286-40.571-70.286-72v-227.429h146.857v-110.857h-146.286v-186.286h-107.429c-1.714 0-4.571 1.714-5.143 5.714-6.286 56.571-33.143 157.143-144 197.143v94.286h74.286v238.857c0 81.714 60 198.286 219.429 195.429 53.714-1.143 113.714-23.429 126.857-42.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tumblr-square"
+ ],
+ "defaultCode": 61812,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "tumblr-square",
+ "id": 335,
+ "order": 1191,
+ "prevSize": 28,
+ "code": 61812
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 335
+ },
+ {
+ "icon": {
+ "paths": [
+ "M437.143 742.286c2.857 6.857 1.714 14.286-2.857 20l-200 219.429c-3.429 3.429-8 5.714-13.143 5.714v0c-5.143 0-10.286-2.286-13.714-5.714l-202.857-219.429c-4.571-5.714-5.714-13.143-2.857-20 2.857-6.286 9.143-10.857 16.571-10.857h128v-713.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v713.143h128c7.429 0 13.714 4 16.571 10.857z"
+ ],
+ "width": 438.85714285714283,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "long-arrow-down"
+ ],
+ "defaultCode": 61813,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "long-arrow-down",
+ "id": 336,
+ "order": 1192,
+ "prevSize": 28,
+ "code": 61813
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 336
+ },
+ {
+ "icon": {
+ "paths": [
+ "M437.143 281.714c-2.857 6.286-9.143 10.857-16.571 10.857h-128v713.143c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-713.143h-128c-7.429 0-13.714-4-16.571-10.857s-1.714-14.286 2.857-20l200-219.429c3.429-3.429 8-5.714 13.143-5.714v0c5.143 0 10.286 2.286 13.714 5.714l202.857 219.429c4.571 5.714 5.714 13.143 2.857 20z"
+ ],
+ "width": 438.85714285714283,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "long-arrow-up"
+ ],
+ "defaultCode": 61814,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "long-arrow-up",
+ "id": 337,
+ "order": 1193,
+ "prevSize": 28,
+ "code": 61814
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 337
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 457.143v109.714c0 10.286-8 18.286-18.286 18.286h-713.143v128c0 7.429-4 13.714-10.857 16.571s-14.286 1.714-20-2.857l-219.429-200c-3.429-3.429-5.714-8-5.714-13.143v0c0-5.143 2.286-10.286 5.714-13.714l219.429-202.286c5.714-5.143 13.143-6.286 20-3.429 6.286 2.857 10.857 9.143 10.857 16.571v128h713.143c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1060.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "long-arrow-left"
+ ],
+ "defaultCode": 61815,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "long-arrow-left",
+ "id": 338,
+ "order": 1194,
+ "prevSize": 28,
+ "code": 61815
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 338
+ },
+ {
+ "icon": {
+ "paths": [
+ "M987.429 510.286c0 5.143-2.286 10.286-5.714 13.714l-219.429 202.286c-5.714 5.143-13.143 6.286-20 3.429-6.286-2.857-10.857-9.143-10.857-16.571v-128h-713.143c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h713.143v-128c0-7.429 4-13.714 10.857-16.571s14.286-1.714 20 2.857l219.429 200c3.429 3.429 5.714 8 5.714 13.143v0z"
+ ],
+ "width": 987.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "long-arrow-right"
+ ],
+ "defaultCode": 61816,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "long-arrow-right",
+ "id": 339,
+ "order": 1195,
+ "prevSize": 28,
+ "code": 61816
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 339
+ },
+ {
+ "icon": {
+ "paths": [
+ "M796 694.286c-14.286 45.143-37.143 93.143-70.286 142.857-49.143 74.857-98.286 112-146.857 112-19.429 0-45.714-6.286-80-18.286-33.714-12.571-62.857-18.286-86.286-18.286-22.857 0-50.286 6.286-81.143 18.857-31.429 13.143-56.571 19.429-75.429 19.429-58.857 0-115.429-49.714-172-148-55.429-98.286-84-193.714-84-287.429 0-87.429 21.714-158.286 64.571-213.714 42.857-54.857 96.571-82.286 162.286-82.286 28 0 61.143 5.714 101.143 17.143 39.429 11.429 65.714 17.143 78.857 17.143 16.571 0 44-6.286 81.714-19.429 37.714-12.571 70.857-19.429 98.857-19.429 45.714 0 86.286 12.571 121.714 37.143 20 13.714 40 33.143 59.429 57.143-29.714 25.143-51.429 47.429-65.143 67.429-24.571 35.429-37.143 74.857-37.143 118.286 0 46.857 13.143 89.714 39.429 127.429s56.571 61.714 90.286 72zM581.143 24c0 23.429-5.714 49.714-16.571 77.714-11.429 28.571-29.143 54.857-53.143 78.857-20.571 20.571-41.143 34.286-61.714 41.143-13.143 4-32.571 7.429-59.429 9.714 1.143-56.571 16-105.714 44.571-146.857s76.571-69.143 142.857-84.571c1.143 5.143 2.286 9.143 2.857 12.571 0 4 0.571 7.429 0.571 11.429z"
+ ],
+ "width": 796.0137142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "apple"
+ ],
+ "defaultCode": 61817,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "apple",
+ "id": 340,
+ "order": 1196,
+ "prevSize": 28,
+ "code": 61817
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 340
+ },
+ {
+ "icon": {
+ "paths": [
+ "M389.714 574.857v372l-389.714-53.714v-318.286h389.714zM389.714 150.286v376.571h-389.714v-322.857zM950.857 574.857v449.143l-518.286-71.429v-377.714h518.286zM950.857 73.143v453.714h-518.286v-382.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "windows"
+ ],
+ "defaultCode": 61818,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "windows",
+ "id": 341,
+ "order": 1197,
+ "prevSize": 28,
+ "code": 61818
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 341
+ },
+ {
+ "icon": {
+ "paths": [
+ "M281.714 276c12.571 0 22.286-10.286 22.286-22.286s-9.714-22.286-22.286-22.286c-12 0-21.714 10.286-21.714 22.286s9.714 22.286 21.714 22.286zM522.857 276c12 0 21.714-10.286 21.714-22.286s-9.714-22.286-21.714-22.286c-12.571 0-22.286 10.286-22.286 22.286s9.714 22.286 22.286 22.286zM58.857 381.143c32 0 58.286 26.286 58.286 58.286v245.714c0 32.571-25.714 58.857-58.286 58.857s-58.857-26.286-58.857-58.857v-245.714c0-32 26.286-58.286 58.857-58.286zM664.571 392v380.571c0 34.857-28 62.857-62.286 62.857h-42.857v129.714c0 32.571-26.286 58.857-58.857 58.857s-58.857-26.286-58.857-58.857v-129.714h-78.857v129.714c0 32.571-26.286 58.857-58.857 58.857-32 0-58.286-26.286-58.286-58.857l-0.571-129.714h-42.286c-34.857 0-62.857-28-62.857-62.857v-380.571h524.571zM532 160.571c80 41.143 134.286 120 134.286 210.857h-528.571c0-90.857 54.286-169.714 134.857-210.857l-40.571-74.857c-2.286-4-1.143-9.143 2.857-11.429 4-1.714 9.143-0.571 11.429 3.429l41.143 75.429c34.857-15.429 73.714-24 114.857-24s80 8.571 114.857 24l41.143-75.429c2.286-4 7.429-5.143 11.429-3.429 4 2.286 5.143 7.429 2.857 11.429zM804.571 439.429v245.714c0 32.571-26.286 58.857-58.857 58.857-32 0-58.286-26.286-58.286-58.857v-245.714c0-32.571 26.286-58.286 58.286-58.286 32.571 0 58.857 25.714 58.857 58.286z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "android"
+ ],
+ "defaultCode": 61819,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "android",
+ "id": 342,
+ "order": 1198,
+ "prevSize": 28,
+ "code": 61819
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 342
+ },
+ {
+ "icon": {
+ "paths": [
+ "M378.857 234.857v0c-11.429 1.143-7.429 11.429-13.714 11.429-5.714 0.571-4.571-12.571 13.714-11.429zM428.571 242.857c-5.714 1.714-6.286-9.143-16.571-6.286v0c16.571-7.429 22.286 4 16.571 6.286zM228 486.857c-5.143-1.714-4 8.571-9.143 16.571-4 7.429-14.286 13.143-6.286 14.286v0c2.857 0.571 10.857-6.286 14.286-14.286 2.857-9.714 5.714-14.857 1.143-16.571zM716.571 692c0-10.286-22.286-20-31.429-24 15.429-51.429 8.571-72-1.714-120.571-8-36.571-41.714-86.286-68-101.714 6.857 5.714 19.429 22.286 32.571 47.429 22.857 42.857 45.714 106.286 30.857 158.857-5.714 20.571-19.429 23.429-28.571 24-40 4.571-16.571-48-33.143-119.429-18.857-80-38.286-85.714-42.857-92-23.429-104-49.143-93.714-56.571-132.571-6.286-34.857 30.286-63.429-19.429-73.143-15.429-2.857-37.143-18.286-45.714-19.429s-13.143-57.714 18.857-59.429c31.429-2.286 37.143 35.429 31.429 50.286-9.143 14.857 0.571 20.571 16 15.429 12.571-4 4.571-37.143 7.429-41.714-8-48-28-54.857-48.571-58.857-78.857 6.286-43.429 93.143-51.429 85.143-11.429-12-44.571-1.143-44.571-8.571 0.571-44.571-14.286-70.286-34.857-70.857-22.857-0.571-32 31.429-33.143 49.714-1.714 17.143 9.714 53.143 18.286 50.286 5.714-1.714 15.429-13.143 5.143-12.571-5.143 0-13.143-12.571-14.286-27.429-0.571-14.857 5.143-29.714 24.571-29.143 22.286 0.571 22.286 45.143 20 46.857-7.429 5.143-16.571 14.857-17.714 16.571-7.429 12-21.714 15.429-27.429 20.571-9.714 10.286-12 21.714-4.571 25.714 26.286 14.857 17.714 32 54.286 33.143 24 1.143 41.714-3.429 58.286-8.571 12.571-4 53.143-12.571 61.714-27.429 4-6.286 8.571-6.286 11.429-4.571 5.714 2.857 6.857 13.714-7.429 17.143-20 5.714-40 16.571-58.286 23.429-17.714 7.429-23.429 10.286-40 13.143-37.714 6.857-65.714-13.714-40.571 10.857 8.571 8 16.571 13.143 38.286 12.571 48-1.714 101.143-59.429 106.286-33.714 1.143 5.714-14.857 12.571-27.429 18.857-44.571 21.714-76 65.143-104.571 50.286-25.714-13.714-51.429-77.143-50.857-48.571 0.571 44-57.714 82.857-30.857 133.143-17.714 4.571-57.143 88.571-62.857 132-3.429 25.143 2.286 56-4 73.143-8.571 25.143-47.429-24-34.857-84 2.286-10.286 0-12.571-2.857-7.429-15.429 28-6.857 67.429 5.714 94.857 5.143 12 18.286 17.143 28 27.429 20 22.857 98.857 81.143 112.571 95.429 17.714 16.571 12.571 55.429-24 59.429v0c18.857 35.429 37.143 38.857 36.571 96.571 21.714-11.429 13.143-36.571 4-52.571-6.286-11.429-14.286-16.571-12.571-19.429 1.143-1.714 12.571-11.429 18.857-4 19.429 21.714 56 25.714 94.857 20.571 39.429-4.571 81.714-18.286 101.143-49.714 9.143-14.857 15.429-20 19.429-17.143 4.571 2.286 6.286 12.571 5.714 29.714-0.571 18.286-8 37.143-13.143 52.571-5.143 17.714-6.857 29.714 10.286 30.286 4.571-32 13.714-63.429 16-95.429 2.857-36.571-23.429-104 5.143-137.714 7.429-9.143 16.571-10.286 29.143-10.286 1.714-45.714 72-42.286 95.429-23.429zM357.714 219.429c2.286-14.286-4.571-24.571-8-25.714-6.857-1.714-5.714 8.571-2.286 7.429v0c2.286 0 5.143 3.429 4 8.571-1.143 6.857-0.571 11.429 4.571 11.429 0.571 0 1.714 0 1.714-1.714zM597.143 332c-2.286-10.857-10.286-6.857-19.429-12.571-10.857-6.857-13.143-18.286-17.143-14.286v0c-12 13.143 14.857 40.571 26.286 42.857 6.857 1.143 12-8 10.286-16zM495.429 210.286c0.571-13.714-11.429-20.571-14.286-20-7.429 0.571-5.143 4-1.714 5.143v0c4.571 1.143 9.143 9.143 10.286 17.714 0 1.143 5.714-1.143 5.714-2.857zM526.286 77.143c0.571-2.857-6.857-6.286-12-10.286-4.571-4.571-9.143-8.571-13.714-8.571-11.429 1.143-5.714 13.143-7.429 18.857v0c-2.286 6.286-10.857 11.429-5.143 16 5.143 4 8.571-6.286 19.429-10.286 2.857-1.143 16 0.571 18.857-5.714zM849.143 843.429c70.286 43.429-26.286 79.429-68 100.571-32.571 16.571-76 53.143-92 68.571-12 11.429-61.714 17.143-89.714 2.857-32.571-16.571-15.429-42.857-65.714-44.571-25.143-0.571-49.714-0.571-74.286-0.571-21.714 0.571-43.429 1.714-65.714 2.286-75.429 1.714-82.857 50.286-131.429 48.571-33.143-1.143-74.857-27.429-146.857-42.286-50.286-10.286-98.857-13.143-109.143-35.429s12.571-47.429 14.286-69.143c1.714-29.143-21.714-68.571-4.571-83.429 14.857-13.143 46.286-3.429 66.857-14.857 21.714-12.571 30.857-22.286 30.857-49.143 8 27.429-0.571 49.714-18.286 60.571-10.857 6.857-30.857 10.286-47.429 8.571-13.143-1.143-21.143 0.571-24.571 5.714-5.143 6.286-3.429 17.714 2.857 32.571s13.714 24.571 12.571 42.857c-0.571 18.286-21.143 40-17.714 55.429 1.143 5.714 6.857 10.857 21.143 14.857 22.857 6.286 64.571 12.571 105.143 22.286 45.143 11.429 92 32 121.143 28 86.857-12 37.143-105.143 23.429-127.429v0c-73.714-115.429-122.286-190.857-161.143-161.143-9.714 8-10.286-19.429-9.714-30.286 1.714-37.714 20.571-51.429 32-80.571 21.714-55.429 38.286-118.857 71.429-151.429 24.571-32 63.429-84 70.857-111.429-6.286-59.429-8-122.286-9.143-177.143-1.143-58.857 8-110.286 74.286-146.286 16-8.571 37.143-12 59.429-12 39.429-0.571 83.429 10.857 111.429 31.429 44.571 33.143 72.571 103.429 69.143 153.714-2.286 39.429 4.571 80 17.143 122.286 14.857 49.714 38.286 84.571 76 124.571 45.143 48 80.571 142.286 90.857 202.286 9.143 56-3.429 90.857-15.429 92.571-18.286 2.857-29.714 60.571-86.857 58.286-36.571-1.714-40-23.429-50.286-42.286-16.571-29.143-33.143-20-39.429 10.857-3.429 15.429-1.143 38.286 4 55.429 10.286 36 6.857 69.714 0.571 111.429-12 78.857 55.429 93.714 100.571 56 44.571-37.143 54.286-42.857 110.286-62.286 85.143-29.143 56.571-54.857 10.857-70.286-41.143-13.714-42.857-82.857-28-96 3.429 74.286 42.286 85.143 58.286 95.429z"
+ ],
+ "width": 915.4559999999999,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "linux"
+ ],
+ "defaultCode": 61820,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "linux",
+ "id": 343,
+ "order": 1199,
+ "prevSize": 28,
+ "code": 61820
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 343
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 857.143c-5.714-33.143-27.429-147.429-80-284.571-0.571 0-1.714 0.571-2.286 0.571 0 0-222.286 77.714-294.286 234.286-3.429-2.857-8.571-6.286-8.571-6.286 65.143 53.143 148 85.714 238.857 85.714 52 0 101.143-10.857 146.286-29.714zM479.429 510.286c-9.143-21.143-19.429-42.286-30.286-63.429-193.143 57.714-378.286 53.143-384.571 53.143-0.571 4-0.571 8-0.571 12 0 96 36.571 184 96 250.286v0c102.286-182.286 304.571-247.429 304.571-247.429 5.143-1.714 10.286-2.857 14.857-4.571zM418.286 389.143c-65.143-115.429-134.286-209.143-139.429-216-104.571 49.143-182.286 145.714-206.857 261.714 9.714 0 166.286 1.714 346.286-45.714zM809.143 571.429c-8-2.286-112.571-35.429-233.714-16.571 49.143 135.429 69.143 245.714 73.143 268 84-56.571 143.429-146.857 160.571-251.429zM349.143 148c-0.571 0-0.571 0-1.143 0.571 0 0 0.571-0.571 1.143-0.571zM686.286 230.857c-65.714-58.286-152.571-93.714-247.429-93.714-30.286 0-60 4-88.571 10.857 5.714 7.429 76.571 100.571 140.571 218.286 141.143-52.571 194.286-133.714 195.429-135.429zM813.714 508c-1.143-88.571-32.571-170.286-85.143-234.286-1.143 1.143-61.143 88-209.143 148.571 8.571 17.714 17.143 36 25.143 54.286 2.857 6.286 5.143 13.143 8 19.429 129.143-16.571 256.571 11.429 261.143 12zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dribbble"
+ ],
+ "defaultCode": 61821,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "dribbble",
+ "id": 344,
+ "order": 1200,
+ "prevSize": 28,
+ "code": 61821
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 344
+ },
+ {
+ "icon": {
+ "paths": [
+ "M670.286 607.429c0-99.429-96.571-133.714-177.714-152l-59.429-13.714c-43.429-10.286-76-17.714-76-50.857 0-30.286 32-44 82.286-44 89.714 0 91.429 65.714 146.857 65.714 37.143 0 59.429-29.143 59.429-62.286 0-65.714-109.143-108.571-217.143-108.571-98.857 0-213.714 42.857-213.714 158.857 0 96 64 130.286 147.429 150.286l83.429 20.571c50.857 12.571 82.286 18.286 82.286 54.857 0 29.143-32.571 51.429-82.857 51.429-105.714 0-111.429-88-172.571-88-40 0-57.714 28.571-57.714 60 0 70.286 107.429 127.429 236 127.429 107.429 0 219.429-53.714 219.429-169.714zM877.714 731.429c0 121.143-98.286 219.429-219.429 219.429-50.286 0-96.571-17.143-133.714-45.714-27.429 5.714-56.571 9.143-85.714 9.143-222.286 0-402.286-180-402.286-402.286 0-29.143 3.429-58.286 9.143-85.714-28.571-37.143-45.714-83.429-45.714-133.714 0-121.143 98.286-219.429 219.429-219.429 50.286 0 96.571 17.143 133.714 45.714 27.429-5.714 56.571-9.143 85.714-9.143 222.286 0 402.286 180 402.286 402.286 0 29.143-3.429 58.286-9.143 85.714 28.571 37.143 45.714 83.429 45.714 133.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "skype"
+ ],
+ "defaultCode": 61822,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "skype",
+ "id": 345,
+ "order": 1201,
+ "prevSize": 28,
+ "code": 61822
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 345
+ },
+ {
+ "icon": {
+ "paths": [
+ "M571.429 248l21.143-110.857c4-18.286-9.714-32.571-25.143-32.571h-406.857c-18.286 0-30.857 16.571-30.857 30.857v629.143c0 1.714 1.714 2.286 3.429 0.571 149.714-180 166.286-201.143 166.286-201.143 17.143-20 24-23.429 49.143-23.429h136.571c18.857 0 29.714-16 31.429-25.143s17.714-92.571 21.143-109.143-12-33.714-27.429-33.714h-168c-22.286 0-38.286-16-38.286-38.286v-24c0-22.286 16-37.714 38.286-37.714h197.714c13.714 0 29.143-12.571 31.429-24.571zM701.143 121.143c-21.143 102.857-84.571 428-90.286 451.429-6.857 26.857-17.143 73.714-82.286 73.714h-154.857c-6.286 0-6.857-0.571-12.571 5.714 0 0-4 4.571-243.429 282.286-18.857 21.714-49.714 17.714-61.143 13.143s-31.429-18.286-31.429-56v-805.714c0-33.143 20.571-85.714 90.286-85.714h507.429c74.286 0 94.286 42.286 78.286 121.143zM701.143 121.143l-90.286 451.429c5.714-23.429 69.143-348.571 90.286-451.429z"
+ ],
+ "width": 742.2537142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "foursquare"
+ ],
+ "defaultCode": 61824,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "foursquare",
+ "id": 346,
+ "order": 1202,
+ "prevSize": 28,
+ "code": 61824
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 346
+ },
+ {
+ "icon": {
+ "paths": [
+ "M402.286 768v-585.143c0-10.286-8-18.286-18.286-18.286h-274.286c-10.286 0-18.286 8-18.286 18.286v585.143c0 10.286 8 18.286 18.286 18.286h274.286c10.286 0 18.286-8 18.286-18.286zM786.286 548.571v-365.714c0-10.286-8-18.286-18.286-18.286h-274.286c-10.286 0-18.286 8-18.286 18.286v365.714c0 10.286 8 18.286 18.286 18.286h274.286c10.286 0 18.286-8 18.286-18.286zM877.714 109.714v804.571c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trello"
+ ],
+ "defaultCode": 61825,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "trello",
+ "id": 347,
+ "order": 1203,
+ "prevSize": 28,
+ "code": 61825
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 347
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 603.429c0 30.286-24.571 54.857-54.857 54.857-18.286 0-35.429-9.143-45.714-24.571l-129.714-194.857h-25.714v75.429l141.143 234.857c3.429 5.714 5.143 12 5.143 18.857 0 20-16.571 36.571-36.571 36.571h-109.714v155.429c0 35.429-28.571 64-64 64h-91.429c-34.857 0-64-28.571-64-64v-155.429h-109.714c-20 0-36.571-16.571-36.571-36.571 0-6.857 1.714-13.143 5.143-18.857l141.143-234.857v-75.429h-25.714l-129.714 194.857c-10.286 15.429-27.429 24.571-45.714 24.571-30.286 0-54.857-24.571-54.857-54.857 0-10.857 3.429-21.714 9.143-30.286l146.286-219.429c22.857-33.714 58.286-61.143 100.571-61.143h219.429c42.286 0 77.714 27.429 100.571 61.143l146.286 219.429c5.714 8.571 9.143 19.429 9.143 30.286zM493.714 146.286c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "female"
+ ],
+ "defaultCode": 61826,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "female",
+ "id": 348,
+ "order": 1204,
+ "prevSize": 28,
+ "code": 61826
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 348
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 402.286v237.714c0 30.286-24.571 54.857-54.857 54.857s-54.857-24.571-54.857-54.857v-201.143h-36.571v521.143c0 35.429-28.571 64-64 64s-64-28.571-64-64v-265.143h-36.571v265.143c0 35.429-28.571 64-64 64s-64-28.571-64-64v-521.143h-36.571v201.143c0 30.286-24.571 54.857-54.857 54.857s-54.857-24.571-54.857-54.857v-237.714c0-60.571 49.143-109.714 109.714-109.714h365.714c60.571 0 109.714 49.143 109.714 109.714zM420.571 146.286c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "male"
+ ],
+ "defaultCode": 61827,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "male",
+ "id": 349,
+ "order": 1205,
+ "prevSize": 28,
+ "code": 61827
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 349
+ },
+ {
+ "icon": {
+ "paths": [
+ "M441.714 744l200-270.286c15.429-21.143 33.714-89.143-24.571-127.429-49.143-32-96-7.429-120.571 21.143-9.143 10.286-25.143 22.857-54.857 22.857s-45.143-12.571-54.286-22.857c-24.571-28.571-71.429-53.143-121.143-21.143-57.714 38.286-39.429 106.286-24 127.429zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gittip",
+ "gratipay"
+ ],
+ "defaultCode": 61828,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "gittip, gratipay",
+ "id": 350,
+ "order": 1206,
+ "prevSize": 28,
+ "code": 61828
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 350
+ },
+ {
+ "icon": {
+ "paths": [
+ "M841.143 512c0-181.714-147.429-329.143-329.143-329.143s-329.143 147.429-329.143 329.143 147.429 329.143 329.143 329.143 329.143-147.429 329.143-329.143zM998.857 670.286c-1.714 5.714-6.286 9.714-11.429 11.429l-166.857 54.857v174.857c0 5.714-2.857 11.429-7.429 14.857-5.143 3.429-10.857 4.571-16.571 2.286l-166.857-53.714-102.857 141.714c-3.429 4.571-9.143 7.429-14.857 7.429s-11.429-2.857-14.857-7.429l-102.857-141.714-166.857 53.714c-5.714 2.286-11.429 1.143-16.571-2.286-4.571-3.429-7.429-9.143-7.429-14.857v-174.857l-166.857-54.857c-5.143-1.714-9.714-5.714-11.429-11.429s-1.143-12 2.286-16.571l102.857-141.714-102.857-141.714c-3.429-5.143-4-10.857-2.286-16.571s6.286-9.714 11.429-11.429l166.857-54.857v-174.857c0-5.714 2.857-11.429 7.429-14.857 5.143-3.429 10.857-4.571 16.571-2.286l166.857 53.714 102.857-141.714c6.857-9.143 22.857-9.143 29.714 0l102.857 141.714 166.857-53.714c5.714-2.286 11.429-1.143 16.571 2.286 4.571 3.429 7.429 9.143 7.429 14.857v174.857l166.857 54.857c5.143 1.714 9.714 5.714 11.429 11.429s1.143 11.429-2.286 16.571l-102.857 141.714 102.857 141.714c3.429 4.571 4 10.857 2.286 16.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sun-o"
+ ],
+ "defaultCode": 61829,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sun-o",
+ "id": 351,
+ "order": 1207,
+ "prevSize": 28,
+ "code": 61829
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 351
+ },
+ {
+ "icon": {
+ "paths": [
+ "M721.143 744.571c-20.571 3.429-41.714 5.143-62.857 5.143-212 0-384-172-384-384 0-72.571 21.143-143.429 59.429-204-152 45.143-260.571 184.571-260.571 350.286 0 201.714 164 365.714 365.714 365.714 110.286 0 213.714-50.286 282.286-133.143zM837.143 696c-71.429 154.857-228 254.857-398.286 254.857-241.714 0-438.857-197.143-438.857-438.857 0-237.143 185.714-429.714 422.286-438.286 16-0.571 29.143 8.571 34.857 22.286 6.286 14.286 2.286 30.857-8.571 41.143-65.143 59.429-101.143 140.571-101.143 228.571 0 171.429 139.429 310.857 310.857 310.857 45.143 0 88.571-9.714 130.286-29.143 14.286-6.286 30.286-3.429 41.143 7.429s13.714 27.429 7.429 41.143z"
+ ],
+ "width": 843.4102857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "moon-o"
+ ],
+ "defaultCode": 61830,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "moon-o",
+ "id": 352,
+ "order": 1208,
+ "prevSize": 28,
+ "code": 61830
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 352
+ },
+ {
+ "icon": {
+ "paths": [
+ "M621.714 475.429c0-20-16.571-36.571-36.571-36.571h-146.286c-20 0-36.571 16.571-36.571 36.571s16.571 36.571 36.571 36.571h146.286c20 0 36.571-16.571 36.571-36.571zM950.857 365.714v548.571c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-548.571c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571zM987.429 109.714v146.286c0 20-16.571 36.571-36.571 36.571h-877.714c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h877.714c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "archive"
+ ],
+ "defaultCode": 61831,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "archive",
+ "id": 353,
+ "order": 1209,
+ "prevSize": 28,
+ "code": 61831
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 353
+ },
+ {
+ "icon": {
+ "paths": [
+ "M932.571 548.571c0 20-16.571 36.571-36.571 36.571h-128c0 71.429-15.429 125.143-38.286 165.714l118.857 119.429c14.286 14.286 14.286 37.143 0 51.429-6.857 7.429-16.571 10.857-25.714 10.857s-18.857-3.429-25.714-10.857l-113.143-112.571s-74.857 68.571-172 68.571v-512h-73.143v512c-103.429 0-178.857-75.429-178.857-75.429l-104.571 118.286c-7.429 8-17.143 12-27.429 12-8.571 0-17.143-2.857-24.571-9.143-14.857-13.714-16-36.571-2.857-52l115.429-129.714c-20-39.429-33.143-90.286-33.143-156.571h-128c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h128v-168l-98.857-98.857c-14.286-14.286-14.286-37.143 0-51.429s37.143-14.286 51.429 0l98.857 98.857h482.286l98.857-98.857c14.286-14.286 37.143-14.286 51.429 0s14.286 37.143 0 51.429l-98.857 98.857v168h128c20 0 36.571 16.571 36.571 36.571zM658.286 219.429h-365.714c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bug"
+ ],
+ "defaultCode": 61832,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bug",
+ "id": 354,
+ "order": 1210,
+ "prevSize": 28,
+ "code": 61832
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 354
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1095.429 297.143c8.571 23.429-18.286 78.286-85.714 168-110.857 147.429-122.857 133.714-31.429 218.857 88 81.714 106.286 121.143 109.143 126.286 0 0 36.571 64-40.571 64.571l-146.286 2.286c-31.429 6.286-73.143-22.286-73.143-22.286-54.857-37.714-106.286-135.429-146.286-122.857 0 0-41.143 13.143-40 101.143 0.571 18.857-8.571 29.143-8.571 29.143s-10.286 10.857-30.286 12.571h-65.714c-144.571 9.143-272-124-272-124s-139.429-144-261.714-431.429c-8-18.857 0.571-28 0.571-28s8.571-10.857 32.571-10.857l156.571-1.143c14.857 2.286 25.143 10.286 25.143 10.286s9.143 6.286 13.714 18.286c25.714 64 58.857 122.286 58.857 122.286 57.143 117.714 96 137.714 118.286 125.714 0 0 29.143-17.714 22.857-160-2.286-51.429-16.571-74.857-16.571-74.857-13.143-17.714-37.714-22.857-48.571-24.571-8.571-1.143 5.714-21.714 24.571-30.857 28-13.714 77.714-14.286 136.571-13.714 46.286 0.571 59.429 3.429 77.143 7.429 54.286 13.143 36 63.429 36 184.571 0 38.857-7.429 93.143 20.571 110.857 12 8 41.714 1.143 114.857-123.429 0 0 34.286-59.429 61.143-128.571 4.571-12.571 14.286-17.714 14.286-17.714s9.143-5.143 21.714-3.429l164.571-1.143c49.714-6.286 57.714 16.571 57.714 16.571z"
+ ],
+ "width": 1118.8662857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vk"
+ ],
+ "defaultCode": 61833,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "vk",
+ "id": 355,
+ "order": 1211,
+ "prevSize": 28,
+ "code": 61833
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 355
+ },
+ {
+ "icon": {
+ "paths": [
+ "M385.714 733.714c16-26.286 7.429-56.571-19.429-68-25.714-10.857-60 0.571-76 25.714-16.571 25.714-8.571 56 17.143 68 26.286 12 61.714 0.571 78.286-25.714zM439.429 664.571c5.714-10.286 2.286-21.714-8-25.714-10.286-3.429-22.857 1.143-28.571 10.857-5.714 10.286-2.857 21.143 7.429 25.714 10.286 4 23.429-0.571 29.143-10.857zM538.857 725.714c-34.286 77.714-133.714 120-218.286 92.571-81.714-26.286-116-106.857-80.571-179.429 35.429-70.857 126.286-110.857 206.857-90.286 84 21.714 126.286 100.571 92 177.143zM717.143 634.286c-10.857-111.429-157.143-188-326.857-171.429-169.714 17.143-297.714 120.571-286.857 232s157.143 188 326.857 171.429c169.714-17.143 297.714-120.571 286.857-232zM893.143 636.571c0 128.571-185.143 290.286-463.429 290.286-212.571 0-429.714-102.857-429.714-272.571 0-88.571 56-190.857 152.571-287.429 129.143-129.143 279.429-187.429 336-130.857 25.143 24.571 27.429 68 11.429 119.429-8 26.286 24.571 11.429 24.571 12 104-44 194.857-46.286 228 1.143 17.714 25.143 16 60.571 0 101.714-7.429 18.857 2.286 21.714 16.571 26.286 58.857 18.286 124 62.286 124 140zM850.857 280c32.571 36 41.714 85.714 27.429 129.143-5.714 17.714-24.571 27.429-42.286 21.714s-27.429-24.571-21.714-42.286v0c6.857-21.714 2.286-45.714-13.714-63.429s-39.429-24.571-61.143-20v0c-18.286 4-36.571-7.429-40-25.714-4-18.286 7.429-36 25.714-40 44.571-9.714 93.143 4 125.714 40.571zM954.286 186.857c67.429 74.286 85.143 176 56.571 265.143v0c-6.857 20.571-28.571 32-49.143 25.143s-32-28.571-25.714-49.143v0c20.571-63.429 8-136-40-188.571-48-53.143-118.286-73.143-183.429-59.429-21.143 4.571-42.286-9.143-46.857-30.286s9.143-41.714 30.286-46.286v0c92-19.429 190.857 8.571 258.286 83.429z"
+ ],
+ "width": 1039.433142857143,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "weibo"
+ ],
+ "defaultCode": 61834,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "weibo",
+ "id": 356,
+ "order": 1212,
+ "prevSize": 28,
+ "code": 61834
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 356
+ },
+ {
+ "icon": {
+ "paths": [
+ "M647.429 897.143c-62.286 34.286-133.714 53.714-210.286 53.714-76 0-147.429-19.429-209.714-53.714 101.143-64 182.857-160.571 209.714-273.714 27.429 113.143 109.143 209.714 210.286 273.714zM364.571 81.143v277.143c0 195.429-108 363.429-261.143 437.714-64.571-76.571-103.429-174.857-103.429-282.857 0-217.143 157.714-397.143 364.571-432zM877.714 513.143c0 108-38.857 206.286-103.429 282.857-153.143-74.286-261.143-242.286-261.143-437.714v-277.143c206.857 34.857 364.571 214.857 364.571 432z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "renren"
+ ],
+ "defaultCode": 61835,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "renren",
+ "id": 357,
+ "order": 1213,
+ "prevSize": 28,
+ "code": 61835
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 357
+ },
+ {
+ "icon": {
+ "paths": [
+ "M801.143 630.286c-114.857 285.143-390.286 112.571-390.286 112.571-84.571 170.857-224 280.571-385.143 281.143-14.286 0-25.714-11.429-25.714-25.714s11.429-25.143 25.714-25.143c134.286-0.571 251.429-89.143 328-229.714-85.714 33.143-247.429 58.286-337.143-171.429 227.429-93.714 332 23.429 372 94.857 20.571-50.857 35.429-106.286 45.143-166.286 0 0-291.429 45.714-312-204.571 248.571-100 318.286 160 318.286 160 3.429-34.857 6.857-109.714 6.857-111.429 0 0-221.714-153.714-79.429-344.571 260 89.714 128 338.857 128 338.857 1.143 3.429 1.143 49.714 0 69.714 0 0 94.286-185.714 284.571-120-8.571 279.429-296 221.714-296 221.714-9.143 57.143-23.429 111.429-41.714 161.714 0 0 173.143-191.429 358.857-41.714z"
+ ],
+ "width": 801.1337142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pagelines"
+ ],
+ "defaultCode": 61836,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "pagelines",
+ "id": 358,
+ "order": 1214,
+ "prevSize": 28,
+ "code": 61836
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 358
+ },
+ {
+ "icon": {
+ "paths": [
+ "M719.429 716v37.714c0 64.571-50.286 116.571-112 116.571h-32.571l-148.571 153.714v-153.714h-302.286c-61.714 0-112-52-112-116.571v-37.714h707.429zM719.429 529.714v145.714h-707.429v-145.714h707.429zM719.429 342.286v145.714h-707.429v-145.714h707.429zM719.429 262.286v38.286h-707.429v-38.286c0-64 50.286-116 112-116h483.429c61.714 0 112 52 112 116z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stack-exchange"
+ ],
+ "defaultCode": 61837,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "stack-exchange",
+ "id": 359,
+ "order": 1215,
+ "prevSize": 28,
+ "code": 61837
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 359
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658.286 512c0 4.571-1.714 9.714-5.143 13.143l-182.857 182.857c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8.571-18.286-18.286v-109.714h-201.143c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h201.143v-109.714c0-10.286 8-18.286 18.286-18.286 5.143 0 9.714 2.286 13.714 5.714l182.286 182.286c3.429 3.429 5.143 8.571 5.143 13.143zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-o-right"
+ ],
+ "defaultCode": 61838,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrow-circle-o-right",
+ "id": 360,
+ "order": 1216,
+ "prevSize": 28,
+ "code": 61838
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 360
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658.286 457.143v109.714c0 9.714-8.571 18.286-18.286 18.286h-201.143v109.714c0 10.286-8 18.286-18.286 18.286-5.143 0-9.714-2.286-13.714-5.714l-182.286-182.286c-3.429-3.429-5.143-8.571-5.143-13.143s1.714-9.714 5.143-13.143l182.857-182.857c3.429-3.429 8.571-5.143 13.143-5.143 9.714 0 18.286 8.571 18.286 18.286v109.714h201.143c9.714 0 18.286 8.571 18.286 18.286zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow-circle-o-left"
+ ],
+ "defaultCode": 61840,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "arrow-circle-o-left",
+ "id": 361,
+ "order": 1217,
+ "prevSize": 28,
+ "code": 61840
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 361
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 329.143v365.714c0 20-16.571 36.571-36.571 36.571-7.429 0-14.857-2.286-21.143-6.857l-256-182.857c-9.714-6.857-15.429-17.714-15.429-29.714 0-11.429 5.714-22.857 15.429-29.714l256-182.857c6.286-4.571 13.714-6.857 21.143-6.857 20 0 36.571 16.571 36.571 36.571zM731.429 786.286v-548.571c0-9.714-8.571-18.286-18.286-18.286h-548.571c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h548.571c9.714 0 18.286-8.571 18.286-18.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "caret-square-o-left",
+ "toggle-left"
+ ],
+ "defaultCode": 61841,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "caret-square-o-left, toggle-left",
+ "id": 362,
+ "order": 1218,
+ "prevSize": 28,
+ "code": 61841
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 362
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 512c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286zM438.857 201.143c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857-139.429-310.857-310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dot-circle-o"
+ ],
+ "defaultCode": 61842,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "dot-circle-o",
+ "id": 363,
+ "order": 1219,
+ "prevSize": 28,
+ "code": 61842
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 363
+ },
+ {
+ "icon": {
+ "paths": [
+ "M584.571 678.286l58.286 116.571c-44 136-170.857 229.143-313.714 229.143-181.143 0-329.143-148-329.143-329.143 0-138.286 86.857-261.714 216.571-309.143l9.714 74.857c-93.143 41.143-153.143 132.571-153.143 234.286 0 141.143 114.857 256 256 256 146.857 0 265.714-125.714 255.429-272.571zM897.714 735.429l33.143 65.143-146.286 73.143c-5.143 2.857-10.857 4-16.571 4-13.714 0-26.857-8-32.571-20l-136.571-272.571h-269.714c-18.286 0-34.286-14.286-36.571-32.571l-54.857-445.143c-0.571-5.714 1.714-18.286 3.429-24 10.857-39.429 47.429-65.143 88-65.143 50.286 0 91.429 41.143 91.429 91.429 0 52-45.714 96.571-98.286 90.857l21.143 165.143h241.714v73.143h-232.571l9.143 73.143h260c13.714 0 26.857 8 32.571 20l130.286 260z"
+ ],
+ "width": 930.8891428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wheelchair"
+ ],
+ "defaultCode": 61843,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "wheelchair",
+ "id": 364,
+ "order": 1220,
+ "prevSize": 28,
+ "code": 61843
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 364
+ },
+ {
+ "icon": {
+ "paths": [
+ "M738.286 364.571c4-82.857-26.857-124.571-92-126.857-88-2.857-147.429 46.857-178.286 149.143 16-6.857 31.429-10.857 46.857-10.857 32 0 46.286 18.286 42.286 54.857-1.714 21.714-16 53.714-42.286 95.429-26.857 42.286-46.857 62.857-60 62.857-17.143 0-32-32-46.857-96.571-4.571-19.429-13.143-67.429-25.714-145.714-11.429-72-41.714-105.714-91.429-101.143-20.571 2.286-52.571 20.571-93.714 57.143-30.857 26.857-61.143 54.857-92.571 82.286l29.714 38.286c28.571-19.429 45.143-29.714 49.714-29.714 21.714 0 42.286 34.286 61.143 102.286 17.143 62.857 34.286 125.143 51.429 188 25.714 68 56.571 102.286 93.714 102.286 59.429 0 132.571-56 218.857-168 83.429-107.429 126.857-192 129.143-253.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vimeo-square"
+ ],
+ "defaultCode": 61844,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "vimeo-square",
+ "id": 365,
+ "order": 1221,
+ "prevSize": 28,
+ "code": 61844
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 365
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658.286 475.429c0 221.714-180.571 402.286-402.286 402.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-349.143l-122.857 37.714c-1.714 0.571-3.429 0.571-5.143 0.571-4 0-7.429-1.143-10.857-3.429-4.571-3.429-7.429-9.143-7.429-14.857v-73.143c0-8 5.143-14.857 13.143-17.714l133.143-40.571v-53.143l-122.857 37.714c-1.714 0.571-3.429 0.571-5.143 0.571-4 0-7.429-1.143-10.857-3.429-4.571-3.429-7.429-9.143-7.429-14.857v-73.143c0-8 5.143-14.857 13.143-17.714l133.143-40.571v-142.857c0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286v103.429l214.286-66.286c5.143-1.714 11.429-0.571 16 2.857s7.429 9.143 7.429 14.857v73.143c0 8-5.143 14.857-13.143 17.714l-224.571 69.143v53.143l214.286-66.286c5.143-1.714 11.429-0.571 16 2.857s7.429 9.143 7.429 14.857v73.143c0 8-5.143 14.857-13.143 17.714l-224.571 69.143v278.286c142.857-9.714 256-128.571 256-273.714 0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "try",
+ "turkish-lira"
+ ],
+ "defaultCode": 61845,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "try, turkish-lira",
+ "id": 366,
+ "order": 1222,
+ "prevSize": 28,
+ "code": 61845
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 366
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658.286 457.143v36.571c0 10.286-8 18.286-18.286 18.286h-201.143v201.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-201.143h-201.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h201.143v-201.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v201.143h201.143c10.286 0 18.286 8 18.286 18.286zM731.429 713.143v-475.429c0-50.286-41.143-91.429-91.429-91.429h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429zM804.571 237.714v475.429c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus-square-o"
+ ],
+ "defaultCode": 61846,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "plus-square-o",
+ "id": 367,
+ "order": 1223,
+ "prevSize": 28,
+ "code": 61846
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 367
+ },
+ {
+ "icon": {
+ "paths": [
+ "M354.286 640c-39.429 22.857-93.143 36.571-153.143 36.571h-73.143v-36.571h-36.571c-10.286 0-18.286-20.571-18.286-45.714 0-10.286 1.714-20 4-28-44-1.143-77.143-8.571-77.143-17.714s33.143-16.571 77.143-17.714c-2.286-8-4-17.714-4-28 0-25.143 8-45.714 18.286-45.714h36.571v-36.571h73.143c60 0 113.714 13.714 153.143 36.571h636c42.286 7.429 80.571 13.714 106.857 18.286 109.714 18.286 146.286 54.857 146.286 73.143s-36.571 54.857-146.286 73.143c-26.286 4.571-64.571 10.857-106.857 18.286h-636zM993.714 496c18.286 12.571 30.286 31.429 30.286 52.571s-12 40-30.286 52.571l46.286 17.143c23.429-16.571 38.857-41.714 38.857-69.714s-15.429-53.143-38.857-69.714zM357.143 649.143h580s-124 21.714-260.571 45.714c-73.143 0-128 54.857-128 54.857l-164.571 164.571s-55.429 36.571-91.429 36.571h-54.857l-53.143-265.143h16.571c58.286 0 113.714-13.143 156-36.571zM201.143 411.429h-16.571l53.143-265.143h54.857c37.143 0 73.143 18.286 91.429 36.571l164.571 164.571c0 0 54.857 54.857 128 54.857 136.571 24 260.571 45.714 260.571 45.714h-580c-42.286-23.429-97.714-36.571-156-36.571z"
+ ],
+ "width": 1243.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "space-shuttle"
+ ],
+ "defaultCode": 61847,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "space-shuttle",
+ "id": 368,
+ "order": 1224,
+ "prevSize": 28,
+ "code": 61847
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 368
+ },
+ {
+ "icon": {
+ "paths": [
+ "M868 443.429c46.857 0 82.857 34.286 82.857 81.143 0 36.571-18.857 62.286-53.143 74.286l-98.286 33.714 32 95.429c2.857 8.571 4 17.714 4 26.857 0 45.143-36.571 82.857-81.714 82.857-36 0-68-22.286-79.429-56.571l-31.429-94.286-177.143 60.571 31.429 93.714c2.857 8.571 4.571 17.714 4.571 26.857 0 44.571-36.571 82.857-82.286 82.857-36 0-67.429-22.286-78.857-56.571l-31.429-93.143-87.429 30.286c-9.143 2.857-18.857 5.143-28.571 5.143-46.286 0-81.143-34.286-81.143-80.571 0-35.429 22.857-67.429 56.571-78.857l89.143-30.286-60-178.857-89.143 30.857c-9.143 2.857-18.286 4.571-27.429 4.571-45.714 0-81.143-34.857-81.143-80.571 0-35.429 22.857-67.429 56.571-78.857l89.714-30.286-30.286-90.857c-2.857-8.571-4.571-17.714-4.571-26.857 0-45.143 36.571-82.857 82.286-82.857 36 0 67.429 22.286 78.857 56.571l30.857 91.429 177.143-60-30.857-91.429c-2.857-8.571-4.571-17.714-4.571-26.857 0-45.143 37.143-82.857 82.286-82.857 36 0 68 22.857 79.429 56.571l30.286 92 92.571-31.429c8-2.286 16-3.429 24.571-3.429 44.571 0 82.857 33.143 82.857 78.857 0 35.429-27.429 65.143-59.429 76l-89.714 30.857 60 180.571 93.714-32c8.571-2.857 17.714-4.571 26.286-4.571zM414.286 593.143l177.143-60-60-180-177.143 61.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "slack"
+ ],
+ "defaultCode": 61848,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "slack",
+ "id": 369,
+ "order": 1225,
+ "prevSize": 28,
+ "code": 61848
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 369
+ },
+ {
+ "icon": {
+ "paths": [
+ "M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571zM731.429 676.571v-249.143c-10.857 12-22.857 22.857-36.571 31.429-53.714 35.429-109.143 68.571-162.286 105.143-26.857 18.857-60 39.429-93.714 39.429v0 0 0 0c-33.714 0-66.857-20.571-93.714-39.429-53.143-36.571-109.143-69.143-162.286-105.714-13.143-8.571-23.429-21.143-36.571-30.857v249.143c0 30.286 24.571 54.857 54.857 54.857h475.429c30.286 0 54.857-24.571 54.857-54.857zM731.429 349.143c0-30.857-22.857-56.571-54.857-56.571h-475.429c-30.286 0-54.857 24.571-54.857 54.857 0 30.857 32 64.571 56 80.571 50.286 33.714 102.286 65.143 152.571 98.286 21.714 14.286 57.714 40.571 84 40.571s62.286-26.286 84-40.571c50.857-33.143 101.714-65.714 152.571-99.429 22.286-14.857 56-49.143 56-77.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "envelope-square"
+ ],
+ "defaultCode": 61849,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "envelope-square",
+ "id": 370,
+ "order": 1226,
+ "prevSize": 28,
+ "code": 61849
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 370
+ },
+ {
+ "icon": {
+ "paths": [
+ "M72.571 512c0-63.429 13.714-124 38.286-178.857l209.714 574.286c-146.857-71.429-248-221.714-248-395.429zM808.571 489.714c0 37.714-15.429 81.143-33.714 142.286l-43.429 146.286-158.857-472s26.286-1.714 50.286-4.571c23.429-2.857 20.571-37.714-2.857-36-71.429 5.143-117.143 5.714-117.143 5.714s-42.857-0.571-115.429-5.714c-24-1.714-26.857 34.286-2.857 36 22.286 2.286 45.714 4.571 45.714 4.571l68.571 187.429-96 288-160-475.429s26.286-1.714 50.286-4.571c23.429-2.857 20.571-37.714-2.857-36-70.857 5.143-117.143 5.714-117.143 5.714-8 0-17.714-0.571-28-0.571 78.286-119.429 213.143-198.286 366.857-198.286 114.286 0 218.286 44 296.571 115.429h-5.714c-42.857 0-73.714 37.143-73.714 77.714 0 36 21.143 66.286 43.429 102.857 17.143 29.143 36 66.857 36 121.143zM519.429 550.286l135.429 369.714c0.571 2.286 1.714 4.571 2.857 6.286-45.714 16-94.286 25.143-145.714 25.143-42.857 0-84.571-6.286-124-18.286zM897.143 301.143c34.286 62.857 54.286 134.286 54.286 210.857 0 162.286-88 303.429-218.857 379.429l134.286-387.429c22.286-64 33.714-113.143 33.714-157.714 0-16-1.143-30.857-3.429-45.143zM512 0c282.286 0 512 229.714 512 512s-229.714 512-512 512-512-229.714-512-512 229.714-512 512-512zM512 1000.571c269.143 0 488.571-219.429 488.571-488.571s-219.429-488.571-488.571-488.571-488.571 219.429-488.571 488.571 219.429 488.571 488.571 488.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wordpress"
+ ],
+ "defaultCode": 61850,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "wordpress",
+ "id": 371,
+ "order": 1227,
+ "prevSize": 28,
+ "code": 61850
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 371
+ },
+ {
+ "icon": {
+ "paths": [
+ "M620.571 0v877.714l-155.429 73.143c-262.857-23.429-465.143-163.429-465.143-333.143 0-163.429 188.571-299.429 438.286-329.714v98.286c-163.429 28.571-283.429 121.143-283.429 231.429 0 116.571 133.714 213.143 310.286 235.429v0-777.143zM1002.857 332.571l21.143 222.857-300-65.143 84-47.429c-44.571-26.286-99.429-45.714-160-56.571v-98.286c105.714 12.571 200.571 44.571 274.857 89.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "openid"
+ ],
+ "defaultCode": 61851,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "openid",
+ "id": 372,
+ "order": 1228,
+ "prevSize": 28,
+ "code": 61851
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 372
+ },
+ {
+ "icon": {
+ "paths": [
+ "M548.571 0l548.571 219.429v73.143h-73.143c0 20-17.714 36.571-39.429 36.571h-872c-21.714 0-39.429-16.571-39.429-36.571h-73.143v-73.143zM146.286 365.714h146.286v438.857h73.143v-438.857h146.286v438.857h73.143v-438.857h146.286v438.857h73.143v-438.857h146.286v438.857h33.714c21.714 0 39.429 16.571 39.429 36.571v36.571h-950.857v-36.571c0-20 17.714-36.571 39.429-36.571h33.714v-438.857zM1057.714 914.286c21.714 0 39.429 16.571 39.429 36.571v73.143h-1097.143v-73.143c0-20 17.714-36.571 39.429-36.571h1018.286z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bank",
+ "institution",
+ "university"
+ ],
+ "defaultCode": 61852,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bank, institution, university",
+ "id": 373,
+ "order": 1229,
+ "prevSize": 28,
+ "code": 61852
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 373
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1013.714 477.714l10.286 180.571c4.571 80.571-164 146.286-365.714 146.286s-370.286-65.714-365.714-146.286l10.286-180.571 328 103.429c9.143 2.857 18.286 4 27.429 4s18.286-1.143 27.429-4zM1316.571 292.571c0 8-5.143 14.857-12.571 17.714l-640 201.143c-2.286 0.571-4 0.571-5.714 0.571s-3.429 0-5.714-0.571l-372.571-117.714c-32.571 25.714-55.429 88.571-60 165.714 21.714 12.571 36 35.429 36 62.286 0 25.714-13.143 48-33.143 61.143l33.143 247.429c0.571 5.143-1.143 10.286-4.571 14.286s-8.571 6.286-13.714 6.286h-109.714c-5.143 0-10.286-2.286-13.714-6.286s-5.143-9.143-4.571-14.286l33.143-247.429c-20-13.143-33.143-35.429-33.143-61.143 0-27.429 15.429-50.857 37.143-63.429 3.429-66.857 20.571-138.857 56-188.571l-190.286-59.429c-7.429-2.857-12.571-9.714-12.571-17.714s5.143-14.857 12.571-17.714l640-201.143c2.286-0.571 4-0.571 5.714-0.571s3.429 0 5.714 0.571l640 201.143c7.429 2.857 12.571 9.714 12.571 17.714z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "graduation-cap",
+ "mortar-board"
+ ],
+ "defaultCode": 61853,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "graduation-cap, mortar-board",
+ "id": 374,
+ "order": 1230,
+ "prevSize": 28,
+ "code": 61853
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 374
+ },
+ {
+ "icon": {
+ "paths": [
+ "M490.857 546.857l7.429 404c-19.429-3.429-39.429-6.286-60-6.286-20 0-40 2.857-60 6.286l7.429-404c-106.286-183.429-206.286-370.286-323.429-546.857 20 5.143 40.571 8.571 61.714 8.571s42.857-4 63.429-8.571c80 141.714 166.857 279.429 250.857 418.857 84.571-138.286 174.286-276 250.857-418.857 20 5.143 40.571 8 61.143 8 21.714 0 44-2.857 65.143-8v0 0c-45.714 62.857-83.429 131.429-122.857 198.286-68 116-134.857 232-201.714 348.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "yahoo"
+ ],
+ "defaultCode": 61854,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "yahoo",
+ "id": 375,
+ "order": 1231,
+ "prevSize": 28,
+ "code": 61854
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 375
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 449.143h414.286c4 22.286 6.857 44 6.857 73.143 0 250.286-168 428.571-421.143 428.571-242.857 0-438.857-196-438.857-438.857s196-438.857 438.857-438.857c118.286 0 217.714 43.429 294.286 114.857l-119.429 114.857c-32.571-31.429-89.714-68-174.857-68-149.714 0-272 124-272 277.143s122.286 277.143 272 277.143c173.714 0 238.857-124.571 249.143-189.143h-249.143v-150.857z"
+ ],
+ "width": 860.0137142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "google"
+ ],
+ "defaultCode": 61856,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "google",
+ "id": 376,
+ "order": 1232,
+ "prevSize": 28,
+ "code": 61856
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 376
+ },
+ {
+ "icon": {
+ "paths": [
+ "M625.714 666.857c5.143 5.143 5.143 13.143 0 17.714-32.571 32.571-95.429 35.429-113.714 35.429s-81.143-2.857-113.714-35.429c-5.143-4.571-5.143-12.571 0-17.714 4.571-4.571 12.571-4.571 17.143 0 20.571 21.143 65.143 28 96.571 28s75.429-6.857 96.571-28c4.571-4.571 12.571-4.571 17.143 0zM450.286 563.429c0 28-22.857 50.857-50.857 50.857-28.571 0-51.429-22.857-51.429-50.857 0-28.571 22.857-51.429 51.429-51.429 28 0 50.857 22.857 50.857 51.429zM676 563.429c0 28-22.857 50.857-51.429 50.857-28 0-50.857-22.857-50.857-50.857 0-28.571 22.857-51.429 50.857-51.429 28.571 0 51.429 22.857 51.429 51.429zM819.429 494.857c0-37.714-30.857-68-68.571-68-19.429 0-36.571 8-49.143 20.571-46.286-32-108.571-52.571-177.714-54.857l36-161.714 114.286 25.714c0 28 22.857 50.857 50.857 50.857 28.571 0 51.429-23.429 51.429-51.429s-22.857-51.429-51.429-51.429c-20 0-37.143 12-45.714 28.571l-126.286-28c-6.286-1.714-12.571 2.857-14.286 9.143l-39.429 178.286c-68.571 2.857-130.286 23.429-176.571 55.429-12.571-13.143-30.286-21.143-49.714-21.143-37.714 0-68.571 30.286-68.571 68 0 27.429 16 50.286 38.857 61.714-2.286 10.286-3.429 21.143-3.429 32 0 108.571 122.286 196.571 272.571 196.571 150.857 0 273.143-88 273.143-196.571 0-10.857-1.143-22.286-4-32.571 22.286-11.429 37.714-34.286 37.714-61.143zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "reddit"
+ ],
+ "defaultCode": 61857,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "reddit",
+ "id": 377,
+ "order": 1233,
+ "prevSize": 28,
+ "code": 61857
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 377
+ },
+ {
+ "icon": {
+ "paths": [
+ "M536.571 645.143c4 4 4 10.857 0 14.857-28 28-81.714 30.286-97.714 30.286s-69.714-2.286-97.714-30.286c-4-4-4-10.857 0-14.857 4-4.571 10.857-4.571 14.857 0 17.714 17.714 56 24 82.857 24s65.143-6.286 82.857-24c4-4.571 10.857-4.571 14.857 0zM386.286 556c0 24-20 44-44 44s-44-20-44-44c0-24.571 20-44 44-44s44 19.429 44 44zM579.429 556c0 24-20 44-44 44s-44-20-44-44c0-24.571 20-44 44-44s44 19.429 44 44zM702.286 497.143c0-32-26.286-58.286-58.857-58.286-16 0-30.857 6.857-41.714 17.714-40-27.429-93.714-45.143-152.571-46.857l30.857-138.857 97.714 22.286c0.571 24 20 43.429 44 43.429s44-20 44-44-20-44-44-44c-17.143 0-32 9.714-39.429 24.571l-108-24c-5.714-1.714-10.857 2.286-12 7.429l-34.286 153.143c-58.857 2.286-112 20-151.429 47.429-10.857-11.429-25.714-18.286-42.286-18.286-32.571 0-58.857 26.286-58.857 58.286 0 23.429 13.714 43.429 33.143 53.143-1.714 8.571-2.857 18.286-2.857 27.429 0 93.143 104.571 168.571 233.714 168.571s234.286-75.429 234.286-168.571c0-9.714-1.143-18.857-3.429-28 18.857-9.714 32-29.714 32-52.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "reddit-square"
+ ],
+ "defaultCode": 61858,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "reddit-square",
+ "id": 378,
+ "order": 1234,
+ "prevSize": 28,
+ "code": 61858
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 378
+ },
+ {
+ "icon": {
+ "paths": [
+ "M494.857 479.429l51.429-15.429v-35.429c0-60.571-51.429-109.143-112-109.143s-112 48-112 108.571v161.714c0 14.857-12 26.857-26.857 26.857s-26.286-12-26.286-26.857v-68.571h-86.286v69.714c0 62.286 50.286 112 112.571 112 61.143 0 112-49.143 112-110.286v-160c0-14.857 12-26.857 26.857-26.857 14.286 0 26.286 12 26.286 26.857v30.857zM685.143 590.857v-69.714h-85.714v72c0 14.857-12 26.857-26.857 26.857-14.286 0-26.286-12-26.286-26.857v-70.286l-51.429 14.857-34.286-16v70.286c0 61.143 50.857 110.857 112.571 110.857s112-49.714 112-112zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stumbleupon-circle"
+ ],
+ "defaultCode": 61859,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "stumbleupon-circle",
+ "id": 379,
+ "order": 1235,
+ "prevSize": 28,
+ "code": 61859
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 379
+ },
+ {
+ "icon": {
+ "paths": [
+ "M606.857 406.857v-67.429c0-32-26.286-58.286-58.286-58.286s-58.286 26.286-58.286 58.286v349.714c0 133.714-110.857 241.714-245.143 241.714-135.429 0-245.143-109.714-245.143-245.143v-152h187.429v149.714c0 32.571 26.286 58.286 58.286 58.286s58.286-25.714 58.286-58.286v-354.286c0-130.857 112-236 244.571-236 133.143 0 244.571 105.714 244.571 237.714v77.714l-111.429 33.143zM909.714 533.714h187.429v152c0 135.429-109.714 245.143-245.143 245.143-134.857 0-245.143-108.571-245.143-242.857v-153.143l74.857 34.857 111.429-33.143v154.286c0 32 26.286 57.714 58.286 57.714s58.286-25.714 58.286-57.714v-157.143z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stumbleupon"
+ ],
+ "defaultCode": 61860,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "stumbleupon",
+ "id": 380,
+ "order": 1236,
+ "prevSize": 28,
+ "code": 61860
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 380
+ },
+ {
+ "icon": {
+ "paths": [
+ "M841.143 786.286v-274.286h-402.286v-402.286h-274.286c-70.857 0-128 57.143-128 128v274.286h402.286v402.286h274.286c70.857 0 128-57.143 128-128zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "delicious"
+ ],
+ "defaultCode": 61861,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "delicious",
+ "id": 381,
+ "order": 1237,
+ "prevSize": 28,
+ "code": 61861
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 381
+ },
+ {
+ "icon": {
+ "paths": [
+ "M187.429 161.143h116.571v561.714h-304v-398.286h187.429v-163.429zM187.429 629.143v-210.857h-70.286v210.857h70.286zM350.857 324.571v398.286h117.143v-398.286h-117.143zM350.857 161.143v116.571h117.143v-116.571h-117.143zM514.857 324.571h304.571v538.286h-304.571v-93.143h187.429v-46.857h-187.429v-398.286zM702.286 629.143v-210.857h-70.286v210.857h70.286zM866.286 324.571h304v538.286h-304v-93.143h186.857v-46.857h-186.857v-398.286zM1053.143 629.143v-210.857h-70.286v210.857h70.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "digg"
+ ],
+ "defaultCode": 61862,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "digg",
+ "id": 382,
+ "order": 1238,
+ "prevSize": 28,
+ "code": 61862
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 382
+ },
+ {
+ "icon": {
+ "paths": [
+ "M597.714 582.857c0 48.571-33.143 88-73.714 88-16.571 0-29.714-2.857-40-8.571v-158.286c10.286-6.286 23.429-9.714 40-9.714 40.571 0 73.714 39.429 73.714 88.571zM401.714 338.286c0 49.143-33.143 88.571-73.714 88.571-16.571 0-29.714-2.857-40-8.571v-158.286c10.286-6.286 23.429-9.714 40-9.714 40.571 0 73.714 39.429 73.714 88zM722.857 584.571c0-102.286-77.143-185.143-172-185.143-7.429 0-14.857 0.571-22.286 1.714-8.571 29.143-23.429 55.429-44.571 77.714-32 34.857-74.857 55.429-120.571 57.714v363.429l120.571-23.429v-117.714c20 7.429 42.286 10.857 66.857 10.857 94.857 0 172-82.857 172-185.143zM526.857 340.571c0-102.286-77.143-185.143-172.571-185.143-28 0-56 7.429-80.571 20.571h-106.286v480l120.571-23.429v-117.714c20 6.857 42.286 10.857 66.286 10.857 95.429 0 172.571-82.857 172.571-185.143zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pied-piper-pp"
+ ],
+ "defaultCode": 61863,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "pied-piper-pp",
+ "id": 383,
+ "order": 1239,
+ "prevSize": 28,
+ "code": 61863
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 383
+ },
+ {
+ "icon": {
+ "paths": [
+ "M698.286 530.857c148.571-5.714 230.857 116.571 298.286 229.714 40 68 86.857 108 144.571 158.857-61.714 38.286-140 64-206.286 93.714-109.714-92-45.714-457.143-221.714-457.143l-5.714 1.143-3.429 2.286c2.286 2.857 5.143 5.714 7.429 8 47.429 40 66.286 48.571 69.143 116.571l0.571 18.857c1.714 42.857-10.857 84.571-19.429 126.286-38.286-1.143-75.429 11.429-113.714 11.429-14.286 0-28-1.714-41.143-5.714-1.143-9.143-1.143-18.286-1.143-26.857 0-17.714-0.571-37.714 1.714-54.857 2.857-18.857 66.857-59.429 65.714-86.857-10.857-1.143-18.286 5.143-24.571 13.714-26.286 38.857-93.714 83.429-141.714 83.429-33.143 0-112-142.286-152-170.857-6.286-4.571-10.286-10.857-15.429-17.143-32 7.429-277.143 64-293.143 64-12 0-22.857-9.714-22.857-21.714 0-10.857 6.857-21.143 17.714-23.429l277.714-60.571c-18.857-34.286 24.571-34.857 42.857-40 6.286-1.714 12.571-8 18.857-8 12.571 0 23.429 17.714 27.429 28 12.571-2.857 90.857-21.143 98.286-21.143 12.571 0 24 9.143 24 22.286 0 10.857-6.857 20.571-18.286 22.857l-104 22.857-0.571 9.143c-0.571 20 90.286 119.429 106.286 119.429 36 0 109.143-82.857 109.143-119.429 0-61.143-85.143-25.143-85.143-66.857 0-6.857 2.286-13.143 5.714-19.429l-38.857-10.857c17.714-18.286 24.571-41.714 24.571-66.857 0-10.857-1.143-22.286-2.857-33.143 29.143-5.714 53.143-9.143 82.286-9.143 113.143 0 90.857 17.143 130.286 108l28.571-14.286c-4.571 68-72 34.857-69.714 61.714zM732.571 396.571c-22.286-25.714-32-38.286-45.143-44-13.714-6.286-31.429-4.571-72.571-4.571-42.857 0-85.143 6.286-124 24.571 12.571-23.429 26.286-33.714 51.429-43.429 54.286-20.571 80-60.571 117.143-101.714 19.429 13.714 28 48 56 46.286l6.857-0.571v43.429l12.571 0.571c74.286-28.571 148.571-60 212-108.571 96-73.143 105.143-99.429 161.714-198.857l4-5.143c-1.143 28-12.571 54.286-24.571 79.429-60.571 126.857-156.571 199.429-292 232-24.571 5.714-52.571 6.286-74.857 17.714 2.857 19.429 26.286 36 26.286 45.714 0 6.857-10.857 14.286-14.857 17.143zM606.286 922.857c31.429-20.571 121.143-39.429 158.857-39.429 18.857 0 56 89.714 65.714 109.714-44.571 16.571-91.429 25.714-139.429 25.714-24 0-48-2.286-71.429-6.286zM469.714 553.143l27.429-6.857 62.286 101.143-41.714 27.429zM756 848.571c0.571 2.857 1.714 6.286 1.714 9.143 0 14.857-98.286 25.143-116 28l-4-24.571c35.429-4 74.857-13.143 110.286-12.571h8zM494.857 489.714l-54.857 11.429-3.429-9.714c13.143-1.143 25.143-7.429 38.286-7.429 7.429 0 13.714 1.714 20 5.714zM606.286 852h17.714l5.714 47.429-23.429 6.857v-54.286zM1114.286 0.571v0 0zM1114.286 0.571l-0.571 2.857-1.143 1.143 0.571-1.714zM1114.286 0.571l0.571-0.571z"
+ ],
+ "width": 1164.5805714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pied-piper-alt"
+ ],
+ "defaultCode": 61864,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "pied-piper-alt",
+ "id": 384,
+ "order": 1240,
+ "prevSize": 28,
+ "code": 61864
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 384
+ },
+ {
+ "icon": {
+ "paths": [
+ "M666.857 906.286c-1.143-4-4.571-9.714-13.714-2.857-19.429 14.286-62.857 32-124.571 32s-90.857-13.143-110.286-28c-2.857-2.286-1.714-2.286-7.429-2.286-6.286 0-9.714 2.857-14.857 6.857-4.571 4-6.857 13.714 0 20.571 42.286 38.857 113.143 35.429 165.143 30.857 52.571-5.143 97.143-36 101.714-40.571 6.857-6.857 5.143-12.571 4-16.571zM644.571 840.571c-4-9.714-10.857-26.857-22.286-34.857-11.429-7.429-28-8.571-43.429-8.571s-24-1.143-40.571 5.714-33.714 22.286-44.571 32-12.571 17.143-6.857 25.143c5.714 7.429 12 2.857 28-10.857 16.571-13.143 27.429-25.143 61.143-25.143s39.429 12.571 46.286 25.143 7.429 14.286 14.286 10.857c8-4 12-9.714 8-19.429zM847.429 680c0-29.714-13.143-80-61.714-80-45.714 0-138.286 94.857-186.857 95.429-56.571 1.143-134.857-112-248-110.857-89.143 0.571-159.429 71.429-160.571 146.857-0.571 42.286 13.143 73.714 42.286 93.714 19.429 13.143 37.143 21.143 94.857 21.143 96 0 217.714-118.857 273.714-117.143 44.571 1.714 113.714 110.857 148.571 113.143 27.429 2.286 41.714-10.286 65.143-44 22.857-34.286 32.571-88 32.571-118.286zM877.714 588.571c0 256-202.286 425.143-434.857 425.143-233.143 0-442.857-183.429-442.857-433.143 0-249.143 194.286-364.571 230.286-383.429 42.857-22.857 73.714-34.857 122.286-73.714 24-18.857 44-46.286 50.286-113.143 34.857 41.714 76.571 90.286 106.286 110.286 48.571 32 97.143 44.571 148 76.571 30.857 18.857 220.571 134.857 220.571 391.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drupal"
+ ],
+ "defaultCode": 61865,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "drupal",
+ "id": 385,
+ "order": 1241,
+ "prevSize": 28,
+ "code": 61865
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 385
+ },
+ {
+ "icon": {
+ "paths": [
+ "M611.429 613.143l-91.429 91.429-86.286 86.857-17.143 17.143c-50.286 49.714-120.571 66.857-184.571 50.857-12 52.571-58.857 91.429-114.857 91.429-64.571 0-117.143-52.571-117.143-117.714 0-55.429 38.286-102.286 90.286-114.286-16.571-64.571 0.571-135.429 50.857-185.714l6.857-6.857 86.286 86.857-6.286 6.286c-28.571 28-28 73.714 0 102.286 28 28 73.714 28 101.714 0l17.143-17.143 86.286-86.857 92-91.429zM416.571 223.429l6.857 6.857-86.857 86.857-6.857-6.857c-28-28-73.714-28-101.714 0s-28 74.286 0 102.286l194.857 194.857-86.286 86.857-92-91.429-86.286-86.857-17.143-17.143c-52.571-52-68.571-126.857-48.571-193.714-52.571-11.429-91.429-58.286-91.429-114.286 0-65.143 52.571-117.714 117.143-117.714 58.857 0 106.857 42.857 116 98.286 63.429-14.857 132.571 2.857 182.286 52zM877.714 833.143c0 65.143-52.571 117.714-117.143 117.714-57.143 0-104.571-40.571-115.429-94.286v0c-66.286 20.571-142.286 4.571-194.857-48l-6.286-6.857 86.286-86.857 6.857 6.857c28 28 73.714 28 101.714 0s28-73.714 0-101.714l-195.429-195.429 86.857-86.857 178.286 178.286 16.571 17.143c49.714 49.714 67.429 120 51.429 184 57.143 8 101.143 56.571 101.143 116zM876.571 190.857c0 59.429-44.571 108.571-101.714 116.571 18.857 65.714 2.286 139.429-49.714 191.429l-6.857 6.857-86.286-86.857 6.857-6.857c28-28 28-73.714 0-101.714s-73.714-28-101.714 0l-195.429 195.429-86.857-86.857 92-91.429 86.857-86.857 16.571-17.143c52-52 126.286-68.571 192.571-49.143 8-57.143 57.143-101.143 116.571-101.143 64.571 0 117.143 52.571 117.143 117.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "joomla"
+ ],
+ "defaultCode": 61866,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "joomla",
+ "id": 386,
+ "order": 1242,
+ "prevSize": 28,
+ "code": 61866
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 386
+ },
+ {
+ "icon": {
+ "paths": [
+ "M373.714 616c-1.143 4-29.143-9.143-36.571-12-7.429-3.429-41.143-22.286-49.714-28s-41.143-32.571-45.143-34.286v0c-20.571 31.429-46.857 68.571-76.571 103.429-10.286 12-41.143 50.857-60 62.857-2.857 1.714-19.429 3.429-21.714 2.286 9.143-6.857 35.429-39.429 46.857-52.571 14.286-16.571 82.286-111.429 93.714-133.143 12-21.714 48-93.714 49.714-100.571-5.714-0.571-50.857 14.857-62.857 18.857-11.429 3.429-42.857 10.857-45.143 12.571-2.286 2.286-0.571 9.143-1.714 11.429s-11.429 7.429-17.714 8.571c-5.714 1.714-18.857 2.286-26.857 0-7.429-1.714-14.286-9.143-16-12 0 0-2.286-3.429-2.857-13.143 6.857-2.286 18.286-2.857 30.857-6.286s43.429-12.571 60-18.286 48.571-17.714 58.286-20c10.286-1.714 36-18.857 49.714-23.429s23.429-10.286 24-7.429 0 15.429-0.571 18.857c-0.571 2.857-28 56.571-32 65.143-2.286 4.571-18.286 34.857-44 74.857 9.143 4 28.571 12 36.571 16 9.714 4.571 77.714 33.143 81.143 34.286s9.714 27.429 8.571 32zM256.571 338.286c1.714 9.714-1.143 13.714-2.286 16-5.714 10.857-20 18.286-28.571 21.714s-22.857 6.857-34.286 6.857c-5.143-0.571-15.429-2.286-28-14.857-6.857-7.429-12-27.429-9.714-25.143s18.857 4.571 26.286 2.857 25.143-6.857 33.143-9.143c8.571-2.857 25.714-7.429 31.429-8 5.714 0 10.286 2.286 12 9.714zM655.429 412l36 129.714-79.429-24zM22.286 869.143l396.571-132.571v-589.714l-396.571 133.143v589.143zM731.429 688l58.286 17.714-103.429-375.429-57.143-17.714-123.429 306.286 58.286 17.714 25.714-62.857 120.571 37.143zM444 138.286l327.429 105.143v-217.143zM621.714 894.286l90.286 7.429-30.857 91.429-22.857-37.714c-46.286 29.714-103.429 52.571-157.714 61.714-16.571 3.429-35.429 6.857-52 6.857h-48c-60.571 0-170.857-36-218.857-70.857-3.429-2.857-4.571-5.143-4.571-9.143 0-6.286 4.571-10.857 10.286-10.857 5.143 0 32 16.571 39.429 20 51.429 25.714 123.429 49.143 181.143 49.143 71.429 0 120-9.143 185.143-37.143 18.857-8.571 35.429-19.429 53.143-29.143zM877.714 277.714v616.571c-441.714-140.571-442.286-140.571-442.286-140.571-9.143 4-418.857 142.286-424.571 142.286-4.571 0-8.571-2.857-10.286-7.429 0-0.571-0.571-1.143-0.571-1.714v-616c0.571-1.714 1.143-4.571 2.286-5.714 3.429-4 8-5.143 11.429-6.286 1.714-0.571 36.571-12 85.143-28.571v-219.429l318.857 113.143c4-1.143 359.429-124 364.571-124 6.286 0 11.429 4.571 11.429 12v238.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "language"
+ ],
+ "defaultCode": 61867,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "language",
+ "id": 387,
+ "order": 1243,
+ "prevSize": 28,
+ "code": 61867
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 387
+ },
+ {
+ "icon": {
+ "paths": [
+ "M164.571 219.429c50.286 0 91.429 41.143 91.429 91.429v621.714c0 50.286-41.143 91.429-91.429 91.429h-73.143c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h73.143zM950.857 312.571c43.429 25.143 73.143 72.571 73.143 126.286v438.857c0 80.571-65.714 146.286-146.286 146.286h-493.714c-50.286 0-91.429-41.143-91.429-91.429v-877.714c0-30.286 24.571-54.857 54.857-54.857h384c30.286 0 72.571 17.714 93.714 38.857l86.857 86.857c21.143 21.143 38.857 63.429 38.857 93.714v93.143zM530.286 877.714v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM530.286 731.429v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM530.286 585.143v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM676.571 877.714v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM676.571 731.429v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM676.571 585.143v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM822.857 877.714v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM822.857 731.429v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM822.857 585.143v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM877.714 365.714v-146.286h-91.429c-30.286 0-54.857-24.571-54.857-54.857v-91.429h-365.714v292.571h512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fax"
+ ],
+ "defaultCode": 61868,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "fax",
+ "id": 388,
+ "order": 1244,
+ "prevSize": 28,
+ "code": 61868
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 388
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 0c20 0 36.571 16.571 36.571 36.571v950.857c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-950.857c0-20 16.571-36.571 36.571-36.571h731.429zM292.571 164.571v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM292.571 310.857v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM292.571 457.143v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM292.571 603.429v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM219.429 786.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM219.429 640v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM219.429 493.714v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM219.429 347.429v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM219.429 201.143v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM512 932.571v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM512 640v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM512 493.714v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM512 347.429v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM512 201.143v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 786.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 640v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 493.714v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 347.429v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 201.143v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "building"
+ ],
+ "defaultCode": 61869,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "building",
+ "id": 389,
+ "order": 1245,
+ "prevSize": 28,
+ "code": 61869
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 389
+ },
+ {
+ "icon": {
+ "paths": [
+ "M678.857 313.143l-166.857 166.857v470.857c0 35.429-28.571 64-64 64s-64-28.571-64-64v-219.429h-36.571v219.429c0 35.429-28.571 64-64 64s-64-28.571-64-64v-470.857l-166.857-166.857c-21.143-21.714-21.143-56 0-77.714 21.714-21.143 56-21.143 77.714 0l130.286 130.286h210.286l130.286-130.286c21.714-21.143 56-21.143 77.714 0 21.143 21.714 21.143 56 0 77.714zM493.714 219.429c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "child"
+ ],
+ "defaultCode": 61870,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "child",
+ "id": 390,
+ "order": 1246,
+ "prevSize": 28,
+ "code": 61870
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 390
+ },
+ {
+ "icon": {
+ "paths": [
+ "M445.714 269.714c0 64-33.143 140-106.857 140-92.571 0-148.571-116.571-148.571-196.571 0-64 33.143-140 106.857-140 93.143 0 148.571 116.571 148.571 196.571zM250.286 545.714c0 55.429-29.143 113.143-92 113.143-91.429 0-158.286-112-158.286-194.857 0-55.429 29.714-113.714 92-113.714 91.429 0 158.286 112.571 158.286 195.429zM475.429 530.286c140 0 329.143 201.714 329.143 336.571 0 72.571-59.429 84-117.714 84-76.571 0-138.286-51.429-211.429-51.429-76.571 0-141.714 50.857-224.571 50.857-55.429 0-104.571-18.857-104.571-83.429 0-135.429 189.143-336.571 329.143-336.571zM612 409.714c-73.714 0-106.857-76-106.857-140 0-80 55.429-196.571 148.571-196.571 73.714 0 106.857 76 106.857 140 0 80-56 196.571-148.571 196.571zM858.857 350.286c62.286 0 92 58.286 92 113.714 0 82.857-66.857 194.857-158.286 194.857-62.857 0-92-57.714-92-113.143 0-82.857 66.857-195.429 158.286-195.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paw"
+ ],
+ "defaultCode": 61872,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "paw",
+ "id": 391,
+ "order": 1247,
+ "prevSize": 28,
+ "code": 61872
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 391
+ },
+ {
+ "icon": {
+ "paths": [
+ "M402.286 301.714c0 114.286-49.714 189.143-119.429 216.571l25.714 469.143c1.143 20-14.286 36.571-34.286 36.571h-109.714c-20 0-35.429-16.571-34.286-36.571l25.714-469.143c-69.714-27.429-119.429-102.286-119.429-216.571 0-146.286 81.714-301.714 182.857-301.714s182.857 155.429 182.857 301.714z"
+ ],
+ "width": 438.85714285714283,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "spoon"
+ ],
+ "defaultCode": 61873,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "spoon",
+ "id": 392,
+ "order": 1248,
+ "prevSize": 28,
+ "code": 61873
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 392
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 930.857l365.714-199.429v-363.429l-365.714 133.143v429.714zM475.429 436.571l398.857-145.143-398.857-145.143-398.857 145.143zM950.857 292.571v438.857c0 26.857-14.857 51.429-38.286 64l-402.286 219.429c-10.857 6.286-22.857 9.143-34.857 9.143s-24-2.857-34.857-9.143l-402.286-219.429c-23.429-12.571-38.286-37.143-38.286-64v-438.857c0-30.857 19.429-58.286 48-68.571l402.286-146.286c8-2.857 16.571-4.571 25.143-4.571s17.143 1.714 25.143 4.571l402.286 146.286c28.571 10.286 48 37.714 48 68.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cube"
+ ],
+ "defaultCode": 61874,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cube",
+ "id": 393,
+ "order": 1249,
+ "prevSize": 28,
+ "code": 61874
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 393
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 932.571l219.429-109.714v-179.429l-219.429 93.714v195.429zM329.143 673.143l230.857-98.857-230.857-98.857-230.857 98.857zM950.857 932.571l219.429-109.714v-179.429l-219.429 93.714v195.429zM914.286 673.143l230.857-98.857-230.857-98.857-230.857 98.857zM658.286 505.714l219.429-94.286v-152l-219.429 93.714v152.571zM621.714 289.143l252-108-252-108-252 108zM1243.429 585.143v237.714c0 27.429-15.429 53.143-40.571 65.143l-256 128c-10.286 5.714-21.143 8-32.571 8s-22.286-2.286-32.571-8l-256-128c-1.714-0.571-2.857-1.143-4-2.286-1.143 1.143-2.286 1.714-4 2.286l-256 128c-10.286 5.714-21.143 8-32.571 8s-22.286-2.286-32.571-8l-256-128c-25.143-12-40.571-37.714-40.571-65.143v-237.714c0-29.143 17.714-55.429 44.571-67.429l248-106.286v-228.571c0-29.143 17.714-55.429 44.571-67.429l256-109.714c9.143-4 18.857-5.714 28.571-5.714s19.429 1.714 28.571 5.714l256 109.714c26.857 12 44.571 38.286 44.571 67.429v228.571l248 106.286c27.429 12 44.571 38.286 44.571 67.429z"
+ ],
+ "width": 1243.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cubes"
+ ],
+ "defaultCode": 61875,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cubes",
+ "id": 394,
+ "order": 1250,
+ "prevSize": 28,
+ "code": 61875
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 394
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1056 193.714h-292v70.857h292v-70.857zM912 437.143c-68.571 0-114.286 42.857-118.857 111.429h233.143c-6.286-69.143-42.286-111.429-114.286-111.429zM921.143 771.429c43.429 0 99.429-23.429 113.143-68h126.286c-38.857 119.429-119.429 175.429-244 175.429-164.571 0-266.857-111.429-266.857-273.714 0-156.571 108-276 266.857-276 163.429 0 253.714 128.571 253.714 282.857 0 9.143-0.571 18.286-1.143 26.857h-376c0 83.429 44 132.571 128 132.571zM158.286 742.857h169.143c64.571 0 117.143-22.857 117.143-95.429 0-73.714-44-102.857-113.714-102.857h-172.571v198.286zM158.286 436h160.571c56.571 0 96.571-24.571 96.571-85.714 0-66.286-51.429-82.286-108.571-82.286h-148.571v168zM0 145.143h339.429c123.429 0 230.286 34.857 230.286 178.286 0 72.571-33.714 119.429-98.286 150.286 88.571 25.143 131.429 92 131.429 182.286 0 146.286-122.857 209.143-253.714 209.143h-349.143v-720z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "behance"
+ ],
+ "defaultCode": 61876,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "behance",
+ "id": 395,
+ "order": 1251,
+ "prevSize": 28,
+ "code": 61876
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 395
+ },
+ {
+ "icon": {
+ "paths": [
+ "M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571zM285.143 282.857h-212v449.714h218.286c81.714 0 158.286-38.857 158.286-130.286 0-56.571-26.857-98.286-81.714-114.286 40-19.429 61.143-48.571 61.143-93.714 0-89.714-66.857-111.429-144-111.429zM272.571 464.571h-100.571v-105.143h93.143c35.429 0 68 9.714 68 51.429 0 38.286-25.143 53.714-60.571 53.714zM277.714 656h-105.714v-124h108c43.429 0 70.857 18.857 70.857 64.571s-32.571 59.429-73.143 59.429zM649.143 674.286c-52.571 0-80-30.857-80-82.857h234.857c0.571-5.714 0.571-11.429 0.571-17.143 0-96-56.571-176.571-158.857-176.571-98.857 0-166.857 74.857-166.857 172.571 0 101.714 64 170.857 166.857 170.857 78.286 0 128.571-34.857 152.571-109.143h-78.857c-8.571 27.429-43.429 42.286-70.286 42.286zM643.429 465.143c44.571 0 66.857 26.857 70.857 69.714h-145.143c2.857-42.857 31.429-69.714 74.286-69.714zM550.857 313.143h182.286v44h-182.286v-44z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "behance-square"
+ ],
+ "defaultCode": 61877,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "behance-square",
+ "id": 396,
+ "order": 1252,
+ "prevSize": 28,
+ "code": 61877
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 396
+ },
+ {
+ "icon": {
+ "paths": [
+ "M904 332.571c0 77.143-62.857 139.429-139.429 139.429-77.143 0-139.429-62.286-139.429-139.429s62.286-139.429 139.429-139.429c76.571 0 139.429 62.286 139.429 139.429zM464 756.571c0-79.429-63.429-142.857-142.857-142.857-10.286 0-20.571 1.143-30.857 3.429l59.429 24c58.286 23.429 86.857 89.143 63.429 147.429s-89.714 86.857-148 62.857c-23.429-9.143-46.857-18.857-70.286-28 24 45.143 71.429 76 126.286 76 79.429 0 142.857-63.429 142.857-142.857zM938.286 333.143c0-96-78.286-174.286-174.286-174.286-96.571 0-174.857 78.286-174.857 174.286 0 96.571 78.286 174.286 174.857 174.286 96 0 174.286-77.714 174.286-174.286zM1024 333.143c0 144-116.571 260-260 260l-249.714 182.286c-9.143 98.286-92.571 175.429-193.143 175.429-92.571 0-170.857-65.714-189.714-153.143l-131.429-52.571v-245.143l222.286 89.714c29.143-17.714 62.857-27.429 98.857-27.429 6.857 0 13.714 0.571 20 1.143l162.286-232.571c1.143-142.286 117.714-257.714 260.571-257.714 143.429 0 260 116.571 260 260z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "steam"
+ ],
+ "defaultCode": 61878,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "steam",
+ "id": 397,
+ "order": 1253,
+ "prevSize": 28,
+ "code": 61878
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 397
+ },
+ {
+ "icon": {
+ "paths": [
+ "M709.714 369.714c0-60.571-49.714-110.286-110.857-110.286-60.571 0-110.286 49.714-110.286 110.286 0 61.143 49.714 110.286 110.286 110.286 61.143 0 110.857-49.143 110.857-110.286zM361.143 705.714c0 62.857-50.286 113.143-113.143 113.143-43.429 0-81.143-24.571-100-60.571 18.857 7.429 37.143 14.857 56 22.857 45.714 18.286 98.286-4 117.143-50.286 18.286-45.714-4-98.286-50.286-116.571l-46.857-18.857c7.429-1.714 16-2.857 24-2.857 62.857 0 113.143 50.286 113.143 113.143zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-87.429l98.286 39.429c14.857 69.143 76.571 121.143 149.714 121.143 80 0 145.714-61.143 153.143-138.857l197.143-144c114.286 0 206.286-92.571 206.286-205.714 0-114.286-92-206.286-206.286-206.286-112.571 0-204.571 91.429-205.714 204l-128.571 184c-5.143-0.571-10.286-0.571-16-0.571-28.571 0-55.429 7.429-78.286 21.143l-169.714-68v-267.429c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571zM736.571 370.857c0 76-61.714 137.714-138.286 137.714-76 0-137.714-61.714-137.714-137.714 0-76.571 61.714-138.286 137.714-138.286 76.571 0 138.286 61.714 138.286 138.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "steam-square"
+ ],
+ "defaultCode": 61879,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "steam-square",
+ "id": 398,
+ "order": 1254,
+ "prevSize": 28,
+ "code": 61879
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 398
+ },
+ {
+ "icon": {
+ "paths": [
+ "M477.714 668l-8.571 210.286-1.143 12.571-240-16.571c-29.714-2.286-54.286-30.286-65.143-55.429-22.857-53.143 6.857-116 24-166.857 0 0 44 6.857 290.857 16zM256.571 333.143l102.857 216.571-84-52.571c-128.571 146.857-140.571 256-140.571 256l-108.571-204c-22.286-33.143-2.286-69.143-2.286-69.143s20-36 65.143-107.429l-80-49.143zM960 628.571l-107.429 205.143c-14.857 37.143-56 40.571-56 40.571s-40.571 4-125.143 6.857l4.571 93.714-131.429-209.714 120.571-206.857 4 98.857c193.714 23.429 290.857-28.571 290.857-28.571zM511.429 100.571c0 0-26.857 35.429-151.429 248.571l-181.143-106.857-10.857-6.857 128.571-203.429c16-25.143 52-34.286 80-31.429 57.143 5.143 98.286 60.571 134.857 100zM885.714 276l121.143 207.429c15.429 25.714 6.286 61.714-8.571 85.714-30.857 48-99.429 59.429-150.857 73.714 0 0-19.429-40.571-151.429-249.143l178.857-111.429zM804 146.857l81.143-47.429-125.714 213.143-239.429-11.429 86.286-49.143c-68.571-182.286-159.429-245.143-159.429-245.143l231.429 0.571c40-3.429 61.714 30.857 61.714 30.857s22.286 34.857 64 108.571z"
+ ],
+ "width": 1026.2674285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "recycle"
+ ],
+ "defaultCode": 61880,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "recycle",
+ "id": 399,
+ "order": 1255,
+ "prevSize": 28,
+ "code": 61880
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 399
+ },
+ {
+ "icon": {
+ "paths": [
+ "M274.286 621.714c0-50.286-41.143-91.429-91.429-91.429s-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429zM294.857 438.857h580.571l-50.857-204c-1.714-6.286-13.143-15.429-20-15.429h-438.857c-6.857 0-18.286 9.143-20 15.429zM1078.857 621.714c0-50.286-41.143-91.429-91.429-91.429s-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429zM1170.286 566.857v219.429c0 10.286-8 18.286-18.286 18.286h-54.857v73.143c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714v-73.143h-585.143v73.143c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714v-73.143h-54.857c-10.286 0-18.286-8-18.286-18.286v-219.429c0-70.857 57.143-128 128-128h16l60-239.429c17.714-72 87.429-126.286 161.714-126.286h438.857c74.286 0 144 54.286 161.714 126.286l60 239.429h16c70.857 0 128 57.143 128 128z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "automobile",
+ "car"
+ ],
+ "defaultCode": 61881,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "automobile, car",
+ "id": 400,
+ "order": 1256,
+ "prevSize": 28,
+ "code": 61881
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 400
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1042.286 512c70.857 0 128 57.143 128 128v219.429c0 10.286-8 18.286-18.286 18.286h-54.857v36.571c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714v-36.571h-585.143v36.571c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714v-36.571h-54.857c-10.286 0-18.286-8-18.286-18.286v-219.429c0-70.857 57.143-128 128-128h16l60-239.429c17.714-72 87.429-126.286 161.714-126.286h73.143v-128c0-10.286 8-18.286 18.286-18.286h256c10.286 0 18.286 8 18.286 18.286v128h73.143c74.286 0 144 54.286 161.714 126.286l60 239.429h16zM182.857 786.286c50.286 0 91.429-41.143 91.429-91.429s-41.143-91.429-91.429-91.429-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429zM294.857 512h580.571l-50.857-204c-1.714-6.286-13.143-15.429-20-15.429h-438.857c-6.857 0-18.286 9.143-20 15.429zM987.429 786.286c50.286 0 91.429-41.143 91.429-91.429s-41.143-91.429-91.429-91.429-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cab",
+ "taxi"
+ ],
+ "defaultCode": 61882,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cab, taxi",
+ "id": 401,
+ "order": 1257,
+ "prevSize": 28,
+ "code": 61882
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 401
+ },
+ {
+ "icon": {
+ "paths": [
+ "M859.429 841.143c0 20-16.571 36.571-36.571 36.571h-264c1.714 36.571 6.286 74.857 6.286 112 0 18.857-15.429 34.286-34.857 34.286h-182.857c-19.429 0-34.857-15.429-34.857-34.286 0-37.143 4.571-75.429 6.286-112h-264c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l229.714-230.286h-130.857c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l229.714-230.286h-112.571c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l219.429-219.429c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l219.429 219.429c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-112.571l229.714 230.286c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-130.857l229.714 230.286c6.857 6.857 10.857 16 10.857 25.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tree"
+ ],
+ "defaultCode": 61883,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "tree",
+ "id": 402,
+ "order": 1258,
+ "prevSize": 28,
+ "code": 61883
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 402
+ },
+ {
+ "icon": {
+ "paths": [
+ "M644 691.429c0-16-6.286-22.286-17.143-29.143-73.714-44-159.429-65.714-255.429-65.714-56 0-109.714 7.429-164 19.429-13.143 2.857-24 11.429-24 29.714 0 14.286 10.857 28 28 28 5.143 0 14.286-2.857 21.143-4.571 44.571-9.143 91.429-15.429 138.857-15.429 84 0 163.429 20.571 226.857 58.857 6.857 4 11.429 6.286 18.857 6.286 14.286 0 26.857-11.429 26.857-27.429zM698.857 568.571c0-15.429-5.714-26.286-20-34.857-87.429-52-198.286-80.571-313.143-80.571-73.714 0-124 10.286-173.143 24-18.286 5.143-27.429 17.714-27.429 36.571s15.429 34.286 34.286 34.286c8 0 12.571-2.286 21.143-4.571 40-10.857 88-18.857 143.429-18.857 108.571 0 207.429 28.571 278.857 70.857 6.286 3.429 12.571 7.429 21.714 7.429 19.429 0 34.286-15.429 34.286-34.286zM760.571 426.857c0-21.143-9.143-32-22.857-40-98.857-57.714-234.286-84.571-363.429-84.571-76 0-145.714 8.571-208 26.857-16 4.571-30.857 18.286-30.857 42.286 0 23.429 17.714 41.714 41.143 41.714 8.571 0 16.571-2.857 22.857-4.571 55.429-15.429 115.429-21.143 175.429-21.143 118.857 0 242.286 26.286 321.714 73.714 8 4.571 13.714 6.857 22.857 6.857 21.714 0 41.143-17.143 41.143-41.143zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "spotify"
+ ],
+ "defaultCode": 61884,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "spotify",
+ "id": 403,
+ "order": 1259,
+ "prevSize": 28,
+ "code": 61884
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 403
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 173.143l-173.143 332.571 13.714 17.714h159.429v237.143h-289.714l-25.143 17.143-81.143 156c-0.571 0-16 16-17.143 17.143h-172v-173.143l173.143-333.143-13.714-17.143h-159.429v-237.143h289.714l25.143-17.143 81.143-156c0.571 0 16-16 17.143-17.143h172v173.143z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "deviantart"
+ ],
+ "defaultCode": 61885,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "deviantart",
+ "id": 404,
+ "order": 1260,
+ "prevSize": 28,
+ "code": 61885
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 404
+ },
+ {
+ "icon": {
+ "paths": [
+ "M448 784l9.143-137.714-9.143-298.857c-0.571-7.429-6.286-13.714-13.714-13.714-6.857 0-13.143 6.286-13.143 13.714l-8 298.857 8 137.714c0.571 7.429 6.286 13.143 13.143 13.143 7.429 0 13.143-5.714 13.714-13.143zM617.143 767.429l6.286-120.571-6.857-334.857c0-5.714-2.857-10.857-7.429-13.714-2.857-1.714-5.714-2.857-9.143-2.857s-6.286 1.143-9.143 2.857c-4.571 2.857-7.429 8-7.429 13.714l-0.571 3.429-5.714 330.857s0 0.571 6.286 134.857v0.571c0 3.429 1.143 6.857 3.429 9.714 3.429 4 8 6.286 13.143 6.286 4.571 0 8.571-2.286 11.429-5.143 3.429-2.857 5.143-6.857 5.143-11.429zM20 573.143l11.429 73.143-11.429 72c-0.571 2.857-2.286 5.143-5.143 5.143s-4.571-2.286-5.143-5.143l-9.714-72 9.714-73.143c0.571-2.857 2.286-5.143 5.143-5.143s4.571 2.286 5.143 5.143zM69.143 528l14.857 118.286-14.857 116c-0.571 2.857-2.857 5.143-5.714 5.143s-5.143-2.286-5.143-5.714l-13.143-115.429 13.143-118.286c0-2.857 2.286-5.143 5.143-5.143s5.143 2.286 5.714 5.143zM229.143 786.857v0 0zM121.714 506.286l14.286 140-14.286 135.429c0 3.429-2.857 6.286-6.286 6.286s-6.286-2.857-6.857-6.286l-12-135.429 12-140c0.571-4 3.429-6.857 6.857-6.857s6.286 2.857 6.286 6.857zM175.429 502.286l13.143 144-13.143 139.429c-0.571 4.571-4 7.429-8 7.429s-7.429-2.857-7.429-7.429l-12-139.429 12-144c0-4.571 3.429-7.429 7.429-7.429s7.429 2.857 8 7.429zM229.143 512.571l12 133.714-12 140.571c-0.571 5.143-4.571 9.143-9.143 9.143s-8.571-4-8.571-9.143l-11.429-140.571 11.429-133.714c0-4.571 4-8.571 8.571-8.571s8.571 4 9.143 8.571zM448 784v0 0zM282.857 429.143l12 217.143-12 140.571c0 5.714-4.571 10.286-9.714 10.286-5.714 0-9.714-4.571-10.286-10.286l-10.286-140.571 10.286-217.143c0.571-5.714 4.571-10.286 10.286-10.286 5.143 0 9.714 4.571 9.714 10.286zM336.571 380l10.857 267.429-10.857 139.429c0 6.286-5.143 10.857-10.857 10.857-6.286 0-10.857-4.571-11.429-10.857l-9.143-139.429 9.143-267.429c0.571-6.286 5.143-10.857 11.429-10.857 5.714 0 10.857 4.571 10.857 10.857zM392.571 357.143l10.286 289.143-10.286 138.286c-0.571 6.857-5.714 12-12.571 12-6.286 0-11.429-5.143-12-12l-9.143-138.286 9.143-289.143c0-6.857 5.714-12.571 12-12.571 6.857 0 12 5.714 12.571 12.571zM616.571 781.143v0 0 0 0 0 0zM503.429 354.857l8.571 291.429-8.571 136.571c0 8-6.286 14.286-14.286 14.286s-13.714-6.286-14.286-14.286l-8-136.571 8-291.429c0-8 6.286-14.286 14.286-14.286s14.286 6.286 14.286 14.286zM560 365.714l8 281.143-8 134.857c0 8.571-6.857 15.429-15.429 15.429s-15.429-6.857-16-15.429l-6.857-134.857 6.857-281.143c0.571-9.143 7.429-16 16-16s14.857 6.857 15.429 16zM681.143 646.857l-8 132c0 9.714-8 17.714-17.714 17.714s-17.714-8-18.286-17.714l-3.429-65.143-3.429-66.857 6.857-363.429v-1.714c0.571-5.143 2.857-10.286 6.857-13.714 2.857-2.286 6.857-4 11.429-4 2.857 0 6.286 1.143 8.571 2.857 5.143 2.857 8.571 8.571 9.143 14.857zM1316.571 636c0 89.143-72.571 161.143-161.714 161.143h-449.143c-9.714-1.143-17.714-8.571-17.714-18.857v-513.714c0-9.714 3.429-14.286 16-18.857 31.429-12.571 66.857-19.429 103.429-19.429 149.143 0 271.429 114.286 284.571 260 19.429-8 40.571-12.571 62.857-12.571 89.143 0 161.714 72.571 161.714 162.286z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "soundcloud"
+ ],
+ "defaultCode": 61886,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "soundcloud",
+ "id": 405,
+ "order": 1261,
+ "prevSize": 28,
+ "code": 61886
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 405
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 438.857c172 0 344.571-30.857 438.857-97.143v97.143c0 80.571-196.571 146.286-438.857 146.286s-438.857-65.714-438.857-146.286v-97.143c94.286 66.286 266.857 97.143 438.857 97.143zM438.857 877.714c172 0 344.571-30.857 438.857-97.143v97.143c0 80.571-196.571 146.286-438.857 146.286s-438.857-65.714-438.857-146.286v-97.143c94.286 66.286 266.857 97.143 438.857 97.143zM438.857 658.286c172 0 344.571-30.857 438.857-97.143v97.143c0 80.571-196.571 146.286-438.857 146.286s-438.857-65.714-438.857-146.286v-97.143c94.286 66.286 266.857 97.143 438.857 97.143zM438.857 0c242.286 0 438.857 65.714 438.857 146.286v73.143c0 80.571-196.571 146.286-438.857 146.286s-438.857-65.714-438.857-146.286v-73.143c0-80.571 196.571-146.286 438.857-146.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "database"
+ ],
+ "defaultCode": 61888,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "database",
+ "id": 406,
+ "order": 1262,
+ "prevSize": 28,
+ "code": 61888
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 406
+ },
+ {
+ "icon": {
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM510.857 612c14.286 11.429 30.286 21.714 48 32 24-2.857 46.286-4 66.857-4 38.286 0 86.857 4.571 101.143 28 4 5.714 7.429 16 1.143 29.714-0.571 0.571-1.143 1.714-1.714 2.286v0.571c-1.714 10.286-10.286 21.714-40.571 21.714-36.571 0-92-16.571-140-41.714-79.429 8.571-162.857 26.286-224 47.429-58.857 100.571-104 149.714-138.286 149.714-5.714 0-10.857-1.143-16-4l-13.714-6.857c-1.714-0.571-2.286-1.714-3.429-2.857-2.857-2.857-5.143-9.143-3.429-20.571 5.714-26.286 36.571-70.286 107.429-107.429 4.571-2.857 10.286-1.143 13.143 3.429 0.571 0.571 1.143 1.714 1.143 2.286 17.714-29.143 38.286-66.286 61.143-112.571 25.714-51.429 45.714-101.714 59.429-149.714-18.286-62.286-24-126.286-13.714-164 4-14.286 12.571-22.857 24-22.857h12.571c8.571 0 15.429 2.857 20 8.571 6.857 8 8.571 20.571 5.143 38.857-0.571 1.714-1.143 3.429-2.286 4.571 0.571 1.714 0.571 2.857 0.571 4.571v17.143c-0.571 36-1.143 70.286-8 109.714 20 60 49.714 108.571 83.429 136zM181.714 846.857c17.143-8 41.714-32.571 78.286-90.286-42.857 33.143-69.714 70.857-78.286 90.286zM409.143 321.143c-5.714 16-5.714 43.429-1.143 75.429 1.714-9.143 2.857-17.714 4-25.143 1.143-9.714 2.857-17.714 4-24.571 0.571-1.714 1.143-2.857 2.286-4.571-0.571-0.571-0.571-1.714-1.143-2.857-0.571-10.286-4-16.571-7.429-20.571 0 1.143-0.571 1.714-0.571 2.286zM338.286 698.857c50.286-20 106.286-36 162.286-46.286-5.714-4.571-11.429-8.571-16.571-13.143-28-24.571-53.143-58.857-72.571-100.571-10.857 34.857-26.857 72-47.429 112.571-8.571 16-17.143 32-25.714 47.429zM707.429 689.714c-2.857-2.857-17.714-13.714-80-13.714 28 10.286 53.714 16 70.857 16 5.143 0 8 0 10.286-0.571 0-0.571-0.571-1.143-1.143-1.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-pdf-o"
+ ],
+ "defaultCode": 61889,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "file-pdf-o",
+ "id": 407,
+ "order": 1263,
+ "prevSize": 28,
+ "code": 61889
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 407
+ },
+ {
+ "icon": {
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM133.143 438.857v61.143h40l93.714 377.714h90.857l73.143-277.143c2.857-8.571 4.571-17.143 5.714-26.286 0.571-4.571 1.143-9.143 1.143-13.714h2.286l1.714 13.714c1.714 8 2.286 17.143 5.143 26.286l73.143 277.143h90.857l93.714-377.714h40v-61.143h-171.429v61.143h51.429l-56.571 250.286c-2.286 9.143-3.429 18.857-4 26.286l-1.143 12h-2.286c0-3.429-1.143-8-1.714-12-1.714-7.429-2.857-17.143-5.143-26.286l-82.286-311.429h-65.143l-82.286 311.429c-2.286 9.143-2.857 18.857-4.571 26.286l-2.286 12h-2.286l-1.143-12c-0.571-7.429-1.714-17.143-4-26.286l-56.571-250.286h51.429v-61.143h-171.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-word-o"
+ ],
+ "defaultCode": 61890,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "file-word-o",
+ "id": 408,
+ "order": 1264,
+ "prevSize": 28,
+ "code": 61890
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 408
+ },
+ {
+ "icon": {
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM245.143 817.143v60.571h160.571v-60.571h-42.857l58.857-92c6.857-10.857 10.286-19.429 12-19.429h1.143c0.571 2.286 1.714 4 2.857 5.714 2.286 4.571 5.714 8 9.714 13.714l61.143 92h-43.429v60.571h166.286v-60.571h-38.857l-109.714-156 111.429-161.143h38.286v-61.143h-159.429v61.143h42.286l-58.857 90.857c-6.857 10.857-12 19.429-12 18.857h-1.143c-0.571-2.286-1.714-4-2.857-5.714-2.286-4-5.143-8-9.714-13.143l-60.571-90.857h43.429v-61.143h-165.714v61.143h38.857l108 155.429-110.857 161.714h-38.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-excel-o"
+ ],
+ "defaultCode": 61891,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "file-excel-o",
+ "id": 409,
+ "order": 1265,
+ "prevSize": 28,
+ "code": 61891
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 409
+ },
+ {
+ "icon": {
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM237.714 817.143v60.571h186.857v-60.571h-53.143v-95.429h78.286c24.571 0 46.857-1.143 67.429-8.571 51.429-17.714 83.429-70.857 83.429-133.143s-30.857-110.286-78.286-130.286c-21.714-8.571-48-10.857-74.286-10.857h-210.286v61.143h52.571v317.143h-52.571zM439.429 657.143h-68v-153.143h68.571c20 0 35.429 3.429 47.429 10.286 20.571 12 32 35.429 32 65.714 0 32-11.429 56.571-35.429 68.571-12 5.714-26.857 8.571-44.571 8.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-powerpoint-o"
+ ],
+ "defaultCode": 61892,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "file-powerpoint-o",
+ "id": 410,
+ "order": 1266,
+ "prevSize": 28,
+ "code": 61892
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 410
+ },
+ {
+ "icon": {
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM731.429 694.857v182.857h-585.143v-109.714l109.714-109.714 73.143 73.143 219.429-219.429zM256 585.143c-60.571 0-109.714-49.143-109.714-109.714s49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714-49.143 109.714-109.714 109.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-image-o",
+ "file-photo-o",
+ "file-picture-o"
+ ],
+ "defaultCode": 61893,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "file-image-o, file-photo-o, file-picture-o",
+ "id": 411,
+ "order": 1267,
+ "prevSize": 28,
+ "code": 61893
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 411
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 219.429v-73.143h-73.143v73.143h73.143zM438.857 292.571v-73.143h-73.143v73.143h73.143zM365.714 365.714v-73.143h-73.143v73.143h73.143zM438.857 438.857v-73.143h-73.143v73.143h73.143zM838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-73.143v73.143h-73.143v-73.143h-292.571v877.714h731.429zM446.286 538.857c48.571 164 61.143 199.429 61.143 199.429 2.857 9.714 4.571 19.429 4.571 29.714 0 63.429-61.714 109.714-146.286 109.714s-146.286-46.286-146.286-109.714c0-10.286 1.714-20 4.571-29.714 0 0 12-35.429 68.571-226.286v-73.143h73.143v73.143h45.143c16.571 0 30.857 10.857 35.429 26.857zM365.714 804.571c40.571 0 73.143-16.571 73.143-36.571s-32.571-36.571-73.143-36.571-73.143 16.571-73.143 36.571 32.571 36.571 73.143 36.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-archive-o",
+ "file-zip-o"
+ ],
+ "defaultCode": 61894,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "file-archive-o, file-zip-o",
+ "id": 412,
+ "order": 1268,
+ "prevSize": 28,
+ "code": 61894
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 412
+ },
+ {
+ "icon": {
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM354.286 485.714c6.857 2.857 11.429 9.714 11.429 17.143v310.857c0 7.429-4.571 14.286-11.429 17.143-2.286 0.571-4.571 1.143-6.857 1.143-4.571 0-9.143-1.714-13.143-5.143l-94.857-95.429h-74.857c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h74.857l94.857-95.429c5.714-5.143 13.143-6.857 20-4zM592.571 879.429c10.857 0 21.143-4.571 28.571-13.714 47.429-58.286 73.714-132 73.714-207.429s-26.286-149.143-73.714-207.429c-12.571-16-36-18.286-51.429-5.714-16 13.143-18.286 36-5.143 52 37.143 45.714 57.143 101.714 57.143 161.143s-20 115.429-57.143 161.143c-13.143 16-10.857 38.857 5.143 51.429 6.857 5.714 14.857 8.571 22.857 8.571zM472 794.857c9.714 0 19.429-4 26.857-11.429 32-34.286 49.714-78.286 49.714-125.143s-17.714-90.857-49.714-125.143c-13.714-14.857-37.143-15.429-52-1.714-14.286 13.714-15.429 37.143-1.143 52 18.857 20.571 29.714 46.857 29.714 74.857s-10.857 54.286-29.714 74.857c-14.286 14.857-13.143 38.286 1.143 52 7.429 6.286 16.571 9.714 25.143 9.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-audio-o",
+ "file-sound-o"
+ ],
+ "defaultCode": 61895,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "file-audio-o, file-sound-o",
+ "id": 413,
+ "order": 1269,
+ "prevSize": 28,
+ "code": 61895
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 413
+ },
+ {
+ "icon": {
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM438.857 438.857c40 0 73.143 33.143 73.143 73.143v219.429c0 40-33.143 73.143-73.143 73.143h-219.429c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h219.429zM720 440c6.857 2.857 11.429 9.714 11.429 17.143v329.143c0 7.429-4.571 14.286-11.429 17.143-2.286 0.571-4.571 1.143-6.857 1.143-4.571 0-9.714-1.714-13.143-5.143l-151.429-152v-51.429l151.429-152c3.429-3.429 8.571-5.143 13.143-5.143 2.286 0 4.571 0.571 6.857 1.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-movie-o",
+ "file-video-o"
+ ],
+ "defaultCode": 61896,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "file-movie-o, file-video-o",
+ "id": 414,
+ "order": 1270,
+ "prevSize": 28,
+ "code": 61896
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 414
+ },
+ {
+ "icon": {
+ "paths": [
+ "M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM274.286 438.857c6.286-8 17.714-9.714 25.714-3.429l29.143 21.714c8 6.286 9.714 17.714 3.429 25.714l-104 138.857 104 138.857c6.286 8 4.571 19.429-3.429 25.714l-29.143 21.714c-8 6.286-19.429 4.571-25.714-3.429l-129.143-172c-4.571-6.286-4.571-15.429 0-21.714zM732.571 610.857c4.571 6.286 4.571 15.429 0 21.714l-129.143 172c-6.286 8-17.714 9.714-25.714 3.429l-29.143-21.714c-8-6.286-9.714-17.714-3.429-25.714l104-138.857-104-138.857c-6.286-8-4.571-19.429 3.429-25.714l29.143-21.714c8-6.286 19.429-4.571 25.714 3.429zM378.286 874.286c-10.286-1.714-16.571-11.429-14.857-21.143l78.857-474.857c1.714-10.286 11.429-16.571 21.143-14.857l36 5.714c10.286 1.714 16.571 11.429 14.857 21.143l-78.857 474.857c-1.714 10.286-11.429 16.571-21.143 14.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file-code-o"
+ ],
+ "defaultCode": 61897,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "file-code-o",
+ "id": 415,
+ "order": 1271,
+ "prevSize": 28,
+ "code": 61897
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 415
+ },
+ {
+ "icon": {
+ "paths": [
+ "M855.429 472.571v113.143c-40 9.143-80 13.143-113.143 13.143-80 168-223.429 312-271.429 338.857-30.286 17.143-58.857 18.286-92.571-1.714-58.857-35.429-281.714-218.286-356-793.143h161.714c40.571 345.143 140 522.286 249.143 654.857 60.571-60.571 118.857-141.143 164-232-108-54.857-173.714-175.429-173.714-316 0-142.286 81.714-249.714 221.714-249.714 136 0 210.286 84.571 210.286 230.286 0 54.286-11.429 116-33.143 163.429 0 0-100.571 20-137.714-44.571 7.429-24.571 17.714-66.857 17.714-105.143 0-68-24.571-101.143-61.714-101.143-39.429 0-66.857 37.143-66.857 108.571 0 145.714 92.571 229.143 212.571 229.143 21.143 0 45.143-2.286 69.143-8z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vine"
+ ],
+ "defaultCode": 61898,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "vine",
+ "id": 416,
+ "order": 1272,
+ "prevSize": 28,
+ "code": 61898
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 416
+ },
+ {
+ "icon": {
+ "paths": [
+ "M123.429 668l344.571 229.714v-205.143l-190.857-127.429zM88 585.714l110.286-73.714-110.286-73.714v147.429zM556 897.714l344.571-229.714-153.714-102.857-190.857 127.429v205.143zM512 616l155.429-104-155.429-104-155.429 104zM277.143 458.857l190.857-127.429v-205.143l-344.571 229.714zM825.714 512l110.286 73.714v-147.429zM746.857 458.857l153.714-102.857-344.571-229.714v205.143zM1024 356v312c0 14.286-7.429 28.571-19.429 36.571l-468 312c-7.429 4.571-16 7.429-24.571 7.429s-17.143-2.857-24.571-7.429l-468-312c-12-8-19.429-22.286-19.429-36.571v-312c0-14.286 7.429-28.571 19.429-36.571l468-312c7.429-4.571 16-7.429 24.571-7.429s17.143 2.857 24.571 7.429l468 312c12 8 19.429 22.286 19.429 36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "codepen"
+ ],
+ "defaultCode": 61899,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "codepen",
+ "id": 417,
+ "order": 1273,
+ "prevSize": 28,
+ "code": 61899
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 417
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1028.571 441.143c82.857 34.286 141.714 115.429 141.714 209.714 0 125.143-103.429 226.857-230.286 226.857-4.571 0-8.571-0.571-12.571-0.571h-695.429c-128-7.429-232-105.143-232-232 0-85.143 46.286-159.429 115.429-200-4.571-14.857-6.857-30.286-6.857-46.857 0-87.429 71.429-158.286 160.571-158.286 36.571 0 70.857 12.571 98.286 33.143 56-115.429 174.857-195.429 313.714-195.429 192.571 0 348 153.714 348 342.857 0 6.857-0.571 13.714-0.571 20.571zM267.429 593.143c0 96.571 76 150.857 166.857 150.857 56 0 96.571-17.714 137.143-56.571-16.571-20.571-34.857-40.571-52-61.143-23.429 22.857-49.143 37.143-82.286 37.143-40.571 0-75.429-26.857-75.429-69.143 0-41.714 34.857-69.143 74.286-69.143 125.714 0 152.571 219.429 335.429 219.429 89.143 0 164.571-56 164.571-149.714 0-94.857-76-150.286-166.286-150.286-56 0-97.714 16-137.714 55.429 18.286 20 35.429 41.143 53.143 61.714 22.857-22.286 48.571-36.571 81.143-36.571 37.714 0 75.429 26.857 75.429 66.857 0 44-32 72-74.857 72-121.714 0-154.286-219.429-332.571-219.429-88.571 0-166.857 54.286-166.857 148.571z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "jsfiddle"
+ ],
+ "defaultCode": 61900,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "jsfiddle",
+ "id": 418,
+ "order": 1274,
+ "prevSize": 28,
+ "code": 61900
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 418
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 0c282.857 0 512 229.143 512 512s-229.143 512-512 512-512-229.143-512-512 229.143-512 512-512zM512 73.143c-74.286 0-144.571 18.857-206.286 51.429l110.857 110.857c30.286-10.286 62.286-16 95.429-16 33.714 0 65.143 5.714 95.429 16l110.857-110.857c-61.714-32.571-132-51.429-206.286-51.429zM124.571 718.286l110.857-110.857c-10.286-30.286-16-62.286-16-95.429 0-33.714 5.714-65.143 16-95.429l-110.857-110.857c-32.571 61.714-51.429 132-51.429 206.286s18.857 144.571 51.429 206.286zM512 950.857c74.286 0 144.571-18.857 206.286-51.429l-110.857-110.857c-30.286 10.286-61.714 16-95.429 16-33.143 0-65.143-5.714-95.429-16l-110.857 110.857c61.714 32.571 132 51.429 206.286 51.429zM512 731.429c121.143 0 219.429-98.286 219.429-219.429s-98.286-219.429-219.429-219.429-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429zM788.571 607.429l110.857 110.857c32.571-61.714 51.429-132 51.429-206.286s-18.857-144.571-51.429-206.286l-110.857 110.857c10.286 30.286 16 62.286 16 95.429s-5.714 65.143-16 95.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "life-bouy",
+ "life-buoy",
+ "life-ring",
+ "life-saver",
+ "support"
+ ],
+ "defaultCode": 61901,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "life-bouy, life-buoy, life-ring, life-saver, support",
+ "id": 419,
+ "order": 1275,
+ "prevSize": 28,
+ "code": 61901
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 419
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1005.714 512c0 272.571-221.143 493.714-493.714 493.714s-493.714-221.143-493.714-493.714c0-248 182.857-453.143 420.571-488.571v130.286c-166.857 33.714-292.571 181.714-292.571 358.286 0 201.714 164 365.714 365.714 365.714s365.714-164 365.714-365.714c0-176.571-125.714-324.571-292.571-358.286v-130.286c237.714 35.429 420.571 240.571 420.571 488.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "circle-o-notch"
+ ],
+ "defaultCode": 61902,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "circle-o-notch",
+ "id": 420,
+ "order": 1276,
+ "prevSize": 28,
+ "code": 61902
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 420
+ },
+ {
+ "icon": {
+ "paths": [
+ "M10.857 499.429c5.714-163.429 89.143-314.286 240.571-413.714 0.571 0 4-1.143 2.286 1.714-12 11.429-229.714 268-29.143 467.429 102.857 102.286 185.714 5.143 185.714 5.143 79.429-103.429-1.143-260-1.143-260-20.571-51.429-94.286-82.857-94.286-82.857l59.429-65.714c50.286 21.714 89.143 80 89.143 80 1.714-61.143-45.143-126.857-45.143-126.857l92-104.571 91.429 103.429c-42.286 59.429-45.143 129.143-45.143 129.143 28.571-47.429 89.714-81.143 89.714-81.143l58.857 65.714c-56.571 18.286-93.714 82.286-93.714 82.286-32.571 58.857-56 184.571 1.143 262.857 66.857 92 181.143-5.714 181.143-5.714 212-189.714-21.714-464.571-21.714-464.571-12.571-11.429 1.714-5.714 1.714-5.714 103.429 75.429 236.571 174.286 240 422.857 4 300.571-206.286 514.857-500.571 514.857-287.429 0-510.857-240-502.286-524.571z"
+ ],
+ "width": 1019.9771428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ra",
+ "rebel",
+ "resistance"
+ ],
+ "defaultCode": 61904,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "ra, rebel, resistance",
+ "id": 421,
+ "order": 1277,
+ "prevSize": 28,
+ "code": 61904
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 421
+ },
+ {
+ "icon": {
+ "paths": [
+ "M499.429 936v37.714c-161.143-4.571-302.286-91.429-381.714-220l33.143-19.429c12 20 26.286 38.857 41.714 56.571l37.143-32.571c53.714 61.143 126.857 104.571 210.286 121.143l-9.714 49.143c22.286 4 45.714 6.857 69.143 7.429zM157.714 633.143l-47.429 16c8 22.286 17.143 43.429 28 64l-32.571 18.857c-35.429-65.143-56-140.571-56-220s20.571-154.857 56-220l32.571 18.857c-10.857 20-20.571 41.714-28 64l46.857 16c-13.143 37.714-20 78.857-20 121.143s7.429 83.429 20.571 121.143zM873.143 734.286l33.143 19.429c-79.429 128.571-220.571 215.429-381.714 220v-37.714c23.429-0.571 46.857-3.429 69.143-7.429l-9.714-49.143c83.429-16.571 156.571-60 210.286-121.143l37.143 32.571c15.429-17.714 29.714-36.571 41.714-56.571zM786.857 417.714l-133.143 45.714c5.143 15.429 8 31.429 8 48.571s-2.857 33.143-8 48.571l132.571 45.714c-12 36-31.429 68.571-56 96.571l-105.714-92.571c-21.143 24.571-50.286 41.714-84 48.571l27.429 137.714c-17.714 3.429-36.571 5.714-56 5.714s-38.286-2.286-56-5.714l27.429-137.714c-33.714-6.857-62.857-24-84-48.571l-105.714 92.571c-24.571-28-44-60.571-56-96.571l132.571-45.714c-5.143-15.429-8-31.429-8-48.571s2.857-33.143 8-48.571l-133.143-45.714c12.571-36 32-68.571 56.571-96.571l105.714 92.571c21.143-24.571 50.286-42.286 84-49.143l-27.429-137.143c17.714-4 36.571-5.714 56-5.714s38.286 1.714 56 5.714l-27.429 137.143c33.714 6.857 62.857 24.571 84 49.143l105.714-92.571c24.571 28 44 60.571 56.571 96.571zM499.429 50.286v37.714c-23.429 0.571-46.857 2.857-69.143 7.429l9.714 49.143c-83.429 16-156.571 59.429-210.286 120.571l-37.143-32c-15.429 17.143-29.143 36-41.714 56l-32.571-18.857c79.429-129.143 220-215.429 381.143-220v0zM974.286 512c0 79.429-20.571 154.857-56 220l-32.571-18.857c10.857-20.571 20-41.714 28-64l-47.429-16c13.143-37.714 20.571-78.857 20.571-121.143s-6.857-83.429-20-121.143l46.857-16c-7.429-22.286-17.143-44-28-64l32.571-18.857c35.429 65.143 56 140.571 56 220zM905.714 270.286l-32.571 18.857c-12.571-20-26.286-38.857-41.714-56l-37.143 32c-53.714-61.143-126.857-104.571-210.286-120.571l9.714-49.143c-22.286-4.571-45.714-6.857-69.143-7.429v-37.714c161.143 4.571 301.714 90.857 381.143 220zM998.857 512c0-268.571-218.286-486.857-486.857-486.857v0c-268.571 0-486.857 218.286-486.857 486.857s218.286 486.857 486.857 486.857 486.857-218.286 486.857-486.857zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512v0c282.857 0 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "empire",
+ "ge"
+ ],
+ "defaultCode": 61905,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "empire, ge",
+ "id": 422,
+ "order": 1278,
+ "prevSize": 28,
+ "code": 61905
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 422
+ },
+ {
+ "icon": {
+ "paths": [
+ "M332.571 747.429c0 30.857-28 37.714-53.143 37.714-24.571 0-61.143-4-61.143-36 0-31.429 30.857-36.571 56-36.571 24 0 58.286 4 58.286 34.857zM312 481.143c0 28.571-11.429 48.571-42.286 48.571-31.429 0-44-18.286-44-48s11.429-51.429 44-51.429c29.143 0 42.286 24 42.286 50.857zM406.857 438.286v-71.429c-24.571 9.143-50.857 16.571-77.143 16.571-18.857-10.857-40.571-16.571-62.857-16.571-65.143 0-116.571 48-116.571 114.286 0 35.429 23.429 84.571 58.857 96.571v1.714c-18.286 8-21.714 30.286-21.714 48.571 0 18.857 6.857 34.286 23.429 44v1.714c-38.857 12.571-64.571 37.143-64.571 79.429 0 72.571 69.143 93.143 129.714 93.143 73.143 0 128-26.857 128-107.429 0-57.143-52-74.286-99.429-82.857-16-2.857-43.429-14.286-43.429-34.286 0-18.857 10.286-26.857 28-29.714 58.286-11.429 95.429-56.571 95.429-116.571 0-10.286-2.286-20-5.714-29.714 9.143-2.286 18.857-4.571 28-7.429zM440.571 677.714h78.286c-1.143-15.429-1.143-31.429-1.143-46.857v-221.143c0-13.143 0-26.286 1.143-39.429h-78.286c1.714 13.143 1.714 27.429 1.714 40.571v224c0 14.286 0 28.571-1.714 42.857zM731.429 668.571v-69.143c-11.429 8-25.143 12-38.857 12-25.714 0-30.286-25.714-30.286-46.857v-128.571h29.714c10.286 0 20 1.143 30.286 1.143v-66.857h-60c0-19.429-1.143-38.857 1.714-58.286h-80c1.714 10.286 2.286 20.571 2.286 31.429v26.857h-34.286v66.857c6.857-0.571 13.714-1.714 21.143-1.714 4 0 8.571 0.571 13.143 0.571v1.143h-1.143v124c0 61.714 9.143 121.143 84.571 121.143 21.143 0 42.857-3.429 61.714-13.714zM528 265.143c0-26.857-20-52-48-52s-48.571 24.571-48.571 52c0 26.857 21.143 50.857 48.571 50.857s48-24.571 48-50.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "git-square"
+ ],
+ "defaultCode": 61906,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "git-square",
+ "id": 423,
+ "order": 1279,
+ "prevSize": 28,
+ "code": 61906
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 423
+ },
+ {
+ "icon": {
+ "paths": [
+ "M340 865.143c0-50.286-55.429-57.143-94.286-57.143-40.571 0-90.286 8.571-90.286 59.429 0 51.429 58.857 57.714 98.286 57.714 41.714 0 86.286-10.286 86.286-60zM306.286 433.714c0-42.857-20.571-81.714-68-81.714-52.571 0-70.857 34.857-70.857 82.857 0 47.429 20.571 77.143 70.857 77.143 49.714 0 68-32 68-78.286zM460 248.571v115.429c-14.857 5.143-29.714 9.143-45.143 12.571 5.714 15.429 9.143 31.429 9.143 48 0 96.571-59.429 170.286-154.286 188-28.571 5.714-45.143 17.714-45.143 48.571 0 87.429 230.857 28 230.857 189.143 0 130.857-88.571 173.714-207.429 173.714-97.714 0-209.143-32.571-209.143-150.286 0-68.571 41.714-108 104-128.571v-2.286c-26.286-16-38.286-41.143-38.286-72 0-29.143 6.286-65.143 36-78.286v-2.286c-57.714-19.429-95.429-98.857-95.429-156.571 0-106.857 82.857-185.143 188.571-185.143 35.429 0 70.857 9.143 101.714 26.857 42.857 0 85.143-11.429 124.571-26.857zM641.714 752h-126.857c2.286-25.714 2.286-50.857 2.286-76.571v-348c0-24.571 0.571-49.143-2.286-73.143h126.857c-2.857 23.429-2.286 47.429-2.286 70.857v350.286c0 25.714 0 50.857 2.286 76.571zM985.143 625.143v112c-30.286 16.571-65.143 22.286-99.429 22.286-122.286 0-136.571-96.571-136.571-196v-200.571h1.143v-2.286c-7.429 0-14.286-1.143-21.143-1.143-11.429 0-22.857 1.714-33.714 3.429v-108.571h54.857v-43.429c0-17.143-0.571-34.286-3.429-50.857h129.714c-4.571 31.429-3.429 62.857-3.429 94.286h97.714v108.571c-16.571 0-33.143-2.286-49.143-2.286h-48.571v208.571c0 33.714 7.429 74.857 49.714 74.857 22.286 0 44-6.286 62.286-18.857zM656 84c0 42.857-33.143 82.857-77.143 82.857-45.143 0-78.857-39.429-78.857-82.857 0-44 33.143-84 78.857-84 45.143 0 77.143 41.143 77.143 84z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "git"
+ ],
+ "defaultCode": 61907,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "git",
+ "id": 424,
+ "order": 1280,
+ "prevSize": 28,
+ "code": 61907
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 424
+ },
+ {
+ "icon": {
+ "paths": [
+ "M462.286 573.714l152-285.143h-64l-89.714 178.286s-13.714 27.429-25.143 52.571c-10.857-26.286-24-52.571-24-52.571l-88.571-178.286h-68.571l150.286 281.714v185.143h57.714v-181.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hacker-news",
+ "y-combinator-square",
+ "yc-square"
+ ],
+ "defaultCode": 61908,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hacker-news, y-combinator-square, yc-square",
+ "id": 425,
+ "order": 1281,
+ "prevSize": 28,
+ "code": 61908
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 425
+ },
+ {
+ "icon": {
+ "paths": [
+ "M481.143 326.857c0 60.571-49.714 110.286-110.286 110.286-23.429 0-45.143-7.429-63.429-20-20.571 22.286-43.429 50.286-65.714 83.429-93.143 140-132.571 305.143-115.429 490.857 1.143 16.571-10.857 30.857-26.857 32.571h-2.857c-14.857 0-28-11.429-29.714-26.857-22.286-250.286 57.143-427.429 127.429-532 25.714-38.286 51.429-69.143 75.429-94.286-6.286-13.714-9.143-28.571-9.143-44 0-61.143 49.143-110.286 110.286-110.286 60.571 0 110.286 49.143 110.286 110.286zM698.857 333.143c0 183.429-149.143 332.571-333.143 332.571-25.143 0-50.286-2.857-74.857-8-16-4-25.714-20-22.286-36 4-15.429 19.429-25.714 35.429-22.286 20 5.143 41.143 7.429 61.714 7.429 150.857 0 273.714-122.857 273.714-273.714s-122.857-273.714-273.714-273.714-273.714 122.857-273.714 273.714c0 44 10.286 85.714 29.714 124.571 7.429 14.857 1.714 32.571-12.571 40-14.857 7.429-32.571 1.714-40-13.143-24-46.286-36.571-98.857-36.571-151.429 0-184 149.714-333.143 333.143-333.143 184 0 333.143 149.143 333.143 333.143z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tencent-weibo"
+ ],
+ "defaultCode": 61909,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "tencent-weibo",
+ "id": 426,
+ "order": 1282,
+ "prevSize": 28,
+ "code": 61909
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 426
+ },
+ {
+ "icon": {
+ "paths": [
+ "M154.286 460.571c-4-9.714-4.571-19.429-4.571-29.714 0-16 10.286-41.714 20-53.714-0.571-14.857 5.714-45.143 17.143-54.857 0-105.714 81.714-238.857 177.143-284.571 58.857-28 120.571-37.714 185.143-37.714 50.286 0 105.143 12 152 31.429 134.286 56.571 164.571 161.714 193.143 296l0.571 2.857c16.571 25.143 31.429 54.857 31.429 85.714 0 15.429-10.286 30.857-10.286 44.571 0 1.143 3.429 5.714 4 6.857 49.143 72.571 93.714 151.429 93.714 241.714 0 20-10.857 89.714-42.857 89.714-22.286 0-46.857-54.286-54.857-69.143-0.571-0.571-1.143-0.571-1.714-0.571l-2.857 2.286c-18.286 47.429-38.286 92-75.429 127.429 32.571 31.429 85.143 28.571 94.857 82.857-2.857 6.286-1.714 13.143-6.286 19.429-32.571 49.143-120 55.429-172.571 55.429-69.714 0-126.286-18.286-192-37.714-13.714-4-34.286-1.714-49.143-3.429-34.857 38.286-120 48.571-169.143 48.571-43.429 0-211.429-2.857-211.429-77.143 0-32 6.857-41.143 29.143-61.714 17.714-3.429 30.857-13.143 51.429-14.286 2.857 0 5.143-0.571 8-1.143 0.571-0.571 1.143-0.571 1.143-2.286l-1.143-1.714c-39.429-9.143-94.857-108.571-103.429-149.714l-2.857-1.714c-4 0-5.714 8.571-6.857 11.429-12.571 29.143-42.286 60.571-75.429 64h-0.571c-4.571 0-2.857-4.571-6.286-5.714-8-18.857-13.143-36-13.143-57.143 0-114.286 54.857-198.857 144-266.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "qq"
+ ],
+ "defaultCode": 61910,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "qq",
+ "id": 427,
+ "order": 1283,
+ "prevSize": 28,
+ "code": 61910
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 427
+ },
+ {
+ "icon": {
+ "paths": [
+ "M331.429 263.429c0-31.429-20.571-52-52-52-30.857 0-62.286 20.571-62.286 52 0 30.857 31.429 51.429 62.286 51.429 31.429 0 52-20.571 52-51.429zM756 553.143c0-20.571-20.571-41.143-52-41.143-20.571 0-41.143 20.571-41.143 41.143 0 21.143 20.571 41.714 41.143 41.714 31.429 0 52-20.571 52-41.714zM621.143 263.429c0-31.429-20.571-52-51.429-52-31.429 0-62.286 20.571-62.286 52 0 30.857 30.857 51.429 62.286 51.429 30.857 0 51.429-20.571 51.429-51.429zM984 553.143c0-20.571-21.143-41.143-52-41.143-20.571 0-41.143 20.571-41.143 41.143 0 21.143 20.571 41.714 41.143 41.714 30.857 0 52-20.571 52-41.714zM832 326.286c-13.143-1.714-26.286-2.286-40-2.286-196.571 0-352 146.857-352 327.429 0 30.286 4.571 59.429 13.143 86.857-13.143 1.143-25.714 1.714-38.857 1.714-52 0-93.143-10.286-145.143-20.571l-144.571 72.571 41.143-124.571c-103.429-72.571-165.714-166.286-165.714-280 0-197.143 186.286-352 414.286-352 203.429 0 382.286 124 417.714 290.857zM1170.286 646.857c0 93.143-61.714 176-145.143 238.286l31.429 103.429-113.714-62.286c-41.714 10.286-83.429 21.143-124.571 21.143-197.143 0-352-134.857-352-300.571s154.857-300.571 352-300.571c186.286 0 352 134.857 352 300.571z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wechat",
+ "weixin"
+ ],
+ "defaultCode": 61911,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "wechat, weixin",
+ "id": 428,
+ "order": 1284,
+ "prevSize": 28,
+ "code": 61911
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 428
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1008 6.286c12 8.571 17.714 22.286 15.429 36.571l-146.286 877.714c-1.714 10.857-8.571 20-18.286 25.714-5.143 2.857-11.429 4.571-17.714 4.571-4.571 0-9.143-1.143-13.714-2.857l-258.857-105.714-138.286 168.571c-6.857 8.571-17.143 13.143-28 13.143-4 0-8.571-0.571-12.571-2.286-14.286-5.143-24-18.857-24-34.286v-199.429l493.714-605.143-610.857 528.571-225.714-92.571c-13.143-5.143-21.714-17.143-22.857-31.429-0.571-13.714 6.286-26.857 18.286-33.714l950.857-548.571c5.714-3.429 12-5.143 18.286-5.143 7.429 0 14.857 2.286 20.571 6.286z"
+ ],
+ "width": 1025.1702857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paper-plane",
+ "send"
+ ],
+ "defaultCode": 61912,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "paper-plane, send",
+ "id": 429,
+ "order": 1285,
+ "prevSize": 28,
+ "code": 61912
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 429
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1008 6.286c12 8.571 17.714 22.286 15.429 36.571l-146.286 877.714c-1.714 10.857-8.571 20-18.286 25.714-5.143 2.857-11.429 4.571-17.714 4.571-4.571 0-9.143-1.143-13.714-2.857l-301.143-122.857-170.286 186.857c-6.857 8-16.571 12-26.857 12-4.571 0-9.143-0.571-13.143-2.286-14.286-5.714-23.429-19.429-23.429-34.286v-258.286l-269.714-110.286c-13.143-5.143-21.714-17.143-22.857-31.429-1.143-13.714 6.286-26.857 18.286-33.714l950.857-548.571c12-7.429 27.429-6.857 38.857 1.143zM812.571 862.857l126.286-756-819.429 472.571 192 78.286 493.143-365.143-273.143 455.429z"
+ ],
+ "width": 1024.5851428571427,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paper-plane-o",
+ "send-o"
+ ],
+ "defaultCode": 61913,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "paper-plane-o, send-o",
+ "id": 430,
+ "order": 1286,
+ "prevSize": 28,
+ "code": 61913
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 430
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 512c0 241.714-197.143 438.857-438.857 438.857-130.857 0-254.286-57.714-337.714-158.286-5.714-7.429-5.143-18.286 1.143-24.571l78.286-78.857c4-3.429 9.143-5.143 14.286-5.143 5.143 0.571 10.286 2.857 13.143 6.857 56 72.571 140 113.714 230.857 113.714 161.143 0 292.571-131.429 292.571-292.571s-131.429-292.571-292.571-292.571c-74.857 0-145.714 28.571-198.857 78.286l78.286 78.857c10.857 10.286 13.714 26.286 8 39.429-5.714 13.714-18.857 22.857-33.714 22.857h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-14.857 9.143-28 22.857-33.714 13.143-5.714 29.143-2.857 39.429 8l74.286 73.714c80.571-76 189.714-121.143 302.286-121.143 241.714 0 438.857 197.143 438.857 438.857zM512 347.429v256c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-201.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "history"
+ ],
+ "defaultCode": 61914,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "history",
+ "id": 431,
+ "order": 1287,
+ "prevSize": 28,
+ "code": 61914
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 431
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 146.286c-201.714 0-365.714 164-365.714 365.714s164 365.714 365.714 365.714 365.714-164 365.714-365.714-164-365.714-365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "circle-thin"
+ ],
+ "defaultCode": 61915,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "circle-thin",
+ "id": 432,
+ "order": 1288,
+ "prevSize": 28,
+ "code": 61915
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 432
+ },
+ {
+ "icon": {
+ "paths": [
+ "M961.143 950.857c-50.286 0-101.143-4-152-4-50.286 0-100.571 4-150.857 4-19.429 0-28.571-21.143-28.571-37.714 0-50.857 57.143-29.143 86.857-48.571 18.857-12 18.857-60 18.857-80l-0.571-223.429c0-6.286 0-12-0.571-17.714-9.143-2.857-19.429-2.286-28.571-2.286h-385.714c-9.714 0-20-0.571-29.143 2.286-0.571 5.714-0.571 11.429-0.571 17.714l-0.571 212c0 21.714 0 81.143 21.143 93.714 29.714 18.286 97.143-7.429 97.143 44 0 17.143-8 40-28 40-53.143 0-106.286-4-158.857-4-48.571 0-97.143 4-145.714 4-18.857 0-27.429-21.714-27.429-37.714 0-49.714 52.571-29.143 80.571-48.571 18.286-12.571 18.857-61.714 18.857-81.714l-0.571-32.571v-464.571c0-27.429 4-115.429-21.714-130.857-28.571-17.714-89.714 9.714-89.714-41.714 0-16.571 7.429-40 27.429-40 52.571 0 105.714 4 158.286 4 48 0 96.571-4 144.571-4 20.571 0 28.571 22.857 28.571 40 0 49.143-56.571 25.143-84.571 42.857-20 12-20 70.857-20 91.429l0.571 182.857c0 6.286 0 12 0.571 18.286 7.429 1.714 14.857 1.714 22.286 1.714h399.429c6.857 0 14.286 0 21.714-1.714 0.571-6.286 0.571-12 0.571-18.286l0.571-182.857c0-21.143 0-79.429-20-91.429-28.571-17.143-85.714 5.714-85.714-42.857 0-17.143 8-40 28.571-40 50.286 0 100.571 4 150.857 4 49.143 0 98.286-4 147.429-4 20.571 0 28.571 22.857 28.571 40 0 49.714-58.857 24.571-87.429 42.286-19.429 12.571-20 71.429-20 92l0.571 538.857c0 18.857 1.143 68.571 19.429 80 29.143 18.286 90.857-5.143 90.857 44.571 0 16.571-7.429 40-27.429 40z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "header"
+ ],
+ "defaultCode": 61916,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "header",
+ "id": 433,
+ "order": 1289,
+ "prevSize": 28,
+ "code": 61916
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 433
+ },
+ {
+ "icon": {
+ "paths": [
+ "M730.286 108v41.714c0 19.429-15.429 53.143-34.857 53.143-9.714 0-21.143-1.714-30.857 0.571-9.143 2.286-16 8.571-18.286 17.714-2.857 10.857-1.714 24.571-1.714 36.571v658.286c0 19.429-15.429 34.857-34.857 34.857h-61.714c-19.429 0-34.857-15.429-34.857-34.857v-696h-81.714v696c0 19.429-15.429 34.857-34.857 34.857h-61.714c-19.429 0-34.857-15.429-34.857-34.857v-283.429c-55.429-4.571-102.857-16-140-33.714-48-22.286-84.571-56.571-109.714-102.286-24-44-36.571-93.714-36.571-148 0-63.429 17.143-118.286 50.286-163.429 33.714-45.143 73.714-75.429 119.429-90.857 42.857-14.286 133.143-21.143 238.286-21.143h273.714c19.429 0 34.857 15.429 34.857 34.857z"
+ ],
+ "width": 744.0091428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paragraph"
+ ],
+ "defaultCode": 61917,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "paragraph",
+ "id": 434,
+ "order": 1290,
+ "prevSize": 28,
+ "code": 61917
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 434
+ },
+ {
+ "icon": {
+ "paths": [
+ "M201.143 804.571v73.143h-201.143v-73.143h201.143zM402.286 731.429c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h146.286zM493.714 512v73.143h-493.714v-73.143h493.714zM128 219.429v73.143h-128v-73.143h128zM877.714 804.571v73.143h-420.571v-73.143h420.571zM329.143 146.286c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h146.286zM694.857 438.857c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h146.286zM877.714 512v73.143h-128v-73.143h128zM877.714 219.429v73.143h-493.714v-73.143h493.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sliders"
+ ],
+ "defaultCode": 61918,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sliders",
+ "id": 435,
+ "order": 1291,
+ "prevSize": 28,
+ "code": 61918
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 435
+ },
+ {
+ "icon": {
+ "paths": [
+ "M694.857 585.143c101.143 0 182.857 81.714 182.857 182.857s-81.714 182.857-182.857 182.857-182.857-81.714-182.857-182.857c0-6.286 0.571-13.143 1.143-19.429l-205.714-102.857c-32.571 30.286-76.571 49.143-124.571 49.143-101.143 0-182.857-81.714-182.857-182.857s81.714-182.857 182.857-182.857c48 0 92 18.857 124.571 49.143l205.714-102.857c-0.571-6.286-1.143-13.143-1.143-19.429 0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857-81.714 182.857-182.857 182.857c-48 0-92-18.857-124.571-49.143l-205.714 102.857c0.571 6.286 1.143 13.143 1.143 19.429s-0.571 13.143-1.143 19.429l205.714 102.857c32.571-30.286 76.571-49.143 124.571-49.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "share-alt"
+ ],
+ "defaultCode": 61920,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "share-alt",
+ "id": 436,
+ "order": 1292,
+ "prevSize": 28,
+ "code": 61920
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 436
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 682.857c0-67.429-54.857-122.286-121.714-122.286-32 0-61.143 12.571-82.857 33.143l-137.714-68.571c0.571-4.571 1.143-8.571 1.143-13.143s-0.571-8.571-1.143-13.143l137.714-68.571c21.714 20.571 50.857 33.143 82.857 33.143 66.857 0 121.714-54.857 121.714-122.286 0-66.857-54.857-121.714-121.714-121.714-67.429 0-122.286 54.857-122.286 121.714 0 4.571 0.571 8.571 1.143 13.143l-137.714 68.571c-21.714-20-50.857-32.571-82.857-32.571-66.857 0-121.714 54.286-121.714 121.714s54.857 121.714 121.714 121.714c32 0 61.143-12.571 82.857-32.571l137.714 68.571c-0.571 4.571-1.143 8.571-1.143 13.143 0 66.857 54.857 121.714 122.286 121.714 66.857 0 121.714-54.857 121.714-121.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "share-alt-square"
+ ],
+ "defaultCode": 61921,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "share-alt-square",
+ "id": 437,
+ "order": 1293,
+ "prevSize": 28,
+ "code": 61921
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 437
+ },
+ {
+ "icon": {
+ "paths": [
+ "M326.286 336.571c-7.429-18.857-28.571-27.429-47.429-20-82.286 33.143-148.571 99.429-181.714 181.714-7.429 18.857 1.143 40 20 47.429 4.571 1.714 9.143 2.857 13.714 2.857 14.857 0 28-8.571 34.286-22.857 25.714-64 77.143-115.429 141.143-141.143 18.857-8 28-29.143 20-48zM864.571 133.143l26.286 26.286-139.429 138.857 38.857 38.857c14.286 14.286 14.286 37.714 0 52l-36.571 36.571c32 57.714 50.857 124.571 50.857 196 0 222.286-180 402.286-402.286 402.286s-402.286-180-402.286-402.286 180-402.286 402.286-402.286c71.429 0 138.286 18.857 196 50.857l36.571-36.571c14.286-14.286 37.714-14.286 52 0l38.857 38.857zM869.143 101.143c-3.429 3.429-8 5.714-12.571 5.714-5.143 0-9.714-2.286-13.143-5.714l-52-51.429c-6.857-7.429-6.857-18.857 0-26.286 7.429-6.857 18.857-6.857 26.286 0l51.429 52c7.429 6.857 7.429 18.857 0 25.714zM1000.571 232.571c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-51.429-52c-7.429-6.857-7.429-18.857 0-25.714 6.857-7.429 18.857-7.429 25.714 0l52 51.429c6.857 7.429 6.857 18.857 0 26.286zM1024 128c0 10.286-8 18.286-18.286 18.286h-54.857c-10.286 0-18.286-8-18.286-18.286s8-18.286 18.286-18.286h54.857c10.286 0 18.286 8 18.286 18.286zM914.286 18.286v54.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286v-54.857c0-10.286 8-18.286 18.286-18.286s18.286 8 18.286 18.286zM1000.571 49.714l-52 51.429c-3.429 3.429-8 5.714-12.571 5.714-5.143 0-9.714-2.286-13.143-5.714-7.429-6.857-7.429-18.857 0-25.714l51.429-52c7.429-6.857 18.857-6.857 26.286 0 6.857 7.429 6.857 18.857 0 26.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bomb"
+ ],
+ "defaultCode": 61922,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bomb",
+ "id": 438,
+ "order": 1294,
+ "prevSize": 28,
+ "code": 61922
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 438
+ },
+ {
+ "icon": {
+ "paths": [
+ "M348 466.286l164-118.857 164 118.857-62.286 192h-202.857zM512 0c282.857 0 512 229.143 512 512s-229.143 512-512 512-512-229.143-512-512 229.143-512 512-512zM865.714 771.429c53.714-73.143 85.143-162.286 85.143-259.429v-1.714l-58.286 50.857-137.143-128 36-184.571 76.571 6.857c-54.286-74.857-132-132.571-222.286-161.143l30.286 70.857-164 90.857-164-90.857 30.286-70.857c-90.286 28.571-168 86.286-222.286 161.143l77.143-6.857 35.429 184.571-137.143 128-58.286-50.857v1.714c0 97.143 31.429 186.286 85.143 259.429l17.143-75.429 186.286 22.857 79.429 170.286-66.286 39.429c42.857 14.286 89.143 22.286 137.143 22.286s94.286-8 137.143-22.286l-66.286-39.429 79.429-170.286 186.286-22.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "futbol-o",
+ "soccer-ball-o"
+ ],
+ "defaultCode": 61923,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "futbol-o, soccer-ball-o",
+ "id": 439,
+ "order": 1295,
+ "prevSize": 28,
+ "code": 61923
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 439
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM146.286 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM475.429 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM365.714 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM37.714 438.857c-21.143 0-37.714-16.571-37.714-37.143v-73.714h293.714v73.714c0 20.571-16.571 37.143-37.143 37.143h-218.857zM694.857 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM585.143 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM914.286 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM804.571 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 297.143v7.429h-293.714v-5.714c0-21.143-18.286-59.429-218.286-58.286-200 0.571-218.286 37.143-218.286 58.286v5.714h-293.714v-7.429c0-38.286 68.571-224 512-224 442.857 0 512 185.714 512 224zM1024 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 328v73.714c0 20.571-16.571 37.143-37.143 37.143h-219.429c-20.571 0-37.143-16.571-37.143-37.143v-73.714h293.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tty"
+ ],
+ "defaultCode": 61924,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "tty",
+ "id": 440,
+ "order": 1296,
+ "prevSize": 28,
+ "code": 61924
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 440
+ },
+ {
+ "icon": {
+ "paths": [
+ "M402.286 182.857v438.857c0 20-16.571 36.571-36.571 36.571v0 329.143c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-292.571l142.286-498.857c2.286-8 9.714-13.143 17.714-13.143h242.286zM585.143 182.857v402.286h-146.286v-402.286h146.286zM1024 694.857v292.571c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-329.143c-20 0-36.571-16.571-36.571-36.571v-438.857h242.286c8 0 15.429 5.143 17.714 13.143zM420.571 18.286v128h-201.143v-128c0-10.286 8-18.286 18.286-18.286h164.571c10.286 0 18.286 8 18.286 18.286zM804.571 18.286v128h-201.143v-128c0-10.286 8-18.286 18.286-18.286h164.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "binoculars"
+ ],
+ "defaultCode": 61925,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "binoculars",
+ "id": 441,
+ "order": 1297,
+ "prevSize": 28,
+ "code": 61925
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 441
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1002.857 258.857c28 28.571 28 74.857 0 103.429l-229.143 228.571 85.714 85.714-91.429 91.429c-125.143 125.143-316 142.857-457.714 49.143l-206.857 206.857h-103.429v-103.429l206.857-206.857c-93.714-141.714-76-332.571 49.143-457.714l91.429-91.429 85.714 85.714 228.571-229.143c28.571-28 74.857-28 103.429 0 28.571 28.571 28.571 75.429 0 103.429l-228.571 229.143 133.714 133.714 229.143-228.571c28.571-28.571 74.857-28.571 103.429 0z"
+ ],
+ "width": 1030.8754285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plug"
+ ],
+ "defaultCode": 61926,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "plug",
+ "id": 442,
+ "order": 1298,
+ "prevSize": 28,
+ "code": 61926
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 442
+ },
+ {
+ "icon": {
+ "paths": [
+ "M498.857 422.857c0 63.429-55.429 115.429-123.429 115.429s-123.429-52-123.429-115.429c0-64 55.429-115.429 123.429-115.429s123.429 51.429 123.429 115.429zM785.714 422.857c0 63.429-54.857 115.429-123.429 115.429-68 0-123.429-52-123.429-115.429 0-64 55.429-115.429 123.429-115.429 68.571 0 123.429 51.429 123.429 115.429zM914.286 525.714v-381.143c0-65.714-21.143-91.429-81.714-91.429h-635.429c-63.429 0-81.143 21.714-81.143 91.429v384.571c135.429 70.857 251.429 58.286 314.857 56 26.857-0.571 44 4.571 54.286 15.429 1.714 1.714 3.429 3.429 5.714 5.143 12 11.429 23.429 20.571 34.857 29.143 2.286-31.429 20-51.429 67.429-49.714 64.571 2.857 183.429 15.429 321.143-59.429zM1007.429 522.857c-36.571 45.143-106.286 100.571-212.571 144 112.571 383.429-274.857 444.571-268.571 248 0 3.429-0.571-105.714-0.571-186.857-8.571-1.714-17.143-4-27.429-6.286 0 81.714-0.571 196.571-0.571 193.143 6.286 196.571-381.143 135.429-268.571-248-106.286-43.429-176-98.857-212.571-144-18.286-27.429 1.714-56.571 32-35.429 4 2.857 8.571 5.714 12.571 8.571v-396.571c0-54.857 41.143-99.429 92-99.429h718.286c50.857 0 92 44.571 92 99.429v396.571l12-8.571c30.286-21.143 50.286 8 32 35.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "slideshare"
+ ],
+ "defaultCode": 61927,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "slideshare",
+ "id": 443,
+ "order": 1299,
+ "prevSize": 28,
+ "code": 61927
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 443
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 248v248h-82.857v-248h82.857zM739.429 248v248h-82.857v-248h82.857zM739.429 682.286l144.571-145.143v-454.286h-682.286v599.429h186.286v124l124-124h227.429zM966.857 0v578.857l-248 248h-186.286l-124 124h-124v-124h-227.429v-661.714l62.286-165.143h847.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "twitch"
+ ],
+ "defaultCode": 61928,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "twitch",
+ "id": 444,
+ "order": 1300,
+ "prevSize": 28,
+ "code": 61928
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 444
+ },
+ {
+ "icon": {
+ "paths": [
+ "M441.714 753.714v72.571c-0.571 161.143-0.571 166.857-3.429 174.286-4.571 12-14.857 20-29.143 22.857-41.143 6.857-169.714-40.571-196.571-72.571-5.714-6.286-8.571-13.714-9.714-20.571-0.571-5.143 0.571-10.286 2.286-14.857 2.857-8 8-14.286 122.857-150.286 0 0 0.571 0 34.286-40 11.429-14.286 32-18.857 50.857-12 18.857 7.429 29.143 23.429 28.571 40.571zM356.571 610.286c-1.143 20-12.571 34.857-29.714 40l-68.571 22.286c-153.714 49.143-158.857 50.286-166.857 50.286-12.571-0.571-24-8-30.857-20.571-4.571-9.143-8-24.571-9.714-42.857-6.286-56 1.143-140 17.714-166.286 8-12.571 19.429-18.857 32-18.286 8.571 0 15.429 3.429 181.143 70.857 0 0-0.571 0.571 48 19.429 17.143 6.857 28 24.571 26.857 45.143zM828.571 780c-5.714 41.143-90.857 149.143-129.714 164.571-13.143 5.143-26.286 4-36-4-6.857-5.143-13.714-15.429-105.143-164l-26.857-44c-10.286-16-8.571-36.571 4.571-52.571 12.571-15.429 30.857-20.571 47.429-14.857 0 0 0.571 0.571 68 22.857 153.714 50.286 158.857 52 165.143 57.143 10.286 8 14.857 20 12.571 34.857zM444.571 418.857c2.857 59.429-22.286 66.857-30.857 69.714-8 2.286-33.143 9.714-65.143-40.571-210.286-332-216-341.714-216-341.714-2.857-12 0.571-25.143 10.857-35.429 31.429-32.571 202.286-80.571 246.857-69.143 14.286 3.429 24.571 12.571 28 25.714 2.286 14.286 22.857 322.286 26.286 391.429zM822.857 480.571c1.143 14.286-4 26.286-14.857 33.714-6.857 4.571-13.714 6.857-188 49.143-28 6.286-43.429 10.286-52 13.143l0.571-1.143c-17.143 4.571-36.571-3.429-47.429-20.571s-10.286-36 0-49.714c0 0 0.571-0.571 42.857-58.286 93.714-128 98.286-134.286 105.143-138.857 10.857-7.429 24-7.429 37.143-1.143 37.143 17.714 112 129.143 116.571 172v1.714z"
+ ],
+ "width": 875.4468571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "yelp"
+ ],
+ "defaultCode": 61929,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "yelp",
+ "id": 445,
+ "order": 1301,
+ "prevSize": 28,
+ "code": 61929
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 445
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 292.571h-219.429v219.429h219.429v-219.429zM658.286 658.286v73.143h-365.714v-73.143h365.714zM658.286 219.429v365.714h-365.714v-365.714h365.714zM1024 658.286v73.143h-292.571v-73.143h292.571zM1024 512v73.143h-292.571v-73.143h292.571zM1024 365.714v73.143h-292.571v-73.143h292.571zM1024 219.429v73.143h-292.571v-73.143h292.571zM146.286 768v-548.571h-73.143v548.571c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571zM1097.143 768v-621.714h-877.714v621.714c0 12.571-2.286 25.143-6.286 36.571h847.429c20 0 36.571-16.571 36.571-36.571zM1170.286 73.143v694.857c0 60.571-49.143 109.714-109.714 109.714h-950.857c-60.571 0-109.714-49.143-109.714-109.714v-621.714h146.286v-73.143h1024z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "newspaper-o"
+ ],
+ "defaultCode": 61930,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "newspaper-o",
+ "id": 446,
+ "order": 1302,
+ "prevSize": 28,
+ "code": 61930
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 446
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 870.286c-14.857 0-94.857-80-94.857-95.429 0-28 73.143-43.429 94.857-43.429s94.857 15.429 94.857 43.429c0 15.429-80 95.429-94.857 95.429zM739.429 715.429c-8 0-70.286-57.143-154.286-57.143-84.571 0-145.714 57.143-154.286 57.143-13.714 0-96.571-82.286-96.571-96 0-5.143 2.286-9.714 5.714-13.143 61.143-60.571 160.571-94.286 245.143-94.286s184 33.714 245.143 94.286c3.429 3.429 5.714 8 5.714 13.143 0 13.714-82.857 96-96.571 96zM895.429 560c-4.571 0-9.714-2.286-13.143-4.571-94.286-73.143-173.714-116.571-297.143-116.571-172.571 0-304 121.143-310.286 121.143-13.143 0-95.429-82.286-95.429-96 0-4.571 2.286-9.143 5.714-12.571 102.286-102.286 256.571-158.857 400-158.857s297.714 56.571 400 158.857c3.429 3.429 5.714 8 5.714 12.571 0 13.714-82.286 96-95.429 96zM1050.286 405.143c-4.571 0-9.143-2.286-12.571-5.143-132-116-274.286-180.571-452.571-180.571s-320.571 64.571-452.571 180.571c-3.429 2.857-8 5.143-12.571 5.143-13.143 0-96-82.286-96-96 0-5.143 2.286-9.714 5.714-13.143 144.571-143.429 353.143-222.857 555.429-222.857s410.857 79.429 555.429 222.857c3.429 3.429 5.714 8 5.714 13.143 0 13.714-82.857 96-96 96z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wifi"
+ ],
+ "defaultCode": 61931,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "wifi",
+ "id": 447,
+ "order": 1303,
+ "prevSize": 28,
+ "code": 61931
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 447
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 877.714c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM438.857 877.714c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM219.429 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM658.286 877.714c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM438.857 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM219.429 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM658.286 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM438.857 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM877.714 877.714v-219.429c0-40-33.143-73.143-73.143-73.143v0c-40 0-73.143 33.143-73.143 73.143v219.429c0 40 33.143 73.143 73.143 73.143v0c40 0 73.143-33.143 73.143-73.143zM658.286 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM877.714 256v-146.286c0-20-16.571-36.571-36.571-36.571h-731.429c-20 0-36.571 16.571-36.571 36.571v146.286c0 20 16.571 36.571 36.571 36.571h731.429c20 0 36.571-16.571 36.571-36.571zM877.714 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM950.857 73.143v877.714c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-877.714c0-40 33.143-73.143 73.143-73.143h804.571c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calculator"
+ ],
+ "defaultCode": 61932,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "calculator",
+ "id": 448,
+ "order": 1304,
+ "prevSize": 28,
+ "code": 61932
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 448
+ },
+ {
+ "icon": {
+ "paths": [
+ "M868 369.143v0c7.429 34.286 5.714 73.714-2.286 116.571-37.143 188.571-162.286 253.714-322.857 253.714h-25.143c-19.429 0-35.429 14.286-38.857 33.714l-2.286 10.857-31.429 197.714-1.143 8.571c-4 19.429-20 33.714-39.429 33.714h-143.429c-16 0-26.286-13.143-24-29.143 10.286-64 20-128 30.286-192s20.571-127.429 30.857-191.429c1.714-13.714 10.857-21.143 24.571-21.143 22.857 0 45.714-0.571 74.857 0 41.143 0.571 88.571-1.714 134.857-12 61.714-13.714 117.714-38.857 164-82.286 41.714-38.857 69.714-86.857 88.571-140.571 8.571-25.143 15.429-50.286 20-76 1.143-6.857 2.857-5.714 6.857-2.857 31.429 23.429 49.143 54.857 56 92.571zM769.714 208c0 46.857-10.857 91.429-26.286 134.857-29.714 86.286-85.714 148-172.571 180-46.286 16.571-94.857 23.429-144 24-34.286 0.571-68.571 0-102.857 0-37.143 0-60.571 18.286-67.429 54.857-8 43.429-39.429 245.714-48.571 302.857-0.571 4-2.286 5.714-6.857 5.714h-168.571c-17.143 0-29.714-14.857-27.429-31.429l132.571-840.571c3.429-21.714 22.857-38.286 45.143-38.286h341.714c24.571 0 81.143 10.857 119.429 25.714 81.143 31.429 125.714 95.429 125.714 182.286z"
+ ],
+ "width": 878.2994285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paypal"
+ ],
+ "defaultCode": 61933,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "paypal",
+ "id": 449,
+ "order": 1305,
+ "prevSize": 28,
+ "code": 61933
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 449
+ },
+ {
+ "icon": {
+ "paths": [
+ "M252 384c11.429 0 22.857 5.714 29.714 14.857 100 136.571 169.714 282.857 206.857 442.286h-254.857c-45.714-158.857-113.143-304-209.714-428-9.143-12 0-29.143 14.857-29.143h213.143zM571.429 588c-18.857 77.143-42.857 152-71.429 224.571-30.286-119.429-78.857-231.429-146.286-339.429 14.857-82.857 23.429-168 25.143-256.571 80.571 129.714 144.571 253.143 192.571 371.429zM628 182.857c170.857 235.429 297.714 525.714 325.143 841.143h-257.714c-18.857-305.143-159.429-594.286-316-841.143h248.571zM1024 512c0 158.857-21.714 325.714-57.714 464-25.143-211.429-94.857-421.714-205.143-618.857-9.714-115.429-30.286-227.429-60.571-333.714-2.857-12 5.714-23.429 17.714-23.429h205.143c16 0 30.857 10.857 34.857 26.286 43.429 154.286 65.714 317.714 65.714 485.714z"
+ ],
+ "width": 1038.848,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "google-wallet"
+ ],
+ "defaultCode": 61934,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "google-wallet",
+ "id": 450,
+ "order": 1306,
+ "prevSize": 28,
+ "code": 61934
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 450
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1128.571 565.714h-78.857c0 0 8-21.143 37.714-102.286-0.571 0.571 8-21.143 12.571-34.857l6.857 31.429c17.714 87.429 21.714 105.714 21.714 105.714zM303.429 528.571l-33.143-168.571c-4.571-23.429-22.286-30.857-42.857-30.857h-153.143l-1.143 7.429c105.143 26.857 191.429 84 230.286 192zM405.714 329.143l-92.571 250.286-9.714-50.857c-20-53.143-68.571-102.286-123.429-124.571l77.143 291.429h100l149.143-366.286h-100.571zM485.143 696h94.857l59.429-366.857h-94.857zM924 338.286c-18.857-7.429-48.571-15.429-85.143-15.429-93.714 0-159.429 49.714-160 121.143-0.571 52.571 46.857 81.714 82.857 99.429 37.143 17.714 49.143 29.714 49.143 45.714 0 24.571-29.714 35.429-56.571 35.429-38.286 0-58.857-4.571-89.143-18.857l-12.571-6.286-13.143 82.286c22.286 10.286 62.857 19.429 105.714 19.429 99.429 0.571 164-49.143 165.143-125.143 0-41.714-25.714-73.143-80-99.429-33.143-16.571-53.143-28.571-53.143-45.714 0-15.429 17.143-31.429 54.286-31.429 30.857-0.571 53.714 5.714 70.857 13.714l8.571 4.571zM1166.857 329.143h-73.143c-22.857 0-40 6.857-49.714 30.857l-140.571 336h99.429c16-45.143 20-54.857 20-54.857h121.143c0 0 2.857 12.571 11.429 54.857h88zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-visa"
+ ],
+ "defaultCode": 61936,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cc-visa",
+ "id": 451,
+ "order": 1307,
+ "prevSize": 28,
+ "code": 61936
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 451
+ },
+ {
+ "icon": {
+ "paths": [
+ "M639.429 194.857c-47.429-31.429-103.429-48.571-160.571-48.571-160.571 0-290.857 130.286-290.857 290.286 0 160.571 130.286 290.857 290.857 290.857 57.143 0 113.143-17.143 160.571-48.571-153.143-124.571-152-359.429 0-484zM658.286 208.571c-147.429 116-148 341.143 0 456.571 148-115.429 147.429-340.571 0-456.571zM677.143 194.857c151.429 124.571 153.714 360 0 484 47.429 31.429 104 48.571 160.571 48.571 160.571 0 290.857-130.286 290.857-290.857 0-160-130.286-290.286-290.857-290.286-57.143 0-113.143 17.143-160.571 48.571zM1100.571 607.429h4v-1.714h-9.714v1.714h4v9.714h1.714v-9.714zM1117.143 617.143h2.286v-11.429h-2.857l-3.429 7.429-3.429-7.429h-2.857v11.429h1.714v-8.571l3.429 7.429h2.286l2.857-7.429v8.571zM1112.571 868.571v1.143h-2.857v-1.714h2.857v0.571zM1112.571 873.714h1.714l-2.286-2.857c1.143 0 1.143-0.571 1.714-0.571 0.571-0.571 0.571-1.143 0.571-1.714s0-1.143-0.571-1.714c-0.571 0-1.143-0.571-2.286-0.571h-3.429v7.429h1.714v-2.857h0.571zM391.429 834.857c0-13.714 8.571-24.571 23.429-24.571 13.714 0 22.857 10.857 22.857 24.571 0 14.286-9.143 24.571-22.857 24.571-14.857 0-23.429-10.857-23.429-24.571zM661.714 809.714c10.857 0 18.286 6.286 20 18.286h-40c1.714-10.857 8.571-18.286 20-18.286zM865.143 834.857c0-13.714 8.571-24.571 22.857-24.571s23.429 10.857 23.429 24.571c0 14.286-9.143 24.571-23.429 24.571s-22.857-10.857-22.857-24.571zM1020.571 834.857c0-13.714 9.143-24.571 23.429-24.571 13.714 0 23.429 10.857 23.429 24.571 0 14.286-9.714 24.571-23.429 24.571-14.286 0-23.429-10.857-23.429-24.571zM1110.857 876c-0.571 0-1.143 0-2.286-0.571-0.571 0-1.143-0.571-1.714-1.143s-1.143-1.143-1.143-1.714-0.571-1.714-0.571-2.286 0-1.714 0.571-2.286c0-1.143 0.571-1.714 1.143-2.286s1.143-0.571 1.714-1.143 1.714-0.571 2.286-0.571 1.714 0 2.286 0.571 1.714 0.571 2.286 1.143 0.571 1.143 1.143 2.286c0 0.571 0.571 1.143 0.571 2.286 0 0.571-0.571 1.143-0.571 2.286-0.571 0.571-0.571 1.143-1.143 1.714s-1.143 1.143-2.286 1.143c-0.571 0.571-1.143 0.571-2.286 0.571zM342.286 873.714h17.143v-48.571c0-18.286-12-30.286-30.857-30.857-9.714 0-20 2.857-26.857 13.714-5.143-8.571-13.714-13.714-25.714-13.714-8 0-16 2.857-22.286 11.429v-9.143h-17.143v77.143h17.143v-42.857c0-13.714 7.429-20.571 18.857-20.571s17.143 7.429 17.143 20.571v42.857h16.571v-42.857c0-13.714 8-20.571 18.857-20.571 11.429 0 17.143 7.429 17.143 20.571v42.857zM437.143 873.714h16.571v-77.143h-16.571v9.143c-5.714-6.857-13.714-11.429-24.571-11.429-21.714 0-38.286 17.143-38.286 40.571s16.571 40.571 38.286 40.571c10.857 0 18.857-4 24.571-11.429v9.714zM538.857 850.286c0-13.714-10.286-20.571-26.857-22.857l-8-1.143c-7.429-1.143-13.143-2.857-13.143-8s5.143-8.571 14.286-8.571c10.286 0 19.429 3.429 24.571 6.286l6.857-13.714c-8-5.143-18.857-8-31.429-8-19.429 0-32 9.714-32 25.143 0 12.571 9.143 20 26.857 22.286l7.429 1.143c9.714 1.714 13.714 4 13.714 8 0 6.286-6.286 9.714-17.714 9.714s-20-4-25.714-8l-7.429 13.143c9.143 6.286 20.571 9.714 33.143 9.714 22.286 0 35.429-10.286 35.429-25.143zM613.143 869.714l-4.571-14.286c-5.143 2.857-10.286 4-14.857 4-8.571 0-10.857-5.143-10.857-12.571v-34.857h27.429v-15.429h-27.429v-23.429h-17.143v23.429h-16v15.429h16v34.857c0 17.714 6.857 28.571 26.857 28.571 6.857 0 15.429-2.286 20.571-5.714zM662.286 794.286c-22.286 0-38.286 16.571-38.286 40.571 0 24.571 16.571 40.571 39.429 40.571 11.429 0 22.286-2.857 31.429-10.857l-8-12.571c-6.286 5.143-14.857 8.571-22.286 8.571-10.857 0-20.571-5.143-23.429-18.857h57.714v-6.857c0-24-14.857-40.571-36.571-40.571zM753.143 794.286c-9.714 0-16 4.571-20 11.429v-9.143h-17.143v77.143h17.143v-43.429c0-12.571 5.143-20 16.571-20 3.429 0 6.857 0.571 10.286 2.286l5.143-16c-4-1.714-8.571-2.286-12-2.286zM770.286 834.857c0 23.429 16 40.571 41.143 40.571 11.429 0 19.429-2.286 27.429-9.143l-8-13.714c-6.286 4.571-12.571 7.429-20 6.857-13.714 0-23.429-9.714-23.429-24.571s9.714-24.571 23.429-24.571c7.429 0 13.714 2.286 20 6.857l8-13.714c-8-6.286-16-9.143-27.429-9.143-25.143 0-41.143 17.143-41.143 40.571zM910.286 873.714h17.143v-77.143h-17.143v9.143c-5.143-6.857-13.143-11.429-24-11.429-21.714 0-38.857 17.143-38.857 40.571s17.143 40.571 38.857 40.571c10.857 0 18.857-4 24-11.429v9.714zM986.286 794.286c-9.714 0-16 4.571-20 11.429v-9.143h-16.571v77.143h16.571v-43.429c0-12.571 5.714-20 16.571-20 3.429 0 6.857 0.571 10.286 2.286l5.143-16c-3.429-1.714-8.571-2.286-12-2.286zM1066.286 873.714h16.571v-108.571h-16.571v40.571c-5.143-6.857-13.143-11.429-24.571-11.429-21.143 0-38.286 17.143-38.286 40.571s17.143 40.571 38.286 40.571c11.429 0 19.429-4 24.571-11.429v9.714zM1110.857 862.286c-0.571 0-1.714 0.571-2.857 0.571-1.143 0.571-1.714 1.143-2.286 1.714-1.143 0.571-1.714 1.714-1.714 2.286-0.571 1.143-0.571 2.286-0.571 3.429 0 0.571 0 1.714 0.571 2.857 0 0.571 0.571 1.714 1.714 2.286 0.571 0.571 1.143 1.143 2.286 1.714s2.286 0.571 2.857 0.571c1.143 0 2.286 0 3.429-0.571 0.571-0.571 1.714-1.143 2.286-1.714s1.143-1.714 1.714-2.286c0.571-1.143 0.571-2.286 0.571-2.857 0-1.143 0-2.286-0.571-3.429-0.571-0.571-1.143-1.714-1.714-2.286s-1.714-1.143-2.286-1.714c-1.143 0-2.286-0.571-3.429-0.571zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-mastercard"
+ ],
+ "defaultCode": 61937,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cc-mastercard",
+ "id": 452,
+ "order": 1308,
+ "prevSize": 28,
+ "code": 61937
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 452
+ },
+ {
+ "icon": {
+ "paths": [
+ "M178.857 444c0 18.286-7.429 36-20.571 48-11.429 10.286-26.857 14.857-50.857 14.857h-9.714v-125.714h9.714c24 0 38.857 4 50.857 15.429 13.143 11.429 20.571 29.143 20.571 47.429zM1193.714 406.857c0 19.429-12.571 29.714-36.571 29.714h-10.857v-57.714h11.429c23.429 0 36 9.714 36 28zM217.143 444c0-56-41.714-95.429-102.286-95.429h-54.286v190.286h54.286c28.571 0 49.714-6.286 68-21.714 21.714-18.286 34.286-45.143 34.286-73.143zM234.286 538.857h37.143v-190.286h-37.143v190.286zM417.143 481.143c0-30.286-12.571-44-54.857-59.429-22.286-8-28.571-13.714-28.571-24 0-12 11.429-21.143 27.429-21.143 11.429 0 20.571 4.571 30.286 15.429l19.429-25.143c-16-14.286-35.429-21.143-56-21.143-33.714 0-59.429 23.429-59.429 54.286 0 26.286 12 40 46.857 52.571 14.286 5.143 21.714 8 25.714 10.857 7.429 4.571 10.857 11.429 10.857 19.429 0 15.429-12 26.857-28.571 26.857-17.714 0-32-8.571-40.571-25.143l-24 22.857c17.143 25.143 37.714 36.571 65.714 36.571 38.857 0 65.714-25.714 65.714-62.857zM576 532.571v-44c-14.857 14.857-28 21.143-44.571 21.143-37.714 0-64-27.429-64-65.714 0-36.571 27.429-65.714 62.286-65.714 17.714 0 30.857 6.286 46.286 21.714v-44c-16-8-29.714-11.429-45.714-11.429-56 0-101.143 44-101.143 99.429 0 56 44 99.429 100.571 99.429 16 0 29.714-2.857 46.286-10.857zM1280 877.714v-301.143c-91.429 57.143-413.143 240-933.143 337.714h896.571c20 0 36.571-16.571 36.571-36.571zM793.714 445.143c0-57.143-46.286-103.429-103.429-103.429s-103.429 46.286-103.429 103.429 46.286 103.429 103.429 103.429 103.429-46.286 103.429-103.429zM880.571 544l82.286-195.429h-40.571l-51.429 128-50.857-128h-40.571l81.143 195.429h20zM979.429 538.857h105.143v-32h-68v-51.429h65.714v-32h-65.714v-42.286h68v-32.571h-105.143v190.286zM1202.857 538.857h45.714l-60-80c28-5.714 43.429-24.571 43.429-53.714 0-36-24.571-56.571-67.429-56.571h-55.429v190.286h37.143v-76h5.143zM1316.571 149.714v724.571c0 42.286-33.714 76.571-75.429 76.571h-1165.714c-41.714 0-75.429-34.286-75.429-76.571v-724.571c0-42.286 33.714-76.571 75.429-76.571h1165.714c41.714 0 75.429 34.286 75.429 76.571z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-discover"
+ ],
+ "defaultCode": 61938,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cc-discover",
+ "id": 453,
+ "order": 1309,
+ "prevSize": 28,
+ "code": 61938
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 453
+ },
+ {
+ "icon": {
+ "paths": [
+ "M68 389.714h50.857l-25.714-61.714zM422.857 690.286l42.286-45.143-40-45.143h-93.143v28h81.143v31.429h-81.143v30.857h90.857zM513.143 645.714l56.571 62.857v-124zM677.714 618.857c0-13.714-10.286-18.857-22.857-18.857h-48v39.429h47.429c13.143 0 23.429-6.286 23.429-20.571zM842.857 616.571c0-14.286-12.571-16.571-24-16.571h-46.857v34.857h46.286c12.571 0 24.571-2.857 24.571-18.286zM684 350.286c0-14.286-12.571-16.571-24-16.571h-46.857v34.286h46.286c12.571 0 24.571-2.857 24.571-17.714zM946.286 389.714h50.857l-25.143-61.714zM399.429 301.143v154.857h-37.714v-121.143l-53.714 121.143h-32.571l-53.714-121.143v121.143h-75.429l-14.286-34.286h-77.143l-14.286 34.286h-40l66.286-154.857h54.857l62.857 146.857v-146.857h60.571l48.571 105.143 44-105.143h61.714zM717.143 618.857c0 62.286-68 52-110.286 52v52h-72l-45.714-51.429-47.429 51.429h-146.286v-154.857h148.571l45.714 50.857 46.857-50.857h118.286c34.857 0 62.286 12 62.286 50.857zM550.857 424v32h-124v-154.857h124v32.571h-86.857v28h84.571v31.429h-84.571v30.857h86.857zM1316.571 743.429v130.857c0 41.714-33.714 76.571-75.429 76.571h-1165.714c-41.714 0-75.429-34.857-75.429-76.571v-387.429h63.429l14.286-34.857h31.429l14.286 34.857h124.571v-26.286l10.857 26.286h64.571l11.429-26.857v26.857h309.143v-56.571l5.714-0.571c5.143 0 5.714 4 5.714 8v49.143h159.429v-13.143c37.143 19.429 88 13.143 126.857 13.143l14.286-34.857h32l14.286 34.857h129.714v-33.143l19.429 33.143h104v-216h-102.857v25.143l-14.286-25.143h-105.714v25.143l-13.143-25.143h-142.286c-21.143 0-43.429 2.286-62.286 12.571v-12.571h-98.286v12.571c-11.429-10.286-26.857-12.571-41.714-12.571h-358.857l-24.571 55.429-24.571-55.429h-113.143v25.143l-12.571-25.143h-96.571l-44.571 102.286v-223.429c0-41.714 33.714-76.571 75.429-76.571h1165.714c41.714 0 75.429 34.857 75.429 76.571v387.429h-68.571c-16 0-33.143 2.857-46.286 12.571v-12.571h-101.143c-14.286 0-33.714 2.286-44.571 12.571v-12.571h-180.571v12.571c-13.714-9.714-33.714-12.571-49.714-12.571h-119.429v12.571c-12-11.429-36.571-12.571-52-12.571h-133.714l-30.857 33.143-28.571-33.143h-199.429v216h196l31.429-33.714 29.714 33.714h120.571v-50.857h12c17.143 0 34.857-0.571 51.429-7.429v58.286h99.429v-56.571h4.571c5.714 0 6.857 0.571 6.857 6.857v49.714h302.286c16.571 0 37.143-3.429 50.286-13.714v13.714h96c18.286 0 37.714-1.714 54.286-9.714zM883.429 609.714c0 17.143-9.143 34.286-26.286 41.143 20.571 7.429 24.571 21.143 24.571 41.143v30.857h-37.143v-25.714c0-26.286-8.571-30.857-33.143-30.857h-39.429v56.571h-37.143v-154.857h88c29.143 0 60.571 5.143 60.571 41.714zM725.143 342.857c0 17.714-9.714 34.857-26.286 41.714 21.143 7.429 24.571 20.571 24.571 41.143v30.286h-37.143c-0.571-33.143 8-56-33.143-56h-40v56h-36.571v-154.857l87.429 0.571c29.714 0 61.143 4.571 61.143 41.143zM1027.429 690.857v32h-123.429v-154.857h123.429v32h-86.286v28h84.571v31.429h-84.571v30.857zM784 301.143v154.857h-37.714v-154.857h37.714zM1180 673.714c0 36.571-25.143 49.143-58.286 49.143h-72v-33.143h72c9.143 0 19.429-2.286 19.429-14.286 0-33.143-95.429 12.571-95.429-61.143 0-31.429 24-46.286 52.571-46.286h74.286v32.571h-68c-9.714 0-20.571 1.714-20.571 14.286 0 33.714 96-15.429 96 58.857zM1316.571 645.143v57.714c-10.857 16-32 20-50.286 20h-71.429v-33.143h71.429c9.143 0 18.857-2.857 18.857-14.286 0-32.571-95.429 12.571-95.429-61.143 0-31.429 24.571-46.286 53.143-46.286h73.714v32.571h-67.429c-10.286 0-20.571 1.714-20.571 14.286 0 27.429 64.571-0.571 88 30.286zM1222.286 301.714v154.286h-52.571l-69.714-116v116h-75.429l-14.857-34.286h-76.571l-14.286 34.286h-42.857c-50.857 0-73.714-26.286-73.714-76 0-52 23.429-78.857 76-78.857h36v33.714c-38.857-0.571-74.286-9.143-74.286 44 0 26.286 6.286 44.571 36 44.571h16.571l52.571-121.714h55.429l62.286 146.286v-146.286h56.571l65.143 107.429v-107.429h37.714z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-amex"
+ ],
+ "defaultCode": 61939,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cc-amex",
+ "id": 454,
+ "order": 1310,
+ "prevSize": 28,
+ "code": 61939
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 454
+ },
+ {
+ "icon": {
+ "paths": [
+ "M425.714 517.714c0 28-22.286 49.143-50.286 49.143-21.143 0-36.571-12-36.571-34.286 0-28 21.714-50.286 49.714-50.286 21.143 0 37.143 13.143 37.143 35.429zM874.286 432.571c0 34.286-20.571 41.143-50.286 41.143l-18.286 0.571 9.714-61.143c0.571-4 3.429-6.286 7.429-6.286h10.286c19.429 0 41.143 1.143 41.143 25.714zM1074.857 517.714c0 28-22.286 49.143-49.714 49.143-21.143 0-37.143-12-37.143-34.286 0-28 21.714-50.286 49.714-50.286 21.143 0 37.143 13.143 37.143 35.429zM293.143 420c0-48-37.143-64-79.429-64h-91.429c-5.714 0-11.429 4.571-12 10.857l-37.143 233.143c-0.571 4.571 2.857 9.143 7.429 9.143h43.429c6.286 0 12-4.571 12.571-10.857l10.286-62.857c2.286-16.571 30.286-10.857 41.143-10.857 65.143 0 105.143-38.857 105.143-104.571zM469.714 598.286l23.429-149.143c0.571-4.571-2.857-9.143-7.429-9.143h-43.429c-8.571 0-9.143 12.571-9.714 18.857-13.143-19.429-32.571-22.857-54.286-22.857-56 0-98.857 49.143-98.857 103.429 0 44.571 28 73.714 72.571 73.714 20.571 0 46.286-9.143 60.571-25.143-1.143 3.429-2.286 8.571-2.286 12 0 5.143 2.286 9.143 7.429 9.143h39.429c6.286 0 11.429-4.571 12.571-10.857zM725.143 448c0-4-3.429-8-7.429-8h-44c-4 0-8 2.286-10.286 5.714l-60.571 89.143-25.143-85.714c-1.714-5.143-6.857-9.143-12.571-9.143h-42.857c-4 0-7.429 4-7.429 8 0 2.857 44.571 132 48.571 144-6.286 8.571-46.857 61.714-46.857 68.571 0 4 3.429 7.429 7.429 7.429h44c4 0 8-2.286 10.286-5.714l145.714-210.286c1.143-1.143 1.143-2.286 1.143-4zM942.286 420c0-48-37.143-64-79.429-64h-90.857c-6.286 0-12 4.571-12.571 10.857l-37.143 233.143c-0.571 4.571 2.857 9.143 7.429 9.143h46.857c4.571 0 8-3.429 9.143-7.429l10.286-66.286c2.286-16.571 30.286-10.857 41.143-10.857 65.143 0 105.143-38.857 105.143-104.571zM1118.857 598.286l23.429-149.143c0.571-4.571-2.857-9.143-7.429-9.143h-43.429c-8.571 0-9.143 12.571-9.714 18.857-12.571-19.429-32-22.857-54.286-22.857-56 0-98.857 49.143-98.857 103.429 0 44.571 28 73.714 72.571 73.714 21.143 0 46.857-9.143 60.571-25.143-0.571 3.429-2.286 8.571-2.286 12 0 5.143 2.286 9.143 7.429 9.143h39.429c6.286 0 11.429-4.571 12.571-10.857zM1243.429 364.571v-0.571c0-4.571-3.429-8-7.429-8h-42.286c-3.429 0-6.857 2.857-7.429 6.286l-37.143 237.714-0.571 1.143c0 4 3.429 8 8 8h37.714c5.714 0 11.429-4.571 12-10.857zM224 441.143c-4.571 29.143-24 32.571-49.143 32.571l-18.857 0.571 9.714-61.143c0.571-4 4-6.286 7.429-6.286h10.857c25.714 0 45.143 3.429 40 34.286zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-paypal"
+ ],
+ "defaultCode": 61940,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cc-paypal",
+ "id": 455,
+ "order": 1311,
+ "prevSize": 28,
+ "code": 61940
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 455
+ },
+ {
+ "icon": {
+ "paths": [
+ "M912.571 516c0 26.286-4 46.286-12 60.571-6.857 12.571-17.714 20-29.714 20-8.571 0-16.571-1.714-23.429-5.143v-128c14.857-15.429 28-17.143 32.571-17.143 21.714 0 32.571 24 32.571 69.714zM1162.857 495.429h-62.857c2.286-38.286 12.571-56 32-56s29.714 18.286 30.857 56zM272 572.571c0-48-29.143-68-76.571-85.143v0c-25.143-9.143-38.857-16.571-38.857-28 0-9.714 8-14.857 21.714-14.857 26.286 0 52.571 9.714 70.857 18.857l10.286-64c-14.286-6.857-44-18.286-85.143-18.286-29.143 0-53.143 7.429-70.286 21.714-18.286 14.857-27.429 36.571-27.429 62.286 0 46.857 28.571 67.429 75.429 84 29.714 10.857 40 18.286 40 30.286 0 11.429-9.714 17.714-27.429 17.714-21.714 0-57.714-10.857-81.143-24.571l-10.286 64.571c20 11.429 57.143 23.429 96 23.429 30.857 0 56-7.429 73.714-21.143 19.429-15.429 29.143-37.714 29.143-66.857zM440.571 449.714l10.857-63.429h-54.857v-77.143l-73.714 12-10.286 65.143-26.286 4.571-9.714 58.857h35.429v125.143c0 32.571 8.571 54.857 25.143 68.571 14.286 11.429 34.857 17.143 63.429 17.143 22.286 0 35.429-4 45.143-6.286v-67.429c-5.143 1.143-17.143 4-25.143 4-16.571 0-24-9.143-24-28.571v-112.571h44zM621.143 464v-79.429c-5.714-1.143-10.857-1.714-16-1.714-24 0-43.429 12.571-50.857 35.429l-5.714-32h-74.857v269.143h85.714v-174.857c10.857-13.143 26.286-17.714 46.857-17.714 4.571 0 9.143 0 14.857 1.143zM642.286 655.429h85.714v-269.143h-85.714v269.143zM997.714 513.143c0-45.714-8.571-80.571-25.714-102.286-15.429-20-36.571-29.714-63.429-29.714-24.571 0-46.286 10.286-66.857 32l-4.571-26.857h-75.429v368.571l85.714-14.286v-86.286c13.143 4 26.857 6.286 38.857 6.286 21.143 0 52.571-5.714 76.571-32 23.429-25.143 34.857-64 34.857-115.429zM730.286 314.286c0-25.143-20-45.143-45.143-45.143s-45.143 20-45.143 45.143 20 45.714 45.143 45.714 45.143-20.571 45.143-45.714zM1243.429 518.286c0-42.857-9.143-76.571-27.429-100.571-18.857-24-46.857-36.571-82.286-36.571-73.143 0-118.286 53.714-118.286 140.571 0 48 12 84.571 36 107.429 21.143 21.143 52 31.429 92 31.429 36.571 0 70.286-8.571 91.429-22.857l-9.143-58.857c-21.143 11.429-45.714 17.714-73.143 17.714-16.571 0-28-3.429-36-10.857-9.143-7.429-14.286-20-16-37.714h141.714c0.571-4 1.143-23.429 1.143-29.714zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-stripe"
+ ],
+ "defaultCode": 61941,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cc-stripe",
+ "id": 456,
+ "order": 1312,
+ "prevSize": 28,
+ "code": 61941
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 456
+ },
+ {
+ "icon": {
+ "paths": [
+ "M890.286 486.857c29.143 170.286 104 261.714 170.286 317.714 0 40-33.143 73.143-73.143 73.143h-256c0 80.571-65.714 146.286-146.286 146.286s-145.714-65.143-146.286-145.714zM585.143 978.286c5.143 0 9.143-4 9.143-9.143s-4-9.143-9.143-9.143c-45.143 0-82.286-37.143-82.286-82.286 0-5.143-4-9.143-9.143-9.143s-9.143 4-9.143 9.143c0 55.429 45.143 100.571 100.571 100.571zM1157.714 64c6.286 8 5.714 19.429-1.714 26.286l-1069.714 926.857c-7.429 6.286-19.429 5.714-25.714-2.286l-48-54.857c-6.286-8-5.714-19.429 1.714-25.714l106.286-92c-6.857-11.429-10.857-24-10.857-37.714 84.571-71.429 182.857-199.429 182.857-475.429 0-109.714 90.857-229.714 242.286-252-2.857-6.857-4.571-14.286-4.571-22.286 0-30.286 24.571-54.857 54.857-54.857s54.857 24.571 54.857 54.857c0 8-1.714 15.429-4.571 22.286 98.286 14.286 170.857 69.714 209.714 137.143l238.857-207.429c7.429-6.286 19.429-5.714 25.714 2.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bell-slash"
+ ],
+ "defaultCode": 61942,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bell-slash",
+ "id": 457,
+ "order": 1313,
+ "prevSize": 28,
+ "code": 61942
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 457
+ },
+ {
+ "icon": {
+ "paths": [
+ "M594.286 969.143c0-5.143-4-9.143-9.143-9.143-45.143 0-82.286-37.143-82.286-82.286 0-5.143-4-9.143-9.143-9.143s-9.143 4-9.143 9.143c0 55.429 45.143 100.571 100.571 100.571 5.143 0 9.143-4 9.143-9.143zM287.429 697.714l501.143-434.286c-28.571-60-94.857-117.143-203.429-117.143-149.714 0-219.429 109.143-219.429 182.857 0 146.286-25.714 268.571-78.286 368.571zM1060.571 804.571c0 40-33.143 73.143-73.143 73.143h-256c0 80.571-65.714 146.286-146.286 146.286s-145.714-65.143-146.286-145.714l85.143-73.714h432.571c-63.429-71.429-106.286-158.286-129.714-262.286l63.429-55.429c29.143 170.286 104 261.714 170.286 317.714zM1109.714 9.143l48 54.857c6.286 8 5.714 19.429-1.714 26.286l-1069.714 926.857c-7.429 6.286-19.429 5.714-25.714-2.286l-48-54.857c-6.286-8-5.714-19.429 1.714-25.714l106.286-92c-6.857-11.429-10.857-24-10.857-37.714 84.571-71.429 182.857-199.429 182.857-475.429 0-109.714 90.857-229.714 242.286-252-2.857-6.857-4.571-14.286-4.571-22.286 0-30.286 24.571-54.857 54.857-54.857s54.857 24.571 54.857 54.857c0 8-1.714 15.429-4.571 22.286 98.286 14.286 170.857 69.714 209.714 137.143l238.857-207.429c7.429-6.286 19.429-5.714 25.714 2.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bell-slash-o"
+ ],
+ "defaultCode": 61943,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bell-slash-o",
+ "id": 458,
+ "order": 1314,
+ "prevSize": 28,
+ "code": 61943
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 458
+ },
+ {
+ "icon": {
+ "paths": [
+ "M292.571 786.286v-402.286c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v402.286c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM438.857 786.286v-402.286c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v402.286c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM585.143 786.286v-402.286c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v402.286c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM274.286 219.429h256l-27.429-66.857c-1.714-2.286-6.857-5.714-9.714-6.286h-181.143c-3.429 0.571-8 4-9.714 6.286zM804.571 237.714v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v541.714c0 62.857-41.143 116.571-91.429 116.571h-475.429c-50.286 0-91.429-51.429-91.429-114.286v-544h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h176.571l40-95.429c11.429-28 45.714-50.857 76-50.857h182.857c30.286 0 64.571 22.857 76 50.857l40 95.429h176.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trash"
+ ],
+ "defaultCode": 61944,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "trash",
+ "id": 459,
+ "order": 1315,
+ "prevSize": 28,
+ "code": 61944
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 459
+ },
+ {
+ "icon": {
+ "paths": [
+ "M657.143 613.714v62.286c0 80.571-128.571 110.286-209.143 110.286-156.571 0-274.286-119.429-274.286-277.143 0-154.857 116.571-271.429 271.429-271.429 56.571 0 204.571 20 204.571 110.857v62.286c0 5.143-4 9.143-9.143 9.143h-67.429c-5.143 0-9.143-4-9.143-9.143v-40c0-36-69.143-52.571-116-52.571-106.857 0-181.143 77.143-181.143 188 0 114.857 77.714 198.857 185.714 198.857 41.143 0 118.857-15.429 118.857-51.429v-40c0-5.143 4-9.143 8.571-9.143h68c4.571 0 9.143 4 9.143 9.143zM438.857 146.286c-201.714 0-365.714 164-365.714 365.714s164 365.714 365.714 365.714 365.714-164 365.714-365.714-164-365.714-365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "copyright"
+ ],
+ "defaultCode": 61945,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "copyright",
+ "id": 460,
+ "order": 1316,
+ "prevSize": 28,
+ "code": 61945
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 460
+ },
+ {
+ "icon": {
+ "paths": [
+ "M555.429 442.857c0-82.286-42.857-131.429-114.857-131.429-94.857 0-196.571 94.286-196.571 246.857 0 85.143 42.286 133.714 116.571 133.714 114.857 0 194.857-131.429 194.857-249.143zM877.714 512c0 177.714-126.857 244.571-235.429 248-7.429 0-10.286 0.571-18.286 0.571-35.429 0-63.429-10.286-81.143-30.286-10.857-12.571-17.143-28.571-18.857-47.429-35.429 44.571-97.143 88-174.286 88-122.857 0-193.143-76-193.143-208.571 0-182.286 126.286-330.286 280.571-330.286 66.857 0 120.571 28.571 149.143 77.143l1.143-10.857 6.286-32c0.571-4.571 4.571-10.286 8.571-10.286h67.429c2.857 0 5.714 4 7.429 6.286 1.714 1.714 2.286 6.286 1.714 9.143l-68.571 350.857c-2.286 10.857-2.857 19.429-2.857 27.429 0 30.857 9.143 37.143 32.571 37.143 38.857-1.143 164.571-17.143 164.571-174.857 0-222.286-143.429-365.714-365.714-365.714-201.714 0-365.714 164-365.714 365.714s164 365.714 365.714 365.714c84 0 166.286-29.143 231.429-82.286 8-6.857 19.429-5.714 25.714 2.286l23.429 28c2.857 4 4.571 8.571 4 13.714-0.571 4.571-2.857 9.143-6.857 12.571-77.714 63.429-176.571 98.857-277.714 98.857-241.714 0-438.857-197.143-438.857-438.857s197.143-438.857 438.857-438.857c262.286 0 438.857 176.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "at"
+ ],
+ "defaultCode": 61946,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "at",
+ "id": 461,
+ "order": 1317,
+ "prevSize": 28,
+ "code": 61946
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 461
+ },
+ {
+ "icon": {
+ "paths": [
+ "M970.286 53.714c71.429 71.429 72 187.429 0 258.286l-128.571 127.429 59.429 59.429c7.429 7.429 7.429 18.857 0 26.286l-120 120c-7.429 7.429-18.857 7.429-26.286 0l-60-60-344.571 344.571c-13.714 13.714-32 21.143-51.429 21.143h-116l-146.286 73.143-36.571-36.571 73.143-146.286v-116c0-19.429 7.429-37.714 21.143-51.429l344.571-344.571-60-60c-7.429-7.429-7.429-18.857 0-26.286l120-120c7.429-7.429 18.857-7.429 26.286 0l59.429 59.429 127.429-128.571c70.857-72 186.857-71.429 258.286 0zM292.571 841.143l329.143-329.143-109.714-109.714-329.143 329.143v109.714h109.714z"
+ ],
+ "width": 1042.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eyedropper"
+ ],
+ "defaultCode": 61947,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "eyedropper",
+ "id": 462,
+ "order": 1318,
+ "prevSize": 28,
+ "code": 61947
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 462
+ },
+ {
+ "icon": {
+ "paths": [
+ "M922.857 0c52 0 100 38.857 100 93.143 0 30.286-12 59.429-25.714 86.286-44.571 84.571-194.286 364-265.714 429.714-34.857 32.571-76 52-124.571 52-96.571 0-175.429-82.286-175.429-178.286 0-45.714 18.857-90.286 52.571-121.143l364.571-330.857c20-18.286 46.286-30.857 74.286-30.857zM403.429 590.857c29.714 57.714 84 101.143 146.857 117.714l0.571 40.571c3.429 162.857-109.714 274.857-273.143 274.857-193.714 0-277.714-154.286-277.714-329.714 21.143 14.286 94.857 73.143 118.857 73.143 14.286 0 26.286-8 31.429-21.143 48.571-126.857 124.571-149.714 253.143-155.429z"
+ ],
+ "width": 1022.8297142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "paint-brush"
+ ],
+ "defaultCode": 61948,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "paint-brush",
+ "id": 463,
+ "order": 1319,
+ "prevSize": 28,
+ "code": 61948
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 463
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 804.571v219.429h-1024v-219.429c56 0 85.714-25.143 109.143-45.143 19.429-17.143 32.571-28 61.714-28s41.714 10.857 61.714 28c23.429 20 52.571 45.143 109.143 45.143 56 0 85.143-25.143 109.143-45.143 19.429-17.143 32-28 61.143-28s42.286 10.857 61.714 28c23.429 20 53.143 45.143 109.143 45.143s85.714-25.143 109.143-45.143c19.429-17.143 32.571-28 61.714-28 28.571 0 41.714 10.857 61.143 28 23.429 20 53.143 45.143 109.143 45.143zM1024 621.714v109.714c-29.143 0-41.714-10.857-61.714-28-23.429-20-52.571-45.143-108.571-45.143-56.571 0-85.714 25.143-109.143 45.143-20 17.143-32.571 28-61.714 28s-42.286-10.857-61.714-28c-23.429-20-52.571-45.143-109.143-45.143-56 0-85.143 25.143-109.143 45.143-19.429 17.143-32 28-61.143 28s-42.286-10.857-61.714-28c-23.429-20-53.143-45.143-109.143-45.143-56.571 0-85.714 25.143-109.143 45.143-19.429 17.143-32.571 28-61.714 28v-109.714c0-60.571 49.143-109.714 109.714-109.714h36.571v-256h146.286v256h146.286v-256h146.286v256h146.286v-256h146.286v256h36.571c60.571 0 109.714 49.143 109.714 109.714zM292.571 128c0 60.571-32.571 91.429-73.143 91.429s-73.143-32.571-73.143-73.143c0-70.857 73.143-52.571 73.143-146.286 27.429 0 73.143 67.429 73.143 128zM585.143 128c0 60.571-32.571 91.429-73.143 91.429s-73.143-32.571-73.143-73.143c0-70.857 73.143-52.571 73.143-146.286 27.429 0 73.143 67.429 73.143 128zM877.714 128c0 60.571-32.571 91.429-73.143 91.429s-73.143-32.571-73.143-73.143c0-70.857 73.143-52.571 73.143-146.286 27.429 0 73.143 67.429 73.143 128z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "birthday-cake"
+ ],
+ "defaultCode": 61949,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "birthday-cake",
+ "id": 464,
+ "order": 1320,
+ "prevSize": 28,
+ "code": 61949
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 464
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1170.286 877.714v73.143h-1170.286v-877.714h73.143v804.571h1097.143zM950.857 292.571l146.286 512h-950.857v-329.143l256-329.143 329.143 329.143z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "area-chart"
+ ],
+ "defaultCode": 61950,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "area-chart",
+ "id": 465,
+ "order": 1321,
+ "prevSize": 28,
+ "code": 61950
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 465
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 508.571l312 312c-79.429 80.571-190.286 130.286-312 130.286-242.286 0-438.857-196.571-438.857-438.857s196.571-438.857 438.857-438.857v435.429zM545.714 512h441.714c0 121.714-49.714 232.571-130.286 312zM950.857 438.857h-438.857v-438.857c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 987.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pie-chart"
+ ],
+ "defaultCode": 61952,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "pie-chart",
+ "id": 466,
+ "order": 1322,
+ "prevSize": 28,
+ "code": 61952
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 466
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1170.286 877.714v73.143h-1170.286v-877.714h73.143v804.571h1097.143zM1097.143 164.571v248.571c0 16-19.429 24.571-31.429 12.571l-69.143-69.143-361.714 361.714c-7.429 7.429-18.857 7.429-26.286 0l-133.143-133.143-237.714 237.714-109.714-109.714 334.286-334.286c7.429-7.429 18.857-7.429 26.286 0l133.143 133.143 265.143-265.143-69.143-69.143c-12-12-3.429-31.429 12.571-31.429h248.571c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "line-chart"
+ ],
+ "defaultCode": 61953,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "line-chart",
+ "id": 467,
+ "order": 1323,
+ "prevSize": 28,
+ "code": 61953
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 467
+ },
+ {
+ "icon": {
+ "paths": [
+ "M738.286 402.286c0 3.429 4.571 19.429 5.714 23.429 15.429 46.857 51.429 56.571 94.286 68.571 95.429 26.857 185.714 77.714 185.714 189.714 0 113.714-94.857 193.714-205.714 193.714-184 0-241.143-225.143-294.286-362.286-44-113.143-90.286-179.429-217.714-179.429-113.143 0-212.571 108.571-212.571 220 0 118.286 88.571 228 211.429 228 54.286 0 110.857-11.429 147.429-54.286v0c17.714-20 34.857-41.714 47.429-66.286l48 86.857c-6.286 14.286-15.429 28-25.143 40l0.571 0.571c-57.714 66.857-136.571 86.857-221.714 86.857-172.571 0-301.714-152.571-301.714-320.571 0-162.857 141.714-314.286 306.286-314.286 273.143 0 286.857 236.571 379.429 426.857 25.143 52.571 68 114.286 133.143 114.286 59.429 0 112-38.286 112-101.143 0-136-249.714-43.429-285.143-266.857-1.143-6.286-1.714-12.571-1.714-18.857 0-84.571 79.429-157.143 163.429-154.286 50.286 1.714 80.571 3.429 120.571 38.857h-0.571c15.429 14.286 26.857 33.714 38.857 50.286l-73.714 56.571c-8.571-16-16.571-29.143-30.857-40v-0.571c-13.714-12.571-38.286-12-55.429-12-37.143 0-68 28-68 66.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lastfm"
+ ],
+ "defaultCode": 61954,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "lastfm",
+ "id": 468,
+ "order": 1324,
+ "prevSize": 28,
+ "code": 61954
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 468
+ },
+ {
+ "icon": {
+ "paths": [
+ "M818.286 601.143c0-80.571-65.143-117.143-133.714-136.571-31.429-8.571-57.143-16-68.571-50.286-0.571-2.857-3.429-13.714-3.429-16 0-27.429 21.714-47.429 48.571-47.429 12.571 0 30.286-0.571 40.571 8.571h-0.571c10.857 8 16 17.143 22.286 29.143l53.143-40.571c-8.571-12-17.143-26.286-28-36.571v0c-26.857-24-52-28-87.429-28-60 0-116.571 49.143-116.571 111.429 0 4.571 0.571 8.571 1.143 13.143 12.571 77.714 52 101.714 121.714 121.714 34.286 9.714 82.857 25.143 83.429 67.429v2.857c0.571 45.714-37.714 73.143-80.571 73.143-46.857 0-77.143-44.571-95.429-82.286-66.286-136.571-76.571-307.429-273.143-307.429-118.286 0-224.571 109.143-220.571 226.286v0.571c4 122.286 88 230.286 217.143 230.286 61.143 0 118.286-14.286 159.429-62.857v0c6.857-9.143 13.143-18.857 17.714-29.143l-34.286-62.286c-32 60.571-71.429 86.857-140 86.857-90.286 0-152.571-80-152.571-166.286 0-79.429 73.143-156 153.143-156 91.429 0 124.571 47.429 156.571 129.143 38.286 98.286 79.429 260.571 212 260.571 79.429 0 148-57.714 148-139.429zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lastfm-square"
+ ],
+ "defaultCode": 61955,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "lastfm-square",
+ "id": 469,
+ "order": 1325,
+ "prevSize": 28,
+ "code": 61955
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 469
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658.286 512c0-161.143-131.429-292.571-292.571-292.571s-292.571 131.429-292.571 292.571 131.429 292.571 292.571 292.571 292.571-131.429 292.571-292.571zM1097.143 512c0-161.143-131.429-292.571-292.571-292.571h-220.571c89.143 66.857 147.429 173.143 147.429 292.571s-58.286 225.714-147.429 292.571h220.571c161.143 0 292.571-131.429 292.571-292.571zM1170.286 512c0 201.714-164 365.714-365.714 365.714h-438.857c-201.714 0-365.714-164-365.714-365.714s164-365.714 365.714-365.714h438.857c201.714 0 365.714 164 365.714 365.714z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toggle-off"
+ ],
+ "defaultCode": 61956,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "toggle-off",
+ "id": 470,
+ "order": 1326,
+ "prevSize": 28,
+ "code": 61956
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 470
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 512c0-201.714 164-365.714 365.714-365.714h438.857c201.714 0 365.714 164 365.714 365.714s-164 365.714-365.714 365.714h-438.857c-201.714 0-365.714-164-365.714-365.714zM804.571 804.571c161.143 0 292.571-131.429 292.571-292.571s-131.429-292.571-292.571-292.571-292.571 131.429-292.571 292.571 131.429 292.571 292.571 292.571z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toggle-on"
+ ],
+ "defaultCode": 61957,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "toggle-on",
+ "id": 471,
+ "order": 1327,
+ "prevSize": 28,
+ "code": 61957
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 471
+ },
+ {
+ "icon": {
+ "paths": [
+ "M435.429 658.286h-179.429c-30.286 0-47.429-34.286-29.143-58.286l107.429-143.429c-24-11.429-50.286-17.714-78.286-17.714-100.571 0-182.857 82.286-182.857 182.857s82.286 182.857 182.857 182.857c88.571 0 162.286-62.857 179.429-146.286zM329.143 585.143h106.286c-6.857-32-21.714-61.143-42.857-84.571zM603.429 585.143l164.571-219.429h-274.286l-56.571 75.429c38.286 37.714 64 88 72 144h94.286zM1243.429 621.714c0-100.571-82.286-182.857-182.857-182.857-24.571 0-47.429 5.143-69.143 13.714l99.429 148.571c11.429 17.143 6.857 40-9.714 50.857-6.286 4.571-13.714 6.286-20.571 6.286-12 0-23.429-5.714-30.286-16.571l-99.429-148.571c-32.571 33.143-53.143 78.286-53.143 128.571 0 100.571 82.286 182.857 182.857 182.857s182.857-82.286 182.857-182.857zM1316.571 621.714c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-75.429 33.143-143.429 85.143-190.286l-37.143-56-201.714 268c-6.857 9.714-17.714 14.857-29.143 14.857h-112.571c-17.714 124-124 219.429-253.143 219.429-141.143 0-256-114.857-256-256s114.857-256 256-256c44.571 0 86.286 11.429 122.857 31.429l78.286-104.571h-128c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h219.429v73.143h248.571l-48.571-73.143h-126.857c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286c12 0 23.429 6.286 30.286 16l152.571 228.571c33.143-16 70.286-25.143 109.714-25.143 141.143 0 256 114.857 256 256z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bicycle"
+ ],
+ "defaultCode": 61958,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bicycle",
+ "id": 472,
+ "order": 1328,
+ "prevSize": 28,
+ "code": 61958
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 472
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 694.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM804.571 694.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM778.286 468.571l-41.143-219.429c-3.429-17.143-18.286-29.714-36-29.714h-524.571c-17.714 0-32.571 12.571-36 29.714l-41.143 219.429c-4 22.857 13.143 43.429 36 43.429h606.857c22.857 0 40-20.571 36-43.429zM649.143 118.857c0-15.429-12-27.429-27.429-27.429h-365.714c-14.857 0-27.429 12-27.429 27.429s12.571 27.429 27.429 27.429h365.714c15.429 0 27.429-12 27.429-27.429zM877.714 533.143v344.571h-73.143v73.143c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143v-73.143h-438.857v73.143c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143v-73.143h-73.143v-344.571c0-46.857 4-81.714 14.286-127.429l58.857-259.429c10.857-91.429 170.857-146.286 365.714-146.286s354.857 54.857 365.714 146.286l60 259.429c10.286 45.714 13.143 80.571 13.143 127.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bus"
+ ],
+ "defaultCode": 61959,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bus",
+ "id": 473,
+ "order": 1329,
+ "prevSize": 28,
+ "code": 61959
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 473
+ },
+ {
+ "icon": {
+ "paths": [
+ "M836 475.429c0 26.857-21.714 49.143-49.143 49.143h-401.143c-27.429 0-49.143-22.286-49.143-49.143s21.714-49.143 49.143-49.143h401.143c27.429 0 49.143 22.286 49.143 49.143zM958.286 475.429c0-33.714-4.571-65.714-13.143-97.143h-561.143c-27.429 0-49.143-21.714-49.143-48.571 0-27.429 21.714-49.143 49.143-49.143h518.857c-65.714-106.857-183.429-177.714-317.143-177.714-205.714 0-373.143 166.857-373.143 372.571 0 33.714 4.571 65.714 13.143 97.143h561.143c27.429 0 49.143 21.714 49.143 48.571 0 27.429-21.714 49.143-49.143 49.143h-518.857c65.714 106.857 183.429 177.714 317.714 177.714 205.143 0 372.571-166.857 372.571-372.571zM1170.286 329.714c0 26.857-21.714 48.571-49.143 48.571h-74.857c6.286 31.429 9.714 64 9.714 97.143 0 259.429-210.857 470.857-470.286 470.857-190.286 0-354.286-113.143-428.571-276h-108c-27.429 0-49.143-21.714-49.143-49.143 0-26.857 21.714-48.571 49.143-48.571h75.429c-6.286-31.429-9.714-64-9.714-97.143 0-259.429 210.857-470.857 470.857-470.857 189.714 0 353.714 113.143 428 276h107.429c27.429 0 49.143 21.714 49.143 49.143z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ioxhost"
+ ],
+ "defaultCode": 61960,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "ioxhost",
+ "id": 474,
+ "order": 1330,
+ "prevSize": 28,
+ "code": 61960
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 474
+ },
+ {
+ "icon": {
+ "paths": [
+ "M544.571 216l-65.143 187.429 66.857 12c17.143-46.857 94.286-257.714 94.286-296 0-14.286-4.571-32-21.714-32-32 0-66.286 104-74.286 128.571zM373.714 608.571c6.286 16.571 13.143 33.143 18.857 50.286 12.571-14.286 25.714-27.429 40.571-38.286-20-4-40-5.714-59.429-12zM206.857 96.571c0 58.286 69.143 240 90.857 297.714 8-4.571 18.286-5.714 28-5.714 13.714 0 29.143 1.714 42.857 2.857l-69.143-200.571c-7.429-21.714-40.571-125.714-70.286-125.714-15.429 0-22.286 18.286-22.286 31.429zM161.714 530.286c0 41.714 112 195.429 153.714 195.429 11.429 0 21.143-12.571 21.143-22.857 0-13.143-13.143-45.714-18.286-58.286-14.857-38.286-69.143-156.571-116-156.571-15.429 0-40.571 26.857-40.571 42.286zM71.429 721.714c0 20.571 6.857 40.571 14.286 59.429 45.143 111.429 146.857 176.571 265.714 176.571 86.857 0 160-33.143 218.286-97.143 61.714-68.571 86.857-153.143 86.857-244 0-32 0.571-82.857-24.571-105.714-48-42.286-210.857-58.286-275.429-58.286-8 0-21.714 0.571-28 6.286-6.857 2.857-6.857 13.714-6.857 20 0 87.429 184.571 79.429 240 79.429 10.857 0 16 2.857 22.857 10.857 7.429 9.143 9.714 20 10.857 31.429-14.857 14.857-35.429 23.429-54.857 30.857-18.857 6.857-37.143 14.286-53.143 26.286-44 32-87.429 86.857-87.429 143.429 0 35.429 21.143 65.714 21.143 100.571 0 0.571-4 13.143-4 14.857-65.143-4.571-81.143-69.143-83.429-123.429-6.857 1.714-16 1.143-23.429 1.143 1.143 4 1.143 8 1.143 12 0 41.714-37.143 72-77.143 72-61.714 0-143.429-72.571-143.429-135.429 0-17.143 7.429-26.857 18.857-38.286 11.429 14.286 23.429 28.571 34.286 43.429 16.571 22.286 45.143 59.429 76 59.429 8 0 23.429-6.857 23.429-16.571 0-25.714-93.714-146.286-116.571-146.286-36 0-55.429 47.429-55.429 77.143zM6.286 726.857c0-74.286 28.571-123.429 102.286-143.429-6.286-16.571-16-41.714-16-59.429 0-46.857 57.714-105.143 104.571-105.143 13.714 0 27.429 4 40 8.571-24-68-93.143-259.429-93.143-324 0-57.714 29.143-103.429 91.429-103.429 80 0 170.857 288 190.286 345.143 25.143-62.857 104-326.286 193.143-326.286 56 0 87.429 44.571 87.429 97.714 0 60.571-67.429 249.143-90.857 314.286 96 23.429 109.714 101.143 109.714 187.429 0 228.571-145.714 405.714-381.714 405.714-43.429 0-86.286-8.571-127.429-24-108.571-41.143-209.714-152.571-209.714-273.143z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "angellist"
+ ],
+ "defaultCode": 61961,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "angellist",
+ "id": 475,
+ "order": 1331,
+ "prevSize": 28,
+ "code": 61961
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 475
+ },
+ {
+ "icon": {
+ "paths": [
+ "M448.571 576h118.286c-10.857 120.571-80 193.714-178.857 193.714-123.429 0-198.286-94.857-198.286-246.857 0-150.857 82.286-245.143 186.286-245.143 114.286 0 178.286 70.857 188 190.857h-116c-4-48.571-28-76.571-66.857-76.571-42.857 0-68.571 45.714-68.571 136 0 65.714 11.429 127.429 73.714 127.429 39.429 0 57.714-34.286 62.286-79.429zM855.429 576h117.714c-10.857 120.571-79.429 193.714-178.286 193.714-123.429 0-198.286-94.857-198.286-246.857 0-150.857 82.286-245.143 186.286-245.143 114.286 0 178.286 70.857 188 190.857h-116.571c-3.429-48.571-28-76.571-66.286-76.571-42.857 0-68.571 45.714-68.571 136 0 65.714 10.857 127.429 73.143 127.429 39.429 0 58.286-34.286 62.857-79.429zM1060.571 508c0-153.143-8-219.429-43.429-267.429-7.429-9.714-19.429-16-29.143-22.857-36-26.286-203.429-36-398.286-36s-370.286 9.714-405.714 36c-10.286 7.429-22.857 13.143-30.286 22.857-35.429 47.429-42.857 114.286-42.857 267.429 0 153.714 8 220 42.857 267.429 8 10.857 20 15.429 30.286 23.429 35.429 26.286 210.857 37.143 405.714 37.143s362.286-10.286 398.286-37.143c9.714-7.429 22.286-12 29.143-23.429 36-46.857 43.429-113.714 43.429-267.429zM1170.286 73.143v877.714h-1170.286v-877.714h1170.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc"
+ ],
+ "defaultCode": 61962,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cc",
+ "id": 476,
+ "order": 1332,
+ "prevSize": 28,
+ "code": 61962
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 476
+ },
+ {
+ "icon": {
+ "paths": [
+ "M566.857 356.571v283.429c0 10.286-8 18.286-18.286 18.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-283.429c0-85.714-69.714-155.429-155.429-155.429h-155.429v658.286c0 10.286-8 18.286-18.286 18.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-768c0-10.286 8-18.286 18.286-18.286h265.143c156.571 0 283.429 126.857 283.429 283.429zM786.286 91.429v502.857c0 156.571-126.857 283.429-283.429 283.429h-265.143c-10.286 0-18.286-8-18.286-18.286v-548.571c0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286v438.857h155.429c85.714 0 155.429-69.714 155.429-155.429v-502.857c0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 786.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ils",
+ "shekel",
+ "sheqel"
+ ],
+ "defaultCode": 61963,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "ils, shekel, sheqel",
+ "id": 477,
+ "order": 1333,
+ "prevSize": 28,
+ "code": 61963
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 477
+ },
+ {
+ "icon": {
+ "paths": [
+ "M749.143 481.143v65.143c0 18.286-10.857 29.714-29.143 29.714h-115.429c-18.286 0-29.714-11.429-29.714-29.714v-65.143c0-18.286 11.429-29.714 29.714-29.714h115.429c18.286 0 29.143 11.429 29.143 29.714zM469.143 612.571v-142.857c0-40.571-26.857-67.429-67.429-67.429h-76c-25.714 0-44.571 10.857-54.857 29.714-10.286-18.857-29.143-29.714-54.857-29.714h-74.286c-40 0-67.429 26.857-67.429 67.429v142.857c0 8.571 4 12.571 12 12.571h31.429c8.571 0 12.571-4 12.571-12.571v-131.429c0-18.286 10.857-29.714 29.714-29.714h53.714c18.286 0 29.714 11.429 29.714 29.714v131.429c0 8.571 3.429 12.571 12 12.571h30.857c8.571 0 12.571-4 12.571-12.571v-131.429c0-18.286 11.429-29.714 29.714-29.714h55.429c18.286 0 29.143 11.429 29.143 29.714v131.429c0 8.571 4 12.571 12.571 12.571h31.429c8 0 12-4 12-12.571zM805.714 557.714v-88c0-40.571-27.429-67.429-68-67.429h-150.857c-40.571 0-68 26.857-68 67.429v234.286c0 8.571 4.571 12 12.571 12h31.429c8.571 0 12-3.429 12-12v-102.857c10.857 14.857 28 24 53.714 24h109.143c40.571 0 68-27.429 68-67.429zM877.714 205.714v612.571c0 73.143-59.429 132.571-132.571 132.571h-612.571c-73.143 0-132.571-59.429-132.571-132.571v-612.571c0-73.143 59.429-132.571 132.571-132.571h612.571c73.143 0 132.571 59.429 132.571 132.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "meanpath"
+ ],
+ "defaultCode": 61964,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "meanpath",
+ "id": 478,
+ "order": 1334,
+ "prevSize": 28,
+ "code": 61964
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 478
+ },
+ {
+ "icon": {
+ "paths": [
+ "M522.857 620.571h-168l84-314.857zM572 804.571h177.714l-185.143-585.143h-251.429l-185.143 585.143h177.714l218.857-179.429zM877.714 237.714v548.571c0 90.286-74.286 164.571-164.571 164.571h-548.571c-90.286 0-164.571-74.286-164.571-164.571v-548.571c0-90.286 74.286-164.571 164.571-164.571h548.571c90.286 0 164.571 74.286 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "buysellads"
+ ],
+ "defaultCode": 61965,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "buysellads",
+ "id": 479,
+ "order": 1335,
+ "prevSize": 28,
+ "code": 61965
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 479
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1170.286 511.429c0 16-11.429 29.143-26.286 32l-117.143 203.429c1.143 3.429 1.714 6.857 1.714 10.286 0 15.429-10.857 28.571-25.714 31.429l-110.286 192.571c1.143 2.857 1.714 5.714 1.714 9.143 0 17.714-14.286 32.571-32.571 32.571-9.143 0-17.714-4-23.429-10.286h-228.571c-5.714 6.857-14.857 11.429-24.571 11.429s-18.857-4.571-24.571-11.429h-228c-5.714 6.857-14.286 11.429-24.571 11.429-17.714 0-32.571-14.286-32.571-32.571 0-4 1.143-8 2.286-11.429l-110.286-191.429c-14.857-2.857-25.714-16-25.714-31.429 0-4 0.571-6.857 1.714-10.286l-117.714-203.429c-14.857-3.429-25.714-16.571-25.714-32 0-16 11.429-29.143 26.857-32l113.714-196.571c0-1.143-0.571-2.286-0.571-3.429 0-13.143 8-24 19.429-29.143l119.429-207.429c-1.143-2.857-2.286-6.857-2.286-10.286 0-18.286 14.857-32.571 32.571-32.571 10.286 0 18.857 4.571 25.143 12h226.286c5.714-7.429 14.286-12 24.571-12s18.857 4.571 24.571 12h227.429c6.286-7.429 14.857-12 25.143-12 17.714 0 32.571 14.286 32.571 32.571 0 3.429-1.143 6.857-2.286 10.286l118.286 204.571c17.143 0.571 31.429 14.857 31.429 32 0 5.714-1.714 10.857-4 15.429l106.857 185.143c14.286 2.857 25.143 16 25.143 31.429zM607.429 968h222.286l-195.429-202.286h-81.714l-195.429 202.286h205.714c5.714-5.143 13.714-9.143 22.286-9.143s16.571 4 22.286 9.143zM64 504c0.571 2.286 0.571 4.571 0.571 7.429s0 5.714-1.143 8.571l118.857 205.714c2.857 0.571 5.714 2.286 8.571 3.429l107.429-113.714v-198.286l-106.857-110.857c-5.143 3.429-10.857 5.143-16.571 5.714zM563.429 56h-221.714l108.571 114.286 316.571-114.286h-160c-5.714 5.714-13.143 9.143-21.714 9.143s-16-3.429-21.714-9.143zM965.143 748.571c0.571-2.286 1.714-4.571 2.857-6.286l-36.571-38.857-9.714 45.143h43.429zM904.571 748.571l12.571-60-144-152-169.143 175.429 36 36.571h264.571zM854.286 958.857l9.143-16 37.143-177.143h-244l190.286 196c2.286-1.143 4.571-2.286 7.429-2.857zM330.286 968h2.857l195.429-202.286h-213.143v191.429l2.286 3.429c5.143 1.714 9.143 4 12.571 7.429zM315.429 748.571h229.714l36.571-37.714-176.571-183.429-89.714 94.857v126.286zM205.143 748.571h93.143v-108l-96 101.143c1.143 2.286 2.286 4.571 2.857 6.857zM204.571 277.143c0 0.571 0.571 1.714 0.571 2.286 0 6.286-1.714 12-4.571 16.571l97.714 101.143v-153.714zM315.429 237.143v177.714l87.429 89.714 169.714-179.429-127.429-134.857zM317.714 63.429l-2.286 4.571v150.857l117.143-42.286-109.143-114.857c-1.714 0.571-3.429 1.143-5.714 1.714zM826.857 56h-9.143l-354.857 128 121.714 128.571zM584.571 337.143l-169.714 180 177.714 182.286 169.143-175.429zM393.143 515.429l-77.714-80.571v162.286zM593.143 723.429l-24 25.143h48.571zM785.143 524.571l136 143.429 75.429-356.571-1.714-2.857-0.571-0.571zM981.714 296c-2.857-4.571-4.571-10.286-4.571-16.571v-1.143l-123.429-214.857c-2.857-0.571-5.143-1.714-7.429-2.857l-249.714 264.571 177.143 186.857zM298.286 225.143v-127.429l-93.143 161.143zM298.286 765.714h-93.143l93.143 161.714v-161.714zM918.286 765.714l-27.429 129.714 74.286-129.714h-46.857zM988 725.714l118.286-206.286c-0.571-2.857-1.143-5.143-1.143-8 0-3.429 1.143-6.286 1.714-9.143l-97.714-169.143-73.714 349.714 44 46.857c2.857-1.714 5.714-2.857 8.571-4z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "connectdevelop"
+ ],
+ "defaultCode": 61966,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "connectdevelop",
+ "id": 480,
+ "order": 1336,
+ "prevSize": 28,
+ "code": 61966
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 480
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 388.571c0-98.857 78.857-184 179.429-184h424l201.143-204.571v840c0 99.429-78.857 184-179.429 184h-445.714c-100.571 0-179.429-84.571-179.429-184v-451.429zM704 819.429l-100.571-102.857v-242.857c0-34.857-28-64-62.857-64h-276.571c-34.857 0-62.857 29.143-62.857 64v281.143c0 34.857 28 64.571 62.857 64.571h440z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dashcube"
+ ],
+ "defaultCode": 61968,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "dashcube",
+ "id": 481,
+ "order": 1337,
+ "prevSize": 28,
+ "code": 61968
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 481
+ },
+ {
+ "icon": {
+ "paths": [
+ "M533.714 85.714c-241.714 92-432 285.143-522.286 527.429-7.429-33.143-11.429-66.857-11.429-100.571 0-241.714 195.429-437.714 437.143-437.714 32.571 0 65.143 4 96.571 10.857zM687.429 153.714c35.429 24.571 66.857 54.286 93.714 88.571-296 86.286-527.429 318.857-612 615.429-33.714-26.286-64-57.143-88.571-92.571 85.143-293.714 313.714-524.571 606.857-611.429zM268.571 916c88-271.429 300.571-485.143 570.857-574.857 15.429 35.429 25.714 73.143 30.857 111.429-222.857 91.429-400 269.714-490.857 493.143-38.286-5.143-75.429-14.857-110.857-29.714zM877.714 949.143c-70.857-18.286-141.143-40-209.714-65.714-50.286 31.429-106.857 52.571-165.714 61.143 83.429-156 212-285.143 367.429-369.143-8 57.143-28 113.143-57.714 162.286 25.714 69.143 47.429 140 65.714 211.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "forumbee"
+ ],
+ "defaultCode": 61969,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "forumbee",
+ "id": 482,
+ "order": 1338,
+ "prevSize": 28,
+ "code": 61969
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 482
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1081.714 224l88.571 726.857c-53.143 0-98.857-10.857-146.857-32.571-71.429-32.571-145.714-52-224.571-52-81.143 0-156 26.857-213.714 84.571-57.714-57.714-132.571-84.571-213.714-84.571-78.857 0-153.143 19.429-224.571 52-46.286 20.571-93.143 32.571-144 32.571h-2.857l88.571-726.857c81.714-46.286 181.143-72.571 275.429-72.571 77.143 0 156.571 16 221.143 60.571 64.571-44.571 144-60.571 221.143-60.571 94.286 0 193.714 26.286 275.429 72.571zM798.857 788c108.571 0 182.857 29.143 281.143 69.714l-70.857-583.429c-64-29.143-140-44.571-210.286-44.571-80 0-154.857 25.143-213.714 80.571-58.857-55.429-133.714-80.571-213.714-80.571-70.286 0-146.286 15.429-210.286 44.571l-70.857 583.429c98.286-40.571 172.571-69.714 281.143-69.714 78.286 0 147.429 20 213.714 61.714 66.286-41.714 135.429-61.714 213.714-61.714zM821.714 768.571l-31.429-518.286c-82.286 1.714-147.429 29.714-205.143 88.571-60-61.143-128-88.571-213.714-88.571-64 0-132.571 13.143-192 37.714l-65.143 537.714c86.286-35.429 162.286-57.714 257.143-57.714 75.429 0 149.143 18.286 213.714 58.286 64.571-40 138.286-60 213.714-58.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "leanpub"
+ ],
+ "defaultCode": 61970,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "leanpub",
+ "id": 483,
+ "order": 1339,
+ "prevSize": 28,
+ "code": 61970
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 483
+ },
+ {
+ "icon": {
+ "paths": [
+ "M857.143 783.429v-418.857c0-16-13.143-29.143-28.571-29.143h-53.143c-15.429 0-28.571 13.143-28.571 29.143v418.857c0 15.429 13.143 28.571 28.571 28.571h53.143c15.429 0 28.571-13.143 28.571-28.571zM694.857 783.429v-303.429c0-15.429-13.143-28.571-28.571-28.571h-57.714c-15.429 0-28.571 13.143-28.571 28.571v303.429c0 15.429 13.143 28.571 28.571 28.571h57.714c15.429 0 28.571-13.143 28.571-28.571zM528 783.429v-245.143c0-15.429-13.143-28.571-28.571-28.571h-57.714c-15.429 0-28.571 13.143-28.571 28.571v245.143c0 15.429 13.143 28.571 28.571 28.571h57.714c15.429 0 28.571-13.143 28.571-28.571zM361.143 783.429v-206.857c0-15.429-13.143-28.571-28.571-28.571h-57.714c-15.429 0-28.571 13.143-28.571 28.571v206.857c0 15.429 13.143 28.571 28.571 28.571h57.714c15.429 0 28.571-13.143 28.571-28.571zM1170.286 700c0 126.857-103.429 229.714-229.714 229.714h-710.857c-126.286 0-229.714-102.857-229.714-229.714 0-88.571 52-169.714 132-207.429-4-13.714-5.714-28-5.714-41.714 0-86.286 70.286-156.571 156.571-156.571 37.714 0 74.286 13.714 102.857 38.286 34.286-139.429 160-238.286 304-238.286 172.571 0 313.143 140.571 313.143 313.143 0 23.429-2.286 46.857-8 69.714 102.857 25.143 175.429 117.714 175.429 222.857z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sellsy"
+ ],
+ "defaultCode": 61971,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sellsy",
+ "id": 484,
+ "order": 1340,
+ "prevSize": 28,
+ "code": 61971
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 484
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 0h877.714v795.429l-443.429 193.143-434.286-193.143v-795.429zM820.571 758.286v-529.143h-763.429v529.143l377.714 168zM820.571 172v-114.857h-763.429v114.857h763.429zM103.429 342.286v65.714h-21.143v-65.714h21.143zM103.429 426.857v65.714h-21.143v-65.714h21.143zM103.429 511.429v65.714h-21.143v-65.714h21.143zM103.429 596v65.714h-21.143v-65.714h21.143zM103.429 680.571v65.714h-21.143v-65.714h21.143zM118.286 762.286l8.571-19.429 60 26.857-8.571 18.857zM196 796.571l8.571-19.429 60 26.286-8.571 19.429zM273.143 830.857l8.571-19.429 60 26.286-8.571 19.429zM350.857 864.571l8.571-18.857 59.429 26.286-8.571 19.429zM455.429 872l60-26.286 8.571 18.857-60 26.857zM532.571 837.714l60-26.286 8.571 19.429-60 26.286zM610.286 803.429l60-26.286 8.571 19.429-60 26.286zM687.429 769.714l60-26.857 8.571 19.429-60 26.286zM148 84v20.571h-65.143v-20.571h65.143zM240.571 84v20.571h-65.714v-20.571h65.714zM333.143 84v20.571h-65.714v-20.571h65.714zM425.143 84v20.571h-65.143v-20.571h65.143zM517.714 84v20.571h-65.143v-20.571h65.143zM610.286 84v20.571h-65.714v-20.571h65.714zM702.857 84v20.571h-65.714v-20.571h65.714zM794.857 84v20.571h-65.143v-20.571h65.143zM103.429 278.286v45.143h-21.143v-65.714h65.714v20.571h-44.571zM240.571 257.714v20.571h-65.714v-20.571h65.714zM333.143 257.714v20.571h-65.714v-20.571h65.714zM425.143 257.714v20.571h-65.143v-20.571h65.143zM517.714 257.714v20.571h-65.143v-20.571h65.143zM610.286 257.714v20.571h-65.714v-20.571h65.714zM702.857 257.714v20.571h-65.714v-20.571h65.714zM774.286 323.429v-45.143h-44.571v-20.571h65.714v65.714h-21.143zM774.286 408v-65.714h21.143v65.714h-21.143zM774.286 492.571v-65.714h21.143v65.714h-21.143zM774.286 577.143v-65.714h21.143v65.714h-21.143zM774.286 661.714v-65.714h21.143v65.714h-21.143zM774.286 746.286v-65.714h21.143v65.714h-21.143zM434.286 726.286c-98.286 0-178.857-80-178.857-178.857 0-98.286 80.571-178.857 178.857-178.857 98.857 0 178.857 80.571 178.857 178.857 0 98.857-80 178.857-178.857 178.857zM340 508.571c0 86.857 152 23.429 152 74.286 0 25.714-46.857 28-64 28-24 0-58.286-5.143-70.286-29.143h-1.714l-17.714 36c29.143 18.286 57.143 24 92.571 24 38.286 0 100-11.429 100-61.143 0-94.286-153.714-32-153.714-74.286 0-25.714 40.571-29.143 58.286-29.143 21.143 0 57.143 6.286 69.714 25.714h1.714l17.143-33.143c-29.714-12-53.714-23.429-86.857-23.429-39.429 0-97.143 12.571-97.143 62.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shirtsinbulk"
+ ],
+ "defaultCode": 61972,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "shirtsinbulk",
+ "id": 485,
+ "order": 1341,
+ "prevSize": 28,
+ "code": 61972
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 485
+ },
+ {
+ "icon": {
+ "paths": [
+ "M493.143 589.714c0-85.714-69.143-154.857-154.857-154.857-85.143 0-154.286 69.143-154.286 154.857 0 85.143 69.143 154.286 154.286 154.286 85.714 0 154.857-69.143 154.857-154.286zM986.286 589.143c0-85.143-69.143-154.286-154.286-154.286-85.714 0-154.857 69.143-154.857 154.286 0 85.714 69.143 154.857 154.857 154.857 85.143 0 154.286-69.143 154.286-154.857zM1170.286 126.857v770.286c0 33.714-27.429 61.143-61.714 61.143h-1046.857c-34.286 0-61.714-27.429-61.714-61.143v-770.286c0-33.714 27.429-61.143 61.714-61.143h246.286c33.714 0 61.714 27.429 61.714 61.143v92h430.857v-92c0-33.714 28-61.143 61.714-61.143h246.286c34.286 0 61.714 27.429 61.714 61.143z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "simplybuilt"
+ ],
+ "defaultCode": 61973,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "simplybuilt",
+ "id": 486,
+ "order": 1342,
+ "prevSize": 28,
+ "code": 61973
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 486
+ },
+ {
+ "icon": {
+ "paths": [
+ "M817.143 333.143c0 0-0.571-0.571 0 0v0zM965.714 449.714c110.857 0 204.571 82.857 204.571 196 0 120.571-96 209.143-214.857 209.143-303.429 0-359.429-456.571-657.714-456.571-115.429 0-199.429 73.714-199.429 192 0 122.286 91.429 196 209.714 196 77.714 0 166.286-32.571 229.143-77.714 10.286-7.429 30.857-29.714 41.714-29.714s20 9.143 20 20c0 14.286-24 34.857-34.286 44-74.857 65.143-183.429 112-282.857 112-152.571 0-281.714-108-281.714-265.143s123.429-272.571 279.429-272.571c338.857 0 406.857 449.714 661.714 449.714 76.571 0 134.286-49.714 134.286-128 0-72.571-56-127.429-128-127.429-32 0-64 21.143-85.714 21.143-15.429 0-29.143-13.143-29.143-28.571 0-21.143 9.714-43.429 9.714-66.286 0-121.714-93.143-209.714-213.714-209.714-97.143 0-146.286 67.429-162.286 67.429-11.429 0-20.571-9.143-20.571-20.571 0-10.286 7.429-18.857 14.286-26.286 46.286-52.571 118.286-80 188-80 145.143 0 254.286 106.857 254.286 252 0 12.571-0.571 25.143-2.286 37.714 21.714-5.714 44-8.571 65.714-8.571z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "skyatlas"
+ ],
+ "defaultCode": 61974,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "skyatlas",
+ "id": 487,
+ "order": 1343,
+ "prevSize": 28,
+ "code": 61974
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 487
+ },
+ {
+ "icon": {
+ "paths": [
+ "M694.857 402.286c0-20-16.571-36.571-36.571-36.571h-73.143v-73.143c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571v73.143h-73.143c-20 0-36.571 16.571-36.571 36.571s16.571 36.571 36.571 36.571h73.143v73.143c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571v-73.143h73.143c20 0 36.571-16.571 36.571-36.571zM365.714 877.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM877.714 877.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM950.857 256v292.571c0 18.286-13.714 34.286-32.571 36.571l-596.571 69.714c2.286 12.571 7.429 26.857 7.429 40s-8 25.143-13.714 36.571h525.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-585.143c-20 0-36.571-16.571-36.571-36.571 0-17.714 26.857-61.714 34.857-78.286l-101.143-470.286h-116.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286c38.857 0 39.429 45.714 45.143 73.143h686.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cart-plus"
+ ],
+ "defaultCode": 61975,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cart-plus",
+ "id": 488,
+ "order": 1344,
+ "prevSize": 28,
+ "code": 61975
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 488
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 402.286c0-20-16.571-36.571-36.571-36.571-9.714 0-18.857 4-25.714 10.857l-84 83.429v-167.429c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571v167.429l-84-83.429c-6.857-6.857-16-10.857-25.714-10.857-20 0-36.571 16.571-36.571 36.571 0 9.714 4 18.857 10.857 25.714l146.286 146.286c6.857 6.857 16 10.857 25.714 10.857s18.857-4 25.714-10.857l146.286-146.286c6.857-6.857 10.857-16 10.857-25.714zM365.714 877.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM877.714 877.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM950.857 256v292.571c0 18.286-13.714 34.286-32.571 36.571l-596.571 69.714c2.286 12.571 7.429 26.857 7.429 40s-8 25.143-13.714 36.571h525.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-585.143c-20 0-36.571-16.571-36.571-36.571 0-17.714 26.857-61.714 34.857-78.286l-101.143-470.286h-116.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286c38.857 0 39.429 45.714 45.143 73.143h686.286c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cart-arrow-down"
+ ],
+ "defaultCode": 61976,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cart-arrow-down",
+ "id": 489,
+ "order": 1345,
+ "prevSize": 28,
+ "code": 61976
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 489
+ },
+ {
+ "icon": {
+ "paths": [
+ "M121.143 438.857l356 380-171.429-380h-184.571zM585.143 880l199.429-441.143h-398.857zM307.429 365.714l116.571-219.429h-149.714l-164.571 219.429h197.714zM693.143 818.857l356-380h-184.571zM390.286 365.714h389.714l-116.571-219.429h-156.571zM862.857 365.714h197.714l-164.571-219.429h-149.714zM943.429 88l219.429 292.571c10.857 13.714 9.714 33.714-2.286 46.857l-548.571 585.143c-6.857 7.429-16.571 11.429-26.857 11.429s-20-4-26.857-11.429l-548.571-585.143c-12-13.143-13.143-33.143-2.286-46.857l219.429-292.571c6.857-9.714 17.714-14.857 29.143-14.857h658.286c11.429 0 22.286 5.143 29.143 14.857z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "diamond"
+ ],
+ "defaultCode": 61977,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "diamond",
+ "id": 490,
+ "order": 1346,
+ "prevSize": 28,
+ "code": 61977
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 490
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1034.857 888.571c14.286-14.286 37.143-14.286 51.429 0l73.143 73.143-51.429 51.429-47.429-47.429-47.429 47.429c-6.857 7.429-16.571 10.857-25.714 10.857s-18.857-3.429-25.714-10.857l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-73.143-73.143 51.429-51.429 47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429zM135.429 866.857c-14.286 14.286-37.143 14.286-51.429 0l-73.143-73.143 51.429-51.429 47.429 46.857 47.429-46.857c14.286-14.286 37.143-14.286 51.429 0l47.429 46.857 36.571-36.571v-167.429l-120-179.429c-13.143-20-4-47.429 18.857-55.429l101.143-33.143v-170.857h73.143v-73.143h146.286v-73.143h146.286v73.143h146.286v73.143h73.143v170.857l101.143 33.143c22.857 8 32 35.429 18.857 55.429l-120 179.429v167.429l10.857-10.286c14.286-14.286 37.143-14.286 51.429 0l47.429 46.857 47.429-46.857c14.286-14.286 37.143-14.286 51.429 0l73.143 73.143-51.429 51.429-47.429-47.429-47.429 47.429c-6.857 7.429-16.571 10.857-25.714 10.857s-18.857-3.429-25.714-10.857l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429zM365.714 219.429v73.143l219.429-73.143 219.429 73.143v-73.143h-73.143v-73.143h-292.571v73.143h-73.143z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ship"
+ ],
+ "defaultCode": 61978,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "ship",
+ "id": 491,
+ "order": 1347,
+ "prevSize": 28,
+ "code": 61978
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 491
+ },
+ {
+ "icon": {
+ "paths": [
+ "M329.143 877.714l54.857-256-54.857-73.143-73.143-36.571zM475.429 877.714l73.143-365.714-73.143 36.571-54.857 73.143zM566.857 300.571c-0.571-1.143-1.143-2.286-2.286-3.429-5.143-4-46.286-4.571-54.857-4.571-32.571 0-63.429 4.571-95.429 10.857-4 1.143-8 1.143-12 1.143s-8 0-12-1.143c-32-6.286-62.857-10.857-95.429-10.857-8.571 0-49.714 0.571-54.857 4.571-1.143 1.143-1.714 2.286-2.286 3.429 0.571 5.143 1.143 10.286 2.286 15.429 3.429 4.571 6.286 2.857 8.571 9.714 14.857 40.571 21.714 72 73.143 72 73.714 0 53.143-68 77.143-68h6.857c24 0 3.429 68 77.143 68 51.429 0 58.286-31.429 73.143-72 2.286-6.857 5.143-5.143 8.571-9.714 1.143-5.143 1.714-10.286 2.286-15.429zM804.571 802.857c0 93.143-61.143 148-152.571 148h-499.429c-91.429 0-152.571-54.857-152.571-148 0-103.429 18.286-260 124.571-311.429l-51.429-125.714h122.286c-8-23.429-12.571-48-12.571-73.143 0-6.286 0.571-12.571 1.143-18.286-22.286-4.571-110.857-22.857-110.857-54.857 0-33.714 97.143-52 120-56.571 12-42.857 40.571-108 69.714-141.714 11.429-13.143 25.714-21.143 43.429-21.143 34.286 0 61.714 35.429 96 35.429s61.714-35.429 96-35.429c17.714 0 32 8 43.429 21.143 29.143 33.714 57.714 98.857 69.714 141.714 22.857 4.571 120 22.857 120 56.571 0 32-88.571 50.286-110.857 54.857 2.857 30.857-1.143 61.714-11.429 91.429h122.286l-46.857 128.571c102.286 53.143 120 206.857 120 308.571z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-secret"
+ ],
+ "defaultCode": 61979,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "user-secret",
+ "id": 492,
+ "order": 1348,
+ "prevSize": 28,
+ "code": 61979
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 492
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1314.857 592c18.286 160.571-112.571 295.429-272 285.143-122.286-8-224-105.714-236.571-228-9.143-86.857 25.143-165.143 83.429-217.714l-40.571-61.143c-72 60-117.714 149.714-117.714 250.286 0 20.571-16 37.714-36.571 37.714h-185.714c-17.714 124-124 219.429-253.143 219.429-141.143 0-256-114.857-256-256s114.857-256 256-256c30.286 0 59.429 5.714 86.857 15.429l13.714-25.714c-44-39.429-101.714-62.857-173.714-62.857h-36.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h73.143c128 0 193.143 52.571 219.429 73.143h358.286l-48.571-73.143h-126.857c-22.286 0-40-20-36-42.857 2.857-17.714 20-30.286 37.714-30.286h144.571c12 0 23.429 6.286 30.286 16l40 60 65.143-65.143c6.857-6.857 16.571-10.857 26.286-10.857h57.714c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-102.286l65.714 98.286c46.286-22.286 100-31.429 157.143-20.571 109.143 20 194.286 111.429 206.857 221.714zM256 804.571c88.571 0 162.286-62.857 179.429-146.286h-179.429c-12.571 0-24.571-6.857-31.429-17.714-6.286-10.857-6.857-24.571-0.571-36l84-158.286c-16.571-4.571-33.714-7.429-52-7.429-100.571 0-182.857 82.286-182.857 182.857s82.286 182.857 182.857 182.857zM1060.571 804.571c100.571 0 182.857-82.286 182.857-182.857s-82.286-182.857-182.857-182.857c-24.571 0-47.429 5.143-69.143 13.714l99.429 148.571c11.429 17.143 6.857 40-9.714 50.857-6.286 4.571-13.714 6.286-20.571 6.286-12 0-23.429-5.714-30.286-16.571l-99.429-148.571c-32.571 33.143-53.143 78.286-53.143 128.571 0 100.571 82.286 182.857 182.857 182.857z"
+ ],
+ "width": 1333.174857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "motorcycle"
+ ],
+ "defaultCode": 61980,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "motorcycle",
+ "id": 493,
+ "order": 1349,
+ "prevSize": 28,
+ "code": 61980
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 493
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 877.714c0 100.571-208.571 146.286-402.286 146.286s-402.286-45.714-402.286-146.286c0-77.714 116-114.286 213.143-130.857 20-3.429 38.857 9.714 42.286 29.714s-9.714 38.857-29.714 42.286c-117.714 20.571-150.857 52.571-152.571 59.429 5.714 19.429 115.429 72.571 329.143 72.571s323.429-53.143 329.143-73.714c-1.714-5.714-34.857-37.714-152.571-58.286-20-3.429-33.143-22.286-29.714-42.286s22.286-33.143 42.286-29.714c97.143 16.571 213.143 53.143 213.143 130.857zM585.143 365.714v219.429c0 20-16.571 36.571-36.571 36.571h-36.571v219.429c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-219.429h-36.571c-20 0-36.571-16.571-36.571-36.571v-219.429c0-40.571 32.571-73.143 73.143-73.143h219.429c40.571 0 73.143 32.571 73.143 73.143zM530.286 146.286c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "street-view"
+ ],
+ "defaultCode": 61981,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "street-view",
+ "id": 494,
+ "order": 1350,
+ "prevSize": 28,
+ "code": 61981
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 494
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 585.143h174.286c-6.857 7.429-11.429 11.429-12.571 12.571l-356 342.857c-6.857 6.857-16 10.286-25.143 10.286s-18.286-3.429-25.143-10.286l-356.571-344c-1.143-0.571-5.714-4.571-12-11.429h210.857c16.571 0 31.429-11.429 35.429-27.429l40-160.571 108.571 381.143c4.571 15.429 18.857 26.286 35.429 26.286v0c16 0 30.286-10.857 34.857-26.286l83.429-277.143 32 64c6.286 12 18.857 20 32.571 20zM1024 340.571c0 65.714-28.571 125.714-58.857 171.429h-210.857l-63.429-126.286c-6.286-13.143-21.143-21.143-35.429-20-15.429 1.714-28 11.429-32 26.286l-73.714 245.714-112-392c-4.571-15.429-18.857-26.286-36-26.286-16.571 0-30.857 11.429-34.857 27.429l-66.286 265.143h-241.714c-30.286-45.714-58.857-105.714-58.857-171.429 0-167.429 102.286-267.429 273.143-267.429 100 0 193.714 78.857 238.857 123.429 45.143-44.571 138.857-123.429 238.857-123.429 170.857 0 273.143 100 273.143 267.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "heartbeat"
+ ],
+ "defaultCode": 61982,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "heartbeat",
+ "id": 495,
+ "order": 1351,
+ "prevSize": 28,
+ "code": 61982
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 495
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658.286 329.143c0 169.143-128 308.571-292.571 326.857v148.571h128c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-128v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-128c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-148.571c-173.143-18.857-305.714-172.571-291.429-353.714 12.571-155.429 136-282.857 290.286-300 198.857-22.286 366.857 132.571 366.857 326.857zM73.143 329.143c0 141.143 114.857 256 256 256s256-114.857 256-256-114.857-256-256-256-256 114.857-256 256z"
+ ],
+ "width": 645.12,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "venus"
+ ],
+ "defaultCode": 61985,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "venus",
+ "id": 496,
+ "order": 1352,
+ "prevSize": 28,
+ "code": 61985
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 496
+ },
+ {
+ "icon": {
+ "paths": [
+ "M841.143 73.143c20 0 36.571 16.571 36.571 36.571v237.714c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-149.714l-218.286 218.857c45.143 56 72 127.429 72 205.143 0 181.714-147.429 329.143-329.143 329.143s-329.143-147.429-329.143-329.143 147.429-329.143 329.143-329.143c77.714 0 149.143 26.857 205.143 72l218.286-218.286h-149.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h237.714zM329.143 877.714c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mars"
+ ],
+ "defaultCode": 61986,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "mars",
+ "id": 497,
+ "order": 1353,
+ "prevSize": 28,
+ "code": 61986
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 497
+ },
+ {
+ "icon": {
+ "paths": [
+ "M474.286 180.571c108.571 53.714 184 165.714 184 294.857 0 169.143-128 308.571-292.571 326.857v75.429h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v54.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-75.429c-164.571-18.286-292.571-157.714-292.571-326.857 0-129.143 75.429-241.143 184-294.857-60-34.857-106.857-89.714-130.286-156-4.571-12 4.571-24.571 17.143-24.571h39.429c7.429 0 13.714 4.571 16.571 11.429 33.143 79.429 111.429 134.857 202.286 134.857s169.143-55.429 202.286-134.857c2.857-6.857 9.143-11.429 21.143-11.429h34.857c12.571 0 21.714 12.571 17.143 24.571-23.429 66.286-70.286 121.143-130.286 156zM329.143 731.429c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mercury"
+ ],
+ "defaultCode": 61987,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "mercury",
+ "id": 498,
+ "order": 1354,
+ "prevSize": 28,
+ "code": 61987
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 498
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 18.286c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c44.571 56 72 127.429 72 205.143 0 169.143-128 308.571-292.571 326.857v75.429h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v54.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-75.429c-172.571-18.857-305.714-172.571-291.429-353.143 12-155.429 135.429-282.857 289.714-300.571 92.571-10.857 178.286 17.714 243.429 69.714l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571zM329.143 731.429c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 791.4057142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "intersex",
+ "transgender"
+ ],
+ "defaultCode": 61988,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "intersex, transgender",
+ "id": 499,
+ "order": 1355,
+ "prevSize": 28,
+ "code": 61988
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 499
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 18.286c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c44.571 56 72 127.429 72 205.143 0 169.143-128 308.571-292.571 326.857v75.429h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v54.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-75.429c-164.571-18.286-292.571-157.714-292.571-326.857 0-77.714 27.429-149.143 72-205.143l-29.714-30.286-57.714 63.429c-6.857 7.429-18.286 8-25.714 1.714l-27.429-25.143c-7.429-6.286-8-18.286-1.143-25.714l60-65.714-63.429-64v76.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-164.571c0-20 16.571-36.571 36.571-36.571h164.571c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-76l60.571 61.143 49.143-53.714c6.857-7.429 18.286-8 25.714-1.714l27.429 25.143c7.429 6.286 8 18.286 1.143 25.714l-51.429 56.571 32.571 32c56-44.571 127.429-72 205.143-72s149.143 27.429 205.143 72l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571zM475.429 731.429c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "transgender-alt"
+ ],
+ "defaultCode": 61989,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "transgender-alt",
+ "id": 500,
+ "order": 1356,
+ "prevSize": 28,
+ "code": 61989
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 500
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1022.857 302.286c14.286 181.143-118.286 334.857-291.429 353.714v148.571h128c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-128v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-292.571v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-128c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-148.571c-173.143-18.857-305.714-172.571-291.429-353.714 12.571-157.143 138.857-285.714 295.429-300.571 80-8 154.857 13.143 215.429 53.714 60.571-40.571 135.429-61.714 215.429-53.714 156.571 14.857 282.857 143.429 295.429 300.571zM512 508c45.143-46.286 73.143-109.143 73.143-178.857s-28-132.571-73.143-178.857c-45.143 46.286-73.143 109.143-73.143 178.857s28 132.571 73.143 178.857zM329.143 585.143c45.143 0 87.429-12 124.571-32.571-54.857-58.857-88-137.143-88-223.429s33.714-164.571 88-223.429c-37.143-20.571-79.429-32.571-124.571-32.571-141.143 0-256 114.857-256 256s114.857 256 256 256zM658.286 804.571v-148.571c-53.714-5.714-103.429-25.143-146.286-53.714-42.857 28.571-92.571 48-146.286 53.714v148.571h292.571zM694.857 585.143c141.143 0 256-114.857 256-256s-114.857-256-256-256c-45.143 0-87.429 12-124.571 32.571 54.286 58.857 88 137.143 88 223.429s-33.143 164.571-88 223.429c37.143 20.571 79.429 32.571 124.571 32.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "venus-double"
+ ],
+ "defaultCode": 61990,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "venus-double",
+ "id": 501,
+ "order": 1357,
+ "prevSize": 28,
+ "code": 61990
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 501
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 237.714c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c56 70.286 84 163.429 66.857 263.429-24 138.857-137.143 248-276.571 267.429-163.429 22.857-308-74.857-357.714-217.143-180.571-9.143-322.857-164.571-310.857-350.286 10.286-156.571 134.286-286.857 290.286-304.571 92-10.857 177.714 17.714 243.429 69.714l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c22.857 28.571 40.571 61.143 53.143 96.571 70.857 3.429 135.429 29.714 187.429 70.857l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571zM585.143 475.429c0-11.429-1.143-22.286-2.286-33.143-122.857 18.857-217.143 124.571-217.143 252.571 0 11.429 1.143 22.286 2.286 33.143 122.857-18.857 217.143-124.571 217.143-252.571zM73.143 475.429c0 129.143 96.571 236 221.143 253.143-1.143-10.857-1.714-22.286-1.714-33.714 0-161.143 116.571-295.429 270.286-323.429-40-89.714-129.714-152-233.714-152-141.143 0-256 114.857-256 256zM621.714 950.857c141.143 0 256-114.857 256-256 0-129.143-96.571-236-221.143-253.143 1.143 10.857 1.714 22.286 1.714 33.714 0 161.143-116.571 295.429-270.286 323.429 40 89.714 129.714 152 233.714 152z"
+ ],
+ "width": 1085.7325714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mars-double"
+ ],
+ "defaultCode": 61991,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "mars-double",
+ "id": 502,
+ "order": 1358,
+ "prevSize": 28,
+ "code": 61991
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 502
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 18.286c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c56 70.286 84 163.429 66.857 263.429-24 137.143-135.429 246.286-273.143 266.857-86.857 13.143-168.571-8-233.714-51.429-42.857 28.571-92.571 47.429-146.286 53.143v75.429h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v54.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-75.429c-179.429-20-316-184.571-289.143-373.714 19.429-142.286 132.571-256.571 274.286-278.286 87.429-13.143 169.143 8 234.286 51.429 52.571-34.857 115.429-55.429 182.857-55.429 77.714 0 149.143 27.429 205.143 72l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571zM512 654.286c45.143-46.286 73.143-109.143 73.143-178.857s-28-132.571-73.143-178.857c-45.143 46.286-73.143 109.143-73.143 178.857s28 132.571 73.143 178.857zM73.143 475.429c0 141.143 114.857 256 256 256 45.143 0 88-12 124.571-32.571-54.286-58.857-88-137.143-88-223.429s33.714-164.571 88-223.429c-36.571-20.571-79.429-32.571-124.571-32.571-141.143 0-256 114.857-256 256zM694.857 731.429c141.143 0 256-114.857 256-256s-114.857-256-256-256c-45.143 0-88 12-124.571 32.571 54.286 58.857 88 137.143 88 223.429s-33.714 164.571-88 223.429c36.571 20.571 79.429 32.571 124.571 32.571z"
+ ],
+ "width": 1146.8799999999999,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "venus-mars"
+ ],
+ "defaultCode": 61992,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "venus-mars",
+ "id": 503,
+ "order": 1359,
+ "prevSize": 28,
+ "code": 61992
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 503
+ },
+ {
+ "icon": {
+ "paths": [
+ "M841.143 73.143c20 0 36.571 16.571 36.571 36.571v237.714c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-149.714l-121.714 122.286 80 80c6.857 7.429 6.857 18.857 0 25.714l-26.286 26.286c-6.857 6.857-18.286 6.857-25.714 0l-80-80.571-44.571 45.143c45.143 56 72 127.429 72 205.143 0 181.714-147.429 329.143-329.143 329.143s-329.143-147.429-329.143-329.143 147.429-329.143 329.143-329.143c77.714 0 149.143 26.857 205.143 72l44.571-44.571-98.286-98.286c-6.857-7.429-6.857-18.857 0-25.714l26.286-26.286c6.857-6.857 18.286-6.857 25.714 0l98.286 98.286 121.714-121.714h-149.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h237.714zM329.143 877.714c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mars-stroke"
+ ],
+ "defaultCode": 61993,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "mars-stroke",
+ "id": 504,
+ "order": 1360,
+ "prevSize": 28,
+ "code": 61993
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 504
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 368c164.571 18.286 292.571 157.714 292.571 326.857 0 194.286-168 349.143-366.857 326.857-154.286-17.143-277.714-144.571-290.286-300-14.286-181.143 118.286-334.857 291.429-353.714v-75.429h-91.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h91.429v-94.286l-52.571 52.571c-7.429 6.857-18.857 6.857-25.714 0l-26.286-26.286c-6.857-6.857-6.857-18.286 0-25.714l115.429-114.857c14.286-14.286 37.143-14.286 51.429 0l115.429 114.857c6.857 7.429 6.857 18.857 0 25.714l-26.286 26.286c-6.857 6.857-18.286 6.857-25.714 0l-52.571-52.571v94.286h91.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-91.429v75.429zM329.143 950.857c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 645.12,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mars-stroke-v"
+ ],
+ "defaultCode": 61994,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "mars-stroke-v",
+ "id": 505,
+ "order": 1361,
+ "prevSize": 28,
+ "code": 61994
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 505
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1086.286 522.857c14.286 14.286 14.286 37.143 0 51.429l-168 168c-6.857 7.429-18.857 7.429-25.714 0l-25.714-25.714c-7.429-6.857-7.429-18.857 0-25.714l105.714-105.714h-168v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-75.429c-18.286 164.571-157.714 292.571-326.857 292.571-194.286 0-349.143-168-326.857-366.857 17.143-154.286 144.571-277.714 300-290.286 181.143-14.286 334.857 118.286 353.714 291.429h75.429v-128c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v128h168l-105.714-105.714c-7.429-6.857-7.429-18.857 0-25.714l25.714-25.714c6.857-7.429 18.857-7.429 25.714 0zM329.143 804.571c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 1080.5394285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mars-stroke-h"
+ ],
+ "defaultCode": 61995,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "mars-stroke-h",
+ "id": 506,
+ "order": 1362,
+ "prevSize": 28,
+ "code": 61995
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 506
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658.286 329.143c0 169.143-128 308.571-292.571 326.857v349.714c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-349.714c-164.571-18.286-292.571-157.714-292.571-326.857 0-181.714 147.429-329.143 329.143-329.143s329.143 147.429 329.143 329.143zM329.143 585.143c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "neuter"
+ ],
+ "defaultCode": 61996,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "neuter",
+ "id": 507,
+ "order": 1363,
+ "prevSize": 28,
+ "code": 61996
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 507
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 548.571c0-141.143-114.857-256-256-256s-256 114.857-256 256 114.857 256 256 256 256-114.857 256-256zM658.286 548.571c0 181.714-147.429 329.143-329.143 329.143s-329.143-147.429-329.143-329.143 147.429-329.143 329.143-329.143 329.143 147.429 329.143 329.143z"
+ ],
+ "width": 658.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "genderless"
+ ],
+ "defaultCode": 61997,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "genderless",
+ "id": 508,
+ "order": 1364,
+ "prevSize": 28,
+ "code": 61997
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 508
+ },
+ {
+ "icon": {
+ "paths": [
+ "M829.143 73.143c26.857 0 48.571 21.714 48.571 48.571v780.571c0 26.857-21.714 48.571-48.571 48.571h-223.429v-340h113.714l17.143-132.571h-130.857v-84.571c0-38.286 10.286-64 65.714-64l69.714-0.571v-118.286c-12-1.714-53.714-5.143-101.714-5.143-101.143 0-170.857 61.714-170.857 174.857v97.714h-114.286v132.571h114.286v340h-420c-26.857 0-48.571-21.714-48.571-48.571v-780.571c0-26.857 21.714-48.571 48.571-48.571h780.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "facebook-official"
+ ],
+ "defaultCode": 62000,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "facebook-official",
+ "id": 509,
+ "order": 1365,
+ "prevSize": 28,
+ "code": 62000
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 509
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 341.143c0-210.857 193.143-341.143 388.571-341.143 179.429 0 342.857 123.429 342.857 312.571 0 177.714-90.857 374.857-293.143 374.857-48 0-108.571-24-132-68.571-43.429 172-40 197.714-136 329.143l-8 2.857-5.143-5.714c-3.429-36-8.571-71.429-8.571-107.429 0-116.571 53.714-285.143 80-398.286-14.286-29.143-18.286-64.571-18.286-96.571 0-57.714 40-130.857 105.143-130.857 48 0 73.714 36.571 73.714 81.714 0 74.286-50.286 144-50.286 216 0 49.143 40.571 83.429 88 83.429 131.429 0 172-189.714 172-290.857 0-135.429-96-209.143-225.714-209.143-150.857 0-267.429 108.571-267.429 261.714 0 73.714 45.143 111.429 45.143 129.143 0 14.857-10.857 67.429-29.714 67.429-2.857 0-6.857-1.143-9.714-1.714-81.714-24.571-111.429-133.714-111.429-208.571z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pinterest-p"
+ ],
+ "defaultCode": 62001,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "pinterest-p",
+ "id": 510,
+ "order": 1366,
+ "prevSize": 28,
+ "code": 62001
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 510
+ },
+ {
+ "icon": {
+ "paths": [
+ "M562.857 556.571c9.714 0 102.857 48.571 106.857 55.429 1.143 2.857 1.143 6.286 1.143 8.571 0 14.286-4.571 30.286-9.714 43.429-13.143 32-66.286 52.571-98.857 52.571-27.429 0-84-24-108.571-35.429-81.714-37.143-132.571-100.571-181.714-173.143-21.714-32-41.143-71.429-40.571-110.857v-4.571c1.143-37.714 14.857-64.571 42.286-90.286 8.571-8 17.714-12.571 29.714-12.571 6.857 0 13.714 1.714 21.143 1.714 15.429 0 18.286 4.571 24 19.429 4 9.714 33.143 87.429 33.143 93.143 0 21.714-39.429 46.286-39.429 59.429 0 2.857 1.143 5.714 2.857 8.571 12.571 26.857 36.571 57.714 58.286 78.286 26.286 25.143 54.286 41.714 86.286 57.714 4 2.286 8 4 12.571 4 17.143 0 45.714-55.429 60.571-55.429zM446.857 859.429c197.714 0 358.857-161.143 358.857-358.857s-161.143-358.857-358.857-358.857-358.857 161.143-358.857 358.857c0 75.429 24 149.143 68.571 210.286l-45.143 133.143 138.286-44c58.286 38.286 127.429 59.429 197.143 59.429zM446.857 69.714c237.714 0 430.857 193.143 430.857 430.857s-193.143 430.857-430.857 430.857c-72.571 0-144.571-18.286-208.571-53.714l-238.286 76.571 77.714-231.429c-40.571-66.857-61.714-144-61.714-222.286 0-237.714 193.143-430.857 430.857-430.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "whatsapp"
+ ],
+ "defaultCode": 62002,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "whatsapp",
+ "id": 511,
+ "order": 1367,
+ "prevSize": 28,
+ "code": 62002
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 511
+ },
+ {
+ "icon": {
+ "paths": [
+ "M73.143 804.571h585.143v-73.143h-585.143v73.143zM73.143 512h585.143v-73.143h-585.143v73.143zM969.143 768c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM73.143 219.429h585.143v-73.143h-585.143v73.143zM969.143 475.429c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM969.143 182.857c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM1024 658.286v219.429h-1024v-219.429h1024zM1024 365.714v219.429h-1024v-219.429h1024zM1024 73.143v219.429h-1024v-219.429h1024z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "server"
+ ],
+ "defaultCode": 62003,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "server",
+ "id": 512,
+ "order": 1368,
+ "prevSize": 28,
+ "code": 62003
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 512
+ },
+ {
+ "icon": {
+ "paths": [
+ "M402.286 512c-121.143 0-219.429-98.286-219.429-219.429s98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429-98.286 219.429-219.429 219.429zM950.857 585.143h201.143c9.714 0 18.286 8.571 18.286 18.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-201.143v201.143c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-201.143h-201.143c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h201.143v-201.143c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286v201.143zM530.286 713.143c0 40 33.143 73.143 73.143 73.143h146.286v136c-28 20.571-63.429 28.571-97.714 28.571h-499.429c-91.429 0-152.571-54.857-152.571-148 0-129.143 30.286-327.429 197.714-327.429 9.143 0 15.429 4 22.286 9.714 56 42.857 110.286 69.714 182.286 69.714s126.286-26.857 182.286-69.714c6.857-5.714 13.143-9.714 22.286-9.714 48.571 0 91.429 18.286 124 54.857h-127.429c-40 0-73.143 33.143-73.143 73.143v109.714z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-plus"
+ ],
+ "defaultCode": 62004,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "user-plus",
+ "id": 513,
+ "order": 1369,
+ "prevSize": 28,
+ "code": 62004
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 513
+ },
+ {
+ "icon": {
+ "paths": [
+ "M402.286 512c-121.143 0-219.429-98.286-219.429-219.429s98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429-98.286 219.429-219.429 219.429zM1017.714 694.857l142.286 142.286c3.429 3.429 5.143 8 5.143 13.143 0 4.571-1.714 9.143-5.143 12.571l-77.714 77.714c-3.429 3.429-8 5.143-12.571 5.143-5.143 0-9.714-1.714-13.143-5.143l-142.286-142.286-142.286 142.286c-3.429 3.429-8 5.143-13.143 5.143-4.571 0-9.143-1.714-12.571-5.143l-77.714-77.714c-3.429-3.429-5.143-8-5.143-12.571 0-5.143 1.714-9.714 5.143-13.143l142.286-142.286-142.286-142.286c-3.429-3.429-5.143-8-5.143-13.143 0-4.571 1.714-9.143 5.143-12.571l77.714-77.714c3.429-3.429 8-5.143 12.571-5.143 5.143 0 9.714 1.714 13.143 5.143l142.286 142.286 142.286-142.286c3.429-3.429 8-5.143 13.143-5.143 4.571 0 9.143 1.714 12.571 5.143l77.714 77.714c3.429 3.429 5.143 8 5.143 12.571 0 5.143-1.714 9.714-5.143 13.143zM733.143 694.857l-103.429 103.429c-13.714 13.714-21.143 32.571-21.143 52 0 18.857 7.429 37.714 21.143 51.429l47.429 47.429c-8 1.143-16.571 1.714-25.143 1.714h-499.429c-91.429 0-152.571-54.857-152.571-148 0-129.143 30.286-327.429 197.714-327.429 9.143 0 15.429 4 22.286 9.714 54.857 43.429 110.857 69.714 182.286 69.714s127.429-26.286 182.286-69.714c6.857-5.714 13.143-9.714 22.286-9.714 10.857 0 21.714 1.143 32.571 3.429-18.857 18.286-30.857 33.143-30.857 60.571 0 19.429 7.429 38.286 21.143 52z"
+ ],
+ "width": 1165.165714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-times"
+ ],
+ "defaultCode": 62005,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "user-times",
+ "id": 514,
+ "order": 1370,
+ "prevSize": 28,
+ "code": 62005
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 514
+ },
+ {
+ "icon": {
+ "paths": [
+ "M146.286 585.143h987.429c20 0 36.571 16.571 36.571 36.571v256h-146.286v-146.286h-877.714v146.286h-146.286v-694.857c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v402.286zM475.429 402.286c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM1170.286 548.571v-36.571c0-121.143-98.286-219.429-219.429-219.429h-402.286c-20 0-36.571 16.571-36.571 36.571v219.429h658.286z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bed",
+ "hotel"
+ ],
+ "defaultCode": 62006,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bed, hotel",
+ "id": 515,
+ "order": 1371,
+ "prevSize": 28,
+ "code": 62006
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 515
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 0l-109.714 256h109.714v109.714h-156.571l-31.429 73.143h188v109.714h-234.857l-204 475.429-204-475.429h-234.857v-109.714h188l-31.429-73.143h-156.571v-109.714h109.714l-109.714-256h146.286l184.571 438.857h216l184.571-438.857h146.286zM438.857 694.857l61.714-146.286h-123.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "viacoin"
+ ],
+ "defaultCode": 62007,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "viacoin",
+ "id": 516,
+ "order": 1372,
+ "prevSize": 28,
+ "code": 62007
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 516
+ },
+ {
+ "icon": {
+ "paths": [
+ "M621.714 0c141.143 0 256 81.714 256 182.857v512c0 98.857-109.143 178.857-246.286 182.286l121.714 115.429c12 11.429 4 31.429-12.571 31.429h-603.429c-16.571 0-24.571-20-12.571-31.429l121.714-115.429c-137.143-3.429-246.286-83.429-246.286-182.286v-512c0-101.143 114.857-182.857 256-182.857h365.714zM438.857 768c60.571 0 109.714-49.143 109.714-109.714s-49.143-109.714-109.714-109.714-109.714 49.143-109.714 109.714 49.143 109.714 109.714 109.714zM768 438.857v-292.571h-658.286v292.571h658.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "train"
+ ],
+ "defaultCode": 62008,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "train",
+ "id": 517,
+ "order": 1373,
+ "prevSize": 28,
+ "code": 62008
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 517
+ },
+ {
+ "icon": {
+ "paths": [
+ "M621.714 0c141.143 0 256 81.714 256 182.857v512c0 98.857-109.143 178.857-246.286 182.286l121.714 115.429c12 11.429 4 31.429-12.571 31.429h-603.429c-16.571 0-24.571-20-12.571-31.429l121.714-115.429c-137.143-3.429-246.286-83.429-246.286-182.286v-512c0-101.143 114.857-182.857 256-182.857h365.714zM164.571 749.714c50.286 0 91.429-41.143 91.429-91.429s-41.143-91.429-91.429-91.429-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429zM402.286 438.857v-292.571h-310.857v292.571h310.857zM713.143 749.714c50.286 0 91.429-41.143 91.429-91.429s-41.143-91.429-91.429-91.429-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429zM804.571 438.857v-292.571h-329.143v292.571h329.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subway"
+ ],
+ "defaultCode": 62009,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "subway",
+ "id": 518,
+ "order": 1374,
+ "prevSize": 28,
+ "code": 62009
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 518
+ },
+ {
+ "icon": {
+ "paths": [
+ "M341.143 240.571v670.286c0 17.714-8.571 34.286-28 34.286-6.857 0-13.143-1.714-18.857-4.571l-265.714-133.143c-16-8-28.571-28.571-28.571-45.714v-651.429c0-14.286 6.857-27.429 22.286-27.429 9.143 0 17.143 4.571 25.143 8.571l292 146.286c0.571 0.571 1.714 2.286 1.714 2.857zM377.714 298.286l305.143 494.857-305.143-152v-342.857zM1024 308.571v602.286c0 18.857-10.857 32-29.714 32-9.714 0-18.857-2.857-26.857-7.429l-252-125.714zM1022.286 240c0 2.286-295.429 481.714-318.286 518.286l-222.857-362.286 185.143-301.143c6.286-10.286 17.714-16 29.714-16 5.143 0 10.286 1.143 14.857 3.429l309.143 154.286c1.143 0.571 2.286 1.714 2.286 3.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "medium"
+ ],
+ "defaultCode": 62010,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "medium",
+ "id": 519,
+ "order": 1375,
+ "prevSize": 28,
+ "code": 62010
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 519
+ },
+ {
+ "icon": {
+ "paths": [
+ "M462.286 573.714l152-285.143h-64l-89.714 178.286s-13.714 27.429-25.143 52.571c-10.857-26.286-24-52.571-24-52.571l-88.571-178.286h-68.571l150.286 281.714v185.143h57.714v-181.714zM877.714 73.143v877.714h-877.714v-877.714h877.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "y-combinator",
+ "yc"
+ ],
+ "defaultCode": 62011,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "y-combinator, yc",
+ "id": 520,
+ "order": 1376,
+ "prevSize": 28,
+ "code": 62011
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 520
+ },
+ {
+ "icon": {
+ "paths": [
+ "M273.143 957.143c-5.714 12-22.286 28.571-36.571 34.286-20 6.857-44.571-6.286-45.714-20-1.143-17.714 42.857-49.714 61.714-53.143 18.286-3.429 26.857 24 20.571 38.857zM1039.429 957.143c5.143 12 21.714 28.571 36.571 34.286 19.429 6.857 44.571-6.286 45.143-20 1.714-17.714-42.857-49.714-61.714-53.143-17.714-3.429-26.286 24-20 38.857zM1066.857 894.857c10.286 20.571 50.857 50.857 76.571 57.714 34.857 9.714 68-6.857 68-31.429 0-37.714-71.429-88-104.571-91.429-31.429-4-52 40.571-40 65.143zM244.571 894.857c-10.286 20.571-50.286 50.857-76 57.714-34.857 9.714-68-6.857-68-31.429 0-37.714 71.429-88 104.571-91.429 31.429-4 52 40.571 39.429 65.143zM661.714 252.571h0.571c-15.429 0-30.286 2.857-43.429 8.571 20 6.286 34.857 24.571 34.857 45.714 0 26.857-23.429 48.571-52.571 48.571-19.429 0-36.571-10.286-45.714-24.571-1.714 8-2.857 15.429-2.857 24 0 56.571 48.571 102.286 109.143 102.286s109.714-45.714 109.714-102.286-49.143-102.286-109.714-102.286zM835.429 128c-75.429-82.857-172-101.143-266.286-49.714 53.143-118.857 258.286-102.857 266.286 49.714zM1264 836c2.857 4-0.571 14.286-6.286 24 2.286 7.429 4 14.857 4 22.857 1.714 66.857-93.714 135.429-155.429 137.714-36.571 1.714-73.143-17.714-90.286-49.714-240 8.571-480 10.286-719.429 0-17.714 32-54.286 50.857-90.857 49.714-61.143-2.286-156.571-70.857-155.429-137.714 0.571-8 1.714-15.429 4-22.857-5.714-9.714-9.143-20-6.286-24 2.286-3.429 9.714-3.429 17.714-0.571 6.857-10.857 14.857-20 23.429-29.143-2.286-9.714-2.286-18.286 1.143-21.714 4-3.429 13.143-2.286 22.286 2.286 9.714-6.857 21.143-13.714 33.714-19.429 0-10.286 2.857-18.286 7.429-21.143 6.857-3.429 18.857-1.143 29.143 9.143 12-1.714 24-1.714 34.857 1.143 7.429 1.714 14.857 5.714 21.714 10.857v-41.714c-3.429 0-6.286 0-10.286-1.143-37.143-6.857-77.714-32.571-86.857-75.429-3.429-14.286-3.429-29.714 0-46.286 6.857-28.571 31.429-45.143 53.143-54.286 1.714-12.571 17.143-29.714 31.429-33.714 16-4 26.286 9.714 29.714 21.714h7.429c10.286 1.143 26.857 3.429 34.286 13.143 1.143 1.143 2.286 2.857 2.857 4 11.429-1.143 23.429-2.857 34.857-4-5.143-4-10.857-7.429-17.143-9.714-10.857-18.857-29.143-23.429-52-24.571 0-1.714 0-3.429 0.571-5.714-41.714-1.143-93.143-12-116-37.714-26.286-29.143-30.857-78.857-25.714-116.571 4.571-37.143 20-80 51.429-102.286 17.714-12 45.714-1.714 48 20.571 1.143 9.714 2.857 42.857 12 48 10.286 5.143 26.857 7.429 43.429 6.857 17.143-16.571 35.429-30.857 56-42.286-31.429-2.857-61.143 3.429-92.571 8l26.857-26.286c26.286-25.143 61.143-46.857 93.143-63.429 49.714-25.143 105.714-44 161.143-49.143-39.429-16.571-84.571-25.143-126.286-34.857 161.714-34.286 369.143-46.857 516.571 79.429 38.286 32.571 68.571 76.571 90.286 126.857 23.429 2.857 53.143 3.429 69.143-5.143h0.571c9.143-5.143 10.857-37.714 12-48 2.286-21.714 30.286-32.571 48-20 31.429 22.286 46.857 65.143 52 101.714 4.571 37.714 0.571 87.429-26.286 116.571-22.857 25.714-72.571 37.143-113.714 38.286v5.714c-23.429 0.571-42.857 5.143-54.286 24.571-6.286 2.286-12 5.714-17.714 9.714 12 1.143 24 2.857 35.429 4 0.571-1.714 1.714-3.429 2.857-4.571 8-9.143 24.571-12 34.286-13.143h7.429c3.429-11.429 14.286-25.143 29.714-21.714s29.714 21.143 31.429 33.714c22.857 9.143 46.857 25.714 53.143 54.286 4 17.143 3.429 32 0.571 46.286-9.714 42.857-50.286 69.143-87.429 75.429-2.857 0.571-6.857 1.143-9.714 1.143 0 14.286 0 28-0.571 41.714 6.857-5.143 13.714-9.143 21.714-10.857 10.857-2.857 22.857-2.857 34.857-1.143 10.286-10.286 22.857-12.571 29.143-9.143 4.571 2.857 8 10.857 8 21.143 12 5.714 24 12.571 33.714 19.429 9.143-4.571 17.714-5.714 21.714-2.286 3.429 3.429 4 12 1.143 21.714 8.571 9.143 17.143 18.857 23.429 29.143 8-2.857 14.857-2.857 17.714 0.571zM1106.857 292c0 13.143-2.857 24.571-5.143 30.857 36.571 14.286 55.429 46.857 64 75.429 2.286-22.286-5.714-83.429-29.143-108-15.429-15.429-29.714-10.857-29.714 1.714zM1062.286 349.143v0c27.429 33.143 36 88 26.857 133.143 22.857-4.571 43.429-13.143 55.429-25.714 4-4.571 8-10.286 10.286-16-2.286-45.143-21.714-90.286-62.857-103.429-6.857 6.857-19.429 10.286-29.714 12v0zM1041.143 351.429c-8 0-17.143 0-25.143-0.571 16 43.429 26.286 90.286 30.286 136.571 7.429 0 16-0.571 24.571-1.714 12.571-51.429-0.571-109.143-29.714-134.286zM147.429 398.286c8.571-28.571 27.429-61.143 64-75.429-2.286-6.286-5.143-17.714-5.143-30.857 0-12.571-14.857-17.143-29.714-1.714-24 24.571-31.429 85.714-29.143 108zM168 456.571c12 13.143 32.571 21.143 55.429 25.714-9.143-45.143-0.571-100 26.857-133.143v0 0 0c-10.286-1.714-22.857-5.143-29.714-12-41.143 13.143-60 58.286-62.857 103.429 2.857 5.714 6.286 11.429 10.286 16zM269.143 487.429c5.143-46.857 19.429-92.571 41.714-134.286-10.857 2.286-21.143 6.286-31.429 10.286l-25.714 10.857v-0.571c-15.429 29.714-21.143 72.571-11.429 112 9.714 1.143 18.286 1.714 26.857 1.714zM819.429 509.714v0c7.429 37.714 10.286 75.429 16 113.143 2.286 13.143 6.286 16 18.857 9.714 33.714-17.143 48-82.857 48.571-120.571-27.429-1.714-55.429-1.714-83.429-2.286zM658.286 143.429c-88.571 0-161.143 72-161.143 160.571 0 89.143 72.571 161.143 161.143 161.143s161.143-72 161.143-161.143c0-88.571-72.571-160.571-161.143-160.571zM788.571 508.571c-40-0.571-80.571-0.571-120.571 0v-0.571c-0.571 10.857 0.571 80.571 9.143 86.857 23.429 11.429 83.429 9.714 108 2.286 11.429-3.429 5.143-78.286 3.429-88.571zM635.429 622.286c9.714-5.143 5.143-96 2.857-113.714v-0.571c-41.143 0.571-81.714 0.571-122.286 1.714-4 19.429-9.714 103.429 4 109.143 27.429 12 88 10.857 115.429 3.429zM410.286 514.286c-11.429 41.714 0.571 95.429 46.857 116 11.429 5.143 18.286 5.143 20.571-9.143 4-18.286 5.143-77.714 10.286-110.286v0c-25.714 0.571-52 1.714-77.714 3.429zM337.714 586.286c1.143 10.286-8 16.571-19.429 20.571 92.571 99.429 196 181.143 329.714 225.143 142.857-40.571 244.571-126.857 345.143-226.286-10.286-4-18.286-10.857-17.143-19.429 0.571-2.286 1.143-3.429 1.714-5.143v0 0c-18.857-1.714-37.714-4-56-5.714-20 69.714-76 112-98.857 66.857-5.714-10.857-7.429-24.571-9.714-35.429-8 17.714-28 17.143-52 18.857-28 2.286-66.857 2.857-93.143-6.286-6.286 27.429-23.429 27.429-56.571 30.286-29.714 2.857-102.857 8.571-116-22.857-2.286 60.571-74.286 21.143-95.429-14.857-6.857-12-11.429-24-14.857-37.143-16.571 1.714-33.143 3.429-49.714 5.714 1.143 1.714 1.714 4 2.286 5.714zM289.714 945.143c1.143-5.143 1.714-10.857 1.714-17.143-12-49.143-39.429-105.143-70.857-114.286-47.429-14.286-145.714 49.714-140 115.429 26.857 41.143 84.571 75.429 125.143 77.143 37.714 1.714 76-23.429 84-61.143zM291.429 847.429c6.857 18.857 13.714 44 15.429 68 70.857-41.143 146.286-75.429 224-99.429-81.714-43.429-144-101.143-205.714-162.857-4.571 2.857-10.857 5.143-16.571 7.429-0.571 1.714-0.571 3.429-1.143 5.143 9.714 5.714 16.571 12.571 12.571 21.143-4.571 8.571-18.286 16-32 19.429-4.571 5.714-10.857 10.286-16.571 13.714h-0.571c-0.571 28.571-0.571 57.143 0.571 85.714 8 14.286 14.857 29.143 20 41.714zM330.857 942.286c218.286 8.571 436.571 7.429 654.286 0-77.714-45.143-156.571-87.429-244.571-112-29.143 13.143-58.857 24-89.143 32.571-4.571 1.714-4.571 1.714-9.143 0-25.143-8-49.143-17.143-73.714-28-85.143 24.571-163.429 61.714-237.714 107.429h-0.571v0.571c0.571 0 0.571 0 0.571-0.571zM1007.429 916c1.714-24 9.143-49.714 16-68.571 4.571-12.571 10.857-26.857 18.857-40.571l-0.571 0.571c1.143-29.143 1.714-58.286 1.714-87.429-6.286-3.429-12-8.571-17.143-14.286-13.714-2.857-27.429-10.857-32-18.857-4-8.571 2.857-16 12.571-21.714-0.571-1.143-1.143-3.429-1.143-5.143-6.286-1.714-11.429-4-16-6.857-66.857 62.286-138.286 120-218.857 162.286 82.286 24.571 160.571 59.429 236.571 100.571zM1231.429 929.143c6.286-65.714-92-129.714-140-115.429-30.857 9.143-58.857 65.143-70.857 114.286 0 6.286 0.571 12 1.714 17.143 8 37.714 46.286 62.857 84 61.143 40.571-1.714 98.286-36 125.143-77.143z"
+ ],
+ "width": 1311.9634285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "optin-monster"
+ ],
+ "defaultCode": 62012,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "optin-monster",
+ "id": 521,
+ "order": 1377,
+ "prevSize": 28,
+ "code": 62012
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 521
+ },
+ {
+ "icon": {
+ "paths": [
+ "M870.857 892c0 52-41.714 93.714-93.714 93.714s-94.286-41.714-94.286-93.714 42.286-94.286 94.286-94.286 93.714 42.286 93.714 94.286zM442.857 892c0 52-42.286 93.714-94.286 93.714s-93.714-41.714-93.714-93.714 41.714-94.286 93.714-94.286 94.286 42.286 94.286 94.286zM0 38.286c168.571 177.714 326.857 204 948.571 204s348.571 138.286-35.429 481.143c121.714-211.429 540-398.857-145.714-388.571-657.714 9.714-696.571-190.286-767.429-296.571z"
+ ],
+ "width": 1570.304,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "opencart"
+ ],
+ "defaultCode": 62013,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "opencart",
+ "id": 522,
+ "order": 1378,
+ "prevSize": 28,
+ "code": 62013
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 522
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 36.571c-262.286 0-475.429 213.143-475.429 475.429s213.143 475.429 475.429 475.429 475.429-213.143 475.429-475.429-213.143-475.429-475.429-475.429zM512 0c282.857 0 512 229.143 512 512s-229.143 512-512 512-512-229.143-512-512 229.143-512 512-512zM283.429 475.429c5.143 0 9.143 4 9.143 9.143v274.286c0 5.143-4 9.143-9.143 9.143h-18.286c-5.143 0-9.143-4-9.143-9.143v-274.286c0-5.143 4-9.143 9.143-9.143h18.286zM512 512c40.571 0 73.143 32.571 73.143 73.143 0 26.857-14.857 50.286-36.571 62.857v65.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-65.143c-21.714-12.571-36.571-36-36.571-62.857 0-40.571 32.571-73.143 73.143-73.143zM512 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM310.857 347.429v54.857c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-54.857c0-70.857 57.143-128 128-128s128 57.143 128 128v54.857c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-54.857c0-110.857-90.286-201.143-201.143-201.143s-201.143 90.286-201.143 201.143zM804.571 768v-292.571c0-20-16.571-36.571-36.571-36.571h-512c-20 0-36.571 16.571-36.571 36.571v292.571c0 20 16.571 36.571 36.571 36.571h512c20 0 36.571-16.571 36.571-36.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "expeditedssl"
+ ],
+ "defaultCode": 62014,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "expeditedssl",
+ "id": 523,
+ "order": 1379,
+ "prevSize": 28,
+ "code": 62014
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 523
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1097.143 292.571v438.857h-950.857v-438.857h950.857zM1170.286 621.714h73.143v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571zM1316.571 402.286v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429c40.571 0 73.143 32.571 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery",
+ "battery-4",
+ "battery-full"
+ ],
+ "defaultCode": 62016,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "battery, battery-4, battery-full",
+ "id": 524,
+ "order": 1380,
+ "prevSize": 28,
+ "code": 62016
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 524
+ },
+ {
+ "icon": {
+ "paths": [
+ "M146.286 731.429v-438.857h731.429v438.857h-731.429zM1243.429 329.143c40.571 0 73.143 32.571 73.143 73.143v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429zM1243.429 621.714v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571h73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery-3",
+ "battery-three-quarters"
+ ],
+ "defaultCode": 62017,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "battery-3, battery-three-quarters",
+ "id": 525,
+ "order": 1381,
+ "prevSize": 28,
+ "code": 62017
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 525
+ },
+ {
+ "icon": {
+ "paths": [
+ "M146.286 731.429v-438.857h512v438.857h-512zM1243.429 329.143c40.571 0 73.143 32.571 73.143 73.143v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429zM1243.429 621.714v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571h73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery-2",
+ "battery-half"
+ ],
+ "defaultCode": 62018,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "battery-2, battery-half",
+ "id": 526,
+ "order": 1382,
+ "prevSize": 28,
+ "code": 62018
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 526
+ },
+ {
+ "icon": {
+ "paths": [
+ "M146.286 731.429v-438.857h292.571v438.857h-292.571zM1243.429 329.143c40.571 0 73.143 32.571 73.143 73.143v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429zM1243.429 621.714v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571h73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery-1",
+ "battery-quarter"
+ ],
+ "defaultCode": 62019,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "battery-1, battery-quarter",
+ "id": 527,
+ "order": 1383,
+ "prevSize": 28,
+ "code": 62019
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 527
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1243.429 329.143c40.571 0 73.143 32.571 73.143 73.143v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429zM1243.429 621.714v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571h73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery-0",
+ "battery-empty"
+ ],
+ "defaultCode": 62020,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "battery-0, battery-empty",
+ "id": 528,
+ "order": 1384,
+ "prevSize": 28,
+ "code": 62020
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 528
+ },
+ {
+ "icon": {
+ "paths": [
+ "M647.429 596c10.857 10.286 13.714 26.286 8 39.429-5.714 13.714-18.857 22.857-33.714 22.857h-218.286l114.857 272c8 18.857-1.143 40-19.429 48l-101.143 42.857c-18.857 8-40-1.143-48-19.429l-109.143-258.286-178.286 178.286c-6.857 6.857-16 10.857-25.714 10.857-4.571 0-9.714-1.143-13.714-2.857-13.714-5.714-22.857-18.857-22.857-33.714v-859.429c0-14.857 9.143-28 22.857-33.714 4-1.714 9.143-2.857 13.714-2.857 9.714 0 18.857 3.429 25.714 10.857z"
+ ],
+ "width": 661.1382857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mouse-pointer"
+ ],
+ "defaultCode": 62021,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "mouse-pointer",
+ "id": 529,
+ "order": 1385,
+ "prevSize": 28,
+ "code": 62021
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 529
+ },
+ {
+ "icon": {
+ "paths": [
+ "M475.429 73.143c-121.143 0-182.857 42.857-182.857 128v237.714h73.143v73.143h-73.143v310.857c0 85.143 61.714 128 182.857 128h36.571v73.143h-36.571c-102.857 0-178.286-29.714-219.429-83.429-41.143 53.714-116.571 83.429-219.429 83.429h-36.571v-73.143h36.571c121.143 0 182.857-42.857 182.857-128v-310.857h-73.143v-73.143h73.143v-237.714c0-85.143-61.714-128-182.857-128h-36.571v-73.143h36.571c102.857 0 178.286 29.714 219.429 83.429 41.143-53.714 116.571-83.429 219.429-83.429h36.571v73.143h-36.571z"
+ ],
+ "width": 512,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "i-cursor"
+ ],
+ "defaultCode": 62022,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "i-cursor",
+ "id": 530,
+ "order": 1386,
+ "prevSize": 28,
+ "code": 62022
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 530
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1170.286 219.429h-73.143v585.143h73.143v219.429h-219.429v-73.143h-731.429v73.143h-219.429v-219.429h73.143v-585.143h-73.143v-219.429h219.429v73.143h731.429v-73.143h219.429v219.429zM1024 73.143v73.143h73.143v-73.143h-73.143zM73.143 73.143v73.143h73.143v-73.143h-73.143zM146.286 950.857v-73.143h-73.143v73.143h73.143zM950.857 877.714v-73.143h73.143v-585.143h-73.143v-73.143h-731.429v73.143h-73.143v585.143h73.143v73.143h731.429zM1097.143 950.857v-73.143h-73.143v73.143h73.143zM731.429 365.714h219.429v438.857h-512v-146.286h-219.429v-438.857h512v146.286zM292.571 585.143h365.714v-292.571h-365.714v292.571zM877.714 731.429v-292.571h-146.286v219.429h-219.429v73.143h365.714z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "object-group"
+ ],
+ "defaultCode": 62023,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "object-group",
+ "id": 531,
+ "order": 1387,
+ "prevSize": 28,
+ "code": 62023
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 531
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1316.571 438.857h-73.143v365.714h73.143v219.429h-219.429v-73.143h-512v73.143h-219.429v-219.429h73.143v-73.143h-219.429v73.143h-219.429v-219.429h73.143v-365.714h-73.143v-219.429h219.429v73.143h512v-73.143h219.429v219.429h-73.143v73.143h219.429v-73.143h219.429v219.429zM1170.286 292.571v73.143h73.143v-73.143h-73.143zM804.571 73.143v73.143h73.143v-73.143h-73.143zM73.143 73.143v73.143h73.143v-73.143h-73.143zM146.286 731.429v-73.143h-73.143v73.143h73.143zM877.714 658.286h-73.143v73.143h73.143v-73.143zM219.429 658.286h512v-73.143h73.143v-365.714h-73.143v-73.143h-512v73.143h-73.143v365.714h73.143v73.143zM512 950.857v-73.143h-73.143v73.143h73.143zM1243.429 950.857v-73.143h-73.143v73.143h73.143zM1170.286 804.571v-365.714h-73.143v-73.143h-219.429v219.429h73.143v219.429h-219.429v-73.143h-219.429v73.143h73.143v73.143h512v-73.143h73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "object-ungroup"
+ ],
+ "defaultCode": 62024,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "object-ungroup",
+ "id": 532,
+ "order": 1388,
+ "prevSize": 28,
+ "code": 62024
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 532
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 713.143v237.714h-530.286c-30.286 0-54.857-24.571-54.857-54.857v-768c0-30.286 24.571-54.857 54.857-54.857h768c30.286 0 54.857 24.571 54.857 54.857v530.286h-237.714c-30.286 0-54.857 24.571-54.857 54.857zM658.286 731.429h217.714c-5.143 27.429-20 58.286-37.143 75.429l-105.143 105.143c-17.143 17.143-48 32-75.429 37.143v-217.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sticky-note"
+ ],
+ "defaultCode": 62025,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sticky-note",
+ "id": 533,
+ "order": 1389,
+ "prevSize": 28,
+ "code": 62025
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 533
+ },
+ {
+ "icon": {
+ "paths": [
+ "M800 731.429h-141.714v141.714c9.714-3.429 19.429-8.571 23.429-12.571l105.714-105.714c4-4 9.143-13.714 12.571-23.429zM640 658.286h164.571v-512h-731.429v731.429h512v-164.571c0-30.286 24.571-54.857 54.857-54.857zM877.714 128v585.143c0 30.286-17.714 72.571-38.857 93.714l-105.143 105.143c-21.143 21.143-63.429 38.857-93.714 38.857h-585.143c-30.286 0-54.857-24.571-54.857-54.857v-768c0-30.286 24.571-54.857 54.857-54.857h768c30.286 0 54.857 24.571 54.857 54.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sticky-note-o"
+ ],
+ "defaultCode": 62026,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sticky-note-o",
+ "id": 534,
+ "order": 1390,
+ "prevSize": 28,
+ "code": 62026
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 534
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1114.857 570.286c0 20.571-13.714 35.429-30.857 38.857-2.286 0.571-7.429 1.143-10.286 1.143h-87.429v-80h87.429c2.857 0 8 0.571 10.286 1.143 17.143 3.429 30.857 18.857 30.857 38.857zM1104.571 448.571c0 20-13.714 33.143-30.286 36-1.714 0.571-5.714 0.571-8.571 0.571h-79.429v-73.714h79.429c2.857 0 6.857 0.571 8.571 0.571 16.571 2.857 30.286 16.571 30.286 36.571zM416 542.286v-176h-130.286v176c0 42.857-29.143 74.857-81.714 74.857-44.571 0-88.571-13.143-130.857-33.714v64c68.571 18.857 155.429 18.857 155.429 18.857 145.143 0 187.429-55.429 187.429-124zM824 647.429v-64.571c-29.714 15.429-67.429 30.286-114.286 33.714-82.286 6.286-131.429-33.714-131.429-104.571s49.143-110.857 131.429-104.571c46.857 3.429 84 17.714 114.286 33.143v-64c-61.143-15.429-118.857-17.714-118.857-17.714-201.143-9.143-258.286 70.286-258.286 153.143s57.143 162.286 258.286 153.143c0 0 57.714-2.286 118.857-17.714zM1243.429 581.714c0-42.286-37.714-69.714-86.857-73.143v-1.714c44.571-6.286 69.143-35.429 69.143-69.143 0-43.429-36-68.571-84.571-70.857-3.429 0-9.714-0.571-14.857-0.571h-260v291.429h280.571c55.429 0 96.571-29.714 96.571-76zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-jcb"
+ ],
+ "defaultCode": 62027,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cc-jcb",
+ "id": 535,
+ "order": 1391,
+ "prevSize": 28,
+ "code": 62027
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 535
+ },
+ {
+ "icon": {
+ "paths": [
+ "M490.286 709.143v-396c-79.429 30.857-136 108-136 198.286s56.571 167.429 136 197.714zM778.286 511.429c0-90.286-56.571-167.429-136-198.286v396.571c79.429-30.857 136-108 136-198.286zM901.143 511.429c0 184.571-149.714 334.857-334.857 334.857-184.571 0-334.857-150.286-334.857-334.857 0-185.143 150.286-334.857 334.857-334.857 185.143 0 334.857 149.714 334.857 334.857zM1120 515.429c0-218.286-182.286-369.143-382.286-369.143h-172c-202.286 0-369.143 150.857-369.143 369.143 0 199.429 166.857 362.286 369.143 362.286h172c200 0 382.286-162.857 382.286-362.286zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cc-diners-club"
+ ],
+ "defaultCode": 62028,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "cc-diners-club",
+ "id": 536,
+ "order": 1392,
+ "prevSize": 28,
+ "code": 62028
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 536
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 932.571v-621.714c0-9.714-8.571-18.286-18.286-18.286h-621.714c-9.714 0-18.286 8.571-18.286 18.286v621.714c0 9.714 8.571 18.286 18.286 18.286h621.714c9.714 0 18.286-8.571 18.286-18.286zM1024 310.857v621.714c0 50.286-41.143 91.429-91.429 91.429h-621.714c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h621.714c50.286 0 91.429 41.143 91.429 91.429zM804.571 91.429v91.429h-73.143v-91.429c0-9.714-8.571-18.286-18.286-18.286h-621.714c-9.714 0-18.286 8.571-18.286 18.286v621.714c0 9.714 8.571 18.286 18.286 18.286h91.429v73.143h-91.429c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h621.714c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "clone"
+ ],
+ "defaultCode": 62029,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "clone",
+ "id": 537,
+ "order": 1393,
+ "prevSize": 28,
+ "code": 62029
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 537
+ },
+ {
+ "icon": {
+ "paths": [
+ "M987.429 256l-219.429 402.286h438.857zM256 256l-219.429 402.286h438.857zM725.143 146.286c-10.857 30.857-36 56-66.857 66.857v737.714h347.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-768c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h347.429v-737.714c-30.857-10.857-56-36-66.857-66.857h-280.571c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h280.571c15.429-42.857 55.429-73.143 103.429-73.143s88 30.286 103.429 73.143h280.571c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-280.571zM621.714 155.429c25.143 0 45.714-20.571 45.714-45.714s-20.571-45.714-45.714-45.714-45.714 20.571-45.714 45.714 20.571 45.714 45.714 45.714zM1243.429 658.286c0 117.714-162.857 164.571-256 164.571s-256-46.857-256-164.571v0c0-22.286 199.429-375.429 224-420 6.286-11.429 18.857-18.857 32-18.857s25.714 7.429 32 18.857c24.571 44.571 224 397.714 224 420v0zM512 658.286c0 117.714-162.857 164.571-256 164.571s-256-46.857-256-164.571v0c0-22.286 199.429-375.429 224-420 6.286-11.429 18.857-18.857 32-18.857s25.714 7.429 32 18.857c24.571 44.571 224 397.714 224 420z"
+ ],
+ "width": 1243.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "balance-scale"
+ ],
+ "defaultCode": 62030,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "balance-scale",
+ "id": 538,
+ "order": 1394,
+ "prevSize": 28,
+ "code": 62030
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 538
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 73.143c0 211.429-101.143 364.571-213.143 438.857 112 74.286 213.143 227.429 213.143 438.857h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857c0-211.429 101.143-364.571 213.143-438.857-112-74.286-213.143-227.429-213.143-438.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h841.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857zM499.429 477.714c115.429-43.429 232-196 232-404.571h-585.143c0 208.571 116.571 361.143 232 404.571 14.286 5.143 24 18.857 24 34.286s-9.714 29.143-24 34.286c-115.429 43.429-232 196-232 404.571h585.143c0-208.571-116.571-361.143-232-404.571-14.286-5.143-24-18.857-24-34.286s9.714-29.143 24-34.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass-o"
+ ],
+ "defaultCode": 62032,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hourglass-o",
+ "id": 539,
+ "order": 1395,
+ "prevSize": 28,
+ "code": 62032
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 539
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 73.143c0 211.429-101.143 364.571-213.143 438.857 112 74.286 213.143 227.429 213.143 438.857h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857c0-211.429 101.143-364.571 213.143-438.857-112-74.286-213.143-227.429-213.143-438.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h841.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857zM731.429 73.143h-585.143c0 25.143 1.714 49.714 5.143 73.143h574.857c3.429-23.429 5.143-48 5.143-73.143zM731.429 950.857c0-205.143-113.143-356.571-226.857-402.286h-131.429c-113.714 45.714-226.857 197.143-226.857 402.286h585.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass-1",
+ "hourglass-start"
+ ],
+ "defaultCode": 62033,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hourglass-1, hourglass-start",
+ "id": 540,
+ "order": 1396,
+ "prevSize": 28,
+ "code": 62033
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 540
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 73.143c0 211.429-101.143 364.571-213.143 438.857 112 74.286 213.143 227.429 213.143 438.857h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857c0-211.429 101.143-364.571 213.143-438.857-112-74.286-213.143-227.429-213.143-438.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h841.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857zM731.429 73.143h-585.143c0 83.429 18.857 157.143 48.571 219.429h488c29.714-62.286 48.571-136 48.571-219.429zM698.857 768c-42.286-110.286-118.286-188.571-194.286-219.429h-131.429c-76 30.857-152 109.143-194.286 219.429h520z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass-2",
+ "hourglass-half"
+ ],
+ "defaultCode": 62034,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hourglass-2, hourglass-half",
+ "id": 541,
+ "order": 1397,
+ "prevSize": 28,
+ "code": 62034
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 541
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804.571 73.143c0 211.429-101.143 364.571-213.143 438.857 112 74.286 213.143 227.429 213.143 438.857h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857c0-211.429 101.143-364.571 213.143-438.857-112-74.286-213.143-227.429-213.143-438.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h841.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857zM499.429 477.714c115.429-43.429 232-196 232-404.571h-585.143c0 208.571 116.571 361.143 232 404.571 14.286 5.143 24 18.857 24 34.286s-9.714 29.143-24 34.286c-49.143 18.286-98.857 57.143-139.429 112h400c-40.571-54.857-90.286-93.714-139.429-112-14.286-5.143-24-18.857-24-34.286s9.714-29.143 24-34.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass-3",
+ "hourglass-end"
+ ],
+ "defaultCode": 62035,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hourglass-3, hourglass-end",
+ "id": 542,
+ "order": 1398,
+ "prevSize": 28,
+ "code": 62035
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 542
+ },
+ {
+ "icon": {
+ "paths": [
+ "M859.429 914.286c10.286 0 18.286 8 18.286 18.286v73.143c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-73.143c0-10.286 8-18.286 18.286-18.286h841.143zM74.286 877.714c10.857-192.571 168-296 273.143-365.714-105.143-69.714-262.286-173.143-273.143-365.714h729.143c-10.857 192.571-168 296-273.143 365.714 105.143 69.714 262.286 173.143 273.143 365.714h-729.143zM859.429 0c10.286 0 18.286 8 18.286 18.286v73.143c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-73.143c0-10.286 8-18.286 18.286-18.286h841.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass"
+ ],
+ "defaultCode": 62036,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hourglass",
+ "id": 543,
+ "order": 1399,
+ "prevSize": 28,
+ "code": 62036
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 543
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 219.429c-40.571 0-73.143 32.571-73.143 73.143v73.143h-18.286v-53.143c0-36-27.429-65.714-64-65.714-35.429 0-64 28.571-64 64v245.143l-18.286-17.143v-98.286c0-36-27.429-65.714-64-65.714-35.429 0-64 28.571-64 64v128c0 17.714 7.429 34.286 20 46.857l177.143 169.143c16.571 16.571 22.286 35.429 22.286 58.286 0 20 16.571 36.571 36.571 36.571h365.714c20 0 36.571-16.571 36.571-36.571v-14.286c0-14.857 1.714-29.714 5.714-44l61.714-249.143c4-14.286 5.714-29.143 5.714-44v-140.571c0-36-27.429-65.714-64-65.714-35.429 0-64 28.571-64 64v18.286h-18.286v-71.429c0-30.286-20.571-58.286-50.857-64.571-4-0.571-8.571-1.143-13.143-1.143-35.429 0-64 28.571-64 64v73.143h-18.286v-69.714c0-38.286-27.429-72-65.714-76-2.857-0.571-5.143-0.571-7.429-0.571zM438.857 146.286c30.857 0 60.571 9.714 85.143 28.571 21.143-12.571 45.714-19.429 70.286-19.429 45.143 0 86.857 21.714 112.571 58.857 10.857-2.857 22.286-4 33.714-4 76.571 0 137.143 62.857 137.143 138.857v140.571c0 20.571-2.857 41.714-7.429 61.714l-62.286 249.143c-3.429 13.714-3.429 26.857-3.429 40.571 0 60.571-49.143 109.714-109.714 109.714h-365.714c-65.143 0-109.714-52-109.714-114.857l-176-169.143c-26.857-25.714-43.429-62.286-43.429-100v-128c0-75.429 61.714-137.143 137.143-137.143 3.429 0 6.286 0 9.143 0.571 4.571-72.571 65.143-128.571 137.143-128.571 19.429 0 38.286 4 56 12 26.857-25.714 62.286-39.429 99.429-39.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-grab-o",
+ "hand-rock-o"
+ ],
+ "defaultCode": 62037,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hand-grab-o, hand-rock-o",
+ "id": 544,
+ "order": 1400,
+ "prevSize": 28,
+ "code": 62037
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 544
+ },
+ {
+ "icon": {
+ "paths": [
+ "M502.857 73.143c-35.429 0-64 28.571-64 64v374.857h-18.286v-301.714c0-35.429-28.571-64-64-64s-64 28.571-64 64v448l-88-117.143c-13.714-18.286-35.429-29.143-58.286-29.143-40.571 0-73.143 33.143-73.143 73.143 0 16 5.143 31.429 14.857 44l219.429 292.571c13.714 18.286 35.429 29.143 58.286 29.143h393.143c26.286 0 49.143-18.857 54.286-44.571l43.429-231.429c1.714-10.857 2.857-22.286 2.857-33.714v-284.571c0-35.429-28.571-64-64-64s-64 28.571-64 64v155.429h-18.286v-301.714c0-35.429-28.571-64-64-64s-64 28.571-64 64v301.714h-18.286v-374.857c0-35.429-28.571-64-64-64zM502.857 0c51.429 0 98.857 29.143 122.286 75.429 8-1.714 16-2.286 24-2.286 75.429 0 137.143 61.714 137.143 137.143v9.714c79.429-4.571 146.286 56.571 146.286 136.571v284.571c0 16-1.714 32-4.571 47.429l-43.429 230.857c-10.857 60.571-64 104.571-125.714 104.571h-393.143c-45.714 0-89.714-22.286-117.143-58.286l-219.429-292.571c-18.857-25.143-29.143-56.571-29.143-88 0-80.571 65.143-146.286 146.286-146.286 24 0 53.143 5.714 73.143 19.429v-248c0-75.429 61.714-137.143 137.143-137.143 8 0 16 0.571 24 2.286 23.429-46.286 70.857-75.429 122.286-75.429z"
+ ],
+ "width": 932.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-paper-o",
+ "hand-stop-o"
+ ],
+ "defaultCode": 62038,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hand-paper-o, hand-stop-o",
+ "id": 545,
+ "order": 1401,
+ "prevSize": 28,
+ "code": 62038
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 545
+ },
+ {
+ "icon": {
+ "paths": [
+ "M613.143 950.857h-101.143c-59.429 0-104.571-25.714-129.143-80.571-8.571-18.286-13.143-38.286-13.143-58.286v-2.857c-46.857-22.857-77.143-70.857-77.143-123.429 0-6.286 0-21.714 2.857-27.429h-149.143c-80.571 0-146.286-65.714-146.286-146.286s65.714-146.286 146.286-146.286h64.571l-25.143-9.714c-56.571-21.143-94.286-76-94.286-136.571 0-80.571 65.714-146.286 146.286-146.286 17.714 0 35.429 3.429 52 9.714l358.857 136.571h229.143c80.571 0 146.286 65.714 146.286 146.286v381.714c0 67.429-45.714 125.714-110.857 141.714l-193.714 48.571c-34.286 8.571-70.286 13.143-106.286 13.143zM585.143 544.571l-88.571 40.571-93.143 42.286c-22.857 10.286-37.714 33.143-37.714 58.286 0 35.429 28.571 64 64 64 9.143 0 18.286-1.714 26.286-5.714l193.143-88c-37.143-8-64-41.714-64-80v-31.429zM768 722.286c0-35.429-28.571-64-64-64-9.143 0-18.286 1.714-26.286 5.714l-165.714 75.429c-34.286 15.429-69.143 29.143-69.143 72.571 0 37.714 26.286 65.143 64.571 65.143 6.857 0 16-2.286 21.714-5.143l201.143-91.429c22.857-10.286 37.714-33.143 37.714-58.286zM635.429 292.571l-371.429-141.714c-8.571-2.857-17.143-4.571-26.286-4.571-40 0-73.143 32.571-73.143 73.143 0 30.286 18.857 57.714 46.857 68.571l300.571 114.286v36.571h-365.714c-40.571 0-73.143 32.571-73.143 73.143s32.571 73.143 73.143 73.143h305.714l133.143-60.571v-113.143c0-22.857 9.714-45.143 26.286-60.571l63.429-58.286h-39.429zM613.143 877.714c29.714 0 60-3.429 88.571-10.857l193.714-48.571c32.571-8 55.429-37.143 55.429-70.857v-381.714c0-40.571-32.571-73.143-73.143-73.143h-176l-77.714 72c-13.143 12-20.571 29.143-20.571 46.857v169.143c0 35.429 29.143 61.714 64 61.714 35.429 0 64-31.429 64-66.286v-118.857h18.286v118.857c0 25.714-12.571 49.714-32.571 65.143 40 6.286 69.143 41.143 69.143 81.143 0 32-18.857 61.714-48 74.857l-177.143 80.571h52z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-scissors-o"
+ ],
+ "defaultCode": 62039,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hand-scissors-o",
+ "id": 546,
+ "order": 1402,
+ "prevSize": 28,
+ "code": 62039
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 546
+ },
+ {
+ "icon": {
+ "paths": [
+ "M657.714 0c46.286 0 90.857 22.286 118.286 60l326.857 446.286c44 59.429 67.429 130.857 67.429 205.143v202.857c0 60.571-49.143 109.714-109.714 109.714h-219.429c-60.571 0-109.714-49.143-109.714-109.714v-101.143l-163.429-81.714h-312c-60.571 0-109.714-49.143-109.714-109.714v-18.286c0-90.857 73.714-164.571 164.571-164.571h240l24-73.143h-392c-76 0-139.429-58.286-145.714-133.714-24-29.143-37.143-66.286-37.143-104v-18.286c0-60.571 49.143-109.714 109.714-109.714h548zM1097.143 914.286v-202.857c0-57.714-18.857-115.429-53.143-162.286l-327.429-446.286c-13.714-18.286-35.429-29.714-58.857-29.714h-548c-20 0-36.571 16.571-36.571 36.571 0 30.286 0.571 51.429 20.571 76 7.429-23.429 28.571-39.429 52.571-39.429h475.429v18.286h-475.429c-20 0-36.571 16.571-36.571 36.571 0 10.857-0.571 22.286 1.714 33.143 6.286 33.714 37.143 58.286 71.429 58.286h417.714c30.286 0 54.857 24.571 54.857 54.857 0 5.714-1.143 12-2.857 17.143l-36.571 109.714c-7.429 22.286-28.571 37.714-52 37.714h-253.143c-50.286 0-91.429 41.143-91.429 91.429v18.286c0 20 16.571 36.571 36.571 36.571h320.571c5.714 0 11.429 1.143 16.571 4l181.143 90.286c18.286 9.714 30.286 28.571 30.286 49.143v112.571c0 20 16.571 36.571 36.571 36.571h219.429c20 0 36.571-16.571 36.571-36.571z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-lizard-o"
+ ],
+ "defaultCode": 62040,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hand-lizard-o",
+ "id": 547,
+ "order": 1403,
+ "prevSize": 28,
+ "code": 62040
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 547
+ },
+ {
+ "icon": {
+ "paths": [
+ "M262.286 1024c-58.857 0-109.714-40-124-97.143l-57.714-229.143c-4.571-20-7.429-41.143-7.429-61.714 0-13.143 0-25.714-2.857-38.286l-66.286-272.571c-2.857-10.857-4-21.714-4-32.571 0-70.857 53.714-129.143 124-136.571 12.571-64.571 68-110.286 134.286-110.286 63.429 0 118.286 43.429 133.143 105.143l47.429 198.857 58.857-244.571c14.857-61.714 69.714-105.143 133.143-105.143 68 0 124 49.143 134.857 115.429 70.286 8 121.143 67.429 121.143 137.714 0 10.857-1.714 22.286-4 33.714l-70.286 292.571c45.714-34.286 78.857-67.429 138.857-67.429 79.429 0 145.714 64.571 145.714 144.571 0 48-23.429 92.571-61.143 121.143l-289.714 217.143c-25.143 18.857-56 29.143-87.429 29.143h-396.571zM630.857 73.143c-29.143 0-54.857 20.571-61.714 49.143l-93.714 389.714h-72.571l-82.857-344c-6.857-28.571-32.571-49.143-61.714-49.143-36.571 0-64 29.143-64 64.571 0 5.714 0.571 10.857 1.714 16l75.429 312.571h-14.857l-56.571-233.143c-6.857-28-32.571-50.286-62.286-50.286-35.429 0-64.571 28.571-64.571 64 0 5.143 0.571 10.286 1.714 14.857l66.286 273.143c8 33.143 2.286 66.286 10.857 99.429l57.143 229.143c6.286 24.571 28 41.714 53.143 41.714h396.571c15.429 0 30.857-5.143 43.429-14.857l289.714-216.571c19.429-14.857 32-38.286 32-62.857 0-40-33.143-71.429-72.571-71.429-16 0-31.429 5.143-44 14.857l-175.429 131.429v-129.714c0-4.571 73.714-307.429 79.429-332 1.143-5.143 2.286-10.857 2.286-16.571 0-35.429-26.857-65.714-63.429-65.714-29.714 0-55.429 20.571-62.286 49.143l-66.286 275.429h-14.857l85.714-356.571c1.143-5.143 1.714-10.857 1.714-16 0-36-26.286-66.286-63.429-66.286z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-spock-o"
+ ],
+ "defaultCode": 62041,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hand-spock-o",
+ "id": 548,
+ "order": 1404,
+ "prevSize": 28,
+ "code": 62041
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 548
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 73.143c-40.571 0-73.143 32.571-73.143 73.143v512l-86.286-115.429c-14.286-18.857-37.143-30.857-61.143-30.857-40 0-72 33.714-72 73.143 0 16 5.143 31.429 14.857 44l219.429 292.571c13.714 18.286 35.429 29.143 58.286 29.143h410.286c16.571 0 31.429-11.429 35.429-27.429l52.571-210.286c9.143-36.571 13.714-73.714 13.714-110.857v-124c0-30.286-23.429-57.714-54.857-57.714-30.286 0-54.857 24.571-54.857 54.857h-18.286v-34.857c0-36-27.429-65.714-64-65.714-35.429 0-64 28.571-64 64v36.571h-18.286v-51.429c0-41.143-31.429-76.571-73.143-76.571-40.571 0-73.143 32.571-73.143 73.143v54.857h-18.286v-325.714c0-41.143-31.429-76.571-73.143-76.571zM365.714 0c81.714 0 146.286 68.571 146.286 149.714v125.714c6.286-0.571 12-1.143 18.286-1.143 37.143 0 72 14.286 98.857 39.429 17.714-8 37.143-12 56.571-12 41.143 0 79.429 18.286 105.143 49.714 10.857-2.857 21.143-4 32-4 72 0 128 60 128 130.857v124c0 42.857-5.143 86.286-16 128.571l-52.571 210.286c-12 48.571-56 82.857-106.286 82.857h-410.286c-45.714 0-89.714-22.286-117.143-58.286l-219.429-292.571c-18.857-25.143-29.143-56.571-29.143-88 0-80 65.143-146.286 145.143-146.286 26.286 0 52 6.857 74.286 20v-312.571c0-80.571 65.714-146.286 146.286-146.286zM438.857 804.571v-219.429h-18.286v219.429h18.286zM585.143 804.571v-219.429h-18.286v219.429h18.286zM731.429 804.571v-219.429h-18.286v219.429h18.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-pointer-o"
+ ],
+ "defaultCode": 62042,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hand-pointer-o",
+ "id": 549,
+ "order": 1405,
+ "prevSize": 28,
+ "code": 62042
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 549
+ },
+ {
+ "icon": {
+ "paths": [
+ "M736 369.714c21.143 0 42.286 4 61.143 13.143 54.857 24.571 80.571 69.714 80.571 129.143v101.143c0 36-4.571 72-13.143 106.286l-48.571 193.714c-16 65.143-74.286 110.857-141.714 110.857h-381.714c-80.571 0-146.286-65.714-146.286-146.286v-229.143l-136.571-358.857c-6.286-16.571-9.714-34.286-9.714-52 0-80.571 65.714-146.286 146.286-146.286 60.571 0 115.429 37.714 136.571 94.286l9.714 25.143v-64.571c0-80.571 65.714-146.286 146.286-146.286s146.286 65.714 146.286 146.286v149.143c9.143-1.714 18.286-2.857 27.429-2.857 52.571 0 100.571 30.286 123.429 77.143zM612.571 365.714c-25.143 0-48 14.857-58.286 37.714l-42.286 93.143-40.571 88.571h31.429c38.286 0 72 26.857 80 64l88-193.143c4-8 5.714-17.143 5.714-26.286 0-35.429-28.571-64-64-64zM738.857 442.857c-43.429 0-57.143 34.857-72.571 69.143l-75.429 165.714c-4 8-5.714 17.143-5.714 26.286 0 35.429 28.571 64 64 64 25.143 0 48-14.857 58.286-37.714l91.429-201.143c2.857-5.714 5.143-14.857 5.143-21.714 0-38.286-27.429-64.571-65.143-64.571zM73.143 237.714c0 9.143 1.714 17.714 4.571 26.286l141.714 371.429v39.429l58.286-63.429c15.429-16.571 37.714-26.286 60.571-26.286h113.143l60.571-133.143v-305.714c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143v365.714h-36.571l-114.286-300.571c-10.857-28-38.286-46.857-68.571-46.857-40.571 0-73.143 33.143-73.143 73.143zM674.286 950.857c33.714 0 62.857-22.857 70.857-55.429l48.571-193.714c7.429-28.571 10.857-58.857 10.857-88.571v-52l-80.571 177.143c-13.143 29.143-42.857 48-74.857 48-40 0-74.857-29.143-81.143-69.143-15.429 20-39.429 32.571-65.143 32.571h-118.857v-18.286h118.857c34.857 0 66.286-28.571 66.286-64 0-34.857-26.286-64-61.714-64h-169.143c-17.714 0-34.857 7.429-46.857 20.571l-72 77.714v176c0 40.571 32.571 73.143 73.143 73.143h381.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hand-peace-o"
+ ],
+ "defaultCode": 62043,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hand-peace-o",
+ "id": 550,
+ "order": 1406,
+ "prevSize": 28,
+ "code": 62043
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 550
+ },
+ {
+ "icon": {
+ "paths": [
+ "M489.714 310.857v66.857c0 9.714-8.571 17.714-18.286 17.714h-170.286v464c0 10.286-8 18.286-17.714 18.286h-77.143c-10.286 0-18.286-8-18.286-18.286v-464h-169.714c-10.286 0-18.286-8-18.286-17.714v-66.857c0-10.286 8-18.286 18.286-18.286h453.143c9.714 0 18.286 8 18.286 18.286zM1082.857 309.143l44 549.143c0.571 5.143-1.143 9.714-4.571 13.714-3.429 3.429-8 5.714-13.143 5.714h-76.571c-9.143 0-17.143-7.429-17.714-16.571l-26.286-336-108 242.857c-2.857 6.857-9.143 10.857-16.571 10.857h-68.571c-6.857 0-13.143-4-16.571-10.857l-107.429-244-25.714 337.143c-0.571 9.143-8.571 16.571-17.714 16.571h-77.143c-5.143 0-9.714-2.286-13.143-5.714-3.429-4-5.143-8.571-5.143-13.714l44.571-549.143c0.571-9.143 8.571-16.571 17.714-16.571h81.143c7.429 0 13.714 4.571 16.571 10.857l125.714 297.143c4 9.143 8 19.429 11.429 29.143 4-9.714 7.429-20 11.429-29.143l126.286-297.143c2.857-6.286 9.143-10.857 16.571-10.857h80.571c9.714 0 17.714 7.429 18.286 16.571z"
+ ],
+ "width": 1127.424,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trademark"
+ ],
+ "defaultCode": 62044,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "trademark",
+ "id": 551,
+ "order": 1407,
+ "prevSize": 28,
+ "code": 62044
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 551
+ },
+ {
+ "icon": {
+ "paths": [
+ "M595.429 401.714c0-33.143-11.429-56.571-34.286-69.143-11.429-6.286-27.429-10.286-66.857-10.286h-70.286v160.571h92.571c50.286 0 78.857-29.714 78.857-81.143zM625.143 564.571l117.143 213.143c2.857 5.714 2.857 12.571-0.571 17.714-2.857 5.714-9.143 9.143-15.429 9.143h-86.857c-6.857 0-13.143-3.429-16-9.714l-110.857-208.571h-88.571v200c0 10.286-8 18.286-18.286 18.286h-76.571c-10.286 0-18.286-8-18.286-18.286v-548.571c0-10.286 8-18.286 18.286-18.286h168c60 0 86.286 5.143 108.571 13.714 64.571 24 104.571 87.429 104.571 165.143 0 70.286-34.857 129.714-90.286 157.143 1.714 2.857 3.429 5.714 5.143 9.143zM512 91.429c-232 0-420.571 188.571-420.571 420.571s188.571 420.571 420.571 420.571 420.571-188.571 420.571-420.571-188.571-420.571-420.571-420.571zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512v0c282.857 0 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "registered"
+ ],
+ "defaultCode": 62045,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "registered",
+ "id": 552,
+ "order": 1408,
+ "prevSize": 28,
+ "code": 62045
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 552
+ },
+ {
+ "icon": {
+ "paths": [
+ "M345.714 704.571c93.714 0 144.571-57.143 146.857-59.429 4.571-5.714 5.714-14.286 1.714-20.571l-25.714-46.857c-2.286-5.143-8-8.571-13.714-9.714-5.714-0.571-11.429 1.714-15.429 6.286-0.571 0-36.571 38.286-89.143 38.286-57.714 0-99.429-42.286-99.429-101.143 0-58.286 40.571-100 97.143-100 47.429 0 78.857 32 78.857 32 4 4 9.143 6.286 14.857 5.714s10.857-3.429 13.714-8l30.286-44.571c4.571-6.857 4-16-1.143-22.286-1.714-2.286-48-54.857-138.857-54.857-112.571 0-196.571 82.857-196.571 192.571 0 111.429 82.286 192.571 196.571 192.571zM705.714 704.571c94.286 0 144.571-57.143 146.857-59.429 4.571-5.714 5.714-14.286 2.286-20.571l-25.714-46.857c-2.857-5.143-8-8.571-14.286-9.714-5.714-0.571-11.429 1.714-15.429 6.286-0.571 0-36.571 38.286-89.143 38.286-57.714 0-99.429-42.286-99.429-101.143 0-58.286 40.571-100 97.143-100 48 0 78.857 32 78.857 32 4 4 9.143 6.286 14.857 5.714s10.857-3.429 13.714-8l30.286-44.571c4.571-6.857 4-16-1.143-22.286-1.714-2.286-48-54.857-138.857-54.857-112 0-196.571 82.857-196.571 192.571 0 111.429 82.286 192.571 196.571 192.571zM512 91.429c-232 0-420.571 188.571-420.571 420.571s188.571 420.571 420.571 420.571 420.571-188.571 420.571-420.571-188.571-420.571-420.571-420.571zM512 0c282.857 0 512 229.143 512 512s-229.143 512-512 512-512-229.143-512-512 229.143-512 512-512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "creative-commons"
+ ],
+ "defaultCode": 62046,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "creative-commons",
+ "id": 553,
+ "order": 1409,
+ "prevSize": 28,
+ "code": 62046
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 553
+ },
+ {
+ "icon": {
+ "paths": [
+ "M420.571 457.143l219.429 219.429-219.429 219.429-384-384 384-384 96 96-54.857 54.857-41.143-41.143-274.286 274.286 274.286 274.286 110.286-110.286-165.143-164zM749.714 128l384 384-384 384-96-96 54.857-54.857 41.143 41.143 274.286-274.286-274.286-274.286-110.286 110.286 165.143 164-54.857 54.857-219.429-219.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gg"
+ ],
+ "defaultCode": 62048,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "gg",
+ "id": 554,
+ "order": 1410,
+ "prevSize": 28,
+ "code": 62048
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 554
+ },
+ {
+ "icon": {
+ "paths": [
+ "M409.714 773.714l154.857-154.857-159.429-159.429-50.286 50.286 109.714 109.143-54.857 54.857-159.429-159.429 159.429-159.429 22.857 22.857 49.714-49.714-72.571-73.143-259.429 259.429zM614.286 769.143l259.429-259.429-259.429-259.429-154.857 154.857 159.429 159.429 50.286-50.286-109.714-109.143 54.857-54.857 159.429 159.429-159.429 159.429-22.857-22.857-49.714 50.286zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gg-circle"
+ ],
+ "defaultCode": 62049,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "gg-circle",
+ "id": 555,
+ "order": 1411,
+ "prevSize": 28,
+ "code": 62049
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 555
+ },
+ {
+ "icon": {
+ "paths": [
+ "M372 569.714c0 29.714-24 53.714-53.143 53.714-29.714 0-53.714-24-53.714-53.714 0-29.143 24-53.143 53.714-53.143 29.143 0 53.143 24 53.143 53.143zM1031.429 569.143c0 29.714-24 53.714-53.714 53.714s-53.714-24-53.714-53.714 24-53.143 53.714-53.143 53.714 23.429 53.714 53.143zM437.143 569.714c0-60.571-49.714-110.286-110.286-110.286-61.143 0-110.286 49.714-110.286 110.286 0 61.143 49.143 110.286 110.286 110.286 60.571 0 110.286-49.143 110.286-110.286zM1096 569.143c0-60.571-49.143-110.286-110.286-110.286-60.571 0-110.286 49.714-110.286 110.286 0 61.143 49.714 110.286 110.286 110.286 61.143 0 110.286-49.143 110.286-110.286zM485.714 569.714c0 88-70.857 159.429-158.857 159.429s-159.429-71.429-159.429-159.429c0-87.429 71.429-158.857 159.429-158.857s158.857 71.429 158.857 158.857zM1145.143 569.143c0 88-71.429 158.857-159.429 158.857-87.429 0-158.857-70.857-158.857-158.857s71.429-158.857 158.857-158.857c88 0 159.429 70.857 159.429 158.857zM594.286 570.857c0-145.714-118.286-264-264-264-145.143 0-263.429 118.286-263.429 264s118.286 264 263.429 264c145.714 0 264-118.286 264-264zM976 243.429c-94.286-41.143-200.571-63.429-317.714-63.429s-233.714 22.286-327.429 62.857c181.143 0.571 327.429 146.857 327.429 328 0-177.714 141.143-322.286 317.714-327.429zM1249.714 570.857c0-145.714-117.714-264-263.429-264s-264 118.286-264 264 118.286 264 264 264 263.429-118.286 263.429-264zM1097.714 247.429h218.857c-34.286 40-59.429 93.714-65.714 130.857 39.429 54.286 62.857 120.571 62.857 192.571 0 181.143-146.857 327.429-327.429 327.429-102.857 0-194.286-46.857-254.286-120.571 0 0-26.857 32-73.714 102.286-8-16.571-48.571-74.286-73.143-102.857-60 74.286-152 121.143-254.857 121.143-180.571 0-327.429-146.286-327.429-327.429 0-72 23.429-138.286 62.857-192.571-6.286-37.143-31.429-90.857-65.714-130.857h208.571c112-74.857 274.857-121.714 449.714-121.714s327.429 46.857 439.429 121.714z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tripadvisor"
+ ],
+ "defaultCode": 62050,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "tripadvisor",
+ "id": 556,
+ "order": 1412,
+ "prevSize": 28,
+ "code": 62050
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 556
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 518.286c-142.857 0-259.429-116-259.429-258.857 0-143.429 116.571-259.429 259.429-259.429s259.429 116 259.429 259.429c0 142.857-116.571 258.857-259.429 258.857zM365.714 131.429c-70.286 0-127.429 57.143-127.429 128 0 70.286 57.143 127.429 127.429 127.429s127.429-57.143 127.429-127.429c0-70.857-57.143-128-127.429-128zM664.571 549.714c25.143 51.429-3.429 76-68.571 118.286-54.857 34.857-130.286 48.571-180 53.714l41.714 41.143 152.571 152.571c22.857 23.429 22.857 61.143 0 84l-6.857 7.429c-23.429 22.857-61.143 22.857-84.571 0-38.286-38.857-94.286-94.857-152.571-153.143l-152.571 153.143c-23.429 22.857-61.143 22.857-84 0l-6.857-7.429c-23.429-22.857-23.429-60.571 0-84 38.857-38.857 94.286-94.857 152.571-152.571l41.143-41.143c-49.143-5.143-125.714-18.286-181.143-53.714-65.143-42.286-93.714-66.857-68.571-118.286 14.857-29.143 55.429-53.714 109.143-11.429 0 0 72.571 57.714 189.714 57.714s189.714-57.714 189.714-57.714c53.714-42.286 94.286-17.714 109.143 11.429z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "odnoklassniki"
+ ],
+ "defaultCode": 62051,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "odnoklassniki",
+ "id": 557,
+ "order": 1413,
+ "prevSize": 28,
+ "code": 62051
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 557
+ },
+ {
+ "icon": {
+ "paths": [
+ "M529.714 331.429c0 50.286-40.571 90.857-90.857 90.857s-90.857-40.571-90.857-90.857 40.571-90.857 90.857-90.857 90.857 40.571 90.857 90.857zM652 538.857c-10.286-20.571-39.429-38.286-77.714-8 0 0-52 41.143-135.429 41.143s-135.429-41.143-135.429-41.143c-38.286-30.286-67.429-12.571-77.714 8-18.286 36.571 2.286 54.286 48.571 84.571 39.429 25.143 94.286 34.857 129.143 38.286l-29.143 29.714c-41.143 41.143-81.143 81.143-109.143 108.571-16.571 16.571-16.571 43.429 0 60l5.143 5.143c16.571 16.571 43.429 16.571 60 0l109.143-109.143c41.143 41.714 81.143 81.714 109.143 109.143 16.571 16.571 43.429 16.571 60 0l5.143-5.143c16.571-16.571 16.571-43.429 0-60l-109.143-108.571-29.714-29.714c35.429-3.429 89.143-13.143 128.571-38.286 46.286-30.286 66.857-48 48.571-84.571zM624 331.429c0-102.286-82.857-185.143-185.143-185.143s-185.143 82.857-185.143 185.143 82.857 185.143 185.143 185.143 185.143-82.857 185.143-185.143zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "odnoklassniki-square"
+ ],
+ "defaultCode": 62052,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "odnoklassniki-square",
+ "id": 558,
+ "order": 1414,
+ "prevSize": 28,
+ "code": 62052
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 558
+ },
+ {
+ "icon": {
+ "paths": [
+ "M894.286 73.143c49.714 0 88.571 40 88.571 89.143v296.571c0 273.714-218.857 492-490.857 492-273.143 0-492-218.286-492-492v-296.571c0-48.571 40.571-89.143 89.143-89.143h805.143zM492 681.143c17.143 0 34.286-6.857 46.857-18.857l230.857-221.714c13.143-12.571 21.143-30.286 21.143-48.571 0-37.143-30.286-67.429-67.429-67.429-17.714 0-34.286 6.857-46.857 18.857l-184.571 177.143-184.571-177.143c-12.571-12-29.143-18.857-46.286-18.857-37.143 0-67.429 30.286-67.429 67.429 0 18.286 7.429 36 20.571 48.571l231.429 221.714c12 12 29.143 18.857 46.286 18.857z"
+ ],
+ "width": 982.8205714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "get-pocket"
+ ],
+ "defaultCode": 62053,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "get-pocket",
+ "id": 559,
+ "order": 1415,
+ "prevSize": 28,
+ "code": 62053
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 559
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.714 936.571l-168.571-397.143c-66.857 130.857-140.571 267.429-204 397.143-0.571 0.571-30.857 0-30.857-0.571-96.571-225.714-197.714-449.714-294.286-676-23.429-54.857-101.714-144-155.429-143.429 0-6.286-0.571-20.571-0.571-29.143h333.143v28.571c-39.429 2.286-108.571 27.429-89.143 70.286 45.143 102.286 213.143 494.286 258.286 593.714 30.857-61.143 118.857-224.571 154.857-293.714-28.571-58.286-120.571-275.429-149.714-329.143-20-36.571-74.286-40-114.857-40.571v-28.571l293.143 0.571v26.857c-40 1.143-78.286 16-60.571 53.714 38.857 82.286 62.857 140 98.857 215.429 11.429-22.286 71.429-142.857 98.857-207.429 18.286-42.286-8-58.857-79.429-60.571 0.571-7.429 0-21.143 0.571-28 91.429-0.571 228.571-0.571 253.143-1.143v28c-46.286 1.714-94.286 26.286-119.429 65.143l-121.714 252.571c13.143 33.143 130.286 293.714 142.286 322.286l252-581.143c-17.714-47.429-74.857-57.714-97.143-58.286v-28.571l262.857 2.286 0.571 1.143-0.571 25.143c-57.714 1.714-92.571 32.571-114.857 82.857-51.429 118.857-212.571 493.714-319.429 737.714h-28z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wikipedia-w"
+ ],
+ "defaultCode": 62054,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "wikipedia-w",
+ "id": 560,
+ "order": 1416,
+ "prevSize": 28,
+ "code": 62054
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 560
+ },
+ {
+ "icon": {
+ "paths": [
+ "M542.286 510.286c0 18.857-13.143 36.571-33.143 36.571-18.857 0-36.571-13.714-36.571-33.143 0-18.857 13.714-36.571 33.714-36.571 18.286 0 36 13.143 36 33.143zM550.857 543.429l200-332c-26.857 25.143-277.143 255.429-284 267.429l-199.429 331.429c26.286-24.571 277.143-256 283.429-266.857zM920.571 512c0 74.857-20.571 148.571-59.429 212-5.714-2.857-29.714-20-34.286-20-4 0-7.429 3.429-7.429 7.429 0 7.429 26.857 21.143 33.714 25.143-56.571 85.714-144 147.429-243.429 172l-9.143-38.286c-0.571-5.143-4-5.714-8.571-5.714-4 0-6.286 5.714-5.714 8.571l9.143 38.857c-27.429 5.714-55.429 8.571-83.429 8.571-74.857 0-148.571-21.143-212.571-60 3.429-5.714 25.143-37.143 25.143-41.714 0-4-3.429-7.429-7.429-7.429-8 0-25.143 34.286-30.286 41.143-86.286-57.143-148.571-145.714-172.571-246.857l39.429-8.571c4.571-1.143 5.714-4.571 5.714-8.571s-5.714-6.286-9.143-5.714l-38.857 8.571c-5.143-26.286-8-52.571-8-79.429 0-76.571 21.714-152 62.286-216.571 5.714 3.429 33.143 22.286 37.714 22.286 4 0 7.429-2.857 7.429-6.857 0-8-30.286-23.429-37.143-28 58.286-85.143 146.857-146.286 247.429-169.143l8.571 38.286c1.143 4.571 4.571 5.714 8.571 5.714s6.286-5.714 5.714-9.143l-8.571-37.714c25.143-4.571 50.857-7.429 76.571-7.429v0c76.571 0 151.429 21.714 216.571 62.286-4 5.714-22.286 32.571-22.286 37.143 0 4 2.857 7.429 6.857 7.429 8 0 23.429-29.714 27.429-36.571 84.571 57.143 145.143 144.571 168.571 244l-32 6.857c-5.143 1.143-5.714 4.571-5.714 9.143 0 4 5.714 6.286 8.571 5.714l32.571-7.429c5.143 26.286 8 53.143 8 80zM969.143 512c0-252.571-204.571-457.143-457.143-457.143s-457.143 204.571-457.143 457.143 204.571 457.143 457.143 457.143 457.143-204.571 457.143-457.143zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "safari"
+ ],
+ "defaultCode": 62055,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "safari",
+ "id": 561,
+ "order": 1417,
+ "prevSize": 28,
+ "code": 62055
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 561
+ },
+ {
+ "icon": {
+ "paths": [
+ "M510.286 0c87.429-0.571 176.571 21.714 257.714 68.571 89.714 52 157.714 126.857 201.143 212.571l-424-22.286c-120-6.857-234.286 60.571-273.714 173.714l-157.714-242.286c98.286-122.286 245.714-189.714 396.571-190.286zM83.429 231.429l192.571 378.857c54.286 106.857 169.143 172 288 149.714l-131.429 257.714c-245.143-37.714-432.571-249.714-432.571-505.714 0-103.429 30.857-200 83.429-280.571zM989.714 328c89.714 230.857 0 499.429-221.714 627.429-89.714 52-188.571 73.143-284.571 68l231.429-356c65.714-101.143 64.571-233.143-13.714-324.571zM512 339.429c95.429 0 172.571 77.143 172.571 172.571s-77.143 172.571-172.571 172.571-172.571-77.143-172.571-172.571 77.143-172.571 172.571-172.571z"
+ ],
+ "width": 1079.4422857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chrome"
+ ],
+ "defaultCode": 62056,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "chrome",
+ "id": 562,
+ "order": 1418,
+ "prevSize": 28,
+ "code": 62056
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 562
+ },
+ {
+ "icon": {
+ "paths": [
+ "M516 1024c-220.571 0-396-129.143-476.571-313.714-90.286-205.143-18.286-533.714 142.286-678.857l-6.286 160.571c8-10.286 69.143-13.143 78.857 0 33.143-63.429 140-110.857 225.714-112.571-32.571 27.429-108 127.429-101.714 178.286 41.714 13.143 105.714 13.714 139.429 16 10.286 5.714 8.571 40.571-12 69.143 0 0-26.857 37.143-99.429 50.286l8.571 108-79.429-38.286c-25.714 65.143 36 122.857 100 112 70.857-12 96-58.286 145.714-55.429 49.143 2.857 68.571 30.286 62.286 56 0 0-8 30.857-61.143 25.714-45.143 71.429-105.143 102.857-202.286 94.286 147.429 122.286 346.286 11.429 396.571-88.571 50.286-99.429 6.286-247.429-44-289.143 59.429 25.714 100.571 52 122.286 109.714 11.429-128-47.429-273.143-152.571-358.286 197.714 57.714 318.286 210.857 321.714 455.429s-216.571 499.429-508 499.429z"
+ ],
+ "width": 976.6034285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "firefox"
+ ],
+ "defaultCode": 62057,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "firefox",
+ "id": 563,
+ "order": 1419,
+ "prevSize": 28,
+ "code": 62057
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 563
+ },
+ {
+ "icon": {
+ "paths": [
+ "M853.143 130.286c-60-40-130.286-62.857-205.143-62.857-121.714 0-229.143 62.286-304.571 156-54.857 68.571-93.143 165.714-96 276.571v24c2.857 110.857 41.143 208 96 276.571 75.429 93.714 182.857 156 304.571 156 74.857 0 145.143-22.857 205.143-62.857-90.286 81.143-210.286 130.286-341.143 130.286-8 0-16.571 0-24.571-0.571-271.429-12.571-487.429-236.571-487.429-511.429 0-282.857 229.143-512 512-512h1.714c130.286 0.571 249.143 49.714 339.429 130.286zM1024 512c0 149.143-64 282.857-165.714 376.571-38.857 23.429-81.714 36-126.857 36-52.571 0-102.286-17.143-145.714-48 116-42.286 201.714-189.143 201.714-364.571 0-174.857-85.143-321.714-201.143-364.571 43.429-30.286 92.571-47.429 145.143-47.429 46.286 0 89.714 13.143 129.143 37.143 100.571 93.714 163.429 226.857 163.429 374.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "opera"
+ ],
+ "defaultCode": 62058,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "opera",
+ "id": 564,
+ "order": 1420,
+ "prevSize": 28,
+ "code": 62058
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 564
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 535.429c0 20-1.143 40-4 59.429h-657.714c0 113.714 100 196 209.714 196 74.286 0 145.714-36.571 184-101.143h241.714c-65.143 183.429-239.429 306.286-433.714 306.286-70.286 0-140.571-16.571-203.429-47.429-64 32.571-153.714 66.286-225.143 66.286-96 0-135.429-58.857-135.429-150.286 0-53.143 11.429-106.286 25.714-157.143 9.143-33.143 45.714-100.571 62.286-130.857 70.286-127.429 162.857-249.714 271.429-346.286-87.429 37.714-182.286 132.571-244 202.286 48-209.143 234.286-357.143 448.571-357.143 8.571 0 17.143 0 25.714 0.571 70.857-32.571 169.714-66.857 247.429-66.857 92.571 0 172 35.429 172 140 0 54.857-21.143 114.286-42.857 163.429 37.714 68 57.714 145.143 57.714 222.857zM984 169.714c0-64-45.714-103.429-108.571-103.429-48 0-102.286 19.429-145.143 40 92.571 36 172 102.286 224.571 186.857 14.286-37.714 29.143-83.429 29.143-123.429zM73.143 876.571c0 66.286 39.429 102.286 104.571 102.286 50.857 0 107.429-22.857 152-47.429-93.143-54.857-165.143-142.286-200.571-244.571-26.286 54.857-56 128-56 189.714zM361.143 469.143h416c-4-110.286-101.143-189.714-208-189.714-107.429 0-204 79.429-208 189.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "internet-explorer"
+ ],
+ "defaultCode": 62059,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "internet-explorer",
+ "id": 565,
+ "order": 1421,
+ "prevSize": 28,
+ "code": 62059
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 565
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 713.143v-548.571c0-9.714-8.571-18.286-18.286-18.286h-914.286c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h914.286c9.714 0 18.286-8.571 18.286-18.286zM1097.143 164.571v548.571c0 50.286-41.143 91.429-91.429 91.429h-420.571v73.143h201.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h201.143v-73.143h-420.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h914.286c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "television",
+ "tv"
+ ],
+ "defaultCode": 62060,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "television, tv",
+ "id": 566,
+ "order": 1422,
+ "prevSize": 28,
+ "code": 62060
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 566
+ },
+ {
+ "icon": {
+ "paths": [
+ "M78.857 73.143h112.571c-26.857 24.571-50.857 53.143-72 85.143-88.571 136.571-52.571 286.286-18.286 447.429 28 130.857 51.429 255.429 133.143 345.143h-155.429c-36.571 0-66.286-29.714-66.286-66.286v-745.143c0-36.571 29.714-66.286 66.286-66.286zM769.143 73.143h176c36.571 0 66.286 29.714 66.286 66.286v745.143c0 36.571-29.714 66.286-66.286 66.286h-101.714c75.429-74.857 118.286-183.429 112-322.857l-268 57.714c-3.429 63.429-25.143 124.571-112 142.857-48.571 10.286-88.571-1.143-113.714-22.857-30.857-26.286-55.429-60.571-96.571-256-41.714-196-33.143-237.143-16-273.714 14.286-29.714 46.286-57.143 94.286-67.429 87.429-18.286 132 29.143 161.143 85.714l267.429-57.143c-26.286-67.429-61.143-122.286-102.857-164z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "contao"
+ ],
+ "defaultCode": 62061,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "contao",
+ "id": 567,
+ "order": 1423,
+ "prevSize": 28,
+ "code": 62061
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 567
+ },
+ {
+ "icon": {
+ "paths": [
+ "M800.571 884l-3.429 3.429c-42.857 42.857-92.571 76.571-148 100-57.714 24-118.286 36.571-181.143 36.571s-124-12.571-181.143-36.571c-55.429-23.429-105.714-57.143-148-100-42.857-42.286-76.571-92-100-147.429-14.286-34.857-25.714-70.857-30.857-108v0c-2.286-16 20-19.429 27.429-20.571 17.714-2.857 29.714-1.714 32 11.429 0.571 0.571 0.571 1.143 0.571 2.286 2.286 11.429 8 45.714 26.286 90.857 18.857 46.857 48 90.286 86.857 129.143 37.143 37.143 80.571 66.286 129.143 86.857 49.714 21.143 102.857 32 157.714 32 54.286 0 107.429-10.857 157.714-32 48-20.571 91.429-49.714 128.571-86.857l3.429-3.429c4-4 8.571-5.143 14.286-3.429 5.143 1.143 11.429 5.714 18.857 12.571v0c18.286 18.857 14.286 28 9.714 33.143zM530.857 532.571l-37.714 37.714 36 36c4 4 11.429 12.571-4 28-6.286 6.286-12.571 9.714-18.286 9.714-4 0-7.429-1.714-10.857-5.714l-35.429-34.857-37.714 37.714c-1.143 1.143-4 2.857-8.571 2.857-5.143 0-11.429-2.857-17.714-9.143l-1.143-1.143c-4-3.429-10.286-9.714-10.286-16.571 0-3.429 1.714-6.286 4.571-9.714l37.714-37.143-37.714-37.714c-6.286-6.286-3.429-14.286 8-25.714 6.857-6.857 12.571-10.286 17.714-10.286 2.857 0 5.143 1.143 7.429 2.857l37.143 37.714 37.143-37.143c6.286-6.286 16.571-3.429 27.429 7.429 6.857 6.857 14.286 16.571 6.286 25.143zM800 565.143c0 45.143-9.143 89.143-26.286 130.286-17.143 40-41.143 75.429-72 106.286s-66.857 54.857-106.857 72c-41.143 17.714-85.143 26.286-130.286 26.286s-89.143-8.571-130.286-26.286c-40-17.143-76-41.143-106.857-72s-54.857-66.286-71.429-106.286c-3.429-7.429-8.571-21.714-8.571-22.857h-0.571c-5.143-16 17.714-22.857 24.571-25.143 16.571-5.143 29.143-7.429 34.286 6.857 13.714 36.571 34.857 72 55.429 95.429h0.571v-194.857c1.143-48 21.143-96.571 58.286-132.571 38.286-37.714 89.714-58.857 144.571-58.857 112 0 202.857 90.286 202.857 201.143 0 112-91.429 202.857-202.857 202.857-22.286 0-38.857-1.714-64-9.143-2.857-1.143-16-6.857-7.429-34.857 2.286-7.429 9.143-29.143 25.143-24.571 1.143 0 29.143 6.857 44 6.857 79.429 0 141.714-61.714 141.714-140.571 0-37.143-14.857-72-41.143-97.714-26.286-26.286-61.714-40.571-100-40.571-39.429 0-75.429 16-101.714 45.714-22.857 25.714-36.571 60-36.571 91.429v236c41.143 25.143 88.571 38.286 138.286 38.286 73.143 0 144-29.143 194.857-80 51.429-51.429 80-120.571 80-193.143 0-73.143-28.571-141.714-80.571-193.714-51.429-51.429-120-80-193.714-80s-142.857 28.571-194.286 80c-0.571 0.571-33.143 34.286-44 49.714l-1.143 1.143c-6.857 9.714-13.143 18.857-41.714 12.571-14.286-3.429-29.714-12-29.714-24.571v-388.571c0-10.286 8-21.714 21.714-21.714h501.143c17.143 0 17.143 24 17.143 31.429 0 8 0 31.429-17.143 31.429h-463.429v276h0.571c32-33.714 87.429-69.143 120-82.857 40.571-17.143 86.286-26.286 132-26.286 45.143 0 89.143 8.571 130.286 26.286 40 17.143 76 41.143 106.857 72s54.857 66.286 72 106.286c17.143 41.714 26.286 85.143 26.286 130.857zM782.286 233.143c10.857 9.714 3.429 20-7.429 32.571-6.857 6.857-14.286 14.857-22.286 14.857-3.429 0-6.286-1.143-9.143-4-41.143-35.429-78.286-59.429-118.286-76-49.714-21.714-102.857-32-157.714-32-48.571 0-101.714 9.714-149.714 28-14.857 5.714-22.857-13.714-25.714-21.143-3.429-9.143-5.143-16.571-4.571-21.714 1.143-5.714 4-9.714 9.143-11.429 46.857-20.571 110.857-32.571 170.857-32.571 62.286 0 123.429 12.571 180.571 36.571 52.571 22.286 95.429 49.714 134.286 86.857z"
+ ],
+ "width": 814.8845714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "500px"
+ ],
+ "defaultCode": 62062,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "500px",
+ "id": 568,
+ "order": 1424,
+ "prevSize": 28,
+ "code": 62062
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 568
+ },
+ {
+ "icon": {
+ "paths": [
+ "M886.286 843.429c17.143-8.571 30.286 4.571 12.571 27.429s-160 153.143-398.857 153.143-421.714-163.429-477.714-230.857c-15.429-17.714 2.286-25.714 12.571-18.857 167.429 101.714 429.143 269.143 851.429 69.143zM1004.571 777.714c8.571 11.429 0 61.714-14.857 98.286-14.857 36-36.571 61.143-48.571 70.857-12.571 10.286-21.714 6.286-14.857-8.571s44-106.286 29.143-125.714c-14.857-18.857-84.571-9.714-109.714-7.429-24.571 2.286-29.714 4.571-32-0.571-5.143-13.143 49.714-35.429 85.714-40 36-4 93.714-1.714 105.143 13.143zM779.429 524.571c0 62.857 73.714 120.571 73.714 120.571l-129.714 128c-50.857-48-89.143-88-89.143-88-5.714-5.714-10.286-12.571-14.286-18.857-103.429 161.714-419.429 151.429-419.429-98.857 0-233.143 276-264.571 387.429-268.571v-72.571c0-15.429 5.714-85.714-81.143-85.714 0 0-86.857 0-124 113.143l-168-15.429c0-112.571 106.857-238.286 308-238.286 200.571 0 256.571 130.286 256.571 188v336.571zM395.429 536.571c0 116 192.571 143.429 192.571-39.429v-92.571c-77.143 2.286-192.571 24-192.571 132z"
+ ],
+ "width": 1019.9771428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "amazon"
+ ],
+ "defaultCode": 62064,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "amazon",
+ "id": 569,
+ "order": 1425,
+ "prevSize": 28,
+ "code": 62064
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 569
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 146.286c40 0 73.143 33.143 73.143 73.143v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143zM658.286 91.429v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM219.429 91.429v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM877.714 950.857v-585.143h-804.571v585.143h804.571zM512 621.714h128c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-128v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-128c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-128c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v128z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar-plus-o"
+ ],
+ "defaultCode": 62065,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "calendar-plus-o",
+ "id": 570,
+ "order": 1426,
+ "prevSize": 28,
+ "code": 62065
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 570
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658.286 640v36.571c0 10.286-8 18.286-18.286 18.286h-329.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h329.143c10.286 0 18.286 8 18.286 18.286zM73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM731.429 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar-minus-o"
+ ],
+ "defaultCode": 62066,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "calendar-minus-o",
+ "id": 571,
+ "order": 1427,
+ "prevSize": 28,
+ "code": 62066
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 571
+ },
+ {
+ "icon": {
+ "paths": [
+ "M634.857 791.429l-26.286 26.286c-6.857 6.857-18.286 6.857-25.714 0l-107.429-108-107.429 108c-7.429 6.857-18.857 6.857-25.714 0l-26.286-26.286c-6.857-6.857-6.857-18.286 0-25.714l108-107.429-108-107.429c-6.857-7.429-6.857-18.857 0-25.714l26.286-26.286c6.857-6.857 18.286-6.857 25.714 0l107.429 107.429 107.429-107.429c7.429-6.857 18.857-6.857 25.714 0l26.286 26.286c6.857 6.857 6.857 18.286 0 25.714l-107.429 107.429 107.429 107.429c6.857 7.429 6.857 18.857 0 25.714zM73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM731.429 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar-times-o"
+ ],
+ "defaultCode": 62067,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "calendar-times-o",
+ "id": 572,
+ "order": 1428,
+ "prevSize": 28,
+ "code": 62067
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 572
+ },
+ {
+ "icon": {
+ "paths": [
+ "M744.571 550.857l-292.571 292.571c-7.429 6.857-18.857 6.857-26.286 0l-164.571-164.571c-6.857-7.429-6.857-18.857 0-25.714l26.286-26.286c6.857-6.857 18.286-6.857 25.714 0l125.714 125.714 253.714-253.714c7.429-6.857 18.857-6.857 25.714 0l26.286 26.286c6.857 6.857 6.857 18.286 0 25.714zM73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM731.429 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "calendar-check-o"
+ ],
+ "defaultCode": 62068,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "calendar-check-o",
+ "id": 573,
+ "order": 1429,
+ "prevSize": 28,
+ "code": 62068
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 573
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 0c20 0 36.571 16.571 36.571 36.571v509.143l306.286-245.143c6.286-5.143 14.857-8 22.857-8 20 0 36.571 16.571 36.571 36.571v216.571l306.286-245.143c6.286-5.143 14.857-8 22.857-8 20 0 36.571 16.571 36.571 36.571v658.286c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-950.857c0-20 16.571-36.571 36.571-36.571h219.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "industry"
+ ],
+ "defaultCode": 62069,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "industry",
+ "id": 574,
+ "order": 1430,
+ "prevSize": 28,
+ "code": 62069
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 574
+ },
+ {
+ "icon": {
+ "paths": [
+ "M292.571 621.714c25.143 0 49.714-2.857 73.143-8.571v374.286c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-374.286c23.429 5.714 48 8.571 73.143 8.571zM292.571 0c161.714 0 292.571 130.857 292.571 292.571s-130.857 292.571-292.571 292.571-292.571-130.857-292.571-292.571 130.857-292.571 292.571-292.571zM292.571 128c10.286 0 18.286-8 18.286-18.286s-8-18.286-18.286-18.286c-110.857 0-201.143 90.286-201.143 201.143 0 10.286 8 18.286 18.286 18.286s18.286-8 18.286-18.286c0-90.857 73.714-164.571 164.571-164.571z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map-pin"
+ ],
+ "defaultCode": 62070,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "map-pin",
+ "id": 575,
+ "order": 1431,
+ "prevSize": 28,
+ "code": 62070
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 575
+ },
+ {
+ "icon": {
+ "paths": [
+ "M997.143 169.714c7.429 7.429 7.429 18.857 0 26.286l-80.571 80.571c-10.286 10.286-24.571 16-38.857 16h-768c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h329.143v-36.571c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v36.571h292.571c14.286 0 28.571 5.714 38.857 16zM438.857 694.857h146.286v292.571c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-292.571zM914.286 438.857c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571h-768c-14.286 0-28.571-5.714-38.857-16l-80.571-80.571c-7.429-7.429-7.429-18.857 0-26.286l80.571-80.571c10.286-10.286 24.571-16 38.857-16h292.571v-109.714h146.286v109.714h329.143z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map-signs"
+ ],
+ "defaultCode": 62071,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "map-signs",
+ "id": 576,
+ "order": 1432,
+ "prevSize": 28,
+ "code": 62071
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 576
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1154.286 6.286c9.714 6.857 16 18.286 16 30.286v804.571c0 14.857-9.143 28.571-22.857 33.714l-365.714 146.286c-9.143 4-18.286 4-27.429 0l-352-140.571-352 140.571c-4.571 2.286-9.143 2.857-13.714 2.857-7.429 0-14.286-2.286-20.571-6.286-9.714-6.857-16-18.286-16-30.286v-804.571c0-14.857 9.143-28.571 22.857-33.714l365.714-146.286c9.143-4 18.286-4 27.429 0l352 140.571 352-140.571c11.429-4.571 24-3.429 34.286 3.429zM420.571 83.429v725.714l329.143 131.429v-725.714zM73.143 207.429v725.714l310.857-124v-725.714zM1097.143 816.571v-725.714l-310.857 124v725.714z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map-o"
+ ],
+ "defaultCode": 62072,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "map-o",
+ "id": 577,
+ "order": 1433,
+ "prevSize": 28,
+ "code": 62072
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 577
+ },
+ {
+ "icon": {
+ "paths": [
+ "M292.571 0c9.714 0 18.286 8.571 18.286 18.286v841.143c0 6.857-4 13.143-9.714 16l-274.286 146.286c-2.857 1.714-5.714 2.286-8.571 2.286-9.714 0-18.286-8.571-18.286-18.286v-841.143c0-6.857 4-13.143 9.714-16l274.286-146.286c2.857-1.714 5.714-2.286 8.571-2.286zM1005.714 0c9.714 0 18.286 8.571 18.286 18.286v841.143c0 6.857-4 13.143-9.714 16l-274.286 146.286c-2.857 1.714-5.714 2.286-8.571 2.286-9.714 0-18.286-8.571-18.286-18.286v-841.143c0-6.857 4-13.143 9.714-16l274.286-146.286c2.857-1.714 5.714-2.286 8.571-2.286zM365.714 0c2.857 0 5.714 0.571 8 1.714l292.571 146.286c6.286 3.429 10.286 9.714 10.286 16.571v841.143c0 9.714-8.571 18.286-18.286 18.286-2.857 0-5.714-0.571-8-1.714l-292.571-146.286c-6.286-3.429-10.286-9.714-10.286-16.571v-841.143c0-9.714 8.571-18.286 18.286-18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map"
+ ],
+ "defaultCode": 62073,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "map",
+ "id": 578,
+ "order": 1434,
+ "prevSize": 28,
+ "code": 62073
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 578
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 512c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM585.143 512c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM804.571 512c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM1024 512c0 202.286-229.143 365.714-512 365.714-41.714 0-82.286-3.429-120.571-10.286-65.143 65.143-150.286 109.714-248.571 130.857-15.429 2.857-32 5.714-49.143 7.429-9.143 1.143-17.714-5.143-20-13.714v0c-2.286-9.143 4.571-14.857 11.429-21.143 36-33.714 78.857-60.571 93.714-181.143-109.143-66.857-178.857-166.286-178.857-277.714 0-202.286 229.143-365.714 512-365.714s512 163.429 512 365.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "commenting"
+ ],
+ "defaultCode": 62074,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "commenting",
+ "id": 579,
+ "order": 1435,
+ "prevSize": 28,
+ "code": 62074
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 579
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM585.143 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM804.571 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM512 219.429c-237.714 0-438.857 133.714-438.857 292.571 0 85.143 57.143 166.286 156 222.286l49.714 28.571-15.429 54.857c-10.857 40.571-25.143 72-40 98.286 57.714-24 110.286-56.571 157.143-97.714l24.571-21.714 32.571 3.429c24.571 2.857 49.714 4.571 74.286 4.571 237.714 0 438.857-133.714 438.857-292.571s-201.143-292.571-438.857-292.571zM1024 512c0 202.286-229.143 365.714-512 365.714-28 0-56-1.714-82.857-4.571-74.857 66.286-164 113.143-262.857 138.286-20.571 5.714-42.857 9.714-65.143 12.571h-2.857c-11.429 0-21.714-9.143-24.571-21.714v-0.571c-2.857-14.286 6.857-22.857 15.429-33.143 36-40.571 77.143-74.857 104-170.286-117.714-66.857-193.143-170.286-193.143-286.286 0-201.714 229.143-365.714 512-365.714v0c282.857 0 512 164 512 365.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "commenting-o"
+ ],
+ "defaultCode": 62075,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "commenting-o",
+ "id": 580,
+ "order": 1436,
+ "prevSize": 28,
+ "code": 62075
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 580
+ },
+ {
+ "icon": {
+ "paths": [
+ "M292.571 680.571l292.571-168.571v337.714l-292.571 169.143v-338.286zM0 512v337.714l292.571-169.143-292.571-168.571zM292.571 5.143v337.714l-292.571 169.143v-337.714zM292.571 342.857l292.571-168.571v337.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "houzz"
+ ],
+ "defaultCode": 62076,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "houzz",
+ "id": 581,
+ "order": 1437,
+ "prevSize": 28,
+ "code": 62076
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 581
+ },
+ {
+ "icon": {
+ "paths": [
+ "M976.571 296c-4 90.286-67.429 214.286-189.714 372-126.857 164-233.143 246.286-321.143 246.286-54.286 0-100-50.286-137.143-150.286-25.143-91.429-50.286-183.429-75.429-275.429-27.429-100-57.714-149.714-89.714-149.714-6.857 0-30.857 14.286-72.571 43.429l-44-56c45.714-40.571 90.857-81.714 136-121.143 60.571-53.714 106.857-80.571 137.714-83.429 72.571-6.857 116.571 42.286 133.714 148 17.714 114.286 30.857 185.714 37.714 213.143 21.143 94.857 43.429 142.286 68.571 142.286 19.429 0 48.571-30.286 88-92 38.857-61.714 59.429-108.571 62.286-140.571 5.143-53.143-15.429-79.429-62.286-79.429-22.286 0-45.143 5.143-69.143 14.857 45.714-149.714 133.143-222.286 262.286-218.286 95.429 2.857 140.571 65.143 134.857 186.286z"
+ ],
+ "width": 1029.12,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vimeo"
+ ],
+ "defaultCode": 62077,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "vimeo",
+ "id": 582,
+ "order": 1438,
+ "prevSize": 28,
+ "code": 62077
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 582
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 73.143h877.714v877.714h-877.714v-877.714zM620 710.286l-126.286-360.571 126.286-169.714h-362.286l126.286 169.714-126.286 360.571 181.143 173.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "black-tie"
+ ],
+ "defaultCode": 62078,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "black-tie",
+ "id": 583,
+ "order": 1439,
+ "prevSize": 28,
+ "code": 62078
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 583
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 73.143h877.714v877.714h-877.714v-877.714zM518.857 256l-6.857 18.857 42.857 47.429-17.714 65.143 14.286 14.286 61.143-32.571 61.143 32.571 14.286-14.286-17.714-65.143 42.857-47.429-6.857-18.857h-54.286l-30.286-54.857h-18.286l-30.286 54.857h-54.286zM366.286 349.143c23.429 0 32.571 8.571 32 45.143l99.429-12c0-87.429-60-103.429-126.857-103.429-99.429 0-151.429 40-151.429 137.143v41.143h-54.857v73.143h43.429c5.714 0 11.429 0 11.429 4.571v218.286c0 10.857-2.857 14.286-13.143 15.429l-41.714 4v50.286h256v-49.143l-85.143-8c-10.286-1.143-6.286-2.857-6.286-14.286v-221.143h109.143l21.714-73.143h-132c-5.714 0 1.143-4 1.143-8.571v-45.714c0-34.286 1.143-53.714 37.143-53.714zM713.143 822.857v-49.143l-30.857-5.143c-10.857-1.714-5.714-2.857-5.714-14.286v-297.143h-157.143l-13.143 57.714 47.429 12.571c7.429 2.286 13.143 7.429 13.143 15.429v211.429c0 10.857-4.571 13.143-14.857 14.286l-40 5.143v49.143h201.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fonticons"
+ ],
+ "defaultCode": 62080,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "fonticons",
+ "id": 584,
+ "order": 1440,
+ "prevSize": 28,
+ "code": 62080
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 584
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 483.429c0 44.571-25.143 82.857-62.286 101.714 4.571 17.714 6.857 36 6.857 54.857 0 180.571-204 326.857-455.429 326.857-250.857 0-454.857-146.286-454.857-326.857 0-18.286 2.286-36.571 6.286-53.714-38.286-18.857-64.571-57.714-64.571-102.857 0-62.857 50.857-113.714 113.714-113.714 32.571 0 61.714 13.714 82.857 36 77.143-53.714 180-88.571 294.286-92.571l66.286-297.714c2.286-10.286 13.143-17.143 23.429-14.857l210.857 46.286c13.714-27.429 42.857-46.857 76-46.857 47.429 0 85.714 38.286 85.714 85.143 0 47.429-38.286 85.714-85.714 85.714-46.857 0-85.143-38.286-85.143-85.143l-190.857-42.286-59.429 269.714c114.857 3.429 218.857 37.714 296.571 91.429 20.571-21.714 49.714-34.857 81.714-34.857 62.857 0 113.714 50.857 113.714 113.714zM238.857 597.143c0 47.429 38.286 85.714 85.143 85.714 47.429 0 85.714-38.286 85.714-85.714 0-46.857-38.286-85.143-85.714-85.143-46.857 0-85.143 38.286-85.143 85.143zM701.714 800c8.571-8.571 8.571-21.143 0-29.714-8-8-21.143-8-29.143 0-34.286 34.857-108 46.857-160.571 46.857s-126.286-12-160.571-46.857c-8-8-21.143-8-29.143 0-8.571 8-8.571 21.143 0 29.714 54.286 54.286 158.857 58.286 189.714 58.286s135.429-4 189.714-58.286zM700 682.857c46.857 0 85.143-38.286 85.143-85.714 0-46.857-38.286-85.143-85.143-85.143-47.429 0-85.714 38.286-85.714 85.143 0 47.429 38.286 85.714 85.714 85.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "reddit-alien"
+ ],
+ "defaultCode": 62081,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "reddit-alien",
+ "id": 585,
+ "order": 1441,
+ "prevSize": 28,
+ "code": 62081
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 585
+ },
+ {
+ "icon": {
+ "paths": [
+ "M39.429 454.286h0.571c29.714-236.571 191.429-454.857 480.571-454.286 175.429 0 320 82.286 404.571 233.714 43.429 78.286 59.429 161.714 59.429 252.571v107.429h-642.857c2.857 265.143 389.714 256 556.571 139.429v215.429c-97.714 58.857-318.286 109.714-490.286 44-145.714-56-247.429-207.429-249.143-354.857-2.286-190.286 94.286-316.571 249.143-388.571-32.571 41.143-57.714 85.714-70.857 162.857h362.857c21.143-216.571-205.143-216.571-205.143-216.571-213.714 7.429-368 132-455.429 258.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "edge"
+ ],
+ "defaultCode": 62082,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "edge",
+ "id": 586,
+ "order": 1442,
+ "prevSize": 28,
+ "code": 62082
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 586
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 859.429v-347.429h1316.571v347.429c0 50.286-41.143 91.429-91.429 91.429h-1133.714c-50.286 0-91.429-41.143-91.429-91.429zM365.714 731.429v73.143h219.429v-73.143h-219.429zM146.286 731.429v73.143h146.286v-73.143h-146.286zM1225.143 73.143c50.286 0 91.429 41.143 91.429 91.429v128h-1316.571v-128c0-50.286 41.143-91.429 91.429-91.429h1133.714z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "credit-card-alt"
+ ],
+ "defaultCode": 62083,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "credit-card-alt",
+ "id": 587,
+ "order": 1443,
+ "prevSize": 28,
+ "code": 62083
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 587
+ },
+ {
+ "icon": {
+ "paths": [
+ "M905.143 737.143l-124.571-63.429c-56 91.429-155.429 147.429-262.857 147.429-170.286 0-308-137.714-308-307.429 0-170.286 137.714-308 308-308 100 0 193.714 48.571 251.429 130.857l122.857-71.429c-84-129.143-226.286-206.286-380-206.286-250.286 0-453.143 202.857-453.143 453.143s202.857 453.143 453.143 453.143c162.286 0 312.571-86.857 393.143-228zM588.571 510.286l396 201.143c-86.857 189.714-261.143 312.571-472.571 312.571-282.857 0-512-229.143-512-512s229.143-512 512-512c201.143 0 366.857 110.857 460.571 285.714zM881.714 512h-22.286v91.429h-54.857v-201.143h77.714c63.429 0 69.143 109.714-0.571 109.714z"
+ ],
+ "width": 984.576,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "codiepie"
+ ],
+ "defaultCode": 62084,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "codiepie",
+ "id": 588,
+ "order": 1444,
+ "prevSize": 28,
+ "code": 62084
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 588
+ },
+ {
+ "icon": {
+ "paths": [
+ "M815.429 405.143l-350.857-220.571 52.571-86.286h488.571zM231.429 556.571l-105.143-66.286v-490.286l676 424.571zM813.714 479.429l84 54.286v490.286l-304-191.429zM792.571 467.429l-285.714 458.286h-488.571l203.429-326.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "modx"
+ ],
+ "defaultCode": 62085,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "modx",
+ "id": 589,
+ "order": 1445,
+ "prevSize": 28,
+ "code": 62085
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 589
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 576v-128c0-5.143-4-9.143-9.143-9.143h-54.857c-5.143 0-9.143 4-9.143 9.143v128c0 5.143 4 9.143 9.143 9.143h54.857c5.143 0 9.143-4 9.143-9.143zM658.286 576v-128c0-5.143-4-9.143-9.143-9.143h-54.857c-5.143 0-9.143 4-9.143 9.143v128c0 5.143 4 9.143 9.143 9.143h54.857c5.143 0 9.143-4 9.143-9.143zM950.857 594.286v429.714h-365.714v-182.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v182.857h-365.714v-429.714c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v64h73.143v-356.571c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v64h73.143v-64c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v64h73.143v-64c0-12 16-9.143 23.429-9.143v-223.429c-10.857-5.143-18.286-16.571-18.286-28.571 0-17.143 14.286-31.429 31.429-31.429s31.429 14.286 31.429 31.429c0 12-7.429 23.429-18.286 28.571v9.714c15.429-3.429 31.429-5.714 47.429-5.714 23.429 0 45.714 8.571 65.143 8.571 17.714 0 37.714-8.571 48-8.571 5.143 0 9.143 4 9.143 9.143v120c0 13.714-46.286 16-55.429 16-21.143 0-41.143-8.571-62.857-8.571-17.143 0-34.857 2.857-51.429 6.857v76c7.429 0 23.429-2.857 23.429 9.143v64h73.143v-64c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v64h73.143v-64c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v356.571h73.143v-64c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fort-awesome"
+ ],
+ "defaultCode": 62086,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "fort-awesome",
+ "id": 590,
+ "order": 1446,
+ "prevSize": 28,
+ "code": 62086
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 590
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1307.429 460c5.714 2.857 9.143 9.143 9.143 15.429s-3.429 12.571-9.143 15.429l-182.857 109.714c-2.857 1.714-5.714 2.857-9.143 2.857-2.857 0-6.286-0.571-9.143-2.286-5.714-3.429-9.143-9.143-9.143-16v-73.143h-490.286c18.286 28.571 33.714 62.286 47.429 94.286 27.429 61.714 55.429 125.143 95.429 125.143h54.857v-54.857c0-10.286 8-18.286 18.286-18.286h182.857c10.286 0 18.286 8 18.286 18.286v182.857c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-87.429 0-126.857-89.714-162.286-168.571-26.857-61.143-54.857-124-93.714-124h-205.714c-16.571 62.857-73.714 109.714-141.714 109.714-80.571 0-146.286-65.714-146.286-146.286s65.714-146.286 146.286-146.286c68 0 125.143 46.857 141.714 109.714h59.429c38.857 0 66.857-62.857 93.714-124 35.429-78.857 74.857-168.571 162.286-168.571h61.143c15.429-42.857 55.429-73.143 103.429-73.143 60.571 0 109.714 49.143 109.714 109.714s-49.143 109.714-109.714 109.714c-48 0-88-30.286-103.429-73.143h-61.143c-40 0-68 63.429-95.429 125.143-13.714 32-29.143 65.714-47.429 94.286h636.571v-73.143c0-6.857 3.429-12.571 9.143-16s13.143-2.857 18.286 0.571z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "usb"
+ ],
+ "defaultCode": 62087,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "usb",
+ "id": 591,
+ "order": 1447,
+ "prevSize": 28,
+ "code": 62087
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 591
+ },
+ {
+ "icon": {
+ "paths": [
+ "M657.143 435.429c0 42.286-34.286 76.571-77.143 76.571v0h-144.571v-153.714h144.571c42.857 0 77.143 34.286 77.143 77.143zM759.429 435.429c0-99.429-80-179.429-179.429-179.429v0h-247.429v512h102.857v-153.714h144.571c99.429 0 179.429-80 179.429-178.857zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "product-hunt"
+ ],
+ "defaultCode": 62088,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "product-hunt",
+ "id": 592,
+ "order": 1448,
+ "prevSize": 28,
+ "code": 62088
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 592
+ },
+ {
+ "icon": {
+ "paths": [
+ "M940 627.429c0-45.714-29.143-84.571-69.143-100-2.857 17.714-7.429 35.429-13.143 52.571-5.714 18.286-22.857 29.714-41.143 29.714-4.571 0-9.143-0.571-13.714-1.714-23.429-8-35.429-32.571-28-55.429 8.571-26.286 13.143-53.714 13.143-81.714 0-142.857-116.571-259.429-260-259.429-102.857 0-195.429 61.143-236.571 152.571 40 10.286 77.143 30.857 107.429 60.571 17.143 17.143 17.143 45.143 0 62.286s-45.143 17.143-62.286 0c-27.429-27.429-64-42.857-102.857-42.857-80.571 0-146.286 65.143-146.286 145.714s65.714 145.714 146.286 145.714h597.714c60 0 108.571-48.571 108.571-108zM1027.429 627.429c0 108-88 195.429-196 195.429h-597.714c-129.143 0-233.714-104.571-233.714-233.143 0-117.143 86.857-213.714 199.429-230.286 47.429-139.429 179.429-235.429 328.571-235.429 180 0 328.571 137.714 345.714 313.143 87.429 18.857 153.714 97.143 153.714 190.286zM1170.286 627.429c0 65.143-18.857 128-55.429 182.286-8.571 12.571-22.286 18.857-36.571 18.857v0c-8.571 0-17.143-2.286-24.571-7.429-20-13.143-25.143-40.571-11.429-60.571 26.857-39.429 40.571-85.143 40.571-133.143 0-47.429-13.714-93.714-40.571-133.143-13.714-20-8.571-46.857 11.429-60.571s47.429-8 61.143 12c36.571 53.714 55.429 116.571 55.429 181.714zM1316.571 627.429c0 90.857-26.286 178.286-76.571 253.143-8.571 12.571-22.286 19.429-36.571 19.429v0c-8 0-16.571-2.286-24-7.429-20-13.714-25.714-40.571-12-60.571 40-60.571 61.714-131.429 61.714-204.571s-21.714-144-61.714-204c-13.714-20-8-47.429 12-60.571 20-13.714 46.857-8.571 60.571 12 50.286 74.286 76.571 161.714 76.571 252.571z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mixcloud"
+ ],
+ "defaultCode": 62089,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "mixcloud",
+ "id": 593,
+ "order": 1449,
+ "prevSize": 28,
+ "code": 62089
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 593
+ },
+ {
+ "icon": {
+ "paths": [
+ "M857.143 885.143c0 68-54.857 123.429-123.429 123.429s-124-55.429-124-123.429c0-68.571 55.429-124 124-124s123.429 55.429 123.429 124zM724 724.571c-86.857 11.429-154.286 85.714-154.286 176 0 28 6.857 55.429 18.857 78.857-51.429 27.429-121.143 44.571-216.571 44.571-304 0-351.429-214.857-351.429-243.429 0-29.143 17.143-124.571 124.571-124.571s122.286 92 122.286 110.857c0 0 0 19.429-13.143 46.286 36.571 34.286 122.857 34.286 122.857 34.286 86.286 0 151.429-42.286 151.429-105.143 0-63.429-73.143-94.286-240-172.571-166.857-78.857-229.714-136.571-229.714-280 0-144 96-289.714 335.429-289.714s329.714 134.286 329.714 226.286-78.286 114.857-107.429 114.857c-28.571 0-134.286 9.714-134.286-149.143-18.857-21.143-101.143-21.143-101.143-21.143-82.857 0-119.429 62.857-119.429 101.143 0 38.857 15.429 86.857 188 144 264.571 88 274.286 202.857 274.286 308.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "scribd"
+ ],
+ "defaultCode": 62090,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "scribd",
+ "id": 594,
+ "order": 1450,
+ "prevSize": 28,
+ "code": 62090
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 594
+ },
+ {
+ "icon": {
+ "paths": [
+ "M402.286 676.571v-329.143c0-10.286-8-18.286-18.286-18.286h-146.286c-10.286 0-18.286 8-18.286 18.286v329.143c0 10.286 8 18.286 18.286 18.286h146.286c10.286 0 18.286-8 18.286-18.286zM658.286 676.571v-329.143c0-10.286-8-18.286-18.286-18.286h-146.286c-10.286 0-18.286 8-18.286 18.286v329.143c0 10.286 8 18.286 18.286 18.286h146.286c10.286 0 18.286-8 18.286-18.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause-circle"
+ ],
+ "defaultCode": 62091,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "pause-circle",
+ "id": 595,
+ "order": 1451,
+ "prevSize": 28,
+ "code": 62091
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 595
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM438.857 822.857c171.429 0 310.857-139.429 310.857-310.857s-139.429-310.857-310.857-310.857-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857zM493.714 694.857c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v329.143c0 10.286-8 18.286-18.286 18.286h-109.714zM274.286 694.857c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v329.143c0 10.286-8 18.286-18.286 18.286h-109.714z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause-circle-o"
+ ],
+ "defaultCode": 62092,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "pause-circle-o",
+ "id": 596,
+ "order": 1452,
+ "prevSize": 28,
+ "code": 62092
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 596
+ },
+ {
+ "icon": {
+ "paths": [
+ "M621.714 676.571v-329.143c0-10.286-8-18.286-18.286-18.286h-329.143c-10.286 0-18.286 8-18.286 18.286v329.143c0 10.286 8 18.286 18.286 18.286h329.143c10.286 0 18.286-8 18.286-18.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stop-circle"
+ ],
+ "defaultCode": 62093,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "stop-circle",
+ "id": 597,
+ "order": 1453,
+ "prevSize": 28,
+ "code": 62093
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 597
+ },
+ {
+ "icon": {
+ "paths": [
+ "M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM438.857 822.857c171.429 0 310.857-139.429 310.857-310.857s-139.429-310.857-310.857-310.857-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857zM274.286 694.857c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h329.143c10.286 0 18.286 8 18.286 18.286v329.143c0 10.286-8 18.286-18.286 18.286h-329.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stop-circle-o"
+ ],
+ "defaultCode": 62094,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "stop-circle-o",
+ "id": 598,
+ "order": 1454,
+ "prevSize": 28,
+ "code": 62094
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 598
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1004 804.571l20 178.857c1.143 10.286-2.286 20.571-9.143 28.571-6.857 7.429-17.143 12-27.429 12h-950.857c-10.286 0-20.571-4.571-27.429-12-6.857-8-10.286-18.286-9.143-28.571l20-178.857h984zM950.857 325.143l49.143 442.857h-976l49.143-442.857c2.286-18.286 17.714-32.571 36.571-32.571h146.286v73.143c0 40.571 32.571 73.143 73.143 73.143s73.143-32.571 73.143-73.143v-73.143h219.429v73.143c0 40.571 32.571 73.143 73.143 73.143s73.143-32.571 73.143-73.143v-73.143h146.286c18.857 0 34.286 14.286 36.571 32.571zM731.429 219.429v146.286c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571v-146.286c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286v146.286c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571v-146.286c0-121.143 98.286-219.429 219.429-219.429s219.429 98.286 219.429 219.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shopping-bag"
+ ],
+ "defaultCode": 62096,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "shopping-bag",
+ "id": 599,
+ "order": 1455,
+ "prevSize": 28,
+ "code": 62096
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 599
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1097.143 438.857c40.571 0 73.143 32.571 73.143 73.143s-32.571 73.143-73.143 73.143h-8.571l-65.714 378.286c-6.286 34.857-36.571 60.571-72 60.571h-731.429c-35.429 0-65.714-25.714-72-60.571l-65.714-378.286h-8.571c-40.571 0-73.143-32.571-73.143-73.143s32.571-73.143 73.143-73.143h1024zM277.143 896c20-1.714 35.429-19.429 33.714-39.429l-18.286-237.714c-1.714-20-19.429-35.429-39.429-33.714s-35.429 19.429-33.714 39.429l18.286 237.714c1.714 18.857 17.714 33.714 36.571 33.714h2.857zM512 859.429v-237.714c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571v237.714c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571zM731.429 859.429v-237.714c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571v237.714c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571zM932.571 862.286l18.286-237.714c1.714-20-13.714-37.714-33.714-39.429s-37.714 13.714-39.429 33.714l-18.286 237.714c-1.714 20 13.714 37.714 33.714 39.429h2.857c18.857 0 34.857-14.857 36.571-33.714zM272 166.857l-53.143 235.429h-75.429l57.714-252c14.857-66.857 73.714-113.714 142.286-113.714h95.429c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571h95.429c68.571 0 127.429 46.857 142.286 113.714l57.714 252h-75.429l-53.143-235.429c-8-33.714-37.143-57.143-71.429-57.143h-95.429c0 20-16.571 36.571-36.571 36.571h-219.429c-20 0-36.571-16.571-36.571-36.571h-95.429c-34.286 0-63.429 23.429-71.429 57.143z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shopping-basket"
+ ],
+ "defaultCode": 62097,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "shopping-basket",
+ "id": 600,
+ "order": 1456,
+ "prevSize": 28,
+ "code": 62097
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 600
+ },
+ {
+ "icon": {
+ "paths": [
+ "M566.286 585.143l36.571-146.286h-145.143l-36.571 146.286h145.143zM1005.143 297.143l-32 128c-2.286 8-9.143 13.714-17.714 13.714h-186.857l-36.571 146.286h177.714c5.714 0 10.857 2.857 14.286 6.857 3.429 4.571 5.143 10.286 3.429 16l-32 128c-1.714 8-9.143 13.714-17.714 13.714h-186.857l-46.286 187.429c-2.286 8-9.714 13.714-17.714 13.714h-128c-5.714 0-11.429-2.857-14.857-6.857-3.429-4.571-4.571-10.286-3.429-16l44.571-178.286h-145.143l-46.286 187.429c-2.286 8-9.714 13.714-17.714 13.714h-128.571c-5.143 0-10.857-2.857-14.286-6.857-3.429-4.571-4.571-10.286-3.429-16l44.571-178.286h-177.714c-5.714 0-10.857-2.857-14.286-6.857-3.429-4.571-4.571-10.286-3.429-16l32-128c2.286-8 9.143-13.714 17.714-13.714h186.857l36.571-146.286h-177.714c-5.714 0-10.857-2.857-14.286-6.857-3.429-4.571-5.143-10.286-3.429-16l32-128c1.714-8 9.143-13.714 17.714-13.714h186.857l46.286-187.429c2.286-8 9.714-13.714 18.286-13.714h128c5.143 0 10.857 2.857 14.286 6.857 3.429 4.571 4.571 10.286 3.429 16l-44.571 178.286h145.143l46.286-187.429c2.286-8 9.714-13.714 18.286-13.714h128c5.143 0 10.857 2.857 14.286 6.857 3.429 4.571 4.571 10.286 3.429 16l-44.571 178.286h177.714c5.714 0 10.857 2.857 14.286 6.857 3.429 4.571 4.571 10.286 3.429 16z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hashtag"
+ ],
+ "defaultCode": 62098,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "hashtag",
+ "id": 601,
+ "order": 1457,
+ "prevSize": 28,
+ "code": 62098
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 601
+ },
+ {
+ "icon": {
+ "paths": [
+ "M480.571 601.714l84.571 84.571-85.143 85.143zM480 252.571l85.143 85.143-84.571 84.571-0.571-169.714zM405.714 952l265.143-265.143-174.857-174.857 174.857-174.857-265.143-265.143v349.143l-145.714-145.714-53.143 53.143 182.857 183.429-182.857 183.429 53.143 53.143 145.714-145.714v349.143zM816.571 512c0 405.714-154.286 512-377.714 512v0c-223.429 0-377.714-106.286-377.714-512s154.286-512 377.714-512 377.714 106.286 377.714 512z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bluetooth"
+ ],
+ "defaultCode": 62099,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bluetooth",
+ "id": 602,
+ "order": 1458,
+ "prevSize": 28,
+ "code": 62099
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 602
+ },
+ {
+ "icon": {
+ "paths": [
+ "M340.571 813.143l98.857-98.286-98.857-98.286v196.571zM340.571 407.429l98.857-98.286-98.857-98.286v196.571zM358.857 512l203.429 203.429-308 308.571v-406.286l-169.714 169.143-61.714-61.714 212.571-213.143-212.571-213.143 61.714-61.714 169.714 169.143v-406.286l308 308.571z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bluetooth-b"
+ ],
+ "defaultCode": 62100,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bluetooth-b",
+ "id": 603,
+ "order": 1459,
+ "prevSize": 28,
+ "code": 62100
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 603
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 731.429c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143 33.143 73.143 73.143 73.143 73.143-33.143 73.143-73.143zM292.571 292.571c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143 33.143 73.143 73.143 73.143 73.143-33.143 73.143-73.143zM877.714 731.429c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429zM822.857 109.714c0 8-2.857 15.429-7.429 21.714l-603.429 804.571c-6.857 9.143-17.714 14.857-29.143 14.857h-91.429c-20 0-36.571-16.571-36.571-36.571 0-8 2.857-15.429 7.429-21.714l603.429-804.571c6.857-9.143 17.714-14.857 29.143-14.857h91.429c20 0 36.571 16.571 36.571 36.571zM438.857 292.571c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "percent"
+ ],
+ "defaultCode": 62101,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "percent",
+ "id": 604,
+ "order": 1460,
+ "prevSize": 28,
+ "code": 62101
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 604
+ },
+ {
+ "icon": {
+ "paths": [
+ "M59.429 403.429l452.571 580-496-360c-13.714-10.286-19.429-28-14.286-44l57.714-176zM323.429 403.429h377.143l-188.571 580zM210.286 53.714l113.143 349.714h-264l113.143-349.714c6.286-17.714 31.429-17.714 37.714 0zM964.571 403.429l57.714 176c5.143 16-0.571 33.714-14.286 44l-496 360 452.571-580zM964.571 403.429h-264l113.143-349.714c6.286-17.714 31.429-17.714 37.714 0z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gitlab"
+ ],
+ "defaultCode": 62102,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "gitlab",
+ "id": 605,
+ "order": 1461,
+ "prevSize": 28,
+ "code": 62102
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 605
+ },
+ {
+ "icon": {
+ "paths": [
+ "M219.429 475.429h91.429v-128h-91.429v128zM697.714 665.143v-52.571c-49.143 17.143-89.714 21.143-138.857 21.714-110.286 0.571-208-45.143-274.286-96.571l0.571 54.857c62.286 56.571 157.714 101.143 276.571 100.571 49.714 0 96.571-10.286 136-28zM365.714 475.429h365.714v-128h-365.714v128zM1024 457.143c0 72.571-20.571 141.143-56.571 201.143 32 36.571 50.857 81.714 50.857 130.857 0 119.429-113.143 216.571-253.143 216.571-94.857 0-177.143-44.571-220.571-110.286-10.857 0.571-21.714 0.571-32.571 0.571s-21.714 0-32.571-0.571c-43.429 65.714-125.714 110.286-220.571 110.286-140 0-253.143-97.143-253.143-216.571 0-49.143 18.857-94.286 50.857-130.857-36-60-56.571-128.571-56.571-201.143 0-242.286 229.143-438.857 512-438.857s512 196.571 512 438.857z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wpbeginner"
+ ],
+ "defaultCode": 62103,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "wpbeginner",
+ "id": 606,
+ "order": 1462,
+ "prevSize": 28,
+ "code": 62103
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 606
+ },
+ {
+ "icon": {
+ "paths": [
+ "M294.286 520.571v73.143h-144v-73.143h144zM294.286 374.857v72.571h-144v-72.571h144zM727.429 666.857v73.143h-194.857v-73.143h194.857zM727.429 520.571v73.143h-384v-73.143h384zM727.429 374.857v72.571h-384v-72.571h384zM804.571 866.286v-708.571c0-6.286-5.143-11.429-11.429-11.429h-18.286l-216 146.286-120-97.714-120 97.714-216-146.286h-18.286c-6.286 0-11.429 5.143-11.429 11.429v708.571c0 6.286 5.143 11.429 11.429 11.429h708.571c6.286 0 11.429-5.143 11.429-11.429zM316 232l105.714-85.714h-232zM561.714 232l126.286-85.714h-232zM877.714 157.714v708.571c0 46.857-37.714 84.571-84.571 84.571h-708.571c-46.857 0-84.571-37.714-84.571-84.571v-708.571c0-46.857 37.714-84.571 84.571-84.571h708.571c46.857 0 84.571 37.714 84.571 84.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wpforms"
+ ],
+ "defaultCode": 62104,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "wpforms",
+ "id": 607,
+ "order": 1463,
+ "prevSize": 28,
+ "code": 62104
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 607
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 466.286c-72.571-137.143-139.429-270.857-329.714-361.143-113.714-53.714-12 21.143-12 21.143 103.429 71.429 150.857 168 206.286 273.714 72 137.714 180.571 319.429 329.714 383.429 148.571 64 78.286 28.571 13.714-19.429-64.571-48.571-156-198.857-208-297.714zM313.714 776.571c-206.286-163.429-194.857-358.857-313.714-776.571 1092 0 838.286 725.143 839.429 837.143l184.571 186.857h-59.429l-160.571-162.857c-89.143 9.714-284.571 78.857-490.286-84.571z"
+ ],
+ "width": 1092.022857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "envira"
+ ],
+ "defaultCode": 62105,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "envira",
+ "id": 608,
+ "order": 1464,
+ "prevSize": 28,
+ "code": 62105
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 608
+ },
+ {
+ "icon": {
+ "paths": [
+ "M785.143 375.429c-4.571-19.429-24-31.429-44-26.857-81.714 19.429-156 35.429-229.143 35.429s-147.429-16-229.143-35.429c-20-4.571-39.429 7.429-44 26.857-4.571 20 7.429 39.429 26.857 44 60.571 14.286 117.143 26.857 173.143 33.143-2.286 193.143-23.429 246.857-47.429 308.571l-5.143 12c-7.429 18.857 2.286 40 21.143 47.429 4 1.714 8.571 2.286 13.143 2.286 14.857 0 28.571-8.571 34.286-23.429l4.571-11.429c16-41.143 30.857-79.429 40.571-148h24c9.714 68.571 24.571 106.857 40.571 148l4.571 11.429c5.714 14.857 19.429 23.429 34.286 23.429 4.571 0 9.143-0.571 13.143-2.286 18.857-7.429 28.571-28.571 21.143-47.429l-5.143-12c-24-61.714-45.143-115.429-47.429-308.571 56-6.286 112.571-18.857 173.143-33.143 19.429-4.571 31.429-24 26.857-44zM585.143 292.571c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM914.286 512c0 222.286-180 402.286-402.286 402.286s-402.286-180-402.286-402.286 180-402.286 402.286-402.286 402.286 180 402.286 402.286zM512 73.143c-241.714 0-438.857 197.143-438.857 438.857s197.143 438.857 438.857 438.857 438.857-197.143 438.857-438.857-197.143-438.857-438.857-438.857zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512v0c282.857 0 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "universal-access"
+ ],
+ "defaultCode": 62106,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "universal-access",
+ "id": 609,
+ "order": 1465,
+ "prevSize": 28,
+ "code": 62106
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 609
+ },
+ {
+ "icon": {
+ "paths": [
+ "M821.714 464.571c12 12.571 18.286 29.714 16.571 46.857l-25.143 314.857c-2.857 32-29.143 56-60.571 56-1.714 0-3.429 0-5.143-0.571-33.714-2.286-58.286-32-56-65.143l20-245.143-81.714 4.571c20 41.143 31.429 88 31.429 137.143 0 82.286-32 157.143-84.571 212.571l-78.286-78.286c32-35.429 52-82.857 52-134.286 0-110.857-89.714-200.571-200-200.571-52 0-98.857 20-134.857 52.571l-78.286-78.857c44-41.714 100-70.286 162.286-80.571l150.857-171.429-85.143-49.714-103.429 92c-25.143 22.857-63.429 20.571-85.714-4.571s-20-63.429 4.571-85.714l136.571-121.714c19.429-17.714 48-20.571 70.857-6.857 278.286 161.714 278.857 161.714 278.857 161.714 14.857 8.571 23.429 23.429 27.429 38.857 5.714 22.286 1.714 47.429-14.857 66.857l-117.143 132.571 212-11.429c17.714-1.143 34.857 5.143 47.429 18.286zM708.571 203.429c-56 0-101.714-45.143-101.714-101.714 0-56 45.714-101.714 101.714-101.714 56.571 0 102.286 45.714 102.286 101.714 0 56.571-45.714 101.714-102.286 101.714zM350.286 913.143c41.143 0 80-13.143 112-34.857l79.429 79.429c-52.571 41.714-119.429 66.286-191.429 66.286-172 0-311.429-139.429-311.429-310.857 0-72.571 24.571-138.857 66.286-192l79.429 79.429c-21.714 32-34.286 70.857-34.286 112.571 0 110.286 89.714 200 200 200z"
+ ],
+ "width": 878.8845714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wheelchair-alt"
+ ],
+ "defaultCode": 62107,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "wheelchair-alt",
+ "id": 610,
+ "order": 1466,
+ "prevSize": 28,
+ "code": 62107
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 610
+ },
+ {
+ "icon": {
+ "paths": [
+ "M502.857 685.714v91.429c0 10.286-8 18.286-18.286 18.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-91.429c0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286zM649.143 402.286c0 81.143-56.571 113.143-98.286 136.571-29.714 17.143-48 28-48 46.286v18.286c0 10.286-8 18.286-18.286 18.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-38.857c0-70.286 50.286-92.571 90.857-110.857 34.286-16 55.429-26.857 55.429-52.571 0-33.143-41.714-57.714-79.429-57.714-20 0-41.143 6.286-54.286 15.429-12.571 8.571-24.571 21.143-45.714 47.429-3.429 4.571-8.571 6.857-14.286 6.857-4 0-8-1.143-10.857-3.429l-61.714-46.857c-7.429-5.714-9.143-16.571-4-24.571 46.857-73.714 112.571-109.714 199.429-109.714v0c93.714 0 198.857 74.286 198.857 173.714zM438.857 146.286c-201.714 0-365.714 164-365.714 365.714s164 365.714 365.714 365.714 365.714-164 365.714-365.714-164-365.714-365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "question-circle-o"
+ ],
+ "defaultCode": 62108,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "question-circle-o",
+ "id": 611,
+ "order": 1467,
+ "prevSize": 28,
+ "code": 62108
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 611
+ },
+ {
+ "icon": {
+ "paths": [
+ "M209.143 177.714c-49.143 0-89.143-40-89.143-89.143 0-48.571 40-88.571 89.143-88.571s88.571 40 88.571 88.571c0 49.143-39.429 89.143-88.571 89.143zM524 544.571c0 61.714-65.714 48-80.571 22.857l-209.714-250.286c-9.143-14.857-16-8-16-8s-4 4.571 2.286 12l69.714 79.429 0.571 202.286c-49.143 142.857-92 261.143-92 261.143-26.857 76.571-49.143 142.857-68.571 152-23.429 12-40.571 9.143-58.857 0.571-24-10.857-30.857-40-29.143-57.143 0 0 1.143-9.143 112.571-353.143l2.857-237.714-48.571 93.714 20 126.857c7.429 48-33.143 54.286-33.143 54.286-38.857 6.286-46.857-38.857-46.857-40l-26.286-170.857c120-216.571 120.571-217.714 120.571-217.714v0c9.143-13.714 29.714-19.429 64.571-19.429 30.857 0 50.286 9.143 61.143 22.857v0l242.286 297.714c3.429 2.286 5.714 5.714 8 9.714l1.714 1.714-0.571 0.571c2.857 5.143 4 10.857 4 16.571zM293.714 630.286c54.857 145.714 104 256 104 256 16.571 42.286 45.143 102.857 3.429 126.857-41.143 24-74.286-4-83.429-23.429v0h-0.571c-1.714-4.571-3.429-9.143-4.571-14.286l-70.857-200.571zM764.571 968.571c12 18.857 22.286 32.571 16 36.571-10.857 6.857-14.286-13.143-26.286-32.571 0 0-64.571-97.714-241.714-377.714 3.429 1.143 9.714-4 9.714-4s6.286-5.143 6.286-9.714c176 287.429 236 387.429 236 387.429z"
+ ],
+ "width": 809.1794285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "blind"
+ ],
+ "defaultCode": 62109,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "blind",
+ "id": 612,
+ "order": 1468,
+ "prevSize": 28,
+ "code": 62109
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 612
+ },
+ {
+ "icon": {
+ "paths": [
+ "M288 568h97.714l-0.571-151.429zM874.286 511.429c0-63.429-36.571-110.286-112.571-110.286h-30.857v221.714h29.714c71.429 0 113.714-52 113.714-111.429zM546.286 296l0.571 432c0 10.857-8.571 19.429-18.857 19.429h-123.429c-10.286 0-18.857-8.571-18.857-19.429v-35.429h-166.286l-31.429 46.286c-3.429 5.143-9.714 8.571-16 8.571h-152.571c-16 0-25.143-17.714-15.429-30.286l317.714-432.571c3.429-5.143 9.143-8 15.429-8h189.714c10.857 0 19.429 8.571 19.429 19.429zM1018.857 511.429c0 150.286-109.714 236-257.143 236h-154.286c-10.857 0-19.429-8.571-19.429-19.429v-432c0-10.857 8.571-19.429 19.429-19.429h153.143c148.571 0 258.286 84.571 258.286 234.857zM1108 512c0 0 2.286 148.571-84.571 236h-29.143c77.714-92.571 79.429-236.571 79.429-236.571s1.143-113.143-77.143-234.286h24.571c84.571 96.571 86.857 234.857 86.857 234.857zM1213.143 512c0 0 2.286 148.571-85.143 236h-29.143c77.714-92.571 79.429-236.571 79.429-236.571s1.143-113.143-76.571-234.286h24.571c84.571 96.571 86.857 234.857 86.857 234.857zM1316.571 512c0 0 2.286 148.571-84.571 236h-29.143c77.143-92.571 78.857-236.571 78.857-236.571s1.143-113.143-76.571-234.286h24.571c84.571 96.571 86.857 234.857 86.857 234.857z"
+ ],
+ "width": 1313.1337142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "audio-description"
+ ],
+ "defaultCode": 62110,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "audio-description",
+ "id": 613,
+ "order": 1469,
+ "prevSize": 28,
+ "code": 62110
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 613
+ },
+ {
+ "icon": {
+ "paths": [
+ "M352.571 965.143c0-13.714-30.286-110.857-36.571-133.714-3.429-14.286-4.571-37.714-15.429-48-7.429-6.857-19.429-8-29.143-8-26.857 0-53.714 6.286-80.571 6.286-8 0-20-0.571-26.857-6.286-9.143-7.429-13.714-33.143-17.143-44.571-13.714-47.429-21.143-96-21.143-145.714s7.429-98.286 21.143-145.714c3.429-11.429 8-37.143 17.143-44.571 6.857-5.714 18.857-6.286 26.857-6.286 26.857 0 53.714 6.286 80.571 6.286 9.714 0 21.714-1.143 29.143-8 10.857-10.286 12-33.714 15.429-48 6.286-22.857 36.571-120 36.571-133.714 0-19.429-51.429-48-68-54.286-8.571-3.429-17.143-4.571-25.714-4.571-18.857 0-37.714 5.143-56 10.286-93.714 28-116 85.143-153.143 165.714-40 86.286-49.714 168.571-49.714 262.857s9.714 176.571 49.714 262.857c37.143 80.571 59.429 137.714 153.143 165.714 18.286 5.143 37.143 10.286 56 10.286 8.571 0 17.143-1.143 25.714-4.571 16.571-6.286 68-34.857 68-54.286zM443.429 443.429c-9.714 0-18.857-4-25.714-10.857-14.286-14.286-14.857-37.714 0-52 13.714-13.714 21.143-32 21.143-51.429s-7.429-37.714-21.143-52c-14.857-14.286-14.286-37.143 0-51.429s37.143-14.286 51.429 0c27.429 27.429 42.857 64.571 42.857 103.429s-15.429 76-42.857 103.429c-7.429 6.857-16.571 10.857-25.714 10.857zM546.857 546.857c-9.714 0-18.857-3.429-25.714-10.857-14.286-14.286-14.286-37.143 0-51.429 41.143-41.714 64-96.571 64-155.429s-22.857-113.714-64-155.429c-14.286-14.286-14.286-37.143 0-51.429s37.143-14.286 51.429 0c55.429 55.429 85.714 128.571 85.714 206.857s-30.286 151.429-85.714 206.857c-6.857 7.429-16.571 10.857-25.714 10.857zM650.286 650.286c-9.714 0-18.857-3.429-25.714-10.857-14.286-14.286-14.286-37.143 0-51.429 68.571-69.143 106.857-161.143 106.857-258.857s-38.286-189.714-106.857-258.857c-14.286-14.286-14.286-37.143 0-51.429s37.143-14.286 51.429 0c82.857 82.857 128.571 193.143 128.571 310.286s-45.714 227.429-128.571 310.286c-6.857 7.429-16.571 10.857-25.714 10.857z"
+ ],
+ "width": 804.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume-control-phone"
+ ],
+ "defaultCode": 62112,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "volume-control-phone",
+ "id": 614,
+ "order": 1470,
+ "prevSize": 28,
+ "code": 62112
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 614
+ },
+ {
+ "icon": {
+ "paths": [
+ "M109.714 676.571c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM402.286 676.571c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM402.286 384c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM841.143 676.571c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM1133.714 676.571c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM841.143 384c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM1133.714 384c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM1133.714 91.429c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM219.429 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM512 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM219.429 475.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM512 475.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM219.429 182.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM950.857 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM512 182.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1243.429 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM950.857 475.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM1243.429 475.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM950.857 182.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1243.429 182.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714z"
+ ],
+ "width": 1243.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "braille"
+ ],
+ "defaultCode": 62113,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "braille",
+ "id": 615,
+ "order": 1471,
+ "prevSize": 28,
+ "code": 62113
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 615
+ },
+ {
+ "icon": {
+ "paths": [
+ "M73.143 987.429c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM182.857 877.714c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM208.571 669.143l146.286 146.286-51.429 51.429-146.286-146.286zM402.286 658.286c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM806.286 475.429c0 94.857-44.571 145.714-83.429 190.857-36 41.143-64.571 73.714-64.571 138.286 0 121.143-98.286 219.429-219.429 219.429-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571c80.571 0 146.286-65.714 146.286-146.286 0-92 44-142.286 82.286-186.286 35.429-40.571 65.714-75.429 65.714-142.857 0-141.143-114.857-256-256-256s-256 114.857-256 256c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571c0-181.714 147.429-329.143 329.143-329.143s329.143 147.429 329.143 329.143zM512 548.571c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM676.571 475.429c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571c0-70.857-57.143-128-128-128-70.286 0-128 57.143-128 128 0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571c0-110.857 90.286-201.143 201.143-201.143s201.143 90.286 201.143 201.143zM901.714 310.286c7.429 18.857-2.286 40-21.143 47.429-4 1.714-8.571 2.286-13.143 2.286-14.286 0-28.571-8.571-33.714-23.429-25.714-66.857-70.286-125.143-128-168.571-16-12-19.429-34.857-7.429-50.857 12.571-16 35.429-19.429 51.429-7.429 68.571 51.429 121.143 121.143 152 200.571zM1021.714 264c6.857 18.857-2.286 40-21.143 47.429-4.571 1.714-8.571 2.286-13.143 2.286-14.857 0-28.571-8.571-34.286-23.429-34.286-89.143-93.143-166.857-169.714-224.571-16.571-12-19.429-34.857-7.429-50.857 12-16.571 34.857-19.429 50.857-7.429 88 65.714 155.429 154.857 194.857 256.571z"
+ ],
+ "width": 1028.608,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assistive-listening-systems"
+ ],
+ "defaultCode": 62114,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "assistive-listening-systems",
+ "id": 616,
+ "order": 1472,
+ "prevSize": 28,
+ "code": 62114
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 616
+ },
+ {
+ "icon": {
+ "paths": [
+ "M589.714 548.571c-20-0.571-38.857-12-48-31.429-12.571-25.714-37.714-41.714-66.286-41.714-40.571 0-73.143 32.571-73.143 73.143 0 19.429 6.857 38.286 20.571 50.857l5.714 4.571c12.571 11.429 29.143 17.714 46.857 17.714 28.571 0 53.714-16 66.286-41.714 9.143-19.429 28-30.857 48-31.429zM914.286 475.429c0-19.429-6.857-38.286-20.571-50.857l-5.714-4.571c-12.571-11.429-29.143-17.714-46.857-17.714-28.571 0-53.714 16-66.286 41.714-9.143 19.429-28 30.857-48 31.429 20 0.571 38.857 12 48 31.429 12.571 25.714 37.714 41.714 66.286 41.714 40.571 0 73.143-32.571 73.143-73.143zM670.857 349.143c-13.143 26.857-46.286 38.286-73.143 25.143-24-12-49.714-17.714-76.571-17.714-20 0-38.857 3.429-56.571 9.714 3.429 0 7.429-0.571 10.857-0.571 70.286 0 134.857 41.143 165.143 104.571 13.143 27.429 1.143 60-26.286 73.143-6.857 3.429-14.286 5.143-22.286 5.143 8 0 15.429 1.714 22.286 5.143 27.429 13.143 39.429 45.714 26.286 73.143-30.286 63.429-94.857 104.571-165.143 104.571v0h-3.429c-8.571-1.143-16.571-1.714-25.143-2.286l-165.714-15.429-136.571 68.571c-5.714 2.857-10.857 4-16.571 4-13.143 0-26.286-7.429-32.571-20l-91.429-182.857c-8.571-17.714-2.286-38.857 14.286-48.571l119.429-68 84.571-152.571c13.143-117.714 71.429-225.714 164-301.714 23.429-19.429 58.286-16 77.143 7.429 19.429 23.429 16 57.714-7.429 77.143-25.714 21.714-48.571 46.286-66.857 73.143 44.571-30.286 96-50.857 152.571-57.714 30.286-4 57.714 17.143 61.143 47.429 4 30.286-17.143 57.714-47.429 61.143-33.143 4-64 15.429-90.857 31.429 18.286-4 37.143-5.714 56.571-5.714 43.429 0 85.714 9.714 124.571 28.571 27.429 13.714 38.857 46.286 25.143 73.714zM1221.143 257.714l91.429 182.857c8.571 17.714 2.286 38.857-14.286 48.571l-119.429 68-84.571 152.571c-13.143 117.714-71.429 225.714-164 301.714-10.286 8.571-22.857 12.571-34.857 12.571-16 0-31.429-6.857-42.286-20-19.429-23.429-16-57.714 7.429-77.143 25.714-21.714 48.571-46.286 66.857-73.143-44.571 30.286-96 50.857-152.571 57.714-2.286 0.571-4.571 0.571-6.857 0.571-27.429 0-50.857-20.571-54.286-48-4-30.286 17.143-57.714 47.429-61.143 33.143-4 64-15.429 90.857-31.429-18.286 4-37.143 5.714-56.571 5.714-43.429 0-85.714-9.714-124.571-28.571-27.429-13.714-38.857-46.286-25.143-73.714 13.143-26.857 46.286-38.286 73.143-25.143 24 12 49.714 17.714 76.571 17.714 20 0 38.857-3.429 56.571-9.714-3.429 0-7.429 0.571-10.857 0.571-70.286 0-134.857-41.143-165.143-104.571-13.143-27.429-1.143-60 26.286-73.143 6.857-3.429 14.286-5.143 22.286-5.143-8 0-15.429-1.714-22.286-5.143-27.429-13.143-39.429-45.714-26.286-73.143 30.286-63.429 94.857-104.571 165.143-104.571v0h4c8 1.143 16 1.714 24 2.286l166.286 15.429 136.571-68.571c5.714-2.857 10.857-4 16.571-4 13.143 0 26.286 7.429 32.571 20z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "american-sign-language-interpreting",
+ "asl-interpreting"
+ ],
+ "defaultCode": 62115,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "american-sign-language-interpreting, asl-interpreting",
+ "id": 617,
+ "order": 1473,
+ "prevSize": 28,
+ "code": 62115
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 617
+ },
+ {
+ "icon": {
+ "paths": [
+ "M603.429 475.429c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571c0-110.857-90.286-201.143-201.143-201.143s-201.143 90.286-201.143 201.143c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571c0-70.857 57.714-128 128-128s128 57.143 128 128zM477.143 146.286c-181.714 0-329.143 147.429-329.143 329.143 0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571c0-141.143 114.857-256 256-256s256 114.857 256 256c0 67.429-30.286 102.286-65.714 142.857-38.286 44-82.286 94.286-82.286 186.286 0 80.571-65.714 146.286-146.286 146.286-20 0-36.571 16.571-36.571 36.571s16.571 36.571 36.571 36.571c121.143 0 219.429-98.286 219.429-219.429 0-64.571 28.571-97.143 64.571-138.286 38.857-45.143 83.429-96 83.429-190.857 0-181.714-147.429-329.143-329.143-329.143zM337.714 557.143l129.143 129.143-330.857 330.857c-9.143 9.143-24 9.143-33.143 0l-96-96c-9.143-9.143-9.143-24 0-33.143zM921.143 6.857l96 96c9.143 9.143 9.143 24 0 33.714l-133.143 133.143-14.857 14.286-40.571 40.571c-24.571-57.143-62.286-107.429-111.429-147.429l170.286-170.286c9.714-9.143 24.571-9.143 33.714 0z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "deaf",
+ "deafness",
+ "hard-of-hearing"
+ ],
+ "defaultCode": 62116,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "deaf, deafness, hard-of-hearing",
+ "id": 618,
+ "order": 1474,
+ "prevSize": 28,
+ "code": 62116
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 618
+ },
+ {
+ "icon": {
+ "paths": [
+ "M494.857 294.286c0 18.286-4 36-7.429 53.714-12 57.143-23.429 114.286-35.429 171.429-1.714 8-1.714 8-10.286 8.571-5.714 0.571-12 1.143-17.714 1.143-49.143 0-62.857-53.143-62.857-93.143 0-59.429 23.429-138.857 78.857-170.286 9.143-4.571 18.857-8 29.143-8 23.429 0 25.714 17.143 25.714 36.571zM772.571 536.571c0-10.286-42.286-77.143-52-81.143-4.571-1.714-14.286-4.571-19.429-4.571-46.857 0-89.143 21.143-129.143 44l-1.143-1.143c9.143-61.143 29.714-115.429 29.714-178.857 0-90.857-48.571-133.143-138.286-133.143-13.143 0-26.286 1.714-38.857 3.429-112.571 20-181.143 148.571-181.143 254.286 0 112 64.571 173.714 176 173.714 2.286 0 14.286-1.143 14.286 1.714 0 1.143 0 1.714-0.571 2.857-2.286 21.714-9.143 45.714-14.857 66.857-8.571 31.429-38.286 85.714-76.571 85.714-16.571 0-24-11.429-24-26.857 0-49.714 57.143-79.429 58.286-82.286 0-2.286-2.857-4.571-4-5.714-17.714-16-46.857-29.143-70.857-29.143-43.429 0-66.857 69.714-66.857 105.143 0 66.286 41.714 112 108.571 112 98.857 0 170.857-104 193.143-189.714 6.286-25.143 10.857-50.857 17.143-76 1.143-5.143 2.857-7.429 8-10.286 40.571-20.571 83.429-34.286 129.714-34.286 25.143 0 47.429 4.571 72.571 10.286 0.571 0.571 1.714 0.571 2.286 0.571 3.429 0 8-4 8-7.429zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "glide"
+ ],
+ "defaultCode": 62117,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "glide",
+ "id": 619,
+ "order": 1475,
+ "prevSize": 28,
+ "code": 62117
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 619
+ },
+ {
+ "icon": {
+ "paths": [
+ "M425.143 174.286c0-30.286-2.857-56.571-39.429-56.571-15.429 0-30.857 5.143-44.571 13.143-86.286 47.429-121.714 170.286-121.714 262.857 0 61.714 21.143 144 96.571 144 17.143 0 38.857 4.571 43.429-15.429 18.286-88 36.571-176.571 54.857-264.571 5.714-27.429 10.857-55.429 10.857-83.429zM856 549.143c0 5.714-7.429 11.429-13.143 11.429l-3.429-0.571c-38.857-5.714-73.143-16-112.571-16-71.429 0-137.143 21.143-200.571 53.143-8 4-9.714 7.429-12 15.429-10.286 38.857-17.143 78.857-26.857 117.714-34.286 133.143-145.714 293.714-298.286 293.714-104 0-168-70.857-168-173.143 0-55.429 36-163.429 102.857-163.429 23.429 0 115.429 30.286 116 54.286-1.143 4.571-89.714 50.286-89.714 127.429 0 23.429 11.429 41.714 37.143 41.714 90.857 0 132.571-165.714 141.714-235.429v-5.143c0-4.571-18.286-2.286-21.714-2.286-172 0-272.571-96-272.571-269.143 0-163.429 106.286-362.857 280.571-393.143 20-3.429 40-5.143 60.571-5.143 138.286 0 213.714 64.571 213.714 205.714 0 95.429-32.571 183.429-46.286 276.571l1.714 1.714c61.714-34.857 126.857-68 200-68 7.429 0 23.429 4.571 30.286 7.429 14.857 5.714 80.571 109.143 80.571 125.143z"
+ ],
+ "width": 877.1291428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "glide-g"
+ ],
+ "defaultCode": 62118,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "glide-g",
+ "id": 620,
+ "order": 1476,
+ "prevSize": 28,
+ "code": 62118
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 620
+ },
+ {
+ "icon": {
+ "paths": [
+ "M474.857 384.571c12 0 23.429 3.429 33.714 10.286l126.857 84.571c23.429 15.429 44.571 34.286 62.857 55.429l83.429 97.143c14.286 16.571 20.571 38.857 16.571 60.571l-41.143 236c-4.571 24-24 42.286-48.571 45.143l-301.143 32-201.143 18.286h-5.143c-29.714 0-54.857-24-54.857-54.857 0-28.571 24-51.429 52.571-54.857l148.571-18.286h-256c-31.429 0-56.571-26.286-54.857-57.714 1.714-29.714 28-52 57.714-52l252.571-0.571-297.714-36.571c-30.857-3.429-53.143-31.429-48.571-62.857 4.571-27.429 29.714-45.714 57.143-45.714h5.714l274.857 34.286-200.571-53.714c-28.571-7.429-50.286-33.714-45.714-62.857 4.571-27.429 28-46.286 54.286-46.286 4 0 7.429 0.571 11.429 1.143l256 54.857 124 21.143c1.143 0 2.286 0.571 3.429 0.571 17.143 0 25.714-23.429 10.286-33.714l-106.286-71.429c-26.286-17.714-32.571-53.143-13.714-78.286 10.286-14.286 26.857-21.714 43.429-21.714zM434.857 500l106.286 71.429-124.571-21.143-2.857-1.143-20.571-21.714-136-149.714c-1.143-1.143-1.714-2.857-2.857-4-17.714-23.429-13.714-57.714 10.857-76.571 22.857-17.714 55.429-12 75.429 9.143l81.143 84c-1.714 1.714-3.429 2.857-5.143 4.571-12 16.571-16.571 36.571-13.143 56.571 3.429 19.429 14.857 37.143 31.429 48.571zM941.714 240.571l8.571 152c1.714 28-0.571 56.571-6.286 84l-27.429 125.143c-4.571 21.714-18.286 39.429-38.286 49.714l-60.571 30.857c0.571-22.857-6.857-44.571-22.286-62.286l-83.429-97.143c-19.429-22.286-41.714-42.286-66.857-58.857l-126.857-84.571c-12.571-8.571-27.429-13.143-43.429-13.143-19.429 0-37.143 8-50.286 21.143l-134.286-178.286c-18.857-25.143-13.143-60.571 13.143-78.286 24.571-17.143 58.286-9.143 76.571 14.857l152 201.143-149.714-260c-16-26.857-6.857-61.714 21.143-76.571 26.286-13.714 59.429-2.857 74.286 22.857l137.714 240-77.714-192.571c-10.857-27.429-3.429-60.571 22.857-74.286 28-14.857 62.286-2.857 75.429 25.714l110.286 237.143 57.714 112c9.143 17.714 36 10.286 34.857-9.143l-6.857-128c-1.714-31.429 22.857-57.714 54.286-58.286 29.714 0 53.714 25.143 55.429 54.857z"
+ ],
+ "width": 948.0045714285714,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sign-language",
+ "signing"
+ ],
+ "defaultCode": 62119,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "sign-language, signing",
+ "id": 621,
+ "order": 1477,
+ "prevSize": 28,
+ "code": 62119
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 621
+ },
+ {
+ "icon": {
+ "paths": [
+ "M191.429 774.857c-1.143 0-2.286-0.571-3.429-1.143-66.857-44.571-133.714-117.714-176-185.714-8-11.429-12-25.143-12-39.429 0-29.714 20.571-53.714 37.143-76 66.286-90.286 154.857-164.571 258.286-208.571-8.571-15.429-62.857-110.286-62.857-120.571 0-6.857 4-13.143 9.714-16.571 11.429-6.286 62.857-36.571 73.143-36.571 6.286 0 12.571 3.429 16 9.143l70.857 130.857c36-7.429 73.143-10.857 109.714-10.857 206.857 0 390.857 117.143 500.571 289.714 7.429 11.429 11.429 25.143 11.429 39.429s-4 28-11.429 39.429c-68 106.857-167.429 195.429-284 245.143 8.571 15.429 62.857 110.286 62.857 120.571 0 6.857-3.429 13.143-9.714 16.571-11.429 6.286-62.857 36.571-72.571 36.571-6.857 0-13.143-3.429-16.571-9.143l-70.857-130.857-36.571-68-253.714-468.571 4-4c-19.429 8-38.286 16.571-56.571 26.857 6.857 13.143 279.429 513.714 279.429 517.714 0 2.857-2.286 4.571-5.143 5.143-12.571 2.857-28.571 1.714-41.143 1.714-6.286 0-32 1.143-34.286-4l-260.571-480.571c-16.571 12-32 25.143-46.857 38.857 12.571 22.286 230.857 424 230.857 427.429 0 4.571-2.857 5.714-6.286 5.714-9.714 0-85.714-23.429-88.571-28.571l-60.571-112.571-128-236c-16 19.429-30.857 39.429-44.571 60.571 7.429 10.857 17.143 22.286 23.429 33.714 8 14.857 100.571 183.429 100.571 186.857 0 2.857-2.857 5.714-5.714 5.714zM665.714 716.571l28 52c106.857-43.429 194.857-123.429 257.143-220-63.429-97.714-153.714-178.857-262.286-222.286 50.857 48.571 79.429 115.429 79.429 185.714 0 80.571-37.714 156.571-102.286 204.571zM484.571 365.714c0 14.857 12.571 27.429 27.429 27.429 31.429 0 61.714 12.571 84 34.857s34.857 52.571 34.857 84c0 14.857 12.571 27.429 27.429 27.429s27.429-12.571 27.429-27.429c0-96-77.714-173.714-173.714-173.714-14.857 0-27.429 12.571-27.429 27.429zM693.714 328.571l-5.143-2.286 4 4z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "low-vision"
+ ],
+ "defaultCode": 62120,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "low-vision",
+ "id": 622,
+ "order": 1478,
+ "prevSize": 28,
+ "code": 62120
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 622
+ },
+ {
+ "icon": {
+ "paths": [
+ "M600 632c0 81.714-28.571 153.714-84 213.714-57.714 62.857-130.857 92-216 92-84.571 0-158.286-28.571-216-92-55.429-60-84-132-84-213.714 0-169.714 128-308.571 300-308.571 35.429 0 70.857 5.714 104 17.714-11.429 22.286-19.429 46.857-22.286 72-25.714-10.857-53.714-16-81.714-16-129.714 0-225.143 110.857-225.143 236.571 0 128 94.857 232.571 225.143 232.571s224.571-104.571 224.571-232.571c0-32.571-5.714-64.571-18.286-94.857 25.143-5.143 49.143-14.857 70.286-28 16 38.286 23.429 80 23.429 121.143zM483.429 524c0 144-58.286 264-181.714 341.714l-8 0.571c-12 0-24-1.143-35.429-2.857 165.143-62.857 195.429-313.714 195.429-466.857 0-19.429 0-39.429-1.714-58.857 20.571 60 31.429 122.857 31.429 186.286zM452 336.571v1.143c-29.714-87.429-70.857-172-117.714-251.429 72 48.571 111.429 166.286 117.714 250.286zM591.429 452.571c-35.429 0-66.857-18.857-91.429-42.857 58.286-32 132-81.714 165.714-141.143 4-8 10.857-22.857 12-32-33.143 74.286-117.714 132.571-196.571 150.857-12.571-19.429-20-41.143-20-64.571 0-27.429 13.714-64 34.286-84 23.429-22.286 58.286-33.714 89.714-42.286 45.714-12.571 82.857-48 102.857-90.857 29.714 42.286 42.286 93.714 42.286 144.571 0 25.714-4 72.571-13.714 97.143-21.143 51.429-64 105.143-125.143 105.143z"
+ ],
+ "width": 730.2582857142856,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "viadeo"
+ ],
+ "defaultCode": 62121,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "viadeo",
+ "id": 623,
+ "order": 1479,
+ "prevSize": 28,
+ "code": 62121
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 623
+ },
+ {
+ "icon": {
+ "paths": [
+ "M600 594.857c0-28.571-5.143-57.143-16-84-14.857 9.143-31.429 16-48.571 19.429 9.143 20.571 12.571 42.857 12.571 65.143 0 88-65.143 160-154.286 160-89.714 0-154.857-72-154.857-160 0-86.286 65.714-162.286 154.857-162.286 19.429 0 38.286 3.429 56 10.857 1.714-17.143 7.429-34.286 15.429-49.714-22.857-8-46.857-12-71.429-12-118.286 0-206.286 95.429-206.286 212.571s88.571 209.714 206.286 209.714 206.286-93.143 206.286-209.714zM498.286 392c1.143 13.714 1.143 27.429 1.143 40.571 0 105.714-20.571 277.714-134.286 321.143 8 1.143 16 1.714 24 1.714h5.714c84.571-53.714 125.143-136 125.143-234.857 0-44-7.429-87.429-21.714-128.571zM498.286 392c-2.857-55.429-34.286-141.143-81.143-172.571 32 54.286 60.571 112.571 81.143 172.571zM689.714 332c0-34.857-8.571-70.286-29.143-99.429-13.714 29.143-39.429 53.714-70.857 62.286-45.143 12.571-85.143 33.714-85.143 87.429 0 15.429 5.143 30.857 13.714 44 54.286-12.571 112-52.571 134.857-104-3.429 45.714-88.571 101.143-121.714 119.429 16.571 16.571 38.286 29.714 62.857 29.714 41.714 0 71.429-37.143 85.714-72.571 6.857-17.143 9.714-49.143 9.714-66.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "viadeo-square"
+ ],
+ "defaultCode": 62122,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "viadeo-square",
+ "id": 624,
+ "order": 1480,
+ "prevSize": 28,
+ "code": 62122
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 624
+ },
+ {
+ "icon": {
+ "paths": [
+ "M730.857 656c0-8-4.571-13.714-12.571-15.429-52-11.429-91.429-47.429-113.143-95.429-1.714-4.571-4-9.143-4-14.286 0-25.714 71.429-20.571 71.429-57.143 0-15.429-18.857-25.143-32.571-25.143-13.143 0-23.429 9.143-36 9.143-2.286 0-4.571-0.571-6.857-1.143 1.143-21.714 2.857-43.429 2.857-65.143 0-20-1.143-47.429-9.714-65.143-27.429-59.429-80.571-94.286-145.714-94.286-71.429 0-125.714 26.286-157.143 94.286-8.571 17.714-9.714 45.143-9.714 65.143 0 21.714 1.714 43.429 2.857 65.143-2.286 1.143-5.143 1.143-8 1.143-13.143 0-23.429-8.571-35.429-8.571-14.286 0-32 9.143-32 25.143 0 35.429 71.429 30.857 71.429 56.571 0 5.143-2.286 9.714-4 14.286-22.286 48-60.571 84-113.143 95.429-8 1.714-12.571 7.429-12.571 15.429 0 26.286 60.571 36 78.286 38.857 5.143 13.714 2.857 37.714 23.429 37.714 14.286 0 28.571-5.143 44-5.143 60 0 76 54.286 145.714 54.286 72.571 0 86.286-54.286 146.857-54.286 15.429 0 29.714 4.571 44.571 4.571 20 0 17.714-24 22.857-37.143 17.714-2.857 78.286-12.571 78.286-38.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "snapchat"
+ ],
+ "defaultCode": 62123,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "snapchat",
+ "id": 625,
+ "order": 1481,
+ "prevSize": 28,
+ "code": 62123
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 625
+ },
+ {
+ "icon": {
+ "paths": [
+ "M484.571 73.143c102.857-1.143 188 56.571 230.857 149.143 13.143 28 15.429 71.429 15.429 102.286 0 36.571-2.857 72.571-5.143 109.143 4.571 2.286 10.857 4 16 4 20.571 0 37.714-15.429 58.286-15.429 19.429 0 47.429 13.714 47.429 36.571 0 54.857-114.857 44.571-114.857 92.571 0 8.571 3.429 16.571 6.857 24.571 27.429 60 79.429 117.714 141.143 143.429 14.857 6.286 29.714 9.714 45.714 13.143 10.286 2.286 16 9.714 16 20 0 38.857-98.857 54.857-125.143 58.857-11.429 17.714-2.857 59.429-33.143 59.429-23.429 0-46.857-7.429-72-7.429-12 0-24 0.571-35.429 2.857-68 11.429-90.857 84.571-202.286 84.571-107.429 0-133.143-73.143-199.429-84.571-12-2.286-24-2.857-36-2.857-25.714 0-50.286 8.571-70.857 8.571-32 0-22.286-42.286-34.286-60.571-26.286-4-125.143-20-125.143-58.857 0-10.286 5.714-17.714 16-20 16-3.429 30.857-6.857 45.714-13.143 61.143-25.143 114.286-83.429 141.143-143.429 3.429-8 6.857-16 6.857-24.571 0-48-115.429-38.857-115.429-92 0-22.286 26.286-36.571 46.286-36.571 17.714 0 35.429 14.857 57.714 14.857 6.286 0 12.571-1.143 18.286-4-2.286-36-5.143-72-5.143-108.571 0-30.857 2.286-74.857 15.429-102.857 50.286-108.571 135.429-148 249.143-149.143z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "snapchat-ghost"
+ ],
+ "defaultCode": 62124,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "snapchat-ghost",
+ "id": 626,
+ "order": 1482,
+ "prevSize": 28,
+ "code": 62124
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 626
+ },
+ {
+ "icon": {
+ "paths": [
+ "M731.429 656c0-8-4.571-13.714-12.571-15.429-52-10.857-91.429-47.429-113.143-95.429-2.286-4.571-4-9.143-4-14.286 0-25.714 70.857-20.571 70.857-57.143 0-15.429-18.857-25.143-32.571-25.143-12.571 0-22.857 9.143-36 9.143-2.286 0-4.571-0.571-6.857-1.143 1.714-21.714 2.857-44 2.857-65.714 0-19.429-1.143-46.857-9.714-65.143-27.429-59.429-80-94.286-145.714-94.286-71.429 0-125.714 26.857-157.143 94.286-8.571 18.286-10.286 45.714-10.286 65.714 0 21.714 1.714 43.429 3.429 65.143-2.857 0.571-5.714 1.143-8.571 1.143-12.571 0-23.429-9.143-35.429-9.143-14.286 0-31.429 9.714-31.429 25.714 0 35.429 70.857 30.857 70.857 56.571 0 5.143-1.714 9.714-4 14.286-22.286 48-60.571 84-113.143 95.429-8 1.714-12.571 7.429-12.571 15.429 0 26.857 60.571 36.571 78.857 39.429 5.143 13.714 2.857 37.714 22.857 37.714 14.857 0 29.143-5.714 44-5.714 60.571 0 76.571 54.286 146.286 54.286 72.571 0 86.286-54.286 147.429-54.286 14.857 0 29.714 5.143 44.571 5.143 19.429 0 17.714-24 22.286-37.143 18.286-2.857 78.857-12.571 78.857-39.429zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "snapchat-square"
+ ],
+ "defaultCode": 62125,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "snapchat-square",
+ "id": 627,
+ "order": 1483,
+ "prevSize": 28,
+ "code": 62125
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 627
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1316.571 0c-166.286 110.286-184 190.286-198.286 214.857-13.714 25.143-24 124-48 172-24 48.571-111.429 86.857-136 102.857-24 16-58.286 78.286-86.286 132-126.286-5.143-251.429 25.714-360 90.286 0 0-52.571 30.286-173.143 102.286 60.571-20 89.143-34.286 89.143-34.286 150.857-57.714 190.857-85.143 312.571-105.143 93.714-15.429 214.857-2.857 265.714 4 2.286 0 4 1.143 5.714 1.714 8 4.571 10.857 14.286 6.286 22.286l-110.857 197.143c-5.143 9.714-16 14.857-26.857 12.571-27.429-5.143-90.286-13.714-202.286-13.714-162.286 0-294.286 49.714-453.714 52-134.286 1.714-186.857-53.143-200-70.857 0-0.571-0.571-1.143-0.571-1.714 0-2.286 1.143-3.429 3.429-3.429 0 0 78.857 0 212-31.429 151.429-288.571 286.286-389.714 433.143-389.714 0 0 147.429 0 186.286 127.429 46.857-81.714 58.286-101.143 58.286-101.143 10.857-19.429 72-158.857 177.714-290.857v0c106.286-132 186.286-164.571 245.714-189.143z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pied-piper"
+ ],
+ "defaultCode": 62126,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "pied-piper",
+ "id": 628,
+ "order": 1484,
+ "prevSize": 28,
+ "code": 62126
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 628
+ },
+ {
+ "icon": {
+ "paths": [
+ "M755.429 512c0 14.857-0.571 29.143-2.857 43.429l-134.857-8 128 44.571c-7.429 29.143-18.857 56-33.143 80.571l-122.286-58.857 101.143 90.286c-17.143 23.429-37.714 44-61.143 61.714l-89.714-101.714 58.857 122.857c-24.571 14.857-51.429 25.714-80 33.714l-45.143-130.286 8 137.143c-14.286 2.286-28.571 3.429-43.429 3.429-14.286 0-29.143-1.143-43.429-3.429l8-136-44.571 129.143c-28.571-7.429-55.429-18.857-80-33.714l58.857-122.857-89.714 101.714c-23.429-17.143-44-38.286-61.714-61.714l101.714-90.286-122.286 59.429c-14.286-25.143-25.714-52-33.143-80.571l128-45.143-135.429 8c-1.714-14.286-2.857-28.571-2.857-43.429s1.143-29.714 2.857-44l136 8-128.571-45.143c7.429-28.571 18.857-55.429 33.143-80l122.286 59.429-101.143-90.857c17.714-23.429 38.286-44 61.143-61.714l90.286 101.714-58.857-122.857c24.571-14.286 51.429-25.714 80-33.143l44 128-7.429-134.857c13.714-2.286 28.571-3.429 42.857-3.429 14.857 0 29.143 1.143 43.429 3.429l-8 135.429 44.571-128.571c28.571 7.429 55.429 18.857 80 33.714l-58.857 122.286 90.286-101.714c22.857 17.714 43.429 38.286 61.143 61.714l-101.143 90.857 121.714-59.429c14.857 24.571 25.714 52 33.143 80.571l-128 44.571 135.429-8c2.286 14.286 2.857 29.143 2.857 44zM772.571 512c0-185.714-149.714-336-333.714-336-184.571 0-333.714 150.286-333.714 336 0 185.143 149.143 335.429 333.714 335.429 184 0 333.714-150.286 333.714-335.429zM814.286 293.143v437.714l-375.429 218.857-375.429-218.857v-437.714l375.429-218.857zM438.857 982.286l404.571-235.429v-470.286l-404.571-234.857-404.571 234.857v470.286zM877.714 256v512l-438.857 256-438.857-256v-512l438.857-256z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "first-order"
+ ],
+ "defaultCode": 62128,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "first-order",
+ "id": 629,
+ "order": 1485,
+ "prevSize": 28,
+ "code": 62128
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 629
+ },
+ {
+ "icon": {
+ "paths": [
+ "M193.714 124.571h394.857l-14.857 41.143h-380c-84 0-152.571 69.143-152.571 153.143v440.571c0 72 51.429 135.429 122.286 150.286 18.286 4 37.143 2.857 56 2.857v41.143h-25.714c-106.857 0-193.714-87.429-193.714-194.286v-440.571c0-106.857 86.857-194.286 193.714-194.286zM680 0h141.143l-275.429 739.429c-51.429 137.143-113.714 280-282.857 284.571v-111.429c63.429-10.286 104-45.143 125.714-104 7.429-19.429 11.429-39.429 11.429-60s-4-41.143-11.429-60.571l-162.857-418.857h130.286l106.857 334.286zM950.857 318.857v634.857h-454.286c9.143-13.714 18.857-26.857 25.714-41.714h387.429v-593.143c0-65.143-41.143-123.429-102.286-145.143l14.286-38.286c77.714 26.286 129.143 101.714 129.143 183.429z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "yoast"
+ ],
+ "defaultCode": 62129,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "yoast",
+ "id": 630,
+ "order": 1486,
+ "prevSize": 28,
+ "code": 62129
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 630
+ },
+ {
+ "icon": {
+ "paths": [
+ "M486.857 176.571c0 20.571-13.143 43.429-35.429 43.429-22.857 0-35.429-22.857-35.429-43.429 0-20 12.571-43.429 35.429-43.429 22.286 0 35.429 23.429 35.429 43.429zM393.143 962.857v-65.143c0-22.286-17.714-41.714-40.571-41.714s-40 19.429-40 41.714v65.143c0 22.286 17.143 42.286 40 42.286s40.571-19.429 40.571-42.286zM491.429 962.857v-65.143c0-22.286-17.143-41.714-40-41.714s-40.571 19.429-40.571 41.714v65.143c0 22.286 17.714 42.286 40.571 42.286s40-20 40-42.286zM590.857 962.857v-65.143c0-22.286-17.714-41.714-40.571-41.714s-40.571 19.429-40.571 41.714v65.143c0 22.286 17.714 42.286 40.571 42.286s40.571-19.429 40.571-42.286zM690.286 962.857v-65.143c0-22.286-17.714-41.714-40.571-41.714s-40.571 19.429-40.571 41.714v65.143c0 22.286 17.714 42.286 40.571 42.286s40.571-20 40.571-42.286zM843.429 572c-61.714 118.286-180.571 205.143-317.143 205.143-193.143 0-321.143-169.143-321.143-353.143 0-33.714 4-66.857 12-99.429-40 67.429-59.429 145.143-59.429 222.857 0 120.571 49.714 243.429 142.857 321.714 10.286-19.429 29.714-32.571 52-32.571 20 0 38.857 11.429 49.143 28.571 10.857-17.143 29.143-28.571 49.714-28.571 20 0 38.857 11.429 49.143 28.571 10.857-17.143 29.714-28.571 49.714-28.571s38.857 11.429 49.714 28.571c10.286-17.143 29.143-28.571 49.143-28.571 21.714 0 41.714 13.143 51.429 32 86.857-72.571 137.143-184 142.857-296.571zM757.714 555.429c0-28.571-12.571-42.857-41.143-42.857-9.143 0-18.286 1.714-26.857 3.429-28.571 5.714-56.571 10.857-85.143 10.857-90.286 0-129.143-52.571-129.143-138.857 0-39.429 7.429-78.286 17.143-116.571-30.286 46.286-47.429 101.714-47.429 157.143 0 108 68.571 212 185.143 212 42.857 0 85.143-15.429 120-40 4-14.857 7.429-29.714 7.429-45.143zM505.143 178.857c0-36-25.143-73.714-64.571-73.714s-64.571 37.714-64.571 73.714c0 36.571 25.143 74.286 64.571 74.286s64.571-37.714 64.571-74.286zM864.571 372.571c0-107.429-69.143-211.429-185.143-211.429-60.571 0-117.143 30.286-157.714 73.714-14.286 47.429-27.429 102.857-27.429 153.143 0 76 30.286 120 110.286 120 27.429 0 54.286-5.143 81.143-10.857 10.286-1.714 20-3.429 30.286-3.429 39.429 0 59.429 22.857 59.429 61.714 0 8.571-0.571 17.714-2.286 26.286 57.714-52 91.429-131.429 91.429-209.143zM1024 496.571c0 72-22.857 204.571-72.571 259.429-45.714 49.714-174.857 122.286-241.714 141.143l-2.286 0.571v65.143c0 32.571-25.143 61.143-58.286 61.143-20 0-38.857-11.429-49.143-28.571-10.857 17.143-29.714 28.571-49.714 28.571s-38.857-11.429-49.714-28.571c-10.286 17.143-29.143 28.571-49.143 28.571-20.571 0-38.857-11.429-49.714-28.571-10.286 17.143-29.143 28.571-49.143 28.571-37.714 0-58.857-31.429-58.857-65.714-32.571 24.571-71.429 38.857-113.143 38.857-44 0-86.857-16.571-120.571-45.714 20.571-0.571 41.143-4.571 60.571-11.429-41.714-11.429-78.857-37.714-104-72.571 13.143 2.857 26.857 4 40.571 4 33.143 0 65.714-9.143 93.714-26.286-44-44-113.143-117.714-137.143-174.857-11.429-26.857-13.714-62.857-13.714-91.429 0-99.429 40.571-320 172.571-320 21.143 0 37.714 9.714 46.286 29.714 7.429-10.857 15.429-21.143 24-30.857 4-5.143 11.429-10.857 14.286-16.571 16-25.143 23.429-42.286 43.429-68 64.571-82.286 163.429-138.857 269.714-138.857 12 0 24 0.571 35.429 2.286 21.714-23.429 52-36.571 83.429-36.571 29.143 0 59.429 12 80 32.571 1.714 1.714 2.857 4.571 2.857 6.857 0 7.429-20.571 26.857-25.714 32.571 8.571 2.857 31.429 13.714 31.429 24 0 5.714-5.714 10.286-9.143 14.286 62.857 55.429 98.857 134.286 112.571 216 8.571-10.286 20.571-17.143 34.286-17.143 21.143 0 41.714 14.286 57.143 28 41.714 37.143 51.429 106.286 51.429 159.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "themeisle"
+ ],
+ "defaultCode": 62130,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "themeisle",
+ "id": 631,
+ "order": 1487,
+ "prevSize": 28,
+ "code": 62130
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 631
+ },
+ {
+ "icon": {
+ "paths": [
+ "M524 517.143c0-12.571-1.143-24.571-3.429-36.571h-206.857v75.429h124c-9.143 60.571-66.286 94.286-124 94.286-76 0-136.571-62.857-136.571-138.286s60.571-138.286 136.571-138.286c32 0 64 10.857 87.429 33.714l59.429-57.714c-40.571-37.714-91.429-57.143-146.857-57.143-121.714 0-219.429 98.286-219.429 219.429s97.714 219.429 219.429 219.429c126.286 0 210.286-89.143 210.286-214.286zM721.143 543.429h62.286v-62.857h-62.286v-62.857h-62.857v62.857h-62.857v62.857h62.857v62.857h62.857v-62.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "google-plus-circle",
+ "google-plus-official"
+ ],
+ "defaultCode": 62131,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "google-plus-circle, google-plus-official",
+ "id": 632,
+ "order": 1488,
+ "prevSize": 28,
+ "code": 62131
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 632
+ },
+ {
+ "icon": {
+ "paths": [
+ "M877.714 292.571v479.429c0 17.714-11.429 30.857-28 35.429-61.143 18.286-129.714 29.714-193.143 29.714-85.714 0-158.286-33.714-253.143-33.714-70.286 0-142.857 11.429-211.429 27.429v193.143h-91.429v-781.714c-48-18.857-79.429-65.714-79.429-117.143 0-69.143 56-125.143 125.143-125.143s125.143 56 125.143 125.143c0 51.429-31.429 98.286-79.429 117.143v38.857c64-14.857 130.286-25.143 196-25.143 37.714 0 75.429 2.857 113.143 8.571 49.143 7.429 98.857 24.571 149.143 24.571 31.429 0 63.429-4 94.286-10.286 23.429-4.571 77.143-22.857 96.571-22.857 20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 898.8525714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fa",
+ "font-awesome"
+ ],
+ "defaultCode": 62132,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "fa, font-awesome",
+ "id": 633,
+ "order": 1489,
+ "prevSize": 28,
+ "code": 62132
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 633
+ },
+ {
+ "icon": {
+ "paths": [
+ "M109.714 658.286c48 0 48-73.143 0-73.143s-48 73.143 0 73.143zM951.429 625.143c-45.143-58.857-89.143-118.857-140.571-172.571l-71.429 80c-62.857 71.429-175.429 69.714-236.571-3.429-43.429-52.571-43.429-128 1.143-180l101.143-117.714c-35.429-18.286-78.286-12-116.571-12-33.714 0-66.286 13.714-90.286 37.714l-90.286 90.286h-88.571v310.857c25.143 0 48-3.429 68 16l169.714 166.857c34.857 33.714 80 63.429 129.714 63.429 25.714 0 53.143-8.571 71.429-26.857 42.857 14.857 92.571-9.143 105.714-53.143 27.429 2.286 52.571-6.286 72.571-25.143 13.143-12 30.286-36 28.571-54.857 5.143 5.143 17.714 5.714 24.571 5.714 68 0 103.429-71.429 61.714-125.143zM1042.286 658.286h54.857v-292.571h-53.143l-89.714-102.857c-24-27.429-60-43.429-96.571-43.429h-95.429c-32 0-62.857 14.286-83.429 38.286l-119.429 138.857c-21.143 25.143-21.143 60.571-0.571 85.714 32.571 38.857 92.571 39.429 126.286 1.714l110.286-124.571c26.286-29.143 74.286-1.714 62.286 35.429 21.714 25.143 45.143 49.714 66.286 74.857 28.571 35.429 56 72.571 84 108.571 17.714 22.857 30.857 50.286 34.286 80zM1206.857 658.286c48 0 48-73.143 0-73.143s-48 73.143 0 73.143zM1316.571 329.143v365.714c0 20-16.571 36.571-36.571 36.571h-248c-20.571 49.714-65.714 82.857-118.286 90.286-24.571 36-62.286 63.429-104.571 72.571-31.429 40-82.286 64-133.143 60.571-94.286 53.143-200.571 6.857-270.857-62.286l-164-161.143h-204.571c-20 0-36.571-16.571-36.571-36.571v-384c0-20 16.571-36.571 36.571-36.571h240.571c66.286-66.286 112-128 211.429-128h66.857c37.143 0 73.143 11.429 103.429 32 30.286-20.571 66.286-32 103.429-32h95.429c108.571 0 153.714 70.857 219.429 146.286h202.857c20 0 36.571 16.571 36.571 36.571z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "handshake-o"
+ ],
+ "defaultCode": 62133,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "handshake-o",
+ "id": 634,
+ "order": 1490,
+ "prevSize": 28,
+ "code": 62133
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 634
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 373.714v558.857c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-558.857c0-5.143 2.286-10.286 6.286-13.714 60-52.571 60.571-58.857 358.857-276.571 36-26.286 99.429-83.429 146.857-83.429s111.429 57.714 146.857 83.429c298.286 217.714 298.857 224 358.857 276.571 4 3.429 6.286 8.571 6.286 13.714zM701.714 708c89.143-64.571 151.429-109.714 197.143-144 8-5.714 9.714-17.143 3.429-25.143l-21.714-29.714c-6.286-8-17.714-9.714-25.714-3.429-45.143 33.143-106.857 78.857-196 142.857-35.429 25.714-99.429 82.857-146.857 82.857s-111.429-57.143-146.857-82.857c-89.143-64.571-150.857-109.714-196-142.857-8-6.286-19.429-4.571-25.714 3.429l-21.714 29.714c-6.286 8-4.571 19.429 3.429 25.143 45.714 34.286 108 79.429 197.143 144 44.571 32 114.857 96.571 189.714 96.571 75.429 0 147.429-65.714 189.714-96.571z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "envelope-open"
+ ],
+ "defaultCode": 62134,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "envelope-open",
+ "id": 635,
+ "order": 1491,
+ "prevSize": 28,
+ "code": 62134
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 635
+ },
+ {
+ "icon": {
+ "paths": [
+ "M842.286 521.714l22.286 29.143c6.286 8 4.571 18.857-2.857 25.143-57.143 44.571-188.571 145.714-194.286 150.286-40.571 33.143-95.429 78.857-154.857 78.286h-1.143c-59.429 0-114.286-45.143-154.857-78.286-6.286-5.143-133.143-102.857-189.143-146.286-8-6.286-9.714-17.143-3.429-25.143l21.143-29.714c6.286-8.571 18.286-10.286 26.286-3.429 38.857 30.286 93.714 72.571 174.857 134.857 28.571 21.714 85.143 74.857 125.143 74.857h1.143c40 0 96.571-53.143 125.143-74.857 84-64.571 140-107.429 178.857-138.286 8-6.286 19.429-4.571 25.714 3.429zM950.857 932.571v-530.286c-57.143-53.143-48.571-48.571-313.143-253.143-28.571-22.286-85.143-76-125.143-76h-1.143c-40 0-96.571 53.714-125.143 76-264.571 204.571-256 200-313.143 253.143v530.286c0 9.714 8.571 18.286 18.286 18.286h841.143c9.714 0 18.286-8.571 18.286-18.286zM1024 402.286v530.286c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-530.286c0-20.571 8.571-40 23.429-53.714 117.143-108.571 252-202.857 333.143-269.714 40-33.143 95.429-78.857 154.857-78.857h1.143c59.429 0 114.857 45.714 154.857 78.857 75.429 62.286 218.857 163.429 333.143 269.714 14.857 13.714 23.429 33.143 23.429 53.714z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "envelope-open-o"
+ ],
+ "defaultCode": 62135,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "envelope-open-o",
+ "id": 636,
+ "order": 1492,
+ "prevSize": 28,
+ "code": 62135
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 636
+ },
+ {
+ "icon": {
+ "paths": [
+ "M188.571 877.143l115.429 122.286-19.429-134.857-123.429-121.714zM317.714 1006.286l156.571-124.571-6.286-140-171.429 122.857zM140 641.714l129.714 121.714-27.429-186.857-140-116.571zM282.857 769.714l181.143-122.286-8-185.143-201.143 114.286zM481.714 776l54.286 45.714-1.143-136.571-58.857-45.143c0 4.571 2.286 12.571-2.286 16l-44.571 29.714 48.571 40c5.714 4.571 4 43.429 4 50.286zM78.857 346.286l146.286 114.286-38.857-265.714-159.429-98.857zM670.286 725.143l8.571-133.714-131.429 93.714 1.143 137.143zM238.286 465.143l213.143-110.857-10.857-252-241.714 93.143zM725.714 673.714l11.429-133.143-129.143-81.143-1.143 60 82.286 54.286c1.714 1.143 2.857 3.429 2.286 5.143l-4 68zM834.857 594.286l17.143-126.857-102.286 73.143-11.429 130.286zM727.429 689.714l-40.571-28-4.571 66.857c0 1.714-0.571 3.429-2.286 4.571l-133.714 106.857c-2.286 1.714-5.714 1.714-8 0l-56-47.429 4 92c0 1.714-0.571 3.429-2.286 4.571l-167.429 133.714c-1.143 0.571-2.286 1.143-3.429 1.143-1.714-0.571-3.429-0.571-4.571-1.714l-130.286-138.286c-2.857-2.857-30.857-144-33.714-158.286-0.571-2.286 1.143-5.143 2.857-6.286l34.857-21.143c-6.857-6.286-53.143-46.857-54.286-52.571l-41.143-200.571c-0.571-2.286 0.571-5.143 3.429-6.857l53.714-25.714c-9.143-6.857-75.429-54.857-77.143-61.714l-54.857-266.286c-0.571-3.429 1.143-6.286 4-7.429l247.429-77.143c1.143 0 2.857 0 4.571 0.571l181.143 87.429c1.714 1.143 3.429 3.429 3.429 5.143l11.429 264.571c0 2.286-1.143 4.571-3.429 5.714l-67.429 34.857 72 48.571c1.714 0.571 2.857 2.857 2.857 4.571l2.857 70.286 69.143-42.286c1.714-1.143 4.571-1.143 6.286 0l48 32 1.714-62.857c0-1.714 1.143-4 2.857-5.143l117.714-72c2.286-1.143 4.571-1.143 6.286 0l140 77.143c1.143 1.143 2.286 2.286 2.857 4 1.143 4-17.714 132.571-19.429 145.714 0 1.714-1.143 3.429-2.286 4l-109.143 87.429c-2.286 1.714-5.143 1.714-7.429 0z"
+ ],
+ "width": 878.2994285714285,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "linode"
+ ],
+ "defaultCode": 62136,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "linode",
+ "id": 637,
+ "order": 1493,
+ "prevSize": 28,
+ "code": 62136
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 637
+ },
+ {
+ "icon": {
+ "paths": [
+ "M686.286 707.429c0-101.143-24.571-213.714-126.286-213.714-31.429 18.286-74.286 49.714-121.143 49.714s-89.714-31.429-121.143-49.714c-101.714 0-126.286 112.571-126.286 213.714 0 56.571 37.143 97.143 82.857 97.143h329.143c45.714 0 82.857-40.571 82.857-97.143zM587.429 368c0-82.286-66.857-148.571-148.571-148.571s-148.571 66.286-148.571 148.571c0 81.714 66.857 148 148.571 148s148.571-66.286 148.571-148zM950.857 676.571v109.714c0 10.286-8 18.286-18.286 18.286h-54.857v128c0 50.286-41.143 91.429-91.429 91.429h-694.857c-50.286 0-91.429-41.143-91.429-91.429v-841.143c0-50.286 41.143-91.429 91.429-91.429h694.857c50.286 0 91.429 41.143 91.429 91.429v128h54.857c10.286 0 18.286 8 18.286 18.286v109.714c0 10.286-8 18.286-18.286 18.286h-54.857v73.143h54.857c10.286 0 18.286 8 18.286 18.286v109.714c0 10.286-8 18.286-18.286 18.286h-54.857v73.143h54.857c10.286 0 18.286 8 18.286 18.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "address-book"
+ ],
+ "defaultCode": 62137,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "address-book",
+ "id": 638,
+ "order": 1494,
+ "prevSize": 28,
+ "code": 62137
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 638
+ },
+ {
+ "icon": {
+ "paths": [
+ "M587.429 368c0 81.714-66.857 148-148.571 148s-148.571-66.286-148.571-148c0-82.286 66.857-148.571 148.571-148.571s148.571 66.286 148.571 148.571zM560 493.714c109.143 0 126.286 129.714 126.286 213.714 0 48-30.286 97.143-82.857 97.143h-329.143c-52.571 0-82.857-49.143-82.857-97.143 0-80.571 17.143-213.714 123.429-213.714h2.857c37.714 22.286 76 49.714 121.143 49.714s83.429-27.429 121.143-49.714zM950.857 347.429c0 9.714-8.571 18.286-18.286 18.286h-54.857v73.143h54.857c9.714 0 18.286 8.571 18.286 18.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-54.857v73.143h54.857c9.714 0 18.286 8.571 18.286 18.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-54.857v128c0 50.286-41.143 91.429-91.429 91.429h-694.857c-50.286 0-91.429-41.143-91.429-91.429v-841.143c0-50.286 41.143-91.429 91.429-91.429h694.857c50.286 0 91.429 41.143 91.429 91.429v128h54.857c9.714 0 18.286 8.5711 18.286 18.286v109.714zM804.571 932.571v-841.143c0-9.714-8.571-18.286-18.286-18.286h-694.857c-9.714 0-18.286 8.571-18.286 18.286v841.143c0 9.714 8.571 18.286 18.286 18.286h694.857c9.714 0 18.286-8.571 18.286-18.286z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "address-book-o"
+ ],
+ "defaultCode": 62138,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "address-book-o",
+ "id": 639,
+ "order": 1495,
+ "prevSize": 28,
+ "code": 62138
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 639
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 646.286c0-88.571-21.714-186.857-112-186.857-28 16-65.714 43.429-107.429 43.429s-79.429-27.429-107.429-43.429c-90.286 0-112 98.286-112 186.857 0 49.714 32.571 85.143 73.143 85.143h292.571c40.571 0 73.143-35.429 73.143-85.143zM495.429 349.143c0-71.429-58.286-129.714-129.714-129.714s-129.714 58.286-129.714 129.714c0 72 58.286 129.714 129.714 129.714s129.714-57.714 129.714-129.714zM1024 640v-36.571c0-10.286-8-18.286-18.286-18.286h-329.143c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h329.143c10.286 0 18.286-8 18.286-18.286zM1024 491.429v-32c0-11.429-9.143-20.571-20.571-20.571h-324.571c-11.429 0-20.571 9.143-20.571 20.571v32c0 11.429 9.143 20.571 20.571 20.571h324.571c11.429 0 20.571-9.143 20.571-20.571zM1024 347.429v-36.571c0-10.286-8-18.286-18.286-18.286h-329.143c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h329.143c10.286 0 18.286-8 18.286-18.286zM1170.286 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-201.143v-54.857c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v54.857h-438.857v-54.857c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v54.857h-201.143c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h987.429c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "address-card",
+ "vcard"
+ ],
+ "defaultCode": 62139,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "address-card, vcard",
+ "id": 640,
+ "order": 1496,
+ "prevSize": 28,
+ "code": 62139
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 640
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 646.286c0 49.714-32.571 85.143-73.143 85.143h-292.571c-40.571 0-73.143-35.429-73.143-85.143 0-88.571 21.714-186.857 112-186.857 28 16 65.714 43.429 107.429 43.429s79.429-27.429 107.429-43.429c90.286 0 112 98.286 112 186.857zM495.429 349.143c0 72-58.286 129.714-129.714 129.714s-129.714-57.714-129.714-129.714c0-71.429 58.286-129.714 129.714-129.714s129.714 58.286 129.714 129.714zM1024 603.429v36.571c0 10.286-8 18.286-18.286 18.286h-329.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h329.143c10.286 0 18.286 8 18.286 18.286zM1024 459.429v32c0 11.429-9.143 20.571-20.571 20.571h-324.571c-11.429 0-20.571-9.143-20.571-20.571v-32c0-11.429 9.143-20.571 20.571-20.571h324.571c11.429 0 20.571 9.143 20.571 20.571zM1024 310.857v36.571c0 10.286-8 18.286-18.286 18.286h-329.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h329.143c10.286 0 18.286 8 18.286 18.286zM1097.143 859.429v-694.857c0-9.714-8.571-18.286-18.286-18.286h-987.429c-9.714 0-18.286 8.571-18.286 18.286v694.857c0 9.714 8.571 18.286 18.286 18.286h201.143v-54.857c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v54.857h438.857v-54.857c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v54.857h201.143c9.714 0 18.286-8.571 18.286-18.286zM1170.286 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-987.429c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h987.429c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "address-card-o",
+ "vcard-o"
+ ],
+ "defaultCode": 62140,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "address-card-o, vcard-o",
+ "id": 641,
+ "order": 1497,
+ "prevSize": 28,
+ "code": 62140
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 641
+ },
+ {
+ "icon": {
+ "paths": [
+ "M870.286 765.143c-14.857-106.857-58.286-201.714-155.429-214.857-50.286 54.857-122.857 89.714-202.857 89.714s-152.571-34.857-202.857-89.714c-97.143 13.143-140.571 108-155.429 214.857 79.429 112 210.286 185.714 358.286 185.714s278.857-73.714 358.286-185.714zM731.429 365.714c0-121.143-98.286-219.429-219.429-219.429s-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429zM1024 512c0 281.714-228.571 512-512 512-282.857 0-512-229.714-512-512 0-282.857 229.143-512 512-512s512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-circle"
+ ],
+ "defaultCode": 62141,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "user-circle",
+ "id": 642,
+ "order": 1498,
+ "prevSize": 28,
+ "code": 62141
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 642
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 0c282.857 0 512 229.143 512 512 0 281.143-228 512-512 512-283.429 0-512-230.286-512-512 0-282.857 229.143-512 512-512zM865.714 772c53.143-73.143 85.143-162.857 85.143-260 0-241.714-197.143-438.857-438.857-438.857s-438.857 197.143-438.857 438.857c0 97.143 32 186.857 85.143 260 20.571-102.286 70.286-186.857 174.857-186.857 46.286 45.143 109.143 73.143 178.857 73.143s132.571-28 178.857-73.143c104.571 0 154.286 84.571 174.857 186.857zM731.429 402.286c0-121.143-98.286-219.429-219.429-219.429s-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-circle-o"
+ ],
+ "defaultCode": 62142,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "user-circle-o",
+ "id": 643,
+ "order": 1499,
+ "prevSize": 28,
+ "code": 62142
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 643
+ },
+ {
+ "icon": {
+ "paths": [
+ "M686.286 448c80.571 23.429 191.429 102.857 191.429 362.857 0 117.714-87.429 213.143-194.857 213.143h-488c-107.429 0-194.857-95.429-194.857-213.143 0-260 110.857-339.429 191.429-362.857-28.571-45.143-45.143-98.286-45.143-155.429 0-161.143 131.429-292.571 292.571-292.571s292.571 131.429 292.571 292.571c0 57.143-16.571 110.286-45.143 155.429zM438.857 73.143c-121.143 0-219.429 98.286-219.429 219.429s98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429-98.286-219.429-219.429-219.429zM682.857 950.857c66.857 0 121.714-62.286 121.714-140 0-180-60.571-292.571-173.714-298.286-51.429 45.143-118.286 72.571-192 72.571s-140.571-27.429-192-72.571c-113.143 5.714-173.714 118.286-173.714 298.286 0 77.714 54.857 140 121.714 140h488z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "user-o"
+ ],
+ "defaultCode": 62144,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "user-o",
+ "id": 644,
+ "order": 1500,
+ "prevSize": 28,
+ "code": 62144
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 644
+ },
+ {
+ "icon": {
+ "paths": [
+ "M585.143 718.857c0 49.143-32.571 85.714-73.143 85.714h-292.571c-40.571 0-73.143-36.571-73.143-85.714 0-89.143 22.286-188 112-188 28 26.286 65.714 42.857 107.429 42.857s79.429-16.571 107.429-42.857c89.714 0 112 98.857 112 188zM497.143 422.286c0 72-58.857 129.714-131.429 129.714s-131.429-57.714-131.429-129.714c0-71.429 58.857-129.714 131.429-129.714s131.429 58.286 131.429 129.714zM658.286 932.571v-786.286h-585.143v786.286c0 9.714 8.571 18.286 18.286 18.286h548.571c9.714 0 18.286-8.571 18.286-18.286zM731.429 91.429v841.143c0 50.286-41.143 91.429-91.429 91.429h-548.571c-50.286 0-91.429-41.143-91.429-91.429v-841.143c0-50.286 41.143-91.429 91.429-91.429h201.143v54.857c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286v-54.857h201.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 731.4285714285713,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "id-badge"
+ ],
+ "defaultCode": 62145,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "id-badge",
+ "id": 645,
+ "order": 1501,
+ "prevSize": 28,
+ "code": 62145
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 645
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 692.571c0-75.429-18.286-162.286-93.714-162.286-22.857 22.857-54.286 36.571-89.143 36.571s-66.286-13.714-89.143-36.571c-75.429 0-93.714 86.857-93.714 162.286 0 41.714 27.429 75.429 61.143 75.429h243.429c33.714 0 61.143-33.714 61.143-75.429zM438.857 438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714 49.143 109.714 109.714 109.714 109.714-49.143 109.714-109.714zM1024 713.143v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM804.571 566.857v-36.571c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM1024 566.857v-36.571c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286zM1024 420.571v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM73.143 219.429h1024v-54.857c0-10.286-8-18.286-18.286-18.286h-987.429c-10.286 0-18.286 8-18.286 18.286v54.857zM1170.286 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-987.429c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h987.429c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drivers-license",
+ "id-card"
+ ],
+ "defaultCode": 62146,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "drivers-license, id-card",
+ "id": 646,
+ "order": 1502,
+ "prevSize": 28,
+ "code": 62146
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 646
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 692.571c0 41.714-27.429 75.429-61.143 75.429h-243.429c-33.714 0-61.143-33.714-61.143-75.429 0-75.429 18.286-162.286 93.714-162.286 22.857 22.857 54.286 36.571 89.143 36.571s66.286-13.714 89.143-36.571c75.429 0 93.714 86.857 93.714 162.286zM438.857 438.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1024 676.571v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286c10.286 0 18.286 8 18.286 18.286zM804.571 530.286v36.571c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h182.857c10.286 0 18.286 8 18.286 18.286zM1024 530.286v36.571c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 384v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286c10.286 0 18.286 8 18.286 18.286zM1097.143 859.429v-640h-1024v640c0 9.714 8.571 18.286 18.286 18.286h987.429c9.714 0 18.286-8.571 18.286-18.286zM1170.286 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-987.429c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h987.429c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drivers-license-o",
+ "id-card-o"
+ ],
+ "defaultCode": 62147,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "drivers-license-o, id-card-o",
+ "id": 647,
+ "order": 1503,
+ "prevSize": 28,
+ "code": 62147
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 647
+ },
+ {
+ "icon": {
+ "paths": [
+ "M717.143 449.714c0-238.286-74.286-360.571-248.571-360.571-171.429 0-245.714 122.286-245.714 360.571 0 237.143 74.286 358.286 245.714 358.286 27.429 0 52-2.857 74.857-9.714v0c-35.429-69.714-77.143-140-158.286-140-15.429 0-30.857 2.286-45.143 9.143l-28-55.429c33.714-29.143 88-52 157.714-52 109.143 0 164.571 52.571 209.143 119.429 25.714-57.143 38.286-134.286 38.286-229.714zM940 810.857h66.857c4 41.143-16.571 213.143-203.429 213.143-113.143 0-172.571-65.714-217.714-142.286v0c-37.143 10.286-77.143 15.429-117.143 15.429-228.571 0-452-182.286-452-447.429 0-267.429 224-449.714 452-449.714 232.571 0 453.714 181.143 453.714 449.714 0 149.714-69.714 271.429-170.857 349.714 32.571 49.143 66.286 81.714 113.143 81.714 51.429 0 72-39.429 75.429-70.286z"
+ ],
+ "width": 1027.4377142857143,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "quora"
+ ],
+ "defaultCode": 62148,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "quora",
+ "id": 648,
+ "order": 1504,
+ "prevSize": 28,
+ "code": 62148
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 648
+ },
+ {
+ "icon": {
+ "paths": [
+ "M258.857 935.429c0 16-14.286 30.857-30.286 30.857-2.286 0-5.143-1.143-7.429-1.714v0c-32-7.429-73.143-55.429-92.571-80-89.143-112.571-128.571-244-128.571-386.286 0-132.571 40-246.286 121.714-350.857 18.857-24.571 74.857-89.143 108-89.143 14.286 0 29.143 11.429 29.143 26.286 0 17.143-25.143 40.571-36 51.429-31.429 32.571-60.571 65.714-84 105.143-48.571 81.143-68 162.286-68 256.571 0 101.143 18.857 192.571 70.286 280.571 21.714 37.143 47.429 68 77.714 98.857 12 13.143 40 38.857 40 58.286zM1026.286 858.857c0 21.143-14.286 38.857-36.571 38.857h-617.714c-20 0-36.571-16.571-36.571-36.571 0-21.143 14.286-38.857 36.571-38.857h617.714c20 0 36.571 16.571 36.571 36.571zM903.429 509.714c0 48-10.857 92.571-38.286 133.143-18.857 28-57.143 64-87.429 79.429-4.571 2.857-10.286 5.714-15.429 5.714-4.571 0-13.143-5.143-13.143-10.286 0-16.571 69.714-56 69.714-132.571 0-25.143-6.286-53.143-20-74.286-4-5.714-18.286-24-26.286-24-1.714 0-1.714 1.143-1.714 2.857 0 13.714 8.571 26.857 8.571 41.143 0 18.286-22.286 27.429-37.714 27.429-26.857 0-37.714-18.857-37.714-43.429 0-16.571 1.714-33.714 1.714-50.286 0-12-0.571-15.429-5.714-26.286-8-15.429-34.286-46.857-53.143-46.857-5.143 0-6.857 0-6.857 5.143 0 8 18.286 16.571 18.286 45.714 0 76-104.571 89.714-104.571 165.714 0 34.286 4.571 62.857 24 91.429 12 17.714 25.143 28 45.143 36 5.143 1.714 10.286 2.286 10.286 8.571s-5.143 9.143-10.286 9.143c-2.857 0-16-5.143-18.857-6.286v0c-88-32-154.857-108.571-154.857-204.571 0-113.714 136.571-213.143 136.571-322.286 0-21.143-3.429-36-14.286-53.714-6.286-10.286-21.714-30.286-32-36.571-4.571-2.286-10.857-6.286-10.857-12 0-9.714 16.571-11.429 23.429-11.429 20.571 0 44 7.429 62.857 16.571 79.429 37.714 96 95.429 109.714 175.429 3.429 18.857 10.286 78.857 37.714 78.857 17.714 0 29.143-12 29.143-29.143 0-25.714-22.857-53.714-22.857-68 0-4 2.286-5.714 5.714-5.714 14.286 0 44 30.286 53.143 40 55.429 58.857 76 116 76 195.429zM1316.571 526.286c0 100.571-26.857 201.143-78.857 287.429-24 40-102.857 152-154.857 152-12 0-26.286-14.857-26.286-26.857 0-19.429 66.857-81.714 83.429-102.857 70.857-89.143 104.571-189.714 104.571-303.429 0-93.714-11.429-169.714-53.143-254.857-25.714-52.571-52.571-88-93.143-130.286-13.143-13.714-41.714-39.429-41.714-60 0-14.286 14.857-29.714 29.143-29.714 37.714 0 92 69.714 112 96.571 76.571 102.857 109.143 208.571 117.714 335.429 0.571 12 1.143 24.571 1.143 36.571z"
+ ],
+ "width": 1316.5714285714284,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "free-code-camp"
+ ],
+ "defaultCode": 62149,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "free-code-camp",
+ "id": 649,
+ "order": 1505,
+ "prevSize": 28,
+ "code": 62149
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 649
+ },
+ {
+ "icon": {
+ "paths": [
+ "M679.429 746.857l84-396c7.429-34.857-12.571-48.571-35.429-40l-493.714 190.286c-33.714 13.143-33.143 32-5.714 40.571l126.286 39.429 293.143-184.571c13.714-9.143 26.286-4 16 5.143l-237.143 214.286-9.143 130.286c13.143 0 18.857-5.714 25.714-12.571l61.714-59.429 128 94.286c23.429 13.143 40 6.286 46.286-21.714zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "telegram"
+ ],
+ "defaultCode": 62150,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "telegram",
+ "id": 650,
+ "order": 1506,
+ "prevSize": 28,
+ "code": 62150
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 650
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-45.714 28.571-87.429 73.143-103.429v-518.286h73.143v518.286c44.571 16 73.143 57.714 73.143 103.429zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thermometer",
+ "thermometer-4",
+ "thermometer-full"
+ ],
+ "defaultCode": 62151,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "thermometer, thermometer-4, thermometer-full",
+ "id": 651,
+ "order": 1507,
+ "prevSize": 28,
+ "code": 62151
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 651
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-45.714 28.571-87.429 73.143-103.429v-372h73.143v372c44.571 16 73.143 57.714 73.143 103.429zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thermometer-3",
+ "thermometer-three-quarters"
+ ],
+ "defaultCode": 62152,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "thermometer-3, thermometer-three-quarters",
+ "id": 652,
+ "order": 1508,
+ "prevSize": 28,
+ "code": 62152
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 652
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-45.714 28.571-87.429 73.143-103.429v-225.714h73.143v225.714c44.571 16 73.143 57.714 73.143 103.429zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thermometer-2",
+ "thermometer-half"
+ ],
+ "defaultCode": 62153,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "thermometer-2, thermometer-half",
+ "id": 653,
+ "order": 1509,
+ "prevSize": 28,
+ "code": 62153
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 653
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-45.714 28.571-87.429 73.143-103.429v-79.429h73.143v79.429c44.571 16 73.143 57.714 73.143 103.429zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thermometer-1",
+ "thermometer-quarter"
+ ],
+ "defaultCode": 62154,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "thermometer-1, thermometer-quarter",
+ "id": 654,
+ "order": 1510,
+ "prevSize": 28,
+ "code": 62154
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 654
+ },
+ {
+ "icon": {
+ "paths": [
+ "M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-60 48.571-109.714 109.714-109.714s109.714 50.286 109.714 109.714zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z"
+ ],
+ "width": 585.1428571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thermometer-0",
+ "thermometer-empty"
+ ],
+ "defaultCode": 62155,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "thermometer-0, thermometer-empty",
+ "id": 655,
+ "order": 1511,
+ "prevSize": 28,
+ "code": 62155
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 655
+ },
+ {
+ "icon": {
+ "paths": [
+ "M818.857 142.286c7.429 7.429 7.429 18.857 0 26.286l-357.714 357.714c-7.429 7.429-18.857 7.429-26.286 0l-46.857-46.857c-7.429-7.429-7.429-18.857 0-26.286l25.143-25.143c-55.429-69.714-62.286-165.143-20-241.143-26.286-25.143-61.714-40.571-100.571-40.571-80.571 0-146.286 65.714-146.286 146.286v731.429h-146.286v-731.429c0-161.143 131.429-292.571 292.571-292.571 82.286 0 156.571 34.286 209.714 89.143 72-29.143 155.429-18.286 218.286 31.429l25.143-25.143c7.429-7.429 18.857-7.429 26.286 0zM768 292.571c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM914.286 365.714c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571-16.571 36.571-36.571 36.571zM1060.571 292.571c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM694.857 365.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM804.571 402.286c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571zM987.429 365.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM621.714 438.857c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM768 512c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571-16.571 36.571-36.571 36.571zM914.286 438.857c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM694.857 585.143c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571-16.571 36.571-36.571 36.571zM841.143 512c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM621.714 585.143c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM768 585.143c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM694.857 658.286c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM621.714 731.429c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571z"
+ ],
+ "width": 1097.142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shower"
+ ],
+ "defaultCode": 62156,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "shower",
+ "id": 656,
+ "order": 1512,
+ "prevSize": 28,
+ "code": 62156
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 656
+ },
+ {
+ "icon": {
+ "paths": [
+ "M950.857 621.714v109.714c0 65.143-28.571 122.857-73.143 163.429v110.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-67.429c-22.857 8-47.429 12.571-73.143 12.571h-438.857c-25.714 0-50.286-4.571-73.143-12.571v62.857c0 12.571-8 22.857-18.286 22.857h-36.571c-10.286 0-18.286-10.286-18.286-22.857v-106.286c-44.571-40.571-73.143-98.286-73.143-163.429v-109.714h877.714zM402.286 384c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM438.857 347.429c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM402.286 310.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM475.429 310.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM438.857 274.286c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM402.286 237.714c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM1024 530.286v36.571c0 10.286-8 18.286-18.286 18.286h-987.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-365.714c0-80.571 65.714-146.286 146.286-146.286 41.143 0 78.286 17.143 105.143 44.571 35.429-14.286 77.714-9.143 109.143 15.429l12.571-12.571c3.429-3.429 9.143-3.429 12.571 0l24 24c3.429 3.429 3.429 9.143 0 12.571l-179.429 179.429c-3.429 3.429-9.143 3.429-12.571 0l-24-24c-3.429-3.429-3.429-9.143 0-12.571l12.571-12.571c-27.429-34.857-30.857-82.857-9.714-121.143-13.143-12.571-30.857-20-50.286-20-40.571 0-73.143 32.571-73.143 73.143v365.714h859.429c10.286 0 18.286 8 18.286 18.286zM512 274.286c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM475.429 237.714c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM438.857 201.143c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM548.571 237.714c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM512 201.143c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM475.429 164.571c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM585.143 201.143c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM548.571 164.571c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM621.714 164.571c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bath",
+ "bathtub",
+ "s15"
+ ],
+ "defaultCode": 62157,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bath, bathtub, s15",
+ "id": 657,
+ "order": 1513,
+ "prevSize": 28,
+ "code": 62157
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 657
+ },
+ {
+ "icon": {
+ "paths": [
+ "M568 681.143c0 37.714-4 75.429-9.714 112.571-8.571 59.429-17.143 120.571-31.429 178.857-10.286 41.714-49.143 51.429-86.857 51.429s-76.571-9.714-86.857-51.429c-14.286-58.286-22.857-119.429-31.429-178.857-5.714-37.143-9.714-74.857-9.714-112.571 0-77.143 62.286-96 128-96s128 18.857 128 96zM877.714 438.857c0 185.143-114.286 343.429-276.571 408-6.286 2.286-13.143-3.429-12-10.286 1.714-12 3.429-24.571 5.714-37.714 1.143-9.143 2.286-18.286 3.429-26.857 0.571-3.429 2.286-5.714 5.143-6.857 118.857-60.571 201.143-184 201.143-326.286 0-208.571-174.857-376.571-385.714-365.143-193.143 10.286-346.857 174.857-345.714 368 1.143 142.286 84 265.143 203.429 324.571 2.857 1.143 4.571 4 5.143 6.857 1.143 8 2.286 16.571 3.429 25.714 2.286 13.714 4 26.286 6.286 38.857 1.143 6.857-6.286 12.571-12.571 9.714-169.714-66.286-288-235.429-278.286-430.286 10.857-221.143 189.143-402.286 410.286-416 254.857-16 466.857 186.286 466.857 437.714zM568 420.571c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128zM732.571 438.857c0 94.286-45.143 178.857-114.286 232-5.714 4.571-13.714 0.571-14.857-6.857-1.714-16-6.286-34.857-16.571-52.571-2.286-3.429-1.714-8 1.714-11.429 43.429-40 70.857-97.143 70.857-161.143 0-129.143-112.571-232.571-244.571-218.286-101.143 11.429-183.429 94.857-193.143 196.571-7.429 72 21.143 138.286 69.714 182.857 3.429 3.429 4 8 1.714 11.429-10.286 17.714-14.857 36.571-16.571 53.143-1.143 6.857-9.143 10.857-14.857 6.286-70.857-54.857-116-141.143-114.286-238.286 3.429-152 126.857-278.857 278.286-285.714 168-8 306.857 125.714 306.857 292z"
+ ],
+ "width": 868.5714285714286,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "podcast"
+ ],
+ "defaultCode": 62158,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "podcast",
+ "id": 658,
+ "order": 1514,
+ "prevSize": 28,
+ "code": 62158
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 658
+ },
+ {
+ "icon": {
+ "paths": [
+ "M146.286 804.571h731.429v-438.857h-731.429v438.857zM1024 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "window-maximize"
+ ],
+ "defaultCode": 62160,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "window-maximize",
+ "id": 659,
+ "order": 1515,
+ "prevSize": 28,
+ "code": 62160
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 659
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 749.714v109.714c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-109.714c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "window-minimize"
+ ],
+ "defaultCode": 62161,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "window-minimize",
+ "id": 660,
+ "order": 1516,
+ "prevSize": 28,
+ "code": 62161
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 660
+ },
+ {
+ "icon": {
+ "paths": [
+ "M146.286 877.714h438.857v-292.571h-438.857v292.571zM731.429 585.143h292.571v-438.857h-438.857v146.286h54.857c50.286 0 91.429 41.143 91.429 91.429v201.143zM1170.286 91.429v548.571c0 50.286-41.143 91.429-91.429 91.429h-347.429v201.143c0 50.286-41.143 91.429-91.429 91.429h-548.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h347.429v-201.143c0-50.286 41.143-91.429 91.429-91.429h548.571c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1170.2857142857142,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "window-restore"
+ ],
+ "defaultCode": 62162,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "window-restore",
+ "id": 661,
+ "order": 1517,
+ "prevSize": 28,
+ "code": 62162
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 661
+ },
+ {
+ "icon": {
+ "paths": [
+ "M671.429 754.857l83.429-83.429c7.429-7.429 7.429-18.857 0-26.286l-133.143-133.143 133.143-133.143c7.429-7.429 7.429-18.857 0-26.286l-83.429-83.429c-7.429-7.429-18.857-7.429-26.286 0l-133.143 133.143-133.143-133.143c-7.429-7.429-18.857-7.429-26.286 0l-83.429 83.429c-7.429 7.429-7.429 18.857 0 26.286l133.143 133.143-133.143 133.143c-7.429 7.429-7.429 18.857 0 26.286l83.429 83.429c7.429 7.429 18.857 7.429 26.286 0l133.143-133.143 133.143 133.143c7.429 7.429 18.857 7.429 26.286 0zM1024 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "times-rectangle",
+ "window-close"
+ ],
+ "defaultCode": 62163,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "times-rectangle, window-close",
+ "id": 662,
+ "order": 1518,
+ "prevSize": 28,
+ "code": 62163
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 662
+ },
+ {
+ "icon": {
+ "paths": [
+ "M718.286 634.857l-83.429 83.429c-7.429 7.429-18.857 7.429-26.286 0l-96.571-96.571-96.571 96.571c-7.429 7.429-18.857 7.429-26.286 0l-83.429-83.429c-7.429-7.429-7.429-18.857 0-26.286l96.571-96.571-96.571-96.571c-7.429-7.429-7.429-18.857 0-26.286l83.429-83.429c7.429-7.429 18.857-7.429 26.286 0l96.571 96.571 96.571-96.571c7.429-7.429 18.857-7.429 26.286 0l83.429 83.429c7.429 7.429 7.429 18.857 0 26.286l-96.571 96.571 96.571 96.571c7.429 7.429 7.429 18.857 0 26.286zM146.286 804.571h731.429v-585.143h-731.429v585.143zM1024 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "times-rectangle-o",
+ "window-close-o"
+ ],
+ "defaultCode": 62164,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "times-rectangle-o, window-close-o",
+ "id": 663,
+ "order": 1519,
+ "prevSize": 28,
+ "code": 62164
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 663
+ },
+ {
+ "icon": {
+ "paths": [
+ "M611.429 673.143l174.857-322.286h-373.714l-174.857 322.286h373.714zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bandcamp"
+ ],
+ "defaultCode": 62165,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "bandcamp",
+ "id": 664,
+ "order": 1520,
+ "prevSize": 28,
+ "code": 62165
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 664
+ },
+ {
+ "icon": {
+ "paths": [
+ "M737.714 272c-18.286-20.571-48 14.286-32 33.143 15.429 18.857 66.286 5.143 32-33.143zM511.429 412.571c-6.286 6.286-16 6.286-21.714 0-6.286-5.714-6.286-15.429 0-21.143 5.714-6.286 15.429-6.286 21.714 0 5.714 5.714 5.714 15.429 0 21.143zM605.714 454.857l-20 20c-9.143 9.714-24.571 9.714-34.286 0l-21.714-21.714c-9.143-9.714-9.143-24.571 0-34.286l20-20c9.143-9.143 24.571-9.143 34.286 0l21.714 22.286c9.143 9.143 9.143 24.571 0 33.714zM543.429 380.571c-5.714 5.714-15.429 5.714-21.714 0-5.714-6.286-5.714-16 0-21.714 6.286-6.286 16-6.286 21.714 0 6.286 5.714 6.286 15.429 0 21.714zM773.714 324.571c-25.714 48.571-93.143 68.571-134.286 39.429-41.143-29.714-69.714-89.143-24.571-140.571 44.571-51.429 84-35.429 123.429 1.714 24.571 23.429 60.571 51.429 35.429 99.429zM888.571 600c5.143-33.143-42.286-34.286-52.571-53.143-28-49.714-57.143-76-112.571-62.857 24-16.571 48.571-12.571 48.571-12.571 0.571-13.143 0-26.857-19.429-51.429 8-25.714 0.571-46.286 0.571-46.286 32-17.714 55.429-50.286 60-89.143 7.429-64-38.857-122.286-102.857-129.714-45.714-5.143-90.286 16-112 53.143-48 82.857 2.857 146.286 46.286 168-29.714-2.857-70.857-24.571-82.857-70.857-13.714-53.143 5.714-102.857 18.286-126.857 0 0-9.143-12-16.571-18.286 0 0-28.571 0-50.857 10.857 24.571-31.429 52-29.714 52-29.714 0-13.143-1.143-30.857-7.429-44.571-11.429-23.429-51.429-26.857-66.857 8.571 0.571-1.714 1.143-2.857 2.286-4-10.286 24.571-2.286 115.429 34.857 180-5.143 2.857-18.857 12.571-26.857 20.571-44.571 20-116 124.571-116 124.571-58.286 22.286-160 105.143-146.286 164.571v0c0.571 6.286 2.857 11.429 6.286 15.429-5.714 4.571-11.429 10.286-17.143 17.143-24.571 28.571-10.857 72.571 36.571 50.286 32.571-14.857 61.714-41.714 75.429-62.857 0 0-12-10.286-34.286-9.143 57.143-13.714 71.429-19.429 96-18.857 16.571 8 16.571-70.857 16.571-70.857 0-30.286-4.571-64-22.857-85.714 25.714 25.143 60 67.429 57.714 125.143-1.714 37.714-31.429 47.429-31.429 47.429-18.857 34.286-89.143 136-62.857 218.857 0 0-20-30.857-21.143-45.714-36 40-96.571 108-51.429 133.143 54.857 30.286 225.143-182.857 261.143-293.714 71.429-42.857 114.286-97.714 132-134.286 45.714 90.857 197.714 196 209.714 122.857zM1025.143 512c0 282.857-229.714 512-512.571 512s-512.571-229.143-512.571-512 229.714-512 512.571-512 512.571 229.143 512.571 512z"
+ ],
+ "width": 1025.1702857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "grav"
+ ],
+ "defaultCode": 62166,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "grav",
+ "id": 665,
+ "order": 1521,
+ "prevSize": 28,
+ "code": 62166
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 665
+ },
+ {
+ "icon": {
+ "paths": [
+ "M296 104.571v374.286c132.571 1.143 202.286-5.714 202.286-5.714 53.714-1.714 61.714-15.429 74.286-68l18.857-81.143h58.857l-8 184 4 182.286h-58.857l-16.571-72.571c-12-54.286-35.429-67.429-73.714-68 0 0-49.143-4.571-201.143-4.571v317.714c0 59.429 32.571 87.429 101.143 87.429h204c68.571 0 130.286-6.857 172.571-104.571l53.143-123.429h50.857c-4 24.571-31.429 251.429-35.429 301.714-188-6.857-268.571-6.857-268.571-6.857h-358.857l-214.857 6.857v-58.286l72.571-14.286c50.857-9.714 66.286-24.571 66.857-66.286 3.429-138.286 4.571-367.429 4.571-367.429s1.714-229.714-4.571-368.571c-1.714-47.429-16-58.857-66.857-68.571l-72.571-13.714v-58.286l214.857 6.857h401.143s79.429 0 213.714-15.429c-8 87.429-17.714 289.143-17.714 289.143h-53.143l-18.286-70.857c-22.286-88.571-52-136-106.857-136h-313.143c-23.429 0-24.571 8-24.571 22.286z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "etsy"
+ ],
+ "defaultCode": 62167,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "etsy",
+ "id": 666,
+ "order": 1522,
+ "prevSize": 28,
+ "code": 62167
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 666
+ },
+ {
+ "icon": {
+ "paths": [
+ "M526.857 455.429v104c0 20.571 4 39.429-21.714 38.857v-176.571c25.143 0 21.714 13.143 21.714 33.714zM707.429 510.286v69.143c0 11.429 3.429 30.286-13.143 30.286-3.429 0-6.286-1.714-8-5.143-4.571-10.857-2.286-93.143-2.286-94.286 0-8-2.286-26.857 10.286-26.857 15.429 0 13.143 15.429 13.143 26.857zM102.857 645.143h69.714v-269.714h-69.714v269.714zM350.857 645.143h60.571v-269.714h-90.857l-16 126.286c-5.714-42.286-11.429-84.571-18.286-126.286h-90.286v269.714h61.143v-178.286l25.714 178.286h43.429l24.571-182.286v182.286zM593.714 470.857c0-17.143 0.571-35.429-2.857-51.429-9.143-47.429-66.286-44-103.429-44h-52v269.714c181.714 0 158.286 12.571 158.286-174.286zM774.857 583.429v-76c0-36.571-1.714-63.429-46.857-63.429-18.857 0-31.429 5.714-44 19.429v-88h-66.857v269.714h62.857l4-17.143c12 14.286 25.143 20.571 44 20.571 41.714 0 46.857-32 46.857-65.143zM877.714 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-694.857c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h694.857c50.286 0 91.429 41.143 91.429 91.429z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "imdb"
+ ],
+ "defaultCode": 62168,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "imdb",
+ "id": 667,
+ "order": 1523,
+ "prevSize": 28,
+ "code": 62168
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 667
+ },
+ {
+ "icon": {
+ "paths": [
+ "M653.143 990.286c-2.286-0.571-4-1.143-6.286-2.286 0 0-188-110.286-251.429-288.571-21.143-3.429-65.714-13.714-100-21.143v0c49.714 161.714 188 285.143 357.714 312zM286.857 644l96 16c-32.571-97.714-36.571-209.143-36.571-209.143-38.286 37.143-58.857 88-69.143 128v0c1.714 22.286 4.571 44 9.714 65.143zM349.714 296v0c-17.714 26.286-32 54.857-44 84.571 18.857-20 34.286-33.143 42.286-38.857-1.143-17.143 1.714-45.714 1.714-45.714zM1170.857 544c0-249.143-201.143-451.429-448-451.429-114.286 0-218.286 43.429-297.714 114.857-12 23.429-20 53.143-25.714 91.429 121.714-103.429 338.857-77.714 338.857-77.714 54.286 2.286 48 50.286 47.429 65.143-197.714-16.571-294.857 40-390.857 121.714 0 0 18.857 182.857 62.286 257.143 250.286 11.429 440.571-124.571 440.571-124.571 24-17.143 45.143-18.857 49.714 10.857 3.429 24 5.143 56.571-22.286 69.143-83.429 38.857-175.429 63.429-266.857 76.571-59.429 8.571-92.571 10.857-181.143 9.143 84.571 196.571 296 250.286 296 250.286 66.286 10.857 116.571 2.286 150.286-8.571v0c146.286-74.286 247.429-227.429 247.429-404zM1213.143 522.857c-4 38.857-10.286 84-22.857 121.143-51.429 152.571-122.857 252-285.714 342.857-14.857 10.286-30.857 20-46.857 25.143-29.143 10.286-60.571 12.571-93.143 9.143-13.714 1.143-27.429 1.714-41.714 1.714-217.714 0-401.714-148.571-457.143-351.429-1.714 0-3.429-0.571-5.143-0.571-13.143 102.857 62.857 241.714 62.857 241.714s4.571 6.857 30.857 46.857c-145.714-77.143-149.714-304.571-149.714-304.571-34.857-13.143-156-54.286-177.143-88 0 0 94.857 52 176.571 62.286-0.571-0.571 1.143-18.286 1.143-18.286 5.143-69.714 29.143-124 53.714-165.714 16-78.286 51.429-149.143 100.571-208.571 8.571-35.429 22.286-77.714 46.286-122.286 10.286-19.429 20-32 46.286-44 173.714-81.143 345.143-101.714 521.143-10.286v0c168.571 88 260 272 240 462.857z"
+ ],
+ "width": 1260.544,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ravelry"
+ ],
+ "defaultCode": 62169,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "ravelry",
+ "id": 668,
+ "order": 1524,
+ "prevSize": 28,
+ "code": 62169
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 668
+ },
+ {
+ "icon": {
+ "paths": [
+ "M766.286 448c20-30.857-3.429-109.143-73.143-155.429-69.143-46.286-157.714-42.857-178.286-12-20 30.286 22.857 10.857 101.143 40 129.143 48 130.286 158.286 150.286 127.429zM973.714 776c-161.714 397.714-890.286 297.143-874.857-218.857 1.714-65.714 20-109.714 38.857-172.571-120.571 493.714 552 781.143 828 391.429 10.286-14.286 13.143-13.143 8 0zM837.143 519.429c0 161.714-130.286 293.143-290.857 293.143s-290.857-131.429-290.857-293.143 130.286-293.143 290.857-293.143 290.857 131.429 290.857 293.143zM1001.143 354.857c-203.429-461.714-1043.429-291.429-950.286 336.571-193.143-629.143 602.857-917.714 897.143-469.714 24 36.571 51.429 100.571 53.143 133.143zM965.714 550.286c9.714-193.143-124-325.143-304.571-374.857-2.857 0-15.429-5.143 8-7.429 441.143 14.857 457.143 720-23.429 728 156.571-43.429 310.286-152 320-345.714z"
+ ],
+ "width": 983.9908571428571,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eercast"
+ ],
+ "defaultCode": 62170,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "eercast",
+ "id": 669,
+ "order": 1525,
+ "prevSize": 28,
+ "code": 62170
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 669
+ },
+ {
+ "icon": {
+ "paths": [
+ "M109.714 731.429v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM109.714 585.143v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM109.714 438.857v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM109.714 292.571v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM109.714 146.286v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM731.429 54.857v841.143c0 30.286-24.571 54.857-54.857 54.857h-475.429c-30.286 0-54.857-24.571-54.857-54.857v-841.143c0-30.286 24.571-54.857 54.857-54.857h475.429c30.286 0 54.857 24.571 54.857 54.857zM877.714 758.857v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143zM877.714 612.571v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143zM877.714 466.286v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143zM877.714 320v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143zM877.714 173.714v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143z"
+ ],
+ "width": 877.7142857142857,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "microchip"
+ ],
+ "defaultCode": 62171,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "microchip",
+ "id": 670,
+ "order": 1526,
+ "prevSize": 28,
+ "code": 62171
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 670
+ },
+ {
+ "icon": {
+ "paths": [
+ "M894.857 638.286l-95.429 18.857 106.286 61.143c17.143 9.714 23.429 32.571 13.143 49.714s-32.571 23.429-49.714 13.143l-106.286-60.571 31.429 91.429c16 45.714-53.714 69.143-69.143 24l-58.286-171.429-154.857-89.143v178.857l118.857 136c32 36-23.429 84.571-54.857 48l-64-73.143v122.286c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571v-122.286l-64 73.143c-31.429 36.571-86.857-12-54.857-48l118.857-136v-178.857l-154.857 89.143-58.286 171.429c-15.429 45.143-85.143 21.714-69.143-24l31.429-91.429-106.286 60.571c-17.143 10.286-39.429 4-49.714-13.143s-4-40 13.143-49.714l106.286-61.143-95.429-18.857c-47.429-9.714-33.143-81.143 14.286-72l177.143 35.429 154.857-89.714-154.857-89.714-177.143 35.429c-2.286 0.571-5.143 0.571-7.429 0.571-43.429 0-49.714-64-6.857-72.571l95.429-18.857-106.286-61.143c-17.143-9.714-23.429-32.571-13.143-49.714 10.286-17.714 32.571-23.429 49.714-13.143l106.286 60.571-31.429-91.429c-16-45.714 53.714-69.143 69.143-24l58.286 171.429 154.857 89.143v-178.857l-118.857-136c-32-36 23.429-84.571 54.857-48l64 73.143v-122.286c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v122.286l64-73.143c31.429-36.571 86.857 12 54.857 48l-118.857 136v178.857l154.857-89.143 58.286-171.429c15.429-45.143 85.143-21.714 69.143 24l-31.429 91.429 106.286-60.571c17.143-10.286 39.429-4 49.714 13.143s4 40-13.143 49.714l-106.286 61.143 95.429 18.857c42.857 8.571 36.571 72.571-6.857 72.571-2.286 0-5.143 0-7.429-0.571l-177.143-35.429-154.857 89.714 154.857 89.714 177.143-35.429c47.429-9.143 61.714 62.286 14.286 72z"
+ ],
+ "width": 950.8571428571428,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "snowflake-o"
+ ],
+ "defaultCode": 62172,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "snowflake-o",
+ "id": 671,
+ "order": 1527,
+ "prevSize": 28,
+ "code": 62172
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 671
+ },
+ {
+ "icon": {
+ "paths": [
+ "M841.714 530.857c10.286-182.857-129.714-334.286-310.857-345.143-180-10.857-339.429 126.286-349.714 307.429-10.286 182.857 129.714 334.286 311.429 345.143 180 10.857 339.429-125.714 349.143-307.429zM1024 0l-199.429 198.857c90.857 88.571 140 212 132 338.857-12.571 212.571-176 382.286-385.714 410.857l-570.857 75.429 198.286-198.286c-90.857-88.571-139.429-212-132-338.857 13.143-213.143 176-382.857 386.286-411.429 190.286-25.143 381.143-50.286 571.429-75.429z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "superpowers"
+ ],
+ "defaultCode": 62173,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "superpowers",
+ "id": 672,
+ "order": 1528,
+ "prevSize": 28,
+ "code": 62173
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 672
+ },
+ {
+ "icon": {
+ "paths": [
+ "M541.714 587.429l93.143 188h-29.143l-100-200-97.714 200h-28l102.286-213.714-44.571-18.857 12-28 137.143 58.286-12 28.571zM321.714 249.143l173.714 74.286-74.286 173.714-173.714-74.286zM518.286 354.857l137.143 58.857-58.857 136.571-136.571-58.286zM678.857 440.571l109.143 46.286-46.857 108.571-108.571-46.286zM960 512c0-246.857-201.143-448-448-448s-448 201.143-448 448 201.143 448 448 448 448-201.143 448-448zM1024 512c0 282.286-229.714 512-512 512s-512-229.714-512-512 229.714-512 512-512 512 229.714 512 512z"
+ ],
+ "width": 1024,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wpexplorer"
+ ],
+ "defaultCode": 62174,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "wpexplorer",
+ "id": 673,
+ "order": 1529,
+ "prevSize": 28,
+ "code": 62174
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 673
+ },
+ {
+ "icon": {
+ "paths": [
+ "M762.286 705.143c-6.286-41.143-81.714-9.143-86.286-54.286-6.286-64 87.429-202.286 80-256-6.857-48-38.857-58.286-66.857-58.857-26.857-0.571-33.714 4-42.857 9.143-5.714 3.429-13.143 9.714-23.429-0.571-12.571-12-22.286-23.429-38.857-25.714-24.571-4-35.429 4-53.143 19.429-6.857 5.714-24 25.714-40 18.286-6.857-3.429-30.857-15.429-48-22.857-32.571-14.286-80 9.143-97.143 40-25.714 45.714-76 226.286-83.429 250.286-17.143 53.143 21.714 97.143 73.714 94.286 22.286-1.143 36.571-9.143 50.857-34.857 8-14.857 83.429-215.429 89.143-225.143 4-6.857 17.714-16 29.143-10.286 11.429 6.286 13.714 18.857 12 30.286-2.286 19.429-56 141.714-57.714 155.429-6.857 45.714 53.714 53.143 77.143 8 7.429-14.286 91.429-185.143 98.857-196.571 8.571-12.571 14.857-16.571 23.429-16 6.286 0 16.571 1.714 14.286 21.714-2.857 18.857-70.286 144.571-77.714 175.429-9.143 41.143 13.143 82.857 49.714 101.143 22.857 11.429 125.143 31.429 117.143-22.286zM218.857 828.571c2.286 11.429-4.571 22.286-16 24.571-10.857 2.286-21.714-4.571-24-16-2.286-10.857 4.571-22.286 15.429-24.571s22.286 4.571 24.571 16zM544.571 978.857c9.143 13.143 5.714 30.857-6.857 40-13.143 9.143-30.857 5.714-40-7.429-8.571-13.143-5.143-30.857 7.429-40 13.143-9.143 30.857-5.714 39.429 7.429zM101.143 514.857c-13.714 20.571-41.143 25.714-61.143 11.429-20-13.714-25.143-41.714-11.429-61.714 13.714-20.571 41.143-25.714 61.143-12 20 14.286 25.143 41.714 11.429 62.286zM838.286 901.714c14.286 21.143 9.143 50.286-12 65.143-21.143 14.286-49.714 9.143-64-12s-9.143-50.286 11.429-65.143c21.143-14.857 49.714-9.143 64.571 12zM902.286 556.571c52.571 86.286 30.286 200-52.571 258.286-34.857 24.571-74.286 35.429-113.714 34.286-24 94.286-138.857 129.143-210.286 65.143-2.286 1.714-5.143 3.429-7.429 5.714-78.286 54.286-184.571 34.857-238.857-44.571-19.429-28.571-29.143-61.143-30.286-93.714-130.857-21.714-180-188-82.286-279.429-56.571-93.714 1.143-214.857 106.857-229.714 50.286-132.571 215.429-195.429 327.429-108.571 134.857-44.571 272.571 58.857 261.714 202.286 82.286 25.143 105.714 133.714 39.429 190.286zM260 179.429c10.286 15.429 6.857 36.571-8.571 47.429-14.857 10.286-36 6.857-46.286-8.571s-6.857-36.571 8.571-47.429c14.857-10.286 36-6.857 46.286 8.571zM350.857 18.857c2.857 12.571-5.143 25.143-17.714 28s-25.143-5.143-28-18.286c-2.286-12.571 5.714-25.143 18.286-28s25.143 5.143 27.429 18.286zM1028.571 560.571c3.429 15.429-6.286 30.286-21.143 33.143-14.857 3.429-29.714-6.286-32.571-21.143-3.429-15.429 6.286-30.286 21.143-33.714 14.857-2.857 29.714 6.857 32.571 21.714zM649.143 50.286c12 20.571 5.714 48-15.429 60.571-20.571 12.571-47.429 5.714-59.429-14.857-12.571-21.143-5.714-48.571 14.857-61.143s47.429-5.714 60 15.429zM1075.429 425.143c2.857 11.429-4.571 22.286-15.429 25.143-11.429 2.286-22.286-5.143-24.571-16-2.286-11.429 4.571-22.857 16-25.143 10.857-2.286 21.714 4.571 24 16zM966.286 287.429c11.429 17.143 7.429 40.571-9.143 52.571-17.143 11.429-40.571 7.429-52-9.714s-7.429-40.571 9.714-52.571c16.571-12 40-7.429 51.429 9.714z"
+ ],
+ "width": 1093.12,
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "meetup"
+ ],
+ "defaultCode": 62176,
+ "grid": 14
+ },
+ "attrs": [],
+ "properties": {
+ "name": "meetup",
+ "id": 674,
+ "order": 1530,
+ "prevSize": 28,
+ "code": 62176
+ },
+ "setIdx": 1,
+ "setId": 3,
+ "iconIdx": 674
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 0c268 0 488 206 510 468h-64c-14-160-114-294-254-360l-58 56-162-162zM706 504c0-69.871-27.338-114-94-114h-40v246h38c51.287 0 80.544-27.904 92-68 4-14 4-30 4-48v-16zM612 342c76.364 0 121.865 38.664 144 94 8 20 10 44 10 68v16c0 52.811-15.142 91.142-42 118-26.824 26.824-61.104 44-114 44h-98v-340h100zM414 508c30.607 12.243 56 36.493 56 78 0 16-4 28-10 40s-12 24-22 32c-18.756 15.005-47.096 24-80 24-62.192 0-108-31.488-108-94h54c0 30.904 23.204 50 54 50 35.74 0 56-17.079 56-54 0-37.687-24.79-54-62-54h-32v-44h32c34.608 0 58-16.061 58-50 0-33.049-17.68-50-52-50-28.888 0-50 17.163-50 46h-56c0-29.787 15.103-49.103 30-64 19.854-15.883 41.797-26 76-26 51.295 0 80.772 19.544 98 54 6 12 8 24 8 40 0 36.376-24.671 59.335-50 72zM320 916l58-56 162 162-28 2c-268 0-488-208-510-470h64c16 160 114 296 254 362z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "3d_rotation"
+ ],
+ "defaultCode": 59469,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "3d_rotation",
+ "id": 0,
+ "order": 11,
+ "prevSize": 24,
+ "code": 59469,
+ "name": "3d_rotation"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 0
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938 470v84h-178l138 138-60 62-198-200h-86v86l200 198-62 60-138-138v178h-84v-178l-138 138-62-60 200-198v-86h-86l-198 200-60-62 138-138h-178v-84h178l-138-138 60-62 198 200h86v-86l-200-198 62-60 138 138v-178h84v178l138-138 62 60-200 198v86h86l198-200 60 62-138 138h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ac_unit"
+ ],
+ "defaultCode": 60219,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "ac_unit",
+ "id": 1,
+ "order": 12,
+ "prevSize": 24,
+ "code": 60219,
+ "name": "ac_unit"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 1
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM534 342v224l170 100-32 52-202-120v-256h64zM336 144l-196 164-54-64 196-164zM938 244l-54 66-196-166 54-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "alarm"
+ ],
+ "defaultCode": 59477,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "access_alarm, alarm",
+ "id": 2,
+ "order": 13,
+ "prevSize": 24,
+ "code": 59477,
+ "name": "alarm"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 2
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c214 0 384 170 384 384s-170 384-384 384-384-170-384-384 170-384 384-384zM534 342v226l170 102-34 52-200-124v-256h64zM338 146l-198 162-54-64 196-162zM938 244l-54 64-198-168 56-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "access_alarms"
+ ],
+ "defaultCode": 57745,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "access_alarms",
+ "id": 3,
+ "order": 14,
+ "prevSize": 24,
+ "code": 57745,
+ "name": "access_alarms"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 3
+ },
+ {
+ "icon": {
+ "paths": [
+ "M534 298v224l192 114-32 54-224-136v-256h64zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "schedule"
+ ],
+ "defaultCode": 59573,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "access_time, query_builder, schedule",
+ "id": 4,
+ "order": 15,
+ "prevSize": 24,
+ "code": 59573,
+ "name": "schedule"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 4
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 384h-256v554h-86v-256h-84v256h-86v-554h-256v-86h768v86zM512 86c46 0 86 38 86 84s-40 86-86 86-86-40-86-86 40-84 86-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "accessibility"
+ ],
+ "defaultCode": 59470,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "accessibility",
+ "id": 5,
+ "order": 16,
+ "prevSize": 24,
+ "code": 59470,
+ "name": "accessibility"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 5
+ },
+ {
+ "icon": {
+ "paths": [
+ "M548 768h88c-20 98-106 170-210 170-118 0-212-94-212-212 0-104 72-190 170-210v88c-50 18-86 66-86 122 0 70 58 128 128 128 56 0 104-36 122-86zM426 388c0-59.978 66.716-113.020 128-78h2v2c10 4 18 10 26 18l56 62c42 46 106 78 172 78v84c-74 0-156-36-212-82v146h128c46 0 84 40 84 86v234h-84v-212h-214c-46 0-86-40-86-86v-252zM426 170c0-48 38-84 86-84s86 36 86 84-38 86-86 86-86-38-86-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "accessible"
+ ],
+ "defaultCode": 59668,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "accessible",
+ "id": 6,
+ "order": 17,
+ "prevSize": 24,
+ "code": 59668,
+ "name": "accessible"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 6
+ },
+ {
+ "icon": {
+ "paths": [
+ "M490 42l406 214v86h-810v-86zM682 426h128v300h-128v-300zM86 938v-128h810v128h-810zM426 426h128v300h-128v-300zM170 426h128v300h-128v-300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "account_balance"
+ ],
+ "defaultCode": 59471,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "account_balance",
+ "id": 7,
+ "order": 18,
+ "prevSize": 24,
+ "code": 59471,
+ "name": "account_balance"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 7
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 682v-340h426v340h-426zM896 768v42c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596c46 0 86 40 86 86v42h-384c-48 0-86 40-86 86v340c0 46 38 86 86 86h384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "account_balance_wallet"
+ ],
+ "defaultCode": 59472,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "account_balance_wallet",
+ "id": 8,
+ "order": 19,
+ "prevSize": 24,
+ "code": 59472,
+ "name": "account_balance_wallet"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 8
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 726v42h512v-42c0-86-170-132-256-132s-256 46-256 132zM640 384c0-70-58-128-128-128s-128 58-128 128 58 128 128 128 128-58 128-128zM128 214c0-46 38-86 86-86h596c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "account_box"
+ ],
+ "defaultCode": 59473,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "account_box",
+ "id": 9,
+ "order": 20,
+ "prevSize": 24,
+ "code": 59473,
+ "name": "account_box"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 9
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 820c106 0 200-56 256-138-2-84-172-132-256-132-86 0-254 48-256 132 56 82 150 138 256 138zM512 214c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "account_circle"
+ ],
+ "defaultCode": 59475,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "account_circle",
+ "id": 10,
+ "order": 21,
+ "prevSize": 24,
+ "code": 59475,
+ "name": "account_circle"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 10
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 384c24 0 42-18 42-42s-18-44-42-44-42 20-42 44 18 42 42 42zM384 384c24 0 42-18 42-42s-18-44-42-44-42 20-42 44 18 42 42 42zM688 186c74 54 122 142 122 240v44h-596v-44c0-98 48-186 122-240l-90-90 36-34 98 98c40-20 84-32 132-32s92 12 132 32l98-98 36 34zM214 682v-170h596v170c0 166-132 300-298 300s-298-134-298-300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "adb"
+ ],
+ "defaultCode": 58894,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "adb",
+ "id": 11,
+ "order": 22,
+ "prevSize": 24,
+ "code": 58894,
+ "name": "adb"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 11
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 554h-256v256h-84v-256h-256v-84h256v-256h84v256h256v84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add"
+ ],
+ "defaultCode": 57669,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "add",
+ "id": 12,
+ "order": 23,
+ "prevSize": 24,
+ "code": 57669,
+ "name": "add"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 12
+ },
+ {
+ "icon": {
+ "paths": [
+ "M418 598c0-76 60-138 136-138s138 62 138 138-62 136-138 136-136-60-136-136zM554 810c118 0 214-94 214-212s-96-214-214-214-212 96-212 214 94 212 212 212zM256 426v-128h128v-128h298l78 86h136c46 0 86 40 86 86v512c0 46-40 84-86 84h-682c-46 0-86-38-86-84v-428h128zM128 170v-128h86v128h128v86h-128v128h-86v-128h-128v-86h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_a_photo"
+ ],
+ "defaultCode": 58425,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "add_a_photo",
+ "id": 13,
+ "order": 24,
+ "prevSize": 24,
+ "code": 58425,
+ "name": "add_a_photo"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 13
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 384v128h128v86h-128v128h-84v-128h-128v-86h128v-128h84zM512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM938 244l-54 66-196-166 54-64zM336 144l-196 164-54-64 196-164z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "alarm_add"
+ ],
+ "defaultCode": 59478,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "add_alarm, alarm_add",
+ "id": 14,
+ "order": 25,
+ "prevSize": 24,
+ "code": 59478,
+ "name": "alarm_add"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 14
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 556v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM806 718l90 90v46h-768v-46l90-90v-248c0-138 96-256 226-286v-30c0-38 30-68 68-68s68 30 68 68v30c130 30 226 148 226 286v248zM428 896h168c0 46-38 86-84 86s-84-40-84-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_alert"
+ ],
+ "defaultCode": 57347,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "add_alert",
+ "id": 15,
+ "order": 26,
+ "prevSize": 24,
+ "code": 57347,
+ "name": "add_alert"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 15
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 554v-84h-172v-172h-84v172h-172v84h172v172h84v-172h172zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_box"
+ ],
+ "defaultCode": 57670,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "add_box",
+ "id": 16,
+ "order": 27,
+ "prevSize": 24,
+ "code": 57670,
+ "name": "add_box"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 16
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 554v-84h-172v-172h-84v172h-172v84h172v172h84v-172h172zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_circle"
+ ],
+ "defaultCode": 57671,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "add_circle",
+ "id": 17,
+ "order": 28,
+ "prevSize": 24,
+ "code": 57671,
+ "name": "add_circle"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 17
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM554 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "control_point"
+ ],
+ "defaultCode": 58298,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "add_circle_outline, control_point",
+ "id": 18,
+ "order": 29,
+ "prevSize": 24,
+ "code": 58298,
+ "name": "control_point"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 18
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 426v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM512 86c164 0 298 134 298 298 0 224-298 554-298 554s-298-330-298-554c0-164 134-298 298-298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_location"
+ ],
+ "defaultCode": 58727,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "add_location",
+ "id": 19,
+ "order": 30,
+ "prevSize": 24,
+ "code": 58727,
+ "name": "add_location"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 19
+ },
+ {
+ "icon": {
+ "paths": [
+ "M306 630c0 6 4 10 10 10h494v86h-512c-46 0-84-40-84-86 0-14 4-28 10-40l58-106-154-324h-86v-84h140c27.003 56.33 53.665 113.001 80 170 34.063 71.271 67.603 143.063 102 214h300c54.786-99.881 110.533-198.8 164-300l74 42-164 298c-14 26-42 44-74 44h-318l-38 70zM726 768c46 0 84 40 84 86s-38 84-84 84-86-38-86-84 40-86 86-86zM298 768c46 0 86 40 86 86s-40 84-86 84-84-38-84-84 38-86 84-86zM470 384v-128h-128v-86h128v-128h84v128h128v86h-128v128h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_shopping_cart"
+ ],
+ "defaultCode": 59476,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "add_shopping_cart",
+ "id": 20,
+ "order": 31,
+ "prevSize": 24,
+ "code": 59476,
+ "name": "add_shopping_cart"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 20
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 470v-86h-170v-170h-86v170h-170v86h170v170h86v-170h170zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "queue"
+ ],
+ "defaultCode": 57404,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "add_to_photos, library_add, queue",
+ "id": 21,
+ "order": 32,
+ "prevSize": 24,
+ "code": 57404,
+ "name": "queue"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 21
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 426v86h-128v128h-84v-128h-128v-86h128v-128h84v128h128zM896 726v-512h-768v512h768zM896 128c46 0 86 38 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "add_to_queue"
+ ],
+ "defaultCode": 57436,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "add_to_queue",
+ "id": 22,
+ "order": 33,
+ "prevSize": 24,
+ "code": 57436,
+ "name": "add_to_queue"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 22
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 512c0 70-58 128-128 128s-128-58-128-128 58-128 128-128 128 58 128 128zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "adjust"
+ ],
+ "defaultCode": 58270,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "adjust",
+ "id": 23,
+ "order": 34,
+ "prevSize": 24,
+ "code": 58270,
+ "name": "adjust2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 23
+ },
+ {
+ "icon": {
+ "paths": [
+ "M304 516c-50 50-130 52-180 2s-52-130-2-180 130-52 180-2 52 130 2 180zM86 598h852v84h-256v86h-340v-86h-256v-84zM938 470v84h-554v-256h384c94 0 170 78 170 172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_flat"
+ ],
+ "defaultCode": 58928,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "airline_seat_flat",
+ "id": 24,
+ "order": 35,
+ "prevSize": 24,
+ "code": 58928,
+ "name": "airline_seat_flat"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 24
+ },
+ {
+ "icon": {
+ "paths": [
+ "M312 436c-64 30-142 4-172-60s-4-142 60-172 142-4 172 60 4 142-60 172zM64 518l30-80 810 292-28 80-194-68v68h-340v-192zM950 610l-30 80-528-190 90-242 364 132c90 32 136 130 104 220z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_flat_angled"
+ ],
+ "defaultCode": 58929,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "airline_seat_flat_angled",
+ "id": 25,
+ "order": 36,
+ "prevSize": 24,
+ "code": 58929,
+ "name": "airline_seat_flat_angled"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 25
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 298c94 0 172 78 172 172v256h-940v-428h86v300h342v-300h340zM298 554c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_individual_suite"
+ ],
+ "defaultCode": 58930,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "airline_seat_individual_suite",
+ "id": 26,
+ "order": 37,
+ "prevSize": 24,
+ "code": 58930,
+ "name": "airline_seat_individual_suite"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 26
+ },
+ {
+ "icon": {
+ "paths": [
+ "M974 736c18 32 2 72-30 88l-158 72-146-298h-298c-70 0-128-58-128-128v-342h256v256h150c32 0 62 18 76 48l144 298 48-22c32-14 70-2 86 28zM170 512c0 70 58 128 128 128h256v86h-256c-118 0-212-96-212-214v-384h84v384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_legroom_extra"
+ ],
+ "defaultCode": 58931,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "airline_seat_legroom_extra",
+ "id": 27,
+ "order": 38,
+ "prevSize": 24,
+ "code": 58931,
+ "name": "airline_seat_legroom_extra"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 27
+ },
+ {
+ "icon": {
+ "paths": [
+ "M874 768c36 0 64 28 64 64s-28 64-64 64h-192v-298h-298c-70 0-128-58-128-128v-342h256v256h214c46 0 84 40 84 86v298h64zM214 512c0 70 58 128 128 128h256v86h-256c-118 0-214-96-214-214v-384h86v384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_legroom_normal"
+ ],
+ "defaultCode": 58932,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "airline_seat_legroom_normal",
+ "id": 28,
+ "order": 39,
+ "prevSize": 24,
+ "code": 58932,
+ "name": "airline_seat_legroom_normal"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 28
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 512c0 70 58 128 128 128h170v86h-170c-118 0-214-96-214-214v-384h86v384zM852 820c8 40-22 76-62 76h-192v-128l42-170h-256c-70 0-128-58-128-128v-342h256v256h214c46 0 84 40 84 86l-84 298h60c32 0 60 22 66 52z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_legroom_reduced"
+ ],
+ "defaultCode": 58933,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "airline_seat_legroom_reduced",
+ "id": 29,
+ "order": 40,
+ "prevSize": 24,
+ "code": 58933,
+ "name": "airline_seat_legroom_reduced"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 29
+ },
+ {
+ "icon": {
+ "paths": [
+ "M692 640l246 192-64 64-162-128h-292c-62 0-114-44-126-104l-58-252c-8-52 26-102 78-112h2c30.359-4.337 56.628 4.102 74 18l70 54c54 42 130 68 200 54v92c-80 14-152-14-220-52l44 174h208zM682 810v86h-300c-106 0-196-76-212-180l-84-418h84l84 404c10 62 64 108 128 108h300zM228 240c-38-28-46-80-20-118s80-48 118-22c38 28 48 82 22 120-28 38-82 46-120 20z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_recline_extra"
+ ],
+ "defaultCode": 58934,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "airline_seat_recline_extra",
+ "id": 30,
+ "order": 41,
+ "prevSize": 24,
+ "code": 58934,
+ "name": "airline_seat_recline_extra"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 30
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 856l-62 62-150-150h-216c-70 0-128-58-128-128v-246c0-52 44-96 96-96h2c29.673 0 54.798 16.798 70 32l60 66c46 50 130 86 200 86v94c-82 0-176-44-236-94v158h148zM256 682c0 70 58 128 128 128h256v86h-256c-118 0-214-96-214-214v-384h86v384zM324 230c-34-34-34-86 0-120s86-34 120 0 34 86 0 120-86 34-120 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airline_seat_recline_normal"
+ ],
+ "defaultCode": 58935,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "airline_seat_recline_normal",
+ "id": 31,
+ "order": 42,
+ "prevSize": 24,
+ "code": 58935,
+ "name": "airline_seat_recline_normal"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 31
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 682l-342-106v234l86 64v64l-150-42-148 42v-64l84-64v-234l-340 106v-84l340-214v-234c0-36 28-64 64-64s64 28 64 64v234l342 214v84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flight"
+ ],
+ "defaultCode": 58681,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "airplanemode_active, flight",
+ "id": 32,
+ "order": 43,
+ "prevSize": 24,
+ "code": 58681,
+ "name": "flight"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 32
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 224l54-54 672 672-54 54-246-244v158l86 64v64l-150-42-148 42v-64l84-64v-234l-340 106v-84l254-160zM554 384l342 214v84l-136-42-334-334v-156c0-36 28-64 64-64s64 28 64 64v234z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airplanemode_inactive"
+ ],
+ "defaultCode": 57748,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "airplanemode_inactive",
+ "id": 33,
+ "order": 44,
+ "prevSize": 24,
+ "code": 57748,
+ "name": "airplanemode_inactive"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 33
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c46 0 86 40 86 86v512c0 46-40 84-86 84h-170v-84h170v-512h-768v512h170v84h-170c-46 0-86-38-86-84v-512c0-46 40-86 86-86h768zM256 938l256-256 256 256h-512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airplay"
+ ],
+ "defaultCode": 57429,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "airplay",
+ "id": 34,
+ "order": 45,
+ "prevSize": 24,
+ "code": 57429,
+ "name": "airplay"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 34
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 470h214l-172-172h-42v172zM746 746c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM554 470v-172h-170v172h170zM256 746c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM128 470h170v-172h-170v172zM726 214l256 256v212h-108c0 70-58 128-128 128s-128-58-128-128h-234c0 70-58 128-128 128s-128-58-128-128h-86v-384c0-48 40-84 86-84h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "airport_shuttle"
+ ],
+ "defaultCode": 60220,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "airport_shuttle",
+ "id": 35,
+ "order": 46,
+ "prevSize": 24,
+ "code": 60220,
+ "name": "airport_shuttle"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 35
+ },
+ {
+ "icon": {
+ "paths": [
+ "M342 140l-36 30-62-60 38-30zM702 784l-420-420c-42 52-68 118-68 190 0 166 132 300 298 300 72 0 138-28 190-70zM124 98c262.552 262.114 525.354 523.98 788 786l-54 54-94-94c-68 58-156 94-252 94-212 0-384-172-384-384 0-96 36-182 94-250l-34-34-48 40-60-62 48-38-58-58zM938 244l-54 66-196-166 54-64zM512 256c-36 0-70 6-102 18l-66-64c50-24 108-40 168-40 212 0 384 172 384 384 0 60-14 118-38 168l-66-64c12-32 18-68 18-104 0-166-132-298-298-298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "alarm_off"
+ ],
+ "defaultCode": 59479,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "alarm_off",
+ "id": 36,
+ "order": 47,
+ "prevSize": 24,
+ "code": 59479,
+ "name": "alarm_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 36
+ },
+ {
+ "icon": {
+ "paths": [
+ "M450 620l210-212 46 46-256 256-136-136 44-44zM512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM336 144l-196 164-54-64 196-164zM938 244l-54 66-196-166 54-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "alarm_on"
+ ],
+ "defaultCode": 59480,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "alarm_on",
+ "id": 37,
+ "order": 48,
+ "prevSize": 24,
+ "code": 59480,
+ "name": "alarm_on"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 37
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 470c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM512 704c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "album"
+ ],
+ "defaultCode": 57369,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "album",
+ "id": 38,
+ "order": 49,
+ "prevSize": 24,
+ "code": 57369,
+ "name": "album"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 38
+ },
+ {
+ "icon": {
+ "paths": [
+ "M794 282c128 0 230 104 230 230s-102 230-230 230c-62 0-120-24-164-68l-54-48 64-56 50 42c30 30 66 44 104 44 80 0 144-64 144-144s-64-144-144-144c-38 0-74 14-102 42-60.266 53.067-120.945 105.722-180 160l-120 106c-42 42-100 66-162 66-128 0-230-104-230-230s102-230 230-230c62 0 120 24 164 68l54 48-66 56-48-42c-30-30-66-44-104-44-80 0-144 64-144 144s64 144 144 144c38 0 74-14 102-42 60.266-53.067 120.945-105.722 180-160l120-106c42-42 100-66 162-66z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "all_inclusive"
+ ],
+ "defaultCode": 60221,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "all_inclusive",
+ "id": 39,
+ "order": 50,
+ "prevSize": 24,
+ "code": 60221,
+ "name": "all_inclusive"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 39
+ },
+ {
+ "icon": {
+ "paths": [
+ "M686 684c90-90 90-240 0-330s-240-90-330 0-90 240 0 330 240 90 330 0zM732 308c116 116 116 306 0 422s-306 116-422 0-116-306 0-422 306-116 422 0zM180 348v-170h170zM350 860h-170v-170zM862 690v170h-170zM692 178h170v170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "all_out"
+ ],
+ "defaultCode": 59659,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "all_out",
+ "id": 40,
+ "order": 51,
+ "prevSize": 24,
+ "code": 59659,
+ "name": "all_out"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 40
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 214v-44h-42v44h42zM426 214v-44h-42v44h42zM662 92c64 46 106 122 106 206h-512c0-84 40-160 104-206l-56-56c-8-8-8-22 0-30s22-8 30 0l64 64c34-18 74-28 114-28s78 10 112 28l64-64c8-8 22-8 30 0s8 22 0 30zM874 342c36 0 64 28 64 64v298c0 36-28 64-64 64s-64-28-64-64v-298c0-36 28-64 64-64zM150 342c36 0 64 28 64 64v298c0 36-28 64-64 64s-64-28-64-64v-298c0-36 28-64 64-64zM256 768v-426h512v426c0 24-18 42-42 42h-44v150c0 36-28 64-64 64s-64-28-64-64v-150h-84v150c0 36-28 64-64 64s-64-28-64-64v-150h-44c-24 0-42-18-42-42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "android"
+ ],
+ "defaultCode": 59481,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "android",
+ "id": 41,
+ "order": 52,
+ "prevSize": 24,
+ "code": 59481,
+ "name": "android2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 41
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 640v-86h-84v86h84zM554 470v-256h-84v256h84zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "announcement"
+ ],
+ "defaultCode": 59482,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "announcement",
+ "id": 42,
+ "order": 53,
+ "prevSize": 24,
+ "code": 59482,
+ "name": "announcement"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 42
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 854v-172h172v172h-172zM682 598v-172h172v172h-172zM426 342v-172h172v172h-172zM682 170h172v172h-172v-172zM426 598v-172h172v172h-172zM170 598v-172h172v172h-172zM170 854v-172h172v172h-172zM426 854v-172h172v172h-172zM170 342v-172h172v172h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "apps"
+ ],
+ "defaultCode": 58819,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "apps",
+ "id": 43,
+ "order": 54,
+ "prevSize": 24,
+ "code": 58819,
+ "name": "apps"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 43
+ },
+ {
+ "icon": {
+ "paths": [
+ "M218 214h588l-40-44h-512zM512 746l234-234h-148v-86h-172v86h-148zM876 224c12 14 20 34 20 54v532c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-532c0-20 8-40 20-54l58-72c12-14 30-24 50-24h512c20 0 38 10 50 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "archive"
+ ],
+ "defaultCode": 57673,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "archive",
+ "id": 44,
+ "order": 55,
+ "prevSize": 24,
+ "code": 57673,
+ "name": "archive2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 44
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 470v84h-520l238 240-60 60-342-342 342-342 60 60-238 240h520z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_back"
+ ],
+ "defaultCode": 58820,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "arrow_back",
+ "id": 45,
+ "order": 56,
+ "prevSize": 24,
+ "code": 58820,
+ "name": "arrow_back"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 45
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 512l-342 342-342-342 62-60 238 238v-520h84v520l240-238z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_downward"
+ ],
+ "defaultCode": 58843,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "arrow_downward",
+ "id": 46,
+ "order": 57,
+ "prevSize": 24,
+ "code": 58843,
+ "name": "arrow_downward"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 46
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 426h428l-214 214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_drop_down"
+ ],
+ "defaultCode": 58821,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "arrow_drop_down",
+ "id": 47,
+ "order": 58,
+ "prevSize": 24,
+ "code": 58821,
+ "name": "arrow_drop_down"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 47
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 598l170-172h-340zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_drop_down_circle"
+ ],
+ "defaultCode": 58822,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "arrow_drop_down_circle",
+ "id": 48,
+ "order": 59,
+ "prevSize": 24,
+ "code": 58822,
+ "name": "arrow_drop_down_circle"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 48
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 598l214-214 214 214h-428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_drop_up"
+ ],
+ "defaultCode": 58823,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "arrow_drop_up",
+ "id": 49,
+ "order": 60,
+ "prevSize": 24,
+ "code": 58823,
+ "name": "arrow_drop_up"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 49
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 170l342 342-342 342-60-60 238-240h-520v-84h520l-238-240z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_forward"
+ ],
+ "defaultCode": 58824,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "arrow_forward",
+ "id": 50,
+ "order": 61,
+ "prevSize": 24,
+ "code": 58824,
+ "name": "arrow_forward"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 50
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 512l342-342 342 342-62 60-238-238v520h-84v-520l-240 238z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "arrow_upward"
+ ],
+ "defaultCode": 58840,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "arrow_upward",
+ "id": 51,
+ "order": 62,
+ "prevSize": 24,
+ "code": 58840,
+ "name": "arrow_upward"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 51
+ },
+ {
+ "icon": {
+ "paths": [
+ "M448 640l-96-128-74 96-54-64-74 96h298zM512 384v256c0 46-40 86-86 86h-256c-46 0-84-40-84-86v-256c0-46 38-86 84-86h256c46 0 86 40 86 86zM598 726v-86h340v86h-340zM938 298v86h-340v-86h340zM938 554h-340v-84h340v84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "art_track"
+ ],
+ "defaultCode": 57440,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "art_track",
+ "id": 52,
+ "order": 63,
+ "prevSize": 24,
+ "code": 57440,
+ "name": "art_track"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 52
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768zM298 384v128h-84v-214h212v86h-128zM810 512v214h-212v-86h128v-128h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "aspect_ratio"
+ ],
+ "defaultCode": 59483,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "aspect_ratio",
+ "id": 53,
+ "order": 64,
+ "prevSize": 24,
+ "code": 59483,
+ "name": "aspect_ratio"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 53
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 726v-172h-86v172h86zM554 726v-428h-84v428h84zM384 726v-300h-86v300h86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "poll"
+ ],
+ "defaultCode": 59393,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "assessment, insert_chart, poll",
+ "id": 54,
+ "order": 65,
+ "prevSize": 24,
+ "code": 59393,
+ "name": "poll"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 54
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 384v-86h-428v86h428zM726 554v-84h-428v84h428zM598 726v-86h-300v86h300zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assignment"
+ ],
+ "defaultCode": 59485,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "assignment",
+ "id": 55,
+ "order": 66,
+ "prevSize": 24,
+ "code": 59485,
+ "name": "assignment"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 55
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 810v-60c0-86-170-132-256-132s-256 46-256 132v60h512zM512 298c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assignment_ind"
+ ],
+ "defaultCode": 59486,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "assignment_ind",
+ "id": 56,
+ "order": 67,
+ "prevSize": 24,
+ "code": 59486,
+ "name": "assignment_ind"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 56
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 214c24 0 42-20 42-44s-18-42-42-42-42 18-42 42 18 44 42 44zM554 598v-256h-84v256h84zM554 768v-86h-84v86h84zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assignment_late"
+ ],
+ "defaultCode": 59487,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "assignment_late",
+ "id": 57,
+ "order": 68,
+ "prevSize": 24,
+ "code": 59487,
+ "name": "assignment_late"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 57
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 640v-170h-170v-128l-214 212 214 214v-128h170zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assignment_return"
+ ],
+ "defaultCode": 59488,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "assignment_return",
+ "id": 58,
+ "order": 69,
+ "prevSize": 24,
+ "code": 59488,
+ "name": "assignment_return"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 58
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 768l214-214h-128v-170h-172v170h-128zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assignment_returned"
+ ],
+ "defaultCode": 59489,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "assignment_returned",
+ "id": 59,
+ "order": 70,
+ "prevSize": 24,
+ "code": 59489,
+ "name": "assignment_returned"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 59
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 726l342-342-60-60-282 280-110-110-60 60zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assignment_turned_in"
+ ],
+ "defaultCode": 59490,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "assignment_turned_in",
+ "id": 60,
+ "order": 71,
+ "prevSize": 24,
+ "code": 59490,
+ "name": "assignment_turned_in"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 60
+ },
+ {
+ "icon": {
+ "paths": [
+ "M592 550l176-80-176-80-80-176-80 176-176 80 176 80 80 176zM810 86c46 0 86 38 86 84v598c0 46-40 86-86 86h-170l-128 128-128-128h-170c-46 0-86-40-86-86v-598c0-46 40-84 86-84h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "assistant"
+ ],
+ "defaultCode": 58271,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "assistant",
+ "id": 61,
+ "order": 72,
+ "prevSize": 24,
+ "code": 58271,
+ "name": "assistant"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 61
+ },
+ {
+ "icon": {
+ "paths": [
+ "M614 256h240v426h-300l-16-84h-240v298h-84v-726h384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flag"
+ ],
+ "defaultCode": 57683,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "assistant_photo, flag",
+ "id": 62,
+ "order": 73,
+ "prevSize": 24,
+ "code": 57683,
+ "name": "flag2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 62
+ },
+ {
+ "icon": {
+ "paths": [
+ "M704 256h64v490c0 130-104 236-234 236s-236-106-236-236v-532c0-94 78-172 172-172s170 78 170 172v448c0 58-48 106-106 106s-108-48-108-106v-406h64v406c0 24 20 42 44 42s42-18 42-42v-448c0-58-48-108-106-108s-108 50-108 108v532c0 94 78 172 172 172s170-78 170-172v-490z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "attach_file"
+ ],
+ "defaultCode": 57894,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "attach_file",
+ "id": 63,
+ "order": 74,
+ "prevSize": 24,
+ "code": 57894,
+ "name": "attach_file"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 63
+ },
+ {
+ "icon": {
+ "paths": [
+ "M504 466c96 26 200 64 200 186 0 88-66 136-150 152v92h-128v-92c-82-18-150-70-156-164h94c4 50 38 90 126 90 94 0 116-46 116-76 0-40-22-78-128-104-120-28-200-78-200-176 0-82 66-136 148-154v-92h128v94c90 22 136 88 138 162h-94c-2-54-32-90-108-90-72 0-114 34-114 80 0 40 32 66 128 92z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "attach_money"
+ ],
+ "defaultCode": 57895,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "attach_money",
+ "id": 64,
+ "order": 75,
+ "prevSize": 24,
+ "code": 57895,
+ "name": "attach_money"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 64
+ },
+ {
+ "icon": {
+ "paths": [
+ "M86 534c0-130 104-236 234-236h448c94 0 170 78 170 172s-76 170-170 170h-362c-58 0-108-48-108-106s50-108 108-108h320v86h-324c-24 0-24 42 0 42h366c46 0 86-38 86-84s-40-86-86-86h-448c-82 0-150 68-150 150s68 148 150 148h406v86h-406c-130 0-234-104-234-234z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "attachment"
+ ],
+ "defaultCode": 58044,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "attachment",
+ "id": 65,
+ "order": 76,
+ "prevSize": 24,
+ "code": 58044,
+ "name": "attachment"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 65
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128h298v128h-170v470h-2c-10 96-92 170-190 170-106 0-192-86-192-192s86-192 192-192c22 0 44 4 64 12v-396z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "audiotrack"
+ ],
+ "defaultCode": 58273,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "audiotrack",
+ "id": 66,
+ "order": 77,
+ "prevSize": 24,
+ "code": 58273,
+ "name": "audiotrack"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 66
+ },
+ {
+ "icon": {
+ "paths": [
+ "M800 330c34 52 54 116 54 182 0 188-154 342-342 342v128l-170-172 170-170v128c142 0 256-114 256-256 0-44-12-84-30-120zM512 256c-142 0-256 114-256 256 0 44 10 84 30 120l-62 62c-34-52-54-116-54-182 0-188 154-342 342-342v-128l170 172-170 170v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "autorenew"
+ ],
+ "defaultCode": 59491,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "autorenew",
+ "id": 67,
+ "order": 78,
+ "prevSize": 24,
+ "code": 59491,
+ "name": "autorenew"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 67
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 512c0-24 18-42 42-42s44 18 44 42-20 42-44 42-42-18-42-42zM768 512c0 24-18 42-42 42s-44-18-44-42 20-42 44-42 42 18 42 42zM470 128h42c212 0 384 172 384 384s-172 384-384 384-384-172-384-384c0-126 60-236 154-306v-2l290 290-60 60-232-230c-42 52-66 116-66 188 0 166 132 298 298 298s298-132 298-298c0-150-112-276-256-296v82h-84v-170zM470 726c0-24 18-44 42-44s42 20 42 44-18 42-42 42-42-18-42-42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "av_timer"
+ ],
+ "defaultCode": 57371,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "av_timer",
+ "id": 68,
+ "order": 79,
+ "prevSize": 24,
+ "code": 57371,
+ "name": "av_timer"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 68
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 666l-152-154 152-154-60-60-152 154-154-154-60 60 154 154-154 154 60 60 154-154 152 154zM938 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-640c-30 0-52-16-68-38l-230-346 230-346c16-22 38-38 68-38h640z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "backspace"
+ ],
+ "defaultCode": 57674,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "backspace",
+ "id": 69,
+ "order": 80,
+ "prevSize": 24,
+ "code": 57674,
+ "name": "backspace"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 69
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 554h128l-214-212-214 212h128v172h172v-172zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud_upload"
+ ],
+ "defaultCode": 58051,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "backup, cloud_upload",
+ "id": 70,
+ "order": 81,
+ "prevSize": 24,
+ "code": 58051,
+ "name": "cloud_upload"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 70
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 598v-214h-84v214h84zM554 768v-86h-84v86h84zM668 170c32 0 58 26 58 58v654c0 32-26 56-58 56h-312c-32 0-58-24-58-56v-654c0-32 26-58 58-58h70v-84h172v84h70z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery_alert"
+ ],
+ "defaultCode": 57756,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "battery_alert",
+ "id": 71,
+ "order": 82,
+ "prevSize": 24,
+ "code": 57756,
+ "name": "battery_alert"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 71
+ },
+ {
+ "icon": {
+ "paths": [
+ "M470 854l170-320h-86v-236l-170 320h86v236zM668 170c32 0 58 26 58 58v654c0 32-26 56-58 56h-312c-32 0-58-24-58-56v-654c0-32 26-58 58-58h70v-84h172v84h70z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery_charging_full"
+ ],
+ "defaultCode": 57763,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "battery_charging_full",
+ "id": 72,
+ "order": 83,
+ "prevSize": 24,
+ "code": 57763,
+ "name": "battery_charging_full"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 72
+ },
+ {
+ "icon": {
+ "paths": [
+ "M668 170c32 0 58 26 58 58v654c0 32-26 56-58 56h-312c-32 0-58-24-58-56v-654c0-32 26-58 58-58h70v-84h172v84h70z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery_std"
+ ],
+ "defaultCode": 57765,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "battery_full, battery_std",
+ "id": 73,
+ "order": 84,
+ "prevSize": 24,
+ "code": 57765,
+ "name": "battery_std"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 73
+ },
+ {
+ "icon": {
+ "paths": [
+ "M610 542c18-18 30-44 30-72 0-70-58-128-128-128s-128 58-128 128h64c0-36 28-64 64-64s64 28 64 64c0 18-6 32-18 44l-40 40c-20 20-40 50-40 86h68c0-20 16-48 36-68 12-12 28-30 28-30zM552 766v-82h-80v82h80zM668 170c32 0 58 26 58 58v654c0 32-26 56-58 56h-312c-32 0-58-24-58-56v-654c0-32 26-58 58-58h70v-84h172v84h70z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "battery_unknown"
+ ],
+ "defaultCode": 57766,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "battery_unknown",
+ "id": 74,
+ "order": 85,
+ "prevSize": 24,
+ "code": 57766,
+ "name": "battery_unknown"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 74
+ },
+ {
+ "icon": {
+ "paths": [
+ "M744 376c-133.701-133.701-319.17-177.803-486.874-122.374 127.568-14.55 291.962 51.462 424.874 184.374l-244 244c-132.912-132.912-198.924-297.306-184.374-424.874-55.43 167.705-11.327 353.174 122.374 486.874l-122 122c-167.908-167.908-168-441.7-0.275-609.724 0.259-2.212 0.333-2.291 2.551-2.551 168.024-167.725 441.816-167.633 609.724 0.275zM560 622l62-62 274 276-62 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "beach_access"
+ ],
+ "defaultCode": 60222,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "beach_access",
+ "id": 75,
+ "order": 86,
+ "prevSize": 24,
+ "code": 60222,
+ "name": "beach_access"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 75
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 682l384-384-60-60-324 324-152-152-60 60zM810 42c46 0 86 40 86 86v552c0 30-16 54-38 70l-346 232-346-232c-22-16-38-40-38-70v-552c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "beenhere"
+ ],
+ "defaultCode": 58669,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "beenhere",
+ "id": 76,
+ "order": 87,
+ "prevSize": 24,
+ "code": 58669,
+ "name": "beenhere"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 76
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342 0-78-26-152-72-210l-480 480c58 46 132 72 210 72zM170 512c0 78 26 152 72 210l480-480c-58-46-132-72-210-72-188 0-342 154-342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "block"
+ ],
+ "defaultCode": 57675,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "block",
+ "id": 77,
+ "order": 88,
+ "prevSize": 24,
+ "code": 57675,
+ "name": "block"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 77
+ },
+ {
+ "icon": {
+ "paths": [
+ "M634 696l-80-82v162zM554 248v162l80-82zM756 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bluetooth"
+ ],
+ "defaultCode": 57767,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "bluetooth",
+ "id": 78,
+ "order": 89,
+ "prevSize": 24,
+ "code": 57767,
+ "name": "bluetooth2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 78
+ },
+ {
+ "icon": {
+ "paths": [
+ "M550 696l-80-82v162zM470 248v162l80-82zM670 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42zM834 286c40 64 62 142 62 222 0 84-24 160-66 226l-50-50c26-52 42-110 42-172s-16-120-42-172zM608 512l98-98c12 30 20 64 20 98s-8 70-20 100z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bluetooth_searching"
+ ],
+ "defaultCode": 57770,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "bluetooth_audio, bluetooth_searching",
+ "id": 79,
+ "order": 90,
+ "prevSize": 24,
+ "code": 57770,
+ "name": "bluetooth_searching"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 79
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 426l86 86-86 86-84-86zM634 696l-80-82v162zM554 248v162l80-82zM756 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42zM298 512l-84 86-86-86 86-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bluetooth_connected"
+ ],
+ "defaultCode": 57768,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "bluetooth_connected",
+ "id": 80,
+ "order": 91,
+ "prevSize": 24,
+ "code": 57768,
+ "name": "bluetooth_connected"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 80
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 776l80-80-80-82v162zM230 170l624 624-60 60-98-98-184 182h-42v-324l-196 196-60-60 238-238-282-282zM554 248v138l-84-86v-214h42l244 242-130 130-60-60 68-70z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bluetooth_disabled"
+ ],
+ "defaultCode": 57769,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "bluetooth_disabled",
+ "id": 81,
+ "order": 92,
+ "prevSize": 24,
+ "code": 57769,
+ "name": "bluetooth_disabled"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 81
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 554c24 0 42 20 42 44s-18 42-42 42-44-18-44-42 20-44 44-44zM598 704c12 0 20 10 20 22s-8 20-20 20-22-8-22-20 10-22 22-22zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM726 406c12 0 20 8 20 20s-8 22-20 22-22-10-22-22 10-20 22-20zM726 576c12 0 20 10 20 22s-8 20-20 20-22-8-22-20 10-22 22-22zM598 320c-12 0-22-10-22-22s10-20 22-20 20 8 20 20-8 22-20 22zM598 384c24 0 42 18 42 42s-18 44-42 44-44-20-44-44 20-42 44-42zM426 320c-12 0-20-10-20-22s8-20 20-20 22 8 22 20-10 22-22 22zM298 576c12 0 22 10 22 22s-10 20-22 20-20-8-20-20 8-22 20-22zM426 704c12 0 22 10 22 22s-10 20-22 20-20-8-20-20 8-22 20-22zM298 406c12 0 22 8 22 20s-10 22-22 22-20-10-20-22 8-20 20-20zM426 554c24 0 44 20 44 44s-20 42-44 42-42-18-42-42 18-44 42-44zM426 384c24 0 44 18 44 42s-20 44-44 44-42-20-42-44 18-42 42-42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "blur_circular"
+ ],
+ "defaultCode": 58274,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "blur_circular",
+ "id": 82,
+ "order": 93,
+ "prevSize": 24,
+ "code": 58274,
+ "name": "blur_circular"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 82
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 726c-24 0-42-20-42-44s18-42 42-42 44 18 44 42-20 44-44 44zM554 554c-24 0-42-18-42-42s18-42 42-42 44 18 44 42-20 42-44 42zM554 384c-24 0-42-18-42-42s18-44 42-44 44 20 44 44-20 42-44 42zM726 534c-12 0-22-10-22-22s10-22 22-22 20 10 20 22-8 22-20 22zM726 362c-12 0-22-8-22-20s10-22 22-22 20 10 20 22-8 20-20 20zM128 128h768v86h-768v-86zM726 704c-12 0-22-10-22-22s10-20 22-20 20 8 20 20-8 22-20 22zM384 726c-24 0-42-20-42-44s18-42 42-42 42 18 42 42-18 44-42 44zM214 576c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM214 406c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM128 896v-86h768v86h-768zM384 384c-24 0-42-18-42-42s18-44 42-44 42 20 42 44-18 42-42 42zM384 554c-24 0-42-18-42-42s18-42 42-42 42 18 42 42-18 42-42 42zM214 746c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "blur_linear"
+ ],
+ "defaultCode": 58275,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "blur_linear",
+ "id": 83,
+ "order": 94,
+ "prevSize": 24,
+ "code": 58275,
+ "name": "blur_linear"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 83
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 576c12 0 22 10 22 22s-10 20-22 20-22-8-22-20 10-22 22-22zM256 726c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM426 874c12 0 22 10 22 22s-10 22-22 22-20-10-20-22 8-22 20-22zM128 406c12 0 22 8 22 20s-10 22-22 22-22-10-22-22 10-20 22-20zM256 554c24 0 42 20 42 44s-18 42-42 42-42-18-42-42 18-44 42-44zM896 576c12 0 22 10 22 22s-10 20-22 20-22-8-22-20 10-22 22-22zM426 726c24 0 44 18 44 42s-20 42-44 42-42-18-42-42 18-42 42-42zM106 224l54-54 694 694-56 54-160-162c2 4 2 8 2 12 0 24-18 42-42 42s-44-18-44-42 20-42 44-42c4 0 8 0 12 2l-120-120c-4 30-32 54-64 54-36 0-64-28-64-64 0-32 24-60 54-64l-120-120c2 4 2 8 2 12 0 24-18 44-42 44s-42-20-42-44 18-42 42-42l12 2zM598 874c12 0 20 10 20 22s-8 22-20 22-22-10-22-22 10-22 22-22zM768 298c-24 0-42-18-42-42s18-42 42-42 42 18 42 42-18 42-42 42zM768 470c-24 0-42-20-42-44s18-42 42-42 42 18 42 42-18 44-42 44zM768 640c-24 0-42-18-42-42s18-44 42-44 42 20 42 44-18 42-42 42zM426 298c-24 0-42-18-42-42s18-42 42-42 44 18 44 42-20 42-44 42zM896 448c-12 0-22-10-22-22s10-20 22-20 22 8 22 20-10 22-22 22zM426 150c-12 0-20-10-20-22s8-22 20-22 22 10 22 22-10 22-22 22zM598 150c-12 0-22-10-22-22s10-22 22-22 20 10 20 22-8 22-20 22zM588 490c-28-4-50-26-54-54v-10c0-36 28-64 64-64s64 28 64 64-28 64-64 64h-10zM598 298c-24 0-44-18-44-42s20-42 44-42 42 18 42 42-18 42-42 42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "blur_off"
+ ],
+ "defaultCode": 58276,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "blur_off",
+ "id": 84,
+ "order": 95,
+ "prevSize": 24,
+ "code": 58276,
+ "name": "blur_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 84
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 362c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM598 534c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM426 726c24 0 44 18 44 42s-20 42-44 42-42-18-42-42 18-42 42-42zM426 362c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM598 874c12 0 20 10 20 22s-8 22-20 22-22-10-22-22 10-22 22-22zM598 726c24 0 42 18 42 42s-18 42-42 42-44-18-44-42 20-42 44-42zM896 576c12 0 22 10 22 22s-10 20-22 20-22-8-22-20 10-22 22-22zM768 214c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM768 384c24 0 42 18 42 42s-18 44-42 44-42-20-42-44 18-42 42-42zM768 726c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM768 554c24 0 42 20 42 44s-18 42-42 42-42-18-42-42 18-44 42-44zM426 534c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM426 298c-24 0-42-18-42-42s18-42 42-42 44 18 44 42-20 42-44 42zM426 150c-12 0-20-10-20-22s8-22 20-22 22 10 22 22-10 22-22 22zM426 874c12 0 22 10 22 22s-10 22-22 22-20-10-20-22 8-22 20-22zM128 576c12 0 22 10 22 22s-10 20-22 20-22-8-22-20 10-22 22-22zM598 150c-12 0-22-10-22-22s10-22 22-22 20 10 20 22-8 22-20 22zM598 298c-24 0-44-18-44-42s20-42 44-42 42 18 42 42-18 42-42 42zM896 448c-12 0-22-10-22-22s10-20 22-20 22 8 22 20-10 22-22 22zM256 214c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM128 406c12 0 22 8 22 20s-10 22-22 22-22-10-22-22 10-20 22-20zM256 384c24 0 42 18 42 42s-18 44-42 44-42-20-42-44 18-42 42-42zM256 726c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM256 554c24 0 42 20 42 44s-18 42-42 42-42-18-42-42 18-44 42-44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "blur_on"
+ ],
+ "defaultCode": 58277,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "blur_on",
+ "id": 85,
+ "order": 96,
+ "prevSize": 24,
+ "code": 58277,
+ "name": "blur_on"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 85
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 170v342l106-64 108 64v-342h-214zM768 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-684c0-46 40-84 86-84h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "class"
+ ],
+ "defaultCode": 59502,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "book, class",
+ "id": 86,
+ "order": 97,
+ "prevSize": 24,
+ "code": 59502,
+ "name": "class"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 86
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 128c46 0 84 40 84 86v682l-298-128-298 128v-682c0-46 38-86 84-86h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "turned_in"
+ ],
+ "defaultCode": 59622,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "bookmark, turned_in",
+ "id": 87,
+ "order": 98,
+ "prevSize": 24,
+ "code": 59622,
+ "name": "turned_in"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 87
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 768v-554h-428v554l214-94zM726 128c46 0 84 40 84 86v682l-298-128-298 128v-682c0-46 38-86 84-86h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "turned_in_not"
+ ],
+ "defaultCode": 59623,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "bookmark_border, turned_in_not",
+ "id": 88,
+ "order": 99,
+ "prevSize": 24,
+ "code": 59623,
+ "name": "turned_in_not"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 88
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 470v-256h-256v256h256zM810 810v-256h-256v256h256zM470 470v-256h-256v256h256zM470 810v-256h-256v256h256zM128 128h768v768h-768v-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_all"
+ ],
+ "defaultCode": 57896,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "border_all",
+ "id": 89,
+ "order": 100,
+ "prevSize": 24,
+ "code": 57896,
+ "name": "border_all"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 89
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 640v86h-86v-86h86zM128 896v-86h768v86h-768zM214 470v84h-86v-84h86zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM214 298v86h-86v-86h86zM810 726v-86h86v86h-86zM810 554v-84h86v84h-86zM726 128v86h-86v-86h86zM554 128v86h-84v-86h84zM726 470v84h-86v-84h86zM554 298v86h-84v-86h84zM214 128v86h-86v-86h86zM554 470v84h-84v-84h84zM384 128v86h-86v-86h86zM554 640v86h-84v-86h84zM384 470v84h-86v-84h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_bottom"
+ ],
+ "defaultCode": 57897,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "border_bottom",
+ "id": 90,
+ "order": 101,
+ "prevSize": 24,
+ "code": 57897,
+ "name": "border_bottom"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 90
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 214v-86h86v86h-86zM640 554v-84h86v84h-86zM640 896v-86h86v86h-86zM470 214v-86h84v86h-84zM810 128h86v86h-86v-86zM470 384v-86h84v86h-84zM810 384v-86h86v86h-86zM810 896v-86h86v86h-86zM810 554v-84h86v84h-86zM810 726v-86h86v86h-86zM470 554v-84h84v84h-84zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86zM128 554v-84h86v84h-86zM128 726v-86h86v86h-86zM128 896v-86h86v86h-86zM470 896v-86h84v86h-84zM470 726v-86h84v86h-84zM298 896v-86h86v86h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_clear"
+ ],
+ "defaultCode": 57898,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "border_clear",
+ "id": 91,
+ "order": 102,
+ "prevSize": 24,
+ "code": 57898,
+ "name": "border_clear"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 91
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 854h1024v170h-1024v-170zM884 172l-84 84-160-160 84-84c16-16 44-16 60 0l100 100c16 16 16 44 0 60zM758 298l-428 428h-160v-160l428-428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_color"
+ ],
+ "defaultCode": 57899,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "border_color",
+ "id": 92,
+ "order": 103,
+ "prevSize": 24,
+ "code": 57899,
+ "name": "border_color"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 92
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 896v-86h86v86h-86zM640 896v-86h86v86h-86zM470 726v-86h84v86h-84zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM128 554v-84h768v84h-768zM470 896v-86h84v86h-84zM810 726v-86h86v86h-86zM554 128v86h-84v-86h84zM554 298v86h-84v-86h84zM726 128v86h-86v-86h86zM384 128v86h-86v-86h86zM214 128v86h-86v-86h86zM298 896v-86h86v86h-86zM128 726v-86h86v86h-86zM214 298v86h-86v-86h86zM128 896v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_horizontal"
+ ],
+ "defaultCode": 57900,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "border_horizontal",
+ "id": 93,
+ "order": 104,
+ "prevSize": 24,
+ "code": 57900,
+ "name": "border_horizontal"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 93
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 726v-86h86v86h-86zM810 896v-86h86v86h-86zM554 128v342h342v84h-342v342h-84v-342h-342v-84h342v-342h84zM640 896v-86h86v86h-86zM810 128h86v86h-86v-86zM810 384v-86h86v86h-86zM726 128v86h-86v-86h86zM214 128v86h-86v-86h86zM384 128v86h-86v-86h86zM128 726v-86h86v86h-86zM214 298v86h-86v-86h86zM298 896v-86h86v86h-86zM128 896v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_inner"
+ ],
+ "defaultCode": 57901,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "border_inner",
+ "id": 94,
+ "order": 105,
+ "prevSize": 24,
+ "code": 57901,
+ "name": "border_inner"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 94
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 214v-86h86v86h-86zM640 554v-84h86v84h-86zM810 896v-86h86v86h-86zM810 554v-84h86v84h-86zM810 128h86v86h-86v-86zM810 726v-86h86v86h-86zM640 896v-86h86v86h-86zM810 384v-86h86v86h-86zM128 896v-768h86v768h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86zM298 896v-86h86v86h-86zM470 554v-84h84v84h-84zM470 384v-86h84v86h-84zM470 214v-86h84v86h-84zM470 726v-86h84v86h-84zM470 896v-86h84v86h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_left"
+ ],
+ "defaultCode": 57902,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "border_left",
+ "id": 95,
+ "order": 106,
+ "prevSize": 24,
+ "code": 57902,
+ "name": "border_left"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 95
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 470v84h-86v-84h86zM554 640v86h-84v-86h84zM810 810v-596h-596v596h596zM128 128h768v768h-768v-768zM726 470v84h-86v-84h86zM554 470v84h-84v-84h84zM554 298v86h-84v-86h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_outer"
+ ],
+ "defaultCode": 57903,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "border_outer",
+ "id": 96,
+ "order": 107,
+ "prevSize": 24,
+ "code": 57903,
+ "name": "border_outer"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 96
+ },
+ {
+ "icon": {
+ "paths": [
+ "M470 384v-86h84v86h-84zM470 214v-86h84v86h-84zM470 554v-84h84v84h-84zM640 214v-86h86v86h-86zM640 896v-86h86v86h-86zM810 128h86v768h-86v-768zM640 554v-84h86v84h-86zM470 726v-86h84v86h-84zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86zM470 896v-86h84v86h-84zM128 896v-86h86v86h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86zM128 214v-86h86v86h-86zM298 896v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_right"
+ ],
+ "defaultCode": 57904,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "border_right",
+ "id": 97,
+ "order": 108,
+ "prevSize": 24,
+ "code": 57904,
+ "name": "border_right"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 97
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 384v-86h86v86h-86zM128 128h768v86h-682v682h-86v-768zM810 554v-84h86v84h-86zM810 726v-86h86v86h-86zM470 896v-86h84v86h-84zM298 896v-86h86v86h-86zM810 896v-86h86v86h-86zM640 896v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_style"
+ ],
+ "defaultCode": 57905,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "border_style",
+ "id": 98,
+ "order": 109,
+ "prevSize": 24,
+ "code": 57905,
+ "name": "border_style"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 98
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 554v-84h86v84h-86zM810 896v-86h86v86h-86zM470 384v-86h84v86h-84zM640 896v-86h86v86h-86zM810 726v-86h86v86h-86zM128 128h768v86h-768v-86zM810 554v-84h86v84h-86zM810 384v-86h86v86h-86zM470 726v-86h84v86h-84zM128 384v-86h86v86h-86zM128 554v-84h86v84h-86zM128 896v-86h86v86h-86zM128 726v-86h86v86h-86zM470 896v-86h84v86h-84zM470 554v-84h84v84h-84zM298 554v-84h86v84h-86zM298 896v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_top"
+ ],
+ "defaultCode": 57906,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "border_top",
+ "id": 99,
+ "order": 110,
+ "prevSize": 24,
+ "code": 57906,
+ "name": "border_top"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 99
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 554v-84h86v84h-86zM640 896v-86h86v86h-86zM640 214v-86h86v86h-86zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM810 554v-84h86v84h-86zM810 896v-86h86v86h-86zM470 896v-768h84v768h-84zM810 726v-86h86v86h-86zM298 214v-86h86v86h-86zM128 726v-86h86v86h-86zM128 896v-86h86v86h-86zM128 554v-84h86v84h-86zM298 554v-84h86v84h-86zM298 896v-86h86v86h-86zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "border_vertical"
+ ],
+ "defaultCode": 57907,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "border_vertical",
+ "id": 100,
+ "order": 111,
+ "prevSize": 24,
+ "code": 57907,
+ "name": "border_vertical"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 100
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 810v-256h-384v256h384zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "branding_watermark"
+ ],
+ "defaultCode": 57451,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "branding_watermark",
+ "id": 101,
+ "order": 112,
+ "prevSize": 24,
+ "code": 57451,
+ "name": "branding_watermark"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 101
+ },
+ {
+ "icon": {
+ "paths": [
+ "M86 512c0-236 190-426 426-426s426 190 426 426-190 426-426 426-426-190-426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_1"
+ ],
+ "defaultCode": 58278,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "brightness_1",
+ "id": 102,
+ "order": 113,
+ "prevSize": 24,
+ "code": 58278,
+ "name": "brightness_1"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 102
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 86c236 0 428 190 428 426s-192 426-428 426c-78 0-150-20-212-56 128-74 212-212 212-370s-84-296-212-370c62-36 134-56 212-56z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_2"
+ ],
+ "defaultCode": 58279,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "brightness_2",
+ "id": 103,
+ "order": 114,
+ "prevSize": 24,
+ "code": 58279,
+ "name": "brightness_2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 103
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 86c236 0 426 190 426 426s-190 426-426 426c-44 0-88-6-128-18 174-54 298-216 298-408s-124-354-298-408c40-12 84-18 128-18z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_3"
+ ],
+ "defaultCode": 58280,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "brightness_3",
+ "id": 104,
+ "order": 115,
+ "prevSize": 24,
+ "code": 58280,
+ "name": "brightness_3"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 104
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 768c142 0 256-114 256-256s-114-256-256-256c-38 0-74 10-106 24 88 40 148 128 148 232s-60 192-148 232c32 14 68 24 106 24zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_4"
+ ],
+ "defaultCode": 58281,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "brightness_4",
+ "id": 105,
+ "order": 116,
+ "prevSize": 24,
+ "code": 58281,
+ "name": "brightness_4"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 105
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 768c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM854 654v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200l140 142z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_low"
+ ],
+ "defaultCode": 57773,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "brightness_5, brightness_low",
+ "id": 106,
+ "order": 117,
+ "prevSize": 24,
+ "code": 57773,
+ "name": "brightness_low"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 106
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 768c142 0 256-114 256-256s-114-256-256-256v512zM854 654v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200l140 142z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_medium"
+ ],
+ "defaultCode": 57774,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "brightness_6, brightness_medium",
+ "id": 107,
+ "order": 118,
+ "prevSize": 24,
+ "code": 57774,
+ "name": "brightness_medium"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 107
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 342c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170zM512 768c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_high"
+ ],
+ "defaultCode": 57772,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "brightness_7, brightness_high",
+ "id": 108,
+ "order": 119,
+ "prevSize": 24,
+ "code": 57772,
+ "name": "brightness_high"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 108
+ },
+ {
+ "icon": {
+ "paths": [
+ "M610 682h82l-138-384h-84l-138 384h82l30-84h136zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200zM462 540l50-156 50 156h-100z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brightness_auto"
+ ],
+ "defaultCode": 57771,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "brightness_auto",
+ "id": 109,
+ "order": 120,
+ "prevSize": 24,
+ "code": 57771,
+ "name": "brightness_auto"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 109
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 488l128 128v194c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-280l128 128 170-172 172 172zM896 214v280l-128-128-170 172-172-172-170 172-128-130v-194c0-46 40-86 86-86h596c46 0 86 40 86 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "broken_image"
+ ],
+ "defaultCode": 58285,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "broken_image",
+ "id": 110,
+ "order": 121,
+ "prevSize": 24,
+ "code": 58285,
+ "name": "broken_image"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 110
+ },
+ {
+ "icon": {
+ "paths": [
+ "M884 198c16 16 16 44 0 60l-382 382-118-118 382-382c16-16 44-16 60 0zM298 598c70 0 128 58 128 128 0 94-76 170-170 170-64 0-130-34-170-86 36 0 84-28 84-84 0-70 58-128 128-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "brush"
+ ],
+ "defaultCode": 58286,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "brush",
+ "id": 111,
+ "order": 122,
+ "prevSize": 24,
+ "code": 58286,
+ "name": "brush"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 111
+ },
+ {
+ "icon": {
+ "paths": [
+ "M444 376c0-114 90-206 204-206s206 92 206 206-92 204-206 204-204-90-204-204zM546 768c0-48 38-86 86-86s84 38 84 86-36 86-84 86-86-38-86-86zM170 614c0-76 62-136 138-136s136 60 136 136-60 136-136 136-138-60-138-136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bubble_chart"
+ ],
+ "defaultCode": 59101,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "bubble_chart",
+ "id": 112,
+ "order": 123,
+ "prevSize": 24,
+ "code": 59101,
+ "name": "bubble_chart"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 112
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 512v-86h-172v86h172zM598 682v-84h-172v84h172zM854 342v84h-90c2 14 4 30 4 44v42h86v86h-86v42c0 14-2 28-4 42h90v86h-120c-44 76-128 128-222 128s-178-52-222-128h-120v-86h90c-2-14-4-28-4-42v-42h-86v-86h86v-42c0-14 2-30 4-44h-90v-84h120c20-34 46-62 78-84l-70-70 60-60 94 92c20-4 40-6 60-6s40 2 60 6l94-92 60 60-70 70c32 22 58 50 78 84h120z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "bug_report"
+ ],
+ "defaultCode": 59496,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "bug_report",
+ "id": 113,
+ "order": 124,
+ "prevSize": 24,
+ "code": 59496,
+ "name": "bug_report"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 113
+ },
+ {
+ "icon": {
+ "paths": [
+ "M968 810c18 12 18 42-4 60l-98 98c-18 18-42 18-60 0l-388-388c-98 38-212 18-294-64-86-86-108-214-56-316l188 184 128-128-184-184c102-46 230-30 316 56 82 82 102 196 64 294z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "build"
+ ],
+ "defaultCode": 59497,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "build",
+ "id": 114,
+ "order": 125,
+ "prevSize": 24,
+ "code": 59497,
+ "name": "build"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 114
+ },
+ {
+ "icon": {
+ "paths": [
+ "M470 726h426l-136-180-108 136-76-92zM938 214c24 0 44 18 44 42v512c0 24-20 42-44 42h-512c-24 0-42-18-42-42v-512c0-24 18-42 42-42h512zM214 214h84v596h-84v-596zM42 214h86v596h-86v-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "burst_mode"
+ ],
+ "defaultCode": 58428,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "burst_mode",
+ "id": 115,
+ "order": 126,
+ "prevSize": 24,
+ "code": 58428,
+ "name": "burst_mode"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 115
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 640v86h-86v-86h86zM768 470v84h-86v-84h86zM854 810v-426h-342v86h86v84h-86v86h86v86h-86v84h342zM426 298v-84h-84v84h84zM426 470v-86h-84v86h84zM426 640v-86h-84v86h84zM426 810v-84h-84v84h84zM256 298v-84h-86v84h86zM256 470v-86h-86v86h86zM256 640v-86h-86v86h86zM256 810v-84h-86v84h86zM512 298h426v598h-852v-768h426v170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "domain"
+ ],
+ "defaultCode": 59374,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "business, domain",
+ "id": 116,
+ "order": 127,
+ "prevSize": 24,
+ "code": 59374,
+ "name": "domain"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 116
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 298v-84h-172v84h172zM854 298c46 0 84 40 84 86v128c0 46-38 86-84 86h-256v-86h-172v86h-256c-48 0-84-38-84-86v-128c0-46 38-86 84-86h170v-84l86-86h170l86 86v84h172zM426 682h172v-42h298v170c0 48-38 86-86 86h-596c-48 0-86-38-86-86v-170h298v42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "business_center"
+ ],
+ "defaultCode": 60223,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "business_center",
+ "id": 117,
+ "order": 128,
+ "prevSize": 24,
+ "code": 60223,
+ "name": "business_center"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 117
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 512h128l-170 170-172-170h128c0-188 154-342 342-342 66 0 130 20 182 54l-62 62c-36-20-76-30-120-30-142 0-256 114-256 256zM810 342l172 170h-128c0 188-154 342-342 342-66 0-130-20-182-54l62-62c36 20 76 30 120 30 142 0 256-114 256-256h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cached"
+ ],
+ "defaultCode": 59498,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "cached",
+ "id": 118,
+ "order": 129,
+ "prevSize": 24,
+ "code": 59498,
+ "name": "cached"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 118
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 384c70 0 128 58 128 128v66c0 46-38 84-84 84-22 0-42-8-58-24l-92-92-92 92c-32 32-86 32-118 0l-90-92-92 92c-16 16-36 24-58 24-46 0-84-38-84-84v-66c0-70 58-128 128-128h214v-86h84v86h214zM708 682c28 28 64 44 104 44 32 0 60-10 84-26v196c0 24-18 42-42 42h-684c-24 0-42-18-42-42v-196c24 16 52 26 84 26 40 0 76-16 104-44l46-46 46 46c56 56 152 56 208 0l46-46zM512 256c-46 0-86-40-86-86 0-16 6-32 14-44l72-126 72 126c8 12 14 28 14 44 0 46-38 86-86 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cake"
+ ],
+ "defaultCode": 59369,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "cake",
+ "id": 119,
+ "order": 130,
+ "prevSize": 24,
+ "code": 59369,
+ "name": "cake"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 119
+ },
+ {
+ "icon": {
+ "paths": [
+ "M282 460c62 120 162 220 282 282l94-94c12-12 30-16 44-10 48 16 100 24 152 24 24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone"
+ ],
+ "defaultCode": 57549,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "call, local_phone, phone",
+ "id": 120,
+ "order": 131,
+ "prevSize": 24,
+ "code": 57549,
+ "name": "phone2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 120
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 384c-68 0-134 10-196 30v132c0 16-10 34-24 40-42 20-80 46-114 78-8 8-18 12-30 12s-22-4-30-12l-106-106c-8-8-12-18-12-30s4-22 12-30c130-124 306-200 500-200s370 76 500 200c8 8 12 18 12 30s-4 22-12 30l-106 106c-8 8-18 12-30 12s-22-4-30-12c-34-32-72-58-114-78-14-6-24-20-24-38v-132c-62-20-128-32-196-32z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_end"
+ ],
+ "defaultCode": 57521,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "call_end",
+ "id": 121,
+ "order": 132,
+ "prevSize": 24,
+ "code": 57521,
+ "name": "call_end"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 121
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 214h426v426h-84v-282l-496 496-60-60 496-496h-282v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_made"
+ ],
+ "defaultCode": 57522,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "call_made",
+ "id": 122,
+ "order": 133,
+ "prevSize": 24,
+ "code": 57522,
+ "name": "call_made"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 122
+ },
+ {
+ "icon": {
+ "paths": [
+ "M320 342l192-192 192 192h-150v272l-256 256-60-60 232-230v-238h-150zM726 870l-146-144 60-60 146 144z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "merge_type"
+ ],
+ "defaultCode": 57938,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "call_merge, merge_type",
+ "id": 123,
+ "order": 134,
+ "prevSize": 24,
+ "code": 57938,
+ "name": "merge_type"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 123
+ },
+ {
+ "icon": {
+ "paths": [
+ "M836 298l60 60-384 384-298-298v196h-86v-342h342v86h-196l238 238z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_missed"
+ ],
+ "defaultCode": 57524,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "call_missed",
+ "id": 124,
+ "order": 135,
+ "prevSize": 24,
+ "code": 57524,
+ "name": "call_missed"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 124
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 358l60-60 324 324 238-238h-196v-86h342v342h-86v-196l-298 298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_missed_outgoing"
+ ],
+ "defaultCode": 57572,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "call_missed_outgoing",
+ "id": 125,
+ "order": 136,
+ "prevSize": 24,
+ "code": 57572,
+ "name": "call_missed_outgoing"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 125
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 230l-496 496h282v84h-426v-426h84v282l496-496z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_received"
+ ],
+ "defaultCode": 57525,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "call_received",
+ "id": 126,
+ "order": 137,
+ "prevSize": 24,
+ "code": 57525,
+ "name": "call_received"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 126
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 170l-98 98 226 226v360h-84v-324l-202-202-98 98v-256h256zM598 170h256v256l-98-98-124 124-60-60 124-124z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_split"
+ ],
+ "defaultCode": 57526,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "call_split",
+ "id": 127,
+ "order": 138,
+ "prevSize": 24,
+ "code": 57526,
+ "name": "call_split"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 127
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 810v-128h-768v128h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "call_to_action"
+ ],
+ "defaultCode": 57452,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "call_to_action",
+ "id": 128,
+ "order": 139,
+ "prevSize": 24,
+ "code": 57452,
+ "name": "call_to_action"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 128
+ },
+ {
+ "icon": {
+ "paths": [
+ "M420 928c68.709-118.625 136.494-238.172 206-356l156 270c-74 60-168 96-270 96-32 0-62-4-92-10zM104 640h414l-158 270c-122-46-216-146-256-270zM198 224c71.999 124.667 143.587 249.746 216 374h-320c-6-28-8-56-8-86 0-112 42-212 112-288zM930 426c6 28 8 56 8 86 0 112-42 212-112 288l-204-352-12-22h320zM920 384h-414l158-270c122 46 216 146 256 270zM402 448l-4 4-156-270c74-60 168-96 270-96 32 0 62 4 92 10z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera"
+ ],
+ "defaultCode": 58287,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "camera",
+ "id": 129,
+ "order": 140,
+ "prevSize": 24,
+ "code": 58287,
+ "name": "camera2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 129
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 726c118 0 214-96 214-214s-96-214-214-214-214 96-214 214 96 214 214 214zM384 86h256l78 84h136c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h136zM376 512c0-76 60-136 136-136s136 60 136 136-60 136-136 136-136-60-136-136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "photo_camera"
+ ],
+ "defaultCode": 58386,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "camera_alt, local_see, photo_camera",
+ "id": 130,
+ "order": 141,
+ "prevSize": 24,
+ "code": 58386,
+ "name": "photo_camera"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 130
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 726l-54-118-116-54 116-52 54-118 54 118 116 52-116 54zM512 768c118 0 214-96 214-214s-96-212-214-212-214 94-214 212 96 214 214 214zM384 128h256l78 86h136c46 0 84 38 84 84v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-84 84-84h136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera_enhance"
+ ],
+ "defaultCode": 59644,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "camera_enhance",
+ "id": 131,
+ "order": 142,
+ "prevSize": 24,
+ "code": 59644,
+ "name": "camera_enhance"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 131
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 86v448c0-72 142-108 214-108s214 36 214 108v-448h-428zM726 0c46 0 84 40 84 86v596c0 46-38 86-84 86h-300l128 128-128 128v-86h-212v-84h212v-86h-128c-46 0-84-40-84-86v-596c0-46 38-86 84-86h428zM512 342c-46 0-84-40-84-86s38-86 84-86 86 40 86 86-40 86-86 86zM598 854h212v84h-212v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera_front"
+ ],
+ "defaultCode": 58289,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "camera_front",
+ "id": 132,
+ "order": 143,
+ "prevSize": 24,
+ "code": 58289,
+ "name": "camera_front"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 132
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 256c46 0 84-40 84-86s-38-84-84-84-86 38-86 84 38 86 86 86zM726 0c46 0 84 40 84 86v596c0 46-38 86-84 86h-300l128 128-128 128v-86h-212v-84h212v-86h-128c-46 0-84-40-84-86v-596c0-46 38-86 84-86h428zM598 854h212v84h-212v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera_rear"
+ ],
+ "defaultCode": 58290,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "camera_rear",
+ "id": 133,
+ "order": 144,
+ "prevSize": 24,
+ "code": 58290,
+ "name": "camera_rear"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 133
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 384v-86h-86v86h86zM854 768v-86h-86v86h86zM682 384v-86h-84v86h84zM682 768v-86h-84v86h84zM512 384v-86h-86v86h86zM512 768v-86h-86v86h86zM598 214h340v640h-340c0 46-40 84-86 84h-342c-46 0-84-38-84-84v-640c0-46 38-86 84-86h44v-42c0-24 18-44 42-44h170c24 0 44 20 44 44v42h42c46 0 86 40 86 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "camera_roll"
+ ],
+ "defaultCode": 58291,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "camera_roll",
+ "id": 134,
+ "order": 145,
+ "prevSize": 24,
+ "code": 58291,
+ "name": "camera_roll"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 134
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 666l-154-154 154-154-60-60-154 154-154-154-60 60 154 154-154 154 60 60 154-154 154 154zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cancel"
+ ],
+ "defaultCode": 58825,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "cancel",
+ "id": 135,
+ "order": 146,
+ "prevSize": 24,
+ "code": 58825,
+ "name": "cancel"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 135
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 598v-256h-218l90 120-70 50c-48.076-65.258-96.637-130.029-144-196-47.366 65.967-95.923 130.744-144 196l-70-50 90-120h-218v256h684zM854 810v-84h-684v84h684zM384 170c-24 0-42 20-42 44s18 42 42 42 42-18 42-42-18-44-42-44zM640 170c-24 0-42 20-42 44s18 42 42 42 42-18 42-42-18-44-42-44zM854 256c48 0 84 38 84 86v468c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-468c0-48 36-86 84-86h94c-4-14-8-28-8-42 0-70 58-128 128-128 44 0 82 22 106 56l22 30 22-30c24-34 62-56 106-56 70 0 128 58 128 128 0 14-4 28-8 42h94z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "redeem"
+ ],
+ "defaultCode": 59569,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "card_giftcard, redeem",
+ "id": 136,
+ "order": 147,
+ "prevSize": 24,
+ "code": 59569,
+ "name": "redeem"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 136
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 426v-256h-684v256h684zM854 640v-86h-684v86h684zM854 86c48 0 84 36 84 84v470c0 48-36 86-84 86h-172v212l-170-84-170 84v-212h-172c-48 0-84-38-84-86v-470c0-48 36-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "card_membership"
+ ],
+ "defaultCode": 59639,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "card_membership",
+ "id": 137,
+ "order": 148,
+ "prevSize": 24,
+ "code": 59639,
+ "name": "card_membership"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 137
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 598v-256h-128v84h-86v-84h-256v84h-86v-84h-128v256h684zM854 810v-84h-684v84h684zM384 170v86h256v-86h-256zM854 256c48 0 84 38 84 86v468c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-468c0-48 36-86 84-86h128v-86c0-48 38-84 86-84h256c48 0 86 36 86 84v86h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "card_travel"
+ ],
+ "defaultCode": 59640,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "card_travel",
+ "id": 138,
+ "order": 149,
+ "prevSize": 24,
+ "code": 59640,
+ "name": "card_travel"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 138
+ },
+ {
+ "icon": {
+ "paths": [
+ "M704 384c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM704 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM320 384c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM320 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "casino"
+ ],
+ "defaultCode": 60224,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "casino",
+ "id": 139,
+ "order": 150,
+ "prevSize": 24,
+ "code": 60224,
+ "name": "casino"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 139
+ },
+ {
+ "icon": {
+ "paths": [
+ "M42 426c258 0 470 210 470 470h-86c0-212-172-384-384-384v-86zM42 598c166 0 300 132 300 298h-86c0-118-96-214-214-214v-84zM42 768c70 0 128 58 128 128h-128v-128zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-298v-86h298v-596h-768v128h-86v-128c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cast"
+ ],
+ "defaultCode": 58119,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "cast",
+ "id": 140,
+ "order": 151,
+ "prevSize": 24,
+ "code": 58119,
+ "name": "cast"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 140
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-298v-86h298v-596h-768v128h-86v-128c0-46 40-86 86-86h768zM42 426c258 0 470 210 470 470h-86c0-212-172-384-384-384v-86zM810 298v428h-240c-54-168-188-304-356-358v-70h596zM42 598c166 0 300 132 300 298h-86c0-118-96-214-214-214v-84zM42 768c70 0 128 58 128 128h-128v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cast_connected"
+ ],
+ "defaultCode": 58120,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "cast_connected",
+ "id": 141,
+ "order": 152,
+ "prevSize": 24,
+ "code": 58120,
+ "name": "cast_connected"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 141
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 810v-170h86v170c0 46-40 86-86 86h-170v-86h170zM810 128c46 0 86 40 86 86v170h-86v-170h-170v-86h170zM214 214v170h-86v-170c0-46 40-86 86-86h170v86h-170zM214 640v170h170v86h-170c-46 0-86-40-86-86v-170h86zM512 342c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "center_focus_strong"
+ ],
+ "defaultCode": 58292,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "center_focus_strong",
+ "id": 142,
+ "order": 153,
+ "prevSize": 24,
+ "code": 58292,
+ "name": "center_focus_strong"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 142
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 598c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM512 342c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170zM810 810v-170h86v170c0 46-40 86-86 86h-170v-86h170zM810 128c46 0 86 40 86 86v170h-86v-170h-170v-86h170zM214 214v170h-86v-170c0-46 40-86 86-86h170v86h-170zM214 640v170h170v86h-170c-46 0-86-40-86-86v-170h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "center_focus_weak"
+ ],
+ "defaultCode": 58293,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "center_focus_weak",
+ "id": 143,
+ "order": 154,
+ "prevSize": 24,
+ "code": 58293,
+ "name": "center_focus_weak"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 143
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 170l426 684h-852zM512 332l-272 436h544z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "change_history"
+ ],
+ "defaultCode": 59499,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "change_history",
+ "id": 144,
+ "order": 155,
+ "prevSize": 24,
+ "code": 59499,
+ "name": "change_history"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 144
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 342v-86h-512v86h512zM598 598v-86h-342v86h342zM256 384v86h512v-86h-512zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chat"
+ ],
+ "defaultCode": 57527,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "chat",
+ "id": 145,
+ "order": 156,
+ "prevSize": 24,
+ "code": 57527,
+ "name": "chat"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 145
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chat_bubble"
+ ],
+ "defaultCode": 57546,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "chat_bubble",
+ "id": 146,
+ "order": 157,
+ "prevSize": 24,
+ "code": 57546,
+ "name": "chat_bubble"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 146
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 682v-512h-684v598l86-86h598zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chat_bubble_outline"
+ ],
+ "defaultCode": 57547,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "chat_bubble_outline",
+ "id": 147,
+ "order": 158,
+ "prevSize": 24,
+ "code": 57547,
+ "name": "chat_bubble_outline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 147
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 690l452-452 60 60-512 512-238-238 60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check"
+ ],
+ "defaultCode": 58826,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "check",
+ "id": 148,
+ "order": 159,
+ "prevSize": 24,
+ "code": 58826,
+ "name": "check2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 148
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 726l384-384-60-62-324 324-152-152-60 60zM810 128c48 0 86 40 86 86v596c0 46-38 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check_box"
+ ],
+ "defaultCode": 59444,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "check_box",
+ "id": 149,
+ "order": 160,
+ "prevSize": 24,
+ "code": 59444,
+ "name": "check_box"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 149
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM810 214h-596v596h596v-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check_box_outline_blank"
+ ],
+ "defaultCode": 59445,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "check_box_outline_blank",
+ "id": 150,
+ "order": 161,
+ "prevSize": 24,
+ "code": 59445,
+ "name": "check_box_outline_blank"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 150
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 726l384-384-60-62-324 324-152-152-60 60zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "check_circle"
+ ],
+ "defaultCode": 59500,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "check_circle",
+ "id": 151,
+ "order": 162,
+ "prevSize": 24,
+ "code": 59500,
+ "name": "check_circle"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 151
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658 316l-196 196 196 196-60 60-256-256 256-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "navigate_before"
+ ],
+ "defaultCode": 58376,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "chevron_left, navigate_before",
+ "id": 152,
+ "order": 163,
+ "prevSize": 24,
+ "code": 58376,
+ "name": "navigate_before"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 152
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 256l256 256-256 256-60-60 196-196-196-196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "navigate_next"
+ ],
+ "defaultCode": 58377,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "chevron_right, navigate_next",
+ "id": 153,
+ "order": 164,
+ "prevSize": 24,
+ "code": 58377,
+ "name": "navigate_next"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 153
+ },
+ {
+ "icon": {
+ "paths": [
+ "M320 598h384c-32 76-106 128-192 128s-160-52-192-128zM512 810c136.004 0 250.464-89.626 286-214 4 0 8 2 12 2 46 0 86-40 86-86s-40-86-86-86c-4 0-8 2-12 2-35.529-124.35-149.994-214-286-214-136.004 0-250.464 89.626-286 214-4 0-8-2-12-2-46 0-86 40-86 86s40 86 86 86c4 0 8-2 12-2 35.529 124.35 149.994 214 286 214zM978 540c-10 64-56 118-118 136-56.536 118.211-189.668 220-348 220-157.767 0-291.044-100.097-346-220-62-18-110-72-120-136-2-8-4-18-4-28s2-20 4-28c10-64 58-118 120-136 22-48 52-90 92-124 68-60 156-96 254-96 160.584 0 290.218 98.294 346 220 62 18 110 72 120 136 2 8 4 18 4 28s-2 20-4 28zM352 448c0-30 24-54 54-54s52 24 52 54-22 54-52 54-54-24-54-54zM566 448c0-30 22-54 52-54s54 24 54 54-24 54-54 54-52-24-52-54z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "child_care"
+ ],
+ "defaultCode": 60225,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "child_care",
+ "id": 154,
+ "order": 165,
+ "prevSize": 24,
+ "code": 60225,
+ "name": "child_care"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 154
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 854c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM342 854c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM824 678c30 28 50 68 50 112 0 82-66 148-148 148-76 0-138-56-148-128h-90c-10 72-70 128-146 128-82 0-150-66-150-148 0-56 32-106 78-132-10-14-90-188-90-188h-94v-86h148l40 86h622c0 78-28 150-72 208zM554 86c188 0 342 152 342 340h-342v-340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "child_friendly"
+ ],
+ "defaultCode": 60226,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "child_friendly",
+ "id": 155,
+ "order": 166,
+ "prevSize": 24,
+ "code": 60226,
+ "name": "child_friendly"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 155
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 810v-554h-384v554h384zM896 170c46 0 86 40 86 86v554c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-554c0-46 40-86 86-86h768zM554 618h300v64h-300v-64zM554 406h300v64h-300v-64zM554 512h300v64h-300v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "chrome_reader_mode"
+ ],
+ "defaultCode": 59501,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "chrome_reader_mode",
+ "id": 156,
+ "order": 167,
+ "prevSize": 24,
+ "code": 59501,
+ "name": "chrome_reader_mode"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 156
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 274l-238 238 238 238-60 60-238-238-238 238-60-60 238-238-238-238 60-60 238 238 238-238z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "close"
+ ],
+ "defaultCode": 58829,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "clear, close",
+ "id": 157,
+ "order": 168,
+ "prevSize": 24,
+ "code": 58829,
+ "name": "close2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 157
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 298h598v86h-598v-86zM128 726v-86h598v86h-598zM214 554v-84h596v84h-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "clear_all"
+ ],
+ "defaultCode": 57528,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "clear_all",
+ "id": 158,
+ "order": 169,
+ "prevSize": 24,
+ "code": 57528,
+ "name": "clear_all"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 158
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 470v-44c0-24-18-42-42-42h-128c-24 0-44 18-44 42v172c0 24 20 42 44 42h128c24 0 42-18 42-42v-44h-64v22h-86v-128h86v22h64zM470 470v-44c0-24-20-42-44-42h-128c-24 0-42 18-42 42v172c0 24 18 42 42 42h128c24 0 44-18 44-42v-44h-64v22h-86v-128h86v22h64zM810 170c46 0 86 40 86 86v512c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-512c0-46 38-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "closed_caption"
+ ],
+ "defaultCode": 57372,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "closed_caption",
+ "id": 159,
+ "order": 170,
+ "prevSize": 24,
+ "code": 57372,
+ "name": "closed_caption"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 159
+ },
+ {
+ "icon": {
+ "paths": [
+ "M826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wb_cloudy"
+ ],
+ "defaultCode": 58413,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "cloud, wb_cloudy",
+ "id": 160,
+ "order": 171,
+ "prevSize": 24,
+ "code": 58413,
+ "name": "wb_cloudy"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 160
+ },
+ {
+ "icon": {
+ "paths": [
+ "M704 682c58 0 106-48 106-106s-48-106-106-106h-22c0-94-76-172-170-172-80 0-146 56-164 130l-6-2c-70 0-128 58-128 128s58 128 128 128h362zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud_circle"
+ ],
+ "defaultCode": 58046,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "cloud_circle",
+ "id": 161,
+ "order": 172,
+ "prevSize": 24,
+ "code": 58046,
+ "name": "cloud_circle"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 161
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 726l282-282-60-60-222 220-88-88-60 60zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud_done"
+ ],
+ "defaultCode": 58047,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "cloud_done",
+ "id": 162,
+ "order": 173,
+ "prevSize": 24,
+ "code": 58047,
+ "name": "cloud_done"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 162
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 554h-128v-170h-172v170h-128l214 214zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud_download"
+ ],
+ "defaultCode": 58048,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "cloud_download",
+ "id": 163,
+ "order": 174,
+ "prevSize": 24,
+ "code": 58048,
+ "name": "cloud_download"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 163
+ },
+ {
+ "icon": {
+ "paths": [
+ "M330 426h-74c-94 0-170 78-170 172s76 170 170 170h416zM128 224l54-54 714 714-54 54-86-84h-500c-142 0-256-114-256-256 0-138 110-250 246-256zM826 428c110 8 198 100 198 212 0 72-36 136-90 174l-62-62c40-22 66-64 66-112 0-70-58-128-128-128h-64v-22c0-130-104-234-234-234-40 0-76 8-108 26l-64-62c50-32 108-50 172-50 156 0 284 110 314 258z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud_off"
+ ],
+ "defaultCode": 58049,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "cloud_off",
+ "id": 164,
+ "order": 175,
+ "prevSize": 24,
+ "code": 58049,
+ "name": "cloud_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 164
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 768c70 0 128-58 128-128s-58-128-128-128h-64v-22c0-130-104-234-234-234-108 0-198 72-226 170h-30c-94 0-170 78-170 172s76 170 170 170h554zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "cloud_queue"
+ ],
+ "defaultCode": 58050,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "cloud_queue",
+ "id": 165,
+ "order": 176,
+ "prevSize": 24,
+ "code": 58050,
+ "name": "cloud_queue"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 165
+ },
+ {
+ "icon": {
+ "paths": [
+ "M622 708l198-196-198-196 60-60 256 256-256 256zM402 708l-60 60-256-256 256-256 60 60-198 196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "code"
+ ],
+ "defaultCode": 59503,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "code",
+ "id": 166,
+ "order": 177,
+ "prevSize": 24,
+ "code": 59503,
+ "name": "code2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 166
+ },
+ {
+ "icon": {
+ "paths": [
+ "M86 256h84v598h598v84h-598c-46 0-84-38-84-84v-598zM470 512l-128 170h512l-172-212-126 158zM938 682c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512c46 0 84 38 84 84v512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "photo_library"
+ ],
+ "defaultCode": 58387,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "collections, photo_library",
+ "id": 167,
+ "order": 178,
+ "prevSize": 24,
+ "code": 58387,
+ "name": "photo_library"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 167
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 512v-342h-214v342l106-64zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "collections_bookmark"
+ ],
+ "defaultCode": 58417,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "collections_bookmark",
+ "id": 168,
+ "order": 179,
+ "prevSize": 24,
+ "code": 58417,
+ "name": "collections_bookmark"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 168
+ },
+ {
+ "icon": {
+ "paths": [
+ "M746 512c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM618 342c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM406 342c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 512c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 128c212 0 384 154 384 342 0 118-96 212-214 212h-74c-36 0-64 28-64 64 0 16 6 30 16 42s16 28 16 44c0 36-28 64-64 64-212 0-384-172-384-384s172-384 384-384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "palette"
+ ],
+ "defaultCode": 58378,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "color_lens, palette",
+ "id": 169,
+ "order": 180,
+ "prevSize": 24,
+ "code": 58378,
+ "name": "palette"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 169
+ },
+ {
+ "icon": {
+ "paths": [
+ "M296 810l344-344-82-82-344 344zM884 240c16 16 18 42 0 60l-134 134 82 82-60 60-60-60-382 380h-202v-202l380-382-60-60 60-60 82 82 134-134c16-16 44-16 60 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "colorize"
+ ],
+ "defaultCode": 58296,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "colorize",
+ "id": 170,
+ "order": 181,
+ "prevSize": 24,
+ "code": 58296,
+ "name": "colorize"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 170
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM938 170v768l-170-170h-598c-46 0-84-40-84-86v-512c0-46 38-84 84-84h684c46 0 84 38 84 84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "comment"
+ ],
+ "defaultCode": 57529,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "comment",
+ "id": 171,
+ "order": 182,
+ "prevSize": 24,
+ "code": 57529,
+ "name": "comment2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 171
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-212v-384l212 256v-554h-212v-86h212zM426 768v-256l-212 256h212zM426 128v-86h86v940h-86v-86h-212c-46 0-86-40-86-86v-596c0-46 40-86 86-86h212z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "compare"
+ ],
+ "defaultCode": 58297,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "compare",
+ "id": 172,
+ "order": 183,
+ "prevSize": 24,
+ "code": 58297,
+ "name": "compare"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 172
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 554l-170-170 170-170v128h298v84h-298v128zM384 598v-128l170 170-170 170v-128h-298v-84h298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "compare_arrows"
+ ],
+ "defaultCode": 59669,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "compare_arrows",
+ "id": 173,
+ "order": 184,
+ "prevSize": 24,
+ "code": 59669,
+ "name": "compare_arrows"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 173
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 256v426h684v-426h-684zM854 768h170v86h-1024v-86h170c-46 0-84-40-84-86v-426c0-46 38-86 84-86h684c46 0 84 40 84 86v426c0 46-38 86-84 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "laptop"
+ ],
+ "defaultCode": 58142,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "computer, laptop",
+ "id": 174,
+ "order": 185,
+ "prevSize": 24,
+ "code": 58142,
+ "name": "laptop2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 174
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 362v-84h-84v84h84zM554 554v-84h-84v84h84zM554 746v-84h-84v84h84zM938 426c-46 0-84 40-84 86s38 86 84 86v170c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-170c48 0 84-40 84-86s-38-86-84-86v-170c0-48 38-86 84-86h684c46 0 84 38 84 86v170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "confirmation_number"
+ ],
+ "defaultCode": 58936,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "confirmation_number",
+ "id": 175,
+ "order": 186,
+ "prevSize": 24,
+ "code": 58936,
+ "name": "confirmation_number"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 175
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938 512v-256h-340v256h340zM598 768v-42c0-86-170-132-256-132s-256 46-256 132v42h512zM342 256c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM938 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-852c-46 0-86-40-86-86v-596c0-46 40-86 86-86h852zM896 342l-128 84-128-84v-44l128 86 128-86v44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "contact_mail"
+ ],
+ "defaultCode": 57552,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "contact_mail",
+ "id": 176,
+ "order": 187,
+ "prevSize": 24,
+ "code": 57552,
+ "name": "contact_mail"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 176
+ },
+ {
+ "icon": {
+ "paths": [
+ "M762 598c-10-26-16-56-16-86s6-60 16-86h70l64-84-84-86c-56 42-98 100-118 170-8 28-12 56-12 86s4 58 12 86c20 68 62 128 118 170l84-86-64-84h-70zM598 768v-42c0-86-170-132-256-132s-256 46-256 132v42h512zM342 256c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM938 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-852c-46 0-86-40-86-86v-596c0-46 40-86 86-86h852z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "contact_phone"
+ ],
+ "defaultCode": 57551,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "contact_phone",
+ "id": 177,
+ "order": 188,
+ "prevSize": 24,
+ "code": 57551,
+ "name": "contact_phone"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 177
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 726v-64c0-72-142-108-214-108s-214 36-214 108v64h428zM512 288c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684zM170 1024v-86h684v86h-684zM854 0v86h-684v-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "contacts"
+ ],
+ "defaultCode": 57530,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "contacts",
+ "id": 178,
+ "order": 189,
+ "prevSize": 24,
+ "code": 57530,
+ "name": "contacts"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 178
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 896v-598h-468v598h468zM810 214c46 0 86 38 86 84v598c0 46-40 86-86 86h-468c-46 0-86-40-86-86v-598c0-46 40-84 86-84h468zM682 42v86h-512v598h-84v-598c0-46 38-86 84-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "content_copy"
+ ],
+ "defaultCode": 57677,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "content_copy",
+ "id": 179,
+ "order": 190,
+ "prevSize": 24,
+ "code": 57677,
+ "name": "content_copy"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 179
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 128h128v42l-298 300-86-86zM512 534c12 0 22-10 22-22s-10-22-22-22-22 10-22 22 10 22 22 22zM256 854c46 0 86-38 86-86s-40-86-86-86-86 38-86 86 40 86 86 86zM256 342c46 0 86-38 86-86s-40-86-86-86-86 38-86 86 40 86 86 86zM412 326l526 528v42h-128l-298-298-100 100c10 22 14 44 14 70 0 94-76 170-170 170s-170-76-170-170 76-170 170-170c26 0 48 4 70 14l100-100-100-100c-22 10-44 14-70 14-94 0-170-76-170-170s76-170 170-170 170 76 170 170c0 26-4 48-14 70z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "content_cut"
+ ],
+ "defaultCode": 57678,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "content_cut",
+ "id": 180,
+ "order": 191,
+ "prevSize": 24,
+ "code": 57678,
+ "name": "content_cut"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 180
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 854v-684h-84v128h-428v-128h-84v684h596zM512 86c-24 0-42 18-42 42s18 42 42 42 42-18 42-42-18-42-42-42zM810 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-596c-46 0-86-38-86-84v-684c0-46 40-84 86-84h178c18-50 64-86 120-86s102 36 120 86h178z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "content_paste"
+ ],
+ "defaultCode": 57679,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "content_paste",
+ "id": 181,
+ "order": 192,
+ "prevSize": 24,
+ "code": 57679,
+ "name": "content_paste"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 181
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 810c164 0 298-134 298-298s-134-298-298-298-298 134-298 298 134 298 298 298zM640 128c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM86 512c0 120 68 222 170 270v92c-148-52-256-196-256-362s108-310 256-362v92c-102 48-170 150-170 270zM682 342v128h128v84h-128v128h-84v-128h-128v-84h128v-128h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "control_point_duplicate"
+ ],
+ "defaultCode": 58299,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "control_point_duplicate",
+ "id": 182,
+ "order": 193,
+ "prevSize": 24,
+ "code": 58299,
+ "name": "control_point_duplicate"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 182
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM506 390c-61.522 0-80 54.457-80 116v12c0 61.538 18.508 116 80 116 37.558 0 70-22.925 70-60h76c0 39.042-21.138 68.404-44 88-25.786 22.102-55.81 36-102 36-109.169 0-164-72.147-164-180v-12c0-51.712 14.52-98.881 40-128 26.398-30.169 68.684-54 124-54 44.274 0 81.256 15.256 104 38 22.005 22.005 42 55.974 42 98h-76c0-10-2-18-6-26s-8-18-14-24c-10.835-10.835-29.352-20-50-20z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "copyright"
+ ],
+ "defaultCode": 59660,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "copyright",
+ "id": 183,
+ "order": 194,
+ "prevSize": 24,
+ "code": 59660,
+ "name": "copyright2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 183
+ },
+ {
+ "icon": {
+ "paths": [
+ "M884 300l-78 78-160-160 78-78c16-16 44-16 60 0l100 100c16 16 16 44 0 60zM128 736l472-472 160 160-472 472h-160v-160z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mode_edit"
+ ],
+ "defaultCode": 57940,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "create, edit, mode_edit",
+ "id": 184,
+ "order": 195,
+ "prevSize": 24,
+ "code": 57940,
+ "name": "mode_edit"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 184
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 598v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM854 256c48 0 84 38 84 86v426c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h256l86 86h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "create_new_folder"
+ ],
+ "defaultCode": 58060,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "create_new_folder",
+ "id": 185,
+ "order": 196,
+ "prevSize": 24,
+ "code": 58060,
+ "name": "create_new_folder"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 185
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 342v-86h-684v86h684zM854 768v-256h-684v256h684zM854 170c48 0 84 38 84 86v512c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "payment"
+ ],
+ "defaultCode": 59553,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "credit_card, payment",
+ "id": 186,
+ "order": 197,
+ "prevSize": 24,
+ "code": 59553,
+ "name": "payment"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 186
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 726h684v84h-172v172h-84v-172h-428c-46 0-84-38-84-84v-428h-172v-84h172v-172h84v684zM726 640v-342h-342v-84h342c46 0 84 38 84 84v342h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop"
+ ],
+ "defaultCode": 58302,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "crop",
+ "id": 187,
+ "order": 198,
+ "prevSize": 24,
+ "code": 58302,
+ "name": "crop2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 187
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 682v-340h-596v340h596zM810 256c46 0 86 40 86 86v340c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-340c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_16_9"
+ ],
+ "defaultCode": 58300,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "crop_16_9",
+ "id": 188,
+ "order": 199,
+ "prevSize": 24,
+ "code": 58300,
+ "name": "crop_16_9"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 188
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 768v-512h-596v512h596zM810 170c46 0 86 40 86 86v512c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-512c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_3_2"
+ ],
+ "defaultCode": 58301,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "crop_3_2",
+ "id": 189,
+ "order": 200,
+ "prevSize": 24,
+ "code": 58301,
+ "name": "crop_3_2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 189
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 726v-428h-596v428h596zM810 214c46 0 86 38 86 84v428c0 46-40 84-86 84h-596c-46 0-86-38-86-84v-428c0-46 40-84 86-84h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_landscape"
+ ],
+ "defaultCode": 58307,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "crop_5_4, crop_landscape",
+ "id": 190,
+ "order": 201,
+ "prevSize": 24,
+ "code": 58307,
+ "name": "crop_landscape"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 190
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 640v-256h-596v256h596zM810 298c46 0 86 40 86 86v256c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-256c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_7_5"
+ ],
+ "defaultCode": 58304,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "crop_7_5",
+ "id": 191,
+ "order": 202,
+ "prevSize": 24,
+ "code": 58304,
+ "name": "crop_7_5"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 191
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 810v-596h-596v596h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_din"
+ ],
+ "defaultCode": 58305,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "crop_din",
+ "id": 192,
+ "order": 203,
+ "prevSize": 24,
+ "code": 58305,
+ "name": "crop_din"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 192
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 128c46 0 86 40 86 86v170h-86v-170h-170v-86h170zM810 810v-170h86v170c0 46-40 86-86 86h-170v-86h170zM214 640v170h170v86h-170c-46 0-86-40-86-86v-170h86zM128 214c0-46 40-86 86-86h170v86h-170v170h-86v-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_free"
+ ],
+ "defaultCode": 58306,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "crop_free",
+ "id": 193,
+ "order": 204,
+ "prevSize": 24,
+ "code": 58306,
+ "name": "crop_free"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 193
+ },
+ {
+ "icon": {
+ "paths": [
+ "M596 524l150 202h-468l116-152 84 102zM810 810v-596h-596v596h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_original"
+ ],
+ "defaultCode": 58308,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "crop_original",
+ "id": 194,
+ "order": 205,
+ "prevSize": 24,
+ "code": 58308,
+ "name": "crop_original"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 194
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 810v-596h-428v596h428zM726 128c46 0 84 40 84 86v596c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-596c0-46 38-86 84-86h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_portrait"
+ ],
+ "defaultCode": 58309,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "crop_portrait",
+ "id": 195,
+ "order": 206,
+ "prevSize": 24,
+ "code": 58309,
+ "name": "crop_portrait"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 195
+ },
+ {
+ "icon": {
+ "paths": [
+ "M342 682h512v86h-86v86h-86v-86h-340c-48 0-86-40-86-86v-340h-86v-86h86v-86h86v512zM682 598v-256h-256v-86h256c46 0 86 38 86 86v256h-86zM514 0c268 0 488 208 510 470h-64c-16-160-114-296-254-362l-58 56-162-162c10 0 18-2 28-2zM318 916l58-56 162 162c-10 0-18 2-28 2-268 0-488-208-510-470h64c16 160 114 296 254 362z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_rotate"
+ ],
+ "defaultCode": 58423,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "crop_rotate",
+ "id": 196,
+ "order": 207,
+ "prevSize": 24,
+ "code": 58423,
+ "name": "crop_rotate"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 196
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 768v-512h-512v512h512zM768 170c46 0 86 40 86 86v512c0 46-40 86-86 86h-512c-46 0-86-40-86-86v-512c0-46 40-86 86-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "crop_square"
+ ],
+ "defaultCode": 58310,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "crop_square",
+ "id": 197,
+ "order": 208,
+ "prevSize": 24,
+ "code": 58310,
+ "name": "crop_square"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 197
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 128h342v256h-342v-256zM554 896v-426h342v426h-342zM128 896v-256h342v256h-342zM128 554v-426h342v426h-342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dashboard"
+ ],
+ "defaultCode": 59505,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "dashboard",
+ "id": 198,
+ "order": 209,
+ "prevSize": 24,
+ "code": 59505,
+ "name": "dashboard2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 198
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 810c94 0 178-44 232-112l112 66c-78 106-202 174-344 174-236 0-426-190-426-426 0-222 168-402 384-424v128c-144 20-256 146-256 296 0 166 132 298 298 298zM554 88c216 22 384 202 384 424 0 62-12 122-36 174l-112-66c12-34 20-70 20-108 0-150-112-276-256-296v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "data_usage"
+ ],
+ "defaultCode": 57775,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "data_usage",
+ "id": 199,
+ "order": 210,
+ "prevSize": 24,
+ "code": 57775,
+ "name": "data_usage"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 199
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 854v-470h-596v470h596zM810 170c46 0 86 40 86 86v598c0 46-40 84-86 84h-596c-48 0-86-38-86-84v-598c0-46 38-86 86-86h42v-84h86v84h340v-84h86v84h42zM726 470v84h-86v-84h86zM554 470v84h-84v-84h84zM384 470v84h-86v-84h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "date_range"
+ ],
+ "defaultCode": 59670,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "date_range",
+ "id": 200,
+ "order": 211,
+ "prevSize": 24,
+ "code": 59670,
+ "name": "date_range"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 200
+ },
+ {
+ "icon": {
+ "paths": [
+ "M86 234h852v86h-852v-86zM86 448h852v86h-852v-86zM86 662h852v84h-852v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dehaze"
+ ],
+ "defaultCode": 58311,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "dehaze",
+ "id": 201,
+ "order": 212,
+ "prevSize": 24,
+ "code": 58311,
+ "name": "dehaze"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 201
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 170v86h-596v-86h148l44-42h212l44 42h148zM256 810v-512h512v512c0 46-40 86-86 86h-340c-46 0-86-40-86-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "delete"
+ ],
+ "defaultCode": 59506,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "delete",
+ "id": 202,
+ "order": 213,
+ "prevSize": 24,
+ "code": 59506,
+ "name": "delete"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 202
+ },
+ {
+ "icon": {
+ "paths": [
+ "M662 170h148v86h-596v-86h148l44-42h212zM360 506l92 92-90 90 60 60 90-90 90 90 60-60-90-90 90-92-60-60-90 92-90-92zM256 810v-512h512v512c0 46-40 86-86 86h-340c-46 0-86-40-86-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "delete_forever"
+ ],
+ "defaultCode": 59691,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "delete_forever",
+ "id": 203,
+ "order": 214,
+ "prevSize": 24,
+ "code": 59691,
+ "name": "delete_forever"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 203
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 214v84h-512v-84h128l42-44h170l44 44h128zM128 768v-426h426v426c0 46-38 86-84 86h-256c-46 0-86-40-86-86zM640 512h256v86h-256v-86zM640 342h298v84h-298v-84zM640 682h170v86h-170v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "delete_sweep"
+ ],
+ "defaultCode": 57708,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "delete_sweep",
+ "id": 204,
+ "order": 215,
+ "prevSize": 24,
+ "code": 57708,
+ "name": "delete_sweep"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 204
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 384h236l-236-234v234zM682 598v-86h-340v86h340zM682 768v-86h-340v86h340zM598 86l256 256v512c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "description"
+ ],
+ "defaultCode": 59507,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "description",
+ "id": 205,
+ "order": 216,
+ "prevSize": 24,
+ "code": 59507,
+ "name": "description"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 205
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 598v-428h-768v428h768zM896 86c46 0 86 38 86 84v512c0 46-40 86-86 86h-298l84 128v42h-340v-42l84-128h-298c-46 0-86-40-86-86v-512c0-46 40-84 86-84h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "desktop_mac"
+ ],
+ "defaultCode": 58123,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "desktop_mac",
+ "id": 206,
+ "order": 217,
+ "prevSize": 24,
+ "code": 58123,
+ "name": "desktop_mac"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 206
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 682v-512h-768v512h768zM896 86c46 0 86 38 86 84v512c0 46-40 86-86 86h-298v86h84v84h-340v-84h84v-86h-298c-46 0-86-40-86-86v-512c0-46 40-84 86-84h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "desktop_windows"
+ ],
+ "defaultCode": 58124,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "desktop_windows",
+ "id": 207,
+ "order": 218,
+ "prevSize": 24,
+ "code": 58124,
+ "name": "desktop_windows"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 207
+ },
+ {
+ "icon": {
+ "paths": [
+ "M272 256l240 426 240-426h-480zM128 170h768l-384 684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "details"
+ ],
+ "defaultCode": 58312,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "details",
+ "id": 208,
+ "order": 219,
+ "prevSize": 24,
+ "code": 58312,
+ "name": "details"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 208
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 470h170v256h-170v-256zM256 298h214v214h-214v-214zM512 298h170v128h-170v-128zM256 554h214v172h-214v-172zM768 810v-596h-598v596h598zM938 384h-84v86h84v84h-84v86h84v86h-84v84c0 46-40 86-86 86h-598c-46 0-84-40-84-86v-596c0-46 38-86 84-86h598c46 0 86 40 86 86v84h84v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "developer_board"
+ ],
+ "defaultCode": 58125,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "developer_board",
+ "id": 209,
+ "order": 220,
+ "prevSize": 24,
+ "code": 58125,
+ "name": "developer_board"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 209
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 810v-84h84v170c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-170h84v84h428zM426 648l-60 60-196-196 196-196 60 60-134 136zM658 708l-60-60 134-136-134-136 60-60 196 196zM298 214v84h-84v-170c0-46 38-86 84-86l428 2c46 0 84 38 84 84v170h-84v-84h-428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "developer_mode"
+ ],
+ "defaultCode": 57776,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "developer_mode",
+ "id": 210,
+ "order": 221,
+ "prevSize": 24,
+ "code": 57776,
+ "name": "developer_mode"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 210
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 682h170v214h-214v-130l-170-180-170 180v130h-214v-214h170l172-170v-136c-50-18-86-64-86-120 0-70 58-128 128-128s128 58 128 128c0 56-36 102-86 120v136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "device_hub"
+ ],
+ "defaultCode": 58165,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "device_hub",
+ "id": 211,
+ "order": 222,
+ "prevSize": 24,
+ "code": 58165,
+ "name": "device_hub"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 211
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938 726v-300h-170v300h170zM982 342c24 0 42 18 42 42v426c0 24-18 44-42 44h-256c-24 0-44-20-44-44v-426c0-24 20-42 44-42h256zM170 256v470h428v128h-598v-128h86v-470c0-46 38-86 84-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phonelink"
+ ],
+ "defaultCode": 58150,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "devices, phonelink",
+ "id": 212,
+ "order": 223,
+ "prevSize": 24,
+ "code": 58150,
+ "name": "phonelink"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 212
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 768v-342h-170v342h170zM938 342c22 0 44 20 44 42v426c0 22-22 44-44 44h-256c-22 0-42-22-42-44v-426c0-22 20-42 42-42h256zM470 746c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM554 512v76c26 24 44 56 44 94s-18 72-44 96v76h-170v-76c-26-24-42-58-42-96s16-70 42-94v-76h170zM128 256v512h170v86h-170c-46 0-86-40-86-86v-512c0-46 40-86 86-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "devices_other"
+ ],
+ "defaultCode": 58167,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "devices_other",
+ "id": 213,
+ "order": 224,
+ "prevSize": 24,
+ "code": 58167,
+ "name": "devices_other"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 213
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM854 214v-44h-44v44h44zM768 128h128v128h-86v86h-42v-214zM640 214v128h-128v-44h86v-42h-86v-128h128v42h-86v44h86zM726 128v214h-44v-214h44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dialer_sip"
+ ],
+ "defaultCode": 57531,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "dialer_sip",
+ "id": 214,
+ "order": 225,
+ "prevSize": 24,
+ "code": 57531,
+ "name": "dialer_sip"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 214
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 298c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM768 298c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM768 554c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 554c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM768 214c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86zM256 554c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM256 298c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM256 42c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 810c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dialpad"
+ ],
+ "defaultCode": 57532,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "dialpad",
+ "id": 215,
+ "order": 226,
+ "prevSize": 24,
+ "code": 57532,
+ "name": "dialpad"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 215
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 618l148-148-148-150v106h-214c-24 0-42 20-42 44v170h84v-128h172v106zM926 482c16 18 16 44 0 60l-384 384c-16 16-44 16-60 0l-384-384c-16-16-16-44 0-60l384-384c16-16 44-16 60 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions"
+ ],
+ "defaultCode": 58670,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "directions",
+ "id": 216,
+ "order": 227,
+ "prevSize": 24,
+ "code": 58670,
+ "name": "directions"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 216
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 874c82 0 150-66 150-148s-68-150-150-150-148 68-148 150 66 148 148 148zM810 512c120 0 214 94 214 214s-94 212-214 212-212-92-212-212 92-214 212-214zM460 448l94 98v264h-84v-212l-138-120c-18-12-24-34-24-60 0-22 6-42 24-60l120-120c12-18 34-24 60-24s46 6 68 24l82 82c38 38 88 64 152 64v86c-90 0-160-34-216-90l-34-34zM214 874c82 0 148-66 148-148s-66-150-148-150-150 68-150 150 68 148 150 148zM214 512c120 0 212 94 212 214s-92 212-212 212-214-92-214-212 94-214 214-214zM662 234c-46 0-86-38-86-84s40-86 86-86 84 40 84 86-38 84-84 84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_bike"
+ ],
+ "defaultCode": 58671,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "directions_bike",
+ "id": 217,
+ "order": 228,
+ "prevSize": 24,
+ "code": 58671,
+ "name": "directions_bike"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 217
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 256v170l256-84 256 84v-170h-512zM168 810l-80-284c-9.564-28.693 7.98-47.327 28-54l54-18v-198c0-46 40-86 86-86h128v-128h256v128h128c46 0 86 40 86 86v198l54 18c20.040 6.68 37.574 25.277 28 54l-80 284h-2c-68 0-130-36-172-84-42 48-102 84-170 84s-128-36-170-84c-42 48-104 84-172 84h-2zM854 896h84v86h-84c-58 0-118-14-172-42-108 56-232 56-340 0-54 28-114 42-172 42h-84v-86h84c60 0 120-20 172-56 104 72 236 72 340 0 52 36 112 56 172 56z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_boat"
+ ],
+ "defaultCode": 58674,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "directions_boat",
+ "id": 218,
+ "order": 229,
+ "prevSize": 24,
+ "code": 58674,
+ "name": "directions_boat"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 218
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 470v-214h-512v214h512zM704 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM320 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM170 682v-426c0-150 154-170 342-170s342 20 342 170v426c0 38-18 72-44 96v76c0 24-18 42-42 42h-42c-24 0-44-18-44-42v-44h-340v44c0 24-20 42-44 42h-42c-24 0-42-18-42-42v-76c-26-24-44-58-44-96z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_bus"
+ ],
+ "defaultCode": 58672,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "directions_bus",
+ "id": 219,
+ "order": 230,
+ "prevSize": 24,
+ "code": 58672,
+ "name": "directions_bus"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 219
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 470h596l-64-192h-468zM746 682c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 682c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM808 256l88 256v342c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-44h-512v44c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-342l88-256c8-26 34-42 62-42h468c28 0 54 16 62 42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_car"
+ ],
+ "defaultCode": 58673,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "directions_car",
+ "id": 220,
+ "order": 231,
+ "prevSize": 24,
+ "code": 58673,
+ "name": "directions_car"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 220
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 426v-212h-512v212h512zM512 726c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM170 662v-448c0-150 154-172 342-172s342 22 342 172v448c0 82-68 148-150 148l64 64v22h-512v-22l64-64c-82 0-150-66-150-148z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_railway"
+ ],
+ "defaultCode": 58676,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "directions_railway",
+ "id": 221,
+ "order": 232,
+ "prevSize": 24,
+ "code": 58676,
+ "name": "directions_railway"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 221
+ },
+ {
+ "icon": {
+ "paths": [
+ "M422 826l-298-58 16-86 210 42 68-346-78 30v146h-84v-200l222-94c12 0 22-4 34-4 30 0 54 16 72 42l42 68c34 60 102 102 184 102v86c-94 0-178-42-234-106l-26 128 90 84v320h-86v-256l-90-84zM576 234c-46 0-86-40-86-86s40-84 86-84 84 38 84 84-38 86-84 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_run"
+ ],
+ "defaultCode": 58726,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "directions_run",
+ "id": 222,
+ "order": 233,
+ "prevSize": 24,
+ "code": 58726,
+ "name": "directions_run"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 222
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 470v-214h-214v214h214zM704 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM470 470v-214h-214v214h214zM320 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 86c188 0 342 20 342 170v406c0 82-68 148-150 148l64 64v22h-512v-22l64-64c-82 0-150-66-150-148v-406c0-150 154-170 342-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_transit"
+ ],
+ "defaultCode": 58677,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "directions_subway, directions_transit",
+ "id": 223,
+ "order": 234,
+ "prevSize": 24,
+ "code": 58677,
+ "name": "directions_transit"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 223
+ },
+ {
+ "icon": {
+ "paths": [
+ "M418 380l-120 602h90l78-342 88 86v256h86v-320l-90-86 26-128c56 64 140 106 234 106v-84c-82 0-148-44-182-104l-44-68c-18-26-42-42-72-42-12 0-22 4-34 4l-222 94v200h86v-144l76-30zM576 234c-46 0-86-38-86-84s40-86 86-86 86 40 86 86-40 84-86 84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "directions_walk"
+ ],
+ "defaultCode": 58678,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "directions_walk",
+ "id": 224,
+ "order": 235,
+ "prevSize": 24,
+ "code": 58678,
+ "name": "directions_walk"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 224
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 598c46 0 86-40 86-86s-40-86-86-86-84 40-84 86 38 86 84 86zM426 170c188 0 342 154 342 342s-154 342-342 342-340-154-340-342 152-342 340-342zM854 298h84v214h-84v-214zM854 682v-84h84v84h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "disc_full"
+ ],
+ "defaultCode": 58896,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "disc_full",
+ "id": 225,
+ "order": 236,
+ "prevSize": 24,
+ "code": 58896,
+ "name": "disc_full"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 225
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 384c46 0 86-40 86-86s-40-84-86-84-84 38-84 84 38 86 84 86zM854 128c24 0 42 18 42 42v256c0 24-18 44-42 44h-684c-24 0-42-20-42-44v-256c0-24 18-42 42-42h684zM298 810c46 0 86-38 86-84s-40-86-86-86-84 40-84 86 38 84 84 84zM854 554c24 0 42 20 42 44v256c0 24-18 42-42 42h-684c-24 0-42-18-42-42v-256c0-24 18-44 42-44h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dns"
+ ],
+ "defaultCode": 59509,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "dns",
+ "id": 226,
+ "order": 237,
+ "prevSize": 24,
+ "code": 59509,
+ "name": "dns"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 226
+ },
+ {
+ "icon": {
+ "paths": [
+ "M782 722c46-58 72-132 72-210 0-188-154-342-342-342-78 0-152 26-210 72zM512 854c78 0 152-26 210-72l-480-480c-46 58-72 132-72 210 0 188 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "not_interested"
+ ],
+ "defaultCode": 57395,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "do_not_disturb, not_interested",
+ "id": 227,
+ "order": 238,
+ "prevSize": 24,
+ "code": 57395,
+ "name": "not_interested"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 227
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342 0-76-28-150-74-210l-478 478c60 46 134 74 210 74zM170 512c0 76 28 150 74 210l478-478c-60-46-134-74-210-74-188 0-342 154-342 342zM512 86c234 0 426 192 426 426s-192 426-426 426-426-192-426-426 192-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "do_not_disturb_alt"
+ ],
+ "defaultCode": 58897,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "do_not_disturb_alt",
+ "id": 228,
+ "order": 239,
+ "prevSize": 24,
+ "code": 58897,
+ "name": "do_not_disturb_alt"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 228
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 554h148l-86-84h-62v84zM96 96l832 832-56 54-118-120c-68 48-152 76-242 76-236 0-426-190-426-426 0-90 28-174 76-242l-120-118zM726 470h-148l-308-308c68-48 152-76 242-76 236 0 426 190 426 426 0 90-28 174-76 242l-198-200h62v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "do_not_disturb_off"
+ ],
+ "defaultCode": 58947,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "do_not_disturb_off",
+ "id": 229,
+ "order": 240,
+ "prevSize": 24,
+ "code": 58947,
+ "name": "do_not_disturb_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 229
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 554v-84h-428v84h428zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remove_circle"
+ ],
+ "defaultCode": 57692,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "do_not_disturb_on, remove_circle",
+ "id": 230,
+ "order": 241,
+ "prevSize": 24,
+ "code": 57692,
+ "name": "remove_circle"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 230
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 640v-426h-340v426h340zM682 44c46 0 86 38 86 84v598c0 46-40 84-86 84h-340c-46 0-86-38-86-84v-598c0-46 40-86 86-86zM342 982v-86h340v86h-340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dock"
+ ],
+ "defaultCode": 58126,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "dock",
+ "id": 231,
+ "order": 242,
+ "prevSize": 24,
+ "code": 58126,
+ "name": "dock"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 231
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 692l452-454 60 60-512 512-238-238 58-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "done"
+ ],
+ "defaultCode": 59510,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "done",
+ "id": 232,
+ "order": 243,
+ "prevSize": 24,
+ "code": 59510,
+ "name": "done"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 232
+ },
+ {
+ "icon": {
+ "paths": [
+ "M18 572l60-60 238 238-60 60zM948 238l62 60-512 512-240-238 62-60 178 178zM768 298l-270 272-60-60 270-272z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "done_all"
+ ],
+ "defaultCode": 59511,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "done_all",
+ "id": 233,
+ "order": 244,
+ "prevSize": 24,
+ "code": 59511,
+ "name": "done_all"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 233
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 808c128-18 238-126 256-254h128c-20 214-170 364-384 384v-130zM810 470c-18-128-128-236-256-254v-130c214 20 364 170 384 384h-128zM470 216c-128 20-256 146-256 296s128 276 256 296v130c-214-22-384-204-384-426s170-404 384-426v130z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "donut_large"
+ ],
+ "defaultCode": 59671,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "donut_large",
+ "id": 234,
+ "order": 245,
+ "prevSize": 24,
+ "code": 59671,
+ "name": "donut_large"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 234
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 634c42-12 66-44 80-80h304c-20 202-170 364-384 384v-304zM634 470c-14-36-38-68-80-80v-304c214 20 364 182 384 384h-304zM470 390c-42 18-86 66-86 122s44 104 86 122v304c-214-22-384-204-384-426s170-404 384-426v304z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "donut_small"
+ ],
+ "defaultCode": 59672,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "donut_small",
+ "id": 235,
+ "order": 246,
+ "prevSize": 24,
+ "code": 59672,
+ "name": "donut_small"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 235
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 554l352-220-352-206-352 206zM938 342v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-426c0-30 16-60 40-74l386-226 386 226c24 14 40 44 40 74z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drafts"
+ ],
+ "defaultCode": 57681,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "drafts",
+ "id": 236,
+ "order": 247,
+ "prevSize": 24,
+ "code": 57681,
+ "name": "drafts"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 236
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 640v-86h684v86h-684zM854 384v86h-684v-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "drag_handle"
+ ],
+ "defaultCode": 57949,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "drag_handle",
+ "id": 237,
+ "order": 248,
+ "prevSize": 24,
+ "code": 57949,
+ "name": "drag_handle"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 237
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 426h596l-64-192h-468zM746 640c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 640c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM808 214l88 256v340c0 24-18 44-42 44h-44c-24 0-42-20-42-44v-42h-512v42c0 24-18 44-42 44h-44c-24 0-42-20-42-44v-340l88-256c8-26 34-44 62-44h468c28 0 54 18 62 44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "time_to_leave"
+ ],
+ "defaultCode": 58924,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "drive_eta, time_to_leave",
+ "id": 238,
+ "order": 249,
+ "prevSize": 24,
+ "code": 58924,
+ "name": "time_to_leave"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 238
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 512v86h-84v-86h84zM298 342v84h-84v-84h84zM810 512v86h-468v-86h468zM810 342v84h-468v-84h468zM896 726v-512h-768v512h768zM896 128c46 0 86 40 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-46 0-86-38-86-84v-512c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "dvr"
+ ],
+ "defaultCode": 57778,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "dvr",
+ "id": 239,
+ "order": 250,
+ "prevSize": 24,
+ "code": 57778,
+ "name": "dvr"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 239
+ },
+ {
+ "icon": {
+ "paths": [
+ "M636 322c6-6 6-16 0-22l-40-40c-6-6-16-6-22 0l-30 30 62 62zM446 512l142-142-62-62-142 142v62h62zM512 86c164 0 298 134 298 298 0 224-298 554-298 554s-298-330-298-554c0-164 134-298 298-298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "edit_location"
+ ],
+ "defaultCode": 58728,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "edit_location",
+ "id": 240,
+ "order": 251,
+ "prevSize": 24,
+ "code": 58728,
+ "name": "edit_location"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 240
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 214l284 426h-568zM214 726h596v84h-596v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "eject"
+ ],
+ "defaultCode": 59643,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "eject",
+ "id": 241,
+ "order": 252,
+ "prevSize": 24,
+ "code": 59643,
+ "name": "eject2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 241
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 342v-86l-342 214-342-214v86l342 212zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "markunread"
+ ],
+ "defaultCode": 57689,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "email, local_post_office, mail, markunread",
+ "id": 242,
+ "order": 253,
+ "prevSize": 24,
+ "code": 57689,
+ "name": "markunread"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 242
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 682v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM380 256v86h264v-86c0-72-60-132-132-132s-132 60-132 132zM768 342c46 0 86 38 86 84v428c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-428c0-46 40-84 86-84h42v-86c0-118 96-214 214-214s214 96 214 214v86h42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "enhanced_encryption"
+ ],
+ "defaultCode": 58943,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "enhanced_encryption",
+ "id": 243,
+ "order": 254,
+ "prevSize": 24,
+ "code": 58943,
+ "name": "enhanced_encryption"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 243
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 384h172v470h-172v-470zM170 854v-342h172v342h-172zM426 854v-684h172v684h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "equalizer"
+ ],
+ "defaultCode": 57373,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "equalizer",
+ "id": 244,
+ "order": 255,
+ "prevSize": 24,
+ "code": 57373,
+ "name": "equalizer"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 244
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 554v-256h-84v256h84zM554 726v-86h-84v86h84zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "error"
+ ],
+ "defaultCode": 57344,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "error",
+ "id": 245,
+ "order": 256,
+ "prevSize": 24,
+ "code": 57344,
+ "name": "error"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 245
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM470 298h84v256h-84v-256zM470 640h84v86h-84v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "error_outline"
+ ],
+ "defaultCode": 57345,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "error_outline",
+ "id": 246,
+ "order": 257,
+ "prevSize": 24,
+ "code": 57345,
+ "name": "error_outline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 246
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 790c70 0 132-26 180-68l76 76c-68 62-158 98-256 98-168 0-310-108-362-256h-150v-86h130c-2-14-2-28-2-42s0-28 2-42h-130v-86h150c52-148 194-256 362-256 98 0 188 36 256 98l-76 76c-48-42-112-68-180-68-106 0-200 62-246 150h246v86h-274c-2 14-4 28-4 42s2 28 4 42h274v86h-246c46 88 138 150 246 150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "euro_symbol"
+ ],
+ "defaultCode": 59686,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "euro_symbol",
+ "id": 247,
+ "order": 258,
+ "prevSize": 24,
+ "code": 59686,
+ "name": "euro_symbol"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 247
+ },
+ {
+ "icon": {
+ "paths": [
+ "M342 768l170-298h-86v-214l-170 320h86v192zM768 426c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM844 308c20 20 30 46 30 76v406c0 58-48 106-106 106s-106-48-106-106v-214h-64v320h-428v-682c0-46 40-86 86-86h256c46 0 86 40 86 86v298h42c46 0 86 40 86 86v192c0 24 18 42 42 42s42-18 42-42v-308c-14 6-26 8-42 8-58 0-106-48-106-106 0-46 28-84 68-100l-90-90 46-44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ev_station"
+ ],
+ "defaultCode": 58733,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "ev_station",
+ "id": 248,
+ "order": 259,
+ "prevSize": 24,
+ "code": 58733,
+ "name": "ev_station"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 248
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 810v-468h-596v468h596zM682 42h86v86h42c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86zM726 512v214h-214v-214h214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "insert_invitation"
+ ],
+ "defaultCode": 57935,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "event, insert_invitation",
+ "id": 249,
+ "order": 260,
+ "prevSize": 24,
+ "code": 57935,
+ "name": "insert_invitation"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 249
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 810v-468h-596v468h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42zM706 472l-254 254-136-136 46-46 90 90 208-208z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "event_available"
+ ],
+ "defaultCode": 58900,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "event_available",
+ "id": 250,
+ "order": 261,
+ "prevSize": 24,
+ "code": 58900,
+ "name": "event_available"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 250
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 810v-468h-596v468h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42zM398 726l-46-46 104-104-104-104 46-46 104 104 104-104 44 46-104 104 104 104-44 46-104-104z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "event_busy"
+ ],
+ "defaultCode": 58901,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "event_busy",
+ "id": 251,
+ "order": 262,
+ "prevSize": 24,
+ "code": 58901,
+ "name": "event_busy"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 251
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 598v84h-300v-84h300zM810 810v-468h-596v468h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42zM726 426v86h-428v-86h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "event_note"
+ ],
+ "defaultCode": 58902,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "event_note",
+ "id": 252,
+ "order": 263,
+ "prevSize": 24,
+ "code": 58902,
+ "name": "event_note"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 252
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 554h-428v-340c0-46 40-86 86-86h256c46 0 86 40 86 86v340zM86 426h128v128h-128v-128zM810 426h128v128h-128v-128zM170 896v-256h684v256h-128v-128h-428v128h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "event_seat"
+ ],
+ "defaultCode": 59651,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "event_seat",
+ "id": 253,
+ "order": 264,
+ "prevSize": 24,
+ "code": 59651,
+ "name": "event_seat"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 253
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-170h86v170h596v-596h-596v170h-86v-170c0-46 38-86 86-86h596zM430 666l110-112h-412v-84h412l-110-112 60-60 214 214-214 214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exit_to_app"
+ ],
+ "defaultCode": 59513,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "exit_to_app",
+ "id": 254,
+ "order": 265,
+ "prevSize": 24,
+ "code": 59513,
+ "name": "exit_to_app"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 254
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 342l256 256-60 60-196-196-196 196-60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "expand_less"
+ ],
+ "defaultCode": 58830,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "expand_less",
+ "id": 255,
+ "order": 266,
+ "prevSize": 24,
+ "code": 58830,
+ "name": "expand_less"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 255
+ },
+ {
+ "icon": {
+ "paths": [
+ "M708 366l60 60-256 256-256-256 60-60 196 196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "expand_more"
+ ],
+ "defaultCode": 58831,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "expand_more",
+ "id": 256,
+ "order": 267,
+ "prevSize": 24,
+ "code": 58831,
+ "name": "expand_more"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 256
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 384v-86h-256v428h256v-86h-170v-86h170v-84h-170v-86h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "explicit"
+ ],
+ "defaultCode": 57374,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "explicit",
+ "id": 257,
+ "order": 268,
+ "prevSize": 24,
+ "code": 57374,
+ "name": "explicit"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 257
+ },
+ {
+ "icon": {
+ "paths": [
+ "M606 606l162-350-350 162-162 350zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM512 466c26 0 46 20 46 46s-20 46-46 46-46-20-46-46 20-46 46-46z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "explore"
+ ],
+ "defaultCode": 59514,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "explore",
+ "id": 258,
+ "order": 269,
+ "prevSize": 24,
+ "code": 59514,
+ "name": "explore"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 258
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 854v-684l-684 684h684zM214 214v84h256v-84h-256zM854 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-684c0-46 38-84 84-84h684zM640 726h-86v-86h86v-86h86v86h84v86h-84v84h-86v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exposure"
+ ],
+ "defaultCode": 58314,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "exposure",
+ "id": 259,
+ "order": 270,
+ "prevSize": 24,
+ "code": 58314,
+ "name": "exposure"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 259
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 768h-84v-454l-128 44v-72l200-72h12v554zM170 470h342v84h-342v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exposure_neg_1"
+ ],
+ "defaultCode": 58315,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "exposure_neg_1",
+ "id": 260,
+ "order": 271,
+ "prevSize": 24,
+ "code": 58315,
+ "name": "exposure_neg_1"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 260
+ },
+ {
+ "icon": {
+ "paths": [
+ "M86 470h340v84h-340v-84zM702 214c103.361 0 172 46.875 172 150 0 16-2 34-8 50s-12 34-22 50c-21.913 35.061-50.22 70.22-80 100l-122 132h254v72h-368v-64l178-194c27.051-27.051 44.466-50.776 62-80 10.155-16.925 14-31.054 14-56 0-12 0-26-4-36-11.918-29.795-34.301-52-76-52-60.876 0-92 36.935-92 98h-92c0-51.336 20.69-92.69 48-120 31.385-31.385 73.692-50 136-50z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exposure_neg_2"
+ ],
+ "defaultCode": 58316,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "exposure_neg_2",
+ "id": 261,
+ "order": 272,
+ "prevSize": 24,
+ "code": 58316,
+ "name": "exposure_neg_2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 261
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 768h-86v-454l-128 44v-72l200-72h14v554zM426 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exposure_plus_1"
+ ],
+ "defaultCode": 58317,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "exposure_plus_1",
+ "id": 262,
+ "order": 273,
+ "prevSize": 24,
+ "code": 58317,
+ "name": "exposure_plus_1"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 262
+ },
+ {
+ "icon": {
+ "paths": [
+ "M342 298v172h170v84h-170v172h-86v-172h-170v-84h170v-172h86zM684 696h254v72h-368v-64l178-194c27.051-27.051 44.466-50.776 62-80 9.657-16.095 16-33.377 16-56 0-27.976-9.972-45.963-22-62-12.776-17.035-30.076-26-60-26-30.802 0-54.673 12.673-70 28-13.992 13.992-22 43.42-22 70h-92c0-51.336 20.69-92.69 48-120 16-16 34-30 58-38s50-12 80-12c28 0 50 4 72 10 20 8 40 16 54 30 26.805 22.976 46 61.985 46 110 0 40.444-14.717 72.348-32 100-10 16-20 34-34 50s-30 34-46 50z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exposure_plus_2"
+ ],
+ "defaultCode": 58318,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "exposure_plus_2",
+ "id": 263,
+ "order": 274,
+ "prevSize": 24,
+ "code": 58318,
+ "name": "exposure_plus_2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 263
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 432c0-51.604-2.887-85.33-22-114-8-12-18-18-28-24s-22-8-36-8-26 2-36 8-20 12-28 24c-19.070 28.606-22 62.453-22 114v114c0 68.64 9.322 117.593 50 142 10 6 22 8 36 8 33.536 0 49.61-12.416 64-34 17.74-26.61 24-68.817 24-116v-114h-2zM336 446c0-137.059 42.756-232 176-232 93.018 0 143.69 47.837 164 124 8 30 14 64 14 108v88h-2c0 79.48-15.373 138.051-48 180-16 18-34 34-56 42s-46 12-72 12-50-4-72-12-40-24-56-42c-34.893-39.254-48-102.511-48-180v-88z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "exposure_zero"
+ ],
+ "defaultCode": 58319,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "exposure_zero",
+ "id": 264,
+ "order": 275,
+ "prevSize": 24,
+ "code": 58319,
+ "name": "exposure_zero"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 264
+ },
+ {
+ "icon": {
+ "paths": [
+ "M874 470c58 0 108 48 108 106s-50 106-108 106h-64v172c0 46-38 84-84 84h-162v-64c0-64-52-114-116-114s-116 50-116 114v64h-162c-46 0-84-38-84-84v-162h64c64 0 114-52 114-116s-50-116-114-116h-64v-162c0-46 38-84 84-84h172v-64c0-58 48-108 106-108s106 50 106 108v64h172c46 0 84 38 84 84v172h64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "extension"
+ ],
+ "defaultCode": 59515,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "extension",
+ "id": 265,
+ "order": 276,
+ "prevSize": 24,
+ "code": 59515,
+ "name": "extension"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 265
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342 0-34-6-66-14-96-30 8-62 10-96 10-144 0-270-70-348-180-42 102-124 186-224 230-2 12-2 24-2 36 0 188 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM640 502c30 0 54 22 54 52s-24 54-54 54-54-24-54-54 24-52 54-52zM384 502c30 0 54 22 54 52s-24 54-54 54-54-24-54-54 24-52 54-52z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "face"
+ ],
+ "defaultCode": 59516,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "face",
+ "id": 266,
+ "order": 277,
+ "prevSize": 24,
+ "code": 59516,
+ "name": "face"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 266
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 256l364 256-364 256v-512zM170 768v-512l364 256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fast_forward"
+ ],
+ "defaultCode": 57375,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "fast_forward",
+ "id": 267,
+ "order": 278,
+ "prevSize": 24,
+ "code": 57375,
+ "name": "fast_forward"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 267
+ },
+ {
+ "icon": {
+ "paths": [
+ "M490 512l364-256v512zM470 768l-364-256 364-256v512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fast_rewind"
+ ],
+ "defaultCode": 57376,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "fast_rewind",
+ "id": 268,
+ "order": 279,
+ "prevSize": 24,
+ "code": 57376,
+ "name": "fast_rewind"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 268
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 910l-62-56c-220-200-364-330-364-492 0-132 102-234 234-234 74 0 146 36 192 90 46-54 118-90 192-90 132 0 234 102 234 234 0 162-144 294-364 494z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "favorite"
+ ],
+ "defaultCode": 59517,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "favorite",
+ "id": 269,
+ "order": 280,
+ "prevSize": 24,
+ "code": 59517,
+ "name": "favorite"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 269
+ },
+ {
+ "icon": {
+ "paths": [
+ "M516 792c204-184 338-306 338-430 0-86-64-148-150-148-66 0-130 42-152 100h-80c-22-58-86-100-152-100-86 0-150 62-150 148 0 124 134 246 338 430l4 4zM704 128c132 0 234 102 234 234 0 162-144 292-364 492l-62 56-62-54c-220-200-364-332-364-494 0-132 102-234 234-234 74 0 146 36 192 90 46-54 118-90 192-90z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "favorite_border"
+ ],
+ "defaultCode": 59518,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "favorite_border",
+ "id": 270,
+ "order": 281,
+ "prevSize": 24,
+ "code": 59518,
+ "name": "favorite_border"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 270
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 298v-84h-384v84h384zM512 470v-86h-384v86h384zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "featured_play_list"
+ ],
+ "defaultCode": 57453,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "featured_play_list",
+ "id": 271,
+ "order": 282,
+ "prevSize": 24,
+ "code": 57453,
+ "name": "featured_play_list"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 271
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 512v-298h-384v298h384zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "featured_video"
+ ],
+ "defaultCode": 57454,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "featured_video",
+ "id": 272,
+ "order": 283,
+ "prevSize": 24,
+ "code": 57454,
+ "name": "featured_video"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 272
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 426v-170h-84v170h84zM554 598v-86h-84v86h84zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sms_failed"
+ ],
+ "defaultCode": 58918,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "feedback, sms_failed",
+ "id": 273,
+ "order": 284,
+ "prevSize": 24,
+ "code": 58918,
+ "name": "sms_failed"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 273
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 490v-42c0-36-28-64-64-64h-150v256h64v-86h50l36 86h64l-38-90c22-10 38-34 38-60zM538 640l76-256h-64l-44 146-42-146h-64l74 256h64zM342 576v-128c0-36-28-64-64-64h-150v256h150c36 0 64-28 64-64zM896 128c48 0 86 38 86 86v596c0 46-38 86-86 86h-768c-48 0-86-40-86-86v-596c0-48 38-86 86-86h768zM192 448h86v128h-86v-128zM746 448h86v42h-86v-42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fiber_dvr"
+ ],
+ "defaultCode": 57437,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "fiber_dvr",
+ "id": 274,
+ "order": 285,
+ "prevSize": 24,
+ "code": 57437,
+ "name": "fiber_dvr"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 274
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 512c0-188 154-342 342-342s342 154 342 342-154 342-342 342-342-154-342-342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fiber_manual_record"
+ ],
+ "defaultCode": 57441,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "fiber_manual_record",
+ "id": 275,
+ "order": 286,
+ "prevSize": 24,
+ "code": 57441,
+ "name": "fiber_manual_record"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 275
+ },
+ {
+ "icon": {
+ "paths": [
+ "M874 598v-214h-52v192h-48v-150h-54v150h-48v-192h-54v214c0 24 20 42 44 42h170c24 0 42-18 42-42zM576 438v-54h-170v256h170v-54h-106v-46h106v-54h-106v-48h106zM362 640v-256h-52v150l-108-150h-52v256h52v-150l110 150h50zM854 170c48 0 84 38 84 86v512c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fiber_new"
+ ],
+ "defaultCode": 57438,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "fiber_new",
+ "id": 276,
+ "order": 287,
+ "prevSize": 24,
+ "code": 57438,
+ "name": "fiber_new"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 276
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 640v-256h-54v150l-106-150h-54v256h54v-150l108 150h52zM534 640v-256h-64v256h64zM384 490v-42c0-36-28-64-64-64h-150v256h64v-86h86c36 0 64-28 64-64zM854 170c48 0 84 38 84 86v512c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h684zM234 448h86v42h-86v-42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fiber_pin"
+ ],
+ "defaultCode": 57450,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "fiber_pin",
+ "id": 277,
+ "order": 288,
+ "prevSize": 24,
+ "code": 57450,
+ "name": "fiber_pin"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 277
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 182c148 38 256 170 256 330s-108 292-256 330v-88c100-34 170-130 170-242s-70-208-170-242v-88zM42 512c0-188 154-342 342-342s342 154 342 342-154 342-342 342-342-154-342-342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fiber_smart_record"
+ ],
+ "defaultCode": 57442,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "fiber_smart_record",
+ "id": 278,
+ "order": 289,
+ "prevSize": 24,
+ "code": 57442,
+ "name": "fiber_smart_record"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 278
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 768h596v86h-596v-86zM810 384l-298 298-298-298h170v-256h256v256h170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "get_app"
+ ],
+ "defaultCode": 59524,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "file_download, get_app",
+ "id": 279,
+ "order": 290,
+ "prevSize": 24,
+ "code": 59524,
+ "name": "get_app"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 279
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 768h596v86h-596v-86zM384 682v-256h-170l298-298 298 298h-170v256h-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "file_upload"
+ ],
+ "defaultCode": 58054,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "file_upload",
+ "id": 280,
+ "order": 291,
+ "prevSize": 24,
+ "code": 58054,
+ "name": "file_upload"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 280
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86zM680 440l152 200h-470l118-150 84 100z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter"
+ ],
+ "defaultCode": 58323,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter",
+ "id": 281,
+ "order": 292,
+ "prevSize": 24,
+ "code": 58323,
+ "name": "filter2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 281
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM598 640v-342h-86v-84h170v426h-84zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_1"
+ ],
+ "defaultCode": 58320,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_1",
+ "id": 282,
+ "order": 293,
+ "prevSize": 24,
+ "code": 58320,
+ "name": "filter_1"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 282
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 554v86h-256v-170c0-48 38-86 84-86h86v-86h-170v-84h170c46 0 86 36 86 84v86c0 48-40 86-86 86h-86v84h172zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_2"
+ ],
+ "defaultCode": 58321,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_2",
+ "id": 283,
+ "order": 294,
+ "prevSize": 24,
+ "code": 58321,
+ "name": "filter_2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 283
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 554c0 48-40 86-86 86h-170v-86h170v-84h-86v-86h86v-86h-170v-84h170c46 0 86 36 86 84v64c0 36-28 64-64 64 36 0 64 28 64 64v64zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_3"
+ ],
+ "defaultCode": 58322,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_3",
+ "id": 284,
+ "order": 295,
+ "prevSize": 24,
+ "code": 58322,
+ "name": "filter_3"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 284
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM640 640v-170h-170v-256h84v170h86v-170h86v426h-86zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_4"
+ ],
+ "defaultCode": 58324,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_4",
+ "id": 285,
+ "order": 296,
+ "prevSize": 24,
+ "code": 58324,
+ "name": "filter_4"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 285
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 554c0 48-40 86-86 86h-170v-86h170v-84h-170v-256h256v84h-172v86h86c46 0 86 38 86 86v84zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_5"
+ ],
+ "defaultCode": 58325,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_5",
+ "id": 286,
+ "order": 297,
+ "prevSize": 24,
+ "code": 58325,
+ "name": "filter_5"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 286
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 470v84h86v-84h-86zM554 640c-46 0-84-38-84-86v-256c0-48 38-84 84-84h172v84h-172v86h86c46 0 86 38 86 86v84c0 48-40 86-86 86h-86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_6"
+ ],
+ "defaultCode": 58326,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_6",
+ "id": 287,
+ "order": 298,
+ "prevSize": 24,
+ "code": 58326,
+ "name": "filter_6"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 287
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 640h-84l170-342h-170v-84h256v84zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_7"
+ ],
+ "defaultCode": 58327,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_7",
+ "id": 288,
+ "order": 299,
+ "prevSize": 24,
+ "code": 58327,
+ "name": "filter_7"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 288
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 470v84h86v-84h-86zM554 298v86h86v-86h-86zM554 640c-46 0-84-38-84-86v-64c0-36 28-64 64-64-36 0-64-28-64-64v-64c0-48 38-84 84-84h86c46 0 86 36 86 84v64c0 36-28 64-64 64 36 0 64 28 64 64v64c0 48-40 86-86 86h-86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_8"
+ ],
+ "defaultCode": 58328,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_8",
+ "id": 289,
+ "order": 300,
+ "prevSize": 24,
+ "code": 58328,
+ "name": "filter_8"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 289
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 384v-86h-86v86h86zM640 214c46 0 86 36 86 84v256c0 48-40 86-86 86h-170v-86h170v-84h-86c-46 0-84-38-84-86v-86c0-48 38-84 84-84h86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_9"
+ ],
+ "defaultCode": 58329,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_9",
+ "id": 290,
+ "order": 301,
+ "prevSize": 24,
+ "code": 58329,
+ "name": "filter_9"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 290
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 384v-256h-598v598h598v-256h-86v84h-84v-84h-86v-86h86v-86h84v86h86zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM470 384h42v-42h-42v42zM598 512c0 48-40 86-86 86h-128v-86h128v-42h-42c-46 0-86-38-86-86v-42c0-48 40-86 86-86h42c46 0 86 38 86 86v170zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_9_plus"
+ ],
+ "defaultCode": 58330,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_9_plus",
+ "id": 291,
+ "order": 302,
+ "prevSize": 24,
+ "code": 58330,
+ "name": "filter_9_plus"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 291
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 810v-596h-298v256zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM512 470l-298 340h298v-340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_b_and_w"
+ ],
+ "defaultCode": 58331,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_b_and_w",
+ "id": 292,
+ "order": 303,
+ "prevSize": 24,
+ "code": 58331,
+ "name": "filter_b_and_w"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 292
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 384c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM810 810v-170h86v170c0 46-40 86-86 86h-170v-86h170zM810 128c46 0 86 40 86 86v170h-86v-170h-170v-86h170zM214 214v170h-86v-170c0-46 40-86 86-86h170v86h-170zM214 640v170h170v86h-170c-46 0-86-40-86-86v-170h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_center_focus"
+ ],
+ "defaultCode": 58332,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_center_focus",
+ "id": 293,
+ "order": 304,
+ "prevSize": 24,
+ "code": 58332,
+ "name": "filter_center_focus"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 293
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 768c70 0 128-58 128-128s-58-128-128-128h-64v-22c0-130-104-234-234-234-76 0-144 36-188 94 108 30 188 130 188 248h-86c0-94-76-172-170-172s-170 78-170 172 76 170 170 170h554zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_drama"
+ ],
+ "defaultCode": 58333,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_drama",
+ "id": 294,
+ "order": 305,
+ "prevSize": 24,
+ "code": 58333,
+ "name": "filter_drama"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 294
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 342h-512v426h512zM854 854v-598h-192l-148-150-150 150h-194v598h684zM854 170c46 0 84 40 84 86v598c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-598c0-46 38-86 84-86h172l170-170 170 170h172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_frames"
+ ],
+ "defaultCode": 58334,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_frames",
+ "id": 295,
+ "order": 306,
+ "prevSize": 24,
+ "code": 58334,
+ "name": "filter_frames"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 295
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 256l384 512h-940l256-342 192 256 68-50-120-162z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "terrain"
+ ],
+ "defaultCode": 58724,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_hdr, landscape, terrain",
+ "id": 296,
+ "order": 307,
+ "prevSize": 24,
+ "code": 58724,
+ "name": "terrain"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 296
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 554v-84h512v84h-512zM128 256h768v86h-768v-86zM426 768v-86h172v86h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_list"
+ ],
+ "defaultCode": 57682,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_list",
+ "id": 297,
+ "order": 308,
+ "prevSize": 24,
+ "code": 57682,
+ "name": "filter_list"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 297
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_none"
+ ],
+ "defaultCode": 58336,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_none",
+ "id": 298,
+ "order": 309,
+ "prevSize": 24,
+ "code": 58336,
+ "name": "filter_none"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 298
+ },
+ {
+ "icon": {
+ "paths": [
+ "M242 842l60-60c48 36 106 60 168 68v86c-86-8-164-42-228-94zM554 850c62-8 120-32 166-68l62 60c-64 52-142 86-228 94v-86zM782 722c36-48 60-104 68-166h86c-8 86-42 162-94 226zM640 512c0 70-58 128-128 128s-128-58-128-128 58-128 128-128 128 58 128 128zM174 554c8 62 32 120 68 166l-60 62c-52-64-86-142-94-228h86zM242 302c-36 48-60 106-68 168h-86c8-86 42-164 94-228zM850 470c-8-62-32-120-68-168l60-60c52 64 86 142 94 228h-86zM782 182l-60 60c-48-36-106-60-168-68v-86c86 8 164 42 228 94zM470 174c-62 8-120 32-168 68l-60-60c64-52 142-86 228-94v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_tilt_shift"
+ ],
+ "defaultCode": 58338,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_tilt_shift",
+ "id": 299,
+ "order": 310,
+ "prevSize": 24,
+ "code": 58338,
+ "name": "filter_tilt_shift"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 299
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 682c94 0 170-76 170-170s-76-170-170-170-170 76-170 170 76 170 170 170zM98 750c0-98.433 62.724-204.242 164-238-12-4-24-12-36-18-82-48-128-132-128-220 76-44 174-48 256 0 12 6 24 14 34 22-2-14-4-26-4-40 0-94 52-178 128-222 76 44 128 128 128 222 0 14-2 26-4 40 10-8 22-16 34-22 82-48 180-44 256 0 0 88-46 172-128 220-12 6-24 14-36 18 12 4 24 12 36 18 82 48 128 132 128 220-76 44-174 48-256 0-12-6-24-14-34-22 2 14 4 26 4 40 0 94-52 178-128 222-76-44-128-128-128-222 0-14 2-26 4-40-10 8-22 16-34 22-82 48-180 44-256 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "filter_vintage"
+ ],
+ "defaultCode": 58339,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "filter_vintage",
+ "id": 300,
+ "order": 311,
+ "prevSize": 24,
+ "code": 58339,
+ "name": "filter_vintage"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 300
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 554c0-70 58-128 128-128s128 58 128 128-58 128-128 128-128-58-128-128zM854 836l-164-164c22-34 36-74 36-118 0-118-96-212-214-212s-214 94-214 212 96 214 214 214c44 0 84-14 118-36l188 190c-14 10-30 16-50 16h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84h342l256 256v494z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "find_in_page"
+ ],
+ "defaultCode": 59520,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "find_in_page",
+ "id": 301,
+ "order": 312,
+ "prevSize": 24,
+ "code": 59520,
+ "name": "find_in_page"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 301
+ },
+ {
+ "icon": {
+ "paths": [
+ "M710 646l206 208-62 62-208-206c-50 36-110 58-176 58-82 0-158-34-212-88l-88 88v-256h256l-108 108c38 38 94 62 152 62 104 0 188-72 208-170h86c-6 50-26 96-54 134zM470 256c-104 0-190 72-210 170h-86c20-144 146-256 296-256 82 0 156 34 210 88l88-88v256h-256l108-108c-38-38-92-62-150-62z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "find_replace"
+ ],
+ "defaultCode": 59521,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "find_replace",
+ "id": 302,
+ "order": 313,
+ "prevSize": 24,
+ "code": 59521,
+ "name": "find_replace"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 302
+ },
+ {
+ "icon": {
+ "paths": [
+ "M636 938h-6c-68-18-112-44-158-90-60-60-92-138-92-222 0-70 58-126 130-126s132 56 132 126c0 46 38 82 88 82s90-36 90-82c0-160-140-292-310-292-122 0-232 68-282 172-16 34-24 76-24 120 0 34 2 86 28 154 9.157 27.471-30.939 36.654-40 14-20-56-32-110-32-168 0-52 10-98 30-138 56-120 182-198 320-198 194 0 352 152 352 336 0 70-60 124-132 124s-130-54-130-124c0-46-40-84-90-84s-88 38-88 84c0 72 28 140 80 192 40 40 80 62 140 78 12 2 16 14 14 26-2 10-12 16-20 16zM530 626c0 97.515 80.578 182 192 182 19.928 0 65.546-14.722 70 12 2 12-6 24-18 26-24 4-46 4-52 4-50 0-96-12-132-38-64-44-102-112-102-186 0-12 10-22 22-22s20 10 20 22zM416 930c-6 0-10-2-14-6-38-38-58-62-86-114-30-52-46-116-46-184 0-126 108-230 242-230s242 104 242 230c0 12-10 20-22 20s-22-8-22-20c0-104-88-188-198-188s-198 84-198 188c0 62 12 118 38 164 28 50 48 70 80 104 8 8 8 22 0 30-4 4-10 6-16 6zM150 414c-17.624 0-27.785-15.691-18-32 42-60 96-108 160-140 134-70 306-70 440 0 64 32 118 78 160 138 6 10 4 24-6 30s-24 4-30-6c-38-54-86-94-144-124-122-62-278-64-400 0-58 30-108 72-146 126-4 6-10 8-16 8zM760 190c-4 0-8 0-10-2-82-42-154-60-238-60s-166 20-238 60c-23.381 14.029-43.278-24.033-20-38 80-44 166-64 258-64 90 0 170 20 258 64 18.211 10.927 10.406 40-10 40z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fingerprint"
+ ],
+ "defaultCode": 59661,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "fingerprint",
+ "id": 303,
+ "order": 314,
+ "prevSize": 24,
+ "code": 59661,
+ "name": "fingerprint"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 303
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 256h86v512h-86v-512zM786 708l-60 60-256-256 256-256 60 60-196 196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "first_page"
+ ],
+ "defaultCode": 58844,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "first_page",
+ "id": 304,
+ "order": 315,
+ "prevSize": 24,
+ "code": 58844,
+ "name": "first_page"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 304
+ },
+ {
+ "icon": {
+ "paths": [
+ "M878 634l60 62-90 90 60 62-60 60-62-60-90 90-62-60-60 60-62-60 152-152-366-366-152 152-60-62 60-60-60-62 90-90-60-62 60-60 62 60 90-90 62 60 60-60 62 60-152 152 366 366 152-152 60 62z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fitness_center"
+ ],
+ "defaultCode": 60227,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "fitness_center",
+ "id": 305,
+ "order": 316,
+ "prevSize": 24,
+ "code": 60227,
+ "name": "fitness_center"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 305
+ },
+ {
+ "icon": {
+ "paths": [
+ "M470 982v-256h84v256h-84zM240 724l92-92 60 60-92 92zM632 692l60-60 92 92-60 60zM512 384c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM726 470h256v84h-256v-84zM784 300l-92 92-60-60 92-92zM554 42v256h-84v-256h84zM392 332l-60 60-92-92 60-60zM298 470v84h-256v-84h256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flare"
+ ],
+ "defaultCode": 58340,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "flare",
+ "id": 306,
+ "order": 317,
+ "prevSize": 24,
+ "code": 58340,
+ "name": "flare"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 306
+ },
+ {
+ "icon": {
+ "paths": [
+ "M718 326h100l-50-156zM810 86l138 384h-82l-30-86h-136l-30 86h-82l138-384h84zM128 86h426l-170 384h170l-298 512v-384h-128v-512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flash_auto"
+ ],
+ "defaultCode": 58341,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "flash_auto",
+ "id": 307,
+ "order": 318,
+ "prevSize": 24,
+ "code": 58341,
+ "name": "flash_auto"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 307
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 426l-66 114-362-362v-92h428l-172 340h172zM140 128l670 672-54 54-176-178-154 262v-384h-128v-158l-212-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flash_off"
+ ],
+ "defaultCode": 58342,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "flash_off",
+ "id": 308,
+ "order": 319,
+ "prevSize": 24,
+ "code": 58342,
+ "name": "flash_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 308
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 86h428l-172 340h172l-300 512v-384h-128v-468z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flash_on"
+ ],
+ "defaultCode": 58343,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "flash_on",
+ "id": 309,
+ "order": 320,
+ "prevSize": 24,
+ "code": 58343,
+ "name": "flash_on"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 309
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 616c-136.472-37.528-274.090-73.91-412-110l-68-20v-220l62 16 40 100 212 56v-352l82 22 118 384 226 60c34 10 54 46 46 80-10 34-44 52-78 44zM106 810h812v86h-812v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flight_land"
+ ],
+ "defaultCode": 59652,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "flight_land",
+ "id": 310,
+ "order": 321,
+ "prevSize": 24,
+ "code": 59652,
+ "name": "flight_land"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 310
+ },
+ {
+ "icon": {
+ "paths": [
+ "M942 412c8 34-12 68-46 78-137.558 36.442-275.002 72.998-412 110l-226 60-68 20c-37.52-63.813-74.693-127.974-112-192l62-16 84 64 212-56-176-306 82-22 294 274 228-60c34-10 70 12 78 46zM106 810h812v86h-812v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flight_takeoff"
+ ],
+ "defaultCode": 59653,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "flight_takeoff",
+ "id": 311,
+ "order": 322,
+ "prevSize": 24,
+ "code": 59653,
+ "name": "flight_takeoff"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 311
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 896v-86h86c0 46-40 86-86 86zM810 554v-84h86v84h-86zM640 214v-86h86v86h-86zM810 726v-86h86v86h-86zM470 982v-940h84v940h-84zM810 128c46 0 86 40 86 86h-86v-86zM128 214c0-46 40-86 86-86h170v86h-170v596h170v86h-170c-46 0-86-40-86-86v-596zM810 384v-86h86v86h-86zM640 896v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flip"
+ ],
+ "defaultCode": 58344,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "flip",
+ "id": 312,
+ "order": 323,
+ "prevSize": 24,
+ "code": 58344,
+ "name": "flip"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 312
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 726v-86h86v86h-86zM640 214v-86h86v86h-86zM214 298v512h512v86h-512c-48 0-86-40-86-86v-512h86zM810 726v-86h86c0 46-40 86-86 86zM810 384v-86h86v86h-86zM810 554v-84h86v84h-86zM384 726c-48 0-86-40-86-86h86v86zM554 128v86h-84v-86h84zM810 128c46 0 86 40 86 86h-86v-86zM554 640v86h-84v-86h84zM384 128v86h-86c0-46 38-86 86-86zM384 470v84h-86v-84h86zM384 298v86h-86v-86h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flip_to_back"
+ ],
+ "defaultCode": 59522,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "flip_to_back",
+ "id": 313,
+ "order": 324,
+ "prevSize": 24,
+ "code": 59522,
+ "name": "flip_to_back"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 313
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 896v-86h86v86h-86zM470 896v-86h84v86h-84zM810 640v-426h-426v426h426zM810 128c46 0 86 40 86 86v426c0 46-40 86-86 86h-426c-48 0-86-40-86-86v-426c0-46 38-86 86-86h426zM640 896v-86h86v86h-86zM128 384v-86h86v86h-86zM214 896c-48 0-86-40-86-86h86v86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "flip_to_front"
+ ],
+ "defaultCode": 59523,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "flip_to_front",
+ "id": 314,
+ "order": 325,
+ "prevSize": 24,
+ "code": 59523,
+ "name": "flip_to_front"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 314
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 170l86 86h342c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder"
+ ],
+ "defaultCode": 58055,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "folder",
+ "id": 315,
+ "order": 326,
+ "prevSize": 24,
+ "code": 58055,
+ "name": "folder2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 315
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 768v-426h-684v426h684zM854 256c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h256l86 86h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder_open"
+ ],
+ "defaultCode": 58056,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "folder_open",
+ "id": 316,
+ "order": 327,
+ "prevSize": 24,
+ "code": 58056,
+ "name": "folder_open"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 316
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 726v-44c0-56-114-84-170-84s-170 28-170 84v44h340zM640 384c-46 0-86 40-86 86s40 84 86 84 86-38 86-84-40-86-86-86zM854 256c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h256l86 86h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder_shared"
+ ],
+ "defaultCode": 58057,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "folder_shared",
+ "id": 317,
+ "order": 328,
+ "prevSize": 24,
+ "code": 58057,
+ "name": "folder_shared"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 317
+ },
+ {
+ "icon": {
+ "paths": [
+ "M766 726l-34-142 110-96-144-12-58-134-58 134-144 12 110 96-34 142 126-74zM854 256c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h256l86 86h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "folder_special"
+ ],
+ "defaultCode": 58903,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "folder_special",
+ "id": 318,
+ "order": 329,
+ "prevSize": 24,
+ "code": 58903,
+ "name": "folder_special"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 318
+ },
+ {
+ "icon": {
+ "paths": [
+ "M680 790h90l-218-556h-80l-218 556h90l48-128h240zM854 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-684c0-46 38-84 84-84h684zM424 576l88-236 88 236h-176z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "font_download"
+ ],
+ "defaultCode": 57703,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "font_download",
+ "id": 319,
+ "order": 330,
+ "prevSize": 24,
+ "code": 57703,
+ "name": "font_download"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 319
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768v86h-768v-86zM298 298h428v86h-428v-86zM128 554v-84h768v84h-768zM128 896v-86h768v86h-768zM298 640h428v86h-428v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_align_center"
+ ],
+ "defaultCode": 57908,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_align_center",
+ "id": 320,
+ "order": 331,
+ "prevSize": 24,
+ "code": 57908,
+ "name": "format_align_center"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 320
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768v86h-768v-86zM128 384v-86h768v86h-768zM128 554v-84h768v84h-768zM128 726v-86h768v86h-768zM128 896v-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_align_justify"
+ ],
+ "defaultCode": 57909,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_align_justify",
+ "id": 321,
+ "order": 332,
+ "prevSize": 24,
+ "code": 57909,
+ "name": "format_align_justify"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 321
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768v86h-768v-86zM128 896v-86h768v86h-768zM128 554v-84h768v84h-768zM640 298v86h-512v-86h512zM640 640v86h-512v-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_align_left"
+ ],
+ "defaultCode": 57910,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_align_left",
+ "id": 322,
+ "order": 333,
+ "prevSize": 24,
+ "code": 57910,
+ "name": "format_align_left"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 322
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 128h768v86h-768v-86zM384 384v-86h512v86h-512zM128 554v-84h768v84h-768zM384 726v-86h512v86h-512zM128 896v-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_align_right"
+ ],
+ "defaultCode": 57911,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_align_right",
+ "id": 323,
+ "order": 334,
+ "prevSize": 24,
+ "code": 57911,
+ "name": "format_align_right"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 323
+ },
+ {
+ "icon": {
+ "paths": [
+ "M576 662c36 0 64-28 64-64s-28-64-64-64h-150v128h150zM426 278v128h128c36 0 64-28 64-64s-28-64-64-64h-128zM666 460c56 26 92 82 92 146 0 90-68 162-158 162h-302v-598h268c96 0 170 76 170 172 0 44-28 90-70 118z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_bold"
+ ],
+ "defaultCode": 57912,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_bold",
+ "id": 324,
+ "order": 335,
+ "prevSize": 24,
+ "code": 57912,
+ "name": "format_bold"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 324
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 214h598v128h-248l-68 160-90-88 30-72h-102l-120-120v-8zM140 214l12 10 616 618-54 54-242-242-66 156h-128l104-246-296-296z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_clear"
+ ],
+ "defaultCode": 57913,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_clear",
+ "id": 325,
+ "order": 336,
+ "prevSize": 24,
+ "code": 57913,
+ "name": "format_clear"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 325
+ },
+ {
+ "icon": {
+ "paths": [
+ "M0 854h1024v170h-1024v-170zM810 490c0 0 86 94 86 150 0 46-40 86-86 86s-84-40-84-86c0-56 84-150 84-150zM222 426h410l-206-204zM706 382c26 26 26 66 0 90l-234 234c-12 12-30 20-46 20s-32-8-44-20l-236-234c-26-24-26-64 0-90l220-220-102-102 62-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_color_fill"
+ ],
+ "defaultCode": 57914,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_color_fill",
+ "id": 326,
+ "order": 337,
+ "prevSize": 24,
+ "code": 57914,
+ "name": "format_color_fill"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 326
+ },
+ {
+ "icon": {
+ "paths": [
+ "M224 224l624 624-54 54-114-112c-46 40-104 64-168 64-142 0-256-114-256-256 0-52 24-114 56-176l-142-142zM768 598c0 20-2 38-6 56l-366-368c60-86 116-150 116-150s256 292 256 462z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_color_reset"
+ ],
+ "defaultCode": 57915,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_color_reset",
+ "id": 327,
+ "order": 338,
+ "prevSize": 24,
+ "code": 57915,
+ "name": "format_color_reset"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 327
+ },
+ {
+ "icon": {
+ "paths": [
+ "M410 512h204l-102-270zM470 128h84l234 598h-96l-46-128h-268l-48 128h-96zM0 854h1024v170h-1024v-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_color_text"
+ ],
+ "defaultCode": 57916,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_color_text",
+ "id": 328,
+ "order": 339,
+ "prevSize": 24,
+ "code": 57916,
+ "name": "format_color_text"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 328
+ },
+ {
+ "icon": {
+ "paths": [
+ "M470 554v-84h426v84h-426zM470 384v-86h426v86h-426zM128 128h768v86h-768v-86zM128 896v-86h768v86h-768zM128 512l170-170v340zM470 726v-86h426v86h-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_indent_decrease"
+ ],
+ "defaultCode": 57917,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_indent_decrease",
+ "id": 329,
+ "order": 340,
+ "prevSize": 24,
+ "code": 57917,
+ "name": "format_indent_decrease"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 329
+ },
+ {
+ "icon": {
+ "paths": [
+ "M470 554v-84h426v84h-426zM470 384v-86h426v86h-426zM128 128h768v86h-768v-86zM470 726v-86h426v86h-426zM128 342l170 170-170 170v-340zM128 896v-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_indent_increase"
+ ],
+ "defaultCode": 57918,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_indent_increase",
+ "id": 330,
+ "order": 341,
+ "prevSize": 24,
+ "code": 57918,
+ "name": "format_indent_increase"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 330
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 170h342v128h-120l-144 342h94v128h-342v-128h120l144-342h-94v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_italic"
+ ],
+ "defaultCode": 57919,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_italic",
+ "id": 331,
+ "order": 342,
+ "prevSize": 24,
+ "code": 57919,
+ "name": "format_italic"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 331
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 554v-84h512v84h-512zM426 810v-84h512v84h-512zM426 214h512v84h-512v-84zM256 298v428h106l-148 148-150-148h106v-428h-106l150-148 148 148h-106z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_line_spacing"
+ ],
+ "defaultCode": 57920,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_line_spacing",
+ "id": 332,
+ "order": 343,
+ "prevSize": 24,
+ "code": 57920,
+ "name": "format_line_spacing"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 332
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 214h598v84h-598v-84zM298 554v-84h598v84h-598zM298 810v-84h598v84h-598zM170 704c36 0 64 30 64 64s-30 64-64 64-64-30-64-64 28-64 64-64zM170 192c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM170 448c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_list_bulleted"
+ ],
+ "defaultCode": 57921,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_list_bulleted",
+ "id": 333,
+ "order": 344,
+ "prevSize": 24,
+ "code": 57921,
+ "name": "format_list_bulleted"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 333
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 554v-84h598v84h-598zM298 810v-84h598v84h-598zM298 214h598v84h-598v-84zM86 470v-44h128v40l-78 88h78v44h-128v-40l76-88h-76zM128 342v-128h-42v-44h84v172h-42zM86 726v-44h128v172h-128v-44h84v-20h-42v-44h42v-20h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_list_numbered"
+ ],
+ "defaultCode": 57922,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_list_numbered",
+ "id": 334,
+ "order": 345,
+ "prevSize": 24,
+ "code": 57922,
+ "name": "format_list_numbered"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 334
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 170h128v342h-342v384c0 24-18 42-42 42h-86c-24 0-42-18-42-42v-470h426v-170h-42v42c0 24-18 44-42 44h-512c-24 0-44-20-44-44v-170c0-24 20-42 44-42h512c24 0 42 18 42 42v42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_paint"
+ ],
+ "defaultCode": 57923,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_paint",
+ "id": 335,
+ "order": 346,
+ "prevSize": 24,
+ "code": 57923,
+ "name": "format_paint"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 335
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 726l84-172h-128v-256h256v256l-84 172h-128zM256 726l86-172h-128v-256h256v256l-86 172h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_quote"
+ ],
+ "defaultCode": 57924,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_quote",
+ "id": 336,
+ "order": 347,
+ "prevSize": 24,
+ "code": 57924,
+ "name": "format_quote"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 336
+ },
+ {
+ "icon": {
+ "paths": [
+ "M456 544h112l-56-164zM586 598h-150l-30 84h-70l146-384h60l144 384h-68zM810 214h86v-86h-86v86zM896 896v-86h-86v86h86zM726 810v-84h84v-428h-84v-84h-428v84h-84v428h84v84h428zM214 896v-86h-86v86h86zM128 128v86h86v-86h-86zM982 298h-86v428h86v256h-256v-86h-428v86h-256v-256h86v-428h-86v-256h256v86h428v-86h256v256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_shapes"
+ ],
+ "defaultCode": 57950,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_shapes",
+ "id": 337,
+ "order": 348,
+ "prevSize": 24,
+ "code": 57950,
+ "name": "format_shapes"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 337
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 512v-128h384v128h-128v298h-128v-298h-128zM384 170h554v128h-212v512h-128v-512h-214v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_size"
+ ],
+ "defaultCode": 57925,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_size",
+ "id": 338,
+ "order": 349,
+ "prevSize": 24,
+ "code": 57925,
+ "name": "format_size"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 338
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 598v-86h768v86h-768zM214 170h596v128h-212v128h-172v-128h-212v-128zM426 810v-128h172v128h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_strikethrough"
+ ],
+ "defaultCode": 57926,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_strikethrough",
+ "id": 339,
+ "order": 350,
+ "prevSize": 24,
+ "code": 57926,
+ "name": "format_strikethrough"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 339
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 768l-170 170v-128h-512v-84h512v-128zM384 426c-94 0-170-76-170-170s76-170 170-170h342v84h-86v470h-86v-470h-84v470h-86v-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_textdirection_l_to_r"
+ ],
+ "defaultCode": 57927,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_textdirection_l_to_r",
+ "id": 340,
+ "order": 351,
+ "prevSize": 24,
+ "code": 57927,
+ "name": "format_textdirection_l_to_r"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 340
+ },
+ {
+ "icon": {
+ "paths": [
+ "M342 726h512v84h-512v128l-172-170 172-170v128zM426 426c-94 0-170-76-170-170s76-170 170-170h342v84h-86v470h-84v-470h-86v470h-86v-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_textdirection_r_to_l"
+ ],
+ "defaultCode": 57928,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_textdirection_r_to_l",
+ "id": 341,
+ "order": 352,
+ "prevSize": 24,
+ "code": 57928,
+ "name": "format_textdirection_r_to_l"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 341
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 810h596v86h-596v-86zM512 726c-142 0-256-114-256-256v-342h106v342c0 82 68 148 150 148s150-66 150-148v-342h106v342c0 142-114 256-256 256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "format_underlined"
+ ],
+ "defaultCode": 57929,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "format_underlined",
+ "id": 342,
+ "order": 353,
+ "prevSize": 24,
+ "code": 57929,
+ "name": "format_underlined"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 342
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 512c0 24-20 42-44 42h-426l-170 172v-598c0-24 18-42 42-42h554c24 0 44 18 44 42v384zM896 256c24 0 42 18 42 42v640l-170-170h-470c-24 0-42-18-42-42v-86h554v-384h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "question_answer"
+ ],
+ "defaultCode": 59567,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "forum, question_answer",
+ "id": 343,
+ "order": 354,
+ "prevSize": 24,
+ "code": 59567,
+ "name": "question_answer"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 343
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 342v-172l342 342-342 342v-172h-342v-340h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "forward"
+ ],
+ "defaultCode": 57684,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "forward",
+ "id": 344,
+ "order": 355,
+ "prevSize": 24,
+ "code": 57684,
+ "name": "forward2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 344
+ },
+ {
+ "icon": {
+ "paths": [
+ "M564 648c0 6.531 12.65 14 20 14 4 0 10 0 14-4l8-10s4-8 4-12v-86c0 0-4-8-4-12 0-5.505-16.424-14-22-14-4 0-8 2-12 6l-8 8s-6 8-6 12v86s6 8 6 12zM644 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4-18 0-26-4-12-8-20-12c-13.488-6.744-18-39.492-18-60v-30c0-12 0-26 4-34l14-26s12-12 20-12 18-4 26-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM466 682h-40v-140l-42 12v-30l76-24h6v182zM170 554c0-188 154-340 342-340v-172l214 214-214 214v-172c-140 0-256 116-256 256s116 256 256 256 256-116 256-256h86c0 188-154 342-342 342s-342-154-342-342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "forward_10"
+ ],
+ "defaultCode": 57430,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "forward_10",
+ "id": 345,
+ "order": 356,
+ "prevSize": 24,
+ "code": 57430,
+ "name": "forward_10"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 345
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 554c0-188 154-340 342-340v-172l214 214-214 214v-172c-140 0-256 116-256 256s116 256 256 256 256-116 256-256h86c0 188-154 342-342 342s-342-154-342-342zM568 648c0 6.531 12.65 14 20 14 4 0 10 0 14-4l8-10s4-8 4-12v-86c0 0-4-8-4-12 0-5.505-16.424-14-22-14-4 0-8 2-12 6l-8 8s-4 8-4 12v86s4 8 4 12zM652 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4c-20.252 0-32.299-9.149-46-16-8-4-8-14-12-26s-6-22-6-34v-30c0-12 2-26 6-34l12-26s14-12 22-12 16-4 24-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM426 576c16.239 0 30-9.918 30-26v-8s-4-4-4-8-4-4-8-4h-22s-4 4-8 4-4 4-4 8v8h-44c0-19.788 17.639-46 36-46 4 0 16-4 20-4 17.345 0 35.264 5.632 48 12 10.13 5.065 16 24.218 16 38v14s-4 8-4 12-4 8-8 8-10 6-14 10c8 4 18 8 22 16s8 18 8 26 0 18-4 22-8 12-12 16-14 8-22 8-18 4-26 4-16 0-20-4-14-4-22-8c-11.162-5.581-18-27.017-18-42h36v8s4 4 4 8 4 4 8 4h22s4-4 8-4 4-4 4-8v-22s-4-4-4-8-4-4-8-4h-26v-30h16z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "forward_30"
+ ],
+ "defaultCode": 57431,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "forward_30",
+ "id": 346,
+ "order": 357,
+ "prevSize": 24,
+ "code": 57431,
+ "name": "forward_30"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 346
+ },
+ {
+ "icon": {
+ "paths": [
+ "M500 580c-3.584 1.434-14 4.805-14 8 0 4-4 6-4 6h-26l10-94h102v30h-74l-4 38s4 0 4-4 6-2 6-6 4 0 8 0h8c8 0 18 2 22 6s12 8 16 12c8.873 8.873 18 27.257 18 46 0 8 0 18-4 22s-6 14-14 22c-11.246 11.246-26.59 16-46 16-8 0-18 0-22-4s-12-4-20-8c-11.191-5.596-18-22.554-18-38h34c0 14.809 10.59 20 26 20 4 0 8 0 12-4l10-8s4-8 4-12v-26l-4-8-10-10s-8-4-12-4h-8zM170 554c0-188 154-340 342-340v-172l214 214-214 214v-172c-140 0-256 116-256 256s116 256 256 256 256-116 256-256h86c0 188-154 342-342 342s-342-154-342-342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "forward_5"
+ ],
+ "defaultCode": 57432,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "forward_5",
+ "id": 347,
+ "order": 358,
+ "prevSize": 24,
+ "code": 57432,
+ "name": "forward_5"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 347
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 810h684v86h-684v-86zM854 342v-128h-86v128h86zM854 128c48 0 84 38 84 86v128c0 46-36 84-84 84h-86v128c0 94-76 172-170 172h-256c-94 0-172-78-172-172v-426h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "free_breakfast"
+ ],
+ "defaultCode": 60228,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "free_breakfast",
+ "id": 348,
+ "order": 359,
+ "prevSize": 24,
+ "code": 60228,
+ "name": "free_breakfast"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 348
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 214h212v212h-84v-128h-128v-84zM726 726v-128h84v212h-212v-84h128zM214 426v-212h212v84h-128v128h-84zM298 598v128h128v84h-212v-212h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fullscreen"
+ ],
+ "defaultCode": 58832,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "fullscreen",
+ "id": 349,
+ "order": 360,
+ "prevSize": 24,
+ "code": 58832,
+ "name": "fullscreen"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 349
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 342h128v84h-212v-212h84v128zM598 810v-212h212v84h-128v128h-84zM342 342v-128h84v212h-212v-84h128zM214 682v-84h212v212h-84v-128h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "fullscreen_exit"
+ ],
+ "defaultCode": 58833,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "fullscreen_exit",
+ "id": 350,
+ "order": 361,
+ "prevSize": 24,
+ "code": 58833,
+ "name": "fullscreen_exit"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 350
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 170v128h-298l212 214-212 214h298v128h-512v-86l278-256-278-256v-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "functions"
+ ],
+ "defaultCode": 57930,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "functions",
+ "id": 351,
+ "order": 362,
+ "prevSize": 24,
+ "code": 57930,
+ "name": "functions"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 351
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 854v-556c0-24-18-42-42-42h-376l50 172h82v-44h46v44h154v44h-54c-14 54-44 106-82 150l116 114-30 32-116-114-38 38 34 118-86 86h300c24 0 42-18 42-42zM596 518c10 20 26 46 48 72 52-62 66-118 66-118h-170l14 46h42zM564 550l26 94 24-22c-20-22-36-46-50-72zM474 452c0-9.841-0.281-22.561-4-30h-168v66h94c-6 26-32 64-90 64-56 0-102-48-102-104s46-104 102-104c32 0 52 14 64 26l4 2 52-50-4-2c-32-30-72-46-116-46-96 0-174 78-174 174s78 174 174 174c98 0 168-70 168-170zM854 214c46 0 84 38 84 84v556c0 46-38 84-84 84h-342l-42-128h-300c-46 0-84-38-84-84v-556c0-46 38-84 84-84h256l38 128h390z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "g_translate"
+ ],
+ "defaultCode": 59687,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "g_translate",
+ "id": 352,
+ "order": 363,
+ "prevSize": 24,
+ "code": 59687,
+ "name": "g_translate"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 352
+ },
+ {
+ "icon": {
+ "paths": [
+ "M704 384h234v256h-234l-128-128zM384 704l128-128 128 128v234h-256v-234zM320 384l128 128-128 128h-234v-256h234zM640 320l-128 128-128-128v-234h256v234z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "games"
+ ],
+ "defaultCode": 57377,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "gamepad, games",
+ "id": 353,
+ "order": 364,
+ "prevSize": 24,
+ "code": 57377,
+ "name": "games"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 353
+ },
+ {
+ "icon": {
+ "paths": [
+ "M164 404l240 242-120 120-242-240zM526 42l240 242-120 120-242-240zM224 344l120-120 604 604-120 120zM42 896h512v86h-512v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gavel"
+ ],
+ "defaultCode": 59662,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "gavel",
+ "id": 354,
+ "order": 365,
+ "prevSize": 24,
+ "code": 59662,
+ "name": "gavel2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 354
+ },
+ {
+ "icon": {
+ "paths": [
+ "M592 792c30 0 80-36 92-150-92 24-124 92-124 118 0 20 18 32 32 32zM196 294l-74-72c10-12 20-24 36-40 10-10 60-54 116-54 38 0 108 30 108 122 0 58-22 92-56 140-20 28-64 104-78 150-16 46-6 82 14 82 18 0 38-24 48-36 10-10 74-84 98-116 32-40 114-120 210-120 126 0 166 108 172 178h106v106h-104c-18 204-132 262-202 262-76 0-136-60-136-132s68-202 230-230c-4-34-6-76-76-76-54 0-122 82-174 146-48 58-84 104-130 118-99.552 31.437-170-56.487-170-146 0-104 112-252 122-270 12-20 34-56 12-64-14-6-42 22-72 52z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gesture"
+ ],
+ "defaultCode": 57685,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "gesture",
+ "id": 355,
+ "order": 366,
+ "prevSize": 24,
+ "code": 57685,
+ "name": "gesture"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 355
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 448h-128v42h86v64h-86v86h-64v-256h192v64zM384 384c26 0 42 20 42 42v22h-148v128h84v-64h64v86c0 22-16 42-42 42h-128c-26 0-42-20-42-42v-172c0-22 16-42 42-42h128zM490 384h64v256h-64v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gif"
+ ],
+ "defaultCode": 59656,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "gif",
+ "id": 356,
+ "order": 367,
+ "prevSize": 24,
+ "code": 59656,
+ "name": "gif"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 356
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1022 388c2 2 2 8 0 10l-50 64c-2 2-6 4-8 4l-30-6-14 44c-6 10-20 10-26 0l-28-60-46-10-94 224 34 272c0 6-4 8-8 8h-40c-4 0-6-2-8-6l-40-162-20-34-50 196c0 4-4 6-8 6h-42c-4 0-8-4-8-8l46-270h-270l-70 132 16 136c2 6-2 10-8 10h-40c-2 0-6 0-8-4l-56-204-68 78 12 120c2 6-2 10-8 10h-44c-4 0-8-2-8-4l-26-112 42-164v-288s-46-18-46-60h548c0 0 96 2 190-66 0 0-16-44 12-72 0 0 56 40 72 50 20 12 34-10 28-28-4-12-18-56-90-84-9.158-3.053-30.421-4.736-26-18 0-4 4-6 8-6 88 12 140 84 154 116 2 4 40 30 36 76 0 6 0 10 4 14z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "goat"
+ ],
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "goat",
+ "id": 357,
+ "order": 368,
+ "prevSize": 24,
+ "code": 59648,
+ "name": "goat"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 357
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 252l-256 132v386c122 6 212 42 212 84 0 46-114 84-256 84s-256-38-256-84c0-32 52-60 128-74v74h86v-768zM768 832c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "golf_course"
+ ],
+ "defaultCode": 60229,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "golf_course",
+ "id": 358,
+ "order": 369,
+ "prevSize": 24,
+ "code": 60229,
+ "name": "golf_course"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 358
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 810c166 0 298-132 298-298s-132-298-298-298-298 132-298 298 132 298 298 298zM894 470h88v84h-88c-20 178-162 320-340 340v88h-84v-88c-178-20-320-162-340-340h-88v-84h88c20-178 162-320 340-340v-88h84v88c178 20 320 162 340 340zM512 342c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "my_location"
+ ],
+ "defaultCode": 58716,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "gps_fixed, my_location",
+ "id": 359,
+ "order": 370,
+ "prevSize": 24,
+ "code": 58716,
+ "name": "my_location"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 359
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 810c166 0 298-132 298-298s-132-298-298-298-298 132-298 298 132 298 298 298zM894 470h88v84h-88c-20 178-162 320-340 340v88h-84v-88c-178-20-320-162-340-340h-88v-84h88c20-178 162-320 340-340v-88h84v88c178 20 320 162 340 340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "location_searching"
+ ],
+ "defaultCode": 57783,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "gps_not_fixed, location_searching",
+ "id": 360,
+ "order": 371,
+ "prevSize": 24,
+ "code": 57783,
+ "name": "location_searching"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 360
+ },
+ {
+ "icon": {
+ "paths": [
+ "M694 748l-418-418c-38 50-62 114-62 182 0 166 132 298 298 298 68 0 132-24 182-62zM128 182l54-54 714 714-54 54-88-88c-56 46-124 78-200 86v88h-84v-88c-178-20-320-162-340-340h-88v-84h88c8-76 40-144 86-200zM894 470h88v84h-88c-6 48-20 96-42 136l-64-64c14-34 22-74 22-114 0-166-132-298-298-298-40 0-80 8-114 22l-64-64c42-22 88-36 136-42v-88h84v88c178 20 320 162 340 340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "location_disabled"
+ ],
+ "defaultCode": 57782,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "gps_off, location_disabled",
+ "id": 361,
+ "order": 372,
+ "prevSize": 24,
+ "code": 57782,
+ "name": "location_disabled"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 361
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 736l-264 160 70-300-232-202 306-26 120-282 120 282 306 26-232 202 70 300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star"
+ ],
+ "defaultCode": 59448,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "grade, star",
+ "id": 362,
+ "order": 373,
+ "prevSize": 24,
+ "code": 59448,
+ "name": "star2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 362
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 470v-256h-596v256h84v84h86v86h86v-86h84v86h86v-86h86v-84h84zM726 768v-86h-86v86h86zM554 768v-86h-84v86h84zM384 768v-86h-86v86h86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM298 384h86v86h-86v-86zM640 384h86v86h-86v-86zM470 384h84v86h86v84h-86v-84h-84v84h-86v-84h86v-86zM726 554v86h84v-86h-84zM298 554h-84v86h84v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "gradient"
+ ],
+ "defaultCode": 58345,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "gradient",
+ "id": 363,
+ "order": 374,
+ "prevSize": 24,
+ "code": 58345,
+ "name": "gradient"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 363
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 170c46 0 86 40 86 86s-40 86-86 86-84-40-84-86 38-86 84-86zM598 342c46 0 84 38 84 84s-38 86-84 86-86-40-86-86 40-84 86-84zM768 512c46 0 86 40 86 86s-40 84-86 84-86-38-86-84 40-86 86-86zM598 682c46 0 84 40 84 86s-38 86-84 86-86-40-86-86 40-86 86-86zM768 342c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86zM256 682c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM256 342c46 0 86 38 86 84s-40 86-86 86-86-40-86-86 40-84 86-84zM426 512c46 0 86 40 86 86s-40 84-86 84-84-38-84-84 38-86 84-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "grain"
+ ],
+ "defaultCode": 58346,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "grain",
+ "id": 364,
+ "order": 375,
+ "prevSize": 24,
+ "code": 58346,
+ "name": "grain"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 364
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 426h86v172h-86v-172zM640 768v-512h86v512h-86zM128 598v-172h86v172h-86zM470 938v-852h84v852h-84zM298 768v-512h86v512h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "graphic_eq"
+ ],
+ "defaultCode": 57784,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "graphic_eq",
+ "id": 365,
+ "order": 376,
+ "prevSize": 24,
+ "code": 57784,
+ "name": "graphic_eq"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 365
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 854h62l-62-62v62zM598 854v-148l-24-24h-148v172h172zM342 598v-148l-24-24h-148v172h172zM342 854v-172h-172v172h172zM170 280v62h62zM426 536v62h62zM54 54l916 916-54 54-86-86h-660c-46 0-84-38-84-84v-660l-86-86zM682 170v172h172v-172h-172zM342 170h-62l-86-84h660c46 0 84 38 84 84v660l-84-86v-62h-62l-86-84h148v-172h-172v148l-84-86v-62h-62l-86-84h148v-172h-172v148l-84-86v-62z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "grid_off"
+ ],
+ "defaultCode": 58347,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "grid_off",
+ "id": 366,
+ "order": 377,
+ "prevSize": 24,
+ "code": 58347,
+ "name": "grid_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 366
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 342v-172h-172v172h172zM854 598v-172h-172v172h172zM854 854v-172h-172v172h172zM598 342v-172h-172v172h172zM598 598v-172h-172v172h172zM598 854v-172h-172v172h172zM342 342v-172h-172v172h172zM342 598v-172h-172v172h172zM342 854v-172h-172v172h172zM854 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-684c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "grid_on"
+ ],
+ "defaultCode": 58348,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "grid_on",
+ "id": 367,
+ "order": 378,
+ "prevSize": 24,
+ "code": 58348,
+ "name": "grid_on"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 367
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 554c100 0 300 50 300 150v106h-256v-106c0-64-34-112-84-148 14-2 28-2 40-2zM342 554c100 0 298 50 298 150v106h-598v-106c0-100 200-150 300-150zM342 470c-70 0-128-58-128-128s58-128 128-128 126 58 126 128-56 128-126 128zM682 470c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "people"
+ ],
+ "defaultCode": 59387,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "group, people",
+ "id": 368,
+ "order": 379,
+ "prevSize": 24,
+ "code": 59387,
+ "name": "people"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 368
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 554c86 0 256 42 256 128v86h-512v-86c0-86 170-128 256-128zM838 562c86 14 186 54 186 120v86h-128v-86c0-50-22-88-58-120zM554 470c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM768 470c-14 0-26-2-38-6 24-34 38-76 38-122s-14-88-38-122c12-4 24-6 38-6 70 0 128 58 128 128s-58 128-128 128zM342 426v86h-128v128h-86v-128h-128v-86h128v-128h86v128h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "group_add"
+ ],
+ "defaultCode": 59376,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "group_add",
+ "id": 369,
+ "order": 380,
+ "prevSize": 24,
+ "code": 59376,
+ "name": "group_add"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 369
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 746c58 0 108-48 108-106s-50-106-108-106-106 48-106 106 48 106 106 106zM406 342c0 58 48 106 106 106s106-48 106-106-48-108-106-108-106 50-106 108zM342 746c58 0 106-48 106-106s-48-106-106-106-108 48-108 106 50 106 108 106zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "group_work"
+ ],
+ "defaultCode": 59526,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "group_work",
+ "id": 370,
+ "order": 381,
+ "prevSize": 24,
+ "code": 59526,
+ "name": "group_work"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 370
+ },
+ {
+ "icon": {
+ "paths": [
+ "M618 576v-128h86v128h-86zM554 384v256h172c24 0 42-18 42-42v-172c0-24-18-42-42-42h-172zM470 640v-256h-64v106h-86v-106h-64v256h64v-86h86v86h64zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hd"
+ ],
+ "defaultCode": 57426,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "hd",
+ "id": 371,
+ "order": 382,
+ "prevSize": 24,
+ "code": 57426,
+ "name": "hd"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 371
+ },
+ {
+ "icon": {
+ "paths": [
+ "M106 106c270.848 271.818 543.632 541.7 816 812l-48 46-324-324h-144v-146l-64-64v210h-64v-106h-86v106h-64v-256h64v86h86v-86h16l-234-234zM554 448h-16l-64-64h80c34 0 64 30 64 64v82l-64-64v-18zM746 448v42h86v-42h-86zM746 640h-16l-48-46v-210h150c34 0 64 30 64 64v42c0 26-16 52-38 60l38 90h-64l-38-86h-48v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hdr_off"
+ ],
+ "defaultCode": 58349,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "hdr_off",
+ "id": 372,
+ "order": 383,
+ "prevSize": 24,
+ "code": 58349,
+ "name": "hdr_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 372
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 576v-128h-84v128h84zM554 384c34 0 64 30 64 64v128c0 34-30 64-64 64h-148v-256h148zM278 470v-86h64v256h-64v-106h-86v106h-64v-256h64v86h86zM832 490v-42h-86v42h86zM896 490c0 26-16 48-38 60l38 90h-64l-38-86h-48v86h-64v-256h150c34 0 64 30 64 64v42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hdr_on"
+ ],
+ "defaultCode": 58350,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "hdr_on",
+ "id": 373,
+ "order": 384,
+ "prevSize": 24,
+ "code": 58350,
+ "name": "hdr_on"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 373
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 598c46 0 84-40 84-86s-38-86-84-86-86 40-86 86 40 86 86 86zM214 342c94 0 170 76 170 170s-76 170-170 170-172-76-172-170 78-170 172-170zM726 256c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hdr_strong"
+ ],
+ "defaultCode": 58353,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "hdr_strong",
+ "id": 374,
+ "order": 385,
+ "prevSize": 24,
+ "code": 58353,
+ "name": "hdr_strong"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 374
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 682c94 0 170-76 170-170s-76-170-170-170-172 76-172 170 78 170 172 170zM726 256c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256zM214 342c94 0 170 76 170 170s-76 170-170 170-172-76-172-170 78-170 172-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hdr_weak"
+ ],
+ "defaultCode": 58354,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "hdr_weak",
+ "id": 375,
+ "order": 386,
+ "prevSize": 24,
+ "code": 58354,
+ "name": "hdr_weak"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 375
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42c212 0 384 172 384 384v300c0 70-58 128-128 128h-128v-342h170v-86c0-166-132-298-298-298s-298 132-298 298v86h170v342h-128c-70 0-128-58-128-128v-300c0-212 172-384 384-384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "headset"
+ ],
+ "defaultCode": 58128,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "headset",
+ "id": 376,
+ "order": 387,
+ "prevSize": 24,
+ "code": 58128,
+ "name": "headset"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 376
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42c212 0 384 172 384 384v428c0 70-58 128-128 128h-256v-86h298v-42h-170v-342h170v-86c0-166-132-298-298-298s-298 132-298 298v86h170v342h-128c-70 0-128-58-128-128v-300c0-212 172-384 384-384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "headset_mic"
+ ],
+ "defaultCode": 58129,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "headset_mic",
+ "id": 377,
+ "order": 388,
+ "prevSize": 24,
+ "code": 58129,
+ "name": "headset_mic"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 377
+ },
+ {
+ "icon": {
+ "paths": [
+ "M710 868l156-156-156-154-154 156zM598 470c-24 0-44 18-44 42s20 42 44 42 42-18 42-42-18-42-42-42zM512 640c24 0 42-18 42-42s-18-44-42-44-42 20-42 44 18 42 42 42zM426 554c24 0 44-18 44-42s-20-42-44-42-42 18-42 42 18 42 42 42zM312 468l154-156-154-154-156 156zM512 384c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM756 512l170 170c16 16 16 44 0 60l-184 186c-8 8-18 12-30 12s-24-4-32-12l-168-170-170 170c-16 16-44 16-60 0l-186-186c-16-16-16-44 0-60l170-170-170-168c-16-16-16-46 0-62l186-184c8-8 20-12 30-12 12 0 22 4 30 12l170 170 168-170c16-16 46-16 62 0l184 184c16 16 16 46 0 62z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "healing"
+ ],
+ "defaultCode": 58355,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "healing",
+ "id": 378,
+ "order": 389,
+ "prevSize": 24,
+ "code": 58355,
+ "name": "healing"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 378
+ },
+ {
+ "icon": {
+ "paths": [
+ "M490 384c0-58 50-106 108-106s106 48 106 106-48 106-106 106-108-48-108-106zM326 112c-70 70-112 166-112 272s42 202 112 272l-60 60c-84-84-138-202-138-332s54-248 138-332zM726 854c46 0 84-40 84-86h86c0 94-76 170-170 170-24 0-48-4-70-14-58-30-92-74-118-152-14-42-38-62-72-88-38-28-84-64-122-134-30-54-46-112-46-166 0-168 132-298 300-298s298 130 298 298h-86c0-120-92-214-212-214s-214 94-214 214c0 40 12 86 34 126 30 56 66 82 100 108 40 30 80 62 102 128 22 64 42 84 72 100 8 4 22 8 34 8z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hearing"
+ ],
+ "defaultCode": 57379,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "hearing",
+ "id": 379,
+ "order": 390,
+ "prevSize": 24,
+ "code": 57379,
+ "name": "hearing"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 379
+ },
+ {
+ "icon": {
+ "paths": [
+ "M642 480c24-24 40-58 40-96 0-94-76-170-170-170s-170 76-170 170h84c0-46 40-86 86-86s86 40 86 86c0 24-10 44-26 60l-52 54c-30 32-50 74-50 120v22h84c0-64 20-88 50-120zM554 810v-84h-84v84h84zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "help"
+ ],
+ "defaultCode": 59527,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "help",
+ "id": 380,
+ "order": 391,
+ "prevSize": 24,
+ "code": 59527,
+ "name": "help"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 380
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 256c94 0 170 76 170 170 0 106-128 118-128 214h-84c0-138 128-128 128-214 0-46-40-84-86-84s-86 38-86 84h-84c0-94 76-170 170-170zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM470 768v-86h84v86h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "help_outline"
+ ],
+ "defaultCode": 59645,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "help_outline",
+ "id": 381,
+ "order": 392,
+ "prevSize": 24,
+ "code": 59645,
+ "name": "help_outline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 381
+ },
+ {
+ "icon": {
+ "paths": [
+ "M618 576v-128h86v128h-86zM768 598v-172c0-24-18-42-42-42h-128c-24 0-44 18-44 42v172c0 24 20 42 44 42h32v64h64v-64h32c24 0 42-18 42-42zM470 640v-256h-64v106h-86v-106h-64v256h64v-86h86v86h64zM810 170c46 0 86 40 86 86v512c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-512c0-46 38-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "high_quality"
+ ],
+ "defaultCode": 57380,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "high_quality",
+ "id": 382,
+ "order": 393,
+ "prevSize": 24,
+ "code": 57380,
+ "name": "high_quality"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 382
+ },
+ {
+ "icon": {
+ "paths": [
+ "M724 280l90-90 60 60-90 92zM150 250l60-60 90 90-60 62zM470 86h84v128h-84v-128zM256 598v-214h512v214l-128 128v212h-256v-212z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "highlight"
+ ],
+ "defaultCode": 57951,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "highlight",
+ "id": 383,
+ "order": 394,
+ "prevSize": 24,
+ "code": 57951,
+ "name": "highlight"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 383
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM622 342l60 60-110 110 110 110-60 60-110-110-110 110-60-60 110-110-110-110 60-60 110 110z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "highlight_off"
+ ],
+ "defaultCode": 59528,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "highlight_off",
+ "id": 384,
+ "order": 395,
+ "prevSize": 24,
+ "code": 59528,
+ "name": "highlight_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 384
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 342h64v180l150 90-32 52-182-110v-212zM554 128c212 0 384 172 384 384s-172 384-384 384c-106 0-200-42-270-112l60-62c54 54 128 88 210 88 166 0 300-132 300-298s-134-298-300-298-298 132-298 298h128l-172 172-4-6-166-166h128c0-212 172-384 384-384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "restore"
+ ],
+ "defaultCode": 59571,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "history, restore",
+ "id": 385,
+ "order": 396,
+ "prevSize": 24,
+ "code": 59571,
+ "name": "restore"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 385
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 854h-212v-342h-128l426-384 426 384h-128v342h-212v-256h-172v256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "home"
+ ],
+ "defaultCode": 59530,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "home",
+ "id": 386,
+ "order": 397,
+ "prevSize": 24,
+ "code": 59530,
+ "name": "home2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 386
+ },
+ {
+ "icon": {
+ "paths": [
+ "M626 250c44 42 62 100 54 158l-2 18h-82l6-24c6.113-34.638-6.812-70.812-32-96-44-44-64-102-56-160l2-18h82l-4 26c-6 34 4 68 28 94zM796 250c44 42 64 100 56 158l-4 18h-80l4-24c6-34-4-68-28-94l-4-2c-44-44-64-102-56-160l4-18h80l-4 26c-6 34 4 68 28 94zM810 854v-256h-84v256h84zM640 854v-256h-86v256h86zM470 854v-256h-86v256h86zM298 854v-256h-84v256h84zM476 512h462v342c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-342h128v-32c0-52 44-96 96-96 30.769 0 56.308 16.308 72 32l58 66c10 12 22 20 36 30zM214 256c0-48 36-86 84-86s86 38 86 86-38 86-86 86-84-38-84-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hot_tub"
+ ],
+ "defaultCode": 60230,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "hot_tub",
+ "id": 387,
+ "order": 398,
+ "prevSize": 24,
+ "code": 60230,
+ "name": "hot_tub"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 387
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 298c94 0 172 78 172 172v384h-86v-128h-768v128h-86v-640h86v384h342v-300h340zM298 554c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_hotel"
+ ],
+ "defaultCode": 58697,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "hotel, local_hotel",
+ "id": 388,
+ "order": 399,
+ "prevSize": 24,
+ "code": 58697,
+ "name": "local_hotel"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 388
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 490l170-170v-150h-340v150zM682 704l-170-170-170 170v150h340v-150zM256 86h512v256l-170 170 170 170v256h-512v-256l170-170-170-170v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass_empty"
+ ],
+ "defaultCode": 59531,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "hourglass_empty",
+ "id": 389,
+ "order": 400,
+ "prevSize": 24,
+ "code": 59531,
+ "name": "hourglass_empty"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 389
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 86h512v256l-170 170 170 170v256h-512v-256l170-170-170-170v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "hourglass_full"
+ ],
+ "defaultCode": 59532,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "hourglass_full",
+ "id": 390,
+ "order": 401,
+ "prevSize": 24,
+ "code": 59532,
+ "name": "hourglass_full"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 390
+ },
+ {
+ "icon": {
+ "paths": [
+ "M918 490v-42h-86v42h86zM918 384c34 0 64 30 64 64v42c0 34-30 64-64 64h-86v86h-64v-256h150zM534 448v-64h192v64h-64v192h-64v-192h-64zM298 448v-64h192v64h-64v192h-64v-192h-64zM192 470v-86h64v256h-64v-106h-86v106h-64v-256h64v86h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "http"
+ ],
+ "defaultCode": 59650,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "http",
+ "id": 391,
+ "order": 402,
+ "prevSize": 24,
+ "code": 59650,
+ "name": "http"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 391
+ },
+ {
+ "icon": {
+ "paths": [
+ "M644 342v-86c0-72-60-132-132-132s-132 60-132 132v86h264zM512 726c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM768 342c46 0 86 38 86 84v428c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-428c0-46 40-84 86-84h42v-86c0-118 96-214 214-214s214 96 214 214v86h42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lock"
+ ],
+ "defaultCode": 59543,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "https, lock",
+ "id": 392,
+ "order": 403,
+ "prevSize": 24,
+ "code": 59543,
+ "name": "lock2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 392
+ },
+ {
+ "icon": {
+ "paths": [
+ "M362 576l-148 192h596l-192-256-148 192zM896 810c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596c46 0 86 40 86 86v596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "photo"
+ ],
+ "defaultCode": 58384,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "image, insert_photo, photo",
+ "id": 393,
+ "order": 404,
+ "prevSize": 24,
+ "code": 58384,
+ "name": "photo2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 393
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 768v-512h-684v512h684zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684zM512 426v86h-86v-86h86zM342 426v86h-86v-86h86zM682 598v84h-84v-84h84zM682 426v86h-84v-86h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "image_aspect_ratio"
+ ],
+ "defaultCode": 58357,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "image_aspect_ratio",
+ "id": 394,
+ "order": 405,
+ "prevSize": 24,
+ "code": 58357,
+ "name": "image_aspect_ratio"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 394
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 790v-492c-46-14-98-20-150-20-72 0-176 28-234 64v490c58-36 162-64 234-64 52 0 104 8 150 22zM746 192c88.409 0 181.498 22.075 236 64v622c0 10-12 22-22 22-4 0-6 0-10-2-60-32-134-44-204-44-72 0-176 28-234 64-62-46-150-64-234-64-62 0-146 18-204 46-4 0-6 2-10 2-10 0-22-10-22-20v-626c62-46 152-64 236-64s172 18 234 64c62-46 150-64 234-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "import_contacts"
+ ],
+ "defaultCode": 57568,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "import_contacts",
+ "id": 395,
+ "order": 406,
+ "prevSize": 24,
+ "code": 57568,
+ "name": "import_contacts"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 395
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 726h128l-170 170-170-170h128v-300h84v300zM384 128l170 170h-128v300h-84v-300h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "import_export"
+ ],
+ "defaultCode": 57539,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "import_export",
+ "id": 396,
+ "order": 407,
+ "prevSize": 24,
+ "code": 57539,
+ "name": "import_export"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 396
+ },
+ {
+ "icon": {
+ "paths": [
+ "M510 384h130l-106 76 40 124-104-78-106 78 40-124-106-76h130l42-128zM854 86c46 0 84 36 84 84v214h-84v-214h-768v512h554v86h-86v86h86v84h-342v-84h86v-86h-298c-48 0-86-40-86-86v-512c0-48 38-84 86-84h768zM982 854v-300h-214v300h214zM982 470c24 0 42 18 42 42v384c0 24-18 42-42 42h-214c-24 0-42-18-42-42v-384c0-24 18-42 42-42h214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "important_devices"
+ ],
+ "defaultCode": 59666,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "important_devices",
+ "id": 397,
+ "order": 408,
+ "prevSize": 24,
+ "code": 59666,
+ "name": "important_devices"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 397
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 640v-426h-598v426h172c0 70 58 128 128 128s128-58 128-128h170zM810 128c46 0 86 38 86 86v596c0 46-40 86-86 86h-598c-48 0-84-40-84-86v-596c0-48 36-86 84-86h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "inbox"
+ ],
+ "defaultCode": 57686,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "inbox",
+ "id": 398,
+ "order": 409,
+ "prevSize": 24,
+ "code": 57686,
+ "name": "inbox2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 398
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 554v-84h-428v84h428zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "indeterminate_check_box"
+ ],
+ "defaultCode": 59657,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "indeterminate_check_box",
+ "id": 399,
+ "order": 410,
+ "prevSize": 24,
+ "code": 59657,
+ "name": "indeterminate_check_box"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 399
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 384v-86h-84v86h84zM554 726v-256h-84v256h84zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "info"
+ ],
+ "defaultCode": 59534,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "info",
+ "id": 400,
+ "order": 411,
+ "prevSize": 24,
+ "code": 59534,
+ "name": "info2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 400
+ },
+ {
+ "icon": {
+ "paths": [
+ "M470 384v-86h84v86h-84zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM470 726v-256h84v256h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "info_outline"
+ ],
+ "defaultCode": 59535,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "info_outline",
+ "id": 401,
+ "order": 412,
+ "prevSize": 24,
+ "code": 59535,
+ "name": "info_outline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 401
+ },
+ {
+ "icon": {
+ "paths": [
+ "M470 682v-128h-428v-84h428v-128l170 170zM896 128c46 0 86 38 86 86v598c0 46-40 84-86 84h-768c-46 0-86-38-86-84v-172h86v172h768v-600h-768v172h-86v-170c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "input"
+ ],
+ "defaultCode": 59536,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "input",
+ "id": 402,
+ "order": 413,
+ "prevSize": 24,
+ "code": 59536,
+ "name": "input"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 402
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM854 86c46 0 84 38 84 84v768l-170-170h-598c-46 0-84-40-84-86v-512c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "insert_comment"
+ ],
+ "defaultCode": 57932,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "insert_comment",
+ "id": 403,
+ "order": 414,
+ "prevSize": 24,
+ "code": 57932,
+ "name": "insert_comment"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 403
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 384h236l-236-234v234zM256 86h342l256 256v512c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "insert_drive_file"
+ ],
+ "defaultCode": 57933,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "insert_drive_file",
+ "id": 404,
+ "order": 415,
+ "prevSize": 24,
+ "code": 57933,
+ "name": "insert_drive_file"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 404
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 746c-100 0-184-60-218-148h436c-34 88-118 148-218 148zM362 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM662 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tag_faces"
+ ],
+ "defaultCode": 58400,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "insert_emoticon, mood, tag_faces",
+ "id": 405,
+ "order": 416,
+ "prevSize": 24,
+ "code": 58400,
+ "name": "tag_faces"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 405
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 298c118 0 212 96 212 214s-94 214-212 214h-172v-82h172c72 0 132-60 132-132s-60-132-132-132h-172v-82h172zM342 554v-84h340v84h-340zM166 512c0 72 60 132 132 132h172v82h-172c-118 0-212-96-212-214s94-214 212-214h172v82h-172c-72 0-132 60-132 132z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "link"
+ ],
+ "defaultCode": 57687,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "insert_link, link",
+ "id": 406,
+ "order": 417,
+ "prevSize": 24,
+ "code": 57687,
+ "name": "link2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 406
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 836v-618l-180 180c-48 48-76 114-76 182 0 137.583 118.4 256 256 256zM754 338c134 134 134 348 0 482-66 66-154 100-242 100s-176-34-242-100c-134-134-134-348 0-482l242-242z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "invert_colors"
+ ],
+ "defaultCode": 59537,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "invert_colors",
+ "id": 407,
+ "order": 418,
+ "prevSize": 24,
+ "code": 59537,
+ "name": "invert_colors"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 407
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 218l-98 96-60-60 158-158 242 242c104 104 126 258 68 384l-310-308v-196zM512 836v-206l-204-204c-34 44-52 98-52 154 0 137.583 118.4 256 256 256zM882 890l14 16-54 54-116-116c-62 50-138 76-214 76-88 0-176-34-242-100-124-126-132-322-24-456l-118-118 54-54c232.99 232.99 464.706 467.32 700 698z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "invert_colors_off"
+ ],
+ "defaultCode": 57540,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "invert_colors_off",
+ "id": 408,
+ "order": 419,
+ "prevSize": 24,
+ "code": 57540,
+ "name": "invert_colors_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 408
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 726h-214v-64h214v64zM810 810v-596l-596 596h596zM234 320v64h86v86h64v-86h86v-64h-86v-86h-64v86h-86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "iso"
+ ],
+ "defaultCode": 58358,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "iso",
+ "id": 409,
+ "order": 420,
+ "prevSize": 24,
+ "code": 58358,
+ "name": "iso"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 409
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 426v-84h-84v84h84zM810 554v-84h-84v84h84zM682 426v-84h-84v84h84zM682 554v-84h-84v84h84zM682 726v-86h-340v86h340zM298 426v-84h-84v84h84zM298 554v-84h-84v84h84zM342 470v84h84v-84h-84zM342 342v84h84v-84h-84zM470 470v84h84v-84h-84zM470 342v84h84v-84h-84zM854 214c46 0 84 38 84 84v428c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-428c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard"
+ ],
+ "defaultCode": 58130,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "keyboard",
+ "id": 410,
+ "order": 421,
+ "prevSize": 24,
+ "code": 58130,
+ "name": "keyboard"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 410
+ },
+ {
+ "icon": {
+ "paths": [
+ "M316 334l196 196 196-196 60 60-256 256-256-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_arrow_down"
+ ],
+ "defaultCode": 58131,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "keyboard_arrow_down",
+ "id": 411,
+ "order": 422,
+ "prevSize": 24,
+ "code": 58131,
+ "name": "keyboard_arrow_down"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 411
+ },
+ {
+ "icon": {
+ "paths": [
+ "M658 686l-60 60-256-256 256-256 60 60-196 196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_arrow_left"
+ ],
+ "defaultCode": 58132,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "keyboard_arrow_left",
+ "id": 412,
+ "order": 423,
+ "prevSize": 24,
+ "code": 58132,
+ "name": "keyboard_arrow_left"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 412
+ },
+ {
+ "icon": {
+ "paths": [
+ "M366 698l196-196-196-196 60-60 256 256-256 256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_arrow_right"
+ ],
+ "defaultCode": 58133,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "keyboard_arrow_right",
+ "id": 413,
+ "order": 424,
+ "prevSize": 24,
+ "code": 58133,
+ "name": "keyboard_arrow_right"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 413
+ },
+ {
+ "icon": {
+ "paths": [
+ "M316 658l-60-60 256-256 256 256-60 60-196-196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_arrow_up"
+ ],
+ "defaultCode": 58134,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "keyboard_arrow_up",
+ "id": 414,
+ "order": 425,
+ "prevSize": 24,
+ "code": 58134,
+ "name": "keyboard_arrow_up"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 414
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 470v84h-604l152 154-60 60-256-256 256-256 60 60-152 154h604z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_backspace"
+ ],
+ "defaultCode": 58135,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "keyboard_backspace",
+ "id": 415,
+ "order": 426,
+ "prevSize": 24,
+ "code": 58135,
+ "name": "keyboard_backspace"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 415
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 768v-86h512v86h-512zM512 358l-196 196-60-60 256-256 256 256-60 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_capslock"
+ ],
+ "defaultCode": 58136,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "keyboard_capslock",
+ "id": 416,
+ "order": 427,
+ "prevSize": 24,
+ "code": 58136,
+ "name": "keyboard_capslock"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 416
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 982l-170-172h340zM810 342v-86h-84v86h84zM810 470v-86h-84v86h84zM682 342v-86h-84v86h84zM682 470v-86h-84v86h84zM682 640v-86h-340v86h340zM298 342v-86h-84v86h84zM298 470v-86h-84v86h84zM342 384v86h84v-86h-84zM342 256v86h84v-86h-84zM470 384v86h84v-86h-84zM470 256v86h84v-86h-84zM854 128c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-426c0-46 38-86 84-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_hide"
+ ],
+ "defaultCode": 58138,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "keyboard_hide",
+ "id": 417,
+ "order": 428,
+ "prevSize": 24,
+ "code": 58138,
+ "name": "keyboard_hide"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 417
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 298h86v256h-648l154 154-60 60-256-256 256-256 60 60-154 154h562v-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_return"
+ ],
+ "defaultCode": 58139,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "keyboard_return",
+ "id": 418,
+ "order": 429,
+ "prevSize": 24,
+ "code": 58139,
+ "name": "keyboard_return"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 418
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 256h84v512h-84v-512zM494 316l60-60 256 256-256 256-60-60 154-154h-606v-84h606z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_tab"
+ ],
+ "defaultCode": 58140,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "keyboard_tab",
+ "id": 419,
+ "order": 430,
+ "prevSize": 24,
+ "code": 58140,
+ "name": "keyboard_tab"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 419
+ },
+ {
+ "icon": {
+ "paths": [
+ "M738 512h72c0 146-116 266-256 286v140h-84v-140c-140-20-256-140-256-286h72c0 128 108 218 226 218s226-90 226-218zM512 640c-70 0-128-58-128-128v-256c0-70 58-128 128-128s128 58 128 128v256c0 70-58 128-128 128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "keyboard_voice"
+ ],
+ "defaultCode": 58141,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "keyboard_voice",
+ "id": 420,
+ "order": 431,
+ "prevSize": 24,
+ "code": 58141,
+ "name": "keyboard_voice"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 420
+ },
+ {
+ "icon": {
+ "paths": [
+ "M342 512h84v214h-84v-214zM342 214h84v128h-84v-128zM768 384v-214h-512v214h512zM768 854v-386h-512v386h512zM768 86c46 0 86 36 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-684c0-48 40-84 86-84h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "kitchen"
+ ],
+ "defaultCode": 60231,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "kitchen",
+ "id": 421,
+ "order": 432,
+ "prevSize": 24,
+ "code": 60231,
+ "name": "kitchen"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 421
+ },
+ {
+ "icon": {
+ "paths": [
+ "M752 250l186 262-186 262c-16 22-42 36-70 36h-468c-46 0-86-38-86-84v-428c0-46 40-84 86-84h468c28 0 54 14 70 36z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "label"
+ ],
+ "defaultCode": 59538,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "label",
+ "id": 422,
+ "order": 433,
+ "prevSize": 24,
+ "code": 59538,
+ "name": "label"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 422
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 726l152-214-152-214h-468v428h468zM752 250l186 262-186 262c-16 22-42 36-70 36h-468c-46 0-86-38-86-84v-428c0-46 40-84 86-84h468c28 0 54 14 70 36z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "label_outline"
+ ],
+ "defaultCode": 59539,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "label_outline",
+ "id": 423,
+ "order": 434,
+ "prevSize": 24,
+ "code": 59539,
+ "name": "label_outline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 423
+ },
+ {
+ "icon": {
+ "paths": [
+ "M698 598h144c6-28 12-56 12-86s-6-58-12-86h-144c4 28 6 56 6 86s-2 58-6 86zM622 834c78-26 146-82 186-152h-126c-14 54-34 104-60 152zM612 598c4-28 6-56 6-86s-2-58-6-86h-200c-4 28-6 56-6 86s2 58 6 86h200zM512 852c36-52 64-108 82-170h-164c18 62 46 118 82 170zM342 342c14-54 34-104 60-152-78 26-146 82-186 152h126zM216 682c40 70 108 126 186 152-26-48-46-98-60-152h-126zM182 598h144c-4-28-6-56-6-86s2-58 6-86h-144c-6 28-12 56-12 86s6 58 12 86zM512 172c-36 52-64 108-82 170h164c-18-62-46-118-82-170zM808 342c-40-70-108-126-186-152 26 48 46 98 60 152h126zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "language"
+ ],
+ "defaultCode": 59540,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "language",
+ "id": 424,
+ "order": 435,
+ "prevSize": 24,
+ "code": 59540,
+ "name": "language2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 424
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 640v-426h-684v426h684zM598 768v-42h-172v42h172zM938 768h86v86h-1024v-86h86v-640h852v640z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "laptop_chromebook"
+ ],
+ "defaultCode": 58143,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "laptop_chromebook",
+ "id": 425,
+ "order": 436,
+ "prevSize": 24,
+ "code": 58143,
+ "name": "laptop_chromebook"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 425
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 810c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM170 214v468h684v-468h-684zM854 768h170c0 46-40 86-86 86h-852c-46 0-86-40-86-86h170c-46 0-84-40-84-86v-468c0-46 38-86 84-86h684c46 0 84 40 84 86v468c0 46-38 86-84 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "laptop_mac"
+ ],
+ "defaultCode": 58144,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "laptop_mac",
+ "id": 426,
+ "order": 437,
+ "prevSize": 24,
+ "code": 58144,
+ "name": "laptop_mac"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 426
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 214v426h684v-426h-684zM854 768h170v86h-1024v-86h170v-42c-46 0-84-40-84-86v-426c0-46 38-86 84-86h684c46 0 84 40 84 86v426c0 46-38 86-84 86v42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "laptop_windows"
+ ],
+ "defaultCode": 58145,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "laptop_windows",
+ "id": 427,
+ "order": 438,
+ "prevSize": 24,
+ "code": 58145,
+ "name": "laptop_windows"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 427
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 256h86v512h-86v-512zM238 316l60-60 256 256-256 256-60-60 196-196z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "last_page"
+ ],
+ "defaultCode": 58845,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "last_page",
+ "id": 428,
+ "order": 439,
+ "prevSize": 24,
+ "code": 58845,
+ "name": "last_page"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 428
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 128h298v298h-86v-152l-418 418-60-60 418-418h-152v-86zM810 810v-298h86v298c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h298v86h-298v596h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "open_in_new"
+ ],
+ "defaultCode": 59550,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "launch, open_in_new",
+ "id": 429,
+ "order": 440,
+ "prevSize": 24,
+ "code": 59550,
+ "name": "open_in_new"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 429
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 682c-128.024-99.309-255.626-199.040-384-298l384-298 384 298c-128.375 98.958-255.974 198.693-384 298zM512 792l314-246 70 54-384 298-384-298 70-54z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "layers"
+ ],
+ "defaultCode": 58683,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "layers",
+ "id": 430,
+ "order": 441,
+ "prevSize": 24,
+ "code": 58683,
+ "name": "layers"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 430
+ },
+ {
+ "icon": {
+ "paths": [
+ "M140 42l798 800-54 54-160-162-212 164-384-298 70-54 314 246 150-118-60-60-90 68c-128.024-99.309-255.626-199.040-384-298l138-108-180-180zM896 384c-57.761 44.239-114.863 89.137-172 134l-336-336 124-96zM846 640l-62-62 50-38 62 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "layers_clear"
+ ],
+ "defaultCode": 58684,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "layers_clear",
+ "id": 431,
+ "order": 442,
+ "prevSize": 24,
+ "code": 58684,
+ "name": "layers_clear"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 431
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 896c0-166 132-298 298-298v84c-118 0-214 96-214 214h-84zM768 896c0-70 58-128 128-128v128h-128zM426 896c0-258 212-470 470-470v86c-212 0-384 172-384 384h-86zM426 128c0 166-132 298-298 298v-84c118 0 214-96 214-214h84zM598 128c0 258-210 470-470 470v-86c212 0 384-172 384-384h86zM256 128c0 70-58 128-128 128v-128h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "leak_add"
+ ],
+ "defaultCode": 58360,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "leak_add",
+ "id": 432,
+ "order": 443,
+ "prevSize": 24,
+ "code": 58360,
+ "name": "leak_add"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 432
+ },
+ {
+ "icon": {
+ "paths": [
+ "M656 494c70-42 152-68 240-68v86c-64 0-124 16-178 44zM850 688l-68-68c34-14 74-22 114-22v84c-16 0-32 2-46 6zM598 128c0 88-26 170-68 240l-62-62c28-54 44-114 44-178h86zM128 182l54-54 714 714-54 54-122-122c-24 34-38 76-38 122h-84c0-68 24-132 62-182l-62-60c-54 66-86 150-86 242h-86c0-116 42-222 112-304l-106-106c-82 70-188 112-304 112v-86c92 0 178-32 244-86l-62-62c-50 38-114 62-182 62v-84c46 0 88-14 122-38zM426 128c0 40-8 80-22 114l-68-68c4-14 6-30 6-46h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "leak_remove"
+ ],
+ "defaultCode": 58361,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "leak_remove",
+ "id": 433,
+ "order": 444,
+ "prevSize": 24,
+ "code": 58361,
+ "name": "leak_remove"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 433
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lens"
+ ],
+ "defaultCode": 58362,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "lens",
+ "id": 434,
+ "order": 445,
+ "prevSize": 24,
+ "code": 58362,
+ "name": "lens"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 434
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 298v-84h-426v84h426zM640 640v-86h-256v86h256zM810 470v-86h-426v86h426zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "library_books"
+ ],
+ "defaultCode": 57391,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "library_books",
+ "id": 435,
+ "order": 446,
+ "prevSize": 24,
+ "code": 57391,
+ "name": "library_books"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 435
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84zM768 298v-84h-170v234c-18-14-40-22-64-22-58 0-108 50-108 108s50 106 108 106 106-48 106-106v-236h128zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "library_music"
+ ],
+ "defaultCode": 57392,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "library_music",
+ "id": 436,
+ "order": 447,
+ "prevSize": 24,
+ "code": 57392,
+ "name": "library_music"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 436
+ },
+ {
+ "icon": {
+ "paths": [
+ "M634 558c58-40 92-104 92-174 0-118-96-214-214-214s-214 96-214 214c0 70 34 134 92 174l36 26v98h172v-98zM512 86c164 0 298 134 298 298 0 102-50 190-128 244v98c0 24-18 42-42 42h-256c-24 0-42-18-42-42v-98c-78-54-128-142-128-244 0-164 134-298 298-298zM384 896v-42h256v42c0 24-18 42-42 42h-172c-24 0-42-18-42-42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lightbulb_outline"
+ ],
+ "defaultCode": 59663,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "lightbulb_outline",
+ "id": 437,
+ "order": 448,
+ "prevSize": 24,
+ "code": 59663,
+ "name": "lightbulb_outline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 437
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170h768v172h-768v-172zM554 512v-86h342v86h-342zM128 512v-86h342v86h-342zM810 854v-86h86v86h-86zM640 854v-86h86v86h-86zM470 854v-86h84v86h-84zM298 854v-86h86v86h-86zM128 854v-86h86v86h-86zM682 682v-84h214v84h-214zM406 682v-84h212v84h-212zM128 682v-84h214v84h-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "line_style"
+ ],
+ "defaultCode": 59673,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "line_style",
+ "id": 438,
+ "order": 449,
+ "prevSize": 24,
+ "code": 59673,
+ "name": "line_style"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 438
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 170h768v172h-768v-172zM128 554v-128h768v128h-768zM128 854v-44h768v44h-768zM128 726v-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "line_weight"
+ ],
+ "defaultCode": 59674,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "line_weight",
+ "id": 439,
+ "order": 450,
+ "prevSize": 24,
+ "code": 59674,
+ "name": "line_weight"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 439
+ },
+ {
+ "icon": {
+ "paths": [
+ "M832 406c58 0 106 48 106 106s-48 106-106 106c-44 0-82-26-98-64h-124c-16 38-54 64-98 64s-82-26-98-64h-124c-16 38-54 64-98 64-58 0-106-48-106-106s48-106 106-106c44 0 82 26 98 64h124c16-38 54-64 98-64s82 26 98 64h124c16-38 54-64 98-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "linear_scale"
+ ],
+ "defaultCode": 57952,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "linear_scale",
+ "id": 440,
+ "order": 451,
+ "prevSize": 24,
+ "code": 57952,
+ "name": "linear_scale"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 440
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 256c48 0 86 38 86 86h56c0-78-64-142-142-142v56zM512 810c118 0 214-94 214-212s-96-214-214-214-214 96-214 214 96 212 214 212zM726 384h212v470c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-512c0-46 38-86 84-86h136l78-86h256v128c48 0 86 38 86 86zM682 142v-56c142 0 256 114 256 256h-56c0-110-90-200-200-200zM376 598c0-76 60-138 136-138s136 62 136 138-60 136-136 136-136-60-136-136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "linked_camera"
+ ],
+ "defaultCode": 58424,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "linked_camera",
+ "id": 441,
+ "order": 452,
+ "prevSize": 24,
+ "code": 58424,
+ "name": "linked_camera"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 441
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 298h598v86h-598v-86zM298 726v-86h598v86h-598zM298 554v-84h598v84h-598zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "list"
+ ],
+ "defaultCode": 59542,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "list",
+ "id": 442,
+ "order": 453,
+ "prevSize": 24,
+ "code": 59542,
+ "name": "list2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 442
+ },
+ {
+ "icon": {
+ "paths": [
+ "M642 438c24-24 40-58 40-96 0-94-76-172-170-172s-170 78-170 172h84c0-46 40-86 86-86s86 40 86 86c0 24-10 44-26 60l-52 54c-30 32-50 74-50 120v22h84c0-64 20-90 50-122zM554 768v-86h-84v86h84zM810 86c46 0 86 38 86 84v598c0 46-40 86-86 86h-170l-128 128-128-128h-170c-48 0-86-40-86-86v-598c0-46 38-84 86-84h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "live_help"
+ ],
+ "defaultCode": 57542,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "live_help",
+ "id": 443,
+ "order": 454,
+ "prevSize": 24,
+ "code": 57542,
+ "name": "live_help"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 443
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 426l298 172-298 170v-342zM896 854v-512h-768v512h768zM896 256c46 0 86 38 86 86v512c0 46-40 84-86 84h-768c-46 0-86-38-86-84v-512c0-48 40-86 86-86h324l-140-140 30-30 170 170 170-170 30 30-140 140h324z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "live_tv"
+ ],
+ "defaultCode": 58937,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "live_tv",
+ "id": 444,
+ "order": 455,
+ "prevSize": 24,
+ "code": 58937,
+ "name": "live_tv"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 444
+ },
+ {
+ "icon": {
+ "paths": [
+ "M664 716l-46-174 140-116-180-10-66-168-66 168-182 10 142 116-46 174 152-98zM854 512c0 46 38 86 84 86v170c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-170c48 0 84-40 84-86s-38-86-84-86v-170c0-46 38-86 84-86h684c46 0 84 40 84 86v170c-46 0-84 40-84 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_play"
+ ],
+ "defaultCode": 58707,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_activity, local_play",
+ "id": 445,
+ "order": 456,
+ "prevSize": 24,
+ "code": 58707,
+ "name": "local_play"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 445
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 682l-342-106v234l86 64v64l-150-42-148 42v-64l84-64v-234l-340 106v-84l340-214v-234c0-36 28-64 64-64s64 28 64 64v234l342 214v84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_airport"
+ ],
+ "defaultCode": 58685,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_airport",
+ "id": 446,
+ "order": 457,
+ "prevSize": 24,
+ "code": 58685,
+ "name": "local_airport"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 446
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 768v-512h-684v512h684zM854 170c48 0 84 38 84 86v512c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h684zM470 726v-44h-86v-84h170v-44h-128c-24 0-42-18-42-42v-128c0-24 18-42 42-42h44v-44h84v44h86v84h-170v44h128c24 0 42 18 42 42v128c0 24-18 42-42 42h-44v44h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_atm"
+ ],
+ "defaultCode": 58686,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_atm",
+ "id": 447,
+ "order": 458,
+ "prevSize": 24,
+ "code": 58686,
+ "name": "local_atm"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 447
+ },
+ {
+ "icon": {
+ "paths": [
+ "M318 298h388l76-84h-540zM896 214l-342 384v212h214v86h-512v-86h214v-212l-342-384v-86h768v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_bar"
+ ],
+ "defaultCode": 58688,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_bar",
+ "id": 448,
+ "order": 459,
+ "prevSize": 24,
+ "code": 58688,
+ "name": "local_bar"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 448
+ },
+ {
+ "icon": {
+ "paths": [
+ "M86 896v-86h768v86h-768zM854 342v-128h-86v128h86zM854 128c48 0 84 38 84 86v128c0 48-36 84-84 84h-86v128c0 94-76 172-170 172h-256c-94 0-172-78-172-172v-426h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_cafe"
+ ],
+ "defaultCode": 58689,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_cafe",
+ "id": 449,
+ "order": 460,
+ "prevSize": 24,
+ "code": 58689,
+ "name": "local_cafe"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 449
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 554h596l-64-192h-468zM746 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM808 342l88 256v340c0 24-18 44-42 44h-44c-24 0-42-20-42-44v-42h-512v42c0 24-18 44-42 44h-44c-24 0-42-20-42-44v-340l88-256c8-26 34-44 62-44h468c28 0 54 18 62 44zM298 214c-36 0-64-28-64-64 0-42 64-116 64-116s64 74 64 116c0 36-28 64-64 64zM512 214c-36 0-64-28-64-64 0-42 64-116 64-116s64 74 64 116c0 36-28 64-64 64zM726 214c-36 0-64-28-64-64 0-42 64-116 64-116s64 74 64 116c0 36-28 64-64 64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_car_wash"
+ ],
+ "defaultCode": 58690,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_car_wash",
+ "id": 450,
+ "order": 461,
+ "prevSize": 24,
+ "code": 58690,
+ "name": "local_car_wash"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 450
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 512v-214h-42v86h-42v-86h-44v128h86v86h42zM470 426v-128h-128v44h84v42h-84v128h128v-42h-86v-44h86zM810 298h128v556h-340v-172h-172v172h-340v-556h128v-128h596v128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_convenience_store"
+ ],
+ "defaultCode": 58691,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_convenience_store",
+ "id": 451,
+ "order": 462,
+ "prevSize": 24,
+ "code": 58691,
+ "name": "local_convenience_store"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 451
+ },
+ {
+ "icon": {
+ "paths": [
+ "M634 492l-62 62 294 294-60 60-294-294-294 294-60-60 416-416c-30-66-8-158 60-226 82-82 198-96 260-34s48 180-34 262c-68 68-160 88-226 58zM346 570l-180-180c-66-66-66-174 0-240l300 298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "restaurant_menu"
+ ],
+ "defaultCode": 58721,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_dining, restaurant_menu",
+ "id": 452,
+ "order": 463,
+ "prevSize": 24,
+ "code": 58721,
+ "name": "restaurant_menu"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 452
+ },
+ {
+ "icon": {
+ "paths": [
+ "M782 342l18-172h-576l18 172h540zM512 810c70 0 128-58 128-128 0-86-128-230-128-230s-128 144-128 230c0 70 58 128 128 128zM128 86h768l-86 778c-6 42-40 74-84 74h-428c-44 0-78-32-84-74z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_drink"
+ ],
+ "defaultCode": 58692,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_drink",
+ "id": 453,
+ "order": 464,
+ "prevSize": 24,
+ "code": 58692,
+ "name": "local_drink"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 453
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 234c-58 0-106 50-106 108s48 106 106 106 106-48 106-106-48-108-106-108zM238 438c0-42 26-78 62-96-36-18-62-54-62-96 0-58 50-108 108-108 22 0 42 8 60 20v-8c0-58 48-108 106-108s106 50 106 108v8c18-12 38-20 60-20 58 0 108 50 108 108 0 42-26 78-62 96 36 18 62 54 62 96 0 58-50 106-108 106-22 0-42-6-60-18v8c0 58-48 106-106 106s-106-48-106-106v-8c-18 12-38 18-60 18-58 0-108-48-108-106zM512 938c-212 0-384-172-384-384 212 0 384 172 384 384zM512 938c0-212 172-384 384-384 0 212-172 384-384 384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_florist"
+ ],
+ "defaultCode": 58693,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_florist",
+ "id": 454,
+ "order": 465,
+ "prevSize": 24,
+ "code": 58693,
+ "name": "local_florist"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 454
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 426c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM512 426v-212h-256v212h256zM844 308c20 20 30 46 30 76v406c0 58-48 106-106 106s-106-48-106-106v-214h-64v320h-428v-682c0-46 40-86 86-86h256c46 0 86 40 86 86v298h42c46 0 86 40 86 86v192c0 24 18 42 42 42s42-18 42-42v-308c-14 6-26 8-42 8-58 0-106-48-106-106 0-46 28-84 68-100l-90-90 46-44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_gas_station"
+ ],
+ "defaultCode": 58694,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_gas_station",
+ "id": 455,
+ "order": 466,
+ "prevSize": 24,
+ "code": 58694,
+ "name": "local_gas_station"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 455
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 768c46 0 84 40 84 86s-38 84-84 84-86-38-86-84 40-86 86-86zM42 86h140l40 84h632c24 0 42 20 42 44 0 8-2 14-6 20l-152 276c-14 26-42 44-74 44h-318l-38 70-2 6c0 6 4 10 10 10h494v86h-512c-46 0-84-40-84-86 0-14 4-28 10-40l58-106-154-324h-86v-84zM298 768c46 0 86 40 86 86s-40 84-86 84-84-38-84-84 38-86 84-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shopping_cart"
+ ],
+ "defaultCode": 59596,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_grocery_store, shopping_cart",
+ "id": 456,
+ "order": 467,
+ "prevSize": 24,
+ "code": 59596,
+ "name": "shopping_cart"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 456
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 598v-172h-170v-170h-172v170h-170v172h170v170h172v-170h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_hospital"
+ ],
+ "defaultCode": 58696,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_hospital",
+ "id": 457,
+ "order": 468,
+ "prevSize": 24,
+ "code": 58696,
+ "name": "local_hospital"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 457
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM298 170c-24 0-42 20-42 44s18 42 42 42 44-18 44-42-20-44-44-44zM426 170c-24 0-42 20-42 44s18 42 42 42 44-18 44-42-20-44-44-44zM768 86c48 0 86 36 86 84v684c0 48-38 84-86 84h-512c-48 0-86-36-86-84v-684c0-48 38-84 86-84h512zM392 718l240-242c66 66 66 176 0 242s-174 66-240 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_laundry_service"
+ ],
+ "defaultCode": 58698,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_laundry_service",
+ "id": 458,
+ "order": 469,
+ "prevSize": 24,
+ "code": 58698,
+ "name": "local_laundry_service"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 458
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 342c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM512 492c100-94 236-150 384-150v468c-148 0-284 58-384 152-100-94-236-152-384-152v-468c148 0 284 56 384 150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_library"
+ ],
+ "defaultCode": 58699,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_library",
+ "id": 459,
+ "order": 470,
+ "prevSize": 24,
+ "code": 58699,
+ "name": "local_library"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 459
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 554c118 0 214-94 214-212h-86c0 70-58 128-128 128s-128-58-128-128h-86c0 118 96 212 214 212zM512 128c-70 0-128 58-128 128h256c0-70-58-128-128-128zM810 256c46 0 86 40 86 86v512c0 46-40 84-86 84h-596c-46 0-86-38-86-84v-512c0-46 40-86 86-86h84c0-118 96-214 214-214s214 96 214 214h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_mall"
+ ],
+ "defaultCode": 58700,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_mall",
+ "id": 460,
+ "order": 471,
+ "prevSize": 24,
+ "code": 58700,
+ "name": "local_mall"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 460
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 384v-86h-86v86h86zM768 554v-84h-86v84h86zM768 726v-86h-86v86h86zM342 384v-86h-86v86h86zM342 554v-84h-86v84h86zM342 726v-86h-86v86h86zM768 128h86v768h-86v-86h-86v86h-340v-86h-86v86h-86v-768h86v86h86v-86h340v86h86v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "theaters"
+ ],
+ "defaultCode": 59610,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_movies, theaters",
+ "id": 461,
+ "order": 472,
+ "prevSize": 24,
+ "code": 59610,
+ "name": "theaters"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 461
+ },
+ {
+ "icon": {
+ "paths": [
+ "M234 298c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM914 494c16 16 24 36 24 60s-8 44-24 60l-300 300c-16 16-36 24-60 24s-44-8-60-24l-384-384c-16-16-24-36-24-60v-300c0-46 38-84 84-84h300c24 0 44 8 60 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_offer"
+ ],
+ "defaultCode": 58702,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_offer",
+ "id": 462,
+ "order": 473,
+ "prevSize": 24,
+ "code": 58702,
+ "name": "local_offer"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 462
+ },
+ {
+ "icon": {
+ "paths": [
+ "M564 470c46 0 84-40 84-86s-38-86-84-86h-138v172h138zM554 128c142 0 256 114 256 256s-114 256-256 256h-128v256h-170v-768h298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_parking"
+ ],
+ "defaultCode": 58703,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_parking",
+ "id": 463,
+ "order": 474,
+ "prevSize": 24,
+ "code": 58703,
+ "name": "local_parking"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 463
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 598v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM896 214v84l-86 256 86 256v86h-768v-86l86-256-86-256v-84h542l62-172 100 38-48 134h112z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_pharmacy"
+ ],
+ "defaultCode": 58704,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_pharmacy",
+ "id": 464,
+ "order": 475,
+ "prevSize": 24,
+ "code": 58704,
+ "name": "local_pharmacy"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 464
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 640c46 0 86-40 86-86s-40-84-86-84-86 38-86 84 40 86 86 86zM298 298c0 46 40 86 86 86s86-40 86-86-40-84-86-84-86 38-86 84zM512 86c152 0 290 66 384 170l-384 682-384-682c94-104 232-170 384-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_pizza"
+ ],
+ "defaultCode": 58706,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_pizza",
+ "id": 465,
+ "order": 476,
+ "prevSize": 24,
+ "code": 58706,
+ "name": "local_pizza"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 465
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 128v170h-512v-170h512zM810 512c24 0 44-18 44-42s-20-44-44-44-42 20-42 44 18 42 42 42zM682 810v-212h-340v212h340zM810 342c70 0 128 58 128 128v256h-170v170h-512v-170h-170v-256c0-70 58-128 128-128h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "print"
+ ],
+ "defaultCode": 59565,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_printshop, print",
+ "id": 466,
+ "order": 477,
+ "prevSize": 24,
+ "code": 59565,
+ "name": "print2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 466
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 790c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM832 406h-106v106h190zM256 790c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM854 342l128 170v214h-86c0 70-58 128-128 128s-128-58-128-128h-256c0 70-58 128-128 128s-128-58-128-128h-86v-470c0-46 40-86 86-86h598v172h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_shipping"
+ ],
+ "defaultCode": 58712,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_shipping",
+ "id": 467,
+ "order": 478,
+ "prevSize": 24,
+ "code": 58712,
+ "name": "local_shipping"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 467
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 470h596l-64-192h-468zM746 682c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 682c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM808 256l88 256v342c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-44h-512v44c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-342l88-256c8-26 34-42 62-42h106v-86h256v86h106c28 0 54 16 62 42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "local_taxi"
+ ],
+ "defaultCode": 58713,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "local_taxi",
+ "id": 468,
+ "order": 479,
+ "prevSize": 24,
+ "code": 58713,
+ "name": "local_taxi"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 468
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 640v-86h-84v86h84zM810 810v-84h-84v84h84zM554 298v-84h-84v84h84zM554 470v-86h-84v86h84zM554 640v-86h-84v86h84zM554 810v-84h-84v84h84zM298 470v-86h-84v86h84zM298 640v-86h-84v86h84zM298 810v-84h-84v84h84zM640 470h256v426h-768v-598h256v-84l128-128 128 128v256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "location_city"
+ ],
+ "defaultCode": 59377,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "location_city",
+ "id": 469,
+ "order": 480,
+ "prevSize": 24,
+ "code": 59377,
+ "name": "location_city"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 469
+ },
+ {
+ "icon": {
+ "paths": [
+ "M500 490c118.353 116.98 236.568 234.098 354 352l-54 54-144-142c-72 106-144 184-144 184s-298-330-298-554c0-22 4-44 8-66l-136-136 54-54 356 356zM512 278c-32 0-58 14-78 36l-138-136c54-56 132-92 216-92 166 0 298 132 298 298 0 72-30 154-72 234l-154-156c22-20 34-46 34-78 0-58-48-106-106-106z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "location_off"
+ ],
+ "defaultCode": 57543,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "location_off",
+ "id": 470,
+ "order": 481,
+ "prevSize": 24,
+ "code": 57543,
+ "name": "location_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 470
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 490c58 0 106-48 106-106s-48-106-106-106-106 48-106 106 48 106 106 106zM512 86c166 0 298 132 298 298 0 224-298 554-298 554s-298-330-298-554c0-166 132-298 298-298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "room",
+ "place"
+ ],
+ "defaultCode": 59572,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "location_on, place, room",
+ "id": 471,
+ "order": 482,
+ "prevSize": 24,
+ "code": 59572,
+ "name": "room"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 471
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 854v-428h-512v428h512zM768 342c46 0 86 38 86 84v428c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-428c0-46 40-84 86-84h388v-86c0-72-60-132-132-132s-132 60-132 132h-82c0-118 96-214 214-214s214 96 214 214v86h42zM512 726c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lock_open"
+ ],
+ "defaultCode": 59544,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "lock_open",
+ "id": 472,
+ "order": 483,
+ "prevSize": 24,
+ "code": 59544,
+ "name": "lock_open"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 472
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 854v-428h-512v428h512zM380 256v86h264v-86c0-72-60-132-132-132s-132 60-132 132zM768 342c46 0 86 38 86 84v428c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-428c0-46 40-84 86-84h42v-86c0-118 96-214 214-214s214 96 214 214v86h42zM512 726c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "lock_outline"
+ ],
+ "defaultCode": 59545,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "lock_outline",
+ "id": 473,
+ "order": 484,
+ "prevSize": 24,
+ "code": 59545,
+ "name": "lock_outline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 473
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 256c258 0 470 212 470 470h-86c0-212-172-384-384-384s-384 172-384 384h-86c0-258 212-470 470-470zM512 426c164 0 298 136 298 300h-84c0-118-96-214-214-214s-214 96-214 214h-84c0-164 134-300 298-300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks"
+ ],
+ "defaultCode": 58364,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "looks",
+ "id": 474,
+ "order": 485,
+ "prevSize": 24,
+ "code": 58364,
+ "name": "looks"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 474
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 448v-64c0-48-38-86-84-86h-172v86h172v86h-86v84h86v86h-172v86h172c46 0 84-38 84-86v-64c0-36-28-64-64-64 36 0 64-28 64-64zM812 128c46 0 84 40 84 86v596c0 46-38 86-84 86h-598c-46 0-86-40-86-86v-596c0-46 40-86 86-86h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks_3"
+ ],
+ "defaultCode": 58363,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "looks_3",
+ "id": 475,
+ "order": 486,
+ "prevSize": 24,
+ "code": 58363,
+ "name": "looks_3"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 475
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 726v-428h-86v172h-84v-172h-86v256h170v172h86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks_4"
+ ],
+ "defaultCode": 58365,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "looks_4",
+ "id": 476,
+ "order": 487,
+ "prevSize": 24,
+ "code": 58365,
+ "name": "looks_4"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 476
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 384v-86h-256v256h170v86h-170v86h170c46 0 86-38 86-86v-86c0-48-40-84-86-84h-84v-86h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks_5"
+ ],
+ "defaultCode": 58366,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "looks_5",
+ "id": 477,
+ "order": 488,
+ "prevSize": 24,
+ "code": 58366,
+ "name": "looks_5"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 477
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 384v-86h-170c-46 0-86 38-86 86v256c0 48 40 86 86 86h84c46 0 86-38 86-86v-86c0-48-40-84-86-84h-84v-86h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM470 640v-86h84v86h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks_6"
+ ],
+ "defaultCode": 58367,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "looks_6",
+ "id": 478,
+ "order": 489,
+ "prevSize": 24,
+ "code": 58367,
+ "name": "looks_6"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 478
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 726v-428h-172v86h86v342h86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks_one"
+ ],
+ "defaultCode": 58368,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "looks_one",
+ "id": 479,
+ "order": 490,
+ "prevSize": 24,
+ "code": 58368,
+ "name": "looks_one"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 479
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 470v-86c0-48-40-86-86-86h-170v86h170v86h-84c-46 0-86 36-86 84v172h256v-86h-170v-86h84c46 0 86-36 86-84zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "looks_two"
+ ],
+ "defaultCode": 58369,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "looks_two",
+ "id": 480,
+ "order": 491,
+ "prevSize": 24,
+ "code": 58369,
+ "name": "looks_two"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 480
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 768v-128l170 170-170 172v-128c-188 0-342-154-342-342 0-66 20-130 54-182l62 62c-20 36-30 76-30 120 0 142 114 256 256 256zM512 170c188 0 342 154 342 342 0 66-20 130-54 182l-62-62c20-36 30-76 30-120 0-142-114-256-256-256v128l-170-170 170-172v128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sync"
+ ],
+ "defaultCode": 58919,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "loop, sync",
+ "id": 481,
+ "order": 492,
+ "prevSize": 24,
+ "code": 58919,
+ "name": "sync"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 481
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426v342c0 46-38 84-84 84h-342c-236 0-426-190-426-426s190-426 426-426zM554 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "loupe"
+ ],
+ "defaultCode": 58370,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "loupe",
+ "id": 482,
+ "order": 493,
+ "prevSize": 24,
+ "code": 58370,
+ "name": "loupe"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 482
+ },
+ {
+ "icon": {
+ "paths": [
+ "M86 490c0-152 124-276 276-276h150v84h-150c-106 0-192 86-192 192s86 192 192 192h22v-84l128 128-128 128v-86h-22c-152 0-276-126-276-278zM598 682h340v86h-340v-86zM598 448h340v86h-340v-86zM598 214h340v84h-340v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "low_priority"
+ ],
+ "defaultCode": 57709,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "low_priority",
+ "id": 483,
+ "order": 494,
+ "prevSize": 24,
+ "code": 57709,
+ "name": "low_priority"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 483
+ },
+ {
+ "icon": {
+ "paths": [
+ "M736 652c20-20 32-46 32-76 0-58-48-106-106-106-30 0-56 10-76 30l-32 32-30-32c-20-20-46-30-76-30-58 0-106 48-106 106 0 30 10 56 30 76l182 182zM234 298c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM914 494c16 16 24 36 24 60s-8 44-24 60l-300 300c-16 16-36 24-60 24s-44-8-60-24l-384-384c-16-16-24-36-24-60v-300c0-46 38-84 84-84h300c24 0 44 8 60 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "loyalty"
+ ],
+ "defaultCode": 59546,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "loyalty",
+ "id": 484,
+ "order": 495,
+ "prevSize": 24,
+ "code": 59546,
+ "name": "loyalty"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 484
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 470l342-214h-684zM854 768v-426l-342 212-342-212v426h684zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mail_outline"
+ ],
+ "defaultCode": 57569,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "mail_outline",
+ "id": 485,
+ "order": 496,
+ "prevSize": 24,
+ "code": 57569,
+ "name": "mail_outline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 485
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 810v-506l-256-90v506zM874 128c12 0 22 10 22 22v644c0 10-8 18-16 20l-240 82-256-90-228 88-6 2c-12 0-22-10-22-22v-644c0-10 8-18 16-20l240-82 256 90 228-88z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "map"
+ ],
+ "defaultCode": 58715,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "map",
+ "id": 486,
+ "order": 497,
+ "prevSize": 24,
+ "code": 58715,
+ "name": "map2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 486
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 256c46 0 84 40 84 86v512c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-512c0-46 38-86 84-86h86v-256h342v170h-256v342h84v-256h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "markunread_mailbox"
+ ],
+ "defaultCode": 59547,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "markunread_mailbox",
+ "id": 487,
+ "order": 498,
+ "prevSize": 24,
+ "code": 59547,
+ "name": "markunread_mailbox"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 487
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 726v-428h-428v428h428zM896 470h-86v84h86v86h-86v86c0 46-38 84-84 84h-86v86h-86v-86h-84v86h-86v-86h-86c-46 0-84-38-84-84v-86h-86v-86h86v-84h-86v-86h86v-86c0-46 38-84 84-84h86v-86h86v86h84v-86h86v86h86c46 0 84 38 84 84v86h86v86zM554 554v-84h-84v84h84zM640 384v256h-256v-256h256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "memory"
+ ],
+ "defaultCode": 58146,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "memory",
+ "id": 488,
+ "order": 499,
+ "prevSize": 24,
+ "code": 58146,
+ "name": "memory"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 488
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 256h768v86h-768v-86zM128 554v-84h768v84h-768zM128 768v-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "menu"
+ ],
+ "defaultCode": 58834,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "menu",
+ "id": 489,
+ "order": 500,
+ "prevSize": 24,
+ "code": 58834,
+ "name": "menu"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 489
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "message"
+ ],
+ "defaultCode": 57545,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "message",
+ "id": 490,
+ "order": 501,
+ "prevSize": 24,
+ "code": 57545,
+ "name": "message"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 490
+ },
+ {
+ "icon": {
+ "paths": [
+ "M738 470h72c0 146-116 266-256 286v140h-84v-140c-140-20-256-140-256-286h72c0 128 108 216 226 216s226-88 226-216zM512 598c-70 0-128-58-128-128v-256c0-70 58-128 128-128s128 58 128 128v256c0 70-58 128-128 128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mic"
+ ],
+ "defaultCode": 57385,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "mic",
+ "id": 491,
+ "order": 502,
+ "prevSize": 24,
+ "code": 57385,
+ "name": "mic"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 491
+ },
+ {
+ "icon": {
+ "paths": [
+ "M738 470h72c0 146-116 266-256 286v140h-84v-140c-140-20-256-140-256-286h72c0 128 108 216 226 216s226-88 226-216zM460 210v264c0 28 24 50 52 50s50-22 50-50l2-264c0-28-24-52-52-52s-52 24-52 52zM512 598c-70 0-128-58-128-128v-256c0-70 58-128 128-128s128 58 128 128v256c0 70-58 128-128 128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mic_none"
+ ],
+ "defaultCode": 57386,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "mic_none",
+ "id": 492,
+ "order": 503,
+ "prevSize": 24,
+ "code": 57386,
+ "name": "mic_none"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 492
+ },
+ {
+ "icon": {
+ "paths": [
+ "M182 128l714 714-54 54-178-178c-32 20-72 32-110 38v140h-84v-140c-140-20-256-140-256-286h72c0 128 108 216 226 216 34 0 68-8 98-22l-70-70c-8 2-18 4-28 4-70 0-128-58-128-128v-32l-256-256zM640 476l-256-254v-8c0-70 58-128 128-128s128 58 128 128v262zM810 470c0 50-14 98-38 140l-52-54c12-26 18-54 18-86h72z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mic_off"
+ ],
+ "defaultCode": 57387,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "mic_off",
+ "id": 493,
+ "order": 504,
+ "prevSize": 24,
+ "code": 57387,
+ "name": "mic_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 493
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 598h596l-192-256-148 192-108-128zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mms"
+ ],
+ "defaultCode": 58904,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "mms",
+ "id": 494,
+ "order": 505,
+ "prevSize": 24,
+ "code": 58904,
+ "name": "mms"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 494
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938 170v768l-170-170h-598c-46 0-84-40-84-86v-512c0-46 38-84 84-84h684c46 0 84 38 84 84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mode_comment"
+ ],
+ "defaultCode": 57939,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "mode_comment",
+ "id": 495,
+ "order": 506,
+ "prevSize": 24,
+ "code": 57939,
+ "name": "mode_comment"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 495
+ },
+ {
+ "icon": {
+ "paths": [
+ "M572 772c74-14 134-56 134-134 0-108-94-146-180-168s-112-46-112-82c0-40 38-70 102-70 68 0 92 32 94 80h84c-2-66-42-124-122-144v-84h-114v84c-74 16-132 62-132 136 0 88 72 130 178 156 96 22 114 56 114 92 0 26-18 68-102 68-78 0-110-36-114-80h-84c4 82 68 128 140 144v84h114v-82zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "monetization_on"
+ ],
+ "defaultCode": 57955,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "monetization_on",
+ "id": 496,
+ "order": 507,
+ "prevSize": 24,
+ "code": 57955,
+ "name": "monetization_on"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 496
+ },
+ {
+ "icon": {
+ "paths": [
+ "M228 174l622 624-54 54-94-96c-26 24-64 40-104 48v92h-128v-92c-82-18-152-70-158-164h94c4 50 40 90 128 90 58 0 88-20 102-40l-150-148c-100-30-166-80-166-168l-146-146zM534 294c-26 0-48 4-66 12l-62-62c20-10 42-18 64-24v-92h128v94c90 22 134 88 136 162h-94c-2-54-30-90-106-90z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "money_off"
+ ],
+ "defaultCode": 57948,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "money_off",
+ "id": 497,
+ "order": 508,
+ "prevSize": 24,
+ "code": 57948,
+ "name": "money_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 497
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 810v-512h-342v44c120 0 214 92 214 212s-94 214-214 214v-76c-76 0-136-62-136-138s60-136 136-136v274c76 0 136-62 136-138s-60-136-136-136v-76c-120 0-214 92-214 212s94 214 214 214v42h342zM854 214c46 0 84 38 84 84v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-84 84-84h138l76-86h256l76 86h138z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "monochrome_photos"
+ ],
+ "defaultCode": 58371,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "monochrome_photos",
+ "id": 498,
+ "order": 509,
+ "prevSize": 24,
+ "code": 58371,
+ "name": "monochrome_photos"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 498
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 598c100 0 184 60 218 148h-436c34-88 118-148 218-148zM362 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM662 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mood_bad"
+ ],
+ "defaultCode": 59379,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "mood_bad",
+ "id": 499,
+ "order": 510,
+ "prevSize": 24,
+ "code": 59379,
+ "name": "mood_bad"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 499
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM598 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM384 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM938 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-636c-30 0-56-16-72-38l-230-346 230-346c16-22 38-38 68-38h640z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "more"
+ ],
+ "defaultCode": 58905,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "more",
+ "id": 500,
+ "order": 511,
+ "prevSize": 24,
+ "code": 58905,
+ "name": "more"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 500
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM768 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM256 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "more_horiz"
+ ],
+ "defaultCode": 58835,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "more_horiz",
+ "id": 501,
+ "order": 512,
+ "prevSize": 24,
+ "code": 58835,
+ "name": "more_horiz"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 501
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 682c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 342c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "more_vert"
+ ],
+ "defaultCode": 58836,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "more_vert",
+ "id": 502,
+ "order": 513,
+ "prevSize": 24,
+ "code": 58836,
+ "name": "more_vert"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 502
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 726c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM334 640h-120v-86h120c-18-50-66-84-120-84-70 0-128 58-128 128s58 128 128 128c54 0 102-36 120-86zM830 386c110 8 194 98 194 212 0 120-94 212-214 212s-212-92-212-212c0-26 4-52 12-76l-118 118h-70c-20 98-104 170-208 170-120 0-214-92-214-212s94-214 214-214h494l-86-86h-152v-84h188z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "motorcycle"
+ ],
+ "defaultCode": 59675,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "motorcycle",
+ "id": 503,
+ "order": 514,
+ "prevSize": 24,
+ "code": 59675,
+ "name": "motorcycle2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 503
+ },
+ {
+ "icon": {
+ "paths": [
+ "M470 46v338h-300c0-174 132-318 300-338zM170 640v-170h684v170c0 188-154 342-342 342s-342-154-342-342zM554 46c168 20 300 164 300 338h-300v-338z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "mouse"
+ ],
+ "defaultCode": 58147,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "mouse",
+ "id": 504,
+ "order": 515,
+ "prevSize": 24,
+ "code": 58147,
+ "name": "mouse"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 504
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 426l-170 172-170-172h84v-128h172v128h84zM810 640v-426h-598v426h172c0 70 58 128 128 128s128-58 128-128h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-598c-48 0-84-40-84-86v-596c0-46 36-86 84-86h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "move_to_inbox"
+ ],
+ "defaultCode": 57704,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "move_to_inbox",
+ "id": 505,
+ "order": 516,
+ "prevSize": 24,
+ "code": 57704,
+ "name": "move_to_inbox"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 505
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 170h170v598c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h44l84 172h128l-84-172h84l86 172h128l-86-172h86l86 172h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "movie_creation"
+ ],
+ "defaultCode": 58372,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "movie, movie_creation",
+ "id": 506,
+ "order": 517,
+ "prevSize": 24,
+ "code": 58372,
+ "name": "movie_creation"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 506
+ },
+ {
+ "icon": {
+ "paths": [
+ "M722 510l88-40-88-40-40-88-40 88-88 40 88 40 40 88zM480 650l118-52-118-54-54-118-52 118-118 54 118 52 52 118zM768 170h170v598c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h44l84 128h128l-84-128h84l86 128h128l-86-128h86l86 128h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "movie_filter"
+ ],
+ "defaultCode": 58426,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "movie_filter",
+ "id": 507,
+ "order": 518,
+ "prevSize": 24,
+ "code": 58426,
+ "name": "movie_filter"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 507
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938 296l-130 146c46 74 78 164 88 262h-86c-8-70-30-136-62-194l-172 194-170-172-256 256-64-64 320-320 170 172 122-140c-72-84-172-138-288-138-100 0-192 40-264 104l-60-60c88-78 200-128 324-128 138 0 258 60 346 158l122-136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "multiline_chart"
+ ],
+ "defaultCode": 59103,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "multiline_chart",
+ "id": 508,
+ "order": 519,
+ "prevSize": 24,
+ "code": 59103,
+ "name": "multiline_chart"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 508
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128h256v170h-170v428c0 94-78 170-172 170s-170-76-170-170 76-172 170-172c32 0 60 10 86 24v-450z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "music_note"
+ ],
+ "defaultCode": 58373,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "music_note",
+ "id": 509,
+ "order": 520,
+ "prevSize": 24,
+ "code": 58373,
+ "name": "music_note"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 509
+ },
+ {
+ "icon": {
+ "paths": [
+ "M342 640c0-70 58-128 128-128 14 0 28 4 42 8v-264h214v86h-128v300c0 70-58 126-128 126s-128-58-128-128zM896 810v-596h-768v596h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "music_video"
+ ],
+ "defaultCode": 57443,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "music_video",
+ "id": 510,
+ "order": 521,
+ "prevSize": 24,
+ "code": 57443,
+ "name": "music_video"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 510
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 688v166h256v84h-596v-84h256v-168c-142-24-250-146-250-294 0-166 134-300 300-300s298 134 298 300c0 154-116 278-264 296z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "nature"
+ ],
+ "defaultCode": 58374,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "nature",
+ "id": 511,
+ "order": 522,
+ "prevSize": 24,
+ "code": 58374,
+ "name": "nature"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 511
+ },
+ {
+ "icon": {
+ "paths": [
+ "M192 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM946 392c0 154-116 278-264 296v166h128v84h-682v-212h-42v-172c0-24 18-42 42-42h128c24 0 42 18 42 42v172h-42v128h342v-168c-142-24-250-146-250-294 0-166 134-300 300-300s298 134 298 300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "nature_people"
+ ],
+ "defaultCode": 58375,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "nature_people",
+ "id": 512,
+ "order": 523,
+ "prevSize": 24,
+ "code": 58375,
+ "name": "nature_people"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 512
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 86l320 780-30 30-290-128-290 128-30-30z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "navigation"
+ ],
+ "defaultCode": 58717,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "navigation",
+ "id": 513,
+ "order": 524,
+ "prevSize": 24,
+ "code": 58717,
+ "name": "navigation"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 513
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 128l-322 768h-42l-112-292-292-112v-42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "near_me"
+ ],
+ "defaultCode": 58729,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "near_me",
+ "id": 514,
+ "order": 525,
+ "prevSize": 24,
+ "code": 58729,
+ "name": "near_me"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 514
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938 938h-852l852-852v852z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "network_cell"
+ ],
+ "defaultCode": 57785,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "network_cell",
+ "id": 515,
+ "order": 526,
+ "prevSize": 24,
+ "code": 57785,
+ "name": "network_cell"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 515
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 554c86-86 200-126 312-122l-56 122c-62 8-124 38-172 86zM726 640c-16-16-34-30-52-42l24-124c40 20 78 46 112 80zM896 470c-52-52-112-92-176-118l22-120c88 32 170 82 240 152zM42 384c160-160 380-220 586-184l-50 114c-160-20-328 34-450 156zM678 214c12 0 22 8 22 20l-104 550v2c-8 38-44 68-84 68-48 0-86-38-86-86 0-14 4-30 10-42l222-496c3.146-9.438 9.124-16 20-16z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "network_check"
+ ],
+ "defaultCode": 58944,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "network_check",
+ "id": 516,
+ "order": 527,
+ "prevSize": 24,
+ "code": 58944,
+ "name": "network_check"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 516
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 682v-64c0-36-28-64-64-64s-64 28-64 64v64h128zM938 682c24 0 44 20 44 44v170c0 24-20 42-44 42h-212c-24 0-44-18-44-42v-170c0-24 20-44 44-44v-64c0-58 48-106 106-106s106 48 106 106v64zM832 426c-106 0-192 86-192 192v12c-26 24-42 58-42 96v128h-556l812-812v386c-8 0-14-2-22-2z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "network_locked"
+ ],
+ "defaultCode": 58906,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "network_locked",
+ "id": 517,
+ "order": 528,
+ "prevSize": 24,
+ "code": 58906,
+ "name": "network_locked"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 517
+ },
+ {
+ "icon": {
+ "paths": [
+ "M872.5 466.828c0.568 0.445 1.068 0.837 1.5 1.172l-362 448-362-448c0.431-0.335 0.931-0.727 1.5-1.172l-135.5-168.828c20-14 210-170 496-170s476 156 496 170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "network_wifi"
+ ],
+ "defaultCode": 57786,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "network_wifi",
+ "id": 518,
+ "order": 529,
+ "prevSize": 24,
+ "code": 57786,
+ "name": "network_wifi"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 518
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 554v-256h-84v256h84zM554 726v-86h-84v86h84zM982 512l-104 118 14 158-154 34-80 136-146-62-146 62-80-134-154-36 14-158-104-118 104-120-14-156 154-34 80-136 146 62 146-62 80 136 154 34-14 158z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "new_releases"
+ ],
+ "defaultCode": 57393,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "new_releases",
+ "id": 519,
+ "order": 530,
+ "prevSize": 24,
+ "code": 57393,
+ "name": "new_releases"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 519
+ },
+ {
+ "icon": {
+ "paths": [
+ "M470 790l170-172-170-170-44 42 128 128-128 128zM426 214v84h172v-84h-172zM598 128c46.645 0 84 38.997 84 86v84h172c46 0 84 40 84 86v470c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-470c0-46 38-86 84-86h172v-84c0-46 38-86 84-86h172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "next_week"
+ ],
+ "defaultCode": 57706,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "next_week",
+ "id": 520,
+ "order": 531,
+ "prevSize": 24,
+ "code": 57706,
+ "name": "next_week"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 520
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 256v512h-512v-512h170v86h-84v340h340v-340h-128v96c26 14 44 42 44 74 0 46-40 86-86 86s-86-40-86-86c0-32 18-60 44-74v-96c0-46 38-86 84-86h214zM854 854v-684h-684v684h684zM854 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-684c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "nfc"
+ ],
+ "defaultCode": 57787,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "nfc",
+ "id": 521,
+ "order": 532,
+ "prevSize": 24,
+ "code": 57787,
+ "name": "nfc"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 521
+ },
+ {
+ "icon": {
+ "paths": [
+ "M380 256v52l-78-78c12-106 100-188 210-188 118 0 214 96 214 214v86h42c46 0 86 38 86 84v356l-442-440h232v-86c0-72-60-132-132-132s-132 60-132 132zM896 930l-52 52-48-48c-8 2-18 4-28 4h-512c-46 0-86-38-86-84v-428c0-32 20-60 46-74l-88-86 52-52z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "no_encryption"
+ ],
+ "defaultCode": 58945,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "no_encryption",
+ "id": 522,
+ "order": 533,
+ "prevSize": 24,
+ "code": 58945,
+ "name": "no_encryption"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 522
+ },
+ {
+ "icon": {
+ "paths": [
+ "M156 166l746 744-56 56-80-82c-12 6-26 12-40 12h-428c-46 0-84-40-84-86v-478l-112-112zM810 214v498l-484-484 100-100h300c46 0 84 40 84 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_cellular_no_sim"
+ ],
+ "defaultCode": 57806,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "no_sim, signal_cellular_no_sim",
+ "id": 523,
+ "order": 534,
+ "prevSize": 24,
+ "code": 57806,
+ "name": "signal_cellular_no_sim"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 523
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 234v236h234zM938 426v342c0 46-38 84-84 84l-684 2c-46 0-84-40-84-86v-512c0-46 38-86 84-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "note"
+ ],
+ "defaultCode": 57455,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "note",
+ "id": 524,
+ "order": 535,
+ "prevSize": 24,
+ "code": 57455,
+ "name": "note"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 524
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 384h236l-236-234v234zM682 682v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM598 86l256 256v512c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "note_add"
+ ],
+ "defaultCode": 59548,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "note_add",
+ "id": 525,
+ "order": 536,
+ "prevSize": 24,
+ "code": 59548,
+ "name": "note_add"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 525
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 682l86 86v42h-684v-42l86-86v-212c0-132 70-240 192-270v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 140 192 270v212zM512 938c-48 0-86-38-86-84h172c0 46-40 84-86 84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "notifications"
+ ],
+ "defaultCode": 59380,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "notifications",
+ "id": 526,
+ "order": 537,
+ "prevSize": 24,
+ "code": 59380,
+ "name": "notifications"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 526
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 938c-48 0-86-38-86-84h170c0 49.675-37.225 84-84 84zM768 470v212l86 86v42h-684v-42l86-86v-212c0-132 70-240 192-270v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 140 192 270zM852 448c-6-114-64-212-150-274l60-60c102 78 170 198 176 334h-86zM324 174c-88 62-146 160-152 274h-86c6-136 74-256 176-334z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "notifications_active"
+ ],
+ "defaultCode": 59383,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "notifications_active",
+ "id": 527,
+ "order": 538,
+ "prevSize": 24,
+ "code": 59383,
+ "name": "notifications_active"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 527
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 726v-256c0-106-64-192-170-192s-170 86-170 192v256h340zM768 682l86 86v42h-684v-42l86-86v-212c0-132 70-240 192-270v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 140 192 270v212zM512 938c-46 0-86-38-86-84h172c0 46-40 84-86 84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "notifications_none"
+ ],
+ "defaultCode": 59381,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "notifications_none",
+ "id": 528,
+ "order": 539,
+ "prevSize": 24,
+ "code": 59381,
+ "name": "notifications_none"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 528
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 626l-382-402c10-4 20-10 30-14h2l12-6c6-2 12-2 18-4v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 138 192 270v156zM512 938c-48 0-86-36-86-84h172c0 48-38 84-86 84zM334 262c187.235 193.432 375.34 385.994 562 580l-54 54-86-86h-586v-42l86-86v-214c0-54 12-104 34-146l-120-118 54-56z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "notifications_off"
+ ],
+ "defaultCode": 59382,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "notifications_off",
+ "id": 529,
+ "order": 540,
+ "prevSize": 24,
+ "code": 59382,
+ "name": "notifications_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 529
+ },
+ {
+ "icon": {
+ "paths": [
+ "M618 418v-76h-212v76h118l-118 146v76h212v-76h-118zM768 682l86 86v42h-684v-42l86-86v-212c0-130 70-240 192-270v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 140 192 270v212zM512 938c-48 0-86-38-86-84h172c0 46-40 84-86 84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "notifications_paused"
+ ],
+ "defaultCode": 59384,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "notifications_paused",
+ "id": 530,
+ "order": 541,
+ "prevSize": 24,
+ "code": 59384,
+ "name": "notifications_paused"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 530
+ },
+ {
+ "icon": {
+ "paths": [
+ "M440 598l286-286-60-60-226 226-82-82-60 60zM726 768v-86h-428v86h428zM512 86c234 0 426 192 426 426s-192 426-426 426-426-192-426-426 192-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "offline_pin"
+ ],
+ "defaultCode": 59658,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "offline_pin",
+ "id": 531,
+ "order": 542,
+ "prevSize": 24,
+ "code": 59658,
+ "name": "offline_pin"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 531
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 470l-298 170v-342zM896 726v-512h-768v512h768zM896 128c46 0 86 38 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ondemand_video"
+ ],
+ "defaultCode": 58938,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "ondemand_video",
+ "id": 532,
+ "order": 543,
+ "prevSize": 24,
+ "code": 58938,
+ "name": "ondemand_video"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 532
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 598h512c0-86-28-138-76-186l-180-188-180 186c-48 48-76 102-76 188zM754 342c66 66 100 154 100 240s-34 176-100 242-154 100-242 100-176-34-242-100-100-156-100-242 34-174 100-240l242-242z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "opacity"
+ ],
+ "defaultCode": 59676,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "opacity",
+ "id": 533,
+ "order": 544,
+ "prevSize": 24,
+ "code": 59676,
+ "name": "opacity"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 533
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 426l170 172h-128v256h-84v-256h-128zM810 170c48 0 86 40 86 86v512c0 46-40 86-86 86h-170v-86h170v-426h-596v426h170v86h-170c-48 0-86-40-86-86v-512c0-46 38-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "open_in_browser"
+ ],
+ "defaultCode": 59549,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "open_in_browser",
+ "id": 534,
+ "order": 545,
+ "prevSize": 24,
+ "code": 59549,
+ "name": "open_in_browser"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 534
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 640v128h128l-214 214-214-214h128v-128h172zM982 512l-214 214v-128h-128v-172h128v-128zM384 426v172h-128v128l-214-214 214-214v128h128zM426 384v-128h-128l214-214 214 214h-128v128h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "open_with"
+ ],
+ "defaultCode": 59551,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "open_with",
+ "id": 535,
+ "order": 546,
+ "prevSize": 24,
+ "code": 59551,
+ "name": "open_with"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 535
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 128c46 0 86 40 86 86v256h-214l44-172-172 44v-214h256zM726 726l-44-172h214v256c0 46-40 86-86 86h-256v-214zM342 554l-44 172 172-44v214h-256c-46 0-86-40-86-86v-256h214zM128 214c0-46 40-86 86-86h256v214l-172-44 44 172h-214v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pages"
+ ],
+ "defaultCode": 59385,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "pages",
+ "id": 536,
+ "order": 547,
+ "prevSize": 24,
+ "code": 59385,
+ "name": "pages"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 536
+ },
+ {
+ "icon": {
+ "paths": [
+ "M716 776l60-60-124-124c18-30 30-64 30-102 0-106-86-192-192-192s-192 86-192 192 86 192 192 192c38 0 72-12 102-30zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684zM490 384c58 0 108 48 108 106s-50 108-108 108-106-50-106-108 48-106 106-106z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pageview"
+ ],
+ "defaultCode": 59552,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "pageview",
+ "id": 537,
+ "order": 548,
+ "prevSize": 24,
+ "code": 59552,
+ "name": "pageview"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 537
+ },
+ {
+ "icon": {
+ "paths": [
+ "M982 234v620c0 94-78 170-172 170h-310c-46 0-90-18-122-50l-336-342s54-52 56-52c10-8 22-12 34-12 10 0 18 2 26 6 2 0 184 104 184 104v-508c0-36 28-64 64-64s64 28 64 64v300h42v-406c0-36 28-64 64-64s64 28 64 64v406h42v-364c0-36 28-64 64-64s64 28 64 64v364h44v-236c0-36 28-64 64-64s64 28 64 64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pan_tool"
+ ],
+ "defaultCode": 59685,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "pan_tool",
+ "id": 538,
+ "order": 549,
+ "prevSize": 24,
+ "code": 59685,
+ "name": "pan_tool"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 538
+ },
+ {
+ "icon": {
+ "paths": [
+ "M362 534l-148 192h596l-192-256-148 192zM982 768c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-512c0-46 40-86 86-86h768c46 0 86 40 86 86v512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "panorama"
+ ],
+ "defaultCode": 58379,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "panorama",
+ "id": 539,
+ "order": 550,
+ "prevSize": 24,
+ "code": 58379,
+ "name": "panorama"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 539
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "radio_button_unchecked"
+ ],
+ "defaultCode": 59446,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "panorama_fish_eye, radio_button_unchecked",
+ "id": 540,
+ "order": 551,
+ "prevSize": 24,
+ "code": 59446,
+ "name": "radio_button_unchecked"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 540
+ },
+ {
+ "icon": {
+ "paths": [
+ "M914 170c14 0 24 10 24 28v628c0 18-10 28-24 28-4 0-8-2-12-4-126-46-258-70-390-70s-264 24-390 70c-4 2-8 4-12 4-14 0-24-12-24-28v-628c0-18 10-28 24-28 4 0 8 2 12 4 126 46 258 70 390 70s264-24 390-70c4-2 8-4 12-4zM854 280c-110 34-226 48-342 48s-232-16-342-48v464c110-32 226-48 342-48s232 16 342 48v-464z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "panorama_horizontal"
+ ],
+ "defaultCode": 58381,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "panorama_horizontal",
+ "id": 541,
+ "order": 552,
+ "prevSize": 24,
+ "code": 58381,
+ "name": "panorama_horizontal"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 541
+ },
+ {
+ "icon": {
+ "paths": [
+ "M280 854h464c-32-110-48-226-48-342s16-232 48-342h-464c32 110 48 226 48 342s-16 232-48 342zM850 902c2 4 4 8 4 12 0 14-12 24-28 24h-628c-18 0-28-10-28-24 0-4 2-8 4-12 46-126 70-258 70-390s-24-264-70-390c-2-4-4-8-4-12 0-14 10-24 28-24h628c18 0 28 10 28 24 0 4-2 8-4 12-46 126-70 258-70 390s24 264 70 390z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "panorama_vertical"
+ ],
+ "defaultCode": 58382,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "panorama_vertical",
+ "id": 542,
+ "order": 553,
+ "prevSize": 24,
+ "code": 58382,
+ "name": "panorama_vertical"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 542
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 170c116 0 224 12 340 32l38 6 12 38c24 88 36 178 36 266s-12 178-36 266l-12 38-38 6c-116 20-224 32-340 32s-224-12-340-32l-38-6-12-38c-24-88-36-178-36-266s12-178 36-266l12-38 38-6c116-20 224-32 340-32zM512 256c-104 0-202 10-312 28-20 76-30 152-30 228s10 152 30 228c110 18 208 28 312 28s202-10 312-28c20-76 30-152 30-228s-10-152-30-228c-110-18-208-28-312-28z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "panorama_wide_angle"
+ ],
+ "defaultCode": 58383,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "panorama_wide_angle",
+ "id": 543,
+ "order": 554,
+ "prevSize": 24,
+ "code": 58383,
+ "name": "panorama_wide_angle"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 543
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 726c118 0 214-96 214-214 0-14-2-28-4-42h-90c4 14 8 28 8 42 0 70-58 128-128 128h-170c40 52 100 86 170 86zM512 298c-118 0-214 96-214 214 0 14 2 28 4 42h90c-4-14-8-28-8-42 0-70 58-128 128-128h170c-40-52-100-86-170-86zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h136l78-84h256l78 84h136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "party_mode"
+ ],
+ "defaultCode": 59386,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "party_mode",
+ "id": 544,
+ "order": 555,
+ "prevSize": 24,
+ "code": 59386,
+ "name": "party_mode"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 544
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 214h170v596h-170v-596zM256 810v-596h170v596h-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause"
+ ],
+ "defaultCode": 57396,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "pause",
+ "id": 545,
+ "order": 556,
+ "prevSize": 24,
+ "code": 57396,
+ "name": "pause2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 545
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 682v-340h-86v340h86zM470 682v-340h-86v340h86zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause_circle_filled"
+ ],
+ "defaultCode": 57397,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "pause_circle_filled",
+ "id": 546,
+ "order": 557,
+ "prevSize": 24,
+ "code": 57397,
+ "name": "pause_circle_filled"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 546
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 682v-340h86v340h-86zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM384 682v-340h86v340h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pause_circle_outline"
+ ],
+ "defaultCode": 57398,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "pause_circle_outline",
+ "id": 547,
+ "order": 558,
+ "prevSize": 24,
+ "code": 57398,
+ "name": "pause_circle_outline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 547
+ },
+ {
+ "icon": {
+ "paths": [
+ "M704 278c-46 0-86 38-86 84s40 86 86 86 86-40 86-86-40-84-86-84zM704 512c-82 0-150-68-150-150s68-148 150-148 150 66 150 148-68 150-150 150zM320 278c-46 0-86 38-86 84s40 86 86 86 86-40 86-86-40-84-86-84zM320 512c-82 0-150-68-150-150s68-148 150-148 150 66 150 148-68 150-150 150zM918 746v-52c0-24-110-76-214-76-46 0-90 12-128 24 14 16 22 32 22 52v52h320zM534 746v-52c0-24-110-76-214-76s-214 52-214 76v52h428zM704 554c92 0 278 48 278 140v116h-940v-116c0-92 186-140 278-140 52 0 130 16 192 44 62-28 140-44 192-44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "people_outline"
+ ],
+ "defaultCode": 59388,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "people_outline",
+ "id": 548,
+ "order": 559,
+ "prevSize": 24,
+ "code": 59388,
+ "name": "people_outline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 548
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 554v-170c0-46-40-86-86-86s-86 40-86 86v170c0 46 40 86 86 86s86-40 86-86zM854 214c46 0 84 38 84 84v512c0 46-38 86-84 86h-300v-90c120-20 214-126 214-252h-86c0 94-76 172-170 172s-170-78-170-172h-86c0 126 94 232 214 252v90h-300c-46 0-84-40-84-86v-512c0-46 38-84 84-84h136l78-86h256l78 86h136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_camera_mic"
+ ],
+ "defaultCode": 59554,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "perm_camera_mic",
+ "id": 549,
+ "order": 560,
+ "prevSize": 24,
+ "code": 59554,
+ "name": "perm_camera_mic"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 549
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 768v-42c0-86-170-132-256-132s-256 46-256 132v42h512zM512 256c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_contact_calendar"
+ ],
+ "defaultCode": 59555,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "perm_contact_calendar",
+ "id": 550,
+ "order": 561,
+ "prevSize": 24,
+ "code": 59555,
+ "name": "perm_contact_calendar"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 550
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 874c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM968 832l46 34c4 4 4 10 2 14l-42 74c-2 4-10 8-14 6l-52-22c-10 8-24 14-36 20l-8 58c0 6-6 8-12 8h-84c-6 0-12-2-12-8l-8-58c-14-6-24-12-36-20l-52 22c-6 2-12-2-14-6l-42-74c-2-4-2-10 2-14l46-34c0-6-2-14-2-22s2-14 2-20l-46-36c-4-4-4-10-2-14l42-74c2-4 10-6 14-4l52 22c12-8 24-16 36-22l8-56c0-6 6-8 12-8h84c6 0 12 2 12 8l8 56c14 6 24 14 36 22l52-22c6-2 12 0 14 4l42 74c2 4 2 10-2 14l-46 36c2 6 2 12 2 20s-2 16-2 22zM810 490c-176 0-320 144-320 320 0 14 2 30 4 44h-494l854-854-2 494c-14-2-28-4-42-4z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_data_setting"
+ ],
+ "defaultCode": 59556,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "perm_data_setting",
+ "id": 551,
+ "order": 562,
+ "prevSize": 24,
+ "code": 59556,
+ "name": "perm_data_setting"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 551
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 810v-596h-428v596h428zM726 44c46 0 84 38 84 84v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86zM554 470v256h-84v-256h84zM554 298v86h-84v-86h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_device_information"
+ ],
+ "defaultCode": 59557,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "perm_device_information",
+ "id": 552,
+ "order": 563,
+ "prevSize": 24,
+ "code": 59557,
+ "name": "perm_device_information"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 552
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 554c114 0 342 58 342 172v128h-684v-128c0-114 228-172 342-172zM512 170c94 0 170 78 170 172s-76 170-170 170-170-76-170-170 76-172 170-172zM512 636c-126 0-260 62-260 90v46h520v-46c0-28-134-90-260-90zM512 252c-50 0-90 40-90 90s40 88 90 88 90-38 90-88-40-90-90-90z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "person_outline"
+ ],
+ "defaultCode": 59391,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "perm_identity, person_outline",
+ "id": 553,
+ "order": 564,
+ "prevSize": 24,
+ "code": 59391,
+ "name": "person_outline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 553
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 640h598l-150-192-106 128-150-192zM938 170c46 0 86 40 86 86v426c0 46-40 86-86 86h-682c-46 0-86-40-86-86l2-512c0-46 38-84 84-84h256l86 84h340zM86 256v598h768v84h-768c-46 0-86-38-86-84v-598h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_media"
+ ],
+ "defaultCode": 59559,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "perm_media",
+ "id": 554,
+ "order": 565,
+ "prevSize": 24,
+ "code": 59559,
+ "name": "perm_media"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 554
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128h384v298h-256l-128 128v-426zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 120 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_phone_msg"
+ ],
+ "defaultCode": 59560,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "perm_phone_msg",
+ "id": 555,
+ "order": 566,
+ "prevSize": 24,
+ "code": 59560,
+ "name": "perm_phone_msg"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 555
+ },
+ {
+ "icon": {
+ "paths": [
+ "M470 342h84v-86h-84v86zM554 682v-256h-84v256h84zM512 128c216 0 378 80 512 182l-512 628-512-630c134-102 296-180 512-180z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "perm_scan_wifi"
+ ],
+ "defaultCode": 59561,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "perm_scan_wifi",
+ "id": 556,
+ "order": 567,
+ "prevSize": 24,
+ "code": 59561,
+ "name": "perm_scan_wifi"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 556
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 598c114 0 342 56 342 170v86h-684v-86c0-114 228-170 342-170zM512 512c-94 0-170-76-170-170s76-172 170-172 170 78 170 172-76 170-170 170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "person"
+ ],
+ "defaultCode": 59389,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "person",
+ "id": 557,
+ "order": 568,
+ "prevSize": 24,
+ "code": 59389,
+ "name": "person"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 557
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 598c114 0 342 56 342 170v86h-684v-86c0-114 228-170 342-170zM256 426h128v86h-128v128h-86v-128h-128v-86h128v-128h86v128zM640 512c-94 0-170-76-170-170s76-172 170-172 170 78 170 172-76 170-170 170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "person_add"
+ ],
+ "defaultCode": 59390,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "person_add",
+ "id": 558,
+ "order": 569,
+ "prevSize": 24,
+ "code": 59390,
+ "name": "person_add"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 558
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 682v-38c0-86-170-132-256-132s-256 46-256 132v38h512zM512 226c-64 0-116 52-116 116s52 114 116 114 116-50 116-114-52-116-116-116zM810 86c46 0 86 38 86 84v598c0 46-40 86-86 86h-170l-128 128-128-128h-170c-48 0-86-40-86-86v-598c0-46 38-84 86-84h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "person_pin"
+ ],
+ "defaultCode": 58714,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "person_pin",
+ "id": 559,
+ "order": 570,
+ "prevSize": 24,
+ "code": 58714,
+ "name": "person_pin"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 559
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 598c72 0 134-36 170-92 0-56-114-88-170-88s-170 32-170 88c36 56 98 92 170 92zM512 170c-46 0-86 40-86 86 0 48 40 86 86 86s86-38 86-86c0-46-40-86-86-86zM512 86c164 0 298 134 298 298 0 224-298 554-298 554s-298-330-298-554c0-164 134-298 298-298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "person_pin_circle"
+ ],
+ "defaultCode": 58730,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "person_pin_circle",
+ "id": 560,
+ "order": 571,
+ "prevSize": 24,
+ "code": 58730,
+ "name": "person_pin_circle"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 560
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 726v-512h-768v512h768zM896 128c46 0 86 38 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "personal_video"
+ ],
+ "defaultCode": 58939,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "personal_video",
+ "id": 561,
+ "order": 572,
+ "prevSize": 24,
+ "code": 58939,
+ "name": "personal_video"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 561
+ },
+ {
+ "icon": {
+ "paths": [
+ "M740 634c56 56 126 116 112 204-12 44-44 88-100 100-32 6-130-18-236-18h-8c-106 0-204 24-236 18-56-12-88-56-100-100-12-86 56-148 112-204 38-44 68-80 106-124 20-24 44-46 74-56 4-2 10-4 14-4 12-2 22-2 34-2s24 0 34 2c4 0 10 2 14 4 30 10 54 32 74 56 38 44 68 80 106 124zM726 406c0-58 48-108 106-108s106 50 106 108-48 106-106 106-106-48-106-106zM534 234c0-58 48-106 106-106s106 48 106 106-48 108-106 108-106-50-106-108zM278 234c0-58 48-106 106-106s106 48 106 106-48 108-106 108-106-50-106-108zM86 406c0-58 48-108 106-108s106 50 106 108-48 106-106 106-106-48-106-106z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pets"
+ ],
+ "defaultCode": 59677,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "pets",
+ "id": 562,
+ "order": 573,
+ "prevSize": 24,
+ "code": 59677,
+ "name": "pets"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 562
+ },
+ {
+ "icon": {
+ "paths": [
+ "M736 768v-598h-448v598h448zM598 896v-42h-172v42h172zM682 42c70 0 128 58 128 128v684c0 70-58 128-128 128h-340c-70 0-128-58-128-128v-684c0-70 58-128 128-128h340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_android"
+ ],
+ "defaultCode": 58148,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "phone_android",
+ "id": 563,
+ "order": 574,
+ "prevSize": 24,
+ "code": 58148,
+ "name": "phone_android"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 563
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM768 308v80l40-40zM768 124v80l40-40zM628 406l-30-30 118-120-118-120 30-30 98 98v-162h20l122 122-92 92 92 92-122 122h-20v-162z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_bluetooth_speaker"
+ ],
+ "defaultCode": 58907,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "phone_bluetooth_speaker",
+ "id": 564,
+ "order": 575,
+ "prevSize": 24,
+ "code": 58907,
+ "name": "phone_bluetooth_speaker"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 564
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM768 470v-128h-170v-172h170v-128l214 214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_forwarded"
+ ],
+ "defaultCode": 58908,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "phone_forwarded",
+ "id": 565,
+ "order": 576,
+ "prevSize": 24,
+ "code": 58908,
+ "name": "phone_forwarded"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 565
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 512c0-70-58-128-128-128v-86c118 0 214 96 214 214h-86zM810 512c0-166-132-298-298-298v-86c212 0 384 172 384 384h-86zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_in_talk"
+ ],
+ "defaultCode": 58909,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "phone_in_talk",
+ "id": 566,
+ "order": 577,
+ "prevSize": 24,
+ "code": 58909,
+ "name": "phone_in_talk"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 566
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 768v-598h-384v598h384zM490 938c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM662 42c58 0 106 50 106 108v724c0 58-48 108-106 108h-342c-58 0-106-50-106-108v-724c0-58 48-108 106-108h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_iphone"
+ ],
+ "defaultCode": 58149,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "phone_iphone",
+ "id": 567,
+ "order": 578,
+ "prevSize": 24,
+ "code": 58149,
+ "name": "phone_iphone"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 567
+ },
+ {
+ "icon": {
+ "paths": [
+ "M820 170v-20c0-40-34-74-74-74s-72 34-72 74v20h146zM854 170c24 0 42 20 42 44v170c0 24-18 42-42 42h-214c-24 0-42-18-42-42v-170c0-24 18-44 42-44v-20c0-58 48-108 106-108s108 50 108 108v20zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_locked"
+ ],
+ "defaultCode": 58910,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "phone_locked",
+ "id": 568,
+ "order": 579,
+ "prevSize": 24,
+ "code": 58910,
+ "name": "phone_locked"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 568
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1012 712c8 8 12 18 12 30s-4 22-12 30l-106 106c-8 8-18 12-30 12s-22-4-30-12c-34-32-72-60-114-80-14-6-24-22-24-38v-132c-62-20-128-30-196-30s-134 10-196 30v132c0 18-10 34-24 40-42 20-80 46-114 78-8 8-18 12-30 12s-22-4-30-12l-106-106c-8-8-12-18-12-30s4-22 12-30c130-124 306-200 500-200s370 76 500 200zM278 234v150h-64v-256h256v64h-150l192 192 256-256 42 42-298 300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_missed"
+ ],
+ "defaultCode": 58911,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "phone_missed",
+ "id": 569,
+ "order": 580,
+ "prevSize": 24,
+ "code": 58911,
+ "name": "phone_missed"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 569
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 128h86v298h-86v-298zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM726 128v298h-86v-298h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phone_paused"
+ ],
+ "defaultCode": 58912,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "phone_paused",
+ "id": 570,
+ "order": 581,
+ "prevSize": 24,
+ "code": 58912,
+ "name": "phone_paused"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 570
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 42c46 0 86 40 86 86v768c0 46-40 86-86 86h-426c-46 0-86-40-86-86v-128h86v86h426v-684h-426v86h-86v-128c0-46 40-86 86-86h426zM554 350l-170 170 170 172-42 42-170-170-172 170-42-42 170-172-170-170 42-42 172 170 170-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phonelink_erase"
+ ],
+ "defaultCode": 57563,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "phonelink_erase",
+ "id": 571,
+ "order": 582,
+ "prevSize": 24,
+ "code": 57563,
+ "name": "phonelink_erase"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 571
+ },
+ {
+ "icon": {
+ "paths": [
+ "M406 470v-64c0-34-30-56-64-56s-64 22-64 56v64h128zM460 470c26 0 52 24 52 54v150c0 26-26 52-56 52h-234c-26 0-52-26-52-56v-150c0-26 26-50 52-50v-64c0-60 60-108 120-108s118 48 118 108v64zM810 42c46 0 86 40 86 86v768c0 46-40 86-86 86h-426c-46 0-86-40-86-86v-128h86v86h426v-684h-426v86h-86v-128c0-46 40-86 86-86h426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phonelink_lock"
+ ],
+ "defaultCode": 57564,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "phonelink_lock",
+ "id": 572,
+ "order": 583,
+ "prevSize": 24,
+ "code": 57564,
+ "name": "phonelink_lock"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 572
+ },
+ {
+ "icon": {
+ "paths": [
+ "M982 342c24 0 42 18 42 42v426c0 24-18 44-42 44h-8l-128-128h92v-300h-170v222l-86-86v-178c0-24 20-42 44-42h256zM170 268v458h458zM82 70c276.214 276.452 551.97 553.364 828 830l-54 54-100-100h-756v-128h86v-470c0-20 8-40 20-54l-78-78zM938 256h-562l-86-86h648v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phonelink_off"
+ ],
+ "defaultCode": 58151,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "phonelink_off",
+ "id": 573,
+ "order": 584,
+ "prevSize": 24,
+ "code": 58151,
+ "name": "phonelink_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 573
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 854v-684h-428v684h428zM598 42c46 0 84 40 84 86v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86h428zM768 418c52 56 52 132 0 184l-42-44c22-30 22-68 0-98zM858 328c106 102 106 266 0 364l-44-44c76-82 76-200 0-276z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phonelink_ring"
+ ],
+ "defaultCode": 57565,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "phonelink_ring",
+ "id": 574,
+ "order": 585,
+ "prevSize": 24,
+ "code": 57565,
+ "name": "phonelink_ring"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 574
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 42c46 0 86 40 86 86v768c0 46-40 86-86 86h-426c-46 0-86-40-86-86v-128h86v86h426v-684h-426v86h-86v-128c0-46 40-86 86-86h426zM342 598c46 0 84-40 84-86s-38-86-84-86-86 40-86 86 40 86 86 86zM504 534l46 38c4 4 8 8 4 12l-42 74c-4 4-8 4-12 4l-56-22c-12 8-26 18-38 22l-10 54c-4 4-8 10-12 10h-86c-4 0-12-6-8-10l-8-54c-12-4-26-14-38-22l-60 18c-4 4-10-2-14-6l-42-72c0-4 0-8 4-16l48-34v-44l-48-34c-4-4-8-8-4-12l42-74c4-4 10-4 14-4l54 22c12-8 28-18 40-22l8-54c4-4 8-10 12-10h86c8 0 12 6 12 10l10 54c12 4 26 14 38 22l56-18c4-4 8 2 12 6l42 72c0 4 0 8-4 12l-46 34v44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "phonelink_setup"
+ ],
+ "defaultCode": 57566,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "phonelink_setup",
+ "id": 575,
+ "order": 586,
+ "prevSize": 24,
+ "code": 57566,
+ "name": "phonelink_setup"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 575
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 810h512l-164-218-128 164-92-110zM256 170v342l106-64 108 64v-342h-214zM768 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-684c0-46 40-84 86-84h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "photo_album"
+ ],
+ "defaultCode": 58385,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "photo_album",
+ "id": 576,
+ "order": 587,
+ "prevSize": 24,
+ "code": 58385,
+ "name": "photo_album"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 576
+ },
+ {
+ "icon": {
+ "paths": [
+ "M566 458l116 54-116 54-54 116-54-116-116-54 116-54 54-116zM726 426l-40-88-88-40 88-40 40-88 40 88 88 40-88 40zM812 426h84v384c0 46-38 86-84 86h-598c-46 0-86-40-86-86v-596c0-46 40-86 86-86h384v86h-384v596h598v-384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "photo_filter"
+ ],
+ "defaultCode": 58427,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "photo_filter",
+ "id": 577,
+ "order": 588,
+ "prevSize": 24,
+ "code": 58427,
+ "name": "photo_filter"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 577
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 726h596l-192-256-148 192-108-128zM896 128c42 0 86 44 86 86v596c0 42-44 86-86 86h-768c-46 0-86-40-86-86v-596c0-42 44-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "photo_size_select_actual"
+ ],
+ "defaultCode": 58418,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "photo_size_select_actual",
+ "id": 578,
+ "order": 589,
+ "prevSize": 24,
+ "code": 58418,
+ "name": "photo_size_select_actual"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 578
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 810h426l-136-182-106 138-78-92zM42 470h598v426h-512c-46 0-86-40-86-86v-340zM214 128h84v86h-84v-86zM384 128h86v86h-86v-86zM128 128v86h-86c0-42 44-86 86-86zM726 810h84v86h-84v-86zM726 128h84v86h-84v-86zM42 298h86v86h-86v-86zM896 128c42 0 86 44 86 86h-86v-86zM896 298h86v86h-86v-86zM554 128h86v86h-86v-86zM982 810c0 42-44 86-86 86v-86h86zM896 470h86v84h-86v-84zM896 640h86v86h-86v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "photo_size_select_large"
+ ],
+ "defaultCode": 58419,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "photo_size_select_large",
+ "id": 579,
+ "order": 590,
+ "prevSize": 24,
+ "code": 58419,
+ "name": "photo_size_select_large"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 579
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 128v86h-84v-86h84zM470 128v86h-86v-86h86zM128 470v84h-86v-84h86zM128 128v86h-86c0-42 44-86 86-86zM810 810v86h-84v-86h84zM810 128v86h-84v-86h84zM640 810v86h-86v-86h86zM128 298v86h-86v-86h86zM128 896c-46 0-86-40-86-86v-170h428v256h-342zM896 128c42 0 86 44 86 86h-86v-86zM982 298v86h-86v-86h86zM640 128v86h-86v-86h86zM982 810c0 42-44 86-86 86v-86h86zM982 470v84h-86v-84h86zM982 640v86h-86v-86h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "photo_size_select_small"
+ ],
+ "defaultCode": 58420,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "photo_size_select_small",
+ "id": 580,
+ "order": 591,
+ "prevSize": 24,
+ "code": 58420,
+ "name": "photo_size_select_small"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 580
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 490v-128h42v128h-42zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84zM384 406v-44h42v44h-42zM874 362v-64h-128v256h64v-84h64v-64h-64v-44h64zM704 490v-128c0-36-28-64-64-64h-106v256h106c36 0 64-28 64-64zM490 406v-44c0-36-28-64-64-64h-106v256h64v-84h42c36 0 64-28 64-64zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "picture_as_pdf"
+ ],
+ "defaultCode": 58389,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "picture_as_pdf",
+ "id": 581,
+ "order": 592,
+ "prevSize": 24,
+ "code": 58389,
+ "name": "picture_as_pdf"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 581
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768zM810 298v256h-340v-256h340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "picture_in_picture"
+ ],
+ "defaultCode": 59562,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "picture_in_picture",
+ "id": 582,
+ "order": 593,
+ "prevSize": 24,
+ "code": 59562,
+ "name": "picture_in_picture"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 582
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 812v-600h-768v600h768zM982 810c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-598c0-46 40-84 86-84h768c46 0 86 38 86 84v598zM810 470v256h-340v-256h340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "picture_in_picture_alt"
+ ],
+ "defaultCode": 59665,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "picture_in_picture_alt",
+ "id": 583,
+ "order": 594,
+ "prevSize": 24,
+ "code": 59665,
+ "name": "picture_in_picture_alt"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 583
+ },
+ {
+ "icon": {
+ "paths": [
+ "M556 556h382c-20 202-180 362-382 382v-382zM556 86c202 20 362 180 382 382h-382v-382zM470 86v852c-216-22-384-204-384-426s168-404 384-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pie_chart"
+ ],
+ "defaultCode": 59076,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "pie_chart",
+ "id": 584,
+ "order": 595,
+ "prevSize": 24,
+ "code": 59076,
+ "name": "pie_chart"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 584
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 850c154-20 276-142 296-296h-296v296zM170 512c0 174 132 316 300 338v-676c-168 20-300 164-300 338zM554 174v296h296c-20-154-142-276-296-296zM512 86c234 0 426 192 426 426s-192 426-426 426-426-192-426-426 192-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pie_chart_outlined"
+ ],
+ "defaultCode": 59077,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "pie_chart_outlined",
+ "id": 585,
+ "order": 596,
+ "prevSize": 24,
+ "code": 59077,
+ "name": "pie_chart_outlined"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 585
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 854h596v84h-596v-84zM426 342c0 46 40 84 86 84 48 0 86-38 86-84s-40-86-86-86-86 40-86 86zM768 342c0 192-256 468-256 468s-256-276-256-468c0-142 114-256 256-256s256 114 256 256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pin_drop"
+ ],
+ "defaultCode": 58718,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "pin_drop",
+ "id": 586,
+ "order": 597,
+ "prevSize": 24,
+ "code": 58718,
+ "name": "pin_drop"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 586
+ },
+ {
+ "icon": {
+ "paths": [
+ "M342 214l468 298-468 298v-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play_arrow"
+ ],
+ "defaultCode": 57399,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "play_arrow",
+ "id": 587,
+ "order": 598,
+ "prevSize": 24,
+ "code": 57399,
+ "name": "play_arrow"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 587
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 704l256-192-256-192v384zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play_circle_filled"
+ ],
+ "defaultCode": 57400,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "play_circle_filled",
+ "id": 588,
+ "order": 599,
+ "prevSize": 24,
+ "code": 57400,
+ "name": "play_circle_filled"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 588
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM426 704v-384l256 192z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play_circle_outline"
+ ],
+ "defaultCode": 57401,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "play_circle_outline",
+ "id": 589,
+ "order": 600,
+ "prevSize": 24,
+ "code": 57401,
+ "name": "play_circle_outline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 589
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 598h86c0 94 76 170 170 170s170-76 170-170h86c0 142-114 256-256 256s-256-114-256-256zM470 214h84v238h150l-192 192-192-192h150v-238z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "play_for_work"
+ ],
+ "defaultCode": 59654,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "play_for_work",
+ "id": 590,
+ "order": 601,
+ "prevSize": 24,
+ "code": 59654,
+ "name": "play_for_work"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 590
+ },
+ {
+ "icon": {
+ "paths": [
+ "M86 682v-84h340v84h-340zM768 598h170v84h-170v172h-86v-172h-170v-84h170v-172h86v172zM598 256v86h-512v-86h512zM598 426v86h-512v-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "playlist_add"
+ ],
+ "defaultCode": 57403,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "playlist_add",
+ "id": 591,
+ "order": 602,
+ "prevSize": 24,
+ "code": 57403,
+ "name": "playlist_add"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 591
+ },
+ {
+ "icon": {
+ "paths": [
+ "M918 490l64 64-298 300-194-192 64-64 130 128zM86 682v-84h340v84h-340zM598 256v86h-512v-86h512zM598 426v86h-512v-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "playlist_add_check"
+ ],
+ "defaultCode": 57445,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "playlist_add_check",
+ "id": 592,
+ "order": 603,
+ "prevSize": 24,
+ "code": 57445,
+ "name": "playlist_add_check"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 592
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 554l212 128-212 128v-256zM86 640v-86h554v86h-554zM810 214v84h-724v-84h724zM810 384v86h-724v-86h724z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "playlist_play"
+ ],
+ "defaultCode": 57439,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "playlist_play",
+ "id": 593,
+ "order": 604,
+ "prevSize": 24,
+ "code": 57439,
+ "name": "playlist_play"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 593
+ },
+ {
+ "icon": {
+ "paths": [
+ "M618 260l192-46v554h-84v-452l-108 22v-78zM426 342v170h172v86h-172v170h-84v-170h-172v-86h172v-170h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "plus_one"
+ ],
+ "defaultCode": 59392,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "plus_one",
+ "id": 594,
+ "order": 605,
+ "prevSize": 24,
+ "code": 59392,
+ "name": "plus_one"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 594
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 170l192 342-192 342h-170l192-342-112-198-336 540h-170l-192-342 192-342h170l-192 342 112 198 336-540h170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "polymer"
+ ],
+ "defaultCode": 59563,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "polymer",
+ "id": 595,
+ "order": 606,
+ "prevSize": 24,
+ "code": 59563,
+ "name": "polymer"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 595
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 234c0-58 48-106 106-106s106 48 106 106-48 108-106 108-106-50-106-108zM370 512c-24 0-34-6-50-16-8-6-18-10-32-16l138-138-42-44c-48-48-92-64-170-64v-106c106 0 168 20 234 86l274 272c-6 4-12 8-18 10-16 10-26 16-50 16s-32-6-48-16c-20-12-46-26-94-26s-74 14-94 26c-16 10-24 16-48 16zM938 704c-48 0-72-16-92-28-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28s-72-16-92-28c-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28s-72-16-92-28c-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28v-86c24 0 32-4 48-14 20-12 46-28 94-28s72 16 92 28c16 10 26 14 50 14s32-4 48-14c20-12 46-28 94-28s72 16 92 28c16 10 26 14 50 14s32-4 48-14c20-12 46-28 94-28s72 16 92 28c16 10 26 14 50 14v86zM938 896c-48 0-72-16-92-28-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28s-72-16-92-28c-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28s-74-16-94-28c-16-10-24-14-48-14s-34 4-50 14c-20 12-44 28-92 28v-86c24 0 32-4 48-14 20-12 46-28 94-28s72 16 92 28c16 10 26 14 50 14s32-4 48-14c20-12 46-28 94-28s74 16 94 28c16 10 24 14 48 14s34-4 50-14c20-12 44-28 92-28s74 16 94 28c16 10 24 14 48 14v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pool"
+ ],
+ "defaultCode": 60232,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "pool",
+ "id": 596,
+ "order": 607,
+ "prevSize": 24,
+ "code": 60232,
+ "name": "pool"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 596
+ },
+ {
+ "icon": {
+ "paths": [
+ "M140 106l42 44 714 714-54 54-320-322h-2l-8 2c-46 0-86-40-86-86l2-8-68-68c-12 24-18 48-18 76 0 64 34 118 84 148l-42 74c-76-44-128-128-128-222 0-52 14-98 40-138l-60-62c-40 56-66 124-66 200 0 126 68 236 170 296l-42 74c-128-74-212-212-212-370 0-98 32-190 88-262l-88-90zM512 170c-58 0-112 14-160 40l-62-62c64-40 140-62 222-62 236 0 426 190 426 426 0 82-22 158-62 222l-64-62c26-48 42-102 42-160 0-188-154-342-342-342zM750 608l-70-70c2-8 2-18 2-26 0-94-76-170-170-170-8 0-18 0-26 2l-70-70c30-12 62-18 96-18 142 0 256 114 256 256 0 34-6 66-18 96z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "portable_wifi_off"
+ ],
+ "defaultCode": 57550,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "portable_wifi_off",
+ "id": 597,
+ "order": 608,
+ "prevSize": 24,
+ "code": 57550,
+ "name": "portable_wifi_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 597
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 810v-596h-596v596h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM704 694v32h-384v-32c0-64 128-96 192-96s192 32 192 96zM512 522c-52 0-96-44-96-96s44-96 96-96 96 44 96 96-44 96-96 96z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "portrait"
+ ],
+ "defaultCode": 58390,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "portrait",
+ "id": 598,
+ "order": 609,
+ "prevSize": 24,
+ "code": 58390,
+ "name": "portrait"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 598
+ },
+ {
+ "icon": {
+ "paths": [
+ "M684 298c42 0 84 44 84 86v234l-150 150v128h-212v-128l-150-150v-234c0-42 42-86 84-86h2v-170h84v170h172v-170h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "power"
+ ],
+ "defaultCode": 58940,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "power",
+ "id": 599,
+ "order": 610,
+ "prevSize": 24,
+ "code": 58940,
+ "name": "power"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 599
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 640v-86h214v86h-214zM384 640v-86h214v86h-214zM86 640v-86h212v86h-212zM86 384h810v86h-810v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "power_input"
+ ],
+ "defaultCode": 58166,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "power_input",
+ "id": 600,
+ "order": 611,
+ "prevSize": 24,
+ "code": 58166,
+ "name": "power_input"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 600
+ },
+ {
+ "icon": {
+ "paths": [
+ "M760 220c82 70 136 176 136 292 0 212-172 384-384 384s-384-172-384-384c0-116 54-222 136-292l60 60c-66 54-110 138-110 232 0 166 132 298 298 298s298-132 298-298c0-94-42-176-110-230zM554 128v426h-84v-426h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "power_settings_new"
+ ],
+ "defaultCode": 59564,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "power_settings_new",
+ "id": 601,
+ "order": 612,
+ "prevSize": 24,
+ "code": 59564,
+ "name": "power_settings_new"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 601
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 554v172h-128v212h-128v-212h-84v-300c0-70 58-128 128-128s128 58 128 128c50 20 84 70 84 128zM384 170c0-48 38-84 86-84s84 36 84 84-36 86-84 86-86-38-86-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "pregnant_woman"
+ ],
+ "defaultCode": 59678,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "pregnant_woman",
+ "id": 602,
+ "order": 613,
+ "prevSize": 24,
+ "code": 59678,
+ "name": "pregnant_woman"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 602
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 512h-84l170-170 170 170h-84v170h-172v-170zM896 812v-600h-768v600h768zM896 128c48 0 86 38 86 86v596c0 48-38 86-86 86h-768c-48 0-86-38-86-86v-596c0-48 38-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "present_to_all"
+ ],
+ "defaultCode": 57567,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "present_to_all",
+ "id": 603,
+ "order": 614,
+ "prevSize": 24,
+ "code": 57567,
+ "name": "present_to_all"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 603
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 128h172v512h-172v-512zM426 810c0-48 38-84 86-84s86 36 86 84-38 86-86 86-86-38-86-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "priority_high"
+ ],
+ "defaultCode": 58949,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "priority_high",
+ "id": 604,
+ "order": 615,
+ "prevSize": 24,
+ "code": 58949,
+ "name": "priority_high"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 604
+ },
+ {
+ "icon": {
+ "paths": [
+ "M764 742c56-60 90-142 90-230 0-142-88-266-214-316v18c0 46-40 84-86 84h-84v86c0 24-20 42-44 42h-84v86h256c24 0 42 18 42 42v128h42c38 0 70 26 82 60zM470 850v-82c-46 0-86-40-86-86v-42l-204-204c-6 24-10 50-10 76 0 174 132 318 300 338zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "public"
+ ],
+ "defaultCode": 59403,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "public",
+ "id": 605,
+ "order": 616,
+ "prevSize": 24,
+ "code": 59403,
+ "name": "public"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 605
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 598l298-300 298 300h-170v256h-256v-256h-170zM214 170h596v86h-596v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "publish"
+ ],
+ "defaultCode": 57941,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "publish",
+ "id": 606,
+ "order": 617,
+ "prevSize": 24,
+ "code": 57941,
+ "name": "publish"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 606
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 256h212v86h-128v384c0 70-58 128-128 128s-128-58-128-128 58-128 128-128c14 0 30 4 44 8v-350zM128 682v-84h342v84h-342zM640 426v86h-512v-86h512zM640 256v86h-512v-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "queue_music"
+ ],
+ "defaultCode": 57405,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "queue_music",
+ "id": 607,
+ "order": 618,
+ "prevSize": 24,
+ "code": 57405,
+ "name": "queue_music"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 607
+ },
+ {
+ "icon": {
+ "paths": [
+ "M1024 768l-192 192-64-64 128-128-128-128 64-64zM554 426h128v86h-128v128h-84v-128h-128v-86h128v-128h84v128zM896 128c46 0 86 38 86 86v340h-86v-340h-768v512h640v84h-86v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "queue_play_next"
+ ],
+ "defaultCode": 57446,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "queue_play_next",
+ "id": 608,
+ "order": 619,
+ "prevSize": 24,
+ "code": 57446,
+ "name": "queue_play_next"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 608
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 512v-170h-684v170h512v-86h86v86h86zM298 854c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM138 262l540-220 28 72-352 142h500c48 0 84 38 84 86v512c0 46-36 84-84 84h-684c-48 0-84-38-84-84v-512c0-36 20-68 52-80z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "radio"
+ ],
+ "defaultCode": 57406,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "radio",
+ "id": 609,
+ "order": 620,
+ "prevSize": 24,
+ "code": 57406,
+ "name": "radio"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 609
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM512 298c118 0 214 96 214 214s-96 214-214 214-214-96-214-214 96-214 214-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "radio_button_checked"
+ ],
+ "defaultCode": 59447,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "radio_button_checked",
+ "id": 610,
+ "order": 621,
+ "prevSize": 24,
+ "code": 59447,
+ "name": "radio_button_checked"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 610
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 598v-86h-234l-86 86h320zM256 598h106l294-294c8-8 8-22 0-30l-76-76c-8-8-22-8-30 0l-294 294v106zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rate_review"
+ ],
+ "defaultCode": 58720,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "rate_review",
+ "id": 611,
+ "order": 622,
+ "prevSize": 24,
+ "code": 58720,
+ "name": "rate_review"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 611
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 938v-852l64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64v852l-64-64-64 64-64-64-64 64-64-64-64 64-64-64-64 64-64-64-64 64-64-64zM768 384v-86h-512v86h512zM768 554v-84h-512v84h512zM768 726v-86h-512v86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "receipt"
+ ],
+ "defaultCode": 59568,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "receipt",
+ "id": 612,
+ "order": 623,
+ "prevSize": 24,
+ "code": 59568,
+ "name": "receipt"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 612
+ },
+ {
+ "icon": {
+ "paths": [
+ "M534 726v-32c0-64-128-96-192-96s-192 32-192 96v32h384zM342 330c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96zM598 214c24 0 42 18 42 42v512c0 24-18 42-42 42h-512c-24 0-44-18-44-42v-512c0-24 20-42 44-42h512zM726 810v-596h84v596h-84zM896 214h86v596h-86v-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "recent_actors"
+ ],
+ "defaultCode": 57407,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "recent_actors",
+ "id": 613,
+ "order": 624,
+ "prevSize": 24,
+ "code": 57407,
+ "name": "recent_actors"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 613
+ },
+ {
+ "icon": {
+ "paths": [
+ "M856 86c166 172 166 430 0 596l-70-68c118-136 118-332 0-460zM716 228c86 94 86 224 0 310l-72-72c36-50 36-116 0-166zM384 640c114 0 342 56 342 170v86h-684v-86c0-114 228-170 342-170zM214 384c0-94 76-170 170-170s170 76 170 170-76 170-170 170-170-76-170-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "record_voice_over"
+ ],
+ "defaultCode": 59679,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "record_voice_over",
+ "id": 614,
+ "order": 625,
+ "prevSize": 24,
+ "code": 59679,
+ "name": "record_voice_over"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 614
+ },
+ {
+ "icon": {
+ "paths": [
+ "M786 452l152-154v384h-384l156-154c-60-50-136-80-220-80-152 0-280 98-324 234l-100-32c58-178 226-308 424-308 114 0 218 42 296 110z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "redo"
+ ],
+ "defaultCode": 57690,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "redo",
+ "id": 615,
+ "order": 626,
+ "prevSize": 24,
+ "code": 57690,
+ "name": "redo"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 615
+ },
+ {
+ "icon": {
+ "paths": [
+ "M754 270l100-100v300h-300l138-138c-46-46-110-76-180-76-142 0-256 114-256 256s114 256 256 256c112 0 208-70 242-170h88c-38 148-170 256-330 256-188 0-340-154-340-342s152-342 340-342c94 0 180 38 242 100z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "refresh"
+ ],
+ "defaultCode": 58837,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "refresh",
+ "id": 616,
+ "order": 627,
+ "prevSize": 24,
+ "code": 58837,
+ "name": "refresh2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 616
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 554h-596v-84h596v84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remove"
+ ],
+ "defaultCode": 57691,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "remove",
+ "id": 617,
+ "order": 628,
+ "prevSize": 24,
+ "code": 57691,
+ "name": "remove2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 617
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM298 470h428v84h-428v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remove_circle_outline"
+ ],
+ "defaultCode": 57693,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "remove_circle_outline",
+ "id": 618,
+ "order": 629,
+ "prevSize": 24,
+ "code": 57693,
+ "name": "remove_circle_outline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 618
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 426v86h-340v-86h340zM896 726v-512h-768v512h768zM896 128c46 0 86 38 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remove_from_queue"
+ ],
+ "defaultCode": 57447,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "remove_from_queue",
+ "id": 619,
+ "order": 630,
+ "prevSize": 24,
+ "code": 57447,
+ "name": "remove_from_queue"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 619
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 384c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM512 726c118 0 214-96 214-214s-96-214-214-214-214 96-214 214 96 214 214 214zM512 192c214 0 396 132 470 320-74 188-256 320-470 320s-396-132-470-320c74-188 256-320 470-320z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "visibility"
+ ],
+ "defaultCode": 59636,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "remove_red_eye, visibility",
+ "id": 620,
+ "order": 631,
+ "prevSize": 24,
+ "code": 59636,
+ "name": "visibility"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 620
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 768c46 0 86 40 86 86s-40 84-86 84-84-38-84-84 38-86 84-86zM664 554l-384-384h574c24 0 42 20 42 44 0 8-2 14-6 20l-152 276c-14 26-42 44-74 44zM316 640h216l-86-86h-100l-38 70-2 6c0 6 4 10 10 10zM970 970l-54 54-122-122c-16 22-40 36-68 36-46 0-86-38-86-84 0-28 14-54 36-70l-60-58h-318c-46 0-84-40-84-86 0-14 4-28 10-40l58-106-94-198-188-188 54-54z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "remove_shopping_cart"
+ ],
+ "defaultCode": 59688,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "remove_shopping_cart",
+ "id": 621,
+ "order": 632,
+ "prevSize": 24,
+ "code": 59688,
+ "name": "remove_shopping_cart"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 621
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 214h768v84h-768v-84zM128 470v-86h768v86h-768zM128 810v-84h768v84h-768zM128 640v-86h768v86h-768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "reorder"
+ ],
+ "defaultCode": 59646,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "reorder",
+ "id": 622,
+ "order": 633,
+ "prevSize": 24,
+ "code": 59646,
+ "name": "reorder2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 622
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 726v-172h84v256h-512v128l-170-170 170-170v128h428zM298 298v172h-84v-256h512v-128l170 170-170 170v-128h-428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "repeat"
+ ],
+ "defaultCode": 57408,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "repeat",
+ "id": 623,
+ "order": 634,
+ "prevSize": 24,
+ "code": 57408,
+ "name": "repeat2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 623
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 640h-64v-170h-64v-44l86-42h42v256zM726 726v-172h84v256h-512v128l-170-170 170-170v128h428zM298 298v172h-84v-256h512v-128l170 170-170 170v-128h-428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "repeat_one"
+ ],
+ "defaultCode": 57409,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "repeat_one",
+ "id": 624,
+ "order": 635,
+ "prevSize": 24,
+ "code": 57409,
+ "name": "repeat_one"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 624
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 142 114 256 256 256s256-114 256-256-114-256-256-256v172l-214-214 214-214v172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "replay"
+ ],
+ "defaultCode": 57410,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "replay",
+ "id": 625,
+ "order": 636,
+ "prevSize": 24,
+ "code": 57410,
+ "name": "replay"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 625
+ },
+ {
+ "icon": {
+ "paths": [
+ "M564 648c0 6.531 12.65 14 20 14 4 0 10 0 14-4l8-10s4-8 4-12v-86c0 0-4-8-4-12 0-5.505-16.424-14-22-14-4 0-8 2-12 6l-8 8s-6 8-6 12v86s6 8 6 12zM648 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4-18 0-26-4-12-8-20-12c-13.488-6.744-18-39.492-18-60v-30c0-12 0-26 4-34l14-26s12-12 20-12 18-4 26-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM466 682h-40v-140l-42 12v-30l76-24h6v182zM512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 140 116 256 256 256s256-116 256-256-116-256-256-256v172l-214-214 214-214v172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "replay_10"
+ ],
+ "defaultCode": 57433,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "replay_10",
+ "id": 626,
+ "order": 637,
+ "prevSize": 24,
+ "code": 57433,
+ "name": "replay_10"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 626
+ },
+ {
+ "icon": {
+ "paths": [
+ "M572 648c0 7.531 13.843 14 22 14 4 0 8 0 12-4l8-10s4-8 4-12v-86c0-4-4-8-4-12 0-4.671-15.121-14-20-14-4 0-10 2-14 6l-8 8s-4 8-4 12v86s4 8 4 12zM652 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4c-20.252 0-32.299-9.149-46-16-8-4-8-14-12-26s-6-22-6-34v-30c0-12 2-26 6-34l12-26s14-12 22-12 16-4 24-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM426 576c16.239 0 30-9.918 30-26v-8s-4-4-4-8-4-4-8-4h-22s-4 4-8 4-4 4-4 8v8h-44c0-19.788 17.639-46 36-46 4 0 16-4 20-4 17.345 0 35.264 5.632 48 12 10.13 5.065 16 24.218 16 38v14s-4 8-4 12-4 8-8 8-10 6-14 10c8 4 18 8 22 16s8 18 8 26 0 18-4 22-8 12-12 16-14 8-22 8-18 4-26 4-16 0-20-4-14-4-22-8c-11.162-5.581-18-27.017-18-42h36v8s4 4 4 8 4 4 8 4h22s4-4 8-4 4-4 4-8v-22s-4-4-4-8-4-4-8-4h-26v-30h16zM512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 140 116 256 256 256s256-116 256-256-116-256-256-256v172l-214-214 214-214v172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "replay_30"
+ ],
+ "defaultCode": 57434,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "replay_30",
+ "id": 627,
+ "order": 638,
+ "prevSize": 24,
+ "code": 57434,
+ "name": "replay_30"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 627
+ },
+ {
+ "icon": {
+ "paths": [
+ "M504 580c-3.584 1.434-14 4.805-14 8 0 4-4 6-4 6h-30l10-94h102v30h-74l-4 38s4 0 4-4 6-2 6-6 4 0 8 0h8c8 0 18 2 22 6s12 8 16 12c8.873 8.873 18 27.257 18 46 0 8 0 18-4 22s-6 14-14 22-12 8-16 12-18 4-26 4-18 0-22-4-12-4-20-8c-11.191-5.596-18-22.554-18-38h34c0 14.809 10.59 20 26 20 4 0 8 0 12-4l10-8s4-8 4-12v-26l-4-8-10-10s-8-4-12-4h-8zM512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 140 116 256 256 256s256-116 256-256-116-256-256-256v172l-214-214 214-214v172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "replay_5"
+ ],
+ "defaultCode": 57435,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "replay_5",
+ "id": 628,
+ "order": 639,
+ "prevSize": 24,
+ "code": 57435,
+ "name": "replay_5"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 628
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 384c298 42 428 256 470 470-106-150-256-218-470-218v174l-298-298 298-298v170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "reply"
+ ],
+ "defaultCode": 57694,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "reply",
+ "id": 629,
+ "order": 640,
+ "prevSize": 24,
+ "code": 57694,
+ "name": "reply2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 629
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 384c298 42 428 256 470 470-106-150-256-218-470-218v174l-298-298 298-298v170zM298 342l-170 170 170 170v128l-298-298 298-298v128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "reply_all"
+ ],
+ "defaultCode": 57695,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "reply_all",
+ "id": 630,
+ "order": 641,
+ "prevSize": 24,
+ "code": 57695,
+ "name": "reply_all"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 630
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 554v-256h-84v256h84zM512 738c30 0 56-26 56-56s-26-54-56-54-56 24-56 54 26 56 56 56zM672 128l224 224v320l-224 224h-320l-224-224v-320l224-224h320z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "report"
+ ],
+ "defaultCode": 57696,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "report",
+ "id": 631,
+ "order": 642,
+ "prevSize": 24,
+ "code": 57696,
+ "name": "report"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 631
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 598v-172h-84v172h84zM554 768v-86h-84v86h84zM42 896l470-810 470 810h-940z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "warning"
+ ],
+ "defaultCode": 57346,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "report_problem, warning",
+ "id": 632,
+ "order": 643,
+ "prevSize": 24,
+ "code": 57346,
+ "name": "warning2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 632
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 256c0-76 96-170 214-170v852h-106v-340h-108v-342zM470 384v-298h84v298c0 90-70 164-160 170v384h-106v-384c-90-6-160-80-160-170v-298h86v298h84v-298h86v298h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "restaurant"
+ ],
+ "defaultCode": 58732,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "restaurant",
+ "id": 633,
+ "order": 644,
+ "prevSize": 24,
+ "code": 58732,
+ "name": "restaurant"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 633
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 768c118 0 214-96 214-214s-96-212-214-212c-76 0-142 40-180 98l-54-56v170h170l-68-68c24-48 74-80 132-80 82 0 150 66 150 148s-68 150-150 150c-50 0-96-26-122-64h-74c32 76 108 128 196 128zM598 86l256 256v512c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "restore_page"
+ ],
+ "defaultCode": 59689,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "restore_page",
+ "id": 634,
+ "order": 645,
+ "prevSize": 24,
+ "code": 59689,
+ "name": "restore_page"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 634
+ },
+ {
+ "icon": {
+ "paths": [
+ "M274 418c0 0-148-148-152-150l60-62 152 152zM554 86v212h-84v-212h84zM902 268c-4 2-152 150-152 150l-60-60 152-152zM1012 712c8 8 12 18 12 30s-4 22-12 30l-106 106c-8 8-18 12-30 12s-22-4-30-12c-34-32-72-60-114-80-14-6-24-22-24-38v-132c-62-20-128-30-196-30s-134 10-196 30v132c0 18-10 34-24 40-42 20-80 46-114 78-8 8-18 12-30 12s-22-4-30-12l-106-106c-8-8-12-18-12-30s4-22 12-30c130-124 306-200 500-200s370 76 500 200z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "ring_volume"
+ ],
+ "defaultCode": 57553,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "ring_volume",
+ "id": 635,
+ "order": 646,
+ "prevSize": 24,
+ "code": 57553,
+ "name": "ring_volume"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 635
+ },
+ {
+ "icon": {
+ "paths": [
+ "M590 332c166 34 294 176 306 350h-768c12-174 140-316 306-350-4-10-8-22-8-34 0-46 40-84 86-84s86 38 86 84c0 12-4 24-8 34zM86 726h852v84h-852v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "room_service"
+ ],
+ "defaultCode": 60233,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "room_service",
+ "id": 636,
+ "order": 647,
+ "prevSize": 24,
+ "code": 60233,
+ "name": "room_service"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 636
+ },
+ {
+ "icon": {
+ "paths": [
+ "M826 284c150 150 150 392 0 542-74 76-174 112-272 112-64 0-126-16-184-48l64-62c38 18 78 26 120 26 76 0 154-30 212-88 116-116 116-306 0-422-58-58-136-88-212-88v138l-180-180 180-182v138c98 0 198 38 272 114zM158 550l156 156 156-156-156-156zM314 274l276 276-276 276-278-276z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rotate_90_degrees_ccw"
+ ],
+ "defaultCode": 58392,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "rotate_90_degrees_ccw",
+ "id": 637,
+ "order": 648,
+ "prevSize": 24,
+ "code": 58392,
+ "name": "rotate_90_degrees_ccw"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 637
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 174c168 20 300 164 300 338s-132 318-300 338v-86c122-20 214-126 214-252s-92-232-214-252v166l-194-190 194-194v132zM302 782l62-62c32 24 68 38 106 44v86c-60-8-118-30-168-68zM260 554c6 38 20 74 42 106l-60 60c-38-50-60-106-68-166h86zM304 364c-22 32-38 68-44 106h-86c8-60 32-116 70-166z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rotate_left"
+ ],
+ "defaultCode": 58393,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "rotate_left",
+ "id": 638,
+ "order": 649,
+ "prevSize": 24,
+ "code": 58393,
+ "name": "rotate_left"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 638
+ },
+ {
+ "icon": {
+ "paths": [
+ "M720 660c24-32 38-68 44-106h86c-8 60-30 116-68 166zM554 764c38-6 74-20 106-44l62 62c-50 38-108 60-168 68v-86zM850 470h-86c-6-38-20-74-44-106l62-60c38 50 60 106 68 166zM664 236l-194 190v-166c-122 20-214 126-214 252s92 232 214 252v86c-168-20-300-164-300-338s132-318 300-338v-132z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rotate_right"
+ ],
+ "defaultCode": 58394,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "rotate_right",
+ "id": 639,
+ "order": 650,
+ "prevSize": 24,
+ "code": 58394,
+ "name": "rotate_right"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 639
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 342v212h-86v-212c0-70-58-128-128-128h-212v-86h212c118 0 214 96 214 214zM128 896v-86h86v86h-86zM298 896v-86h86v86h-86zM470 896v-86h84v86h-84zM298 214v-86h86v86h-86zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86zM810 726v-86h86v86h-86zM810 810h86v86h-86v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rounded_corner"
+ ],
+ "defaultCode": 59680,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "rounded_corner",
+ "id": 640,
+ "order": 651,
+ "prevSize": 24,
+ "code": 59680,
+ "name": "rounded_corner"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 640
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 768v-86h-86v86h86zM490 768v-86h-84v86h84zM342 768v-86h-86v86h86zM810 554c46 0 86 40 86 86v170c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-170c0-46 40-86 86-86h426v-170h86v170h84zM824 286l-34 34c-30-30-70-42-108-42s-76 12-106 42l-34-34c38-38 88-60 140-60s104 22 142 60zM862 252c-52-46-116-72-180-72s-126 26-178 72l-34-34c60-60 136-90 212-90s154 30 214 90z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "router"
+ ],
+ "defaultCode": 58152,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "router",
+ "id": 641,
+ "order": 652,
+ "prevSize": 24,
+ "code": 58152,
+ "name": "router"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 641
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 896l-128 128-128-128v-64l-302-302c-14 2-28 2-40 2v-92c70 2 154-36 200-86l60-66c15.214-15.214 40.308-32 70-32h2c52 0 96 44 96 96v246c0 36-16 68-40 92l-152-152v-98c-26 22-62 44-98 60l268 268h64zM640 42c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM362 618l108 108h-86l-150 148-64-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rowing"
+ ],
+ "defaultCode": 59681,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "rowing",
+ "id": 642,
+ "order": 653,
+ "prevSize": 24,
+ "code": 59681,
+ "name": "rowing"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 642
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 430c234 0 424 190 424 424h-122c0-166-136-302-302-302v-122zM170 190c366 0 664 298 664 664h-120c0-300-244-544-544-544v-120zM170 760c0-52 42-92 94-92s92 40 92 92-40 94-92 94-94-42-94-94z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rss_feed"
+ ],
+ "defaultCode": 57573,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "rss_feed",
+ "id": 643,
+ "order": 654,
+ "prevSize": 24,
+ "code": 57573,
+ "name": "rss_feed"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 643
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 86l128 128-128 128v-86h-342v-86h342v-84zM768 598v-128h-170v128h170zM470 854c24 0 42-20 42-44s-18-42-42-42-44 18-44 42 20 44 44 44zM854 726h84v84h-340c0 70-58 128-128 128s-128-58-128-128h-86c-46 0-86-38-86-84v-128h300v-128h-172v84l-128-128 128-128v86h470c46 0 86 40 86 86v256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "rv_hookup"
+ ],
+ "defaultCode": 58946,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "rv_hookup",
+ "id": 644,
+ "order": 655,
+ "prevSize": 24,
+ "code": 58946,
+ "name": "rv_hookup"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 644
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 768h596l-192-256-148 192-108-128zM214 512c166 0 298-134 298-300h-86c0 118-94 214-212 214v86zM214 212v130c70 0 128-60 128-130h-128zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "satellite"
+ ],
+ "defaultCode": 58722,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "satellite",
+ "id": 645,
+ "order": 656,
+ "prevSize": 24,
+ "code": 58722,
+ "name": "satellite"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 645
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 384v-170h-426v170h426zM512 810c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM726 128l170 170v512c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "save"
+ ],
+ "defaultCode": 57697,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "save",
+ "id": 646,
+ "order": 657,
+ "prevSize": 24,
+ "code": 57697,
+ "name": "save2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 646
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 726v-86h-426v86h426zM298 726v-86h-84v86h84zM844 456c30 8 52 44 52 78v234c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-170c0-46 40-86 86-86h536l-600-218 30-80z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "scanner"
+ ],
+ "defaultCode": 58153,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "scanner",
+ "id": 647,
+ "order": 658,
+ "prevSize": 24,
+ "code": 58153,
+ "name": "scanner"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 647
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128l470 256v342h-86v-296l-384 210-470-256zM214 562l298 164 298-164v172l-298 162-298-162v-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "school"
+ ],
+ "defaultCode": 59404,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "school",
+ "id": 648,
+ "order": 659,
+ "prevSize": 24,
+ "code": 59404,
+ "name": "school"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 648
+ },
+ {
+ "icon": {
+ "paths": [
+ "M460 426v44h104v-44c0-28-24-50-52-50s-52 22-52 50zM426 682c-24 0-42-18-42-42v-128c0-24 18-42 42-42v-44c0-46 38-84 86-84 46 0 86 36 86 84v44c24 0 42 18 42 42v128c0 24-18 42-42 42h-172zM810 726v-428h-596v428h596zM896 214c46 0 86 38 86 84v428c0 46-40 84-86 84h-768c-46 0-86-38-86-84v-428c0-46 40-84 86-84h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "screen_lock_landscape"
+ ],
+ "defaultCode": 57790,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "screen_lock_landscape",
+ "id": 649,
+ "order": 660,
+ "prevSize": 24,
+ "code": 57790,
+ "name": "screen_lock_landscape"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 649
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 810v-596h-428v596h428zM726 42c46 0 84 40 84 86v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86h428zM460 426v44h104v-44c0-28-24-50-52-50s-52 22-52 50zM426 682c-24 0-42-18-42-42v-128c0-24 18-42 42-42v-44c0-46 38-84 86-84 46 0 86 36 86 84v44c24 0 42 18 42 42v128c0 24-18 42-42 42h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "screen_lock_portrait"
+ ],
+ "defaultCode": 57791,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "screen_lock_portrait",
+ "id": 650,
+ "order": 661,
+ "prevSize": 24,
+ "code": 57791,
+ "name": "screen_lock_portrait"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 650
+ },
+ {
+ "icon": {
+ "paths": [
+ "M716 106v22h146v-22c0-40-32-72-72-72s-74 32-74 72zM682 384c-24 0-42-18-42-42v-172c0-24 18-42 42-42v-22c0-58 50-106 108-106s106 48 106 106v22c24 0 42 18 42 42v172c0 24-18 42-42 42h-214zM362 874l56-56 162 162-28 2c-268 0-488-208-510-470h64c16 160 116 296 256 362zM992 544c26 24 26 66 0 92l-272 270c-24 26-64 26-90 0l-512-512c-26-24-26-64 0-90l270-272c24-26 66-26 92 0l104 104-60 60-90-88-242 240 484 484 240-242-94-94 60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "screen_lock_rotation"
+ ],
+ "defaultCode": 57792,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "screen_lock_rotation",
+ "id": 651,
+ "order": 662,
+ "prevSize": 24,
+ "code": 57792,
+ "name": "screen_lock_rotation"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 651
+ },
+ {
+ "icon": {
+ "paths": [
+ "M320 916l58-56 162 162-28 2c-268 0-488-208-510-470h64c16 160 114 296 254 362zM632 904l272-272-512-512-272 272zM436 74l514 514c26 24 26 64 0 90l-272 272c-24 26-64 26-90 0l-514-514c-26-24-26-64 0-90l272-272c24-26 64-26 90 0zM704 108l-58 56-162-162 28-2c268 0 488 208 510 470h-64c-16-160-114-296-254-362z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "screen_rotation"
+ ],
+ "defaultCode": 57793,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "screen_rotation",
+ "id": 652,
+ "order": 663,
+ "prevSize": 24,
+ "code": 57793,
+ "name": "screen_rotation"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 652
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 618l172-160-172-160v92c-166 24-232 136-256 250 60-80 138-116 256-116v94zM854 768h170v86h-1024v-86h170c-48 0-84-40-84-86v-426c0-48 36-86 84-86h684c46 0 84 38 84 86v426c0 46-38 86-84 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "screen_share"
+ ],
+ "defaultCode": 57570,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "screen_share",
+ "id": 653,
+ "order": 664,
+ "prevSize": 24,
+ "code": 57570,
+ "name": "screen_share"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 653
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 342v-172h-86v172h86zM640 342v-172h-86v172h86zM512 342v-172h-86v172h86zM768 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-512 254-256h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sd_storage"
+ ],
+ "defaultCode": 57794,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "sd_card, sd_storage",
+ "id": 654,
+ "order": 665,
+ "prevSize": 24,
+ "code": 57794,
+ "name": "sd_storage"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 654
+ },
+ {
+ "icon": {
+ "paths": [
+ "M406 598c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM662 598l212 212-64 64-212-212v-34l-12-12c-48 42-112 66-180 66-154 0-278-122-278-276s124-278 278-278 276 124 276 278c0 68-24 132-66 180l12 12h34z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "search"
+ ],
+ "defaultCode": 59574,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "search",
+ "id": 655,
+ "order": 666,
+ "prevSize": 24,
+ "code": 59574,
+ "name": "search2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 655
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42l384 172v256c0 236-164 458-384 512-220-54-384-276-384-512v-256zM512 512v382c158-50 276-206 298-382h-298zM512 512v-376l-298 132v244h298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "security"
+ ],
+ "defaultCode": 58154,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "security",
+ "id": 656,
+ "order": 667,
+ "prevSize": 24,
+ "code": 58154,
+ "name": "security"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 656
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 384v256h256v-256h-256zM298 726v-428h428v428h-428zM640 214v-86h86v86h-86zM640 896v-86h86v86h-86zM810 726v-86h86v86h-86zM810 384v-86h86v86h-86zM810 896v-86h86c0 46-40 86-86 86zM810 554v-84h86v84h-86zM470 896v-86h84v86h-84zM384 128v86h-86v-86h86zM128 726v-86h86v86h-86zM214 896c-46 0-86-40-86-86h86v86zM810 128c46 0 86 40 86 86h-86v-86zM554 128v86h-84v-86h84zM128 384v-86h86v86h-86zM298 896v-86h86v86h-86zM128 554v-84h86v84h-86zM128 214c0-46 40-86 86-86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "select_all"
+ ],
+ "defaultCode": 57698,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "select_all",
+ "id": 657,
+ "order": 668,
+ "prevSize": 24,
+ "code": 57698,
+ "name": "select_all"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 657
+ },
+ {
+ "icon": {
+ "paths": [
+ "M86 896v-298l640-86-640-86v-298l896 384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "send"
+ ],
+ "defaultCode": 57699,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "send",
+ "id": 658,
+ "order": 669,
+ "prevSize": 24,
+ "code": 57699,
+ "name": "send2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 658
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 598c100 0 184 60 218 148h-70c-30-50-84-84-148-84s-118 34-148 84h-70c34-88 118-148 218-148zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM298 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64zM598 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sentiment_dissatisfied"
+ ],
+ "defaultCode": 59409,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "sentiment_dissatisfied",
+ "id": 659,
+ "order": 670,
+ "prevSize": 24,
+ "code": 59409,
+ "name": "sentiment_dissatisfied"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 659
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM298 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64zM598 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64zM384 598h256v64h-256v-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sentiment_neutral"
+ ],
+ "defaultCode": 59410,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "sentiment_neutral",
+ "id": 660,
+ "order": 671,
+ "prevSize": 24,
+ "code": 59410,
+ "name": "sentiment_neutral"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 660
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 682c64 0 118-34 148-84h70c-34 88-118 148-218 148s-184-60-218-148h70c30 50 84 84 148 84zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM298 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64zM598 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sentiment_satisfied"
+ ],
+ "defaultCode": 59411,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "sentiment_satisfied",
+ "id": 661,
+ "order": 672,
+ "prevSize": 24,
+ "code": 59411,
+ "name": "sentiment_satisfied"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 661
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 598c100 0 184 60 218 148h-436c34-88 118-148 218-148zM334 512l-46-46 46-44-46-46 46-44 44 44 46-44 46 44-46 46 46 44-46 46-46-46zM690 332l46 44-46 46 46 44-46 46-44-46-46 46-46-46 46-44-46-46 46-44 46 44zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sentiment_very_dissatisfied"
+ ],
+ "defaultCode": 59412,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "sentiment_very_dissatisfied",
+ "id": 662,
+ "order": 673,
+ "prevSize": 24,
+ "code": 59412,
+ "name": "sentiment_very_dissatisfied"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 662
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 746c-100 0-184-60-218-148h436c-34 88-118 148-218 148zM378 424l-44 46-46-46 90-90 92 90-46 46zM554 424l92-90 90 90-46 46-44-46-46 46zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sentiment_very_satisfied"
+ ],
+ "defaultCode": 59413,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "sentiment_very_satisfied",
+ "id": 663,
+ "order": 674,
+ "prevSize": 24,
+ "code": 59413,
+ "name": "sentiment_very_satisfied"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 663
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 662c82 0 150-68 150-150s-68-150-150-150-150 68-150 150 68 150 150 150zM830 554l90 70c8 6 10 18 4 28l-86 148c-6 10-16 12-26 8l-106-42c-22 16-46 32-72 42l-16 112c-2 10-10 18-20 18h-172c-10 0-18-8-20-18l-16-112c-26-10-50-24-72-42l-106 42c-10 4-20 2-26-8l-86-148c-6-10-4-22 4-28l90-70c-2-14-2-28-2-42s0-28 2-42l-90-70c-8-6-10-18-4-28l86-148c6-10 16-12 26-8l106 42c22-16 46-32 72-42l16-112c2-10 10-18 20-18h172c10 0 18 8 20 18l16 112c26 10 50 24 72 42l106-42c10-4 20-2 26 8l86 148c6 10 4 22-4 28l-90 70c2 14 2 28 2 42s0 28-2 42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings"
+ ],
+ "defaultCode": 59576,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings",
+ "id": 664,
+ "order": 675,
+ "prevSize": 24,
+ "code": 59576,
+ "name": "settings"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 664
+ },
+ {
+ "icon": {
+ "paths": [
+ "M736 512c0-10 0-20-2-30l64-48c6-4 6-14 2-20l-60-104c-4-6-12-8-18-6l-74 30c-16-12-32-22-50-30l-12-78c-2-6-6-12-14-12h-120c-8 0-12 4-14 12l-12 80c-18 8-34 16-50 28l-74-30c-6-2-14 2-18 8l-60 102c-4 6-4 16 2 20l64 48c-2 10-2 20-2 30s0 20 2 30l-64 48c-6 4-6 14-2 20l60 104c4 6 12 8 18 6l74-30c16 12 32 22 50 30l12 78c2 6 6 12 14 12h120c8 0 12-4 14-12l12-80c18-8 34-16 50-28l74 30c6 2 14-2 18-8l60-102c4-6 4-16-2-20l-64-48c2-10 2-20 2-30zM810 128c48 0 86 40 86 86v596c0 46-38 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596zM512 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_applications"
+ ],
+ "defaultCode": 59577,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_applications",
+ "id": 665,
+ "order": 676,
+ "prevSize": 24,
+ "code": 59577,
+ "name": "settings_applications"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 665
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c212 0 384 172 384 384s-172 384-384 384c-88 0-170-30-234-80l60-60c50 34 110 54 174 54 166 0 298-132 298-298s-132-298-298-298-298 132-298 298h128l-172 170-170-170h128c0-212 172-384 384-384zM598 512c0 46-40 86-86 86s-86-40-86-86 40-86 86-86 86 40 86 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_backup_restore"
+ ],
+ "defaultCode": 59578,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_backup_restore",
+ "id": 666,
+ "order": 677,
+ "prevSize": 24,
+ "code": 59578,
+ "name": "settings_backup_restore"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 666
+ },
+ {
+ "icon": {
+ "paths": [
+ "M634 610l-80-80v160zM554 164v160l80-80zM756 244l-184 182 184 184-244 244h-42v-324l-196 196-60-60 238-240-238-238 60-60 196 196v-324h42zM640 1024v-86h86v86h-86zM298 1024v-86h86v86h-86zM470 1024v-86h84v86h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_bluetooth"
+ ],
+ "defaultCode": 59579,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_bluetooth",
+ "id": 667,
+ "order": 678,
+ "prevSize": 24,
+ "code": 59579,
+ "name": "settings_bluetooth"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 667
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 384v256c70 0 128-58 128-128s-58-128-128-128zM342 682v-106l-64-64 64-64v-106h106l64-64 64 64h106v106l64 64-64 64v106h-106l-64 64-64-64h-106zM896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_brightness"
+ ],
+ "defaultCode": 59581,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_brightness",
+ "id": 668,
+ "order": 679,
+ "prevSize": 24,
+ "code": 59581,
+ "name": "settings_brightness"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 668
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 682v-512h-340v512h340zM682 0c46 0 86 40 86 86v682c0 46-40 86-86 86h-340c-46 0-86-40-86-86v-682c0-46 40-86 86-86h340zM640 1024v-86h86v86h-86zM470 1024v-86h84v86h-84zM298 1024v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_cell"
+ ],
+ "defaultCode": 59580,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_cell",
+ "id": 669,
+ "order": 680,
+ "prevSize": 24,
+ "code": 59580,
+ "name": "settings_cell"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 669
+ },
+ {
+ "icon": {
+ "paths": [
+ "M758 234l232 278-232 278-66-54 186-224-186-224zM470 554v-84h84v84h-84zM726 470v84h-86v-84h86zM298 554v-84h86v84h-86zM332 288l-186 224 186 224-66 54-232-278 232-278z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_ethernet"
+ ],
+ "defaultCode": 59582,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_ethernet",
+ "id": 670,
+ "order": 681,
+ "prevSize": 24,
+ "code": 59582,
+ "name": "settings_ethernet"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 670
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 42c258 0 470 212 470 470h-86c0-212-172-384-384-384s-384 172-384 384h-86c0-258 212-470 470-470zM554 610v140l146 146-60 60-128-128-128 128-60-60 146-146v-140c-38-16-64-54-64-98 0-58 48-106 106-106s106 48 106 106c0 44-26 82-64 98zM512 214c166 0 298 132 298 298h-84c0-118-96-214-214-214s-214 96-214 214h-84c0-166 132-298 298-298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_input_antenna"
+ ],
+ "defaultCode": 59583,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_input_antenna",
+ "id": 671,
+ "order": 682,
+ "prevSize": 24,
+ "code": 59583,
+ "name": "settings_input_antenna"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 671
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 682v-84h256v84c0 56-36 102-86 120v180h-86v-180c-50-18-84-64-84-120zM554 86v170h86v256h-256v-256h86v-170c0-24 18-44 42-44s42 20 42 44zM896 256h86v256h-256v-256h84v-170c0-24 20-44 44-44s42 20 42 44v170zM42 682v-84h256v84c0 56-34 102-84 120v180h-86v-180c-50-18-86-64-86-120zM384 682v-84h256v84c0 56-36 102-86 120v180h-84v-180c-50-18-86-64-86-120zM214 86v170h84v256h-256v-256h86v-170c0-24 18-44 42-44s44 20 44 44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_input_composite"
+ ],
+ "defaultCode": 59585,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_input_component, settings_input_composite",
+ "id": 672,
+ "order": 683,
+ "prevSize": 24,
+ "code": 59585,
+ "name": "settings_input_composite"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 672
+ },
+ {
+ "icon": {
+ "paths": [
+ "M342 170v128h84v-84h44v84h84v-84h44v84h84v-128h-340zM768 298h42v256l-128 256v128h-340v-128l-128-256v-256h42v-128c0-46 40-84 86-84h340c46 0 86 38 86 84v128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_input_hdmi"
+ ],
+ "defaultCode": 59586,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_input_hdmi",
+ "id": 673,
+ "order": 684,
+ "prevSize": 24,
+ "code": 59586,
+ "name": "settings_input_hdmi"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 673
+ },
+ {
+ "icon": {
+ "paths": [
+ "M662 640c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM746 426c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM512 896c212 0 384-172 384-384s-172-384-384-384-384 172-384 384 172 384 384 384zM512 42c258 0 470 212 470 470s-212 470-470 470-470-212-470-470 212-470 470-470zM362 640c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM640 278c0 36-28 64-64 64h-128c-36 0-64-28-64-64s28-64 64-64h128c36 0 64 28 64 64zM342 490c0 36-28 64-64 64s-64-28-64-64 28-64 64-64 64 28 64 64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_input_svideo"
+ ],
+ "defaultCode": 59587,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_input_svideo",
+ "id": 674,
+ "order": 685,
+ "prevSize": 24,
+ "code": 59587,
+ "name": "settings_input_svideo"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 674
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768zM598 682l-86 108-86-108h172zM256 426v172l-106-86zM768 426l106 86-106 86v-172zM512 234l86 108h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_overscan"
+ ],
+ "defaultCode": 59588,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_overscan",
+ "id": 675,
+ "order": 686,
+ "prevSize": 24,
+ "code": 59588,
+ "name": "settings_overscan"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 675
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 384h86v86h-86v-86zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 120 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM726 384v86h-86v-86h86zM554 384v86h-84v-86h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_phone"
+ ],
+ "defaultCode": 59589,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_phone",
+ "id": 676,
+ "order": 687,
+ "prevSize": 24,
+ "code": 59589,
+ "name": "settings_phone"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 676
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 1024v-86h86v86h-86zM706 190c88 62 148 164 148 280 0 188-154 340-342 340s-342-152-342-340c0-116 60-218 148-280l60 60c-74 46-122 128-122 220 0 142 114 256 256 256s256-114 256-256c0-92-50-174-124-218zM554 86v426h-84v-426h84zM470 1024v-86h84v86h-84zM298 1024v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_power"
+ ],
+ "defaultCode": 59590,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_power",
+ "id": 677,
+ "order": 688,
+ "prevSize": 24,
+ "code": 59590,
+ "name": "settings_power"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 677
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 0c130 0 248 52 332 138l-60 60c-70-70-166-112-272-112s-202 42-272 112l-60-60c84-84 202-138 332-138zM300 258c54-54 130-88 212-88s158 34 212 88l-60 60c-38-38-94-62-152-62s-114 24-152 62zM512 640c46 0 86-40 86-86s-40-84-86-84-86 38-86 84 40 86 86 86zM640 384c24 0 42 18 42 42v512c0 24-18 44-42 44h-256c-24 0-42-20-42-44v-512c0-24 18-42 42-42h256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_remote"
+ ],
+ "defaultCode": 59591,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_remote",
+ "id": 678,
+ "order": 689,
+ "prevSize": 24,
+ "code": 59591,
+ "name": "settings_remote"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 678
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768zM384 682c-70 0-128-58-128-128 0-66 50-120 114-126h8c24-50 74-86 134-86 76 0 138 56 148 128h2c58 0 106 48 106 106s-48 106-106 106h-278z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_system_daydream"
+ ],
+ "defaultCode": 57795,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_system_daydream",
+ "id": 679,
+ "order": 690,
+ "prevSize": 24,
+ "code": 57795,
+ "name": "settings_system_daydream"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 679
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 426c0 146-116 268-256 288v140h-84v-140c-140-20-256-142-256-288h72c0 128 108 218 226 218s226-90 226-218h72zM640 1024v-86h86v86h-86zM470 1024v-86h84v86h-84zM512 554c-70 0-128-58-128-128v-256c0-70 58-128 128-128s128 58 128 128v256c0 70-58 128-128 128zM298 1024v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "settings_voice"
+ ],
+ "defaultCode": 59592,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "settings_voice",
+ "id": 680,
+ "order": 691,
+ "prevSize": 24,
+ "code": 59592,
+ "name": "settings_voice"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 680
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 686c68 0 124 56 124 124s-56 126-124 126-124-58-124-126c0-10 0-20 2-28l-302-176c-24 22-54 34-88 34-70 0-128-58-128-128s58-128 128-128c34 0 64 12 88 34l300-174c-2-10-4-20-4-30 0-70 58-128 128-128s128 58 128 128-58 128-128 128c-34 0-64-14-88-36l-300 176c2 10 4 20 4 30s-2 20-4 30l304 176c22-20 52-32 84-32z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "share"
+ ],
+ "defaultCode": 59405,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "share",
+ "id": 681,
+ "order": 692,
+ "prevSize": 24,
+ "code": 59405,
+ "name": "share2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 681
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 768l320-214-320-170v384zM426 170v86h172v-86h-172zM682 256h256v554c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-554h256v-86c0-48 36-84 84-84h172c48 0 84 36 84 84v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shop"
+ ],
+ "defaultCode": 59593,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "shop",
+ "id": 682,
+ "order": 693,
+ "prevSize": 24,
+ "code": 59593,
+ "name": "shop"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 682
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 640l234-170-234-128v298zM512 128v86h170v-86h-170zM768 214h214v468c0 48-38 86-86 86h-598c-48 0-84-38-84-86v-468h212v-86c0-48 38-86 86-86h170c48 0 86 38 86 86v86zM128 384v470h682c0 48-36 84-84 84h-598c-48 0-86-36-86-84v-470h86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shop_two"
+ ],
+ "defaultCode": 59594,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "shop_two",
+ "id": 683,
+ "order": 694,
+ "prevSize": 24,
+ "code": 59594,
+ "name": "shop_two"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 683
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 726c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM384 384h256l-128-188zM734 384h204c24 0 44 18 44 42-34.625 138.041-73.705 271.628-110 408-10 36-42 62-82 62h-556c-40 0-72-26-82-62l-108-396c-2-4-2-8-2-12 0-24 20-42 44-42h204l186-280c8-12 22-18 36-18s28 6 36 18z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shopping_basket"
+ ],
+ "defaultCode": 59595,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "shopping_basket",
+ "id": 684,
+ "order": 695,
+ "prevSize": 24,
+ "code": 59595,
+ "name": "shopping_basket"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 684
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 554h428v86h-428v-86zM170 384h684v86h-684v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "short_text"
+ ],
+ "defaultCode": 57953,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "short_text",
+ "id": 685,
+ "order": 696,
+ "prevSize": 24,
+ "code": 57953,
+ "name": "short_text"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 685
+ },
+ {
+ "icon": {
+ "paths": [
+ "M150 788l-64-64 320-320 170 172 302-340 60 60-362 408-170-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "show_chart"
+ ],
+ "defaultCode": 59105,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "show_chart",
+ "id": 686,
+ "order": 697,
+ "prevSize": 24,
+ "code": 59105,
+ "name": "show_chart"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 686
+ },
+ {
+ "icon": {
+ "paths": [
+ "M632 572l134 134 88-88v236h-236l88-88-134-134zM618 170h236v236l-88-88-536 536-60-60 536-536zM452 392l-60 60-222-222 60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "shuffle"
+ ],
+ "defaultCode": 57411,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "shuffle",
+ "id": 687,
+ "order": 698,
+ "prevSize": 24,
+ "code": 57411,
+ "name": "shuffle"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 687
+ },
+ {
+ "icon": {
+ "paths": [
+ "M86 938l852-852v852h-852z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_cellular_4_bar"
+ ],
+ "defaultCode": 57800,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "signal_cellular_4_bar",
+ "id": 688,
+ "order": 699,
+ "prevSize": 24,
+ "code": 57800,
+ "name": "signal_cellular_4_bar"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 688
+ },
+ {
+ "icon": {
+ "paths": [
+ "M86 938l852-852v256h-170v596h-682zM854 938v-84h84v84h-84zM854 768v-342h84v342h-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_cellular_connected_no_internet_4_bar"
+ ],
+ "defaultCode": 57805,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "signal_cellular_connected_no_internet_4_bar",
+ "id": 689,
+ "order": 700,
+ "prevSize": 24,
+ "code": 57805,
+ "name": "signal_cellular_connected_no_internet_4_bar"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 689
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938 86v852h-852zM854 292l-562 562h562v-562z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_cellular_null"
+ ],
+ "defaultCode": 57807,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "signal_cellular_null",
+ "id": 690,
+ "order": 701,
+ "prevSize": 24,
+ "code": 57807,
+ "name": "signal_cellular_null"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 690
+ },
+ {
+ "icon": {
+ "paths": [
+ "M204 192l734 736-54 54-84-86h-758l378-378-270-272zM896 42v734l-366-366z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_cellular_off"
+ ],
+ "defaultCode": 57808,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "signal_cellular_off",
+ "id": 691,
+ "order": 702,
+ "prevSize": 24,
+ "code": 57808,
+ "name": "signal_cellular_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 691
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 916l-496-618c20-14 210-170 496-170s476 156 496 170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_wifi_4_bar"
+ ],
+ "defaultCode": 57816,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "signal_wifi_4_bar",
+ "id": 692,
+ "order": 703,
+ "prevSize": 24,
+ "code": 57816,
+ "name": "signal_wifi_4_bar"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 692
+ },
+ {
+ "icon": {
+ "paths": [
+ "M662 618v112l-150 188-494-620c18-12 208-170 494-170s476 158 494 170l-88 112c-12-4-26-4-44-4-120 0-212 92-212 212zM938 682v-64c0-34-30-64-64-64s-64 30-64 64v64h128zM982 682c22 0 42 22 42 44v170c0 22-20 42-42 42h-214c-22 0-42-20-42-42v-170c0-22 20-44 42-44v-64c0-60 46-106 106-106s108 46 108 106v64z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_wifi_4_bar_lock"
+ ],
+ "defaultCode": 57817,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "signal_wifi_4_bar_lock",
+ "id": 693,
+ "order": 704,
+ "prevSize": 24,
+ "code": 57817,
+ "name": "signal_wifi_4_bar_lock"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 693
+ },
+ {
+ "icon": {
+ "paths": [
+ "M140 62c244.604 245.396 490.948 489.052 734 736l-54 54-142-142-166 206-496-618c10-8 64-52 156-94l-86-88zM1008 298l-232 290-442-440c54-12 114-20 178-20 286 0 476 156 496 170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "signal_wifi_off"
+ ],
+ "defaultCode": 57818,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "signal_wifi_off",
+ "id": 694,
+ "order": 705,
+ "prevSize": 24,
+ "code": 57818,
+ "name": "signal_wifi_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 694
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 640v-170h-86v170h86zM554 554v-84h-84v84h84zM554 810v-170h-84v170h84zM384 640v-170h-86v170h86zM726 810v-84h-86v84h86zM384 810v-84h-86v84h86zM852 170l2 684c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-512l256-256h342c46 0 84 38 84 84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sim_card"
+ ],
+ "defaultCode": 58155,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "sim_card",
+ "id": 695,
+ "order": 706,
+ "prevSize": 24,
+ "code": 58155,
+ "name": "sim_card"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 695
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 554v-212h-84v212h84zM554 726v-86h-84v86h84zM768 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-512 254-256h342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sim_card_alert"
+ ],
+ "defaultCode": 58916,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "sim_card_alert",
+ "id": 696,
+ "order": 707,
+ "prevSize": 24,
+ "code": 58916,
+ "name": "sim_card_alert"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 696
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 256h86v512h-86v-512zM256 768v-512l362 256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "skip_next"
+ ],
+ "defaultCode": 57412,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "skip_next",
+ "id": 697,
+ "order": 708,
+ "prevSize": 24,
+ "code": 57412,
+ "name": "skip_next"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 697
+ },
+ {
+ "icon": {
+ "paths": [
+ "M406 512l362-256v512zM256 256h86v512h-86v-512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "skip_previous"
+ ],
+ "defaultCode": 57413,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "skip_previous",
+ "id": 698,
+ "order": 709,
+ "prevSize": 24,
+ "code": 57413,
+ "name": "skip_previous"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 698
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 810v-596h-596v596h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM426 342l214 170-214 170v-340z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "slideshow"
+ ],
+ "defaultCode": 58395,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "slideshow",
+ "id": 699,
+ "order": 710,
+ "prevSize": 24,
+ "code": 58395,
+ "name": "slideshow"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 699
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938 512c0 220-168 402-382 424v-86c168-22 298-166 298-338s-130-316-298-338v-86c214 22 382 204 382 424zM242 842l60-60c48 36 106 60 168 68v86c-86-8-164-42-228-94zM174 554c8 62 32 120 68 166l-60 62c-52-64-86-142-94-228h86zM242 302c-36 48-60 106-68 168h-86c8-86 42-164 94-228zM470 174c-62 8-120 32-168 68l-60-60c64-52 142-86 228-94v86zM556 418l126 94c-85.639 63.694-170.958 127.709-256 192z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "slow_motion_video"
+ ],
+ "defaultCode": 57448,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "slow_motion_video",
+ "id": 700,
+ "order": 711,
+ "prevSize": 24,
+ "code": 57448,
+ "name": "slow_motion_video"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 700
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 810v-596h-428v596h428zM726 44c46 0 84 38 84 84v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stay_primary_portrait"
+ ],
+ "defaultCode": 57558,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "smartphone, stay_current_portrait, stay_primary_portrait",
+ "id": 701,
+ "order": 712,
+ "prevSize": 24,
+ "code": 57558,
+ "name": "stay_primary_portrait"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 701
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 680l-126-126h126v126zM618 372c-78 0-142-66-142-144s64-142 142-142v64c-44 0-78 30-78 74s34 86 78 86h66c80 0 148 58 148 134v68h-64v-54c0-56-40-86-84-86h-66zM804 208c80 38 134 120 134 216v88h-64v-88c0-96-74-174-170-174v-64c44 0 78-36 78-80h64c0 40-16 76-42 102zM768 554h64v128h-64v-128zM874 554h64v128h-64v-128zM86 256l52-54 726 726-54 54-298-300h-426v-128h298z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "smoke_free"
+ ],
+ "defaultCode": 60234,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "smoke_free",
+ "id": 702,
+ "order": 713,
+ "prevSize": 24,
+ "code": 60234,
+ "name": "smoke_free"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 702
+ },
+ {
+ "icon": {
+ "paths": [
+ "M684 436c80 0 148 56 148 134v70h-64v-56c0-56-40-86-84-86h-66c-78 0-142-66-142-144s64-142 142-142v64c-44 0-78 30-78 74s34 86 78 86h66zM804 330c80 38 134 120 134 214v96h-64v-96c0-96-74-172-170-172v-64c44 0 78-36 78-80s-34-78-78-78v-64c78 0 142 64 142 142 0 40-16 76-42 102zM768 682h64v128h-64v-128zM874 682h64v128h-64v-128zM86 682h640v128h-640v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "smoking_rooms"
+ ],
+ "defaultCode": 60235,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "smoking_rooms",
+ "id": 703,
+ "order": 714,
+ "prevSize": 24,
+ "code": 60235,
+ "name": "smoking_rooms"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 703
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 470v-86h-86v86h86zM554 470v-86h-84v86h84zM384 470v-86h-86v86h86zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "textsms"
+ ],
+ "defaultCode": 57560,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "sms, textsms",
+ "id": 704,
+ "order": 715,
+ "prevSize": 24,
+ "code": 57560,
+ "name": "textsms"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 704
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 470v-86h256v76l-154 180h154v86h-256v-78l154-178h-154zM512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM938 244l-54 66-196-166 54-64zM336 144l-196 164-54-64 196-164z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "snooze"
+ ],
+ "defaultCode": 57414,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "snooze",
+ "id": 705,
+ "order": 716,
+ "prevSize": 24,
+ "code": 57414,
+ "name": "snooze"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 705
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 554v-84h512v84h-512zM128 256h768v86h-768v-86zM128 768v-86h256v86h-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort"
+ ],
+ "defaultCode": 57700,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "sort",
+ "id": 706,
+ "order": 717,
+ "prevSize": 24,
+ "code": 57700,
+ "name": "sort2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 706
+ },
+ {
+ "icon": {
+ "paths": [
+ "M672 688h260v68h-364v-54l252-366h-250v-68h354v54zM212 582h166l-84-222zM260 268h70l192 488h-78l-40-104h-218l-40 104h-78zM438 826h198l-100 100zM638 198h-202l100-100z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sort_by_alpha"
+ ],
+ "defaultCode": 57427,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "sort_by_alpha",
+ "id": 707,
+ "order": 718,
+ "prevSize": 24,
+ "code": 57427,
+ "name": "sort_by_alpha"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 707
+ },
+ {
+ "icon": {
+ "paths": [
+ "M660 410c-54 30-104 68-148 114-44-46-94-84-148-114 10-118 58-232 150-324 90 90 138 204 146 324zM86 426c190.34 0 343.492 108.446 426 234 82.593-125.685 235.712-234 426-234 0 226-142 418-342 490-28 10-54 16-84 22-30-4-58-12-84-22-200-72-342-264-342-490z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "spa"
+ ],
+ "defaultCode": 60236,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "spa",
+ "id": 708,
+ "order": 719,
+ "prevSize": 24,
+ "code": 60236,
+ "name": "spa"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 708
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 384h86v256h-684v-256h86v170h512v-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "space_bar"
+ ],
+ "defaultCode": 57942,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "space_bar",
+ "id": 709,
+ "order": 720,
+ "prevSize": 24,
+ "code": 57942,
+ "name": "space_bar"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 709
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 512c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM512 854c118 0 214-96 214-214s-96-214-214-214-214 96-214 214 96 214 214 214zM512 170c-48 0-86 40-86 86s38 86 86 86c46 0 86-40 86-86s-40-86-86-86zM726 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-428c-46 0-84-38-84-84v-684c0-46 38-84 84-84h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "speaker"
+ ],
+ "defaultCode": 58157,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "speaker",
+ "id": 710,
+ "order": 721,
+ "prevSize": 24,
+ "code": 58157,
+ "name": "speaker"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 710
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 214v682h426v86h-426c-48 0-86-40-86-86v-682h86zM490 534c0-58 50-108 108-108s106 50 106 108-48 106-106 106-108-48-108-106zM598 704c94 0 170-76 170-170s-76-172-170-172-172 78-172 172 78 170 172 170zM598 128c-46 0-86 38-86 86s40 84 86 84 84-36 84-84-38-86-84-86zM776 42c42 0 78 36 78 78v614c0 42-36 76-78 76h-358c-42 0-76-34-76-76v-614c0-42 34-78 76-78h358z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "speaker_group"
+ ],
+ "defaultCode": 58158,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "speaker_group",
+ "id": 711,
+ "order": 722,
+ "prevSize": 24,
+ "code": 58158,
+ "name": "speaker_group"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 711
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 342v-86h-342v86h342zM768 470v-86h-342v86h342zM640 598v-86h-214v86h214zM342 342v-86h-86v86h86zM342 470v-86h-86v86h86zM342 598v-86h-86v86h86zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "speaker_notes"
+ ],
+ "defaultCode": 59597,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "speaker_notes",
+ "id": 712,
+ "order": 723,
+ "prevSize": 24,
+ "code": 59597,
+ "name": "speaker_notes"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 712
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 86c46 0 84 38 84 84v512c0 46-36 84-82 86l-298-298h210v-86h-296l-42-42h338v-86h-342v82l-252-252h680zM256 470h86l-86-86v86zM342 598v-86h-86v86h86zM54 74l884 884-54 54-244-244h-384l-170 170v-724l-86-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "speaker_notes_off"
+ ],
+ "defaultCode": 59690,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "speaker_notes_off",
+ "id": 713,
+ "order": 724,
+ "prevSize": 24,
+ "code": 59690,
+ "name": "speaker_notes_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 713
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 854v-342h-256v342h256zM634 428c26 0 48 22 48 48v414c0 26-22 48-48 48h-244c-26 0-48-22-48-48v-414c0-26 22-50 48-50zM512 42c128 0 246 54 330 138l-60 60c-70-70-164-112-270-112s-200 42-270 112l-60-60c84-84 202-138 330-138zM298 302c54-54 130-88 214-88s160 34 214 88l-62 60c-38-38-92-62-152-62s-114 24-152 62z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "speaker_phone"
+ ],
+ "defaultCode": 57554,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "speaker_phone",
+ "id": 714,
+ "order": 725,
+ "prevSize": 24,
+ "code": 57554,
+ "name": "speaker_phone"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 714
+ },
+ {
+ "icon": {
+ "paths": [
+ "M922 494l60 60-406 406-216-218 60-60 156 158zM274 470h176l-88-236zM532 682l-50-128h-240l-48 128h-90l218-554h80l218 554h-88z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "spellcheck"
+ ],
+ "defaultCode": 59598,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "spellcheck",
+ "id": 715,
+ "order": 726,
+ "prevSize": 24,
+ "code": 59598,
+ "name": "spellcheck"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 715
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 658l160 96-42-182 142-124-188-16-72-172-72 172-188 16 142 124-42 182zM938 394l-232 202 70 300-264-160-264 160 70-300-232-202 306-26 120-282 120 282z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star_border"
+ ],
+ "defaultCode": 59450,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "star_border",
+ "id": 716,
+ "order": 727,
+ "prevSize": 24,
+ "code": 59450,
+ "name": "star_border"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 716
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 658l160 96-42-182 142-124-188-16-72-172v398zM938 394l-232 202 70 300-264-160-264 160 70-300-232-202 306-26 120-282 120 282z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "star_half"
+ ],
+ "defaultCode": 59449,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "star_half",
+ "id": 717,
+ "order": 728,
+ "prevSize": 24,
+ "code": 59449,
+ "name": "star_half"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 717
+ },
+ {
+ "icon": {
+ "paths": [
+ "M692 768l-48-206 160-138-210-18-82-192-82 194-210 16 160 138-48 206 180-108zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stars"
+ ],
+ "defaultCode": 59600,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "stars",
+ "id": 718,
+ "order": 729,
+ "prevSize": 24,
+ "code": 59600,
+ "name": "stars"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 718
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 298h-596v428h596v-428zM44 298c0-46 38-84 84-84h768c46 0 86 38 86 84v428c0 46-40 84-86 84h-768c-46 0-86-38-86-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stay_primary_landscape"
+ ],
+ "defaultCode": 57557,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "stay_current_landscape, stay_primary_landscape",
+ "id": 719,
+ "order": 730,
+ "prevSize": 24,
+ "code": 57557,
+ "name": "stay_primary_landscape"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 719
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 256h512v512h-512v-512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stop"
+ ],
+ "defaultCode": 57415,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "stop",
+ "id": 720,
+ "order": 731,
+ "prevSize": 24,
+ "code": 57415,
+ "name": "stop2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 720
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 640c40-56 90-88 156-104l-68-68c-50 48-74 108-88 172zM102 74l842 842-54 54-116-116h-774v-86h170c-48 0-84-38-84-84v-428c0-26 10-46 28-62l-66-66zM938 684c0 32-18 60-44 74l-236-236 68-64-172-158v90c-8 2-14 2-22 4l-224-222h546c46 0 84 36 84 84v428zM906 768h118v86h-34z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "stop_screen_share"
+ ],
+ "defaultCode": 57571,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "stop_screen_share",
+ "id": 721,
+ "order": 732,
+ "prevSize": 24,
+ "code": 57571,
+ "name": "stop_screen_share"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 721
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 470v84h86v-84h-86zM86 598v-172h852v172h-852zM256 298v-84h-86v84h86zM86 170h852v172h-852v-172zM170 726v84h86v-84h-86zM86 854v-172h852v172h-852z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "storage"
+ ],
+ "defaultCode": 57819,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "storage",
+ "id": 722,
+ "order": 733,
+ "prevSize": 24,
+ "code": 57819,
+ "name": "storage"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 722
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 768v-170h-256v170h256zM896 598h-42v256h-86v-256h-170v256h-428v-256h-42v-86l42-214h684l42 214v86zM854 170v86h-684v-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "store_mall_directory"
+ ],
+ "defaultCode": 58723,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "store, store_mall_directory",
+ "id": 723,
+ "order": 734,
+ "prevSize": 24,
+ "code": 58723,
+ "name": "store_mall_directory"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 723
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 682v-340h-86v170h-84v-170h-86v170h-86v-170h-84v170h-86v-170h-86v170h-84v-170h-86v340h768zM896 256c46 0 86 40 86 86v340c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-340c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "straighten"
+ ],
+ "defaultCode": 58396,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "straighten",
+ "id": 724,
+ "order": 735,
+ "prevSize": 24,
+ "code": 58396,
+ "name": "straighten"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 724
+ },
+ {
+ "icon": {
+ "paths": [
+ "M490 256c0 76 32 146 82 196l-418 418c-16-16-26-36-26-60v-596c0-46 40-86 86-86h308c-20 38-32 82-32 128zM554 256c0-118 96-214 214-214s214 96 214 214-96 214-214 214-214-96-214-214zM536 612c64-48 146-78 232-78 44 0 88 8 128 22v254c0 46-40 86-86 86h-298v-234c0-20 10-38 24-50z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "streetview"
+ ],
+ "defaultCode": 58734,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "streetview",
+ "id": 725,
+ "order": 736,
+ "prevSize": 24,
+ "code": 58734,
+ "name": "streetview"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 725
+ },
+ {
+ "icon": {
+ "paths": [
+ "M400 560c0 76.243 48.309 108 124 108 52.313 0 98-21.34 98-72 0-47.832-25.37-58.685-60-76-6-2-16-6-24-8h-410v-86h768v86h-166c2 4 6 10 8 14 8 20 14 44 14 70 0 92.509-60.376 138.965-134 160-28 8-58 12-92 12-20 0-42-2-62-6-43.831-8.766-81.207-20.905-112-44-45.673-34.254-78-79.826-78-158h126zM622 320c0-61.554-39.204-90-102-90-45.146 0-79.257 14.514-94 44-4 8-6 18-6 28 0 20 12 38 32 52 16 10 32 20 60 30h-196c-2-4-6-6-8-10-12-20-16-44-16-72 0-57.483 29.861-98.689 64-126 41.082-28.758 95.625-48 166-48 70.131 0 128.265 20.039 166 54 35.121 31.608 62 75.894 62 138h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "strikethrough_s"
+ ],
+ "defaultCode": 57943,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "strikethrough_s",
+ "id": 726,
+ "order": 737,
+ "prevSize": 24,
+ "code": 57943,
+ "name": "strikethrough_s"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 726
+ },
+ {
+ "icon": {
+ "paths": [
+ "M250 842v-270l148 356h-62c-46 0-86-40-86-86zM336 374c24 0 42-20 42-44s-18-42-42-42-42 18-42 42 18 44 42 44zM940 680c18 44-2 94-46 112l-314 130c-10 4-22 6-34 6-34 0-64-20-78-52l-212-512c-4-12-6-22-6-34 0-32 20-62 52-76l316-130c12-4 22-6 34-6 32 0 62 20 76 52zM108 838c-44-18-64-66-46-110l104-250v384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "style"
+ ],
+ "defaultCode": 58397,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "style",
+ "id": 727,
+ "order": 738,
+ "prevSize": 24,
+ "code": 58397,
+ "name": "style"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 727
+ },
+ {
+ "icon": {
+ "paths": [
+ "M470 384l60 60-154 154h392v-428h86v512h-478l154 154-60 60-256-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subdirectory_arrow_left"
+ ],
+ "defaultCode": 58841,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "subdirectory_arrow_left",
+ "id": 728,
+ "order": 739,
+ "prevSize": 24,
+ "code": 58841,
+ "name": "subdirectory_arrow_left"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 728
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 640l-256 256-60-60 154-154h-478v-512h86v428h392l-154-154 60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subdirectory_arrow_right"
+ ],
+ "defaultCode": 58842,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "subdirectory_arrow_right",
+ "id": 729,
+ "order": 740,
+ "prevSize": 24,
+ "code": 58842,
+ "name": "subdirectory_arrow_right"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 729
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 214h684v84h-684v-84zM170 640v-86h684v86h-684zM854 384v86h-684v-86h684zM598 726v84h-428v-84h428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subject"
+ ],
+ "defaultCode": 59602,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "subject",
+ "id": 730,
+ "order": 741,
+ "prevSize": 24,
+ "code": 59602,
+ "name": "subject"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 730
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 682l-256-138v278zM938 512v342c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-342c0-46 38-86 84-86h684c46 0 84 40 84 86zM768 86v84h-512v-84h512zM854 342h-684v-86h684v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subscriptions"
+ ],
+ "defaultCode": 57444,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "subscriptions",
+ "id": 731,
+ "order": 742,
+ "prevSize": 24,
+ "code": 57444,
+ "name": "subscriptions"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 731
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 598v-86h-428v86h428zM854 768v-86h-172v86h172zM598 768v-86h-428v86h428zM170 512v86h172v-86h-172zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subtitles"
+ ],
+ "defaultCode": 57416,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "subtitles",
+ "id": 732,
+ "order": 743,
+ "prevSize": 24,
+ "code": 57416,
+ "name": "subtitles"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 732
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 678v-294c0-112-114-128-256-128-128 0-256 16-256 128v294c0 62 50 112 112 112l-48 48v16h72l64-64h120l64 64h64v-16l-48-48c62 0 112-50 112-112zM760 120c114 44 178 138 178 258v560h-852v-560c0-120 64-214 178-258 76-30 168-34 248-34s172 4 248 34zM300 384h426v214h-426v-214zM320 682c0-24 18-42 42-42s44 18 44 42-20 44-44 44-42-20-42-44zM618 682c0-24 20-42 44-42s42 18 42 42-18 44-42 44-44-20-44-44z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "subway"
+ ],
+ "defaultCode": 58735,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "subway",
+ "id": 733,
+ "order": 744,
+ "prevSize": 24,
+ "code": 58735,
+ "name": "subway2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 733
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 554c28 0 64 4 102 12-88 48-102 112-102 148v96h-298v-106c0-100 198-150 298-150zM704 598c78 0 234 38 234 116v96h-468v-96c0-78 156-116 234-116zM384 470c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM704 512c-58 0-106-48-106-106s48-108 106-108 106 50 106 108-48 106-106 106z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "supervisor_account"
+ ],
+ "defaultCode": 59603,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "supervisor_account",
+ "id": 734,
+ "order": 745,
+ "prevSize": 24,
+ "code": 59603,
+ "name": "supervisor_account"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 734
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM754 754c66-66 100-154 100-242s-34-176-100-242l-62 62c50 50 76 114 76 180s-24 132-74 182zM512 682c94 0 170-76 170-170s-76-170-170-170-170 76-170 170 76 170 170 170zM332 692c-50-50-76-114-76-180s24-132 74-182l-60-60c-66 66-100 154-100 242s34 176 100 242zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "surround_sound"
+ ],
+ "defaultCode": 57417,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "surround_sound",
+ "id": 735,
+ "order": 746,
+ "prevSize": 24,
+ "code": 57417,
+ "name": "surround_sound"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 735
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 170l170 172h-128v298c0 94-76 170-170 170s-170-76-170-170v-298c0-46-40-86-86-86s-86 40-86 86v298h128l-170 170-170-170h128v-298c0-94 76-172 170-172s170 78 170 172v298c0 46 40 86 86 86s86-40 86-86v-298h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "swap_calls"
+ ],
+ "defaultCode": 57559,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "swap_calls",
+ "id": 736,
+ "order": 747,
+ "prevSize": 24,
+ "code": 57559,
+ "name": "swap_calls"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 736
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 384l-170 170v-128h-300v-84h300v-128zM298 470v128h300v84h-300v128l-170-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "swap_horiz"
+ ],
+ "defaultCode": 59604,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "swap_horiz",
+ "id": 737,
+ "order": 748,
+ "prevSize": 24,
+ "code": 59604,
+ "name": "swap_horiz"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 737
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 128l170 170h-128v300h-84v-300h-128zM682 726h128l-170 170-170-170h128v-300h84v300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "swap_vert"
+ ],
+ "defaultCode": 59605,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "swap_vert",
+ "id": 738,
+ "order": 749,
+ "prevSize": 24,
+ "code": 59605,
+ "name": "swap_vert"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 738
+ },
+ {
+ "icon": {
+ "paths": [
+ "M746 640h-106v-170h-86v170h-106l150 150zM278 384h106v170h86v-170h106l-150-150zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "swap_vertical_circle"
+ ],
+ "defaultCode": 59606,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "swap_vertical_circle",
+ "id": 739,
+ "order": 750,
+ "prevSize": 24,
+ "code": 59606,
+ "name": "swap_vertical_circle"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 739
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 662l150-150-150-150v108h-256v-108l-150 150 150 150v-108h256v108zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h136l78-84h256l78 84h136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "switch_camera"
+ ],
+ "defaultCode": 58398,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "switch_camera",
+ "id": 740,
+ "order": 751,
+ "prevSize": 24,
+ "code": 58398,
+ "name": "switch_camera"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 740
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 662l150-150-150-150v108h-256v-108l-148 150 148 150v-108h256v108zM768 406l170-172v556l-170-172v150c0 24-18 42-42 42h-598c-24 0-42-18-42-42v-512c0-24 18-42 42-42h598c24 0 42 18 42 42v150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "switch_video"
+ ],
+ "defaultCode": 58399,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "switch_video",
+ "id": 741,
+ "order": 752,
+ "prevSize": 24,
+ "code": 58399,
+ "name": "switch_video"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 741
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 170l-102 102c62 62 102 146 102 240 0 66-20 128-52 180l-64-62c18-36 30-76 30-118 0-70-30-134-76-180l-94 94v-256h256zM122 230l54-54 670 672-54 54-100-100c-30 18-62 32-96 40v-88c12-4 24-10 34-16l-344-344c-18 36-30 76-30 118 0 70 30 134 76 180l94-94v256h-256l102-102c-62-62-102-146-102-240 0-66 20-128 52-180zM426 270c-12 4-22 10-32 16l-62-64c30-18 60-32 94-40v88z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sync_disabled"
+ ],
+ "defaultCode": 58920,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "sync_disabled",
+ "id": 742,
+ "order": 753,
+ "prevSize": 24,
+ "code": 58920,
+ "name": "sync_disabled"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 742
+ },
+ {
+ "icon": {
+ "paths": [
+ "M470 554v-256h84v256h-84zM896 170l-100 102c62 62 100 146 100 240 0 160-108 292-256 330v-88c100-34 170-130 170-242 0-70-28-134-74-180l-96 94v-256h256zM470 726v-86h84v86h-84zM128 512c0-160 108-292 256-330v88c-100 34-170 130-170 242 0 70 28 134 74 180l96-94v256h-256l100-102c-62-62-100-146-100-240z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "sync_problem"
+ ],
+ "defaultCode": 58921,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "sync_problem",
+ "id": 743,
+ "order": 754,
+ "prevSize": 24,
+ "code": 58921,
+ "name": "sync_problem"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 743
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 554l-170 172-170-172h128v-212h84v212h128zM726 810v-596h-428v596h428zM726 44c46 0 84 38 84 84v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "system_update"
+ ],
+ "defaultCode": 58922,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "system_update",
+ "id": 744,
+ "order": 755,
+ "prevSize": 24,
+ "code": 58922,
+ "name": "system_update"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 744
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 150c46 0 86 38 86 84v598c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-598c0-46 40-84 86-84h256v84h-256v598h768v-598h-256v-84h256zM512 704l-170-170h128v-384h84v384h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "system_update_alt"
+ ],
+ "defaultCode": 59607,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "system_update_alt",
+ "id": 745,
+ "order": 756,
+ "prevSize": 24,
+ "code": 59607,
+ "name": "system_update_alt"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 745
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 810v-426h-342v-170h-426v596h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tab"
+ ],
+ "defaultCode": 59608,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "tab",
+ "id": 746,
+ "order": 757,
+ "prevSize": 24,
+ "code": 59608,
+ "name": "tab"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 746
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 896v-86h84v86h-84zM554 896v-86h86v86h-86zM896 554v-84h86v84h-86zM896 896v-86h86c0 46-40 86-86 86zM214 214v-86h84v86h-84zM214 896v-86h84v86h-84zM384 214v-86h86v86h-86zM896 726v-86h86v86h-86zM896 128c46 0 86 40 86 86v170h-428v-256h342zM128 896c-46 0-86-40-86-86h86v86zM42 726v-86h86v86h-86zM384 896v-86h86v86h-86zM42 214c0-46 40-86 86-86v86h-86zM42 554v-84h86v84h-86zM42 384v-86h86v86h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tab_unselected"
+ ],
+ "defaultCode": 59609,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "tab_unselected",
+ "id": 747,
+ "order": 758,
+ "prevSize": 24,
+ "code": 59609,
+ "name": "tab_unselected"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 747
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 768v-512h-596v512h596zM896 170c46 0 86 40 86 86l-2 512c0 46-38 86-84 86h-768c-46 0-86-40-86-86v-512c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tablet"
+ ],
+ "defaultCode": 58159,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "tablet",
+ "id": 748,
+ "order": 759,
+ "prevSize": 24,
+ "code": 58159,
+ "name": "tablet2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 748
+ },
+ {
+ "icon": {
+ "paths": [
+ "M822 810v-682h-620v682h620zM598 938v-42h-172v42h172zM768 0c70 0 128 58 128 128v768c0 70-58 128-128 128h-512c-70 0-128-58-128-128v-768c0-70 58-128 128-128h512z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tablet_android"
+ ],
+ "defaultCode": 58160,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "tablet_android",
+ "id": 749,
+ "order": 760,
+ "prevSize": 24,
+ "code": 58160,
+ "name": "tablet_android"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 749
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 810v-682h-640v682h640zM490 982c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM790 0c58 0 106 48 106 106v812c0 58-48 106-106 106h-598c-58 0-106-48-106-106v-812c0-58 48-106 106-106h598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tablet_mac"
+ ],
+ "defaultCode": 58161,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "tablet_mac",
+ "id": 750,
+ "order": 761,
+ "prevSize": 24,
+ "code": 58161,
+ "name": "tablet_mac"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 750
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 44c46 0 84 38 84 84v726c0 46-38 84-84 84h-90c-4-60-18-116-40-170h130v-554h-428v256c-28-12-54-22-84-28v-314c0-46 38-86 84-86zM86 512c260 0 468 210 468 470h-84c0-212-172-384-384-384v-86zM86 854c70 0 128 58 128 128h-128v-128zM86 682c166 0 298 134 298 300h-86c0-118-94-214-212-214v-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tap_and_play"
+ ],
+ "defaultCode": 58923,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "tap_and_play",
+ "id": 751,
+ "order": 762,
+ "prevSize": 24,
+ "code": 58923,
+ "name": "tap_and_play"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 751
+ },
+ {
+ "icon": {
+ "paths": [
+ "M918 384v128h-128v298h-128v-298h-128v-128h384zM106 170h556v128h-214v512h-128v-512h-214v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text_fields"
+ ],
+ "defaultCode": 57954,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "text_fields",
+ "id": 752,
+ "order": 763,
+ "prevSize": 24,
+ "code": 57954,
+ "name": "text_fields"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 752
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 256l-80 214h160zM406 546l-40 94h-88l202-470h64l202 470h-88l-40-94h-212zM214 726h596v84h-596v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "text_format"
+ ],
+ "defaultCode": 57701,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "text_format",
+ "id": 753,
+ "order": 764,
+ "prevSize": 24,
+ "code": 57701,
+ "name": "text_format"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 753
+ },
+ {
+ "icon": {
+ "paths": [
+ "M396 896l500-500v122l-378 378h-122zM896 810c0 45.948-40.071 86-86 86h-84l170-170v84zM214 128h84l-170 170v-84c0-46 40-86 86-86zM506 128h122l-500 500v-122zM832 132c30 8 54 30 62 60l-702 700c-29.35-8.386-51.612-30.641-60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "texture"
+ ],
+ "defaultCode": 58401,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "texture",
+ "id": 754,
+ "order": 765,
+ "prevSize": 24,
+ "code": 58401,
+ "name": "texture"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 754
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 128h172v512h-172v-512zM640 128c46 0 86 40 86 86v426c0 24-10 44-26 60l-280 282-46-46c-12-12-18-26-18-44v-14l42-196h-270c-46 0-86-38-86-84l2-4h-2v-82c0-12 2-22 6-32l130-300c12-30 42-52 78-52h384z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumb_down"
+ ],
+ "defaultCode": 59611,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "thumb_down",
+ "id": 755,
+ "order": 766,
+ "prevSize": 24,
+ "code": 59611,
+ "name": "thumb_down"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 755
+ },
+ {
+ "icon": {
+ "paths": [
+ "M982 426l-2 4h2v82c0 12-2 22-6 32l-130 300c-12 30-42 52-78 52h-384c-46 0-86-40-86-86v-426c0-24 10-44 26-60l280-282 46 46c12 12 18 26 18 44v14l-42 196h270c46 0 86 38 86 84zM42 896v-512h172v512h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumb_up"
+ ],
+ "defaultCode": 59612,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "thumb_up",
+ "id": 756,
+ "order": 767,
+ "prevSize": 24,
+ "code": 59612,
+ "name": "thumb_up"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 756
+ },
+ {
+ "icon": {
+ "paths": [
+ "M960 426c36 0 64 28 64 64v278c0 18-6 34-18 46l-212 210-34-34c-8-8-14-20-14-34 9.903-48.764 20.016-97.317 30-146h-222c-24 0-42-18-42-42v-54c0-8 2-14 4-22l98-226c10-22 32-40 58-40h288zM512 256v54c0 8-2 14-4 22l-98 226c-10 22-32 40-58 40h-288c-36 0-64-28-64-64v-278c0-18 6-34 18-46l212-210 34 34c8 8 14 20 14 34-9.903 48.764-20.016 97.317-30 146h222c24 0 42 18 42 42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "thumbs_up_down"
+ ],
+ "defaultCode": 59613,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "thumbs_up_down",
+ "id": 757,
+ "order": 768,
+ "prevSize": 24,
+ "code": 59613,
+ "name": "thumbs_up_down"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 757
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM692 332c100 100 102 260 2 360s-262 100-362 0l180-180v-256c66 0 130 26 180 76z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "timelapse"
+ ],
+ "defaultCode": 58402,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "timelapse",
+ "id": 758,
+ "order": 769,
+ "prevSize": 24,
+ "code": 58402,
+ "name": "timelapse"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 758
+ },
+ {
+ "icon": {
+ "paths": [
+ "M982 342c0 46-40 84-86 84-8 0-16 0-22-2l-152 152c2 6 4 14 4 22 0 46-40 84-86 84s-86-38-86-84c0-8 2-16 4-22l-110-110c-6 2-14 4-22 4s-16-2-22-4l-194 194c2 6 4 14 4 22 0 46-40 86-86 86s-86-40-86-86 40-84 86-84c8 0 16 0 22 2l194-194c-2-6-2-14-2-22 0-46 38-86 84-86s86 40 86 86c0 8 0 16-2 22l108 108c6-2 14-2 22-2s16 0 22 2l152-150c-2-6-4-14-4-22 0-46 40-86 86-86s86 40 86 86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "timeline"
+ ],
+ "defaultCode": 59682,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "timeline",
+ "id": 759,
+ "order": 770,
+ "prevSize": 24,
+ "code": 59682,
+ "name": "timeline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 759
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM812 316c52 66 84 148 84 238 0 212-172 384-384 384s-384-172-384-384 172-384 384-384c90 0 174 34 240 86l60-62c22 18 42 38 60 60zM470 598v-256h84v256h-84zM640 42v86h-256v-86h256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "timer"
+ ],
+ "defaultCode": 58405,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "timer",
+ "id": 760,
+ "order": 771,
+ "prevSize": 24,
+ "code": 58405,
+ "name": "timer"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 760
+ },
+ {
+ "icon": {
+ "paths": [
+ "M550 564v-108c0-46.336-4.565-80.274-20-106-10.651-21.301-30.408-30-60-30-12 0-26 2-36 6-38.752 23.251-46 67.987-46 132v106c0 26 0 48 4 66s12 30 18 42c11.183 22.366 28.34 32 60 32 30.847 0 49.232-10.465 60-32 6-12 12-24 16-42s4-40 4-66zM304 470c0-128.235 41.373-218 166-218 51.866 0 95.697 16.753 120 48 30.427 39.121 44 97.117 44 170v82c0 127.815-39.287 220-164 220-124.183 0-166-92.158-166-220v-82zM872 446c-32.637 0-60 13.357-60 46 0 29.093 15.625 31.050 38 40 10 4 24 8 38 10 22 4 38 10 56 16s32 16 44 24 20 20 26 32 10 24 10 42c0 61.841-40.186 88.062-88 104-18 6-38 8-60 8-71.904 0-126.918-28.808-148-78-6-14-10-28-10-44h82c0 42.578 34.153 60 76 60 37.394 0 66-11.786 66-46 0-27.148-17.025-33.61-38-42-25.468-10.187-69.818-18.182-96-28-16-6-28-14-40-22-22.109-14.739-38-37.152-38-72 0-55.126 40.755-89.585 84-104 18-6 36-8 58-8 81.863 0 150 38.271 150 118h-84c0-24.555-15.687-44.922-36-50-8-2-20-6-30-6zM0 330l202-74h12v512h-86v-410l-128 44v-72z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "timer_10"
+ ],
+ "defaultCode": 58403,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "timer_10",
+ "id": 761,
+ "order": 772,
+ "prevSize": 24,
+ "code": 58403,
+ "name": "timer_10"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 761
+ },
+ {
+ "icon": {
+ "paths": [
+ "M748 446c-31.882 0-62 15.146-62 46 0 27.366 18.619 31.448 40 40 10 4 22 8 36 10 22 4 40 10 58 16s32 16 44 24 20 20 26 32 10 24 10 42c0 61.841-40.186 88.062-88 104-18 6-40 8-62 8-70.791 0-125.226-29.528-146-78-6-14-10-28-10-44h80c0 40.848 37.077 60 78 60 37.394 0 66-11.786 66-46 0-27.148-17.025-33.61-38-42-10-4-26-8-42-12-37.616-7.523-69.901-20.601-96-38-21.057-14.038-36-38.904-36-72 0-55.126 40.755-89.585 84-104 18-6 36-8 58-8 81.863 0 150 38.271 150 118h-84c0-26.038-16.411-44.603-38-50-8-2-18-6-28-6zM430 506c49.449 18.543 84 50.968 84 116 0 51.199-17.71 87.282-48 110-28.071 24.061-68.907 40-120 40-93.754 0-168-50.495-168-144h86c0 23.009 8.297 45.722 22 56 14.704 11.028 35.068 20 60 20 54.151 0 84-28.151 84-82 0-57.252-34.133-82-92-82h-52v-66h50c41.016 0 70.217-16.541 82-46 4-10 4-20 4-32 0-49.775-24.914-76-76-76-37.446 0-59.461 14.922-72 40-4 8-6 18-6 30h-84c0-68.668 45.9-107.96 96-128 20-6 42-10 66-10 97.425 0 160 46.959 160 144 0 56.969-36.756 90.378-76 110z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "timer_3"
+ ],
+ "defaultCode": 58404,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "timer_3",
+ "id": 762,
+ "order": 773,
+ "prevSize": 24,
+ "code": 58404,
+ "name": "timer_3"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 762
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 854c54 0 106-16 150-42l-408-408c-26 44-40 96-40 150 0 166 132 300 298 300zM128 170l758 758-54 54-108-108c-62 40-134 64-212 64-212 0-384-172-384-384 0-78 24-152 64-212l-118-118zM470 402v-60h84v146zM640 42v86h-256v-86h256zM812 194l60 60-60 62c52 66 84 148 84 238 0 78-24 152-64 212l-62-62c26-44 40-96 40-150 0-166-132-298-298-298-54 0-104 14-148 40l-64-62c60-40 134-64 212-64 90 0 174 32 240 84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "timer_off"
+ ],
+ "defaultCode": 58406,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "timer_off",
+ "id": 763,
+ "order": 774,
+ "prevSize": 24,
+ "code": 58406,
+ "name": "timer_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 763
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 170h596v128h-234v512h-128v-512h-234v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "title"
+ ],
+ "defaultCode": 57956,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "title",
+ "id": 764,
+ "order": 775,
+ "prevSize": 24,
+ "code": 57956,
+ "name": "title"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 764
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 554v-84h86v84h-86zM810 298h86v86h-86v-86zM810 726v-86h86v86h-86zM128 726v-86h598v86h-598zM128 554v-84h598v84h-598zM128 384v-86h598v86h-598z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toc"
+ ],
+ "defaultCode": 59614,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "toc",
+ "id": 765,
+ "order": 776,
+ "prevSize": 24,
+ "code": 59614,
+ "name": "toc"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 765
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 426h214v214h-214v-214zM810 810v-468h-596v468h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "today"
+ ],
+ "defaultCode": 59615,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "today",
+ "id": 766,
+ "order": 777,
+ "prevSize": 24,
+ "code": 59615,
+ "name": "today"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 766
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 512c0 112 70 208 170 242v88c-148-38-256-170-256-330s108-292 256-330v88c-100 34-170 130-170 242zM640 768c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM640 170c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toll"
+ ],
+ "defaultCode": 59616,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "toll",
+ "id": 767,
+ "order": 778,
+ "prevSize": 24,
+ "code": 59616,
+ "name": "toll"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 767
+ },
+ {
+ "icon": {
+ "paths": [
+ "M842 598c4-14 6-30 8-44h-296v44h288zM778 726c10-14 22-30 30-44h-254v44h224zM554 850c44-6 86-20 124-40h-124v40zM554 426v44h296c-2-14-4-30-8-44h-288zM554 298v44h254c-8-14-20-30-30-44h-224zM554 174v40h124c-38-20-80-34-124-40zM470 850v-676c-168 20-300 164-300 338s132 318 300 338zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tonality"
+ ],
+ "defaultCode": 58407,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "tonality",
+ "id": 768,
+ "order": 779,
+ "prevSize": 24,
+ "code": 58407,
+ "name": "tonality"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 768
+ },
+ {
+ "icon": {
+ "paths": [
+ "M804 678c22 10 38 32 38 58v8l-32 226c-4 32-30 54-62 54h-290c-18 0-32-6-44-18l-212-212 34-34c8-8 20-14 34-14 4 0 6 2 10 2l146 30v-458c0-36 28-64 64-64s64 28 64 64v256h34c8 0 14 2 22 4zM384 480c-52-34-86-94-86-160 0-106 86-192 192-192s192 86 192 192c0 66-32 126-84 160v-160c0-58-50-106-108-106s-106 48-106 106v160z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "touch_app"
+ ],
+ "defaultCode": 59667,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "touch_app",
+ "id": 769,
+ "order": 780,
+ "prevSize": 24,
+ "code": 59667,
+ "name": "touch_app"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 769
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 512c0 128-106 234-234 234s-236-106-236-234h470zM512 512c-128 0-234-106-234-234s106-236 234-236v470zM512 512c128 0 234 106 234 234s-106 236-234 236v-470zM512 512c0-128 106-234 234-234s236 106 236 234h-470z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "toys"
+ ],
+ "defaultCode": 58162,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "toys",
+ "id": 770,
+ "order": 781,
+ "prevSize": 24,
+ "code": 58162,
+ "name": "toys"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 770
+ },
+ {
+ "icon": {
+ "paths": [
+ "M814 210c78 78 124 184 124 302 0 236-190 426-426 426s-426-190-426-426 190-426 426-426h42v352c26 14 44 42 44 74 0 46-40 86-86 86s-86-40-86-86c0-32 18-60 44-74v-90c-74 20-128 84-128 164 0 94 76 170 170 170s170-76 170-170c0-46-20-88-50-120l60-60c46 46 76 110 76 180 0 142-114 256-256 256s-256-114-256-256c0-126 92-232 214-252v-86c-168 20-300 164-300 338 0 188 154 342 342 342s342-154 342-342c0-94-38-180-100-242z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "track_changes"
+ ],
+ "defaultCode": 59617,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "track_changes",
+ "id": 771,
+ "order": 782,
+ "prevSize": 24,
+ "code": 59617,
+ "name": "track_changes"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 771
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 384c48 0 86-40 86-86 0-48-40-84-86-84-48 0-86 36-86 84 0 46 38 86 86 86zM512 598c48 0 86-40 86-86s-40-86-86-86c-48 0-86 40-86 86s38 86 86 86zM512 810c48 0 86-38 86-84s-40-86-86-86c-48 0-86 40-86 86s38 84 86 84zM854 426c0 80-54 146-128 166v48h128c0 80-54 144-128 164v50c0 24-20 42-44 42h-340c-24 0-44-18-44-42v-50c-74-20-128-84-128-164h128v-48c-74-20-128-86-128-166h128v-48c-74-20-128-84-128-164h128v-44c0-24 20-42 44-42h340c24 0 44 18 44 42v44h128c0 80-54 144-128 164v48h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "traffic"
+ ],
+ "defaultCode": 58725,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "traffic",
+ "id": 772,
+ "order": 783,
+ "prevSize": 24,
+ "code": 58725,
+ "name": "traffic"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 772
+ },
+ {
+ "icon": {
+ "paths": [
+ "M704 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM554 426h214v-170h-214v170zM470 426v-170h-214v170h214zM320 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 86c188 0 342 20 342 170v406c0 82-68 148-150 148l64 64v22h-86l-84-86h-162l-84 86h-96v-22l64-64c-82 0-150-66-150-148v-406c0-150 172-170 342-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "train"
+ ],
+ "defaultCode": 58736,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "train",
+ "id": 773,
+ "order": 784,
+ "prevSize": 24,
+ "code": 58736,
+ "name": "train2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 773
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 598v-214h-428v214h428zM512 790c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM810 722c0 72-38 132-110 132h4l64 64v20h-86l-84-84h-162l-84 84h-96v-20l68-68c-60-14-110-66-110-128v-360c0-118 120-144 254-148l34-64h-204v-64h428v64h-140l-32 64c146 4 256 28 256 148v360z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tram"
+ ],
+ "defaultCode": 58737,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "tram",
+ "id": 774,
+ "order": 785,
+ "prevSize": 24,
+ "code": 58737,
+ "name": "tram"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 774
+ },
+ {
+ "icon": {
+ "paths": [
+ "M246 380l-118 602h90l74-342 92 86v256h86v-322l-88-88 26-128c56 68 138 110 232 110v-84c-78 0-148-44-186-106l-40-68c-14-26-42-40-72-40-10 0-22 2-32 6l-224 92v200h84v-142l76-32zM406 234c-46 0-86-38-86-84s40-86 86-86 84 40 84 86-38 84-84 84zM832 842v-74l106 106-106 108v-76h-234v-64h234zM704 662h234v64h-234v74l-106-106 106-108v76z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "transfer_within_a_station"
+ ],
+ "defaultCode": 58738,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "transfer_within_a_station",
+ "id": 775,
+ "order": 786,
+ "prevSize": 24,
+ "code": 58738,
+ "name": "transfer_within_a_station"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 775
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 342v-86h256c46 0 86 40 86 86v256h-86v-256h-256zM938 768h-170v86h86l-128 128-128-128h84v-86h-340c-46 0-86-40-86-86v-340h-170v-86h170v-86h-86l128-128 128 128h-84v512h596v86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "transform"
+ ],
+ "defaultCode": 58408,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "transform",
+ "id": 776,
+ "order": 787,
+ "prevSize": 24,
+ "code": 58408,
+ "name": "transform"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 776
+ },
+ {
+ "icon": {
+ "paths": [
+ "M678 726h138l-70-186zM790 426l192 512h-86l-48-128h-202l-48 128h-86l192-512h86zM550 642l-34 88-132-132-214 212-60-60 218-214c-54-60-96-124-128-194h86c26 50 58 98 98 142 62-68 108-146 136-228h-478v-86h300v-84h84v84h300v86h-126c-32 100-84 196-158 278l-2 2z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "translate"
+ ],
+ "defaultCode": 59618,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "translate",
+ "id": 777,
+ "order": 788,
+ "prevSize": 24,
+ "code": 59618,
+ "name": "translate"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 777
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 768l98-98-208-208-170 170-316-316 60-60 256 256 170-170 268 268 98-98v256h-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trending_down"
+ ],
+ "defaultCode": 59619,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "trending_down",
+ "id": 778,
+ "order": 789,
+ "prevSize": 24,
+ "code": 59619,
+ "name": "trending_down"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 778
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938 512l-170 170v-128h-640v-84h640v-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trending_flat"
+ ],
+ "defaultCode": 59620,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "trending_flat",
+ "id": 779,
+ "order": 790,
+ "prevSize": 24,
+ "code": 59620,
+ "name": "trending_flat"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 779
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 256h256v256l-98-98-268 268-170-170-256 256-60-60 316-316 170 170 208-208z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "trending_up"
+ ],
+ "defaultCode": 59621,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "trending_up",
+ "id": 780,
+ "order": 791,
+ "prevSize": 24,
+ "code": 59621,
+ "name": "trending_up"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 780
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 384v-256h86v86h170v84h-170v86h-86zM896 554h-426v-84h426v84zM298 384h86v256h-86v-86h-170v-84h170v-86zM554 896h-84v-256h84v86h342v84h-342v86zM128 214h426v84h-426v-84zM128 726h256v84h-256v-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tune"
+ ],
+ "defaultCode": 58409,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "tune",
+ "id": 781,
+ "order": 792,
+ "prevSize": 24,
+ "code": 58409,
+ "name": "tune"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 781
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 726v-512h-768v512h768zM896 128c46 0 86 40 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-46 0-86-38-86-84v-512c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "tv"
+ ],
+ "defaultCode": 58163,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "tv",
+ "id": 782,
+ "order": 793,
+ "prevSize": 24,
+ "code": 58163,
+ "name": "tv2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 782
+ },
+ {
+ "icon": {
+ "paths": [
+ "M218 214h588l-40-44h-512zM512 406l-234 234h148v86h172v-86h148zM876 222c12 14 20 36 20 56v532c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-532c0-20 8-42 20-56l58-70c12-14 30-24 50-24h512c20 0 38 10 50 24z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unarchive"
+ ],
+ "defaultCode": 57705,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "unarchive",
+ "id": 783,
+ "order": 794,
+ "prevSize": 24,
+ "code": 57705,
+ "name": "unarchive"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 783
+ },
+ {
+ "icon": {
+ "paths": [
+ "M534 342c198 0 364 130 424 308l-100 32c-44-136-172-234-324-234-84 0-160 30-220 80l156 154h-384v-384l152 154c78-68 182-110 296-110z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "undo"
+ ],
+ "defaultCode": 57702,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "undo",
+ "id": 784,
+ "order": 795,
+ "prevSize": 24,
+ "code": 57702,
+ "name": "undo2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 784
+ },
+ {
+ "icon": {
+ "paths": [
+ "M708 230l-196 196-196-196 60-60 136 136 136-136zM316 794l196-196 196 196-60 60-136-136-136 136z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unfold_less"
+ ],
+ "defaultCode": 58838,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "unfold_less",
+ "id": 785,
+ "order": 796,
+ "prevSize": 24,
+ "code": 58838,
+ "name": "unfold_less"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 785
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 776l136-136 60 60-196 196-196-196 60-60zM512 248l-136 136-60-60 196-196 196 196-60 60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "unfold_more"
+ ],
+ "defaultCode": 58839,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "unfold_more",
+ "id": 786,
+ "order": 797,
+ "prevSize": 24,
+ "code": 58839,
+ "name": "unfold_more"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 786
+ },
+ {
+ "icon": {
+ "paths": [
+ "M534 342v180l148 90-30 52-182-110v-212h64zM896 432h-290l118-120c-116-116-306-120-422-4s-116 300 0 416 306 116 422 0c58-58 86-124 86-208h86c0 84-36 194-112 268-150 148-394 148-544 0s-150-388 0-536 390-148 540 0l116-120v304z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "update"
+ ],
+ "defaultCode": 59683,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "update",
+ "id": 787,
+ "order": 798,
+ "prevSize": 24,
+ "code": 59683,
+ "name": "update"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 787
+ },
+ {
+ "icon": {
+ "paths": [
+ "M640 298h170v172h-42v84c0 48-38 86-86 86h-128v130c30 16 52 48 52 84 0 52-42 94-94 94s-94-42-94-94c0-36 22-68 52-84v-130h-128c-48 0-86-38-86-86v-88c-30-16-52-46-52-82 0-52 42-94 94-94s94 42 94 94c0 36-20 66-50 82v88h128v-340h-86l128-172 128 172h-86v340h128v-84h-42v-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "usb"
+ ],
+ "defaultCode": 57824,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "usb",
+ "id": 788,
+ "order": 799,
+ "prevSize": 24,
+ "code": 57824,
+ "name": "usb2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 788
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 726l342-342-60-60-282 280-110-110-60 60zM512 42l384 172v256c0 236-164 458-384 512-220-54-384-276-384-512v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "verified_user"
+ ],
+ "defaultCode": 59624,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "verified_user",
+ "id": 789,
+ "order": 800,
+ "prevSize": 24,
+ "code": 59624,
+ "name": "verified_user"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 789
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 810h684v86h-684v-86zM682 554l-170 172-170-172h128v-426h84v426h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vertical_align_bottom"
+ ],
+ "defaultCode": 57944,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "vertical_align_bottom",
+ "id": 790,
+ "order": 801,
+ "prevSize": 24,
+ "code": 57944,
+ "name": "vertical_align_bottom"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 790
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 470h684v84h-684v-84zM682 214l-170 170-170-170h128v-172h84v172h128zM342 810l170-170 170 170h-128v172h-84v-172h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vertical_align_center"
+ ],
+ "defaultCode": 57945,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "vertical_align_center",
+ "id": 791,
+ "order": 802,
+ "prevSize": 24,
+ "code": 57945,
+ "name": "vertical_align_center"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 791
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 128h684v86h-684v-86zM342 470l170-172 170 172h-128v426h-84v-426h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vertical_align_top"
+ ],
+ "defaultCode": 57946,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "vertical_align_top",
+ "id": 792,
+ "order": 803,
+ "prevSize": 24,
+ "code": 57946,
+ "name": "vertical_align_top"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 792
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 810v-596h-340v596h340zM704 128c36 0 64 28 64 64v640c0 36-28 64-64 64h-384c-36 0-64-28-64-64v-640c0-36 28-64 64-64h384zM810 726v-428h86v428h-86zM938 384h86v256h-86v-256zM128 726v-428h86v428h-86zM0 640v-256h86v256h-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vibration"
+ ],
+ "defaultCode": 58925,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "vibration",
+ "id": 793,
+ "order": 804,
+ "prevSize": 24,
+ "code": 58925,
+ "name": "vibration"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 793
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 554v-84h-128v-128h-86v128h-128v84h128v128h86v-128h128zM726 448l170-170v468l-170-170v150c0 24-20 42-44 42h-512c-24 0-42-18-42-42v-428c0-24 18-42 42-42h512c24 0 44 18 44 42v150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "video_call"
+ ],
+ "defaultCode": 57456,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "video_call",
+ "id": 794,
+ "order": 805,
+ "prevSize": 24,
+ "code": 57456,
+ "name": "video_call"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 794
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 682v-468h-768v468h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "video_label"
+ ],
+ "defaultCode": 57457,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "video_label",
+ "id": 795,
+ "order": 806,
+ "prevSize": 24,
+ "code": 57457,
+ "name": "video_label"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 795
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 618l256-192-256-192v384zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "video_library"
+ ],
+ "defaultCode": 57418,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "video_library",
+ "id": 796,
+ "order": 807,
+ "prevSize": 24,
+ "code": 57418,
+ "name": "video_library"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 796
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 448l170-170v468l-170-170v150c0 24-20 42-44 42h-512c-24 0-42-18-42-42v-428c0-24 18-42 42-42h512c24 0 44 18 44 42v150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "videocam"
+ ],
+ "defaultCode": 57419,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "videocam",
+ "id": 797,
+ "order": 808,
+ "prevSize": 24,
+ "code": 57419,
+ "name": "videocam"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 797
+ },
+ {
+ "icon": {
+ "paths": [
+ "M140 86l756 756-54 54-136-136c-6 4-16 8-24 8h-512c-24 0-42-18-42-42v-428c0-24 18-42 42-42h32l-116-116zM896 278v456l-478-478h264c24 0 44 18 44 42v150z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "videocam_off"
+ ],
+ "defaultCode": 57420,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "videocam_off",
+ "id": 798,
+ "order": 809,
+ "prevSize": 24,
+ "code": 57420,
+ "name": "videocam_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 798
+ },
+ {
+ "icon": {
+ "paths": [
+ "M832 512c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM662 640c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM470 554v-84h-128v-128h-86v128h-128v84h128v128h86v-128h128zM896 256c46 0 86 40 86 86v340c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-340c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "videogame_asset"
+ ],
+ "defaultCode": 58168,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "videogame_asset",
+ "id": 799,
+ "order": 810,
+ "prevSize": 24,
+ "code": 58168,
+ "name": "videogame_asset"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 799
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 128c24 0 42 18 42 42v256c0 24-18 44-42 44h-726c-24 0-42-20-42-44v-256c0-24 18-42 42-42h726zM854 554c24 0 42 20 42 44v256c0 24-18 42-42 42h-726c-24 0-42-18-42-42v-256c0-24 18-44 42-44h726z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_agenda"
+ ],
+ "defaultCode": 59625,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "view_agenda",
+ "id": 800,
+ "order": 811,
+ "prevSize": 24,
+ "code": 59625,
+ "name": "view_agenda"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 800
+ },
+ {
+ "icon": {
+ "paths": [
+ "M342 768v-554h384v554h-384zM768 214h128v554h-128v-554zM170 768v-554h128v554h-128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_array"
+ ],
+ "defaultCode": 59626,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "view_array",
+ "id": 801,
+ "order": 812,
+ "prevSize": 24,
+ "code": 59626,
+ "name": "view_array"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 801
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 256h170v470h-170v-470zM86 726v-470h170v470h-170zM298 810v-640h428v640h-428z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_carousel"
+ ],
+ "defaultCode": 59627,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "view_carousel",
+ "id": 802,
+ "order": 813,
+ "prevSize": 24,
+ "code": 59627,
+ "name": "view_carousel"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 802
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 214h214v554h-214v-554zM170 768v-554h214v554h-214zM426 768v-554h214v554h-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_column"
+ ],
+ "defaultCode": 59628,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "view_column",
+ "id": 803,
+ "order": 814,
+ "prevSize": 24,
+ "code": 59628,
+ "name": "view_column"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 803
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 214h170v170h-170v-170zM768 810v-170h170v170h-170zM554 810v-170h172v170h-172zM342 810v-170h170v170h-170zM128 810v-170h170v170h-170zM768 598v-172h170v172h-170zM554 214h172v170h-172v-170zM342 384v-170h170v170h-170zM554 598v-172h172v172h-172zM342 598v-172h170v172h-170zM128 598v-172h170v172h-170zM128 384v-170h170v170h-170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_comfy"
+ ],
+ "defaultCode": 58410,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "view_comfy",
+ "id": 804,
+ "order": 815,
+ "prevSize": 24,
+ "code": 58410,
+ "name": "view_comfy"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 804
+ },
+ {
+ "icon": {
+ "paths": [
+ "M128 214h810v256h-810v-256zM426 810v-298h512v298h-512zM128 810v-298h256v298h-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_compact"
+ ],
+ "defaultCode": 58411,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "view_compact",
+ "id": 805,
+ "order": 816,
+ "prevSize": 24,
+ "code": 58411,
+ "name": "view_compact"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 805
+ },
+ {
+ "icon": {
+ "paths": [
+ "M86 128h810v128h-810v-128zM854 342c24 0 42 18 42 42v256c0 24-18 42-42 42h-726c-24 0-42-18-42-42v-256c0-24 18-42 42-42h726zM86 896v-128h810v128h-810z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_day"
+ ],
+ "defaultCode": 59629,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "view_day",
+ "id": 806,
+ "order": 817,
+ "prevSize": 24,
+ "code": 59629,
+ "name": "view_day"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 806
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 214h684v84h-684v-84zM170 470v-86h684v86h-684zM170 810v-84h684v84h-684zM170 640v-86h684v86h-684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_headline"
+ ],
+ "defaultCode": 59630,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "view_headline",
+ "id": 807,
+ "order": 818,
+ "prevSize": 24,
+ "code": 59630,
+ "name": "view_headline"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 807
+ },
+ {
+ "icon": {
+ "paths": [
+ "M384 214h512v170h-512v-170zM384 810v-170h512v170h-512zM384 598v-172h512v172h-512zM170 384v-170h172v170h-172zM170 810v-170h172v170h-172zM170 598v-172h172v172h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_list"
+ ],
+ "defaultCode": 59631,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "view_list",
+ "id": 808,
+ "order": 819,
+ "prevSize": 24,
+ "code": 59631,
+ "name": "view_list"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 808
+ },
+ {
+ "icon": {
+ "paths": [
+ "M682 214h214v256h-214v-256zM426 470v-256h214v256h-214zM682 768v-256h214v256h-214zM426 768v-256h214v256h-214zM170 768v-256h214v256h-214zM170 470v-256h214v256h-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_module"
+ ],
+ "defaultCode": 59632,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "view_module",
+ "id": 809,
+ "order": 820,
+ "prevSize": 24,
+ "code": 59632,
+ "name": "view_module"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 809
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 214h470v256h-470v-256zM682 768v-256h214v256h-214zM170 768v-554h214v554h-214zM426 768v-256h214v256h-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_quilt"
+ ],
+ "defaultCode": 59633,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "view_quilt",
+ "id": 810,
+ "order": 821,
+ "prevSize": 24,
+ "code": 59633,
+ "name": "view_quilt"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 810
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 214h726v256h-726v-256zM170 768v-256h726v256h-726z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_stream"
+ ],
+ "defaultCode": 59634,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "view_stream",
+ "id": 811,
+ "order": 822,
+ "prevSize": 24,
+ "code": 59634,
+ "name": "view_stream"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 811
+ },
+ {
+ "icon": {
+ "paths": [
+ "M554 214c24 0 44 18 44 42v512c0 24-20 42-44 42h-128c-24 0-42-18-42-42v-512c0-24 18-42 42-42h128zM854 214c24 0 42 18 42 42v512c0 24-18 42-42 42h-128c-24 0-44-18-44-42v-512c0-24 20-42 44-42h128zM256 214c24 0 42 18 42 42v512c0 24-18 42-42 42h-128c-24 0-42-18-42-42v-512c0-24 18-42 42-42h128z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "view_week"
+ ],
+ "defaultCode": 59635,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "view_week",
+ "id": 812,
+ "order": 823,
+ "prevSize": 24,
+ "code": 59635,
+ "name": "view_week"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 812
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 768c188 0 342-114 342-256s-154-256-342-256-342 114-342 256 154 256 342 256zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vignette"
+ ],
+ "defaultCode": 58421,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "vignette",
+ "id": 813,
+ "order": 824,
+ "prevSize": 24,
+ "code": 58421,
+ "name": "vignette"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 813
+ },
+ {
+ "icon": {
+ "paths": [
+ "M506 384h6c70 0 128 58 128 128v8zM322 418c-14 28-24 60-24 94 0 118 96 214 214 214 34 0 66-10 94-24l-66-66c-8 2-18 4-28 4-70 0-128-58-128-128 0-10 2-20 4-28zM86 182l54-54 756 756-54 54c-47.968-47.365-96.266-94.401-144-142-58 24-120 36-186 36-214 0-396-132-470-320 34-84 90-156 160-212-39.017-38.983-77.307-78.693-116-118zM512 298c-28 0-54 6-78 16l-92-92c52-20 110-30 170-30 214 0 394 132 468 320-32 80-82 148-146 202l-124-124c10-24 16-50 16-78 0-118-96-214-214-214z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "visibility_off"
+ ],
+ "defaultCode": 59637,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "visibility_off",
+ "id": 814,
+ "order": 825,
+ "prevSize": 24,
+ "code": 59637,
+ "name": "visibility_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 814
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 598v-342l-170 136v-136h-342v342h342v-138zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "voice_chat"
+ ],
+ "defaultCode": 58926,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "voice_chat",
+ "id": 815,
+ "order": 826,
+ "prevSize": 24,
+ "code": 58926,
+ "name": "voice_chat"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 815
+ },
+ {
+ "icon": {
+ "paths": [
+ "M790 640c82 0 148-68 148-150s-66-148-148-148-150 66-150 148 68 150 150 150zM234 640c82 0 150-68 150-150s-68-148-150-148-148 66-148 148 66 150 148 150zM790 256c130 0 234 104 234 234s-104 236-234 236h-556c-130 0-234-106-234-236s104-234 234-234 236 104 236 234c0 56-20 110-54 150h192c-34-40-54-94-54-150 0-130 106-234 236-234z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "voicemail"
+ ],
+ "defaultCode": 57561,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "voicemail",
+ "id": 816,
+ "order": 827,
+ "prevSize": 24,
+ "code": 57561,
+ "name": "voicemail"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 816
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 384h170l214-214v684l-214-214h-170v-256zM790 512c0 76-44 140-108 172v-344c64 32 108 96 108 172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume_down"
+ ],
+ "defaultCode": 57421,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "volume_down",
+ "id": 817,
+ "order": 828,
+ "prevSize": 24,
+ "code": 57421,
+ "name": "volume_down"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 817
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 384h172l212-214v684l-212-214h-172v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume_mute"
+ ],
+ "defaultCode": 57422,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "volume_mute",
+ "id": 818,
+ "order": 829,
+ "prevSize": 24,
+ "code": 57422,
+ "name": "volume_mute"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 818
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 170v180l-90-90zM182 128l714 714-54 54-88-88c-46 36-98 64-156 78v-88c36-10 68-28 96-50l-182-182v288l-214-214h-170v-256h202l-202-202zM810 512c0-136-88-250-212-286v-88c172 38 298 192 298 374 0 64-16 126-44 178l-64-66c14-34 22-72 22-112zM704 512c0 10 0 18-2 26l-104-104v-94c64 32 106 96 106 172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume_off"
+ ],
+ "defaultCode": 57423,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "volume_off",
+ "id": 819,
+ "order": 830,
+ "prevSize": 24,
+ "code": 57423,
+ "name": "volume_off"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 819
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 138c172 38 298 192 298 374s-126 336-298 374v-88c124-36 212-150 212-286s-88-250-212-286v-88zM704 512c0 76-42 140-106 172v-344c64 32 106 96 106 172zM128 384h170l214-214v684l-214-214h-170v-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "volume_up"
+ ],
+ "defaultCode": 57424,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "volume_up",
+ "id": 820,
+ "order": 831,
+ "prevSize": 24,
+ "code": 57424,
+ "name": "volume_up"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 820
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 598c46 0 86-40 86-86s-40-86-86-86-84 40-84 86 38 86 84 86zM540 426h442v172h-86v170h-170v-170h-186c-34 100-130 170-242 170-142 0-256-114-256-256s114-256 256-256c112 0 208 70 242 170z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vpn_key"
+ ],
+ "defaultCode": 57562,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "vpn_key",
+ "id": 821,
+ "order": 832,
+ "prevSize": 24,
+ "code": 57562,
+ "name": "vpn_key"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 821
+ },
+ {
+ "icon": {
+ "paths": [
+ "M426 894v-84c-46 0-84-38-84-84v-44l-206-204c-6 24-8 50-8 76 0 174 130 320 298 340zM808 512h86c2 14 2 28 2 42 0 236-190 428-426 428s-428-192-428-428 192-426 428-426c44 0 88 8 128 20v108c0 46-40 86-86 86h-86v84c0 24-18 44-42 44h-86v84h256c24 0 44 20 44 44v128h42c38 0 70 24 82 58 56-60 88-142 88-230 0-14 0-28-2-42zM904 170v-20c0-40-32-74-72-74s-72 34-72 74v20h144zM938 170c24 0 44 20 44 44v170c0 24-20 42-44 42h-212c-24 0-44-18-44-42v-170c0-24 20-44 44-44v-20c0-58 48-108 106-108s106 50 106 108v20z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "vpn_lock"
+ ],
+ "defaultCode": 58927,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "vpn_lock",
+ "id": 822,
+ "order": 833,
+ "prevSize": 24,
+ "code": 58927,
+ "name": "vpn_lock"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 822
+ },
+ {
+ "icon": {
+ "paths": [
+ "M170 554v300h300v84h-300c-46 0-84-38-84-84v-300h84zM854 854v-300h84v300c0 46-38 84-84 84h-300v-84h300zM854 86c46 0 84 38 84 84v300h-84v-300h-300v-84h300zM726 362c0 36-28 64-64 64s-64-28-64-64 28-64 64-64 64 28 64 64zM426 554l128 158 86-114 128 170h-512zM170 170v300h-84v-300c0-46 38-84 84-84h300v84h-300z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wallpaper"
+ ],
+ "defaultCode": 57788,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "wallpaper",
+ "id": 823,
+ "order": 834,
+ "prevSize": 24,
+ "code": 57788,
+ "name": "wallpaper"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 823
+ },
+ {
+ "icon": {
+ "paths": [
+ "M256 512c0 142 114 256 256 256s256-114 256-256-114-256-256-256-256 114-256 256zM854 512c0 108-52 206-130 268l-42 244h-340l-42-244c-80-62-130-160-130-268s50-206 130-268l42-244h340l42 244c78 62 130 160 130 268z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "watch"
+ ],
+ "defaultCode": 58164,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "watch",
+ "id": 824,
+ "order": 835,
+ "prevSize": 24,
+ "code": 58164,
+ "name": "watch"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 824
+ },
+ {
+ "icon": {
+ "paths": [
+ "M692 692l34-56-192-116v-222h-64v256zM512 86c234 0 426 192 426 426s-192 426-426 426-426-192-426-426 192-426 426-426z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "watch_later"
+ ],
+ "defaultCode": 59684,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "watch_later",
+ "id": 825,
+ "order": 836,
+ "prevSize": 24,
+ "code": 59684,
+ "name": "watch_later"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 825
+ },
+ {
+ "icon": {
+ "paths": [
+ "M440 682h80l-136-384h-86l-136 384h82l30-84h136zM938 298h78l-88 384h-74l-64-260-64 260h-76l-4-18c-56 112-170 190-304 190-188 0-342-154-342-342s154-342 342-342c108 0 204 50 266 128h32l52 270 64-270h68l64 270zM292 540l50-156 48 156h-98z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wb_auto"
+ ],
+ "defaultCode": 58412,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "wb_auto",
+ "id": 826,
+ "order": 837,
+ "prevSize": 24,
+ "code": 58412,
+ "name": "wb_auto"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 826
+ },
+ {
+ "icon": {
+ "paths": [
+ "M736 774l60-58 76 76-60 60zM854 448h128v86h-128v-86zM640 270c76 44 128 126 128 220 0 142-114 256-256 256s-256-114-256-256c0-94 52-176 128-220v-206h256v206zM170 448v86h-128v-86h128zM470 958v-126h84v126h-84zM152 792l76-78 60 60-76 78z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wb_incandescent"
+ ],
+ "defaultCode": 58414,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "wb_incandescent",
+ "id": 827,
+ "order": 838,
+ "prevSize": 24,
+ "code": 58414,
+ "name": "wb_incandescent"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 827
+ },
+ {
+ "icon": {
+ "paths": [
+ "M212 852l-60-62 76-76 60 60zM152 190l60-60 76 76-60 60zM872 792l-60 60-76-78 60-60zM554 958h-84v-126h84v126zM812 130l60 60-76 76-60-60zM470 24h84v126h-84v-126zM214 618v-256h596v256h-596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wb_iridescent"
+ ],
+ "defaultCode": 58422,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "wb_iridescent",
+ "id": 828,
+ "order": 839,
+ "prevSize": 24,
+ "code": 58422,
+ "name": "wb_iridescent"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 828
+ },
+ {
+ "icon": {
+ "paths": [
+ "M152 792l76-78 60 60-76 78zM470 958v-126h84v126h-84zM512 234c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256zM854 448h128v86h-128v-86zM736 774l60-58 76 76-60 60zM872 190l-76 76-60-60 76-76zM554 24v126h-84v-126h84zM170 448v86h-128v-86h128zM288 206l-60 60-76-76 60-60z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wb_sunny"
+ ],
+ "defaultCode": 58416,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "wb_sunny",
+ "id": 829,
+ "order": 840,
+ "prevSize": 24,
+ "code": 58416,
+ "name": "wb_sunny"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 829
+ },
+ {
+ "icon": {
+ "paths": [
+ "M704 256c-48 0-86-38-86-86s38-84 86-84 86 36 86 84-38 86-86 86zM320 256c-48 0-86-38-86-86s38-84 86-84 86 36 86 84-38 86-86 86zM768 938h-128v-256h-128l108-324c12-34 46-60 82-60h4c36 0 70 26 82 60l108 324h-128v256zM234 938v-320h-64v-234c0-46 40-86 86-86h128c46 0 86 40 86 86v234h-64v320h-172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wc"
+ ],
+ "defaultCode": 58941,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "wc",
+ "id": 830,
+ "order": 841,
+ "prevSize": 24,
+ "code": 58941,
+ "name": "wc"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 830
+ },
+ {
+ "icon": {
+ "paths": [
+ "M854 768v-384h-172v384h172zM640 554v-170h-470v170h470zM640 768v-170h-470v170h470zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "web"
+ ],
+ "defaultCode": 57425,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "web",
+ "id": 831,
+ "order": 842,
+ "prevSize": 24,
+ "code": 57425,
+ "name": "web"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 831
+ },
+ {
+ "icon": {
+ "paths": [
+ "M810 768v-426h-596v426h596zM810 170c48 0 86 40 86 86v512c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-512c0-46 38-86 86-86h596z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "web_asset"
+ ],
+ "defaultCode": 57449,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "web_asset",
+ "id": 832,
+ "order": 843,
+ "prevSize": 24,
+ "code": 57449,
+ "name": "web_asset"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 832
+ },
+ {
+ "icon": {
+ "paths": [
+ "M768 214c46 0 86 38 86 84v92c-50 18-86 64-86 120v88h-512v-88c0-56-36-102-86-120v-92c0-46 40-84 86-84h512zM896 426c46 0 86 40 86 86v214c0 46-40 84-86 84h-768c-46 0-86-38-86-84v-214c0-46 40-86 86-86s86 40 86 86v128h596v-128c0-46 40-86 86-86z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "weekend"
+ ],
+ "defaultCode": 57707,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "weekend",
+ "id": 833,
+ "order": 844,
+ "prevSize": 24,
+ "code": 57707,
+ "name": "weekend"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 833
+ },
+ {
+ "icon": {
+ "paths": [
+ "M500 810c114 0 204-90 204-204 0-60-8-116-24-172-44 58-122 94-198 110s-120 62-120 132c0 74 62 134 138 134zM576 28c166 134 278 340 278 570 0 188-154 340-342 340s-342-152-342-340c0-144 52-278 138-380v16c0 88 66 158 154 158s146-70 146-158c0-92-32-206-32-206z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "whatshot"
+ ],
+ "defaultCode": 59406,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "whatshot",
+ "id": 834,
+ "order": 845,
+ "prevSize": 24,
+ "code": 59406,
+ "name": "whatshot"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 834
+ },
+ {
+ "icon": {
+ "paths": [
+ "M710 72l242 242-242 240h186v342h-342v-342h156l-240-240v156h-342v-342h342v186zM128 896v-342h342v342h-342z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "widgets"
+ ],
+ "defaultCode": 57789,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "widgets",
+ "id": 835,
+ "order": 846,
+ "prevSize": 24,
+ "code": 57789,
+ "name": "widgets"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 835
+ },
+ {
+ "icon": {
+ "paths": [
+ "M214 554c166-164 432-164 596 0l-84 86c-118-118-310-118-428 0zM384 726c70-70 186-70 256 0l-128 128zM42 384c260-258 682-258 940 0l-86 86c-212-212-556-212-768 0z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wifi"
+ ],
+ "defaultCode": 58942,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "wifi",
+ "id": 836,
+ "order": 847,
+ "prevSize": 24,
+ "code": 58942,
+ "name": "wifi2"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 836
+ },
+ {
+ "icon": {
+ "paths": [
+ "M938 682v-64c0-36-28-64-64-64s-64 28-64 64v64h128zM982 682c24 0 42 20 42 44v170c0 24-18 42-42 42h-214c-24 0-42-18-42-42v-170c0-24 18-44 42-44v-64c0-58 48-106 106-106s108 48 108 106v64zM874 406c-118 0-212 94-212 212v122l-150 198-512-682c142-108 320-170 512-170s370 62 512 170l-114 152c-12-2-24-2-36-2z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wifi_lock"
+ ],
+ "defaultCode": 57825,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "wifi_lock",
+ "id": 837,
+ "order": 848,
+ "prevSize": 24,
+ "code": 57825,
+ "name": "wifi_lock"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 837
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 128c236 0 426 190 426 426 0 158-84 296-212 370l-44-74c102-60 172-170 172-296 0-188-154-340-342-340s-342 152-342 340c0 126 68 236 170 296l-42 74c-128-74-212-212-212-370 0-236 190-426 426-426zM768 554c0 94-52 178-128 222l-42-74c50-30 84-84 84-148 0-94-76-170-170-170s-170 76-170 170c0 64 34 118 84 148l-42 74c-76-44-128-128-128-222 0-142 114-256 256-256s256 114 256 256zM512 470c46 0 86 38 86 84s-40 86-86 86-86-40-86-86 40-84 86-84z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wifi_tethering"
+ ],
+ "defaultCode": 57826,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "wifi_tethering",
+ "id": 838,
+ "order": 849,
+ "prevSize": 24,
+ "code": 57826,
+ "name": "wifi_tethering"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 838
+ },
+ {
+ "icon": {
+ "paths": [
+ "M598 256v-86h-172v86h172zM854 256c48 0 84 38 84 86v468c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-468c0-48 36-86 84-86h172v-86c0-48 36-84 84-84h172c48 0 84 36 84 84v86h172z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "work"
+ ],
+ "defaultCode": 59641,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "work",
+ "id": 839,
+ "order": 850,
+ "prevSize": 24,
+ "code": 59641,
+ "name": "work"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 839
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 470c94 0 170 76 170 170s-76 170-170 170h-86v86l-128-128 128-128v86h96c46 0 86-40 86-86s-40-86-86-86h-566v-84h556zM854 214v84h-684v-84h684zM170 810v-84h256v84h-256z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "wrap_text"
+ ],
+ "defaultCode": 57947,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "wrap_text",
+ "id": 840,
+ "order": 851,
+ "prevSize": 24,
+ "code": 57947,
+ "name": "wrap_text"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 840
+ },
+ {
+ "icon": {
+ "paths": [
+ "M726 598l212 212-62 64-214-214v-32l-12-12c-48 42-112 66-180 66-52 0-100-14-142-38l64-62c24 10 50 16 78 16 106 0 192-86 192-192s-86-192-192-192-192 86-192 192h148l-176 170-164-170h106c0-150 124-278 278-278s278 124 278 278c0 70-26 132-68 180l12 12h34z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "youtube_searched_for"
+ ],
+ "defaultCode": 59642,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "youtube_searched_for",
+ "id": 841,
+ "order": 852,
+ "prevSize": 24,
+ "code": 59642,
+ "name": "youtube_searched_for"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 841
+ },
+ {
+ "icon": {
+ "paths": [
+ "M512 426h-86v86h-42v-86h-86v-42h86v-86h42v86h86v42zM406 598c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM662 598l212 212-64 64-212-212v-34l-12-12c-48 42-112 66-180 66-154 0-278-122-278-276s124-278 278-278 276 124 276 278c0 68-24 132-66 180l12 12h34z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "zoom_in"
+ ],
+ "defaultCode": 59647,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "zoom_in",
+ "id": 842,
+ "order": 853,
+ "prevSize": 24,
+ "code": 59647,
+ "name": "zoom_in"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 842
+ },
+ {
+ "icon": {
+ "paths": [
+ "M298 384h214v42h-214v-42zM406 598c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM662 598l212 212-64 64-212-212v-34l-12-12c-48 42-112 66-180 66-154 0-278-122-278-276s124-278 278-278 276 124 276 278c0 68-24 132-66 180l12 12h34z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "zoom_out"
+ ],
+ "defaultCode": 59648,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "zoom_out",
+ "id": 843,
+ "order": 854,
+ "prevSize": 24,
+ "code": 59649,
+ "name": "zoom_out"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 843
+ },
+ {
+ "icon": {
+ "paths": [
+ "M896 640v256h-256l98-98-124-122 62-62 122 124zM384 896h-256v-256l98 98 122-124 62 62-124 122zM128 384v-256h256l-98 98 124 122-62 62-122-124zM640 128h256v256l-98-98-122 124-62-62 124-122z"
+ ],
+ "attrs": [],
+ "isMulticolor": false,
+ "isMulticolor2": false,
+ "tags": [
+ "zoom_out_map"
+ ],
+ "defaultCode": 58731,
+ "grid": 24
+ },
+ "attrs": [],
+ "properties": {
+ "ligatures": "zoom_out_map",
+ "id": 844,
+ "order": 855,
+ "prevSize": 24,
+ "code": 58731,
+ "name": "zoom_out_map"
+ },
+ "setIdx": 2,
+ "setId": 2,
+ "iconIdx": 844
+ }
+ ],
+ "height": 1024,
+ "metadata": {
+ "name": "icomoon"
+ },
+ "preferences": {
+ "showGlyphs": true,
+ "showCodes": false,
+ "showQuickUse": true,
+ "showQuickUse2": true,
+ "showSVGs": true,
+ "fontPref": {
+ "prefix": "icon-",
+ "metadata": {
+ "fontFamily": "icomoon"
+ },
+ "metrics": {
+ "emSize": 1024,
+ "baseline": 6.25,
+ "whitespace": 50
+ },
+ "embed": false
+ },
+ "imagePref": {
+ "prefix": "icon-",
+ "png": true,
+ "useClassSelector": true,
+ "color": 0,
+ "bgColor": 16777215,
+ "classSelector": ".icon"
+ },
+ "historySize": 50,
+ "showLiga": false,
+ "gridSize": 16
+ }
+}
\ No newline at end of file
diff --git a/static/main/fonts/icomoon/style.css b/static/main/fonts/icomoon/style.css
new file mode 100644
index 0000000..05a9423
--- /dev/null
+++ b/static/main/fonts/icomoon/style.css
@@ -0,0 +1,4919 @@
+@font-face {
+ font-family: 'icomoon';
+ src: url('fonts/icomoon.eot?10si43');
+ src: url('fonts/icomoon.eot?10si43#iefix') format('embedded-opentype'),
+ url('fonts/icomoon.ttf?10si43') format('truetype'),
+ url('fonts/icomoon.woff?10si43') format('woff'),
+ url('fonts/icomoon.svg?10si43#icomoon') format('svg');
+ font-weight: normal;
+ font-style: normal;
+}
+
+[class^="icon-"], [class*=" icon-"] {
+ /* use !important to prevent issues with browser extensions that change fonts */
+ font-family: 'icomoon' !important;
+ speak: none;
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
+
+ /* Better Font Rendering =========== */
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.icon-asterisk:before {
+ content: "\f069";
+}
+.icon-plus:before {
+ content: "\f067";
+}
+.icon-question:before {
+ content: "\f128";
+}
+.icon-minus:before {
+ content: "\f068";
+}
+.icon-glass:before {
+ content: "\f000";
+}
+.icon-music:before {
+ content: "\f001";
+}
+.icon-search:before {
+ content: "\f002";
+}
+.icon-envelope-o:before {
+ content: "\f003";
+}
+.icon-heart:before {
+ content: "\f004";
+}
+.icon-star:before {
+ content: "\f005";
+}
+.icon-star-o:before {
+ content: "\f006";
+}
+.icon-user:before {
+ content: "\f007";
+}
+.icon-film:before {
+ content: "\f008";
+}
+.icon-th-large:before {
+ content: "\f009";
+}
+.icon-th:before {
+ content: "\f00a";
+}
+.icon-th-list:before {
+ content: "\f00b";
+}
+.icon-check:before {
+ content: "\f00c";
+}
+.icon-close:before {
+ content: "\f00d";
+}
+.icon-remove:before {
+ content: "\f00d";
+}
+.icon-times:before {
+ content: "\f00d";
+}
+.icon-search-plus:before {
+ content: "\f00e";
+}
+.icon-search-minus:before {
+ content: "\f010";
+}
+.icon-power-off:before {
+ content: "\f011";
+}
+.icon-signal:before {
+ content: "\f012";
+}
+.icon-cog:before {
+ content: "\f013";
+}
+.icon-gear:before {
+ content: "\f013";
+}
+.icon-trash-o:before {
+ content: "\f014";
+}
+.icon-home:before {
+ content: "\f015";
+}
+.icon-file-o:before {
+ content: "\f016";
+}
+.icon-clock-o:before {
+ content: "\f017";
+}
+.icon-road:before {
+ content: "\f018";
+}
+.icon-download:before {
+ content: "\f019";
+}
+.icon-arrow-circle-o-down:before {
+ content: "\f01a";
+}
+.icon-arrow-circle-o-up:before {
+ content: "\f01b";
+}
+.icon-inbox:before {
+ content: "\f01c";
+}
+.icon-play-circle-o:before {
+ content: "\f01d";
+}
+.icon-repeat:before {
+ content: "\f01e";
+}
+.icon-rotate-right:before {
+ content: "\f01e";
+}
+.icon-refresh:before {
+ content: "\f021";
+}
+.icon-list-alt:before {
+ content: "\f022";
+}
+.icon-lock:before {
+ content: "\f023";
+}
+.icon-flag:before {
+ content: "\f024";
+}
+.icon-headphones:before {
+ content: "\f025";
+}
+.icon-volume-off:before {
+ content: "\f026";
+}
+.icon-volume-down:before {
+ content: "\f027";
+}
+.icon-volume-up:before {
+ content: "\f028";
+}
+.icon-qrcode:before {
+ content: "\f029";
+}
+.icon-barcode:before {
+ content: "\f02a";
+}
+.icon-tag:before {
+ content: "\f02b";
+}
+.icon-tags:before {
+ content: "\f02c";
+}
+.icon-book:before {
+ content: "\f02d";
+}
+.icon-bookmark:before {
+ content: "\f02e";
+}
+.icon-print:before {
+ content: "\f02f";
+}
+.icon-camera:before {
+ content: "\f030";
+}
+.icon-font:before {
+ content: "\f031";
+}
+.icon-bold:before {
+ content: "\f032";
+}
+.icon-italic:before {
+ content: "\f033";
+}
+.icon-text-height:before {
+ content: "\f034";
+}
+.icon-text-width:before {
+ content: "\f035";
+}
+.icon-align-left:before {
+ content: "\f036";
+}
+.icon-align-center:before {
+ content: "\f037";
+}
+.icon-align-right:before {
+ content: "\f038";
+}
+.icon-align-justify:before {
+ content: "\f039";
+}
+.icon-list:before {
+ content: "\f03a";
+}
+.icon-dedent:before {
+ content: "\f03b";
+}
+.icon-outdent:before {
+ content: "\f03b";
+}
+.icon-indent:before {
+ content: "\f03c";
+}
+.icon-video-camera:before {
+ content: "\f03d";
+}
+.icon-image:before {
+ content: "\f03e";
+}
+.icon-photo:before {
+ content: "\f03e";
+}
+.icon-picture-o:before {
+ content: "\f03e";
+}
+.icon-pencil:before {
+ content: "\f040";
+}
+.icon-map-marker:before {
+ content: "\f041";
+}
+.icon-adjust:before {
+ content: "\f042";
+}
+.icon-tint:before {
+ content: "\f043";
+}
+.icon-edit:before {
+ content: "\f044";
+}
+.icon-pencil-square-o:before {
+ content: "\f044";
+}
+.icon-share-square-o:before {
+ content: "\f045";
+}
+.icon-check-square-o:before {
+ content: "\f046";
+}
+.icon-arrows:before {
+ content: "\f047";
+}
+.icon-step-backward:before {
+ content: "\f048";
+}
+.icon-fast-backward:before {
+ content: "\f049";
+}
+.icon-backward:before {
+ content: "\f04a";
+}
+.icon-play:before {
+ content: "\f04b";
+}
+.icon-pause:before {
+ content: "\f04c";
+}
+.icon-stop:before {
+ content: "\f04d";
+}
+.icon-forward:before {
+ content: "\f04e";
+}
+.icon-fast-forward:before {
+ content: "\f050";
+}
+.icon-step-forward:before {
+ content: "\f051";
+}
+.icon-eject:before {
+ content: "\f052";
+}
+.icon-chevron-left:before {
+ content: "\f053";
+}
+.icon-chevron-right:before {
+ content: "\f054";
+}
+.icon-plus-circle:before {
+ content: "\f055";
+}
+.icon-minus-circle:before {
+ content: "\f056";
+}
+.icon-times-circle:before {
+ content: "\f057";
+}
+.icon-check-circle:before {
+ content: "\f058";
+}
+.icon-question-circle:before {
+ content: "\f059";
+}
+.icon-info-circle:before {
+ content: "\f05a";
+}
+.icon-crosshairs:before {
+ content: "\f05b";
+}
+.icon-times-circle-o:before {
+ content: "\f05c";
+}
+.icon-check-circle-o:before {
+ content: "\f05d";
+}
+.icon-ban:before {
+ content: "\f05e";
+}
+.icon-arrow-left:before {
+ content: "\f060";
+}
+.icon-arrow-right:before {
+ content: "\f061";
+}
+.icon-arrow-up:before {
+ content: "\f062";
+}
+.icon-arrow-down:before {
+ content: "\f063";
+}
+.icon-mail-forward:before {
+ content: "\f064";
+}
+.icon-share:before {
+ content: "\f064";
+}
+.icon-expand:before {
+ content: "\f065";
+}
+.icon-compress:before {
+ content: "\f066";
+}
+.icon-exclamation-circle:before {
+ content: "\f06a";
+}
+.icon-gift:before {
+ content: "\f06b";
+}
+.icon-leaf:before {
+ content: "\f06c";
+}
+.icon-fire:before {
+ content: "\f06d";
+}
+.icon-eye:before {
+ content: "\f06e";
+}
+.icon-eye-slash:before {
+ content: "\f070";
+}
+.icon-exclamation-triangle:before {
+ content: "\f071";
+}
+.icon-warning:before {
+ content: "\f071";
+}
+.icon-plane:before {
+ content: "\f072";
+}
+.icon-calendar:before {
+ content: "\f073";
+}
+.icon-random:before {
+ content: "\f074";
+}
+.icon-comment:before {
+ content: "\f075";
+}
+.icon-magnet:before {
+ content: "\f076";
+}
+.icon-chevron-up:before {
+ content: "\f077";
+}
+.icon-chevron-down:before {
+ content: "\f078";
+}
+.icon-retweet:before {
+ content: "\f079";
+}
+.icon-shopping-cart:before {
+ content: "\f07a";
+}
+.icon-folder:before {
+ content: "\f07b";
+}
+.icon-folder-open:before {
+ content: "\f07c";
+}
+.icon-arrows-v:before {
+ content: "\f07d";
+}
+.icon-arrows-h:before {
+ content: "\f07e";
+}
+.icon-bar-chart:before {
+ content: "\f080";
+}
+.icon-bar-chart-o:before {
+ content: "\f080";
+}
+.icon-twitter-square:before {
+ content: "\f081";
+}
+.icon-facebook-square:before {
+ content: "\f082";
+}
+.icon-camera-retro:before {
+ content: "\f083";
+}
+.icon-key:before {
+ content: "\f084";
+}
+.icon-cogs:before {
+ content: "\f085";
+}
+.icon-gears:before {
+ content: "\f085";
+}
+.icon-comments:before {
+ content: "\f086";
+}
+.icon-thumbs-o-up:before {
+ content: "\f087";
+}
+.icon-thumbs-o-down:before {
+ content: "\f088";
+}
+.icon-star-half:before {
+ content: "\f089";
+}
+.icon-heart-o:before {
+ content: "\f08a";
+}
+.icon-sign-out:before {
+ content: "\f08b";
+}
+.icon-linkedin-square:before {
+ content: "\f08c";
+}
+.icon-thumb-tack:before {
+ content: "\f08d";
+}
+.icon-external-link:before {
+ content: "\f08e";
+}
+.icon-sign-in:before {
+ content: "\f090";
+}
+.icon-trophy:before {
+ content: "\f091";
+}
+.icon-github-square:before {
+ content: "\f092";
+}
+.icon-upload:before {
+ content: "\f093";
+}
+.icon-lemon-o:before {
+ content: "\f094";
+}
+.icon-phone:before {
+ content: "\f095";
+}
+.icon-square-o:before {
+ content: "\f096";
+}
+.icon-bookmark-o:before {
+ content: "\f097";
+}
+.icon-phone-square:before {
+ content: "\f098";
+}
+.icon-twitter:before {
+ content: "\f099";
+}
+.icon-facebook:before {
+ content: "\f09a";
+}
+.icon-facebook-f:before {
+ content: "\f09a";
+}
+.icon-github:before {
+ content: "\f09b";
+}
+.icon-unlock:before {
+ content: "\f09c";
+}
+.icon-credit-card:before {
+ content: "\f09d";
+}
+.icon-feed:before {
+ content: "\f09e";
+}
+.icon-rss:before {
+ content: "\f09e";
+}
+.icon-hdd-o:before {
+ content: "\f0a0";
+}
+.icon-bullhorn:before {
+ content: "\f0a1";
+}
+.icon-bell-o:before {
+ content: "\f0a2";
+}
+.icon-certificate:before {
+ content: "\f0a3";
+}
+.icon-hand-o-right:before {
+ content: "\f0a4";
+}
+.icon-hand-o-left:before {
+ content: "\f0a5";
+}
+.icon-hand-o-up:before {
+ content: "\f0a6";
+}
+.icon-hand-o-down:before {
+ content: "\f0a7";
+}
+.icon-arrow-circle-left:before {
+ content: "\f0a8";
+}
+.icon-arrow-circle-right:before {
+ content: "\f0a9";
+}
+.icon-arrow-circle-up:before {
+ content: "\f0aa";
+}
+.icon-arrow-circle-down:before {
+ content: "\f0ab";
+}
+.icon-globe:before {
+ content: "\f0ac";
+}
+.icon-wrench:before {
+ content: "\f0ad";
+}
+.icon-tasks:before {
+ content: "\f0ae";
+}
+.icon-filter:before {
+ content: "\f0b0";
+}
+.icon-briefcase:before {
+ content: "\f0b1";
+}
+.icon-arrows-alt:before {
+ content: "\f0b2";
+}
+.icon-group:before {
+ content: "\f0c0";
+}
+.icon-users:before {
+ content: "\f0c0";
+}
+.icon-chain:before {
+ content: "\f0c1";
+}
+.icon-link:before {
+ content: "\f0c1";
+}
+.icon-cloud:before {
+ content: "\f0c2";
+}
+.icon-flask:before {
+ content: "\f0c3";
+}
+.icon-cut:before {
+ content: "\f0c4";
+}
+.icon-scissors:before {
+ content: "\f0c4";
+}
+.icon-copy:before {
+ content: "\f0c5";
+}
+.icon-files-o:before {
+ content: "\f0c5";
+}
+.icon-paperclip:before {
+ content: "\f0c6";
+}
+.icon-floppy-o:before {
+ content: "\f0c7";
+}
+.icon-save:before {
+ content: "\f0c7";
+}
+.icon-square:before {
+ content: "\f0c8";
+}
+.icon-bars:before {
+ content: "\f0c9";
+}
+.icon-navicon:before {
+ content: "\f0c9";
+}
+.icon-reorder:before {
+ content: "\f0c9";
+}
+.icon-list-ul:before {
+ content: "\f0ca";
+}
+.icon-list-ol:before {
+ content: "\f0cb";
+}
+.icon-strikethrough:before {
+ content: "\f0cc";
+}
+.icon-underline:before {
+ content: "\f0cd";
+}
+.icon-table:before {
+ content: "\f0ce";
+}
+.icon-magic:before {
+ content: "\f0d0";
+}
+.icon-truck:before {
+ content: "\f0d1";
+}
+.icon-pinterest:before {
+ content: "\f0d2";
+}
+.icon-pinterest-square:before {
+ content: "\f0d3";
+}
+.icon-google-plus-square:before {
+ content: "\f0d4";
+}
+.icon-google-plus:before {
+ content: "\f0d5";
+}
+.icon-money:before {
+ content: "\f0d6";
+}
+.icon-caret-down:before {
+ content: "\f0d7";
+}
+.icon-caret-up:before {
+ content: "\f0d8";
+}
+.icon-caret-left:before {
+ content: "\f0d9";
+}
+.icon-caret-right:before {
+ content: "\f0da";
+}
+.icon-columns:before {
+ content: "\f0db";
+}
+.icon-sort:before {
+ content: "\f0dc";
+}
+.icon-unsorted:before {
+ content: "\f0dc";
+}
+.icon-sort-desc:before {
+ content: "\f0dd";
+}
+.icon-sort-down:before {
+ content: "\f0dd";
+}
+.icon-sort-asc:before {
+ content: "\f0de";
+}
+.icon-sort-up:before {
+ content: "\f0de";
+}
+.icon-envelope:before {
+ content: "\f0e0";
+}
+.icon-linkedin:before {
+ content: "\f0e1";
+}
+.icon-rotate-left:before {
+ content: "\f0e2";
+}
+.icon-undo:before {
+ content: "\f0e2";
+}
+.icon-gavel:before {
+ content: "\f0e3";
+}
+.icon-legal:before {
+ content: "\f0e3";
+}
+.icon-dashboard:before {
+ content: "\f0e4";
+}
+.icon-tachometer:before {
+ content: "\f0e4";
+}
+.icon-comment-o:before {
+ content: "\f0e5";
+}
+.icon-comments-o:before {
+ content: "\f0e6";
+}
+.icon-bolt:before {
+ content: "\f0e7";
+}
+.icon-flash:before {
+ content: "\f0e7";
+}
+.icon-sitemap:before {
+ content: "\f0e8";
+}
+.icon-umbrella:before {
+ content: "\f0e9";
+}
+.icon-clipboard:before {
+ content: "\f0ea";
+}
+.icon-paste:before {
+ content: "\f0ea";
+}
+.icon-lightbulb-o:before {
+ content: "\f0eb";
+}
+.icon-exchange:before {
+ content: "\f0ec";
+}
+.icon-cloud-download:before {
+ content: "\f0ed";
+}
+.icon-cloud-upload:before {
+ content: "\f0ee";
+}
+.icon-user-md:before {
+ content: "\f0f0";
+}
+.icon-stethoscope:before {
+ content: "\f0f1";
+}
+.icon-suitcase:before {
+ content: "\f0f2";
+}
+.icon-bell:before {
+ content: "\f0f3";
+}
+.icon-coffee:before {
+ content: "\f0f4";
+}
+.icon-cutlery:before {
+ content: "\f0f5";
+}
+.icon-file-text-o:before {
+ content: "\f0f6";
+}
+.icon-building-o:before {
+ content: "\f0f7";
+}
+.icon-hospital-o:before {
+ content: "\f0f8";
+}
+.icon-ambulance:before {
+ content: "\f0f9";
+}
+.icon-medkit:before {
+ content: "\f0fa";
+}
+.icon-fighter-jet:before {
+ content: "\f0fb";
+}
+.icon-beer:before {
+ content: "\f0fc";
+}
+.icon-h-square:before {
+ content: "\f0fd";
+}
+.icon-plus-square:before {
+ content: "\f0fe";
+}
+.icon-angle-double-left:before {
+ content: "\f100";
+}
+.icon-angle-double-right:before {
+ content: "\f101";
+}
+.icon-angle-double-up:before {
+ content: "\f102";
+}
+.icon-angle-double-down:before {
+ content: "\f103";
+}
+.icon-angle-left:before {
+ content: "\f104";
+}
+.icon-angle-right:before {
+ content: "\f105";
+}
+.icon-angle-up:before {
+ content: "\f106";
+}
+.icon-angle-down:before {
+ content: "\f107";
+}
+.icon-desktop:before {
+ content: "\f108";
+}
+.icon-laptop:before {
+ content: "\f109";
+}
+.icon-tablet:before {
+ content: "\f10a";
+}
+.icon-mobile:before {
+ content: "\f10b";
+}
+.icon-mobile-phone:before {
+ content: "\f10b";
+}
+.icon-circle-o:before {
+ content: "\f10c";
+}
+.icon-quote-left:before {
+ content: "\f10d";
+}
+.icon-quote-right:before {
+ content: "\f10e";
+}
+.icon-spinner:before {
+ content: "\f110";
+}
+.icon-circle:before {
+ content: "\f111";
+}
+.icon-mail-reply:before {
+ content: "\f112";
+}
+.icon-reply:before {
+ content: "\f112";
+}
+.icon-github-alt:before {
+ content: "\f113";
+}
+.icon-folder-o:before {
+ content: "\f114";
+}
+.icon-folder-open-o:before {
+ content: "\f115";
+}
+.icon-smile-o:before {
+ content: "\f118";
+}
+.icon-frown-o:before {
+ content: "\f119";
+}
+.icon-meh-o:before {
+ content: "\f11a";
+}
+.icon-gamepad:before {
+ content: "\f11b";
+}
+.icon-keyboard-o:before {
+ content: "\f11c";
+}
+.icon-flag-o:before {
+ content: "\f11d";
+}
+.icon-flag-checkered:before {
+ content: "\f11e";
+}
+.icon-terminal:before {
+ content: "\f120";
+}
+.icon-code:before {
+ content: "\f121";
+}
+.icon-mail-reply-all:before {
+ content: "\f122";
+}
+.icon-reply-all:before {
+ content: "\f122";
+}
+.icon-star-half-empty:before {
+ content: "\f123";
+}
+.icon-star-half-full:before {
+ content: "\f123";
+}
+.icon-star-half-o:before {
+ content: "\f123";
+}
+.icon-location-arrow:before {
+ content: "\f124";
+}
+.icon-crop:before {
+ content: "\f125";
+}
+.icon-code-fork:before {
+ content: "\f126";
+}
+.icon-chain-broken:before {
+ content: "\f127";
+}
+.icon-unlink:before {
+ content: "\f127";
+}
+.icon-info:before {
+ content: "\f129";
+}
+.icon-exclamation:before {
+ content: "\f12a";
+}
+.icon-superscript:before {
+ content: "\f12b";
+}
+.icon-subscript:before {
+ content: "\f12c";
+}
+.icon-eraser:before {
+ content: "\f12d";
+}
+.icon-puzzle-piece:before {
+ content: "\f12e";
+}
+.icon-microphone:before {
+ content: "\f130";
+}
+.icon-microphone-slash:before {
+ content: "\f131";
+}
+.icon-shield:before {
+ content: "\f132";
+}
+.icon-calendar-o:before {
+ content: "\f133";
+}
+.icon-fire-extinguisher:before {
+ content: "\f134";
+}
+.icon-rocket:before {
+ content: "\f135";
+}
+.icon-maxcdn:before {
+ content: "\f136";
+}
+.icon-chevron-circle-left:before {
+ content: "\f137";
+}
+.icon-chevron-circle-right:before {
+ content: "\f138";
+}
+.icon-chevron-circle-up:before {
+ content: "\f139";
+}
+.icon-chevron-circle-down:before {
+ content: "\f13a";
+}
+.icon-html5:before {
+ content: "\f13b";
+}
+.icon-css3:before {
+ content: "\f13c";
+}
+.icon-anchor:before {
+ content: "\f13d";
+}
+.icon-unlock-alt:before {
+ content: "\f13e";
+}
+.icon-bullseye:before {
+ content: "\f140";
+}
+.icon-ellipsis-h:before {
+ content: "\f141";
+}
+.icon-ellipsis-v:before {
+ content: "\f142";
+}
+.icon-rss-square:before {
+ content: "\f143";
+}
+.icon-play-circle:before {
+ content: "\f144";
+}
+.icon-ticket:before {
+ content: "\f145";
+}
+.icon-minus-square:before {
+ content: "\f146";
+}
+.icon-minus-square-o:before {
+ content: "\f147";
+}
+.icon-level-up:before {
+ content: "\f148";
+}
+.icon-level-down:before {
+ content: "\f149";
+}
+.icon-check-square:before {
+ content: "\f14a";
+}
+.icon-pencil-square:before {
+ content: "\f14b";
+}
+.icon-external-link-square:before {
+ content: "\f14c";
+}
+.icon-share-square:before {
+ content: "\f14d";
+}
+.icon-compass:before {
+ content: "\f14e";
+}
+.icon-caret-square-o-down:before {
+ content: "\f150";
+}
+.icon-toggle-down:before {
+ content: "\f150";
+}
+.icon-caret-square-o-up:before {
+ content: "\f151";
+}
+.icon-toggle-up:before {
+ content: "\f151";
+}
+.icon-caret-square-o-right:before {
+ content: "\f152";
+}
+.icon-toggle-right:before {
+ content: "\f152";
+}
+.icon-eur:before {
+ content: "\f153";
+}
+.icon-euro:before {
+ content: "\f153";
+}
+.icon-gbp:before {
+ content: "\f154";
+}
+.icon-dollar:before {
+ content: "\f155";
+}
+.icon-usd:before {
+ content: "\f155";
+}
+.icon-inr:before {
+ content: "\f156";
+}
+.icon-rupee:before {
+ content: "\f156";
+}
+.icon-cny:before {
+ content: "\f157";
+}
+.icon-jpy:before {
+ content: "\f157";
+}
+.icon-rmb:before {
+ content: "\f157";
+}
+.icon-yen:before {
+ content: "\f157";
+}
+.icon-rouble:before {
+ content: "\f158";
+}
+.icon-rub:before {
+ content: "\f158";
+}
+.icon-ruble:before {
+ content: "\f158";
+}
+.icon-krw:before {
+ content: "\f159";
+}
+.icon-won:before {
+ content: "\f159";
+}
+.icon-bitcoin:before {
+ content: "\f15a";
+}
+.icon-btc:before {
+ content: "\f15a";
+}
+.icon-file:before {
+ content: "\f15b";
+}
+.icon-file-text:before {
+ content: "\f15c";
+}
+.icon-sort-alpha-asc:before {
+ content: "\f15d";
+}
+.icon-sort-alpha-desc:before {
+ content: "\f15e";
+}
+.icon-sort-amount-asc:before {
+ content: "\f160";
+}
+.icon-sort-amount-desc:before {
+ content: "\f161";
+}
+.icon-sort-numeric-asc:before {
+ content: "\f162";
+}
+.icon-sort-numeric-desc:before {
+ content: "\f163";
+}
+.icon-thumbs-up:before {
+ content: "\f164";
+}
+.icon-thumbs-down:before {
+ content: "\f165";
+}
+.icon-youtube-square:before {
+ content: "\f166";
+}
+.icon-youtube:before {
+ content: "\f167";
+}
+.icon-xing:before {
+ content: "\f168";
+}
+.icon-xing-square:before {
+ content: "\f169";
+}
+.icon-youtube-play:before {
+ content: "\f16a";
+}
+.icon-dropbox:before {
+ content: "\f16b";
+}
+.icon-stack-overflow:before {
+ content: "\f16c";
+}
+.icon-instagram:before {
+ content: "\f16d";
+}
+.icon-flickr:before {
+ content: "\f16e";
+}
+.icon-adn:before {
+ content: "\f170";
+}
+.icon-bitbucket:before {
+ content: "\f171";
+}
+.icon-bitbucket-square:before {
+ content: "\f172";
+}
+.icon-tumblr:before {
+ content: "\f173";
+}
+.icon-tumblr-square:before {
+ content: "\f174";
+}
+.icon-long-arrow-down:before {
+ content: "\f175";
+}
+.icon-long-arrow-up:before {
+ content: "\f176";
+}
+.icon-long-arrow-left:before {
+ content: "\f177";
+}
+.icon-long-arrow-right:before {
+ content: "\f178";
+}
+.icon-apple:before {
+ content: "\f179";
+}
+.icon-windows:before {
+ content: "\f17a";
+}
+.icon-android:before {
+ content: "\f17b";
+}
+.icon-linux:before {
+ content: "\f17c";
+}
+.icon-dribbble:before {
+ content: "\f17d";
+}
+.icon-skype:before {
+ content: "\f17e";
+}
+.icon-foursquare:before {
+ content: "\f180";
+}
+.icon-trello:before {
+ content: "\f181";
+}
+.icon-female:before {
+ content: "\f182";
+}
+.icon-male:before {
+ content: "\f183";
+}
+.icon-gittip:before {
+ content: "\f184";
+}
+.icon-gratipay:before {
+ content: "\f184";
+}
+.icon-sun-o:before {
+ content: "\f185";
+}
+.icon-moon-o:before {
+ content: "\f186";
+}
+.icon-archive:before {
+ content: "\f187";
+}
+.icon-bug:before {
+ content: "\f188";
+}
+.icon-vk:before {
+ content: "\f189";
+}
+.icon-weibo:before {
+ content: "\f18a";
+}
+.icon-renren:before {
+ content: "\f18b";
+}
+.icon-pagelines:before {
+ content: "\f18c";
+}
+.icon-stack-exchange:before {
+ content: "\f18d";
+}
+.icon-arrow-circle-o-right:before {
+ content: "\f18e";
+}
+.icon-arrow-circle-o-left:before {
+ content: "\f190";
+}
+.icon-caret-square-o-left:before {
+ content: "\f191";
+}
+.icon-toggle-left:before {
+ content: "\f191";
+}
+.icon-dot-circle-o:before {
+ content: "\f192";
+}
+.icon-wheelchair:before {
+ content: "\f193";
+}
+.icon-vimeo-square:before {
+ content: "\f194";
+}
+.icon-try:before {
+ content: "\f195";
+}
+.icon-turkish-lira:before {
+ content: "\f195";
+}
+.icon-plus-square-o:before {
+ content: "\f196";
+}
+.icon-space-shuttle:before {
+ content: "\f197";
+}
+.icon-slack:before {
+ content: "\f198";
+}
+.icon-envelope-square:before {
+ content: "\f199";
+}
+.icon-wordpress:before {
+ content: "\f19a";
+}
+.icon-openid:before {
+ content: "\f19b";
+}
+.icon-bank:before {
+ content: "\f19c";
+}
+.icon-institution:before {
+ content: "\f19c";
+}
+.icon-university:before {
+ content: "\f19c";
+}
+.icon-graduation-cap:before {
+ content: "\f19d";
+}
+.icon-mortar-board:before {
+ content: "\f19d";
+}
+.icon-yahoo:before {
+ content: "\f19e";
+}
+.icon-google:before {
+ content: "\f1a0";
+}
+.icon-reddit:before {
+ content: "\f1a1";
+}
+.icon-reddit-square:before {
+ content: "\f1a2";
+}
+.icon-stumbleupon-circle:before {
+ content: "\f1a3";
+}
+.icon-stumbleupon:before {
+ content: "\f1a4";
+}
+.icon-delicious:before {
+ content: "\f1a5";
+}
+.icon-digg:before {
+ content: "\f1a6";
+}
+.icon-pied-piper-pp:before {
+ content: "\f1a7";
+}
+.icon-pied-piper-alt:before {
+ content: "\f1a8";
+}
+.icon-drupal:before {
+ content: "\f1a9";
+}
+.icon-joomla:before {
+ content: "\f1aa";
+}
+.icon-language:before {
+ content: "\f1ab";
+}
+.icon-fax:before {
+ content: "\f1ac";
+}
+.icon-building:before {
+ content: "\f1ad";
+}
+.icon-child:before {
+ content: "\f1ae";
+}
+.icon-paw:before {
+ content: "\f1b0";
+}
+.icon-spoon:before {
+ content: "\f1b1";
+}
+.icon-cube:before {
+ content: "\f1b2";
+}
+.icon-cubes:before {
+ content: "\f1b3";
+}
+.icon-behance:before {
+ content: "\f1b4";
+}
+.icon-behance-square:before {
+ content: "\f1b5";
+}
+.icon-steam:before {
+ content: "\f1b6";
+}
+.icon-steam-square:before {
+ content: "\f1b7";
+}
+.icon-recycle:before {
+ content: "\f1b8";
+}
+.icon-automobile:before {
+ content: "\f1b9";
+}
+.icon-car:before {
+ content: "\f1b9";
+}
+.icon-cab:before {
+ content: "\f1ba";
+}
+.icon-taxi:before {
+ content: "\f1ba";
+}
+.icon-tree:before {
+ content: "\f1bb";
+}
+.icon-spotify:before {
+ content: "\f1bc";
+}
+.icon-deviantart:before {
+ content: "\f1bd";
+}
+.icon-soundcloud:before {
+ content: "\f1be";
+}
+.icon-database:before {
+ content: "\f1c0";
+}
+.icon-file-pdf-o:before {
+ content: "\f1c1";
+}
+.icon-file-word-o:before {
+ content: "\f1c2";
+}
+.icon-file-excel-o:before {
+ content: "\f1c3";
+}
+.icon-file-powerpoint-o:before {
+ content: "\f1c4";
+}
+.icon-file-image-o:before {
+ content: "\f1c5";
+}
+.icon-file-photo-o:before {
+ content: "\f1c5";
+}
+.icon-file-picture-o:before {
+ content: "\f1c5";
+}
+.icon-file-archive-o:before {
+ content: "\f1c6";
+}
+.icon-file-zip-o:before {
+ content: "\f1c6";
+}
+.icon-file-audio-o:before {
+ content: "\f1c7";
+}
+.icon-file-sound-o:before {
+ content: "\f1c7";
+}
+.icon-file-movie-o:before {
+ content: "\f1c8";
+}
+.icon-file-video-o:before {
+ content: "\f1c8";
+}
+.icon-file-code-o:before {
+ content: "\f1c9";
+}
+.icon-vine:before {
+ content: "\f1ca";
+}
+.icon-codepen:before {
+ content: "\f1cb";
+}
+.icon-jsfiddle:before {
+ content: "\f1cc";
+}
+.icon-life-bouy:before {
+ content: "\f1cd";
+}
+.icon-life-buoy:before {
+ content: "\f1cd";
+}
+.icon-life-ring:before {
+ content: "\f1cd";
+}
+.icon-life-saver:before {
+ content: "\f1cd";
+}
+.icon-support:before {
+ content: "\f1cd";
+}
+.icon-circle-o-notch:before {
+ content: "\f1ce";
+}
+.icon-ra:before {
+ content: "\f1d0";
+}
+.icon-rebel:before {
+ content: "\f1d0";
+}
+.icon-resistance:before {
+ content: "\f1d0";
+}
+.icon-empire:before {
+ content: "\f1d1";
+}
+.icon-ge:before {
+ content: "\f1d1";
+}
+.icon-git-square:before {
+ content: "\f1d2";
+}
+.icon-git:before {
+ content: "\f1d3";
+}
+.icon-hacker-news:before {
+ content: "\f1d4";
+}
+.icon-y-combinator-square:before {
+ content: "\f1d4";
+}
+.icon-yc-square:before {
+ content: "\f1d4";
+}
+.icon-tencent-weibo:before {
+ content: "\f1d5";
+}
+.icon-qq:before {
+ content: "\f1d6";
+}
+.icon-wechat:before {
+ content: "\f1d7";
+}
+.icon-weixin:before {
+ content: "\f1d7";
+}
+.icon-paper-plane:before {
+ content: "\f1d8";
+}
+.icon-send:before {
+ content: "\f1d8";
+}
+.icon-paper-plane-o:before {
+ content: "\f1d9";
+}
+.icon-send-o:before {
+ content: "\f1d9";
+}
+.icon-history:before {
+ content: "\f1da";
+}
+.icon-circle-thin:before {
+ content: "\f1db";
+}
+.icon-header:before {
+ content: "\f1dc";
+}
+.icon-paragraph:before {
+ content: "\f1dd";
+}
+.icon-sliders:before {
+ content: "\f1de";
+}
+.icon-share-alt:before {
+ content: "\f1e0";
+}
+.icon-share-alt-square:before {
+ content: "\f1e1";
+}
+.icon-bomb:before {
+ content: "\f1e2";
+}
+.icon-futbol-o:before {
+ content: "\f1e3";
+}
+.icon-soccer-ball-o:before {
+ content: "\f1e3";
+}
+.icon-tty:before {
+ content: "\f1e4";
+}
+.icon-binoculars:before {
+ content: "\f1e5";
+}
+.icon-plug:before {
+ content: "\f1e6";
+}
+.icon-slideshare:before {
+ content: "\f1e7";
+}
+.icon-twitch:before {
+ content: "\f1e8";
+}
+.icon-yelp:before {
+ content: "\f1e9";
+}
+.icon-newspaper-o:before {
+ content: "\f1ea";
+}
+.icon-wifi:before {
+ content: "\f1eb";
+}
+.icon-calculator:before {
+ content: "\f1ec";
+}
+.icon-paypal:before {
+ content: "\f1ed";
+}
+.icon-google-wallet:before {
+ content: "\f1ee";
+}
+.icon-cc-visa:before {
+ content: "\f1f0";
+}
+.icon-cc-mastercard:before {
+ content: "\f1f1";
+}
+.icon-cc-discover:before {
+ content: "\f1f2";
+}
+.icon-cc-amex:before {
+ content: "\f1f3";
+}
+.icon-cc-paypal:before {
+ content: "\f1f4";
+}
+.icon-cc-stripe:before {
+ content: "\f1f5";
+}
+.icon-bell-slash:before {
+ content: "\f1f6";
+}
+.icon-bell-slash-o:before {
+ content: "\f1f7";
+}
+.icon-trash:before {
+ content: "\f1f8";
+}
+.icon-copyright:before {
+ content: "\f1f9";
+}
+.icon-at:before {
+ content: "\f1fa";
+}
+.icon-eyedropper:before {
+ content: "\f1fb";
+}
+.icon-paint-brush:before {
+ content: "\f1fc";
+}
+.icon-birthday-cake:before {
+ content: "\f1fd";
+}
+.icon-area-chart:before {
+ content: "\f1fe";
+}
+.icon-pie-chart:before {
+ content: "\f200";
+}
+.icon-line-chart:before {
+ content: "\f201";
+}
+.icon-lastfm:before {
+ content: "\f202";
+}
+.icon-lastfm-square:before {
+ content: "\f203";
+}
+.icon-toggle-off:before {
+ content: "\f204";
+}
+.icon-toggle-on:before {
+ content: "\f205";
+}
+.icon-bicycle:before {
+ content: "\f206";
+}
+.icon-bus:before {
+ content: "\f207";
+}
+.icon-ioxhost:before {
+ content: "\f208";
+}
+.icon-angellist:before {
+ content: "\f209";
+}
+.icon-cc:before {
+ content: "\f20a";
+}
+.icon-ils:before {
+ content: "\f20b";
+}
+.icon-shekel:before {
+ content: "\f20b";
+}
+.icon-sheqel:before {
+ content: "\f20b";
+}
+.icon-meanpath:before {
+ content: "\f20c";
+}
+.icon-buysellads:before {
+ content: "\f20d";
+}
+.icon-connectdevelop:before {
+ content: "\f20e";
+}
+.icon-dashcube:before {
+ content: "\f210";
+}
+.icon-forumbee:before {
+ content: "\f211";
+}
+.icon-leanpub:before {
+ content: "\f212";
+}
+.icon-sellsy:before {
+ content: "\f213";
+}
+.icon-shirtsinbulk:before {
+ content: "\f214";
+}
+.icon-simplybuilt:before {
+ content: "\f215";
+}
+.icon-skyatlas:before {
+ content: "\f216";
+}
+.icon-cart-plus:before {
+ content: "\f217";
+}
+.icon-cart-arrow-down:before {
+ content: "\f218";
+}
+.icon-diamond:before {
+ content: "\f219";
+}
+.icon-ship:before {
+ content: "\f21a";
+}
+.icon-user-secret:before {
+ content: "\f21b";
+}
+.icon-motorcycle:before {
+ content: "\f21c";
+}
+.icon-street-view:before {
+ content: "\f21d";
+}
+.icon-heartbeat:before {
+ content: "\f21e";
+}
+.icon-venus:before {
+ content: "\f221";
+}
+.icon-mars:before {
+ content: "\f222";
+}
+.icon-mercury:before {
+ content: "\f223";
+}
+.icon-intersex:before {
+ content: "\f224";
+}
+.icon-transgender:before {
+ content: "\f224";
+}
+.icon-transgender-alt:before {
+ content: "\f225";
+}
+.icon-venus-double:before {
+ content: "\f226";
+}
+.icon-mars-double:before {
+ content: "\f227";
+}
+.icon-venus-mars:before {
+ content: "\f228";
+}
+.icon-mars-stroke:before {
+ content: "\f229";
+}
+.icon-mars-stroke-v:before {
+ content: "\f22a";
+}
+.icon-mars-stroke-h:before {
+ content: "\f22b";
+}
+.icon-neuter:before {
+ content: "\f22c";
+}
+.icon-genderless:before {
+ content: "\f22d";
+}
+.icon-facebook-official:before {
+ content: "\f230";
+}
+.icon-pinterest-p:before {
+ content: "\f231";
+}
+.icon-whatsapp:before {
+ content: "\f232";
+}
+.icon-server:before {
+ content: "\f233";
+}
+.icon-user-plus:before {
+ content: "\f234";
+}
+.icon-user-times:before {
+ content: "\f235";
+}
+.icon-bed:before {
+ content: "\f236";
+}
+.icon-hotel:before {
+ content: "\f236";
+}
+.icon-viacoin:before {
+ content: "\f237";
+}
+.icon-train:before {
+ content: "\f238";
+}
+.icon-subway:before {
+ content: "\f239";
+}
+.icon-medium:before {
+ content: "\f23a";
+}
+.icon-y-combinator:before {
+ content: "\f23b";
+}
+.icon-yc:before {
+ content: "\f23b";
+}
+.icon-optin-monster:before {
+ content: "\f23c";
+}
+.icon-opencart:before {
+ content: "\f23d";
+}
+.icon-expeditedssl:before {
+ content: "\f23e";
+}
+.icon-battery:before {
+ content: "\f240";
+}
+.icon-battery-4:before {
+ content: "\f240";
+}
+.icon-battery-full:before {
+ content: "\f240";
+}
+.icon-battery-3:before {
+ content: "\f241";
+}
+.icon-battery-three-quarters:before {
+ content: "\f241";
+}
+.icon-battery-2:before {
+ content: "\f242";
+}
+.icon-battery-half:before {
+ content: "\f242";
+}
+.icon-battery-1:before {
+ content: "\f243";
+}
+.icon-battery-quarter:before {
+ content: "\f243";
+}
+.icon-battery-0:before {
+ content: "\f244";
+}
+.icon-battery-empty:before {
+ content: "\f244";
+}
+.icon-mouse-pointer:before {
+ content: "\f245";
+}
+.icon-i-cursor:before {
+ content: "\f246";
+}
+.icon-object-group:before {
+ content: "\f247";
+}
+.icon-object-ungroup:before {
+ content: "\f248";
+}
+.icon-sticky-note:before {
+ content: "\f249";
+}
+.icon-sticky-note-o:before {
+ content: "\f24a";
+}
+.icon-cc-jcb:before {
+ content: "\f24b";
+}
+.icon-cc-diners-club:before {
+ content: "\f24c";
+}
+.icon-clone:before {
+ content: "\f24d";
+}
+.icon-balance-scale:before {
+ content: "\f24e";
+}
+.icon-hourglass-o:before {
+ content: "\f250";
+}
+.icon-hourglass-1:before {
+ content: "\f251";
+}
+.icon-hourglass-start:before {
+ content: "\f251";
+}
+.icon-hourglass-2:before {
+ content: "\f252";
+}
+.icon-hourglass-half:before {
+ content: "\f252";
+}
+.icon-hourglass-3:before {
+ content: "\f253";
+}
+.icon-hourglass-end:before {
+ content: "\f253";
+}
+.icon-hourglass:before {
+ content: "\f254";
+}
+.icon-hand-grab-o:before {
+ content: "\f255";
+}
+.icon-hand-rock-o:before {
+ content: "\f255";
+}
+.icon-hand-paper-o:before {
+ content: "\f256";
+}
+.icon-hand-stop-o:before {
+ content: "\f256";
+}
+.icon-hand-scissors-o:before {
+ content: "\f257";
+}
+.icon-hand-lizard-o:before {
+ content: "\f258";
+}
+.icon-hand-spock-o:before {
+ content: "\f259";
+}
+.icon-hand-pointer-o:before {
+ content: "\f25a";
+}
+.icon-hand-peace-o:before {
+ content: "\f25b";
+}
+.icon-trademark:before {
+ content: "\f25c";
+}
+.icon-registered:before {
+ content: "\f25d";
+}
+.icon-creative-commons:before {
+ content: "\f25e";
+}
+.icon-gg:before {
+ content: "\f260";
+}
+.icon-gg-circle:before {
+ content: "\f261";
+}
+.icon-tripadvisor:before {
+ content: "\f262";
+}
+.icon-odnoklassniki:before {
+ content: "\f263";
+}
+.icon-odnoklassniki-square:before {
+ content: "\f264";
+}
+.icon-get-pocket:before {
+ content: "\f265";
+}
+.icon-wikipedia-w:before {
+ content: "\f266";
+}
+.icon-safari:before {
+ content: "\f267";
+}
+.icon-chrome:before {
+ content: "\f268";
+}
+.icon-firefox:before {
+ content: "\f269";
+}
+.icon-opera:before {
+ content: "\f26a";
+}
+.icon-internet-explorer:before {
+ content: "\f26b";
+}
+.icon-television:before {
+ content: "\f26c";
+}
+.icon-tv:before {
+ content: "\f26c";
+}
+.icon-contao:before {
+ content: "\f26d";
+}
+.icon-500px:before {
+ content: "\f26e";
+}
+.icon-amazon:before {
+ content: "\f270";
+}
+.icon-calendar-plus-o:before {
+ content: "\f271";
+}
+.icon-calendar-minus-o:before {
+ content: "\f272";
+}
+.icon-calendar-times-o:before {
+ content: "\f273";
+}
+.icon-calendar-check-o:before {
+ content: "\f274";
+}
+.icon-industry:before {
+ content: "\f275";
+}
+.icon-map-pin:before {
+ content: "\f276";
+}
+.icon-map-signs:before {
+ content: "\f277";
+}
+.icon-map-o:before {
+ content: "\f278";
+}
+.icon-map:before {
+ content: "\f279";
+}
+.icon-commenting:before {
+ content: "\f27a";
+}
+.icon-commenting-o:before {
+ content: "\f27b";
+}
+.icon-houzz:before {
+ content: "\f27c";
+}
+.icon-vimeo:before {
+ content: "\f27d";
+}
+.icon-black-tie:before {
+ content: "\f27e";
+}
+.icon-fonticons:before {
+ content: "\f280";
+}
+.icon-reddit-alien:before {
+ content: "\f281";
+}
+.icon-edge:before {
+ content: "\f282";
+}
+.icon-credit-card-alt:before {
+ content: "\f283";
+}
+.icon-codiepie:before {
+ content: "\f284";
+}
+.icon-modx:before {
+ content: "\f285";
+}
+.icon-fort-awesome:before {
+ content: "\f286";
+}
+.icon-usb:before {
+ content: "\f287";
+}
+.icon-product-hunt:before {
+ content: "\f288";
+}
+.icon-mixcloud:before {
+ content: "\f289";
+}
+.icon-scribd:before {
+ content: "\f28a";
+}
+.icon-pause-circle:before {
+ content: "\f28b";
+}
+.icon-pause-circle-o:before {
+ content: "\f28c";
+}
+.icon-stop-circle:before {
+ content: "\f28d";
+}
+.icon-stop-circle-o:before {
+ content: "\f28e";
+}
+.icon-shopping-bag:before {
+ content: "\f290";
+}
+.icon-shopping-basket:before {
+ content: "\f291";
+}
+.icon-hashtag:before {
+ content: "\f292";
+}
+.icon-bluetooth:before {
+ content: "\f293";
+}
+.icon-bluetooth-b:before {
+ content: "\f294";
+}
+.icon-percent:before {
+ content: "\f295";
+}
+.icon-gitlab:before {
+ content: "\f296";
+}
+.icon-wpbeginner:before {
+ content: "\f297";
+}
+.icon-wpforms:before {
+ content: "\f298";
+}
+.icon-envira:before {
+ content: "\f299";
+}
+.icon-universal-access:before {
+ content: "\f29a";
+}
+.icon-wheelchair-alt:before {
+ content: "\f29b";
+}
+.icon-question-circle-o:before {
+ content: "\f29c";
+}
+.icon-blind:before {
+ content: "\f29d";
+}
+.icon-audio-description:before {
+ content: "\f29e";
+}
+.icon-volume-control-phone:before {
+ content: "\f2a0";
+}
+.icon-braille:before {
+ content: "\f2a1";
+}
+.icon-assistive-listening-systems:before {
+ content: "\f2a2";
+}
+.icon-american-sign-language-interpreting:before {
+ content: "\f2a3";
+}
+.icon-asl-interpreting:before {
+ content: "\f2a3";
+}
+.icon-deaf:before {
+ content: "\f2a4";
+}
+.icon-deafness:before {
+ content: "\f2a4";
+}
+.icon-hard-of-hearing:before {
+ content: "\f2a4";
+}
+.icon-glide:before {
+ content: "\f2a5";
+}
+.icon-glide-g:before {
+ content: "\f2a6";
+}
+.icon-sign-language:before {
+ content: "\f2a7";
+}
+.icon-signing:before {
+ content: "\f2a7";
+}
+.icon-low-vision:before {
+ content: "\f2a8";
+}
+.icon-viadeo:before {
+ content: "\f2a9";
+}
+.icon-viadeo-square:before {
+ content: "\f2aa";
+}
+.icon-snapchat:before {
+ content: "\f2ab";
+}
+.icon-snapchat-ghost:before {
+ content: "\f2ac";
+}
+.icon-snapchat-square:before {
+ content: "\f2ad";
+}
+.icon-pied-piper:before {
+ content: "\f2ae";
+}
+.icon-first-order:before {
+ content: "\f2b0";
+}
+.icon-yoast:before {
+ content: "\f2b1";
+}
+.icon-themeisle:before {
+ content: "\f2b2";
+}
+.icon-google-plus-circle:before {
+ content: "\f2b3";
+}
+.icon-google-plus-official:before {
+ content: "\f2b3";
+}
+.icon-fa:before {
+ content: "\f2b4";
+}
+.icon-font-awesome:before {
+ content: "\f2b4";
+}
+.icon-handshake-o:before {
+ content: "\f2b5";
+}
+.icon-envelope-open:before {
+ content: "\f2b6";
+}
+.icon-envelope-open-o:before {
+ content: "\f2b7";
+}
+.icon-linode:before {
+ content: "\f2b8";
+}
+.icon-address-book:before {
+ content: "\f2b9";
+}
+.icon-address-book-o:before {
+ content: "\f2ba";
+}
+.icon-address-card:before {
+ content: "\f2bb";
+}
+.icon-vcard:before {
+ content: "\f2bb";
+}
+.icon-address-card-o:before {
+ content: "\f2bc";
+}
+.icon-vcard-o:before {
+ content: "\f2bc";
+}
+.icon-user-circle:before {
+ content: "\f2bd";
+}
+.icon-user-circle-o:before {
+ content: "\f2be";
+}
+.icon-user-o:before {
+ content: "\f2c0";
+}
+.icon-id-badge:before {
+ content: "\f2c1";
+}
+.icon-drivers-license:before {
+ content: "\f2c2";
+}
+.icon-id-card:before {
+ content: "\f2c2";
+}
+.icon-drivers-license-o:before {
+ content: "\f2c3";
+}
+.icon-id-card-o:before {
+ content: "\f2c3";
+}
+.icon-quora:before {
+ content: "\f2c4";
+}
+.icon-free-code-camp:before {
+ content: "\f2c5";
+}
+.icon-telegram:before {
+ content: "\f2c6";
+}
+.icon-thermometer:before {
+ content: "\f2c7";
+}
+.icon-thermometer-4:before {
+ content: "\f2c7";
+}
+.icon-thermometer-full:before {
+ content: "\f2c7";
+}
+.icon-thermometer-3:before {
+ content: "\f2c8";
+}
+.icon-thermometer-three-quarters:before {
+ content: "\f2c8";
+}
+.icon-thermometer-2:before {
+ content: "\f2c9";
+}
+.icon-thermometer-half:before {
+ content: "\f2c9";
+}
+.icon-thermometer-1:before {
+ content: "\f2ca";
+}
+.icon-thermometer-quarter:before {
+ content: "\f2ca";
+}
+.icon-thermometer-0:before {
+ content: "\f2cb";
+}
+.icon-thermometer-empty:before {
+ content: "\f2cb";
+}
+.icon-shower:before {
+ content: "\f2cc";
+}
+.icon-bath:before {
+ content: "\f2cd";
+}
+.icon-bathtub:before {
+ content: "\f2cd";
+}
+.icon-s15:before {
+ content: "\f2cd";
+}
+.icon-podcast:before {
+ content: "\f2ce";
+}
+.icon-window-maximize:before {
+ content: "\f2d0";
+}
+.icon-window-minimize:before {
+ content: "\f2d1";
+}
+.icon-window-restore:before {
+ content: "\f2d2";
+}
+.icon-times-rectangle:before {
+ content: "\f2d3";
+}
+.icon-window-close:before {
+ content: "\f2d3";
+}
+.icon-times-rectangle-o:before {
+ content: "\f2d4";
+}
+.icon-window-close-o:before {
+ content: "\f2d4";
+}
+.icon-bandcamp:before {
+ content: "\f2d5";
+}
+.icon-grav:before {
+ content: "\f2d6";
+}
+.icon-etsy:before {
+ content: "\f2d7";
+}
+.icon-imdb:before {
+ content: "\f2d8";
+}
+.icon-ravelry:before {
+ content: "\f2d9";
+}
+.icon-eercast:before {
+ content: "\f2da";
+}
+.icon-microchip:before {
+ content: "\f2db";
+}
+.icon-snowflake-o:before {
+ content: "\f2dc";
+}
+.icon-superpowers:before {
+ content: "\f2dd";
+}
+.icon-wpexplorer:before {
+ content: "\f2de";
+}
+.icon-meetup:before {
+ content: "\f2e0";
+}
+.icon-3d_rotation:before {
+ content: "\e84d";
+}
+.icon-ac_unit:before {
+ content: "\eb3b";
+}
+.icon-alarm:before {
+ content: "\e855";
+}
+.icon-access_alarms:before {
+ content: "\e191";
+}
+.icon-schedule:before {
+ content: "\e8b5";
+}
+.icon-accessibility:before {
+ content: "\e84e";
+}
+.icon-accessible:before {
+ content: "\e914";
+}
+.icon-account_balance:before {
+ content: "\e84f";
+}
+.icon-account_balance_wallet:before {
+ content: "\e850";
+}
+.icon-account_box:before {
+ content: "\e851";
+}
+.icon-account_circle:before {
+ content: "\e853";
+}
+.icon-adb:before {
+ content: "\e60e";
+}
+.icon-add:before {
+ content: "\e145";
+}
+.icon-add_a_photo:before {
+ content: "\e439";
+}
+.icon-alarm_add:before {
+ content: "\e856";
+}
+.icon-add_alert:before {
+ content: "\e003";
+}
+.icon-add_box:before {
+ content: "\e146";
+}
+.icon-add_circle:before {
+ content: "\e147";
+}
+.icon-control_point:before {
+ content: "\e3ba";
+}
+.icon-add_location:before {
+ content: "\e567";
+}
+.icon-add_shopping_cart:before {
+ content: "\e854";
+}
+.icon-queue:before {
+ content: "\e03c";
+}
+.icon-add_to_queue:before {
+ content: "\e05c";
+}
+.icon-adjust2:before {
+ content: "\e39e";
+}
+.icon-airline_seat_flat:before {
+ content: "\e630";
+}
+.icon-airline_seat_flat_angled:before {
+ content: "\e631";
+}
+.icon-airline_seat_individual_suite:before {
+ content: "\e632";
+}
+.icon-airline_seat_legroom_extra:before {
+ content: "\e633";
+}
+.icon-airline_seat_legroom_normal:before {
+ content: "\e634";
+}
+.icon-airline_seat_legroom_reduced:before {
+ content: "\e635";
+}
+.icon-airline_seat_recline_extra:before {
+ content: "\e636";
+}
+.icon-airline_seat_recline_normal:before {
+ content: "\e637";
+}
+.icon-flight:before {
+ content: "\e539";
+}
+.icon-airplanemode_inactive:before {
+ content: "\e194";
+}
+.icon-airplay:before {
+ content: "\e055";
+}
+.icon-airport_shuttle:before {
+ content: "\eb3c";
+}
+.icon-alarm_off:before {
+ content: "\e857";
+}
+.icon-alarm_on:before {
+ content: "\e858";
+}
+.icon-album:before {
+ content: "\e019";
+}
+.icon-all_inclusive:before {
+ content: "\eb3d";
+}
+.icon-all_out:before {
+ content: "\e90b";
+}
+.icon-android2:before {
+ content: "\e859";
+}
+.icon-announcement:before {
+ content: "\e85a";
+}
+.icon-apps:before {
+ content: "\e5c3";
+}
+.icon-archive2:before {
+ content: "\e149";
+}
+.icon-arrow_back:before {
+ content: "\e5c4";
+}
+.icon-arrow_downward:before {
+ content: "\e5db";
+}
+.icon-arrow_drop_down:before {
+ content: "\e5c5";
+}
+.icon-arrow_drop_down_circle:before {
+ content: "\e5c6";
+}
+.icon-arrow_drop_up:before {
+ content: "\e5c7";
+}
+.icon-arrow_forward:before {
+ content: "\e5c8";
+}
+.icon-arrow_upward:before {
+ content: "\e5d8";
+}
+.icon-art_track:before {
+ content: "\e060";
+}
+.icon-aspect_ratio:before {
+ content: "\e85b";
+}
+.icon-poll:before {
+ content: "\e801";
+}
+.icon-assignment:before {
+ content: "\e85d";
+}
+.icon-assignment_ind:before {
+ content: "\e85e";
+}
+.icon-assignment_late:before {
+ content: "\e85f";
+}
+.icon-assignment_return:before {
+ content: "\e860";
+}
+.icon-assignment_returned:before {
+ content: "\e861";
+}
+.icon-assignment_turned_in:before {
+ content: "\e862";
+}
+.icon-assistant:before {
+ content: "\e39f";
+}
+.icon-flag2:before {
+ content: "\e153";
+}
+.icon-attach_file:before {
+ content: "\e226";
+}
+.icon-attach_money:before {
+ content: "\e227";
+}
+.icon-attachment:before {
+ content: "\e2bc";
+}
+.icon-audiotrack:before {
+ content: "\e3a1";
+}
+.icon-autorenew:before {
+ content: "\e863";
+}
+.icon-av_timer:before {
+ content: "\e01b";
+}
+.icon-backspace:before {
+ content: "\e14a";
+}
+.icon-cloud_upload:before {
+ content: "\e2c3";
+}
+.icon-battery_alert:before {
+ content: "\e19c";
+}
+.icon-battery_charging_full:before {
+ content: "\e1a3";
+}
+.icon-battery_std:before {
+ content: "\e1a5";
+}
+.icon-battery_unknown:before {
+ content: "\e1a6";
+}
+.icon-beach_access:before {
+ content: "\eb3e";
+}
+.icon-beenhere:before {
+ content: "\e52d";
+}
+.icon-block:before {
+ content: "\e14b";
+}
+.icon-bluetooth2:before {
+ content: "\e1a7";
+}
+.icon-bluetooth_searching:before {
+ content: "\e1aa";
+}
+.icon-bluetooth_connected:before {
+ content: "\e1a8";
+}
+.icon-bluetooth_disabled:before {
+ content: "\e1a9";
+}
+.icon-blur_circular:before {
+ content: "\e3a2";
+}
+.icon-blur_linear:before {
+ content: "\e3a3";
+}
+.icon-blur_off:before {
+ content: "\e3a4";
+}
+.icon-blur_on:before {
+ content: "\e3a5";
+}
+.icon-class:before {
+ content: "\e86e";
+}
+.icon-turned_in:before {
+ content: "\e8e6";
+}
+.icon-turned_in_not:before {
+ content: "\e8e7";
+}
+.icon-border_all:before {
+ content: "\e228";
+}
+.icon-border_bottom:before {
+ content: "\e229";
+}
+.icon-border_clear:before {
+ content: "\e22a";
+}
+.icon-border_color:before {
+ content: "\e22b";
+}
+.icon-border_horizontal:before {
+ content: "\e22c";
+}
+.icon-border_inner:before {
+ content: "\e22d";
+}
+.icon-border_left:before {
+ content: "\e22e";
+}
+.icon-border_outer:before {
+ content: "\e22f";
+}
+.icon-border_right:before {
+ content: "\e230";
+}
+.icon-border_style:before {
+ content: "\e231";
+}
+.icon-border_top:before {
+ content: "\e232";
+}
+.icon-border_vertical:before {
+ content: "\e233";
+}
+.icon-branding_watermark:before {
+ content: "\e06b";
+}
+.icon-brightness_1:before {
+ content: "\e3a6";
+}
+.icon-brightness_2:before {
+ content: "\e3a7";
+}
+.icon-brightness_3:before {
+ content: "\e3a8";
+}
+.icon-brightness_4:before {
+ content: "\e3a9";
+}
+.icon-brightness_low:before {
+ content: "\e1ad";
+}
+.icon-brightness_medium:before {
+ content: "\e1ae";
+}
+.icon-brightness_high:before {
+ content: "\e1ac";
+}
+.icon-brightness_auto:before {
+ content: "\e1ab";
+}
+.icon-broken_image:before {
+ content: "\e3ad";
+}
+.icon-brush:before {
+ content: "\e3ae";
+}
+.icon-bubble_chart:before {
+ content: "\e6dd";
+}
+.icon-bug_report:before {
+ content: "\e868";
+}
+.icon-build:before {
+ content: "\e869";
+}
+.icon-burst_mode:before {
+ content: "\e43c";
+}
+.icon-domain:before {
+ content: "\e7ee";
+}
+.icon-business_center:before {
+ content: "\eb3f";
+}
+.icon-cached:before {
+ content: "\e86a";
+}
+.icon-cake:before {
+ content: "\e7e9";
+}
+.icon-phone2:before {
+ content: "\e0cd";
+}
+.icon-call_end:before {
+ content: "\e0b1";
+}
+.icon-call_made:before {
+ content: "\e0b2";
+}
+.icon-merge_type:before {
+ content: "\e252";
+}
+.icon-call_missed:before {
+ content: "\e0b4";
+}
+.icon-call_missed_outgoing:before {
+ content: "\e0e4";
+}
+.icon-call_received:before {
+ content: "\e0b5";
+}
+.icon-call_split:before {
+ content: "\e0b6";
+}
+.icon-call_to_action:before {
+ content: "\e06c";
+}
+.icon-camera2:before {
+ content: "\e3af";
+}
+.icon-photo_camera:before {
+ content: "\e412";
+}
+.icon-camera_enhance:before {
+ content: "\e8fc";
+}
+.icon-camera_front:before {
+ content: "\e3b1";
+}
+.icon-camera_rear:before {
+ content: "\e3b2";
+}
+.icon-camera_roll:before {
+ content: "\e3b3";
+}
+.icon-cancel:before {
+ content: "\e5c9";
+}
+.icon-redeem:before {
+ content: "\e8b1";
+}
+.icon-card_membership:before {
+ content: "\e8f7";
+}
+.icon-card_travel:before {
+ content: "\e8f8";
+}
+.icon-casino:before {
+ content: "\eb40";
+}
+.icon-cast:before {
+ content: "\e307";
+}
+.icon-cast_connected:before {
+ content: "\e308";
+}
+.icon-center_focus_strong:before {
+ content: "\e3b4";
+}
+.icon-center_focus_weak:before {
+ content: "\e3b5";
+}
+.icon-change_history:before {
+ content: "\e86b";
+}
+.icon-chat:before {
+ content: "\e0b7";
+}
+.icon-chat_bubble:before {
+ content: "\e0ca";
+}
+.icon-chat_bubble_outline:before {
+ content: "\e0cb";
+}
+.icon-check2:before {
+ content: "\e5ca";
+}
+.icon-check_box:before {
+ content: "\e834";
+}
+.icon-check_box_outline_blank:before {
+ content: "\e835";
+}
+.icon-check_circle:before {
+ content: "\e86c";
+}
+.icon-navigate_before:before {
+ content: "\e408";
+}
+.icon-navigate_next:before {
+ content: "\e409";
+}
+.icon-child_care:before {
+ content: "\eb41";
+}
+.icon-child_friendly:before {
+ content: "\eb42";
+}
+.icon-chrome_reader_mode:before {
+ content: "\e86d";
+}
+.icon-close2:before {
+ content: "\e5cd";
+}
+.icon-clear_all:before {
+ content: "\e0b8";
+}
+.icon-closed_caption:before {
+ content: "\e01c";
+}
+.icon-wb_cloudy:before {
+ content: "\e42d";
+}
+.icon-cloud_circle:before {
+ content: "\e2be";
+}
+.icon-cloud_done:before {
+ content: "\e2bf";
+}
+.icon-cloud_download:before {
+ content: "\e2c0";
+}
+.icon-cloud_off:before {
+ content: "\e2c1";
+}
+.icon-cloud_queue:before {
+ content: "\e2c2";
+}
+.icon-code2:before {
+ content: "\e86f";
+}
+.icon-photo_library:before {
+ content: "\e413";
+}
+.icon-collections_bookmark:before {
+ content: "\e431";
+}
+.icon-palette:before {
+ content: "\e40a";
+}
+.icon-colorize:before {
+ content: "\e3b8";
+}
+.icon-comment2:before {
+ content: "\e0b9";
+}
+.icon-compare:before {
+ content: "\e3b9";
+}
+.icon-compare_arrows:before {
+ content: "\e915";
+}
+.icon-laptop2:before {
+ content: "\e31e";
+}
+.icon-confirmation_number:before {
+ content: "\e638";
+}
+.icon-contact_mail:before {
+ content: "\e0d0";
+}
+.icon-contact_phone:before {
+ content: "\e0cf";
+}
+.icon-contacts:before {
+ content: "\e0ba";
+}
+.icon-content_copy:before {
+ content: "\e14d";
+}
+.icon-content_cut:before {
+ content: "\e14e";
+}
+.icon-content_paste:before {
+ content: "\e14f";
+}
+.icon-control_point_duplicate:before {
+ content: "\e3bb";
+}
+.icon-copyright2:before {
+ content: "\e90c";
+}
+.icon-mode_edit:before {
+ content: "\e254";
+}
+.icon-create_new_folder:before {
+ content: "\e2cc";
+}
+.icon-payment:before {
+ content: "\e8a1";
+}
+.icon-crop2:before {
+ content: "\e3be";
+}
+.icon-crop_16_9:before {
+ content: "\e3bc";
+}
+.icon-crop_3_2:before {
+ content: "\e3bd";
+}
+.icon-crop_landscape:before {
+ content: "\e3c3";
+}
+.icon-crop_7_5:before {
+ content: "\e3c0";
+}
+.icon-crop_din:before {
+ content: "\e3c1";
+}
+.icon-crop_free:before {
+ content: "\e3c2";
+}
+.icon-crop_original:before {
+ content: "\e3c4";
+}
+.icon-crop_portrait:before {
+ content: "\e3c5";
+}
+.icon-crop_rotate:before {
+ content: "\e437";
+}
+.icon-crop_square:before {
+ content: "\e3c6";
+}
+.icon-dashboard2:before {
+ content: "\e871";
+}
+.icon-data_usage:before {
+ content: "\e1af";
+}
+.icon-date_range:before {
+ content: "\e916";
+}
+.icon-dehaze:before {
+ content: "\e3c7";
+}
+.icon-delete:before {
+ content: "\e872";
+}
+.icon-delete_forever:before {
+ content: "\e92b";
+}
+.icon-delete_sweep:before {
+ content: "\e16c";
+}
+.icon-description:before {
+ content: "\e873";
+}
+.icon-desktop_mac:before {
+ content: "\e30b";
+}
+.icon-desktop_windows:before {
+ content: "\e30c";
+}
+.icon-details:before {
+ content: "\e3c8";
+}
+.icon-developer_board:before {
+ content: "\e30d";
+}
+.icon-developer_mode:before {
+ content: "\e1b0";
+}
+.icon-device_hub:before {
+ content: "\e335";
+}
+.icon-phonelink:before {
+ content: "\e326";
+}
+.icon-devices_other:before {
+ content: "\e337";
+}
+.icon-dialer_sip:before {
+ content: "\e0bb";
+}
+.icon-dialpad:before {
+ content: "\e0bc";
+}
+.icon-directions:before {
+ content: "\e52e";
+}
+.icon-directions_bike:before {
+ content: "\e52f";
+}
+.icon-directions_boat:before {
+ content: "\e532";
+}
+.icon-directions_bus:before {
+ content: "\e530";
+}
+.icon-directions_car:before {
+ content: "\e531";
+}
+.icon-directions_railway:before {
+ content: "\e534";
+}
+.icon-directions_run:before {
+ content: "\e566";
+}
+.icon-directions_transit:before {
+ content: "\e535";
+}
+.icon-directions_walk:before {
+ content: "\e536";
+}
+.icon-disc_full:before {
+ content: "\e610";
+}
+.icon-dns:before {
+ content: "\e875";
+}
+.icon-not_interested:before {
+ content: "\e033";
+}
+.icon-do_not_disturb_alt:before {
+ content: "\e611";
+}
+.icon-do_not_disturb_off:before {
+ content: "\e643";
+}
+.icon-remove_circle:before {
+ content: "\e15c";
+}
+.icon-dock:before {
+ content: "\e30e";
+}
+.icon-done:before {
+ content: "\e876";
+}
+.icon-done_all:before {
+ content: "\e877";
+}
+.icon-donut_large:before {
+ content: "\e917";
+}
+.icon-donut_small:before {
+ content: "\e918";
+}
+.icon-drafts:before {
+ content: "\e151";
+}
+.icon-drag_handle:before {
+ content: "\e25d";
+}
+.icon-time_to_leave:before {
+ content: "\e62c";
+}
+.icon-dvr:before {
+ content: "\e1b2";
+}
+.icon-edit_location:before {
+ content: "\e568";
+}
+.icon-eject2:before {
+ content: "\e8fb";
+}
+.icon-markunread:before {
+ content: "\e159";
+}
+.icon-enhanced_encryption:before {
+ content: "\e63f";
+}
+.icon-equalizer:before {
+ content: "\e01d";
+}
+.icon-error:before {
+ content: "\e000";
+}
+.icon-error_outline:before {
+ content: "\e001";
+}
+.icon-euro_symbol:before {
+ content: "\e926";
+}
+.icon-ev_station:before {
+ content: "\e56d";
+}
+.icon-insert_invitation:before {
+ content: "\e24f";
+}
+.icon-event_available:before {
+ content: "\e614";
+}
+.icon-event_busy:before {
+ content: "\e615";
+}
+.icon-event_note:before {
+ content: "\e616";
+}
+.icon-event_seat:before {
+ content: "\e903";
+}
+.icon-exit_to_app:before {
+ content: "\e879";
+}
+.icon-expand_less:before {
+ content: "\e5ce";
+}
+.icon-expand_more:before {
+ content: "\e5cf";
+}
+.icon-explicit:before {
+ content: "\e01e";
+}
+.icon-explore:before {
+ content: "\e87a";
+}
+.icon-exposure:before {
+ content: "\e3ca";
+}
+.icon-exposure_neg_1:before {
+ content: "\e3cb";
+}
+.icon-exposure_neg_2:before {
+ content: "\e3cc";
+}
+.icon-exposure_plus_1:before {
+ content: "\e3cd";
+}
+.icon-exposure_plus_2:before {
+ content: "\e3ce";
+}
+.icon-exposure_zero:before {
+ content: "\e3cf";
+}
+.icon-extension:before {
+ content: "\e87b";
+}
+.icon-face:before {
+ content: "\e87c";
+}
+.icon-fast_forward:before {
+ content: "\e01f";
+}
+.icon-fast_rewind:before {
+ content: "\e020";
+}
+.icon-favorite:before {
+ content: "\e87d";
+}
+.icon-favorite_border:before {
+ content: "\e87e";
+}
+.icon-featured_play_list:before {
+ content: "\e06d";
+}
+.icon-featured_video:before {
+ content: "\e06e";
+}
+.icon-sms_failed:before {
+ content: "\e626";
+}
+.icon-fiber_dvr:before {
+ content: "\e05d";
+}
+.icon-fiber_manual_record:before {
+ content: "\e061";
+}
+.icon-fiber_new:before {
+ content: "\e05e";
+}
+.icon-fiber_pin:before {
+ content: "\e06a";
+}
+.icon-fiber_smart_record:before {
+ content: "\e062";
+}
+.icon-get_app:before {
+ content: "\e884";
+}
+.icon-file_upload:before {
+ content: "\e2c6";
+}
+.icon-filter2:before {
+ content: "\e3d3";
+}
+.icon-filter_1:before {
+ content: "\e3d0";
+}
+.icon-filter_2:before {
+ content: "\e3d1";
+}
+.icon-filter_3:before {
+ content: "\e3d2";
+}
+.icon-filter_4:before {
+ content: "\e3d4";
+}
+.icon-filter_5:before {
+ content: "\e3d5";
+}
+.icon-filter_6:before {
+ content: "\e3d6";
+}
+.icon-filter_7:before {
+ content: "\e3d7";
+}
+.icon-filter_8:before {
+ content: "\e3d8";
+}
+.icon-filter_9:before {
+ content: "\e3d9";
+}
+.icon-filter_9_plus:before {
+ content: "\e3da";
+}
+.icon-filter_b_and_w:before {
+ content: "\e3db";
+}
+.icon-filter_center_focus:before {
+ content: "\e3dc";
+}
+.icon-filter_drama:before {
+ content: "\e3dd";
+}
+.icon-filter_frames:before {
+ content: "\e3de";
+}
+.icon-terrain:before {
+ content: "\e564";
+}
+.icon-filter_list:before {
+ content: "\e152";
+}
+.icon-filter_none:before {
+ content: "\e3e0";
+}
+.icon-filter_tilt_shift:before {
+ content: "\e3e2";
+}
+.icon-filter_vintage:before {
+ content: "\e3e3";
+}
+.icon-find_in_page:before {
+ content: "\e880";
+}
+.icon-find_replace:before {
+ content: "\e881";
+}
+.icon-fingerprint:before {
+ content: "\e90d";
+}
+.icon-first_page:before {
+ content: "\e5dc";
+}
+.icon-fitness_center:before {
+ content: "\eb43";
+}
+.icon-flare:before {
+ content: "\e3e4";
+}
+.icon-flash_auto:before {
+ content: "\e3e5";
+}
+.icon-flash_off:before {
+ content: "\e3e6";
+}
+.icon-flash_on:before {
+ content: "\e3e7";
+}
+.icon-flight_land:before {
+ content: "\e904";
+}
+.icon-flight_takeoff:before {
+ content: "\e905";
+}
+.icon-flip:before {
+ content: "\e3e8";
+}
+.icon-flip_to_back:before {
+ content: "\e882";
+}
+.icon-flip_to_front:before {
+ content: "\e883";
+}
+.icon-folder2:before {
+ content: "\e2c7";
+}
+.icon-folder_open:before {
+ content: "\e2c8";
+}
+.icon-folder_shared:before {
+ content: "\e2c9";
+}
+.icon-folder_special:before {
+ content: "\e617";
+}
+.icon-font_download:before {
+ content: "\e167";
+}
+.icon-format_align_center:before {
+ content: "\e234";
+}
+.icon-format_align_justify:before {
+ content: "\e235";
+}
+.icon-format_align_left:before {
+ content: "\e236";
+}
+.icon-format_align_right:before {
+ content: "\e237";
+}
+.icon-format_bold:before {
+ content: "\e238";
+}
+.icon-format_clear:before {
+ content: "\e239";
+}
+.icon-format_color_fill:before {
+ content: "\e23a";
+}
+.icon-format_color_reset:before {
+ content: "\e23b";
+}
+.icon-format_color_text:before {
+ content: "\e23c";
+}
+.icon-format_indent_decrease:before {
+ content: "\e23d";
+}
+.icon-format_indent_increase:before {
+ content: "\e23e";
+}
+.icon-format_italic:before {
+ content: "\e23f";
+}
+.icon-format_line_spacing:before {
+ content: "\e240";
+}
+.icon-format_list_bulleted:before {
+ content: "\e241";
+}
+.icon-format_list_numbered:before {
+ content: "\e242";
+}
+.icon-format_paint:before {
+ content: "\e243";
+}
+.icon-format_quote:before {
+ content: "\e244";
+}
+.icon-format_shapes:before {
+ content: "\e25e";
+}
+.icon-format_size:before {
+ content: "\e245";
+}
+.icon-format_strikethrough:before {
+ content: "\e246";
+}
+.icon-format_textdirection_l_to_r:before {
+ content: "\e247";
+}
+.icon-format_textdirection_r_to_l:before {
+ content: "\e248";
+}
+.icon-format_underlined:before {
+ content: "\e249";
+}
+.icon-question_answer:before {
+ content: "\e8af";
+}
+.icon-forward2:before {
+ content: "\e154";
+}
+.icon-forward_10:before {
+ content: "\e056";
+}
+.icon-forward_30:before {
+ content: "\e057";
+}
+.icon-forward_5:before {
+ content: "\e058";
+}
+.icon-free_breakfast:before {
+ content: "\eb44";
+}
+.icon-fullscreen:before {
+ content: "\e5d0";
+}
+.icon-fullscreen_exit:before {
+ content: "\e5d1";
+}
+.icon-functions:before {
+ content: "\e24a";
+}
+.icon-g_translate:before {
+ content: "\e927";
+}
+.icon-games:before {
+ content: "\e021";
+}
+.icon-gavel2:before {
+ content: "\e90e";
+}
+.icon-gesture:before {
+ content: "\e155";
+}
+.icon-gif:before {
+ content: "\e908";
+}
+.icon-goat:before {
+ content: "\e900";
+}
+.icon-golf_course:before {
+ content: "\eb45";
+}
+.icon-my_location:before {
+ content: "\e55c";
+}
+.icon-location_searching:before {
+ content: "\e1b7";
+}
+.icon-location_disabled:before {
+ content: "\e1b6";
+}
+.icon-star2:before {
+ content: "\e838";
+}
+.icon-gradient:before {
+ content: "\e3e9";
+}
+.icon-grain:before {
+ content: "\e3ea";
+}
+.icon-graphic_eq:before {
+ content: "\e1b8";
+}
+.icon-grid_off:before {
+ content: "\e3eb";
+}
+.icon-grid_on:before {
+ content: "\e3ec";
+}
+.icon-people:before {
+ content: "\e7fb";
+}
+.icon-group_add:before {
+ content: "\e7f0";
+}
+.icon-group_work:before {
+ content: "\e886";
+}
+.icon-hd:before {
+ content: "\e052";
+}
+.icon-hdr_off:before {
+ content: "\e3ed";
+}
+.icon-hdr_on:before {
+ content: "\e3ee";
+}
+.icon-hdr_strong:before {
+ content: "\e3f1";
+}
+.icon-hdr_weak:before {
+ content: "\e3f2";
+}
+.icon-headset:before {
+ content: "\e310";
+}
+.icon-headset_mic:before {
+ content: "\e311";
+}
+.icon-healing:before {
+ content: "\e3f3";
+}
+.icon-hearing:before {
+ content: "\e023";
+}
+.icon-help:before {
+ content: "\e887";
+}
+.icon-help_outline:before {
+ content: "\e8fd";
+}
+.icon-high_quality:before {
+ content: "\e024";
+}
+.icon-highlight:before {
+ content: "\e25f";
+}
+.icon-highlight_off:before {
+ content: "\e888";
+}
+.icon-restore:before {
+ content: "\e8b3";
+}
+.icon-home2:before {
+ content: "\e88a";
+}
+.icon-hot_tub:before {
+ content: "\eb46";
+}
+.icon-local_hotel:before {
+ content: "\e549";
+}
+.icon-hourglass_empty:before {
+ content: "\e88b";
+}
+.icon-hourglass_full:before {
+ content: "\e88c";
+}
+.icon-http:before {
+ content: "\e902";
+}
+.icon-lock2:before {
+ content: "\e897";
+}
+.icon-photo2:before {
+ content: "\e410";
+}
+.icon-image_aspect_ratio:before {
+ content: "\e3f5";
+}
+.icon-import_contacts:before {
+ content: "\e0e0";
+}
+.icon-import_export:before {
+ content: "\e0c3";
+}
+.icon-important_devices:before {
+ content: "\e912";
+}
+.icon-inbox2:before {
+ content: "\e156";
+}
+.icon-indeterminate_check_box:before {
+ content: "\e909";
+}
+.icon-info2:before {
+ content: "\e88e";
+}
+.icon-info_outline:before {
+ content: "\e88f";
+}
+.icon-input:before {
+ content: "\e890";
+}
+.icon-insert_comment:before {
+ content: "\e24c";
+}
+.icon-insert_drive_file:before {
+ content: "\e24d";
+}
+.icon-tag_faces:before {
+ content: "\e420";
+}
+.icon-link2:before {
+ content: "\e157";
+}
+.icon-invert_colors:before {
+ content: "\e891";
+}
+.icon-invert_colors_off:before {
+ content: "\e0c4";
+}
+.icon-iso:before {
+ content: "\e3f6";
+}
+.icon-keyboard:before {
+ content: "\e312";
+}
+.icon-keyboard_arrow_down:before {
+ content: "\e313";
+}
+.icon-keyboard_arrow_left:before {
+ content: "\e314";
+}
+.icon-keyboard_arrow_right:before {
+ content: "\e315";
+}
+.icon-keyboard_arrow_up:before {
+ content: "\e316";
+}
+.icon-keyboard_backspace:before {
+ content: "\e317";
+}
+.icon-keyboard_capslock:before {
+ content: "\e318";
+}
+.icon-keyboard_hide:before {
+ content: "\e31a";
+}
+.icon-keyboard_return:before {
+ content: "\e31b";
+}
+.icon-keyboard_tab:before {
+ content: "\e31c";
+}
+.icon-keyboard_voice:before {
+ content: "\e31d";
+}
+.icon-kitchen:before {
+ content: "\eb47";
+}
+.icon-label:before {
+ content: "\e892";
+}
+.icon-label_outline:before {
+ content: "\e893";
+}
+.icon-language2:before {
+ content: "\e894";
+}
+.icon-laptop_chromebook:before {
+ content: "\e31f";
+}
+.icon-laptop_mac:before {
+ content: "\e320";
+}
+.icon-laptop_windows:before {
+ content: "\e321";
+}
+.icon-last_page:before {
+ content: "\e5dd";
+}
+.icon-open_in_new:before {
+ content: "\e89e";
+}
+.icon-layers:before {
+ content: "\e53b";
+}
+.icon-layers_clear:before {
+ content: "\e53c";
+}
+.icon-leak_add:before {
+ content: "\e3f8";
+}
+.icon-leak_remove:before {
+ content: "\e3f9";
+}
+.icon-lens:before {
+ content: "\e3fa";
+}
+.icon-library_books:before {
+ content: "\e02f";
+}
+.icon-library_music:before {
+ content: "\e030";
+}
+.icon-lightbulb_outline:before {
+ content: "\e90f";
+}
+.icon-line_style:before {
+ content: "\e919";
+}
+.icon-line_weight:before {
+ content: "\e91a";
+}
+.icon-linear_scale:before {
+ content: "\e260";
+}
+.icon-linked_camera:before {
+ content: "\e438";
+}
+.icon-list2:before {
+ content: "\e896";
+}
+.icon-live_help:before {
+ content: "\e0c6";
+}
+.icon-live_tv:before {
+ content: "\e639";
+}
+.icon-local_play:before {
+ content: "\e553";
+}
+.icon-local_airport:before {
+ content: "\e53d";
+}
+.icon-local_atm:before {
+ content: "\e53e";
+}
+.icon-local_bar:before {
+ content: "\e540";
+}
+.icon-local_cafe:before {
+ content: "\e541";
+}
+.icon-local_car_wash:before {
+ content: "\e542";
+}
+.icon-local_convenience_store:before {
+ content: "\e543";
+}
+.icon-restaurant_menu:before {
+ content: "\e561";
+}
+.icon-local_drink:before {
+ content: "\e544";
+}
+.icon-local_florist:before {
+ content: "\e545";
+}
+.icon-local_gas_station:before {
+ content: "\e546";
+}
+.icon-shopping_cart:before {
+ content: "\e8cc";
+}
+.icon-local_hospital:before {
+ content: "\e548";
+}
+.icon-local_laundry_service:before {
+ content: "\e54a";
+}
+.icon-local_library:before {
+ content: "\e54b";
+}
+.icon-local_mall:before {
+ content: "\e54c";
+}
+.icon-theaters:before {
+ content: "\e8da";
+}
+.icon-local_offer:before {
+ content: "\e54e";
+}
+.icon-local_parking:before {
+ content: "\e54f";
+}
+.icon-local_pharmacy:before {
+ content: "\e550";
+}
+.icon-local_pizza:before {
+ content: "\e552";
+}
+.icon-print2:before {
+ content: "\e8ad";
+}
+.icon-local_shipping:before {
+ content: "\e558";
+}
+.icon-local_taxi:before {
+ content: "\e559";
+}
+.icon-location_city:before {
+ content: "\e7f1";
+}
+.icon-location_off:before {
+ content: "\e0c7";
+}
+.icon-room:before {
+ content: "\e8b4";
+}
+.icon-lock_open:before {
+ content: "\e898";
+}
+.icon-lock_outline:before {
+ content: "\e899";
+}
+.icon-looks:before {
+ content: "\e3fc";
+}
+.icon-looks_3:before {
+ content: "\e3fb";
+}
+.icon-looks_4:before {
+ content: "\e3fd";
+}
+.icon-looks_5:before {
+ content: "\e3fe";
+}
+.icon-looks_6:before {
+ content: "\e3ff";
+}
+.icon-looks_one:before {
+ content: "\e400";
+}
+.icon-looks_two:before {
+ content: "\e401";
+}
+.icon-sync:before {
+ content: "\e627";
+}
+.icon-loupe:before {
+ content: "\e402";
+}
+.icon-low_priority:before {
+ content: "\e16d";
+}
+.icon-loyalty:before {
+ content: "\e89a";
+}
+.icon-mail_outline:before {
+ content: "\e0e1";
+}
+.icon-map2:before {
+ content: "\e55b";
+}
+.icon-markunread_mailbox:before {
+ content: "\e89b";
+}
+.icon-memory:before {
+ content: "\e322";
+}
+.icon-menu:before {
+ content: "\e5d2";
+}
+.icon-message:before {
+ content: "\e0c9";
+}
+.icon-mic:before {
+ content: "\e029";
+}
+.icon-mic_none:before {
+ content: "\e02a";
+}
+.icon-mic_off:before {
+ content: "\e02b";
+}
+.icon-mms:before {
+ content: "\e618";
+}
+.icon-mode_comment:before {
+ content: "\e253";
+}
+.icon-monetization_on:before {
+ content: "\e263";
+}
+.icon-money_off:before {
+ content: "\e25c";
+}
+.icon-monochrome_photos:before {
+ content: "\e403";
+}
+.icon-mood_bad:before {
+ content: "\e7f3";
+}
+.icon-more:before {
+ content: "\e619";
+}
+.icon-more_horiz:before {
+ content: "\e5d3";
+}
+.icon-more_vert:before {
+ content: "\e5d4";
+}
+.icon-motorcycle2:before {
+ content: "\e91b";
+}
+.icon-mouse:before {
+ content: "\e323";
+}
+.icon-move_to_inbox:before {
+ content: "\e168";
+}
+.icon-movie_creation:before {
+ content: "\e404";
+}
+.icon-movie_filter:before {
+ content: "\e43a";
+}
+.icon-multiline_chart:before {
+ content: "\e6df";
+}
+.icon-music_note:before {
+ content: "\e405";
+}
+.icon-music_video:before {
+ content: "\e063";
+}
+.icon-nature:before {
+ content: "\e406";
+}
+.icon-nature_people:before {
+ content: "\e407";
+}
+.icon-navigation:before {
+ content: "\e55d";
+}
+.icon-near_me:before {
+ content: "\e569";
+}
+.icon-network_cell:before {
+ content: "\e1b9";
+}
+.icon-network_check:before {
+ content: "\e640";
+}
+.icon-network_locked:before {
+ content: "\e61a";
+}
+.icon-network_wifi:before {
+ content: "\e1ba";
+}
+.icon-new_releases:before {
+ content: "\e031";
+}
+.icon-next_week:before {
+ content: "\e16a";
+}
+.icon-nfc:before {
+ content: "\e1bb";
+}
+.icon-no_encryption:before {
+ content: "\e641";
+}
+.icon-signal_cellular_no_sim:before {
+ content: "\e1ce";
+}
+.icon-note:before {
+ content: "\e06f";
+}
+.icon-note_add:before {
+ content: "\e89c";
+}
+.icon-notifications:before {
+ content: "\e7f4";
+}
+.icon-notifications_active:before {
+ content: "\e7f7";
+}
+.icon-notifications_none:before {
+ content: "\e7f5";
+}
+.icon-notifications_off:before {
+ content: "\e7f6";
+}
+.icon-notifications_paused:before {
+ content: "\e7f8";
+}
+.icon-offline_pin:before {
+ content: "\e90a";
+}
+.icon-ondemand_video:before {
+ content: "\e63a";
+}
+.icon-opacity:before {
+ content: "\e91c";
+}
+.icon-open_in_browser:before {
+ content: "\e89d";
+}
+.icon-open_with:before {
+ content: "\e89f";
+}
+.icon-pages:before {
+ content: "\e7f9";
+}
+.icon-pageview:before {
+ content: "\e8a0";
+}
+.icon-pan_tool:before {
+ content: "\e925";
+}
+.icon-panorama:before {
+ content: "\e40b";
+}
+.icon-radio_button_unchecked:before {
+ content: "\e836";
+}
+.icon-panorama_horizontal:before {
+ content: "\e40d";
+}
+.icon-panorama_vertical:before {
+ content: "\e40e";
+}
+.icon-panorama_wide_angle:before {
+ content: "\e40f";
+}
+.icon-party_mode:before {
+ content: "\e7fa";
+}
+.icon-pause2:before {
+ content: "\e034";
+}
+.icon-pause_circle_filled:before {
+ content: "\e035";
+}
+.icon-pause_circle_outline:before {
+ content: "\e036";
+}
+.icon-people_outline:before {
+ content: "\e7fc";
+}
+.icon-perm_camera_mic:before {
+ content: "\e8a2";
+}
+.icon-perm_contact_calendar:before {
+ content: "\e8a3";
+}
+.icon-perm_data_setting:before {
+ content: "\e8a4";
+}
+.icon-perm_device_information:before {
+ content: "\e8a5";
+}
+.icon-person_outline:before {
+ content: "\e7ff";
+}
+.icon-perm_media:before {
+ content: "\e8a7";
+}
+.icon-perm_phone_msg:before {
+ content: "\e8a8";
+}
+.icon-perm_scan_wifi:before {
+ content: "\e8a9";
+}
+.icon-person:before {
+ content: "\e7fd";
+}
+.icon-person_add:before {
+ content: "\e7fe";
+}
+.icon-person_pin:before {
+ content: "\e55a";
+}
+.icon-person_pin_circle:before {
+ content: "\e56a";
+}
+.icon-personal_video:before {
+ content: "\e63b";
+}
+.icon-pets:before {
+ content: "\e91d";
+}
+.icon-phone_android:before {
+ content: "\e324";
+}
+.icon-phone_bluetooth_speaker:before {
+ content: "\e61b";
+}
+.icon-phone_forwarded:before {
+ content: "\e61c";
+}
+.icon-phone_in_talk:before {
+ content: "\e61d";
+}
+.icon-phone_iphone:before {
+ content: "\e325";
+}
+.icon-phone_locked:before {
+ content: "\e61e";
+}
+.icon-phone_missed:before {
+ content: "\e61f";
+}
+.icon-phone_paused:before {
+ content: "\e620";
+}
+.icon-phonelink_erase:before {
+ content: "\e0db";
+}
+.icon-phonelink_lock:before {
+ content: "\e0dc";
+}
+.icon-phonelink_off:before {
+ content: "\e327";
+}
+.icon-phonelink_ring:before {
+ content: "\e0dd";
+}
+.icon-phonelink_setup:before {
+ content: "\e0de";
+}
+.icon-photo_album:before {
+ content: "\e411";
+}
+.icon-photo_filter:before {
+ content: "\e43b";
+}
+.icon-photo_size_select_actual:before {
+ content: "\e432";
+}
+.icon-photo_size_select_large:before {
+ content: "\e433";
+}
+.icon-photo_size_select_small:before {
+ content: "\e434";
+}
+.icon-picture_as_pdf:before {
+ content: "\e415";
+}
+.icon-picture_in_picture:before {
+ content: "\e8aa";
+}
+.icon-picture_in_picture_alt:before {
+ content: "\e911";
+}
+.icon-pie_chart:before {
+ content: "\e6c4";
+}
+.icon-pie_chart_outlined:before {
+ content: "\e6c5";
+}
+.icon-pin_drop:before {
+ content: "\e55e";
+}
+.icon-play_arrow:before {
+ content: "\e037";
+}
+.icon-play_circle_filled:before {
+ content: "\e038";
+}
+.icon-play_circle_outline:before {
+ content: "\e039";
+}
+.icon-play_for_work:before {
+ content: "\e906";
+}
+.icon-playlist_add:before {
+ content: "\e03b";
+}
+.icon-playlist_add_check:before {
+ content: "\e065";
+}
+.icon-playlist_play:before {
+ content: "\e05f";
+}
+.icon-plus_one:before {
+ content: "\e800";
+}
+.icon-polymer:before {
+ content: "\e8ab";
+}
+.icon-pool:before {
+ content: "\eb48";
+}
+.icon-portable_wifi_off:before {
+ content: "\e0ce";
+}
+.icon-portrait:before {
+ content: "\e416";
+}
+.icon-power:before {
+ content: "\e63c";
+}
+.icon-power_input:before {
+ content: "\e336";
+}
+.icon-power_settings_new:before {
+ content: "\e8ac";
+}
+.icon-pregnant_woman:before {
+ content: "\e91e";
+}
+.icon-present_to_all:before {
+ content: "\e0df";
+}
+.icon-priority_high:before {
+ content: "\e645";
+}
+.icon-public:before {
+ content: "\e80b";
+}
+.icon-publish:before {
+ content: "\e255";
+}
+.icon-queue_music:before {
+ content: "\e03d";
+}
+.icon-queue_play_next:before {
+ content: "\e066";
+}
+.icon-radio:before {
+ content: "\e03e";
+}
+.icon-radio_button_checked:before {
+ content: "\e837";
+}
+.icon-rate_review:before {
+ content: "\e560";
+}
+.icon-receipt:before {
+ content: "\e8b0";
+}
+.icon-recent_actors:before {
+ content: "\e03f";
+}
+.icon-record_voice_over:before {
+ content: "\e91f";
+}
+.icon-redo:before {
+ content: "\e15a";
+}
+.icon-refresh2:before {
+ content: "\e5d5";
+}
+.icon-remove2:before {
+ content: "\e15b";
+}
+.icon-remove_circle_outline:before {
+ content: "\e15d";
+}
+.icon-remove_from_queue:before {
+ content: "\e067";
+}
+.icon-visibility:before {
+ content: "\e8f4";
+}
+.icon-remove_shopping_cart:before {
+ content: "\e928";
+}
+.icon-reorder2:before {
+ content: "\e8fe";
+}
+.icon-repeat2:before {
+ content: "\e040";
+}
+.icon-repeat_one:before {
+ content: "\e041";
+}
+.icon-replay:before {
+ content: "\e042";
+}
+.icon-replay_10:before {
+ content: "\e059";
+}
+.icon-replay_30:before {
+ content: "\e05a";
+}
+.icon-replay_5:before {
+ content: "\e05b";
+}
+.icon-reply2:before {
+ content: "\e15e";
+}
+.icon-reply_all:before {
+ content: "\e15f";
+}
+.icon-report:before {
+ content: "\e160";
+}
+.icon-warning2:before {
+ content: "\e002";
+}
+.icon-restaurant:before {
+ content: "\e56c";
+}
+.icon-restore_page:before {
+ content: "\e929";
+}
+.icon-ring_volume:before {
+ content: "\e0d1";
+}
+.icon-room_service:before {
+ content: "\eb49";
+}
+.icon-rotate_90_degrees_ccw:before {
+ content: "\e418";
+}
+.icon-rotate_left:before {
+ content: "\e419";
+}
+.icon-rotate_right:before {
+ content: "\e41a";
+}
+.icon-rounded_corner:before {
+ content: "\e920";
+}
+.icon-router:before {
+ content: "\e328";
+}
+.icon-rowing:before {
+ content: "\e921";
+}
+.icon-rss_feed:before {
+ content: "\e0e5";
+}
+.icon-rv_hookup:before {
+ content: "\e642";
+}
+.icon-satellite:before {
+ content: "\e562";
+}
+.icon-save2:before {
+ content: "\e161";
+}
+.icon-scanner:before {
+ content: "\e329";
+}
+.icon-school:before {
+ content: "\e80c";
+}
+.icon-screen_lock_landscape:before {
+ content: "\e1be";
+}
+.icon-screen_lock_portrait:before {
+ content: "\e1bf";
+}
+.icon-screen_lock_rotation:before {
+ content: "\e1c0";
+}
+.icon-screen_rotation:before {
+ content: "\e1c1";
+}
+.icon-screen_share:before {
+ content: "\e0e2";
+}
+.icon-sd_storage:before {
+ content: "\e1c2";
+}
+.icon-search2:before {
+ content: "\e8b6";
+}
+.icon-security:before {
+ content: "\e32a";
+}
+.icon-select_all:before {
+ content: "\e162";
+}
+.icon-send2:before {
+ content: "\e163";
+}
+.icon-sentiment_dissatisfied:before {
+ content: "\e811";
+}
+.icon-sentiment_neutral:before {
+ content: "\e812";
+}
+.icon-sentiment_satisfied:before {
+ content: "\e813";
+}
+.icon-sentiment_very_dissatisfied:before {
+ content: "\e814";
+}
+.icon-sentiment_very_satisfied:before {
+ content: "\e815";
+}
+.icon-settings:before {
+ content: "\e8b8";
+}
+.icon-settings_applications:before {
+ content: "\e8b9";
+}
+.icon-settings_backup_restore:before {
+ content: "\e8ba";
+}
+.icon-settings_bluetooth:before {
+ content: "\e8bb";
+}
+.icon-settings_brightness:before {
+ content: "\e8bd";
+}
+.icon-settings_cell:before {
+ content: "\e8bc";
+}
+.icon-settings_ethernet:before {
+ content: "\e8be";
+}
+.icon-settings_input_antenna:before {
+ content: "\e8bf";
+}
+.icon-settings_input_composite:before {
+ content: "\e8c1";
+}
+.icon-settings_input_hdmi:before {
+ content: "\e8c2";
+}
+.icon-settings_input_svideo:before {
+ content: "\e8c3";
+}
+.icon-settings_overscan:before {
+ content: "\e8c4";
+}
+.icon-settings_phone:before {
+ content: "\e8c5";
+}
+.icon-settings_power:before {
+ content: "\e8c6";
+}
+.icon-settings_remote:before {
+ content: "\e8c7";
+}
+.icon-settings_system_daydream:before {
+ content: "\e1c3";
+}
+.icon-settings_voice:before {
+ content: "\e8c8";
+}
+.icon-share2:before {
+ content: "\e80d";
+}
+.icon-shop:before {
+ content: "\e8c9";
+}
+.icon-shop_two:before {
+ content: "\e8ca";
+}
+.icon-shopping_basket:before {
+ content: "\e8cb";
+}
+.icon-short_text:before {
+ content: "\e261";
+}
+.icon-show_chart:before {
+ content: "\e6e1";
+}
+.icon-shuffle:before {
+ content: "\e043";
+}
+.icon-signal_cellular_4_bar:before {
+ content: "\e1c8";
+}
+.icon-signal_cellular_connected_no_internet_4_bar:before {
+ content: "\e1cd";
+}
+.icon-signal_cellular_null:before {
+ content: "\e1cf";
+}
+.icon-signal_cellular_off:before {
+ content: "\e1d0";
+}
+.icon-signal_wifi_4_bar:before {
+ content: "\e1d8";
+}
+.icon-signal_wifi_4_bar_lock:before {
+ content: "\e1d9";
+}
+.icon-signal_wifi_off:before {
+ content: "\e1da";
+}
+.icon-sim_card:before {
+ content: "\e32b";
+}
+.icon-sim_card_alert:before {
+ content: "\e624";
+}
+.icon-skip_next:before {
+ content: "\e044";
+}
+.icon-skip_previous:before {
+ content: "\e045";
+}
+.icon-slideshow:before {
+ content: "\e41b";
+}
+.icon-slow_motion_video:before {
+ content: "\e068";
+}
+.icon-stay_primary_portrait:before {
+ content: "\e0d6";
+}
+.icon-smoke_free:before {
+ content: "\eb4a";
+}
+.icon-smoking_rooms:before {
+ content: "\eb4b";
+}
+.icon-textsms:before {
+ content: "\e0d8";
+}
+.icon-snooze:before {
+ content: "\e046";
+}
+.icon-sort2:before {
+ content: "\e164";
+}
+.icon-sort_by_alpha:before {
+ content: "\e053";
+}
+.icon-spa:before {
+ content: "\eb4c";
+}
+.icon-space_bar:before {
+ content: "\e256";
+}
+.icon-speaker:before {
+ content: "\e32d";
+}
+.icon-speaker_group:before {
+ content: "\e32e";
+}
+.icon-speaker_notes:before {
+ content: "\e8cd";
+}
+.icon-speaker_notes_off:before {
+ content: "\e92a";
+}
+.icon-speaker_phone:before {
+ content: "\e0d2";
+}
+.icon-spellcheck:before {
+ content: "\e8ce";
+}
+.icon-star_border:before {
+ content: "\e83a";
+}
+.icon-star_half:before {
+ content: "\e839";
+}
+.icon-stars:before {
+ content: "\e8d0";
+}
+.icon-stay_primary_landscape:before {
+ content: "\e0d5";
+}
+.icon-stop2:before {
+ content: "\e047";
+}
+.icon-stop_screen_share:before {
+ content: "\e0e3";
+}
+.icon-storage:before {
+ content: "\e1db";
+}
+.icon-store_mall_directory:before {
+ content: "\e563";
+}
+.icon-straighten:before {
+ content: "\e41c";
+}
+.icon-streetview:before {
+ content: "\e56e";
+}
+.icon-strikethrough_s:before {
+ content: "\e257";
+}
+.icon-style:before {
+ content: "\e41d";
+}
+.icon-subdirectory_arrow_left:before {
+ content: "\e5d9";
+}
+.icon-subdirectory_arrow_right:before {
+ content: "\e5da";
+}
+.icon-subject:before {
+ content: "\e8d2";
+}
+.icon-subscriptions:before {
+ content: "\e064";
+}
+.icon-subtitles:before {
+ content: "\e048";
+}
+.icon-subway2:before {
+ content: "\e56f";
+}
+.icon-supervisor_account:before {
+ content: "\e8d3";
+}
+.icon-surround_sound:before {
+ content: "\e049";
+}
+.icon-swap_calls:before {
+ content: "\e0d7";
+}
+.icon-swap_horiz:before {
+ content: "\e8d4";
+}
+.icon-swap_vert:before {
+ content: "\e8d5";
+}
+.icon-swap_vertical_circle:before {
+ content: "\e8d6";
+}
+.icon-switch_camera:before {
+ content: "\e41e";
+}
+.icon-switch_video:before {
+ content: "\e41f";
+}
+.icon-sync_disabled:before {
+ content: "\e628";
+}
+.icon-sync_problem:before {
+ content: "\e629";
+}
+.icon-system_update:before {
+ content: "\e62a";
+}
+.icon-system_update_alt:before {
+ content: "\e8d7";
+}
+.icon-tab:before {
+ content: "\e8d8";
+}
+.icon-tab_unselected:before {
+ content: "\e8d9";
+}
+.icon-tablet2:before {
+ content: "\e32f";
+}
+.icon-tablet_android:before {
+ content: "\e330";
+}
+.icon-tablet_mac:before {
+ content: "\e331";
+}
+.icon-tap_and_play:before {
+ content: "\e62b";
+}
+.icon-text_fields:before {
+ content: "\e262";
+}
+.icon-text_format:before {
+ content: "\e165";
+}
+.icon-texture:before {
+ content: "\e421";
+}
+.icon-thumb_down:before {
+ content: "\e8db";
+}
+.icon-thumb_up:before {
+ content: "\e8dc";
+}
+.icon-thumbs_up_down:before {
+ content: "\e8dd";
+}
+.icon-timelapse:before {
+ content: "\e422";
+}
+.icon-timeline:before {
+ content: "\e922";
+}
+.icon-timer:before {
+ content: "\e425";
+}
+.icon-timer_10:before {
+ content: "\e423";
+}
+.icon-timer_3:before {
+ content: "\e424";
+}
+.icon-timer_off:before {
+ content: "\e426";
+}
+.icon-title:before {
+ content: "\e264";
+}
+.icon-toc:before {
+ content: "\e8de";
+}
+.icon-today:before {
+ content: "\e8df";
+}
+.icon-toll:before {
+ content: "\e8e0";
+}
+.icon-tonality:before {
+ content: "\e427";
+}
+.icon-touch_app:before {
+ content: "\e913";
+}
+.icon-toys:before {
+ content: "\e332";
+}
+.icon-track_changes:before {
+ content: "\e8e1";
+}
+.icon-traffic:before {
+ content: "\e565";
+}
+.icon-train2:before {
+ content: "\e570";
+}
+.icon-tram:before {
+ content: "\e571";
+}
+.icon-transfer_within_a_station:before {
+ content: "\e572";
+}
+.icon-transform:before {
+ content: "\e428";
+}
+.icon-translate:before {
+ content: "\e8e2";
+}
+.icon-trending_down:before {
+ content: "\e8e3";
+}
+.icon-trending_flat:before {
+ content: "\e8e4";
+}
+.icon-trending_up:before {
+ content: "\e8e5";
+}
+.icon-tune:before {
+ content: "\e429";
+}
+.icon-tv2:before {
+ content: "\e333";
+}
+.icon-unarchive:before {
+ content: "\e169";
+}
+.icon-undo2:before {
+ content: "\e166";
+}
+.icon-unfold_less:before {
+ content: "\e5d6";
+}
+.icon-unfold_more:before {
+ content: "\e5d7";
+}
+.icon-update:before {
+ content: "\e923";
+}
+.icon-usb2:before {
+ content: "\e1e0";
+}
+.icon-verified_user:before {
+ content: "\e8e8";
+}
+.icon-vertical_align_bottom:before {
+ content: "\e258";
+}
+.icon-vertical_align_center:before {
+ content: "\e259";
+}
+.icon-vertical_align_top:before {
+ content: "\e25a";
+}
+.icon-vibration:before {
+ content: "\e62d";
+}
+.icon-video_call:before {
+ content: "\e070";
+}
+.icon-video_label:before {
+ content: "\e071";
+}
+.icon-video_library:before {
+ content: "\e04a";
+}
+.icon-videocam:before {
+ content: "\e04b";
+}
+.icon-videocam_off:before {
+ content: "\e04c";
+}
+.icon-videogame_asset:before {
+ content: "\e338";
+}
+.icon-view_agenda:before {
+ content: "\e8e9";
+}
+.icon-view_array:before {
+ content: "\e8ea";
+}
+.icon-view_carousel:before {
+ content: "\e8eb";
+}
+.icon-view_column:before {
+ content: "\e8ec";
+}
+.icon-view_comfy:before {
+ content: "\e42a";
+}
+.icon-view_compact:before {
+ content: "\e42b";
+}
+.icon-view_day:before {
+ content: "\e8ed";
+}
+.icon-view_headline:before {
+ content: "\e8ee";
+}
+.icon-view_list:before {
+ content: "\e8ef";
+}
+.icon-view_module:before {
+ content: "\e8f0";
+}
+.icon-view_quilt:before {
+ content: "\e8f1";
+}
+.icon-view_stream:before {
+ content: "\e8f2";
+}
+.icon-view_week:before {
+ content: "\e8f3";
+}
+.icon-vignette:before {
+ content: "\e435";
+}
+.icon-visibility_off:before {
+ content: "\e8f5";
+}
+.icon-voice_chat:before {
+ content: "\e62e";
+}
+.icon-voicemail:before {
+ content: "\e0d9";
+}
+.icon-volume_down:before {
+ content: "\e04d";
+}
+.icon-volume_mute:before {
+ content: "\e04e";
+}
+.icon-volume_off:before {
+ content: "\e04f";
+}
+.icon-volume_up:before {
+ content: "\e050";
+}
+.icon-vpn_key:before {
+ content: "\e0da";
+}
+.icon-vpn_lock:before {
+ content: "\e62f";
+}
+.icon-wallpaper:before {
+ content: "\e1bc";
+}
+.icon-watch:before {
+ content: "\e334";
+}
+.icon-watch_later:before {
+ content: "\e924";
+}
+.icon-wb_auto:before {
+ content: "\e42c";
+}
+.icon-wb_incandescent:before {
+ content: "\e42e";
+}
+.icon-wb_iridescent:before {
+ content: "\e436";
+}
+.icon-wb_sunny:before {
+ content: "\e430";
+}
+.icon-wc:before {
+ content: "\e63d";
+}
+.icon-web:before {
+ content: "\e051";
+}
+.icon-web_asset:before {
+ content: "\e069";
+}
+.icon-weekend:before {
+ content: "\e16b";
+}
+.icon-whatshot:before {
+ content: "\e80e";
+}
+.icon-widgets:before {
+ content: "\e1bd";
+}
+.icon-wifi2:before {
+ content: "\e63e";
+}
+.icon-wifi_lock:before {
+ content: "\e1e1";
+}
+.icon-wifi_tethering:before {
+ content: "\e1e2";
+}
+.icon-work:before {
+ content: "\e8f9";
+}
+.icon-wrap_text:before {
+ content: "\e25b";
+}
+.icon-youtube_searched_for:before {
+ content: "\e8fa";
+}
+.icon-zoom_in:before {
+ content: "\e8ff";
+}
+.icon-zoom_out:before {
+ content: "\e901";
+}
+.icon-zoom_out_map:before {
+ content: "\e56b";
+}
diff --git a/static/main/images/about.jpg b/static/main/images/about.jpg
new file mode 100644
index 0000000..81ef650
Binary files /dev/null and b/static/main/images/about.jpg differ
diff --git a/static/main/images/blog_1.jpg b/static/main/images/blog_1.jpg
new file mode 100644
index 0000000..18f325b
Binary files /dev/null and b/static/main/images/blog_1.jpg differ
diff --git a/static/main/images/blog_2.jpg b/static/main/images/blog_2.jpg
new file mode 100644
index 0000000..66e4c86
Binary files /dev/null and b/static/main/images/blog_2.jpg differ
diff --git a/static/main/images/blog_3.jpg b/static/main/images/blog_3.jpg
new file mode 100644
index 0000000..5337a26
Binary files /dev/null and b/static/main/images/blog_3.jpg differ
diff --git a/static/main/images/flaticon/license/license.pdf b/static/main/images/flaticon/license/license.pdf
new file mode 100644
index 0000000..bdeedb7
Binary files /dev/null and b/static/main/images/flaticon/license/license.pdf differ
diff --git a/static/main/images/flaticon/svg/001-travel.svg b/static/main/images/flaticon/svg/001-travel.svg
new file mode 100644
index 0000000..c4fd584
--- /dev/null
+++ b/static/main/images/flaticon/svg/001-travel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/main/images/flaticon/svg/002-travel-1.svg b/static/main/images/flaticon/svg/002-travel-1.svg
new file mode 100644
index 0000000..c228b38
--- /dev/null
+++ b/static/main/images/flaticon/svg/002-travel-1.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/main/images/flaticon/svg/003-travel-2.svg b/static/main/images/flaticon/svg/003-travel-2.svg
new file mode 100644
index 0000000..9913105
--- /dev/null
+++ b/static/main/images/flaticon/svg/003-travel-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/main/images/flaticon/svg/004-travel-3.svg b/static/main/images/flaticon/svg/004-travel-3.svg
new file mode 100644
index 0000000..910f306
--- /dev/null
+++ b/static/main/images/flaticon/svg/004-travel-3.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/main/images/flaticon/svg/005-travel-4.svg b/static/main/images/flaticon/svg/005-travel-4.svg
new file mode 100644
index 0000000..6457162
--- /dev/null
+++ b/static/main/images/flaticon/svg/005-travel-4.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/main/images/flaticon/svg/006-food.svg b/static/main/images/flaticon/svg/006-food.svg
new file mode 100644
index 0000000..5ca30df
--- /dev/null
+++ b/static/main/images/flaticon/svg/006-food.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/main/images/hero_bg_1.jpg b/static/main/images/hero_bg_1.jpg
new file mode 100644
index 0000000..36e2ab7
Binary files /dev/null and b/static/main/images/hero_bg_1.jpg differ
diff --git a/static/main/images/img_1.jpg b/static/main/images/img_1.jpg
new file mode 100644
index 0000000..75a7c44
Binary files /dev/null and b/static/main/images/img_1.jpg differ
diff --git a/static/main/images/img_10.jpg b/static/main/images/img_10.jpg
new file mode 100644
index 0000000..3d4c774
Binary files /dev/null and b/static/main/images/img_10.jpg differ
diff --git a/static/main/images/img_11.jpg b/static/main/images/img_11.jpg
new file mode 100644
index 0000000..e0d150e
Binary files /dev/null and b/static/main/images/img_11.jpg differ
diff --git a/static/main/images/img_12.jpg b/static/main/images/img_12.jpg
new file mode 100644
index 0000000..8cdbd08
Binary files /dev/null and b/static/main/images/img_12.jpg differ
diff --git a/static/main/images/img_2.jpg b/static/main/images/img_2.jpg
new file mode 100644
index 0000000..8df6906
Binary files /dev/null and b/static/main/images/img_2.jpg differ
diff --git a/static/main/images/img_3.jpg b/static/main/images/img_3.jpg
new file mode 100644
index 0000000..32afc81
Binary files /dev/null and b/static/main/images/img_3.jpg differ
diff --git a/static/main/images/img_4.jpg b/static/main/images/img_4.jpg
new file mode 100644
index 0000000..abdaed0
Binary files /dev/null and b/static/main/images/img_4.jpg differ
diff --git a/static/main/images/img_5.jpg b/static/main/images/img_5.jpg
new file mode 100644
index 0000000..0a85831
Binary files /dev/null and b/static/main/images/img_5.jpg differ
diff --git a/static/main/images/img_6.jpg b/static/main/images/img_6.jpg
new file mode 100644
index 0000000..306d4ec
Binary files /dev/null and b/static/main/images/img_6.jpg differ
diff --git a/static/main/images/img_7.jpg b/static/main/images/img_7.jpg
new file mode 100644
index 0000000..75a7c44
Binary files /dev/null and b/static/main/images/img_7.jpg differ
diff --git a/static/main/images/img_8.jpg b/static/main/images/img_8.jpg
new file mode 100644
index 0000000..d0b6f0f
Binary files /dev/null and b/static/main/images/img_8.jpg differ
diff --git a/static/main/images/img_9.jpg b/static/main/images/img_9.jpg
new file mode 100644
index 0000000..7b5c85a
Binary files /dev/null and b/static/main/images/img_9.jpg differ
diff --git a/static/main/images/logo_1.jpg b/static/main/images/logo_1.jpg
new file mode 100644
index 0000000..d8b58b1
Binary files /dev/null and b/static/main/images/logo_1.jpg differ
diff --git a/static/main/images/logo_2.jpg b/static/main/images/logo_2.jpg
new file mode 100644
index 0000000..065ff36
Binary files /dev/null and b/static/main/images/logo_2.jpg differ
diff --git a/static/main/images/logo_3.jpg b/static/main/images/logo_3.jpg
new file mode 100644
index 0000000..e9d0521
Binary files /dev/null and b/static/main/images/logo_3.jpg differ
diff --git a/static/main/images/logo_4.jpg b/static/main/images/logo_4.jpg
new file mode 100644
index 0000000..90e275e
Binary files /dev/null and b/static/main/images/logo_4.jpg differ
diff --git a/static/main/images/logo_5.jpg b/static/main/images/logo_5.jpg
new file mode 100644
index 0000000..ea52164
Binary files /dev/null and b/static/main/images/logo_5.jpg differ
diff --git a/static/main/images/logo_6.jpg b/static/main/images/logo_6.jpg
new file mode 100644
index 0000000..751efbc
Binary files /dev/null and b/static/main/images/logo_6.jpg differ
diff --git a/static/main/images/person_1.jpg b/static/main/images/person_1.jpg
new file mode 100644
index 0000000..32f97c4
Binary files /dev/null and b/static/main/images/person_1.jpg differ
diff --git a/static/main/images/person_2.jpg b/static/main/images/person_2.jpg
new file mode 100644
index 0000000..12def0e
Binary files /dev/null and b/static/main/images/person_2.jpg differ
diff --git a/static/main/images/person_3.jpg b/static/main/images/person_3.jpg
new file mode 100644
index 0000000..c55bee3
Binary files /dev/null and b/static/main/images/person_3.jpg differ
diff --git a/static/main/images/person_4.jpg b/static/main/images/person_4.jpg
new file mode 100644
index 0000000..e88b57e
Binary files /dev/null and b/static/main/images/person_4.jpg differ
diff --git a/static/main/images/person_5.jpg b/static/main/images/person_5.jpg
new file mode 100644
index 0000000..3734185
Binary files /dev/null and b/static/main/images/person_5.jpg differ
diff --git a/static/main/images/person_7.jpg b/static/main/images/person_7.jpg
new file mode 100644
index 0000000..a2ab135
Binary files /dev/null and b/static/main/images/person_7.jpg differ
diff --git a/static/main/js/aos.js b/static/main/js/aos.js
new file mode 100644
index 0000000..2d37d78
--- /dev/null
+++ b/static/main/js/aos.js
@@ -0,0 +1,2 @@
+!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.AOS=t():e.AOS=t()}(this,function(){return function(e){function t(o){if(n[o])return n[o].exports;var i=n[o]={exports:{},id:o,loaded:!1};return e[o].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="dist/",t(0)}([function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}var i=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]&&arguments[0];if(e&&(k=!0),k)return w=(0,y.default)(w,j),(0,b.default)(w,j.once),w},S=function(){w=(0,h.default)(),O()},_=function(){w.forEach(function(e,t){e.node.removeAttribute("data-aos"),e.node.removeAttribute("data-aos-easing"),e.node.removeAttribute("data-aos-duration"),e.node.removeAttribute("data-aos-delay")})},E=function(e){return e===!0||"mobile"===e&&p.default.mobile()||"phone"===e&&p.default.phone()||"tablet"===e&&p.default.tablet()||"function"==typeof e&&e()===!0},z=function(e){return j=i(j,e),w=(0,h.default)(),E(j.disable)||x?_():(document.querySelector("body").setAttribute("data-aos-easing",j.easing),document.querySelector("body").setAttribute("data-aos-duration",j.duration),document.querySelector("body").setAttribute("data-aos-delay",j.delay),"DOMContentLoaded"===j.startEvent&&["complete","interactive"].indexOf(document.readyState)>-1?O(!0):"load"===j.startEvent?window.addEventListener(j.startEvent,function(){O(!0)}):document.addEventListener(j.startEvent,function(){O(!0)}),window.addEventListener("resize",(0,f.default)(O,50,!0)),window.addEventListener("orientationchange",(0,f.default)(O,50,!0)),window.addEventListener("scroll",(0,u.default)(function(){(0,b.default)(w,j.once)},99)),document.addEventListener("DOMNodeRemoved",function(e){var t=e.target;t&&1===t.nodeType&&t.hasAttribute&&t.hasAttribute("data-aos")&&(0,f.default)(S,50,!0)}),(0,d.default)("[data-aos]",S),w)};e.exports={init:z,refresh:O,refreshHard:S}},function(e,t){},,,,,function(e,t){(function(t){"use strict";function n(e,t,n){function o(t){var n=b,o=v;return b=v=void 0,k=t,g=e.apply(o,n)}function r(e){return k=e,h=setTimeout(s,t),S?o(e):g}function a(e){var n=e-w,o=e-k,i=t-n;return _?j(i,y-o):i}function c(e){var n=e-w,o=e-k;return void 0===w||n>=t||n<0||_&&o>=y}function s(){var e=O();return c(e)?d(e):void(h=setTimeout(s,a(e)))}function d(e){return h=void 0,E&&b?o(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),k=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(O())}function m(){var e=O(),n=c(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(_)return h=setTimeout(s,t),o(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,k=0,S=!1,_=!1,E=!0;if("function"!=typeof e)throw new TypeError(f);return t=u(t)||0,i(n)&&(S=!!n.leading,_="maxWait"in n,y=_?x(u(n.maxWait)||0,t):y,E="trailing"in n?!!n.trailing:E),m.cancel=l,m.flush=p,m}function o(e,t,o){var r=!0,a=!0;if("function"!=typeof e)throw new TypeError(f);return i(o)&&(r="leading"in o?!!o.leading:r,a="trailing"in o?!!o.trailing:a),n(e,t,{leading:r,maxWait:t,trailing:a})}function i(e){var t="undefined"==typeof e?"undefined":c(e);return!!e&&("object"==t||"function"==t)}function r(e){return!!e&&"object"==("undefined"==typeof e?"undefined":c(e))}function a(e){return"symbol"==("undefined"==typeof e?"undefined":c(e))||r(e)&&k.call(e)==d}function u(e){if("number"==typeof e)return e;if(a(e))return s;if(i(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=i(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(l,"");var n=m.test(e);return n||b.test(e)?v(e.slice(2),n?2:8):p.test(e)?s:+e}var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f="Expected a function",s=NaN,d="[object Symbol]",l=/^\s+|\s+$/g,p=/^[-+]0x[0-9a-f]+$/i,m=/^0b[01]+$/i,b=/^0o[0-7]+$/i,v=parseInt,y="object"==("undefined"==typeof t?"undefined":c(t))&&t&&t.Object===Object&&t,g="object"==("undefined"==typeof self?"undefined":c(self))&&self&&self.Object===Object&&self,h=y||g||Function("return this")(),w=Object.prototype,k=w.toString,x=Math.max,j=Math.min,O=function(){return h.Date.now()};e.exports=o}).call(t,function(){return this}())},function(e,t){(function(t){"use strict";function n(e,t,n){function i(t){var n=b,o=v;return b=v=void 0,O=t,g=e.apply(o,n)}function r(e){return O=e,h=setTimeout(s,t),S?i(e):g}function u(e){var n=e-w,o=e-O,i=t-n;return _?x(i,y-o):i}function f(e){var n=e-w,o=e-O;return void 0===w||n>=t||n<0||_&&o>=y}function s(){var e=j();return f(e)?d(e):void(h=setTimeout(s,u(e)))}function d(e){return h=void 0,E&&b?i(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),O=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(j())}function m(){var e=j(),n=f(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(_)return h=setTimeout(s,t),i(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,O=0,S=!1,_=!1,E=!0;if("function"!=typeof e)throw new TypeError(c);return t=a(t)||0,o(n)&&(S=!!n.leading,_="maxWait"in n,y=_?k(a(n.maxWait)||0,t):y,E="trailing"in n?!!n.trailing:E),m.cancel=l,m.flush=p,m}function o(e){var t="undefined"==typeof e?"undefined":u(e);return!!e&&("object"==t||"function"==t)}function i(e){return!!e&&"object"==("undefined"==typeof e?"undefined":u(e))}function r(e){return"symbol"==("undefined"==typeof e?"undefined":u(e))||i(e)&&w.call(e)==s}function a(e){if("number"==typeof e)return e;if(r(e))return f;if(o(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(d,"");var n=p.test(e);return n||m.test(e)?b(e.slice(2),n?2:8):l.test(e)?f:+e}var u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c="Expected a function",f=NaN,s="[object Symbol]",d=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,p=/^0b[01]+$/i,m=/^0o[0-7]+$/i,b=parseInt,v="object"==("undefined"==typeof t?"undefined":u(t))&&t&&t.Object===Object&&t,y="object"==("undefined"==typeof self?"undefined":u(self))&&self&&self.Object===Object&&self,g=v||y||Function("return this")(),h=Object.prototype,w=h.toString,k=Math.max,x=Math.min,j=function(){return g.Date.now()};e.exports=n}).call(t,function(){return this}())},function(e,t){"use strict";function n(e,t){a.push({selector:e,fn:t}),!u&&r&&(u=new r(o),u.observe(i.documentElement,{childList:!0,subtree:!0,removedNodes:!0})),o()}function o(){for(var e,t,n=0,o=a.length;ne.position?e.node.classList.add("aos-animate"):"undefined"!=typeof o&&("false"===o||!n&&"true"!==o)&&e.node.classList.remove("aos-animate")},o=function(e,t){var o=window.pageYOffset,i=window.innerHeight;e.forEach(function(e,r){n(e,i+o,t)})};t.default=o},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),r=o(i),a=function(e,t){return e.forEach(function(e,n){e.node.classList.add("aos-init"),e.position=(0,r.default)(e.node,t.offset)}),e};t.default=a},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(13),r=o(i),a=function(e,t){var n=0,o=0,i=window.innerHeight,a={offset:e.getAttribute("data-aos-offset"),anchor:e.getAttribute("data-aos-anchor"),anchorPlacement:e.getAttribute("data-aos-anchor-placement")};switch(a.offset&&!isNaN(a.offset)&&(o=parseInt(a.offset)),a.anchor&&document.querySelectorAll(a.anchor)&&(e=document.querySelectorAll(a.anchor)[0]),n=(0,r.default)(e).top,a.anchorPlacement){case"top-bottom":break;case"center-bottom":n+=e.offsetHeight/2;break;case"bottom-bottom":n+=e.offsetHeight;break;case"top-center":n+=i/2;break;case"bottom-center":n+=i/2+e.offsetHeight;break;case"center-center":n+=i/2+e.offsetHeight/2;break;case"top-top":n+=i;break;case"bottom-top":n+=e.offsetHeight+i;break;case"center-top":n+=e.offsetHeight/2+i}return a.anchorPlacement||a.offset||isNaN(t)||(o=t),n+o};t.default=a},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){for(var t=0,n=0;e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop);)t+=e.offsetLeft-("BODY"!=e.tagName?e.scrollLeft:0),n+=e.offsetTop-("BODY"!=e.tagName?e.scrollTop:0),e=e.offsetParent;return{top:n,left:t}};t.default=n},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){e=e||document.querySelectorAll("[data-aos]");var t=[];return[].forEach.call(e,function(e,n){t.push({node:e})}),t};t.default=n}])});
+//# sourceMappingURL=aos.js.map
\ No newline at end of file
diff --git a/static/main/js/bootstrap-datepicker.min.js b/static/main/js/bootstrap-datepicker.min.js
new file mode 100644
index 0000000..48cb452
--- /dev/null
+++ b/static/main/js/bootstrap-datepicker.min.js
@@ -0,0 +1,9 @@
+/*!
+ * Datepicker for Bootstrap v1.6.4 (https://github.com/eternicode/bootstrap-datepicker)
+ *
+ * Copyright 2012 Stefan Petre
+ * Improvements by Andrew Rowls
+ * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
+ */
+!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a("object"==typeof exports?require("jquery"):jQuery)}(function(a,b){function c(){return new Date(Date.UTC.apply(Date,arguments))}function d(){var a=new Date;return c(a.getFullYear(),a.getMonth(),a.getDate())}function e(a,b){return a.getUTCFullYear()===b.getUTCFullYear()&&a.getUTCMonth()===b.getUTCMonth()&&a.getUTCDate()===b.getUTCDate()}function f(a){return function(){return this[a].apply(this,arguments)}}function g(a){return a&&!isNaN(a.getTime())}function h(b,c){function d(a,b){return b.toLowerCase()}var e,f=a(b).data(),g={},h=new RegExp("^"+c.toLowerCase()+"([A-Z])");c=new RegExp("^"+c.toLowerCase());for(var i in f)c.test(i)&&(e=i.replace(h,d),g[e]=f[i]);return g}function i(b){var c={};if(q[b]||(b=b.split("-")[0],q[b])){var d=q[b];return a.each(p,function(a,b){b in d&&(c[b]=d[b])}),c}}var j=function(){var b={get:function(a){return this.slice(a)[0]},contains:function(a){for(var b=a&&a.valueOf(),c=0,d=this.length;d>c;c++)if(this[c].valueOf()===b)return c;return-1},remove:function(a){this.splice(a,1)},replace:function(b){b&&(a.isArray(b)||(b=[b]),this.clear(),this.push.apply(this,b))},clear:function(){this.length=0},copy:function(){var a=new j;return a.replace(this),a}};return function(){var c=[];return c.push.apply(c,arguments),a.extend(c,b),c}}(),k=function(b,c){a(b).data("datepicker",this),this._process_options(c),this.dates=new j,this.viewDate=this.o.defaultViewDate,this.focusDate=null,this.element=a(b),this.isInput=this.element.is("input"),this.inputField=this.isInput?this.element:this.element.find("input"),this.component=this.element.hasClass("date")?this.element.find(".add-on, .input-group-addon, .btn"):!1,this.hasInput=this.component&&this.inputField.length,this.component&&0===this.component.length&&(this.component=!1),this.isInline=!this.component&&this.element.is("div"),this.picker=a(r.template),this._check_template(this.o.templates.leftArrow)&&this.picker.find(".prev").html(this.o.templates.leftArrow),this._check_template(this.o.templates.rightArrow)&&this.picker.find(".next").html(this.o.templates.rightArrow),this._buildEvents(),this._attachEvents(),this.isInline?this.picker.addClass("datepicker-inline").appendTo(this.element):this.picker.addClass("datepicker-dropdown dropdown-menu"),this.o.rtl&&this.picker.addClass("datepicker-rtl"),this.viewMode=this.o.startView,this.o.calendarWeeks&&this.picker.find("thead .datepicker-title, tfoot .today, tfoot .clear").attr("colspan",function(a,b){return parseInt(b)+1}),this._allow_update=!1,this.setStartDate(this._o.startDate),this.setEndDate(this._o.endDate),this.setDaysOfWeekDisabled(this.o.daysOfWeekDisabled),this.setDaysOfWeekHighlighted(this.o.daysOfWeekHighlighted),this.setDatesDisabled(this.o.datesDisabled),this.fillDow(),this.fillMonths(),this._allow_update=!0,this.update(),this.showMode(),this.isInline&&this.show()};k.prototype={constructor:k,_resolveViewName:function(a,c){return 0===a||"days"===a||"month"===a?0:1===a||"months"===a||"year"===a?1:2===a||"years"===a||"decade"===a?2:3===a||"decades"===a||"century"===a?3:4===a||"centuries"===a||"millennium"===a?4:c===b?!1:c},_check_template:function(c){try{if(c===b||""===c)return!1;if((c.match(/[<>]/g)||[]).length<=0)return!0;var d=a(c);return d.length>0}catch(e){return!1}},_process_options:function(b){this._o=a.extend({},this._o,b);var e=this.o=a.extend({},this._o),f=e.language;q[f]||(f=f.split("-")[0],q[f]||(f=o.language)),e.language=f,e.startView=this._resolveViewName(e.startView,0),e.minViewMode=this._resolveViewName(e.minViewMode,0),e.maxViewMode=this._resolveViewName(e.maxViewMode,4),e.startView=Math.min(e.startView,e.maxViewMode),e.startView=Math.max(e.startView,e.minViewMode),e.multidate!==!0&&(e.multidate=Number(e.multidate)||!1,e.multidate!==!1&&(e.multidate=Math.max(0,e.multidate))),e.multidateSeparator=String(e.multidateSeparator),e.weekStart%=7,e.weekEnd=(e.weekStart+6)%7;var g=r.parseFormat(e.format);e.startDate!==-(1/0)&&(e.startDate?e.startDate instanceof Date?e.startDate=this._local_to_utc(this._zero_time(e.startDate)):e.startDate=r.parseDate(e.startDate,g,e.language,e.assumeNearbyYear):e.startDate=-(1/0)),e.endDate!==1/0&&(e.endDate?e.endDate instanceof Date?e.endDate=this._local_to_utc(this._zero_time(e.endDate)):e.endDate=r.parseDate(e.endDate,g,e.language,e.assumeNearbyYear):e.endDate=1/0),e.daysOfWeekDisabled=e.daysOfWeekDisabled||[],a.isArray(e.daysOfWeekDisabled)||(e.daysOfWeekDisabled=e.daysOfWeekDisabled.split(/[,\s]*/)),e.daysOfWeekDisabled=a.map(e.daysOfWeekDisabled,function(a){return parseInt(a,10)}),e.daysOfWeekHighlighted=e.daysOfWeekHighlighted||[],a.isArray(e.daysOfWeekHighlighted)||(e.daysOfWeekHighlighted=e.daysOfWeekHighlighted.split(/[,\s]*/)),e.daysOfWeekHighlighted=a.map(e.daysOfWeekHighlighted,function(a){return parseInt(a,10)}),e.datesDisabled=e.datesDisabled||[],a.isArray(e.datesDisabled)||(e.datesDisabled=[e.datesDisabled]),e.datesDisabled=a.map(e.datesDisabled,function(a){return r.parseDate(a,g,e.language,e.assumeNearbyYear)});var h=String(e.orientation).toLowerCase().split(/\s+/g),i=e.orientation.toLowerCase();if(h=a.grep(h,function(a){return/^auto|left|right|top|bottom$/.test(a)}),e.orientation={x:"auto",y:"auto"},i&&"auto"!==i)if(1===h.length)switch(h[0]){case"top":case"bottom":e.orientation.y=h[0];break;case"left":case"right":e.orientation.x=h[0]}else i=a.grep(h,function(a){return/^left|right$/.test(a)}),e.orientation.x=i[0]||"auto",i=a.grep(h,function(a){return/^top|bottom$/.test(a)}),e.orientation.y=i[0]||"auto";else;if(e.defaultViewDate){var j=e.defaultViewDate.year||(new Date).getFullYear(),k=e.defaultViewDate.month||0,l=e.defaultViewDate.day||1;e.defaultViewDate=c(j,k,l)}else e.defaultViewDate=d()},_events:[],_secondaryEvents:[],_applyEvents:function(a){for(var c,d,e,f=0;ff?(this.picker.addClass("datepicker-orient-right"),n+=m-b):this.picker.addClass("datepicker-orient-left");var p,q=this.o.orientation.y;if("auto"===q&&(p=-g+o-c,q=0>p?"bottom":"top"),this.picker.addClass("datepicker-orient-"+q),"top"===q?o-=c+parseInt(this.picker.css("padding-top")):o+=l,this.o.rtl){var r=f-(n+m);this.picker.css({top:o,right:r,zIndex:j})}else this.picker.css({top:o,left:n,zIndex:j});return this},_allow_update:!0,update:function(){if(!this._allow_update)return this;var b=this.dates.copy(),c=[],d=!1;return arguments.length?(a.each(arguments,a.proxy(function(a,b){b instanceof Date&&(b=this._local_to_utc(b)),c.push(b)},this)),d=!0):(c=this.isInput?this.element.val():this.element.data("date")||this.inputField.val(),c=c&&this.o.multidate?c.split(this.o.multidateSeparator):[c],delete this.element.data().date),c=a.map(c,a.proxy(function(a){return r.parseDate(a,this.o.format,this.o.language,this.o.assumeNearbyYear)},this)),c=a.grep(c,a.proxy(function(a){return!this.dateWithinRange(a)||!a},this),!0),this.dates.replace(c),this.dates.length?this.viewDate=new Date(this.dates.get(-1)):this.viewDatethis.o.endDate?this.viewDate=new Date(this.o.endDate):this.viewDate=this.o.defaultViewDate,d?this.setValue():c.length&&String(b)!==String(this.dates)&&this._trigger("changeDate"),!this.dates.length&&b.length&&this._trigger("clearDate"),this.fill(),this.element.change(),this},fillDow:function(){var b=this.o.weekStart,c="";for(this.o.calendarWeeks&&(this.picker.find(".datepicker-days .datepicker-switch").attr("colspan",function(a,b){return parseInt(b)+1}),c+=' ');b'+q[this.o.language].daysMin[b++%7]+"";c+=" ",this.picker.find(".datepicker-days thead").append(c)},fillMonths:function(){for(var a=this._utc_to_local(this.viewDate),b="",c=0;12>c;){var d=a&&a.getMonth()===c?" focused":"";b+=''+q[this.o.language].monthsShort[c++]+" "}this.picker.find(".datepicker-months td").html(b)},setRange:function(b){b&&b.length?this.range=a.map(b,function(a){return a.valueOf()}):delete this.range,this.fill()},getClassNames:function(b){var c=[],d=this.viewDate.getUTCFullYear(),e=this.viewDate.getUTCMonth(),f=new Date;return b.getUTCFullYear()d||b.getUTCFullYear()===d&&b.getUTCMonth()>e)&&c.push("new"),this.focusDate&&b.valueOf()===this.focusDate.valueOf()&&c.push("focused"),this.o.todayHighlight&&b.getUTCFullYear()===f.getFullYear()&&b.getUTCMonth()===f.getMonth()&&b.getUTCDate()===f.getDate()&&c.push("today"),-1!==this.dates.contains(b)&&c.push("active"),this.dateWithinRange(b)||c.push("disabled"),this.dateIsDisabled(b)&&c.push("disabled","disabled-date"),-1!==a.inArray(b.getUTCDay(),this.o.daysOfWeekHighlighted)&&c.push("highlighted"),this.range&&(b>this.range[0]&&br;r+=1)s=[d],t=null,-1===r?s.push("old"):10===r&&s.push("new"),-1!==a.inArray(q,n)&&s.push("active"),(o>q||q>p)&&s.push("disabled"),q===this.viewDate.getFullYear()&&s.push("focused"),j!==a.noop&&(u=j(new Date(q,0,1)),u===b?u={}:"boolean"==typeof u?u={enabled:u}:"string"==typeof u&&(u={classes:u}),u.enabled===!1&&s.push("disabled"),u.classes&&(s=s.concat(u.classes.split(/\s+/))),u.tooltip&&(t=u.tooltip)),k+='"+q+" ",q+=f;l.find("td").html(k)},fill:function(){var d,e,f=new Date(this.viewDate),g=f.getUTCFullYear(),h=f.getUTCMonth(),i=this.o.startDate!==-(1/0)?this.o.startDate.getUTCFullYear():-(1/0),j=this.o.startDate!==-(1/0)?this.o.startDate.getUTCMonth():-(1/0),k=this.o.endDate!==1/0?this.o.endDate.getUTCFullYear():1/0,l=this.o.endDate!==1/0?this.o.endDate.getUTCMonth():1/0,m=q[this.o.language].today||q.en.today||"",n=q[this.o.language].clear||q.en.clear||"",o=q[this.o.language].titleFormat||q.en.titleFormat;if(!isNaN(g)&&!isNaN(h)){this.picker.find(".datepicker-days .datepicker-switch").text(r.formatDate(f,o,this.o.language)),this.picker.find("tfoot .today").text(m).toggle(this.o.todayBtn!==!1),this.picker.find("tfoot .clear").text(n).toggle(this.o.clearBtn!==!1),this.picker.find("thead .datepicker-title").text(this.o.title).toggle(""!==this.o.title),this.updateNavArrows(),this.fillMonths();var p=c(g,h-1,28),s=r.getDaysInMonth(p.getUTCFullYear(),p.getUTCMonth());p.setUTCDate(s),p.setUTCDate(s-(p.getUTCDay()-this.o.weekStart+7)%7);var t=new Date(p);p.getUTCFullYear()<100&&t.setUTCFullYear(p.getUTCFullYear()),t.setUTCDate(t.getUTCDate()+42),t=t.valueOf();for(var u,v=[];p.valueOf()"),this.o.calendarWeeks)){var w=new Date(+p+(this.o.weekStart-p.getUTCDay()-7)%7*864e5),x=new Date(Number(w)+(11-w.getUTCDay())%7*864e5),y=new Date(Number(y=c(x.getUTCFullYear(),0,1))+(11-y.getUTCDay())%7*864e5),z=(x-y)/864e5/7+1;v.push(''+z+" ")}u=this.getClassNames(p),u.push("day"),this.o.beforeShowDay!==a.noop&&(e=this.o.beforeShowDay(this._utc_to_local(p)),e===b?e={}:"boolean"==typeof e?e={enabled:e}:"string"==typeof e&&(e={classes:e}),e.enabled===!1&&u.push("disabled"),e.classes&&(u=u.concat(e.classes.split(/\s+/))),e.tooltip&&(d=e.tooltip)),u=a.isFunction(a.uniqueSort)?a.uniqueSort(u):a.unique(u),v.push('"+p.getUTCDate()+" "),d=null,p.getUTCDay()===this.o.weekEnd&&v.push(""),p.setUTCDate(p.getUTCDate()+1)}this.picker.find(".datepicker-days tbody").empty().append(v.join(""));var A=q[this.o.language].monthsTitle||q.en.monthsTitle||"Months",B=this.picker.find(".datepicker-months").find(".datepicker-switch").text(this.o.maxViewMode<2?A:g).end().find("span").removeClass("active");if(a.each(this.dates,function(a,b){b.getUTCFullYear()===g&&B.eq(b.getUTCMonth()).addClass("active")}),(i>g||g>k)&&B.addClass("disabled"),g===i&&B.slice(0,j).addClass("disabled"),g===k&&B.slice(l+1).addClass("disabled"),this.o.beforeShowMonth!==a.noop){var C=this;a.each(B,function(c,d){var e=new Date(g,c,1),f=C.o.beforeShowMonth(e);f===b?f={}:"boolean"==typeof f?f={enabled:f}:"string"==typeof f&&(f={classes:f}),f.enabled!==!1||a(d).hasClass("disabled")||a(d).addClass("disabled"),f.classes&&a(d).addClass(f.classes),f.tooltip&&a(d).prop("title",f.tooltip)})}this._fill_yearsView(".datepicker-years","year",10,1,g,i,k,this.o.beforeShowYear),this._fill_yearsView(".datepicker-decades","decade",100,10,g,i,k,this.o.beforeShowDecade),this._fill_yearsView(".datepicker-centuries","century",1e3,100,g,i,k,this.o.beforeShowCentury)}},updateNavArrows:function(){if(this._allow_update){var a=new Date(this.viewDate),b=a.getUTCFullYear(),c=a.getUTCMonth();switch(this.viewMode){case 0:this.o.startDate!==-(1/0)&&b<=this.o.startDate.getUTCFullYear()&&c<=this.o.startDate.getUTCMonth()?this.picker.find(".prev").css({visibility:"hidden"}):this.picker.find(".prev").css({visibility:"visible"}),this.o.endDate!==1/0&&b>=this.o.endDate.getUTCFullYear()&&c>=this.o.endDate.getUTCMonth()?this.picker.find(".next").css({visibility:"hidden"}):this.picker.find(".next").css({visibility:"visible"});break;case 1:case 2:case 3:case 4:this.o.startDate!==-(1/0)&&b<=this.o.startDate.getUTCFullYear()||this.o.maxViewMode<2?this.picker.find(".prev").css({visibility:"hidden"}):this.picker.find(".prev").css({visibility:"visible"}),this.o.endDate!==1/0&&b>=this.o.endDate.getUTCFullYear()||this.o.maxViewMode<2?this.picker.find(".next").css({visibility:"hidden"}):this.picker.find(".next").css({visibility:"visible"})}}},click:function(b){b.preventDefault(),b.stopPropagation();var e,f,g,h,i,j,k;e=a(b.target),e.hasClass("datepicker-switch")&&this.showMode(1);var l=e.closest(".prev, .next");l.length>0&&(f=r.modes[this.viewMode].navStep*(l.hasClass("prev")?-1:1),0===this.viewMode?(this.viewDate=this.moveMonth(this.viewDate,f),this._trigger("changeMonth",this.viewDate)):(this.viewDate=this.moveYear(this.viewDate,f),1===this.viewMode&&this._trigger("changeYear",this.viewDate)),this.fill()),e.hasClass("today")&&!e.hasClass("day")&&(this.showMode(-2),this._setDate(d(),"linked"===this.o.todayBtn?null:"view")),e.hasClass("clear")&&this.clearDates(),e.hasClass("disabled")||(e.hasClass("day")&&(g=parseInt(e.text(),10)||1,h=this.viewDate.getUTCFullYear(),i=this.viewDate.getUTCMonth(),e.hasClass("old")&&(0===i?(i=11,h-=1,j=!0,k=!0):(i-=1,j=!0)),e.hasClass("new")&&(11===i?(i=0,h+=1,j=!0,k=!0):(i+=1,j=!0)),this._setDate(c(h,i,g)),k&&this._trigger("changeYear",this.viewDate),j&&this._trigger("changeMonth",this.viewDate)),e.hasClass("month")&&(this.viewDate.setUTCDate(1),g=1,i=e.parent().find("span").index(e),h=this.viewDate.getUTCFullYear(),this.viewDate.setUTCMonth(i),this._trigger("changeMonth",this.viewDate),1===this.o.minViewMode?(this._setDate(c(h,i,g)),this.showMode()):this.showMode(-1),this.fill()),(e.hasClass("year")||e.hasClass("decade")||e.hasClass("century"))&&(this.viewDate.setUTCDate(1),g=1,i=0,h=parseInt(e.text(),10)||0,this.viewDate.setUTCFullYear(h),e.hasClass("year")&&(this._trigger("changeYear",this.viewDate),2===this.o.minViewMode&&this._setDate(c(h,i,g))),e.hasClass("decade")&&(this._trigger("changeDecade",this.viewDate),3===this.o.minViewMode&&this._setDate(c(h,i,g))),e.hasClass("century")&&(this._trigger("changeCentury",this.viewDate),4===this.o.minViewMode&&this._setDate(c(h,i,g))),this.showMode(-1),this.fill())),this.picker.is(":visible")&&this._focused_from&&a(this._focused_from).focus(),delete this._focused_from},_toggle_multidate:function(a){var b=this.dates.contains(a);if(a||this.dates.clear(),-1!==b?(this.o.multidate===!0||this.o.multidate>1||this.o.toggleActive)&&this.dates.remove(b):this.o.multidate===!1?(this.dates.clear(),this.dates.push(a)):this.dates.push(a),"number"==typeof this.o.multidate)for(;this.dates.length>this.o.multidate;)this.dates.remove(0)},_setDate:function(a,b){b&&"date"!==b||this._toggle_multidate(a&&new Date(a)),b&&"view"!==b||(this.viewDate=a&&new Date(a)),this.fill(),this.setValue(),b&&"view"===b||this._trigger("changeDate"),this.inputField&&this.inputField.change(),!this.o.autoclose||b&&"date"!==b||this.hide()},moveDay:function(a,b){var c=new Date(a);return c.setUTCDate(a.getUTCDate()+b),c},moveWeek:function(a,b){return this.moveDay(a,7*b)},moveMonth:function(a,b){if(!g(a))return this.o.defaultViewDate;if(!b)return a;var c,d,e=new Date(a.valueOf()),f=e.getUTCDate(),h=e.getUTCMonth(),i=Math.abs(b);if(b=b>0?1:-1,1===i)d=-1===b?function(){return e.getUTCMonth()===h}:function(){return e.getUTCMonth()!==c},c=h+b,e.setUTCMonth(c),(0>c||c>11)&&(c=(c+12)%12);else{for(var j=0;i>j;j++)e=this.moveMonth(e,b);c=e.getUTCMonth(),e.setUTCDate(f),d=function(){return c!==e.getUTCMonth()}}for(;d();)e.setUTCDate(--f),e.setUTCMonth(c);return e},moveYear:function(a,b){return this.moveMonth(a,12*b)},moveAvailableDate:function(a,b,c){do{if(a=this[c](a,b),!this.dateWithinRange(a))return!1;c="moveDay"}while(this.dateIsDisabled(a));return a},weekOfDateIsDisabled:function(b){return-1!==a.inArray(b.getUTCDay(),this.o.daysOfWeekDisabled)},dateIsDisabled:function(b){return this.weekOfDateIsDisabled(b)||a.grep(this.o.datesDisabled,function(a){return e(b,a)}).length>0},dateWithinRange:function(a){return a>=this.o.startDate&&a<=this.o.endDate},keydown:function(a){if(!this.picker.is(":visible"))return void((40===a.keyCode||27===a.keyCode)&&(this.show(),a.stopPropagation()));var b,c,d=!1,e=this.focusDate||this.viewDate;switch(a.keyCode){case 27:this.focusDate?(this.focusDate=null,this.viewDate=this.dates.get(-1)||this.viewDate,this.fill()):this.hide(),a.preventDefault(),a.stopPropagation();break;case 37:case 38:case 39:case 40:if(!this.o.keyboardNavigation||7===this.o.daysOfWeekDisabled.length)break;b=37===a.keyCode||38===a.keyCode?-1:1,0===this.viewMode?a.ctrlKey?(c=this.moveAvailableDate(e,b,"moveYear"),c&&this._trigger("changeYear",this.viewDate)):a.shiftKey?(c=this.moveAvailableDate(e,b,"moveMonth"),c&&this._trigger("changeMonth",this.viewDate)):37===a.keyCode||39===a.keyCode?c=this.moveAvailableDate(e,b,"moveDay"):this.weekOfDateIsDisabled(e)||(c=this.moveAvailableDate(e,b,"moveWeek")):1===this.viewMode?((38===a.keyCode||40===a.keyCode)&&(b=4*b),c=this.moveAvailableDate(e,b,"moveMonth")):2===this.viewMode&&((38===a.keyCode||40===a.keyCode)&&(b=4*b),c=this.moveAvailableDate(e,b,"moveYear")),c&&(this.focusDate=this.viewDate=c,this.setValue(),this.fill(),a.preventDefault());break;case 13:if(!this.o.forceParse)break;e=this.focusDate||this.dates.get(-1)||this.viewDate,this.o.keyboardNavigation&&(this._toggle_multidate(e),d=!0),this.focusDate=null,this.viewDate=this.dates.get(-1)||this.viewDate,this.setValue(),this.fill(),this.picker.is(":visible")&&(a.preventDefault(),a.stopPropagation(),this.o.autoclose&&this.hide());break;case 9:this.focusDate=null,this.viewDate=this.dates.get(-1)||this.viewDate,this.fill(),this.hide()}d&&(this.dates.length?this._trigger("changeDate"):this._trigger("clearDate"),this.inputField&&this.inputField.change())},showMode:function(a){a&&(this.viewMode=Math.max(this.o.minViewMode,Math.min(this.o.maxViewMode,this.viewMode+a))),this.picker.children("div").hide().filter(".datepicker-"+r.modes[this.viewMode].clsName).show(),this.updateNavArrows()}};var l=function(b,c){a(b).data("datepicker",this),this.element=a(b),this.inputs=a.map(c.inputs,function(a){return a.jquery?a[0]:a}),delete c.inputs,n.call(a(this.inputs),c).on("changeDate",a.proxy(this.dateUpdated,this)),this.pickers=a.map(this.inputs,function(b){return a(b).data("datepicker")}),this.updateDates()};l.prototype={updateDates:function(){this.dates=a.map(this.pickers,function(a){return a.getUTCDate()}),this.updateRanges()},updateRanges:function(){var b=a.map(this.dates,function(a){return a.valueOf()});a.each(this.pickers,function(a,c){c.setRange(b)})},dateUpdated:function(b){if(!this.updating){this.updating=!0;var c=a(b.target).data("datepicker");if("undefined"!=typeof c){var d=c.getUTCDate(),e=a.inArray(b.target,this.inputs),f=e-1,g=e+1,h=this.inputs.length;if(-1!==e){if(a.each(this.pickers,function(a,b){b.getUTCDate()||b.setUTCDate(d)}),d=0&&dthis.dates[g])for(;h>g&&d>this.dates[g];)this.pickers[g++].setUTCDate(d);this.updateDates(),delete this.updating}}}},remove:function(){a.map(this.pickers,function(a){a.remove()}),delete this.element.data().datepicker}};var m=a.fn.datepicker,n=function(c){var d=Array.apply(null,arguments);d.shift();var e;if(this.each(function(){var b=a(this),f=b.data("datepicker"),g="object"==typeof c&&c;if(!f){var j=h(this,"date"),m=a.extend({},o,j,g),n=i(m.language),p=a.extend({},o,n,j,g);b.hasClass("input-daterange")||p.inputs?(a.extend(p,{inputs:p.inputs||b.find("input").toArray()}),f=new l(this,p)):f=new k(this,p),b.data("datepicker",f)}"string"==typeof c&&"function"==typeof f[c]&&(e=f[c].apply(f,d))}),e===b||e instanceof k||e instanceof l)return this;if(this.length>1)throw new Error("Using only allowed for the collection of a single element ("+c+" function)");return e};a.fn.datepicker=n;var o=a.fn.datepicker.defaults={assumeNearbyYear:!1,autoclose:!1,beforeShowDay:a.noop,beforeShowMonth:a.noop,beforeShowYear:a.noop,beforeShowDecade:a.noop,beforeShowCentury:a.noop,calendarWeeks:!1,clearBtn:!1,toggleActive:!1,daysOfWeekDisabled:[],daysOfWeekHighlighted:[],datesDisabled:[],endDate:1/0,forceParse:!0,format:"mm/dd/yyyy",keyboardNavigation:!0,language:"en",minViewMode:0,maxViewMode:4,multidate:!1,multidateSeparator:",",orientation:"auto",rtl:!1,startDate:-(1/0),startView:0,todayBtn:!1,todayHighlight:!1,weekStart:0,disableTouchKeyboard:!1,enableOnReadonly:!0,showOnFocus:!0,zIndexOffset:10,container:"body",immediateUpdates:!1,title:"",templates:{leftArrow:"«",rightArrow:"»"}},p=a.fn.datepicker.locale_opts=["format","rtl","weekStart"];a.fn.datepicker.Constructor=k;var q=a.fn.datepicker.dates={en:{days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",clear:"Clear",titleFormat:"MM yyyy"}},r={modes:[{clsName:"days",navFnc:"Month",navStep:1},{clsName:"months",navFnc:"FullYear",navStep:1},{clsName:"years",navFnc:"FullYear",navStep:10},{clsName:"decades",navFnc:"FullDecade",navStep:100},{clsName:"centuries",navFnc:"FullCentury",navStep:1e3}],isLeapYear:function(a){return a%4===0&&a%100!==0||a%400===0},getDaysInMonth:function(a,b){return[31,r.isLeapYear(a)?29:28,31,30,31,30,31,31,30,31,30,31][b]},validParts:/dd?|DD?|mm?|MM?|yy(?:yy)?/g,nonpunctuation:/[^ -\/:-@\u5e74\u6708\u65e5\[-`{-~\t\n\r]+/g,parseFormat:function(a){if("function"==typeof a.toValue&&"function"==typeof a.toDisplay)return a;var b=a.replace(this.validParts,"\x00").split("\x00"),c=a.match(this.validParts);if(!b||!b.length||!c||0===c.length)throw new Error("Invalid date format.");return{separators:b,parts:c}},parseDate:function(e,f,g,h){function i(a,b){return b===!0&&(b=10),100>a&&(a+=2e3,a>(new Date).getFullYear()+b&&(a-=100)),a}function j(){var a=this.slice(0,s[n].length),b=s[n].slice(0,a.length);return a.toLowerCase()===b.toLowerCase()}if(!e)return b;if(e instanceof Date)return e;if("string"==typeof f&&(f=r.parseFormat(f)),f.toValue)return f.toValue(e,f,g);var l,m,n,o,p=/([\-+]\d+)([dmwy])/,s=e.match(/([\-+]\d+)([dmwy])/g),t={d:"moveDay",m:"moveMonth",w:"moveWeek",y:"moveYear"},u={yesterday:"-1d",today:"+0d",tomorrow:"+1d"};if(/^[\-+]\d+[dmwy]([\s,]+[\-+]\d+[dmwy])*$/.test(e)){for(e=new Date,n=0;nb;)b+=12;for(b%=12,a.setUTCMonth(b);a.getUTCMonth()!==b;)a.setUTCDate(a.getUTCDate()-1);return a},d:function(a,b){return a.setUTCDate(b)}};z.M=z.MM=z.mm=z.m,z.dd=z.d,e=d();var A=f.parts.slice();if(s.length!==A.length&&(A=a(A).filter(function(b,c){return-1!==a.inArray(c,y)}).toArray()),s.length===A.length){var B;for(n=0,B=A.length;B>n;n++){if(v=parseInt(s[n],10),l=A[n],isNaN(v))switch(l){case"MM":w=a(q[g].months).filter(j),v=a.inArray(w[0],q[g].months)+1;break;case"M":w=a(q[g].monthsShort).filter(j),v=a.inArray(w[0],q[g].monthsShort)+1}x[l]=v}var C,D;for(n=0;n=g;g++)f.length&&b.push(f.shift()),b.push(e[c.parts[g]]);return b.join("")},headTemplate:'« » ',contTemplate:' ',footTemplate:' '};r.template=''+r.headTemplate+" "+r.footTemplate+'
'+r.headTemplate+r.contTemplate+r.footTemplate+'
'+r.headTemplate+r.contTemplate+r.footTemplate+'
'+r.headTemplate+r.contTemplate+r.footTemplate+'
'+r.headTemplate+r.contTemplate+r.footTemplate+"
",a.fn.datepicker.DPGlobal=r,a.fn.datepicker.noConflict=function(){return a.fn.datepicker=m,this},a.fn.datepicker.version="1.6.4",a(document).on("focus.datepicker.data-api click.datepicker.data-api",'[data-provide="datepicker"]',function(b){var c=a(this);c.data("datepicker")||(b.preventDefault(),n.call(c,"show"))}),a(function(){n.call(a('[data-provide="datepicker-inline"]'))})});
\ No newline at end of file
diff --git a/static/main/js/bootstrap.min.js b/static/main/js/bootstrap.min.js
new file mode 100644
index 0000000..c4c0d1f
--- /dev/null
+++ b/static/main/js/bootstrap.min.js
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap v4.3.1 (https://getbootstrap.com/)
+ * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e((t=t||self).bootstrap={},t.jQuery,t.Popper)}(this,function(t,g,u){"use strict";function i(t,e){for(var n=0;nthis._items.length-1||t<0))if(this._isSliding)g(this._element).one(Q.SLID,function(){return e.to(t)});else{if(n===t)return this.pause(),void this.cycle();var i=ndocument.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},t._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},t._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",sanitize:!0,sanitizeFn:null,whiteList:Ee},je="show",He="out",Re={HIDE:"hide"+De,HIDDEN:"hidden"+De,SHOW:"show"+De,SHOWN:"shown"+De,INSERTED:"inserted"+De,CLICK:"click"+De,FOCUSIN:"focusin"+De,FOCUSOUT:"focusout"+De,MOUSEENTER:"mouseenter"+De,MOUSELEAVE:"mouseleave"+De},xe="fade",Fe="show",Ue=".tooltip-inner",We=".arrow",qe="hover",Me="focus",Ke="click",Qe="manual",Be=function(){function i(t,e){if("undefined"==typeof u)throw new TypeError("Bootstrap's tooltips require Popper.js (https://popper.js.org/)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var t=i.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.toggleEnabled=function(){this._isEnabled=!this._isEnabled},t.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=g(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(g(this.getTipElement()).hasClass(Fe))return void this._leave(null,this);this._enter(null,this)}},t.dispose=function(){clearTimeout(this._timeout),g.removeData(this.element,this.constructor.DATA_KEY),g(this.element).off(this.constructor.EVENT_KEY),g(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&g(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,(this._activeTrigger=null)!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},t.show=function(){var e=this;if("none"===g(this.element).css("display"))throw new Error("Please use show on visible elements");var t=g.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){g(this.element).trigger(t);var n=_.findShadowRoot(this.element),i=g.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(t.isDefaultPrevented()||!i)return;var o=this.getTipElement(),r=_.getUID(this.constructor.NAME);o.setAttribute("id",r),this.element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&g(o).addClass(xe);var s="function"==typeof this.config.placement?this.config.placement.call(this,o,this.element):this.config.placement,a=this._getAttachment(s);this.addAttachmentClass(a);var l=this._getContainer();g(o).data(this.constructor.DATA_KEY,this),g.contains(this.element.ownerDocument.documentElement,this.tip)||g(o).appendTo(l),g(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new u(this.element,o,{placement:a,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:We},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}}),g(o).addClass(Fe),"ontouchstart"in document.documentElement&&g(document.body).children().on("mouseover",null,g.noop);var c=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,g(e.element).trigger(e.constructor.Event.SHOWN),t===He&&e._leave(null,e)};if(g(this.tip).hasClass(xe)){var h=_.getTransitionDurationFromElement(this.tip);g(this.tip).one(_.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},t.hide=function(t){var e=this,n=this.getTipElement(),i=g.Event(this.constructor.Event.HIDE),o=function(){e._hoverState!==je&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),g(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(g(this.element).trigger(i),!i.isDefaultPrevented()){if(g(n).removeClass(Fe),"ontouchstart"in document.documentElement&&g(document.body).children().off("mouseover",null,g.noop),this._activeTrigger[Ke]=!1,this._activeTrigger[Me]=!1,this._activeTrigger[qe]=!1,g(this.tip).hasClass(xe)){var r=_.getTransitionDurationFromElement(n);g(n).one(_.TRANSITION_END,o).emulateTransitionEnd(r)}else o();this._hoverState=""}},t.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},t.isWithContent=function(){return Boolean(this.getTitle())},t.addAttachmentClass=function(t){g(this.getTipElement()).addClass(Ae+"-"+t)},t.getTipElement=function(){return this.tip=this.tip||g(this.config.template)[0],this.tip},t.setContent=function(){var t=this.getTipElement();this.setElementContent(g(t.querySelectorAll(Ue)),this.getTitle()),g(t).removeClass(xe+" "+Fe)},t.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=Se(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?g(e).parent().is(t)||t.empty().append(e):t.text(g(e).text())},t.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},t._getOffset=function(){var e=this,t={};return"function"==typeof this.config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,e.config.offset(t.offsets,e.element)||{}),t}:t.offset=this.config.offset,t},t._getContainer=function(){return!1===this.config.container?document.body:_.isElement(this.config.container)?g(this.config.container):g(document).find(this.config.container)},t._getAttachment=function(t){return Pe[t.toUpperCase()]},t._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(t){if("click"===t)g(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(t){return i.toggle(t)});else if(t!==Qe){var e=t===qe?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=t===qe?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;g(i.element).on(e,i.config.selector,function(t){return i._enter(t)}).on(n,i.config.selector,function(t){return i._leave(t)})}}),g(this.element).closest(".modal").on("hide.bs.modal",function(){i.element&&i.hide()}),this.config.selector?this.config=l({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},t._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},t._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||g(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Me:qe]=!0),g(e.getTipElement()).hasClass(Fe)||e._hoverState===je?e._hoverState=je:(clearTimeout(e._timeout),e._hoverState=je,e.config.delay&&e.config.delay.show?e._timeout=setTimeout(function(){e._hoverState===je&&e.show()},e.config.delay.show):e.show())},t._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||g(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Me:qe]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=He,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout(function(){e._hoverState===He&&e.hide()},e.config.delay.hide):e.hide())},t._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},t._getConfig=function(t){var e=g(this.element).data();return Object.keys(e).forEach(function(t){-1!==Oe.indexOf(t)&&delete e[t]}),"number"==typeof(t=l({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),_.typeCheckConfig(be,t,this.constructor.DefaultType),t.sanitize&&(t.template=Se(t.template,t.whiteList,t.sanitizeFn)),t},t._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},t._cleanTipClass=function(){var t=g(this.getTipElement()),e=t.attr("class").match(Ne);null!==e&&e.length&&t.removeClass(e.join(""))},t._handlePopperPlacementChange=function(t){var e=t.instance;this.tip=e.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},t._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(g(t).removeClass(xe),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},i._jQueryInterface=function(n){return this.each(function(){var t=g(this).data(Ie),e="object"==typeof n&&n;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),g(this).data(Ie,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return Le}},{key:"NAME",get:function(){return be}},{key:"DATA_KEY",get:function(){return Ie}},{key:"Event",get:function(){return Re}},{key:"EVENT_KEY",get:function(){return De}},{key:"DefaultType",get:function(){return ke}}]),i}();g.fn[be]=Be._jQueryInterface,g.fn[be].Constructor=Be,g.fn[be].noConflict=function(){return g.fn[be]=we,Be._jQueryInterface};var Ve="popover",Ye="bs.popover",ze="."+Ye,Xe=g.fn[Ve],$e="bs-popover",Ge=new RegExp("(^|\\s)"+$e+"\\S+","g"),Je=l({},Be.Default,{placement:"right",trigger:"click",content:"",template:''}),Ze=l({},Be.DefaultType,{content:"(string|element|function)"}),tn="fade",en="show",nn=".popover-header",on=".popover-body",rn={HIDE:"hide"+ze,HIDDEN:"hidden"+ze,SHOW:"show"+ze,SHOWN:"shown"+ze,INSERTED:"inserted"+ze,CLICK:"click"+ze,FOCUSIN:"focusin"+ze,FOCUSOUT:"focusout"+ze,MOUSEENTER:"mouseenter"+ze,MOUSELEAVE:"mouseleave"+ze},sn=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),(e.prototype.constructor=e).__proto__=n;var o=i.prototype;return o.isWithContent=function(){return this.getTitle()||this._getContent()},o.addAttachmentClass=function(t){g(this.getTipElement()).addClass($e+"-"+t)},o.getTipElement=function(){return this.tip=this.tip||g(this.config.template)[0],this.tip},o.setContent=function(){var t=g(this.getTipElement());this.setElementContent(t.find(nn),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(on),e),t.removeClass(tn+" "+en)},o._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},o._cleanTipClass=function(){var t=g(this.getTipElement()),e=t.attr("class").match(Ge);null!==e&&0=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t li > .active",Wn='[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',qn=".dropdown-toggle",Mn="> .dropdown-menu .active",Kn=function(){function i(t){this._element=t}var t=i.prototype;return t.show=function(){var n=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&g(this._element).hasClass(Pn)||g(this._element).hasClass(Ln))){var t,i,e=g(this._element).closest(xn)[0],o=_.getSelectorFromElement(this._element);if(e){var r="UL"===e.nodeName||"OL"===e.nodeName?Un:Fn;i=(i=g.makeArray(g(e).find(r)))[i.length-1]}var s=g.Event(On.HIDE,{relatedTarget:this._element}),a=g.Event(On.SHOW,{relatedTarget:i});if(i&&g(i).trigger(s),g(this._element).trigger(a),!a.isDefaultPrevented()&&!s.isDefaultPrevented()){o&&(t=document.querySelector(o)),this._activate(this._element,e);var l=function(){var t=g.Event(On.HIDDEN,{relatedTarget:n._element}),e=g.Event(On.SHOWN,{relatedTarget:i});g(i).trigger(t),g(n._element).trigger(e)};t?this._activate(t,t.parentNode,l):l()}}},t.dispose=function(){g.removeData(this._element,wn),this._element=null},t._activate=function(t,e,n){var i=this,o=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?g(e).children(Fn):g(e).find(Un))[0],r=n&&o&&g(o).hasClass(jn),s=function(){return i._transitionComplete(t,o,n)};if(o&&r){var a=_.getTransitionDurationFromElement(o);g(o).removeClass(Hn).one(_.TRANSITION_END,s).emulateTransitionEnd(a)}else s()},t._transitionComplete=function(t,e,n){if(e){g(e).removeClass(Pn);var i=g(e.parentNode).find(Mn)[0];i&&g(i).removeClass(Pn),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}if(g(t).addClass(Pn),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),_.reflow(t),t.classList.contains(jn)&&t.classList.add(Hn),t.parentNode&&g(t.parentNode).hasClass(kn)){var o=g(t).closest(Rn)[0];if(o){var r=[].slice.call(o.querySelectorAll(qn));g(r).addClass(Pn)}t.setAttribute("aria-expanded",!0)}n&&n()},i._jQueryInterface=function(n){return this.each(function(){var t=g(this),e=t.data(wn);if(e||(e=new i(this),t.data(wn,e)),"string"==typeof n){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}}]),i}();g(document).on(On.CLICK_DATA_API,Wn,function(t){t.preventDefault(),Kn._jQueryInterface.call(g(this),"show")}),g.fn.tab=Kn._jQueryInterface,g.fn.tab.Constructor=Kn,g.fn.tab.noConflict=function(){return g.fn.tab=Nn,Kn._jQueryInterface};var Qn="toast",Bn="bs.toast",Vn="."+Bn,Yn=g.fn[Qn],zn={CLICK_DISMISS:"click.dismiss"+Vn,HIDE:"hide"+Vn,HIDDEN:"hidden"+Vn,SHOW:"show"+Vn,SHOWN:"shown"+Vn},Xn="fade",$n="hide",Gn="show",Jn="showing",Zn={animation:"boolean",autohide:"boolean",delay:"number"},ti={animation:!0,autohide:!0,delay:500},ei='[data-dismiss="toast"]',ni=function(){function i(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var t=i.prototype;return t.show=function(){var t=this;g(this._element).trigger(zn.SHOW),this._config.animation&&this._element.classList.add(Xn);var e=function(){t._element.classList.remove(Jn),t._element.classList.add(Gn),g(t._element).trigger(zn.SHOWN),t._config.autohide&&t.hide()};if(this._element.classList.remove($n),this._element.classList.add(Jn),this._config.animation){var n=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},t.hide=function(t){var e=this;this._element.classList.contains(Gn)&&(g(this._element).trigger(zn.HIDE),t?this._close():this._timeout=setTimeout(function(){e._close()},this._config.delay))},t.dispose=function(){clearTimeout(this._timeout),this._timeout=null,this._element.classList.contains(Gn)&&this._element.classList.remove(Gn),g(this._element).off(zn.CLICK_DISMISS),g.removeData(this._element,Bn),this._element=null,this._config=null},t._getConfig=function(t){return t=l({},ti,g(this._element).data(),"object"==typeof t&&t?t:{}),_.typeCheckConfig(Qn,t,this.constructor.DefaultType),t},t._setListeners=function(){var t=this;g(this._element).on(zn.CLICK_DISMISS,ei,function(){return t.hide(!0)})},t._close=function(){var t=this,e=function(){t._element.classList.add($n),g(t._element).trigger(zn.HIDDEN)};if(this._element.classList.remove(Gn),this._config.animation){var n=_.getTransitionDurationFromElement(this._element);g(this._element).one(_.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},i._jQueryInterface=function(n){return this.each(function(){var t=g(this),e=t.data(Bn);if(e||(e=new i(this,"object"==typeof n&&n),t.data(Bn,e)),"string"==typeof n){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n](this)}})},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"DefaultType",get:function(){return Zn}},{key:"Default",get:function(){return ti}}]),i}();g.fn[Qn]=ni._jQueryInterface,g.fn[Qn].Constructor=ni,g.fn[Qn].noConflict=function(){return g.fn[Qn]=Yn,ni._jQueryInterface},function(){if("undefined"==typeof g)throw new TypeError("Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.");var t=g.fn.jquery.split(" ")[0].split(".");if(t[0]<2&&t[1]<9||1===t[0]&&9===t[1]&&t[2]<1||4<=t[0])throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}(),t.Util=_,t.Alert=p,t.Button=P,t.Carousel=lt,t.Collapse=bt,t.Dropdown=Jt,t.Modal=ve,t.Popover=sn,t.Scrollspy=Dn,t.Tab=Kn,t.Toast=ni,t.Tooltip=Be,Object.defineProperty(t,"__esModule",{value:!0})});
+//# sourceMappingURL=bootstrap.min.js.map
\ No newline at end of file
diff --git a/static/main/js/isotope.pkgd.min.js b/static/main/js/isotope.pkgd.min.js
new file mode 100644
index 0000000..7ca671c
--- /dev/null
+++ b/static/main/js/isotope.pkgd.min.js
@@ -0,0 +1,12 @@
+/*!
+ * Isotope PACKAGED v3.0.6
+ *
+ * Licensed GPLv3 for open source use
+ * or Isotope Commercial License for commercial use
+ *
+ * https://isotope.metafizzy.co
+ * Copyright 2010-2018 Metafizzy
+ */
+
+!function(t,e){"function"==typeof define&&define.amd?define("jquery-bridget/jquery-bridget",["jquery"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("jquery")):t.jQueryBridget=e(t,t.jQuery)}(window,function(t,e){"use strict";function i(i,s,a){function u(t,e,o){var n,s="$()."+i+'("'+e+'")';return t.each(function(t,u){var h=a.data(u,i);if(!h)return void r(i+" not initialized. Cannot call methods, i.e. "+s);var d=h[e];if(!d||"_"==e.charAt(0))return void r(s+" is not a valid method");var l=d.apply(h,o);n=void 0===n?l:n}),void 0!==n?n:t}function h(t,e){t.each(function(t,o){var n=a.data(o,i);n?(n.option(e),n._init()):(n=new s(o,e),a.data(o,i,n))})}a=a||e||t.jQuery,a&&(s.prototype.option||(s.prototype.option=function(t){a.isPlainObject(t)&&(this.options=a.extend(!0,this.options,t))}),a.fn[i]=function(t){if("string"==typeof t){var e=n.call(arguments,1);return u(this,t,e)}return h(this,t),this},o(a))}function o(t){!t||t&&t.bridget||(t.bridget=i)}var n=Array.prototype.slice,s=t.console,r="undefined"==typeof s?function(){}:function(t){s.error(t)};return o(e||t.jQuery),i}),function(t,e){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",e):"object"==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}("undefined"!=typeof window?window:this,function(){function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},o=i[t]=i[t]||[];return o.indexOf(e)==-1&&o.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{},o=i[t]=i[t]||{};return o[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var o=i.indexOf(e);return o!=-1&&i.splice(o,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){i=i.slice(0),e=e||[];for(var o=this._onceEvents&&this._onceEvents[t],n=0;n1&&i+t>this.cols;i=o?0:i;var n=e.size.outerWidth&&e.size.outerHeight;return this.horizontalColIndex=n?i+t:this.horizontalColIndex,{col:i,y:this._getColGroupY(i,t)}},o._manageStamp=function(t){var i=e(t),o=this._getElementOffset(t),n=this._getOption("originLeft"),s=n?o.left:o.right,r=s+i.outerWidth,a=Math.floor(s/this.columnWidth);a=Math.max(0,a);var u=Math.floor(r/this.columnWidth);u-=r%this.columnWidth?0:1,u=Math.min(this.cols-1,u);for(var h=this._getOption("originTop"),d=(h?o.top:o.bottom)+i.outerHeight,l=a;l<=u;l++)this.colYs[l]=Math.max(d,this.colYs[l])},o._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this._getOption("fitWidth")&&(t.width=this._getContainerFitWidth()),t},o._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},o.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!=this.containerWidth},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/masonry",["../layout-mode","masonry-layout/masonry"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode"),require("masonry-layout")):e(t.Isotope.LayoutMode,t.Masonry)}(window,function(t,e){"use strict";var i=t.create("masonry"),o=i.prototype,n={_getElementOffset:!0,layout:!0,_getMeasurement:!0};for(var s in e.prototype)n[s]||(o[s]=e.prototype[s]);var r=o.measureColumns;o.measureColumns=function(){this.items=this.isotope.filteredItems,r.call(this)};var a=o._getOption;return o._getOption=function(t){return"fitWidth"==t?void 0!==this.options.isFitWidth?this.options.isFitWidth:this.options.fitWidth:a.apply(this.isotope,arguments)},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/fit-rows",["../layout-mode"],e):"object"==typeof exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("fitRows"),i=e.prototype;return i._resetLayout=function(){this.x=0,this.y=0,this.maxY=0,this._getMeasurement("gutter","outerWidth")},i._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth+this.gutter,i=this.isotope.size.innerWidth+this.gutter;0!==this.x&&e+this.x>i&&(this.x=0,this.y=this.maxY);var o={x:this.x,y:this.y};return this.maxY=Math.max(this.maxY,this.y+t.size.outerHeight),this.x+=e,o},i._getContainerSize=function(){return{height:this.maxY}},e}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/vertical",["../layout-mode"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("vertical",{horizontalAlignment:0}),i=e.prototype;return i._resetLayout=function(){this.y=0},i._getItemLayoutPosition=function(t){t.getSize();var e=(this.isotope.size.innerWidth-t.size.outerWidth)*this.options.horizontalAlignment,i=this.y;return this.y+=t.size.outerHeight,{x:e,y:i}},i._getContainerSize=function(){return{height:this.y}},e}),function(t,e){"function"==typeof define&&define.amd?define(["outlayer/outlayer","get-size/get-size","desandro-matches-selector/matches-selector","fizzy-ui-utils/utils","isotope-layout/js/item","isotope-layout/js/layout-mode","isotope-layout/js/layout-modes/masonry","isotope-layout/js/layout-modes/fit-rows","isotope-layout/js/layout-modes/vertical"],function(i,o,n,s,r,a){return e(t,i,o,n,s,r,a)}):"object"==typeof module&&module.exports?module.exports=e(t,require("outlayer"),require("get-size"),require("desandro-matches-selector"),require("fizzy-ui-utils"),require("isotope-layout/js/item"),require("isotope-layout/js/layout-mode"),require("isotope-layout/js/layout-modes/masonry"),require("isotope-layout/js/layout-modes/fit-rows"),require("isotope-layout/js/layout-modes/vertical")):t.Isotope=e(t,t.Outlayer,t.getSize,t.matchesSelector,t.fizzyUIUtils,t.Isotope.Item,t.Isotope.LayoutMode)}(window,function(t,e,i,o,n,s,r){function a(t,e){return function(i,o){for(var n=0;na||ra?1:-1)*h}}return 0}}var u=t.jQuery,h=String.prototype.trim?function(t){return t.trim()}:function(t){return t.replace(/^\s+|\s+$/g,"")},d=e.create("isotope",{layoutMode:"masonry",isJQueryFiltering:!0,sortAscending:!0});d.Item=s,d.LayoutMode=r;var l=d.prototype;l._create=function(){this.itemGUID=0,this._sorters={},this._getSorters(),e.prototype._create.call(this),this.modes={},this.filteredItems=this.items,this.sortHistory=["original-order"];for(var t in r.modes)this._initLayoutMode(t)},l.reloadItems=function(){this.itemGUID=0,e.prototype.reloadItems.call(this)},l._itemize=function(){for(var t=e.prototype._itemize.apply(this,arguments),i=0;i=0&&n0&&t-1 in e)}var E=function(e){var t,n,r,i,o,a,s,u,l,c,f,p,d,h,g,y,v,m,x,b="sizzle"+1*new Date,w=e.document,T=0,C=0,E=ae(),k=ae(),S=ae(),D=function(e,t){return e===t&&(f=!0),0},N={}.hasOwnProperty,A=[],j=A.pop,q=A.push,L=A.push,H=A.slice,O=function(e,t){for(var n=0,r=e.length;n+~]|"+M+")"+M+"*"),z=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),X=new RegExp(W),U=new RegExp("^"+R+"$"),V={ID:new RegExp("^#("+R+")"),CLASS:new RegExp("^\\.("+R+")"),TAG:new RegExp("^("+R+"|[*])"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+P+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},G=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Q=/^[^{]+\{\s*\[native \w/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,K=/[+~]/,Z=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ee=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},te=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ne=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},re=function(){p()},ie=me(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{L.apply(A=H.call(w.childNodes),w.childNodes),A[w.childNodes.length].nodeType}catch(e){L={apply:A.length?function(e,t){q.apply(e,H.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function oe(e,t,r,i){var o,s,l,c,f,h,v,m=t&&t.ownerDocument,T=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==T&&9!==T&&11!==T)return r;if(!i&&((t?t.ownerDocument||t:w)!==d&&p(t),t=t||d,g)){if(11!==T&&(f=J.exec(e)))if(o=f[1]){if(9===T){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return L.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return L.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!S[e+" "]&&(!y||!y.test(e))){if(1!==T)m=t,v=e;else if("object"!==t.nodeName.toLowerCase()){(c=t.getAttribute("id"))?c=c.replace(te,ne):t.setAttribute("id",c=b),s=(h=a(e)).length;while(s--)h[s]="#"+c+" "+ve(h[s]);v=h.join(","),m=K.test(e)&&ge(t.parentNode)||t}if(v)try{return L.apply(r,m.querySelectorAll(v)),r}catch(e){}finally{c===b&&t.removeAttribute("id")}}}return u(e.replace(B,"$1"),t,r,i)}function ae(){var e=[];function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}return t}function se(e){return e[b]=!0,e}function ue(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function le(e,t){var n=e.split("|"),i=n.length;while(i--)r.attrHandle[n[i]]=t}function ce(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function fe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function pe(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function de(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ie(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function he(e){return se(function(t){return t=+t,se(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function ge(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}n=oe.support={},o=oe.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},p=oe.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!==d&&9===a.nodeType&&a.documentElement?(d=a,h=d.documentElement,g=!o(d),w!==d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",re,!1):i.attachEvent&&i.attachEvent("onunload",re)),n.attributes=ue(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ue(function(e){return e.appendChild(d.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=Q.test(d.getElementsByClassName),n.getById=ue(function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length}),n.getById?(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){var n="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&g)return t.getElementsByClassName(e)},v=[],y=[],(n.qsa=Q.test(d.querySelectorAll))&&(ue(function(e){h.appendChild(e).innerHTML=" ",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+P+")"),e.querySelectorAll("[id~="+b+"-]").length||y.push("~="),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+b+"+*").length||y.push(".#.+[+~]")}),ue(function(e){e.innerHTML=" ";var t=d.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(n.matchesSelector=Q.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ue(function(e){n.disconnectedMatch=m.call(e,"*"),m.call(e,"[s!='']:x"),v.push("!=",W)}),y=y.length&&new RegExp(y.join("|")),v=v.length&&new RegExp(v.join("|")),t=Q.test(h.compareDocumentPosition),x=t||Q.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===d||e.ownerDocument===w&&x(w,e)?-1:t===d||t.ownerDocument===w&&x(w,t)?1:c?O(c,e)-O(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===d?-1:t===d?1:i?-1:o?1:c?O(c,e)-O(c,t):0;if(i===o)return ce(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?ce(a[r],s[r]):a[r]===w?-1:s[r]===w?1:0},d):d},oe.matches=function(e,t){return oe(e,null,null,t)},oe.matchesSelector=function(e,t){if((e.ownerDocument||e)!==d&&p(e),t=t.replace(z,"='$1']"),n.matchesSelector&&g&&!S[t+" "]&&(!v||!v.test(t))&&(!y||!y.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return oe(t,d,null,[e]).length>0},oe.contains=function(e,t){return(e.ownerDocument||e)!==d&&p(e),x(e,t)},oe.attr=function(e,t){(e.ownerDocument||e)!==d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&N.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},oe.escape=function(e){return(e+"").replace(te,ne)},oe.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},oe.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(D),f){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1)}return c=null,e},i=oe.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else while(t=e[r++])n+=i(t);return n},(r=oe.selectors={cacheLength:50,createPseudo:se,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(Z,ee),e[3]=(e[3]||e[4]||e[5]||"").replace(Z,ee),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||oe.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&oe.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(Z,ee).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&E(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=oe.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace($," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",y=t.parentNode,v=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(y){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===v:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?y.firstChild:y.lastChild],a&&m){x=(d=(l=(c=(f=(p=y)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&y.childNodes[d];while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===v:1===p.nodeType)&&++x&&(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p===t))break;return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||oe.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?se(function(e,n){var r,o=i(e,t),a=o.length;while(a--)e[r=O(e,o[a])]=!(n[r]=o[a])}):function(e){return i(e,0,n)}):i}},pseudos:{not:se(function(e){var t=[],n=[],r=s(e.replace(B,"$1"));return r[b]?se(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}}),has:se(function(e){return function(t){return oe(e,t).length>0}}),contains:se(function(e){return e=e.replace(Z,ee),function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:se(function(e){return U.test(e||"")||oe.error("unsupported lang: "+e),e=e.replace(Z,ee).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:de(!1),disabled:de(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Y.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:he(function(){return[0]}),last:he(function(e,t){return[t-1]}),eq:he(function(e,t,n){return[n<0?n+t:n]}),even:he(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:he(function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function be(e,t,n){for(var r=0,i=t.length;r-1&&(o[l]=!(a[l]=f))}}else v=we(v===a?v.splice(h,v.length):v),i?i(null,a,v,u):L.apply(a,v)})}function Ce(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=me(function(e){return e===t},s,!0),f=me(function(e){return O(t,e)>-1},s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&xe(p),u>1&&ve(e.slice(0,u-1).concat({value:" "===e[u-2].type?"*":""})).replace(B,"$1"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var f,h,y,v=0,m="0",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG("*",c),E=T+=null==w?1:Math.random()||.1,k=C.length;for(c&&(l=a===d||a||c);m!==k&&null!=(f=C[m]);m++){if(i&&f){h=0,a||f.ownerDocument===d||(p(f),s=!g);while(y=e[h++])if(y(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!y&&f)&&v--,o&&x.push(f))}if(v+=m,n&&m!==v){h=0;while(y=t[h++])y(x,b,a,s);if(o){if(v>0)while(m--)x[m]||b[m]||(b[m]=j.call(u));b=we(b)}L.apply(u,b),c&&!o&&b.length>0&&v+t.length>1&&oe.uniqueSort(u)}return c&&(T=E,l=w),x};return n?se(o):o}return s=oe.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=a(e)),n=t.length;while(n--)(o=Ce(t[n]))[b]?r.push(o):i.push(o);(o=S(e,Ee(i,r))).selector=e}return o},u=oe.select=function(e,t,n,i){var o,u,l,c,f,p="function"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(Z,ee),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}o=V.needsContext.test(e)?0:u.length;while(o--){if(l=u[o],r.relative[c=l.type])break;if((f=r.find[c])&&(i=f(l.matches[0].replace(Z,ee),K.test(u[0].type)&&ge(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&ve(u)))return L.apply(n,i),n;break}}}return(p||s(e,d))(i,t,!g,n,!t||K.test(e)&&ge(t.parentNode)||t),n},n.sortStable=b.split("").sort(D).join("")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ue(function(e){return 1&e.compareDocumentPosition(d.createElement("fieldset"))}),ue(function(e){return e.innerHTML=" ","#"===e.firstChild.getAttribute("href")})||le("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ue(function(e){return e.innerHTML=" ",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||le("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ue(function(e){return null==e.getAttribute("disabled")})||le(P,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),oe}(e);w.find=E,w.expr=E.selectors,w.expr[":"]=w.expr.pseudos,w.uniqueSort=w.unique=E.uniqueSort,w.text=E.getText,w.isXMLDoc=E.isXML,w.contains=E.contains,w.escapeSelector=E.escape;var k=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&w(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},D=w.expr.match.needsContext;function N(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,t,n){return g(t)?w.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?w.grep(e,function(e){return e===t!==n}):"string"!=typeof t?w.grep(e,function(e){return u.call(t,e)>-1!==n}):w.filter(t,e,n)}w.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?w.find.matchesSelector(r,e)?[r]:[]:w.find.matches(e,w.grep(t,function(e){return 1===e.nodeType}))},w.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(w(e).filter(function(){for(t=0;t1?w.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&D.test(e)?w(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(w.fn.init=function(e,t,n){var i,o;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(i="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:L.exec(e))||!i[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(i[1]){if(t=t instanceof w?t[0]:t,w.merge(this,w.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:r,!0)),A.test(i[1])&&w.isPlainObject(t))for(i in t)g(this[i])?this[i](t[i]):this.attr(i,t[i]);return this}return(o=r.getElementById(i[2]))&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):g(e)?void 0!==n.ready?n.ready(e):e(w):w.makeArray(e,this)}).prototype=w.fn,q=w(r);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};w.fn.extend({has:function(e){var t=w(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&w.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?w.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?u.call(w(e),this[0]):u.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(w.uniqueSort(w.merge(this.get(),w(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}w.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return k(e,"parentNode")},parentsUntil:function(e,t,n){return k(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return k(e,"nextSibling")},prevAll:function(e){return k(e,"previousSibling")},nextUntil:function(e,t,n){return k(e,"nextSibling",n)},prevUntil:function(e,t,n){return k(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return N(e,"iframe")?e.contentDocument:(N(e,"template")&&(e=e.content||e),w.merge([],e.childNodes))}},function(e,t){w.fn[e]=function(n,r){var i=w.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=w.filter(r,i)),this.length>1&&(O[e]||w.uniqueSort(i),H.test(e)&&i.reverse()),this.pushStack(i)}});var M=/[^\x20\t\r\n\f]+/g;function R(e){var t={};return w.each(e.match(M)||[],function(e,n){t[n]=!0}),t}w.Callbacks=function(e){e="string"==typeof e?R(e):w.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1){n=a.shift();while(++s-1)o.splice(n,1),n<=s&&s--}),this},has:function(e){return e?w.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l};function I(e){return e}function W(e){throw e}function $(e,t,n,r){var i;try{e&&g(i=e.promise)?i.call(e).done(t).fail(n):e&&g(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}w.extend({Deferred:function(t){var n=[["notify","progress",w.Callbacks("memory"),w.Callbacks("memory"),2],["resolve","done",w.Callbacks("once memory"),w.Callbacks("once memory"),0,"resolved"],["reject","fail",w.Callbacks("once memory"),w.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},"catch":function(e){return i.then(null,e)},pipe:function(){var e=arguments;return w.Deferred(function(t){w.each(n,function(n,r){var i=g(e[r[4]])&&e[r[4]];o[r[1]](function(){var e=i&&i.apply(this,arguments);e&&g(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t=o&&(r!==W&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(w.Deferred.getStackHook&&(c.stackTrace=w.Deferred.getStackHook()),e.setTimeout(c))}}return w.Deferred(function(e){n[0][3].add(a(0,e,g(i)?i:I,e.notifyWith)),n[1][3].add(a(0,e,g(t)?t:I)),n[2][3].add(a(0,e,g(r)?r:W))}).promise()},promise:function(e){return null!=e?w.extend(e,i):i}},o={};return w.each(n,function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add(function(){r=s},n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith}),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=o.call(arguments),a=w.Deferred(),s=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?o.call(arguments):n,--t||a.resolveWith(r,i)}};if(t<=1&&($(e,a.done(s(n)).resolve,a.reject,!t),"pending"===a.state()||g(i[n]&&i[n].then)))return a.then();while(n--)$(i[n],s(n),a.reject);return a.promise()}});var B=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;w.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&B.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},w.readyException=function(t){e.setTimeout(function(){throw t})};var F=w.Deferred();w.fn.ready=function(e){return F.then(e)["catch"](function(e){w.readyException(e)}),this},w.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--w.readyWait:w.isReady)||(w.isReady=!0,!0!==e&&--w.readyWait>0||F.resolveWith(r,[w]))}}),w.ready.then=F.then;function _(){r.removeEventListener("DOMContentLoaded",_),e.removeEventListener("load",_),w.ready()}"complete"===r.readyState||"loading"!==r.readyState&&!r.documentElement.doScroll?e.setTimeout(w.ready):(r.addEventListener("DOMContentLoaded",_),e.addEventListener("load",_));var z=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===x(n)){i=!0;for(s in n)z(e,t,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,g(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(w(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each(function(){K.remove(this,e)})}}),w.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=J.get(e,t),n&&(!r||Array.isArray(n)?r=J.access(e,t,w.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=w.queue(e,t),r=n.length,i=n.shift(),o=w._queueHooks(e,t),a=function(){w.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return J.get(e,n)||J.access(e,n,{empty:w.Callbacks("once memory").add(function(){J.remove(e,[t+"queue",n])})})}}),w.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]+)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""," "],thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&N(e,t)?w.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n-1)i&&i.push(o);else if(l=w.contains(o.ownerDocument,o),a=ye(f.appendChild(o),"script"),l&&ve(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}!function(){var e=r.createDocumentFragment().appendChild(r.createElement("div")),t=r.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),h.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="",h.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var be=r.documentElement,we=/^key/,Te=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ce=/^([^.]*)(?:\.(.+)|)/;function Ee(){return!0}function ke(){return!1}function Se(){try{return r.activeElement}catch(e){}}function De(e,t,n,r,i,o){var a,s;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(s in t)De(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=ke;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return w().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=w.guid++)),e.each(function(){w.event.add(this,t,i,r,n)})}w.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.get(e);if(y){n.handler&&(n=(o=n).handler,i=o.selector),i&&w.find.matchesSelector(be,i),n.guid||(n.guid=w.guid++),(u=y.events)||(u=y.events={}),(a=y.handle)||(a=y.handle=function(t){return"undefined"!=typeof w&&w.event.triggered!==t.type?w.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(M)||[""]).length;while(l--)d=g=(s=Ce.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=w.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=w.event.special[d]||{},c=w.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&w.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),w.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.hasData(e)&&J.get(e);if(y&&(u=y.events)){l=(t=(t||"").match(M)||[""]).length;while(l--)if(s=Ce.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){f=w.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,y.handle)||w.removeEvent(e,d,y.handle),delete u[d])}else for(d in u)w.event.remove(e,d+t[l],n,r,!0);w.isEmptyObject(u)&&J.remove(e,"handle events")}},dispatch:function(e){var t=w.event.fix(e),n,r,i,o,a,s,u=new Array(arguments.length),l=(J.get(this,"events")||{})[t.type]||[],c=w.event.special[t.type]||{};for(u[0]=t,n=1;n=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:w.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\x20\t\r\n\f]*)[^>]*)\/>/gi,Ae=/ All rights reserved | This template is made with by Colorlib
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+