-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtb_icons.sql
2427 lines (2413 loc) · 109 KB
/
tb_icons.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.7.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Feb 16, 2018 at 06:21 PM
-- Server version: 10.1.28-MariaDB
-- PHP Version: 5.6.32
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `fwtlogi_201703132100`
--
-- --------------------------------------------------------
--
-- Table structure for table `tb_icons`
--
CREATE TABLE `tb_icons` (
`id` int(11) NOT NULL,
`icon` varchar(50) NOT NULL,
`code` varchar(10) NOT NULL,
`print_code` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tb_icons`
--
INSERT INTO `tb_icons` (`id`, `icon`, `code`, `print_code`) VALUES
(1, 'icon-search-7', '0xe800', ''),
(2, 'icon-mail-7', '0xe801', ''),
(3, 'icon-music', '0xe804', ''),
(4, 'icon-music-outline', '0xe803', ''),
(5, 'icon-videocam-5', '0xe802', ''),
(6, 'icon-search-outline', '0xe805', ''),
(7, 'icon-search', '0xe806', ''),
(8, 'icon-mail', '0xe807', ''),
(9, 'icon-heart', '0xe808', ''),
(10, 'icon-heart-filled', '0xe809', ''),
(11, 'icon-star', '0xe80a', ''),
(12, 'icon-star-filled', '0xe80b', ''),
(13, 'icon-user', '0xe80d', ''),
(14, 'icon-user-outline', '0xe80c', ''),
(15, 'icon-users-outline', '0xe80e', ''),
(16, 'icon-users', '0xe80f', ''),
(17, 'icon-emo-shoot', '0xe810', ''),
(18, 'icon-emo-squint', '0xe811', ''),
(19, 'icon-emo-laugh', '0xe812', ''),
(20, 'icon-user-add-outline', '0xe813', ''),
(21, 'icon-user-add', '0xe814', ''),
(22, 'icon-user-delete-outline', '0xe815', ''),
(23, 'icon-user-delete', '0xe816', ''),
(24, 'icon-picture-outline', '0xe817', ''),
(25, 'icon-picture', '0xe818', ''),
(26, 'icon-camera-outline', '0xe819', ''),
(27, 'icon-camera', '0xe81a', ''),
(28, 'icon-th-outline', '0xe81b', ''),
(29, 'icon-th', '0xe81c', ''),
(30, 'icon-th-large-outline', '0xe81d', ''),
(31, 'icon-th-large', '0xe81e', ''),
(32, 'icon-th-list-outline', '0xe81f', ''),
(33, 'icon-th-list', '0xe820', ''),
(34, 'icon-ok-outline', '0xe821', ''),
(35, 'icon-ok', '0xe822', ''),
(36, 'icon-cancel-outline', '0xe823', ''),
(37, 'icon-cancel', '0xe824', ''),
(38, 'icon-cancel-alt', '0xe825', ''),
(39, 'icon-cancel-alt-filled', '0xe826', ''),
(40, 'icon-cancel-circled-outline', '0xe827', ''),
(41, 'icon-minus-outline', '0xe828', ''),
(42, 'icon-minus-1', '0xe829', ''),
(43, 'icon-divide-outline', '0xe82a', ''),
(44, 'icon-divide', '0xe82b', ''),
(45, 'icon-minus', '0xe82c', ''),
(46, 'icon-eq-outline', '0xe82d', ''),
(47, 'icon-eq', '0xe82e', ''),
(48, 'icon-info-outline', '0xe82f', ''),
(49, 'icon-info', '0xe830', ''),
(50, 'icon-home-outline', '0xe831', ''),
(51, 'icon-home', '0xe832', ''),
(52, 'icon-link-outline', '0xe833', ''),
(53, 'icon-link', '0xe834', ''),
(54, 'icon-attach-outline', '0xe835', ''),
(55, 'icon-attach', '0xe836', ''),
(56, 'icon-lock', '0xe837', ''),
(57, 'icon-lock-filled', '0xe838', ''),
(58, 'icon-lock-open', '0xe839', ''),
(59, 'icon-eye-outline', '0xe83a', ''),
(60, 'icon-eye-2', '0xe83b', ''),
(61, 'icon-eye', '0xe83c', ''),
(62, 'icon-eye-off', '0xe83d', ''),
(63, 'icon-tag', '0xe83e', ''),
(64, 'icon-tag-2', '0xe83f', ''),
(65, 'icon-tags', '0xe840', ''),
(66, 'icon-bookmark', '0xe841', ''),
(67, 'icon-flag', '0xe842', ''),
(68, 'icon-flag-filled', '0xe843', ''),
(69, 'icon-thumbs-up', '0xe844', ''),
(70, 'icon-thumbs-down', '0xe845', ''),
(71, 'icon-download-outline', '0xe846', ''),
(72, 'icon-download', '0xe847', ''),
(73, 'icon-upload-outline', '0xe848', ''),
(74, 'icon-upload', '0xe849', ''),
(75, 'icon-upload-cloud-outline', '0xe84a', ''),
(76, 'icon-upload-cloud', '0xe84b', ''),
(77, 'icon-reply-outline', '0xe84c', ''),
(78, 'icon-reply', '0xe84d', ''),
(79, 'icon-code-1', '0xe84e', ''),
(80, 'icon-export-outline', '0xe84f', ''),
(81, 'icon-export', '0xe850', ''),
(82, 'icon-pencil', '0xe851', ''),
(83, 'icon-pen', '0xe852', ''),
(84, 'icon-feather', '0xe853', ''),
(85, 'icon-edit', '0xe854', ''),
(86, 'icon-print', '0xe855', ''),
(87, 'icon-comment', '0xe856', ''),
(88, 'icon-chat', '0xe857', ''),
(89, 'icon-chat-alt', '0xe858', ''),
(90, 'icon-bell', '0xe859', ''),
(91, 'icon-attention', '0xe85a', ''),
(92, 'icon-attention-filled', '0xe85b', ''),
(93, 'icon-warning-empty', '0xe85c', ''),
(94, 'icon-warning', '0xe85d', ''),
(95, 'icon-contacts', '0xe85e', ''),
(96, 'icon-location', '0xe85f', ''),
(97, 'icon-map-1', '0xe860', ''),
(98, 'icon-direction-outline', '0xe861', ''),
(99, 'icon-direction', '0xe862', ''),
(100, 'icon-calendar', '0xe863', ''),
(101, 'icon-compass', '0xe864', ''),
(102, 'icon-trash', '0xe865', ''),
(103, 'icon-doc', '0xe866', ''),
(104, 'icon-doc-text', '0xe867', ''),
(105, 'icon-doc-add', '0xe868', ''),
(106, 'icon-doc-remove', '0xe869', ''),
(107, 'icon-news', '0xe86a', ''),
(108, 'icon-folder', '0xe86b', ''),
(109, 'icon-folder-add', '0xe86c', ''),
(110, 'icon-folder-delete', '0xe86d', ''),
(111, 'icon-archive', '0xe86e', ''),
(112, 'icon-box', '0xe86f', ''),
(113, 'icon-zoom-in', '0xe870', ''),
(114, 'icon-zoom-out', '0xe871', ''),
(115, 'icon-rss-outline', '0xe872', ''),
(116, 'icon-menu-outline', '0xe873', ''),
(117, 'icon-menu', '0xe874', ''),
(118, 'icon-cog-outline', '0xe875', ''),
(119, 'icon-cog', '0xe876', ''),
(120, 'icon-wrench-outline', '0xe877', ''),
(121, 'icon-wrench', '0xe878', ''),
(122, 'icon-basket', '0xe879', ''),
(123, 'icon-calendar-outlilne', '0xe87a', ''),
(124, 'icon-calendar-1', '0xe87b', ''),
(125, 'icon-mic-outline', '0xe87c', ''),
(126, 'icon-mic', '0xe87d', ''),
(127, 'icon-volume-off', '0xe87e', ''),
(128, 'icon-volume-low', '0xe87f', ''),
(129, 'icon-volume-middle', '0xe880', ''),
(130, 'icon-volume-high', '0xe881', ''),
(131, 'icon-headphones', '0xe882', ''),
(132, 'icon-clock', '0xe883', ''),
(133, 'icon-block-outline', '0xe884', ''),
(134, 'icon-block', '0xe885', ''),
(135, 'icon-resize-full-outline', '0xe886', ''),
(136, 'icon-resize-full', '0xe887', ''),
(137, 'icon-resize-normal-outline', '0xe888', ''),
(138, 'icon-resize-normal', '0xe889', ''),
(139, 'icon-move-outline', '0xe88a', ''),
(140, 'icon-move-1', '0xe88b', ''),
(141, 'icon-to-end', '0xe88c', ''),
(142, 'icon-to-end-alt', '0xe88d', ''),
(143, 'icon-to-start', '0xe88e', ''),
(144, 'icon-popup', '0xe88f', ''),
(145, 'icon-zoom-in-outline', '0xe890', ''),
(146, 'icon-zoom-in-1', '0xe891', ''),
(147, 'icon-zoom-out-outline', '0xe892', ''),
(148, 'icon-zoom-out-1', '0xe893', ''),
(149, 'icon-popup-1', '0xe894', ''),
(150, 'icon-left-open-outline', '0xe895', ''),
(151, 'icon-left-open', '0xe896', ''),
(152, 'icon-right-open-outline', '0xe897', ''),
(153, 'icon-right', '0xe898', ''),
(154, 'icon-up', '0xe899', ''),
(155, 'icon-umbrella', '0xe89a', ''),
(156, 'icon-flight', '0xe89b', ''),
(157, 'icon-down-outline', '0xe89c', ''),
(158, 'icon-left-outline', '0xe89d', ''),
(159, 'icon-right-outline', '0xe89e', ''),
(160, 'icon-up-outline', '0xe89f', ''),
(161, 'icon-down-small', '0xe8a0', ''),
(162, 'icon-left-small', '0xe8a1', ''),
(163, 'icon-right-small', '0xe8a2', ''),
(164, 'icon-up-small', '0xe8a3', ''),
(165, 'icon-cw-outline', '0xe8a4', ''),
(166, 'icon-cw', '0xe8a5', ''),
(167, 'icon-list', '0xe8a6', ''),
(168, 'icon-indent-left', '0xe8a7', ''),
(169, 'icon-indent-right', '0xe8a8', ''),
(170, 'icon-arrows-cw-outline', '0xe8a9', ''),
(171, 'icon-arrows-cw', '0xe8aa', ''),
(172, 'icon-loop-outline', '0xe8ab', ''),
(173, 'icon-loop', '0xe8ac', ''),
(174, 'icon-list-alt', '0xe8ad', ''),
(175, 'icon-qrcode', '0xe8ae', ''),
(176, 'icon-barcode', '0xe8af', ''),
(177, 'icon-loop-alt-outline', '0xe8b0', ''),
(178, 'icon-play', '0xe8b1', ''),
(179, 'icon-stop-outline', '0xe8b2', ''),
(180, 'icon-stop', '0xe8b3', ''),
(181, 'icon-pause-outline', '0xe8b4', ''),
(182, 'icon-pause', '0xe8b5', ''),
(183, 'icon-fast-fw-outline', '0xe8b6', ''),
(184, 'icon-fast-fw', '0xe8b7', ''),
(185, 'icon-rewind-outline', '0xe8b8', ''),
(186, 'icon-rewind', '0xe8b9', ''),
(187, 'icon-record-outline', '0xe8ba', ''),
(188, 'icon-record', '0xe8bb', ''),
(189, 'icon-eject-outline', '0xe8bc', ''),
(190, 'icon-eject', '0xe8bd', ''),
(191, 'icon-eject-alt-outline', '0xe8be', ''),
(192, 'icon-lemon', '0xe8bf', ''),
(193, 'icon-eject-alt', '0xe8c0', ''),
(194, 'icon-bat1', '0xe8c1', ''),
(195, 'icon-bat2', '0xe8c2', ''),
(196, 'icon-plug', '0xe8c3', ''),
(197, 'icon-target-outline', '0xe8c4', ''),
(198, 'icon-target', '0xe8c5', ''),
(199, 'icon-wifi-outline', '0xe8c6', ''),
(200, 'icon-wifi', '0xe8c7', ''),
(201, 'icon-desktop', '0xe8c8', ''),
(202, 'icon-laptop', '0xe8c9', ''),
(203, 'icon-tablet', '0xe8ca', ''),
(204, 'icon-mobile', '0xe8cb', ''),
(205, 'icon-contrast', '0xe8cc', ''),
(206, 'icon-globe-outline', '0xe8cd', ''),
(207, 'icon-globe', '0xe8ce', ''),
(208, 'icon-globe-alt-outline', '0xe8cf', ''),
(209, 'icon-globe-alt', '0xe8d0', ''),
(210, 'icon-menu-1', '0xe8d1', ''),
(211, 'icon-check-1', '0xe8d2', ''),
(212, 'icon-cancel-1', '0xe8d3', ''),
(213, 'icon-sun', '0xe8d4', ''),
(214, 'icon-sun-filled', '0xe8d5', ''),
(215, 'icon-cloud', '0xe8d6', ''),
(216, 'icon-waves-outline', '0xe8d7', ''),
(217, 'icon-waves', '0xe8d8', ''),
(218, 'icon-rain', '0xe8d9', ''),
(219, 'icon-cloud-sun', '0xe8da', ''),
(220, 'icon-drizzle', '0xe8db', ''),
(221, 'icon-snow', '0xe8dc', ''),
(222, 'icon-cloud-flash', '0xe8dd', ''),
(223, 'icon-cloud-wind', '0xe8de', ''),
(224, 'icon-wind', '0xe8df', ''),
(225, 'icon-plane-outline', '0xe8e0', ''),
(226, 'icon-plane', '0xe8e1', ''),
(227, 'icon-leaf', '0xe8e2', ''),
(228, 'icon-lifebuoy', '0xe8e3', ''),
(229, 'icon-briefcase', '0xe8e4', ''),
(230, 'icon-lock-open-1', '0xe8e5', ''),
(231, 'icon-eye-1', '0xe8e6', ''),
(232, 'icon-tag-1', '0xe8e7', ''),
(233, 'icon-brush', '0xe8e8', ''),
(234, 'icon-pipette', '0xe8e9', ''),
(235, 'icon-power-outline', '0xe8ea', ''),
(236, 'icon-gift', '0xe8eb', ''),
(237, 'icon-temperatire', '0xe8ec', ''),
(238, 'icon-chart-outline', '0xe8ed', ''),
(239, 'icon-chart', '0xe8ee', ''),
(240, 'icon-chart-alt-outline', '0xe8ef', ''),
(241, 'icon-chart-alt', '0xe8f0', ''),
(242, 'icon-chart-bar-outline', '0xe8f1', ''),
(243, 'icon-chart-bar', '0xe8f2', ''),
(244, 'icon-chart-pie-outline', '0xe8f3', ''),
(245, 'icon-chart-pie-1', '0xe8f4', ''),
(246, 'icon-ticket', '0xe8f5', ''),
(247, 'icon-credit-card', '0xe8f6', ''),
(248, 'icon-clipboard', '0xe8f7', ''),
(249, 'icon-database', '0xe8f8', ''),
(250, 'icon-retweet-1', '0xe8f9', ''),
(251, 'icon-keyboard-1', '0xe8fa', ''),
(252, 'icon-comment-1', '0xe8fb', ''),
(253, 'icon-key-outline', '0xe8fc', ''),
(254, 'icon-key', '0xe8fd', ''),
(255, 'icon-flow-split', '0xe8fe', ''),
(256, 'icon-certificate-outline', '0xe8ff', ''),
(257, 'icon-certificate', '0xe900', ''),
(258, 'icon-scissors-outline', '0xe901', ''),
(259, 'icon-scissors', '0xe902', ''),
(260, 'icon-flask', '0xe903', ''),
(261, 'icon-wine', '0xe904', ''),
(262, 'icon-coffee', '0xe905', ''),
(263, 'icon-beer', '0xe906', ''),
(264, 'icon-anchor-outline', '0xe907', ''),
(265, 'icon-anchor', '0xe908', ''),
(266, 'icon-puzzle-outline', '0xe909', ''),
(267, 'icon-puzzle', '0xe90a', ''),
(268, 'icon-tree', '0xe90b', ''),
(269, 'icon-calculator', '0xe90c', ''),
(270, 'icon-newspaper-1', '0xe90d', ''),
(271, 'icon-book-open', '0xe90e', ''),
(272, 'icon-book-1', '0xe90f', ''),
(273, 'icon-infinity-outline', '0xe910', ''),
(274, 'icon-infinity', '0xe911', ''),
(275, 'icon-pi-outline', '0xe912', ''),
(276, 'icon-looped-square-outline', '0xe913', ''),
(277, 'icon-looped-square-interest', '0xe914', ''),
(278, 'icon-sort-alphabet-outline', '0xe915', ''),
(279, 'icon-sort-alphabet', '0xe916', ''),
(280, 'icon-sort-numeric-outline', '0xe917', ''),
(281, 'icon-sort-numeric', '0xe918', ''),
(282, 'icon-dribbble-circled', '0xe919', ''),
(283, 'icon-dribbble', '0xe91a', ''),
(284, 'icon-facebook-circled', '0xe91b', ''),
(285, 'icon-facebook-1', '0xe91c', ''),
(286, 'icon-flickr-circled-1', '0xe91d', ''),
(287, 'icon-flickr', '0xe91e', ''),
(288, 'icon-github-circled', '0xe91f', ''),
(289, 'icon-github', '0xe920', ''),
(290, 'icon-volume', '0xe921', ''),
(291, 'icon-clock-1', '0xe922', ''),
(292, 'icon-hourglass-4', '0xe923', ''),
(293, 'icon-lastfm-circled-1', '0xe924', ''),
(294, 'icon-lastfm', '0xe925', ''),
(295, 'icon-linkedin-circled', '0xe926', ''),
(296, 'icon-skype-outline', '0xe927', ''),
(297, 'icon-skype', '0xe928', ''),
(298, 'icon-tumbler-circled', '0xe929', ''),
(299, 'icon-tumbler', '0xe92a', ''),
(300, 'icon-twitter-circled', '0xe92b', ''),
(301, 'icon-twitter', '0xe92c', ''),
(302, 'icon-vimeo-circled', '0xe92d', ''),
(303, 'icon-vimeo', '0xe92e', ''),
(304, 'icon-search-1', '0xe92f', ''),
(305, 'icon-mail-1', '0xe930', ''),
(306, 'icon-heart-1', '0xe931', ''),
(307, 'icon-heart-empty', '0xe932', ''),
(308, 'icon-star-1', '0xe933', ''),
(309, 'icon-user-1', '0xe934', ''),
(310, 'icon-right-open-1', '0xe935', ''),
(311, 'icon-up-open-1', '0xe936', ''),
(312, 'icon-down-open-mini', '0xe937', ''),
(313, 'icon-video', '0xe938', ''),
(314, 'icon-picture-1', '0xe939', ''),
(315, 'icon-camera-1', '0xe93a', ''),
(316, 'icon-ok-1', '0xe93b', ''),
(317, 'icon-ok-circle', '0xe93c', ''),
(318, 'icon-cancel-2', '0xe93d', ''),
(319, 'icon-cancel-circle', '0xe93e', ''),
(320, 'icon-plus', '0xe93f', ''),
(321, 'icon-plus-circle', '0xe940', ''),
(322, 'icon-minus-2', '0xe941', ''),
(323, 'icon-minus-circle', '0xe942', ''),
(324, 'icon-link-1', '0xe943', ''),
(325, 'icon-attach-1', '0xe944', ''),
(326, 'icon-lock-1', '0xe945', ''),
(327, 'icon-lock-empty', '0xe946', ''),
(328, 'icon-lock-open-2', '0xe947', ''),
(329, 'icon-lock-open-empty', '0xe948', ''),
(330, 'icon-right-bold', '0xe949', ''),
(331, 'icon-up-bold', '0xe94a', ''),
(332, 'icon-down-thin', '0xe94b', ''),
(333, 'icon-pin', '0xe94c', ''),
(334, 'icon-eye-3', '0xe94d', ''),
(335, 'icon-tag-3', '0xe94e', ''),
(336, 'icon-tag-empty', '0xe94f', ''),
(337, 'icon-download-1', '0xe950', ''),
(338, 'icon-upload-1', '0xe951', ''),
(339, 'icon-download-cloud', '0xe952', ''),
(340, 'icon-upload-cloud-1', '0xe953', ''),
(341, 'icon-quote-left-1', '0xe954', ''),
(342, 'icon-quote-right-1', '0xe955', ''),
(343, 'icon-quote-left-alt', '0xe956', ''),
(344, 'icon-pencil-alt', '0xe957', ''),
(345, 'icon-undo', '0xe958', ''),
(346, 'icon-comment-2', '0xe959', ''),
(347, 'icon-comment-inv', '0xe95a', ''),
(348, 'icon-comment-alt', '0xe95b', ''),
(349, 'icon-comment-inv-alt', '0xe95c', ''),
(350, 'icon-fast-forward', '0xe95d', ''),
(351, 'icon-fast-backward', '0xe95e', ''),
(352, 'icon-progress-0', '0xe95f', ''),
(353, 'icon-comment-alt2', '0xe960', ''),
(354, 'icon-comment-inv-alt2', '0xe961', ''),
(355, 'icon-chat-1', '0xe962', ''),
(356, 'icon-chat-inv', '0xe963', ''),
(357, 'icon-location-1', '0xe964', ''),
(358, 'icon-location-inv', '0xe965', ''),
(359, 'icon-location-alt', '0xe966', ''),
(360, 'icon-compass-1', '0xe967', ''),
(361, 'icon-trash-1', '0xe968', ''),
(362, 'icon-trash-empty', '0xe969', ''),
(363, 'icon-doc-1', '0xe96a', ''),
(364, 'icon-article', '0xe96b', ''),
(365, 'icon-article-alt', '0xe96c', ''),
(366, 'icon-book-open-1', '0xe96d', ''),
(367, 'icon-folder-1', '0xe96e', ''),
(368, 'icon-folder-empty', '0xe96f', ''),
(369, 'icon-box-1', '0xe970', ''),
(370, 'icon-globe-1', '0xe971', ''),
(371, 'icon-cloud-1', '0xe972', ''),
(372, 'icon-cloud-thunder', '0xe973', ''),
(373, 'icon-rss', '0xe974', ''),
(374, 'icon-rss-alt', '0xe975', ''),
(375, 'icon-cog-1', '0xe976', ''),
(376, 'icon-wrench-1', '0xe977', ''),
(377, 'icon-share', '0xe978', ''),
(378, 'icon-calendar-2', '0xe979', ''),
(379, 'icon-calendar-inv', '0xe97a', ''),
(380, 'icon-calendar-alt', '0xe97b', ''),
(381, 'icon-mic-1', '0xe97c', ''),
(382, 'icon-volume-off-1', '0xe97d', ''),
(383, 'icon-volume-up', '0xe97e', ''),
(384, 'icon-block-1', '0xe97f', ''),
(385, 'icon-resize-full-1', '0xe980', ''),
(386, 'icon-resize-full-alt', '0xe981', ''),
(387, 'icon-resize-small', '0xe982', ''),
(388, 'icon-resize-small-alt', '0xe983', ''),
(389, 'icon-resize-vertical', '0xe984', ''),
(390, 'icon-chart-line-1', '0xe985', ''),
(391, 'icon-chart-bar-1', '0xe986', ''),
(392, 'icon-chart-area-1', '0xe987', ''),
(393, 'icon-resize-horizontal', '0xe988', ''),
(394, 'icon-move-2', '0xe989', ''),
(395, 'icon-popup-2', '0xe98a', ''),
(396, 'icon-down', '0xe98b', ''),
(397, 'icon-left', '0xe98c', ''),
(398, 'icon-right-1', '0xe98d', ''),
(399, 'icon-up-1', '0xe98e', ''),
(400, 'icon-down-circle', '0xe98f', ''),
(401, 'icon-left-circle', '0xe990', ''),
(402, 'icon-right-circle', '0xe991', ''),
(403, 'icon-up-circle', '0xe992', ''),
(404, 'icon-exchange', '0xe993', ''),
(405, 'icon-split', '0xe994', ''),
(406, 'icon-arrow-curved', '0xe995', ''),
(407, 'icon-play-1', '0xe996', ''),
(408, 'icon-play-circle2', '0xe997', ''),
(409, 'icon-stop-1', '0xe998', ''),
(410, 'icon-flow-branch', '0xe999', ''),
(411, 'icon-flow-tree', '0xe99a', ''),
(412, 'icon-flow-line', '0xe99b', ''),
(413, 'icon-pause-1', '0xe99c', ''),
(414, 'icon-to-start-1', '0xe99d', ''),
(415, 'icon-to-end-1', '0xe99e', ''),
(416, 'icon-eject-1', '0xe99f', ''),
(417, 'icon-target-1', '0xe9a0', ''),
(418, 'icon-signal', '0xe9a1', ''),
(419, 'icon-award', '0xe9a2', ''),
(420, 'icon-award-empty', '0xe9a3', ''),
(421, 'icon-list-1', '0xe9a4', ''),
(422, 'icon-list-nested', '0xe9a5', ''),
(423, 'icon-bat-empty', '0xe9a6', ''),
(424, 'icon-mobile-1', '0xe9a7', ''),
(425, 'icon-cd', '0xe9a8', ''),
(426, 'icon-equalizer', '0xe9a9', ''),
(427, 'icon-cursor', '0xe9aa', ''),
(428, 'icon-aperture', '0xe9ab', ''),
(429, 'icon-flickr-circled', '0xe9ac', ''),
(430, 'icon-aperture-alt', '0xe9ad', ''),
(431, 'icon-steering-wheel', '0xe9ae', ''),
(432, 'icon-book', '0xe9af', ''),
(433, 'icon-book-alt', '0xe9b0', ''),
(434, 'icon-brush-1', '0xe9b1', ''),
(435, 'icon-brush-alt', '0xe9b2', ''),
(436, 'icon-eyedropper', '0xe9b3', ''),
(437, 'icon-layers', '0xe9b4', ''),
(438, 'icon-layers-alt', '0xe9b5', ''),
(439, 'icon-sun-1', '0xe9b6', ''),
(440, 'icon-sun-inv', '0xe9b7', ''),
(441, 'icon-cloud-2', '0xe9b8', ''),
(442, 'icon-moon-inv', '0xe9b9', ''),
(443, 'icon-umbrella-1', '0xe9ba', ''),
(444, 'icon-chart-bar-2', '0xe9bb', ''),
(445, 'icon-chart-pie-2', '0xe9bc', ''),
(446, 'icon-chart-pie-alt', '0xe9bd', ''),
(447, 'icon-key-1', '0xe9be', ''),
(448, 'icon-key-inv', '0xe9bf', ''),
(449, 'icon-hash', '0xe9c0', ''),
(450, 'icon-at', '0xe9c1', ''),
(451, 'icon-pilcrow', '0xe9c2', ''),
(452, 'icon-dial', '0xe9c3', ''),
(453, 'icon-search-2', '0xe9c4', ''),
(454, 'icon-mail-2', '0xe9c5', ''),
(455, 'icon-heart-2', '0xe9c6', ''),
(456, 'icon-star-2', '0xe9c7', ''),
(457, 'icon-user-2', '0xe9c8', ''),
(458, 'icon-user-woman', '0xe9c9', ''),
(459, 'icon-user-pair', '0xe9ca', ''),
(460, 'icon-video-alt', '0xe9cb', ''),
(461, 'icon-videocam', '0xe9cc', ''),
(462, 'icon-videocam-alt', '0xe9cd', ''),
(463, 'icon-camera-2', '0xe9ce', ''),
(464, 'icon-th-1', '0xe9cf', ''),
(465, 'icon-th-list-1', '0xe9d0', ''),
(466, 'icon-ok-2', '0xe9d1', ''),
(467, 'icon-cancel-3', '0xe9d2', ''),
(468, 'icon-cancel-circle-1', '0xe9d3', ''),
(469, 'icon-plus-1', '0xe9d4', ''),
(470, 'icon-eye-4', '0xe9d5', ''),
(471, 'icon-tag-4', '0xe9d6', ''),
(472, 'icon-thumbs-up-1', '0xe9d7', ''),
(473, 'icon-thumbs-down-1', '0xe9d8', ''),
(474, 'icon-download-2', '0xe9d9', ''),
(475, 'icon-export-1', '0xe9da', ''),
(476, 'icon-pencil-1', '0xe9db', ''),
(477, 'icon-pencil-alt-1', '0xe9dc', ''),
(478, 'icon-edit-1', '0xe9dd', ''),
(479, 'icon-chat-2', '0xe9de', ''),
(480, 'icon-print-1', '0xe9df', ''),
(481, 'icon-bell-1', '0xe9e0', ''),
(482, 'icon-attention-1', '0xe9e1', ''),
(483, 'icon-info-1', '0xe9e2', ''),
(484, 'icon-question', '0xe9e3', ''),
(485, 'icon-location-2', '0xe9e4', ''),
(486, 'icon-trash-2', '0xe9e5', ''),
(487, 'icon-rss-1', '0xe9e6', ''),
(488, 'icon-wrench-2', '0xe9e7', ''),
(489, 'icon-basket-1', '0xe9e8', ''),
(490, 'icon-basket-alt', '0xe9e9', ''),
(491, 'icon-calendar-3', '0xe9ea', ''),
(492, 'icon-calendar-alt-1', '0xe9eb', ''),
(493, 'icon-volume-off-2', '0xe9ec', ''),
(494, 'icon-volume-down', '0xe9ed', ''),
(495, 'icon-volume-up-1', '0xe9ee', ''),
(496, 'icon-bullhorn', '0xe9ef', ''),
(497, 'icon-clock-2', '0xe9f0', ''),
(498, 'icon-clock-alt', '0xe9f1', ''),
(499, 'icon-stop-2', '0xe9f2', ''),
(500, 'icon-resize-full-2', '0xe9f3', ''),
(501, 'icon-resize-small-1', '0xe9f4', ''),
(502, 'icon-zoom-in-2', '0xe9f5', ''),
(503, 'icon-zoom-out-2', '0xe9f6', ''),
(504, 'icon-right-dir', '0xe9f7', ''),
(505, 'icon-up-dir', '0xe9f8', ''),
(506, 'icon-down-1', '0xe9f9', ''),
(507, 'icon-up-2', '0xe9fa', ''),
(508, 'icon-cw-1', '0xe9fb', ''),
(509, 'icon-signal-1', '0xe9fc', ''),
(510, 'icon-award-1', '0xe9fd', ''),
(511, 'icon-mobile-2', '0xe9fe', ''),
(512, 'icon-mobile-alt', '0xe9ff', ''),
(513, 'icon-tablet-1', '0xea00', ''),
(514, 'icon-ipod', '0xea01', ''),
(515, 'icon-cd-1', '0xea02', ''),
(516, 'icon-grid', '0xea03', ''),
(517, 'icon-book-2', '0xea04', ''),
(518, 'icon-easel', '0xea05', ''),
(519, 'icon-globe-2', '0xea06', ''),
(520, 'icon-chart-1', '0xea07', ''),
(521, 'icon-at-1', '0xea08', ''),
(522, 'icon-colon', '0xea09', ''),
(523, 'icon-semicolon', '0xea0a', ''),
(524, 'icon-squares', '0xea0b', ''),
(525, 'icon-money', '0xea0c', ''),
(526, 'icon-twitter-bird', '0xea0d', ''),
(527, 'icon-windy-rain-inv', '0xea0e', ''),
(528, 'icon-snow-inv', '0xea0f', ''),
(529, 'icon-snow-heavy-inv', '0xea10', ''),
(530, 'icon-hail-inv', '0xea11', ''),
(531, 'icon-clouds-inv', '0xea12', ''),
(532, 'icon-clouds-flash-inv', '0xea13', ''),
(533, 'icon-temperature', '0xea14', ''),
(534, 'icon-compass-2', '0xea15', ''),
(535, 'icon-na', '0xea16', ''),
(536, 'icon-celcius', '0xea17', ''),
(537, 'icon-fahrenheit', '0xea18', ''),
(538, 'icon-clouds-flash-alt', '0xea19', ''),
(539, 'icon-sun-inv-1', '0xea1a', ''),
(540, 'icon-moon-inv-1', '0xea1b', ''),
(541, 'icon-cloud-sun-inv', '0xea1c', ''),
(542, 'icon-cloud-moon-inv', '0xea1d', ''),
(543, 'icon-cloud-inv', '0xea1e', ''),
(544, 'icon-windy-inv', '0xea1f', ''),
(545, 'icon-sunrise', '0xea20', ''),
(546, 'icon-sun-2', '0xea21', ''),
(547, 'icon-moon-1', '0xea22', ''),
(548, 'icon-eclipse', '0xea23', ''),
(549, 'icon-mist', '0xea24', ''),
(550, 'icon-wind-1', '0xea25', ''),
(551, 'icon-snowflake', '0xea26', ''),
(552, 'icon-cloud-sun-1', '0xea27', ''),
(553, 'icon-cloud-moon', '0xea28', ''),
(554, 'icon-fog-sun', '0xea29', ''),
(555, 'icon-fog-moon', '0xea2a', ''),
(556, 'icon-fog-cloud', '0xea2b', ''),
(557, 'icon-fog', '0xea2c', ''),
(558, 'icon-cloud-3', '0xea2d', ''),
(559, 'icon-cloud-flash-1', '0xea2e', ''),
(560, 'icon-cloud-flash-alt', '0xea2f', ''),
(561, 'icon-windy-rain', '0xea30', ''),
(562, 'icon-snow-1', '0xea31', ''),
(563, 'icon-snow-alt', '0xea32', ''),
(564, 'icon-snow-heavy', '0xea33', ''),
(565, 'icon-hail', '0xea34', ''),
(566, 'icon-clouds', '0xea35', ''),
(567, 'icon-clouds-flash', '0xea36', ''),
(568, 'icon-mail-3', '0xea37', ''),
(569, 'icon-heart-3', '0xea38', ''),
(570, 'icon-star-3', '0xea39', ''),
(571, 'icon-star-empty', '0xea3a', ''),
(572, 'icon-ok-3', '0xea3b', ''),
(573, 'icon-cancel-4', '0xea3c', ''),
(574, 'icon-plus-2', '0xea3d', ''),
(575, 'icon-help-circled', '0xea3e', ''),
(576, 'icon-help-circled-alt', '0xea3f', ''),
(577, 'icon-home-1', '0xea40', ''),
(578, 'icon-pencil-2', '0xea41', ''),
(579, 'icon-attention-2', '0xea42', ''),
(580, 'icon-attention-alt-1', '0xea43', ''),
(581, 'icon-mic-off', '0xea44', ''),
(582, 'icon-clock-3', '0xea45', ''),
(583, 'icon-stopwatch', '0xea46', ''),
(584, 'icon-hourglass', '0xea47', ''),
(585, 'icon-down-2', '0xea48', ''),
(586, 'icon-left-1', '0xea49', ''),
(587, 'icon-right-2', '0xea4a', ''),
(588, 'icon-right-bold-1', '0xea4b', ''),
(589, 'icon-up-bold-1', '0xea4c', ''),
(590, 'icon-down-fat', '0xea4d', ''),
(591, 'icon-left-fat', '0xea4e', ''),
(592, 'icon-right-fat', '0xea4f', ''),
(593, 'icon-up-fat', '0xea50', ''),
(594, 'icon-flash', '0xea51', ''),
(595, 'icon-cloud-4', '0xea52', ''),
(596, 'icon-vector-pencil', '0xea53', ''),
(597, 'icon-at-2', '0xea54', ''),
(598, 'icon-female-1', '0xea55', ''),
(599, 'icon-male', '0xea56', ''),
(600, 'icon-king', '0xea57', ''),
(601, 'icon-anchor-1', '0xea58', ''),
(602, 'icon-aboveground-rail', '0xea59', ''),
(603, 'icon-airfield', '0xea5a', ''),
(604, 'icon-airport', '0xea5b', ''),
(605, 'icon-art-gallery', '0xea5c', ''),
(606, 'icon-bar', '0xea5d', ''),
(607, 'icon-baseball', '0xea5e', ''),
(608, 'icon-basketball', '0xea5f', ''),
(609, 'icon-beer-1', '0xea60', ''),
(610, 'icon-belowground-rail', '0xea61', ''),
(611, 'icon-bicycle-1', '0xea62', ''),
(612, 'icon-bus-1', '0xea63', ''),
(613, 'icon-cafe', '0xea64', ''),
(614, 'icon-campsite', '0xea65', ''),
(615, 'icon-cemetery', '0xea66', ''),
(616, 'icon-cinema', '0xea67', ''),
(617, 'icon-college', '0xea68', ''),
(618, 'icon-commerical-building', '0xea69', ''),
(619, 'icon-fast-food', '0xea6a', ''),
(620, 'icon-ferry', '0xea6b', ''),
(621, 'icon-fire-station', '0xea6c', ''),
(622, 'icon-football', '0xea6d', ''),
(623, 'icon-fuel', '0xea6e', ''),
(624, 'icon-garden', '0xea6f', ''),
(625, 'icon-giraffe', '0xea70', ''),
(626, 'icon-golf', '0xea71', ''),
(627, 'icon-grocery-store', '0xea72', ''),
(628, 'icon-harbor', '0xea73', ''),
(629, 'icon-heliport', '0xea74', ''),
(630, 'icon-hospital-1', '0xea75', ''),
(631, 'icon-industrial-building', '0xea76', ''),
(632, 'icon-library', '0xea77', ''),
(633, 'icon-lodging', '0xea78', ''),
(634, 'icon-london-underground', '0xea79', ''),
(635, 'icon-minefield', '0xea7a', ''),
(636, 'icon-pitch', '0xea7b', ''),
(637, 'icon-police', '0xea7c', ''),
(638, 'icon-post', '0xea7d', ''),
(639, 'icon-prison', '0xea7e', ''),
(640, 'icon-rail', '0xea7f', ''),
(641, 'icon-religious-christian', '0xea80', ''),
(642, 'icon-religious-islam', '0xea81', ''),
(643, 'icon-religious-jewish', '0xea82', ''),
(644, 'icon-restaurant', '0xea83', ''),
(645, 'icon-roadblock', '0xea84', ''),
(646, 'icon-school', '0xea85', ''),
(647, 'icon-shop', '0xea86', ''),
(648, 'icon-skiing', '0xea87', ''),
(649, 'icon-soccer', '0xea88', ''),
(650, 'icon-swimming', '0xea89', ''),
(651, 'icon-tennis', '0xea8a', ''),
(652, 'icon-theatre', '0xea8b', ''),
(653, 'icon-tree-1', '0xea8c', ''),
(654, 'icon-tree-2', '0xea8d', ''),
(655, 'icon-warehouse', '0xea8e', ''),
(656, 'icon-duckduckgo', '0xea8f', ''),
(657, 'icon-aim', '0xea90', ''),
(658, 'icon-delicious', '0xea91', ''),
(659, 'icon-paypal', '0xea92', ''),
(660, 'icon-flattr', '0xea93', ''),
(661, 'icon-android-1', '0xea94', ''),
(662, 'icon-eventful', '0xea95', ''),
(663, 'icon-smashmag', '0xea96', ''),
(664, 'icon-gplus-1', '0xea97', ''),
(665, 'icon-wikipedia', '0xea98', ''),
(666, 'icon-lanyrd', '0xea99', ''),
(667, 'icon-calendar-5', '0xea9a', ''),
(668, 'icon-stumbleupon', '0xea9b', ''),
(669, 'icon-fivehundredpx', '0xea9c', ''),
(670, 'icon-pinterest', '0xea9d', ''),
(671, 'icon-bitcoin', '0xea9e', ''),
(672, 'icon-w3c', '0xea9f', ''),
(673, 'icon-call', '0xeaa0', ''),
(674, 'icon-grooveshark', '0xeaa1', ''),
(675, 'icon-ninetyninedesigns', '0xeaa2', ''),
(676, 'icon-forrst', '0xeaa3', ''),
(677, 'icon-digg', '0xeaa4', ''),
(678, 'icon-spotify', '0xeaa5', ''),
(679, 'icon-reddit-1', '0xeaa6', ''),
(680, 'icon-guest', '0xeaa7', ''),
(681, 'icon-gowalla', '0xeaa8', ''),
(682, 'icon-appstore', '0xeaa9', ''),
(683, 'icon-blogger', '0xeaaa', ''),
(684, 'icon-cc', '0xeaab', ''),
(685, 'icon-dribbble-2', '0xeaac', ''),
(686, 'icon-evernote', '0xeaad', ''),
(687, 'icon-flickr-2', '0xeaae', ''),
(688, 'icon-google', '0xeaaf', ''),
(689, 'icon-viadeo', '0xeab0', ''),
(690, 'icon-linkedin-1', '0xeab1', ''),
(691, 'icon-meetup', '0xeab2', ''),
(692, 'icon-vk', '0xeab3', ''),
(693, 'icon-plancast', '0xeab4', ''),
(694, 'icon-disqus', '0xeab5', ''),
(695, 'icon-rss-2', '0xeab6', ''),
(696, 'icon-skype-1', '0xeab7', ''),
(697, 'icon-twitter-2', '0xeab8', ''),
(698, 'icon-youtube-1', '0xeab9', ''),
(699, 'icon-vimeo-2', '0xeaba', ''),
(700, 'icon-windows', '0xeabb', ''),
(701, 'icon-xing', '0xeabc', ''),
(702, 'icon-yahoo', '0xeabd', ''),
(703, 'icon-chrome', '0xeabe', ''),
(704, 'icon-email', '0xeabf', ''),
(705, 'icon-macstore', '0xeac0', ''),
(706, 'icon-myspace', '0xeac1', ''),
(707, 'icon-cloudapp', '0xeac2', ''),
(708, 'icon-dropbox', '0xeac3', ''),
(709, 'icon-ebay', '0xeac4', ''),
(710, 'icon-facebook-3', '0xeac5', ''),
(711, 'icon-github-2', '0xeac6', ''),
(712, 'icon-github-circled-2', '0xeac7', ''),
(713, 'icon-googleplay', '0xeac8', ''),
(714, 'icon-itunes', '0xeac9', ''),
(715, 'icon-plurk', '0xeaca', ''),
(716, 'icon-songkick', '0xeacb', ''),
(717, 'icon-lastfm-2', '0xeacc', ''),
(718, 'icon-gmail', '0xeacd', ''),
(719, 'icon-pinboard', '0xeace', ''),
(720, 'icon-openid', '0xeacf', ''),
(721, 'icon-quora', '0xead0', ''),
(722, 'icon-soundcloud-1', '0xead1', ''),
(723, 'icon-tumblr-1', '0xead2', ''),
(724, 'icon-intensedebate', '0xead3', ''),
(725, 'icon-eventbrite', '0xead4', ''),
(726, 'icon-scribd', '0xead5', ''),
(727, 'icon-posterous', '0xead6', ''),
(728, 'icon-stripe', '0xead7', ''),
(729, 'icon-opentable', '0xead8', ''),
(730, 'icon-cart', '0xead9', ''),
(731, 'icon-print-3', '0xeada', ''),
(732, 'icon-angellist', '0xeadb', ''),
(733, 'icon-instagram-1', '0xeadc', ''),
(734, 'icon-dwolla', '0xeadd', ''),
(735, 'icon-appnet', '0xeade', ''),
(736, 'icon-statusnet', '0xeadf', ''),
(737, 'icon-acrobat', '0xeae0', ''),
(738, 'icon-drupal-1', '0xeae1', ''),
(739, 'icon-buffer', '0xeae2', ''),
(740, 'icon-pocket', '0xeae3', ''),
(741, 'icon-stackoverflow', '0xeae4', ''),
(742, 'icon-hackernews', '0xeae5', ''),
(743, 'icon-lkdto', '0xeae6', ''),
(744, 'icon-facebook-4', '0xeae7', ''),
(745, 'icon-facebook-rect-1', '0xeae8', ''),
(746, 'icon-twitter-3', '0xeae9', ''),
(747, 'icon-twitter-bird-1', '0xeaea', ''),
(748, 'icon-github-3', '0xeaeb', ''),
(749, 'icon-yandex-rect', '0xeaec', ''),
(750, 'icon-blogger-1', '0xeaed', ''),
(751, 'icon-blogger-rect', '0xeaee', ''),
(752, 'icon-instagram-filled', '0xeaef', ''),
(753, 'icon-box-2', '0xeaf0', ''),
(754, 'icon-box-rect', '0xeaf1', ''),
(755, 'icon-glass-1', '0xeaf2', ''),
(756, 'icon-music-2', '0xeaf3', ''),
(757, 'icon-search-4', '0xeaf4', ''),
(758, 'icon-search-circled', '0xeaf5', ''),
(759, 'icon-mail-4', '0xeaf6', ''),
(760, 'icon-mail-circled', '0xeaf7', ''),
(761, 'icon-heart-4', '0xeaf8', ''),
(762, 'icon-heart-circled', '0xeaf9', ''),
(763, 'icon-heart-empty-1', '0xeafa', ''),
(764, 'icon-star-4', '0xeafb', ''),
(765, 'icon-star-circled', '0xeafc', ''),
(766, 'icon-star-empty-1', '0xeafd', ''),
(767, 'icon-user-4', '0xeafe', ''),
(768, 'icon-group', '0xeaff', ''),
(769, 'icon-group-circled', '0xeb00', ''),
(770, 'icon-torso', '0xeb01', ''),
(771, 'icon-video-2', '0xeb02', ''),
(772, 'icon-video-chat', '0xeb03', ''),
(773, 'icon-picture-2', '0xeb04', ''),
(774, 'icon-camera-4', '0xeb05', ''),
(775, 'icon-photo', '0xeb06', ''),
(776, 'icon-photo-circled', '0xeb07', ''),
(777, 'icon-th-large-1', '0xeb08', ''),
(778, 'icon-th-2', '0xeb09', ''),
(779, 'icon-th-list-2', '0xeb0a', ''),
(780, 'icon-view-mode', '0xeb0b', ''),
(781, 'icon-ok-4', '0xeb0c', ''),
(782, 'icon-ok-circled-1', '0xeb0d', ''),
(783, 'icon-ok-circled2', '0xeb0e', ''),
(784, 'icon-cancel-5', '0xeb0f', ''),
(785, 'icon-cancel-circled-1', '0xeb10', ''),
(786, 'icon-cancel-circled2', '0xeb11', ''),
(787, 'icon-plus-3', '0xeb12', ''),
(788, 'icon-plus-circled', '0xeb13', ''),
(789, 'icon-help-circled-1', '0xeb14', ''),
(790, 'icon-info-circled-1', '0xeb15', ''),
(791, 'icon-home-2', '0xeb16', ''),
(792, 'icon-home-circled', '0xeb17', ''),
(793, 'icon-website', '0xeb18', ''),
(794, 'icon-website-circled', '0xeb19', ''),
(795, 'icon-attach-3', '0xeb1a', ''),
(796, 'icon-attach-circled', '0xeb1b', ''),
(797, 'icon-lock-3', '0xeb1c', ''),
(798, 'icon-lock-circled', '0xeb1d', ''),
(799, 'icon-lock-open-4', '0xeb1e', ''),
(800, 'icon-lock-open-alt-1', '0xeb1f', ''),
(801, 'icon-eye-6', '0xeb20', ''),
(802, 'icon-eye-off-1', '0xeb21', ''),
(803, 'icon-tag-5', '0xeb22', ''),
(804, 'icon-tags-1', '0xeb23', ''),
(805, 'icon-bookmark-1', '0xeb24', ''),
(806, 'icon-thumbs-up-2', '0xeb25', ''),
(807, 'icon-thumbs-down-2', '0xeb26', ''),
(808, 'icon-download-3', '0xeb27', ''),
(809, 'icon-download-alt', '0xeb28', ''),
(810, 'icon-upload-2', '0xeb29', ''),
(811, 'icon-share-1', '0xeb2a', ''),
(812, 'icon-quote', '0xeb2b', ''),
(813, 'icon-quote-circled', '0xeb2c', ''),
(814, 'icon-export-3', '0xeb2d', ''),
(815, 'icon-pencil-3', '0xeb2e', ''),
(816, 'icon-pencil-circled', '0xeb2f', ''),
(817, 'icon-edit-2', '0xeb30', ''),
(818, 'icon-edit-circled', '0xeb31', ''),
(819, 'icon-edit-alt', '0xeb32', ''),
(820, 'icon-print-4', '0xeb33', ''),
(821, 'icon-retweet-2', '0xeb34', ''),
(822, 'icon-comment-4', '0xeb35', ''),
(823, 'icon-exclamation', '0xeb36', ''),
(824, 'icon-error', '0xeb37', ''),
(825, 'icon-error-alt', '0xeb38', ''),
(826, 'icon-location-4', '0xeb39', ''),
(827, 'icon-location-circled', '0xeb3a', ''),
(828, 'icon-compass-3', '0xeb3b', ''),
(829, 'icon-compass-circled', '0xeb3c', ''),
(830, 'icon-trash-4', '0xeb3d', ''),
(831, 'icon-trash-circled', '0xeb3e', ''),
(832, 'icon-doc-3', '0xeb3f', ''),
(833, 'icon-doc-circled', '0xeb40', ''),
(834, 'icon-doc-new', '0xeb41', ''),
(835, 'icon-doc-new-circled', '0xeb42', ''),
(836, 'icon-folder-3', '0xeb43', ''),
(837, 'icon-folder-circled', '0xeb44', ''),
(838, 'icon-folder-close', '0xeb45', ''),
(839, 'icon-folder-open-1', '0xeb46', ''),
(840, 'icon-cog-2', '0xeb47', ''),
(841, 'icon-cog-circled', '0xeb48', ''),
(842, 'icon-cogs', '0xeb49', ''),
(843, 'icon-wrench-3', '0xeb4a', ''),
(844, 'icon-wrench-circled', '0xeb4b', ''),
(845, 'icon-basket-2', '0xeb4c', ''),
(846, 'icon-basket-circled', '0xeb4d', ''),
(847, 'icon-calendar-6', '0xeb4e', ''),
(848, 'icon-calendar-circled', '0xeb4f', ''),
(849, 'icon-mic-3', '0xeb50', ''),
(850, 'icon-mic-circled', '0xeb51', ''),
(851, 'icon-volume-off-3', '0xeb52', ''),
(852, 'icon-volume-down-1', '0xeb53', ''),
(853, 'icon-volume-1', '0xeb54', ''),
(854, 'icon-volume-up-2', '0xeb55', ''),
(855, 'icon-headphones-1', '0xeb56', ''),
(856, 'icon-clock-4', '0xeb57', ''),
(857, 'icon-block-2', '0xeb58', ''),
(858, 'icon-resize-full-3', '0xeb59', ''),
(859, 'icon-resize-full-alt-1', '0xeb5a', ''),
(860, 'icon-resize-small-2', '0xeb5b', ''),
(861, 'icon-resize-vertical-1', '0xeb5c', ''),
(862, 'icon-resize-horizontal-1', '0xeb5d', ''),
(863, 'icon-move-3', '0xeb5e', ''),
(864, 'icon-zoom-in-4', '0xeb5f', ''),
(865, 'icon-zoom-out-4', '0xeb60', ''),
(866, 'icon-down-open-1', '0xeb61', ''),
(867, 'icon-left-open-2', '0xeb62', ''),
(868, 'icon-right-open-2', '0xeb63', ''),
(869, 'icon-up-open-2', '0xeb64', ''),
(870, 'icon-down-3', '0xeb65', ''),
(871, 'icon-left-2', '0xeb66', ''),
(872, 'icon-right-3', '0xeb67', ''),
(873, 'icon-up-3', '0xeb68', ''),
(874, 'icon-up-circled-1', '0xeb69', ''),
(875, 'icon-down-hand', '0xeb6a', ''),
(876, 'icon-left-hand', '0xeb6b', ''),
(877, 'icon-right-hand', '0xeb6c', ''),
(878, 'icon-up-hand', '0xeb6d', ''),
(879, 'icon-cw-2', '0xeb6e', ''),
(880, 'icon-cw-circled', '0xeb6f', ''),
(881, 'icon-arrows-cw-1', '0xeb70', ''),
(882, 'icon-shuffle-1', '0xeb71', ''),
(883, 'icon-play-3', '0xeb72', ''),
(884, 'icon-play-circled', '0xeb73', ''),
(885, 'icon-play-circled2', '0xeb74', ''),
(886, 'icon-stop-4', '0xeb75', ''),
(887, 'icon-stop-circled', '0xeb76', ''),
(888, 'icon-pause-3', '0xeb77', ''),
(889, 'icon-pause-circled', '0xeb78', ''),
(890, 'icon-record-1', '0xeb79', ''),
(891, 'icon-fast-backward-2', '0xeb7a', ''),
(892, 'icon-fast-forward-2', '0xeb7b', ''),
(893, 'icon-forward', '0xeb7c', ''),
(894, 'icon-forward-circled', '0xeb7d', ''),
(895, 'icon-step-backward', '0xeb7e', ''),
(896, 'icon-step-forward', '0xeb7f', ''),
(897, 'icon-target-2', '0xeb80', ''),
(898, 'icon-signal-2', '0xeb81', ''),
(899, 'icon-desktop-1', '0xeb82', ''),
(900, 'icon-desktop-circled', '0xeb83', ''),
(901, 'icon-laptop-1', '0xeb84', ''),
(902, 'icon-laptop-circled', '0xeb85', ''),
(903, 'icon-network', '0xeb86', ''),
(904, 'icon-inbox-1', '0xeb87', ''),
(905, 'icon-inbox-circled', '0xeb88', ''),
(906, 'icon-inbox-alt', '0xeb89', ''),
(907, 'icon-globe-4', '0xeb8a', ''),
(908, 'icon-flight-1', '0xeb8b', ''),
(909, 'icon-leaf-1', '0xeb8c', ''),
(910, 'icon-font', '0xeb8d', ''),
(911, 'icon-fontsize-1', '0xeb8e', ''),
(912, 'icon-bold', '0xeb8f', ''),
(913, 'icon-italic', '0xeb90', ''),
(914, 'icon-text-height', '0xeb91', ''),
(915, 'icon-text-width', '0xeb92', ''),
(916, 'icon-align-left', '0xeb93', ''),
(917, 'icon-align-center', '0xeb94', ''),
(918, 'icon-align-right', '0xeb95', ''),
(919, 'icon-align-justify', '0xeb96', ''),
(920, 'icon-list-2', '0xeb97', ''),
(921, 'icon-indent-left-1', '0xeb98', ''),
(922, 'icon-indent-right-1', '0xeb99', ''),
(923, 'icon-briefcase-1', '0xeb9a', ''),
(924, 'icon-off', '0xeb9b', ''),
(925, 'icon-braille', '0xeb9c', ''),
(926, 'icon-book-3', '0xeb9d', ''),
(927, 'icon-adjust', '0xeb9e', ''),
(928, 'icon-tint', '0xeb9f', ''),
(929, 'icon-check', '0xeba0', ''),
(930, 'icon-check-empty', '0xeba1', ''),
(931, 'icon-asterisk', '0xeba2', ''),
(932, 'icon-gift-1', '0xeba3', ''),
(933, 'icon-fire-1', '0xeba4', ''),
(934, 'icon-magnet', '0xeba5', ''),
(935, 'icon-chart-2', '0xeba6', ''),
(936, 'icon-chart-circled', '0xeba7', ''),
(937, 'icon-credit-card-1', '0xeba8', ''),
(938, 'icon-megaphone', '0xeba9', ''),
(939, 'icon-clipboard-1', '0xebaa', ''),
(940, 'icon-hdd', '0xebab', ''),
(941, 'icon-key-2', '0xebac', ''),
(942, 'icon-gauge', '0xebad', ''),
(943, 'icon-smiley', '0xebae', ''),
(944, 'icon-smiley-circled', '0xebaf', ''),
(945, 'icon-address-book-1', '0xebb0', ''),
(946, 'icon-address-book-alt', '0xebb1', ''),
(947, 'icon-asl', '0xebb2', ''),
(948, 'icon-glasses', '0xebb3', ''),
(949, 'icon-hearing-impaired', '0xebb4', ''),
(950, 'icon-iphone-home', '0xebb5', ''),
(951, 'icon-person', '0xebb6', ''),
(952, 'icon-adult', '0xebb7', ''),
(953, 'icon-child-1', '0xebb8', ''),
(954, 'icon-blind', '0xebb9', ''),
(955, 'icon-guidedog', '0xebba', ''),
(956, 'icon-accessibility', '0xebbb', ''),
(957, 'icon-universal-access', '0xebbc', ''),
(958, 'icon-male-1', '0xebbd', ''),