-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWired-News-Blogger-Template-imamuddinwp.com.xml
More file actions
2458 lines (2152 loc) · 172 KB
/
Wired-News-Blogger-Template-imamuddinwp.com.xml
File metadata and controls
2458 lines (2152 loc) · 172 KB
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:css='false' b:defaultwidgetversion='2' b:layoutsVersion='3' b:responsive='true' b:templateVersion='1.0.0' expr:class='data:blog.languageDirection' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<b:if cond='data:view.isMultipleItems'>
<b:if cond='data:view.isHomepage'>
<!--[ Homepage title ]-->
<title><data:blog.title.escaped/></title>
<b:elseif cond='data:view.search.query'/>
<!--[ Search title ]-->
<title><data:messages.search/>: <data:view.search.query/></title>
<b:elseif cond='data:view.search.label'/>
<!--[ Label title ]-->
<title><data:blog.pageName.escaped/> - <data:blog.title.escaped/></title>
<b:elseif cond='data:view.isArchive'/>
<!--[ Archive title ]-->
<title>Blog archive in: <data:blog.pageName.escaped/></title>
<b:else/>
<title>Blog: <data:blog.title.escaped/></title>
</b:if>
<b:elseif cond='data:view.isError'/>
<!--[ Error title ]-->
<title>Error 404: Not Found</title>
<b:else/>
<!--[ SingleItem title ]-->
<title><data:blog.pageName.escaped/> - <data:blog.title.escaped/></title>
</b:if>
<!--[ Meta for browser ]-->
<meta charset='UTF-8'/>
<meta content='IE=edge' http-equiv='X-UA-Compatible'/>
<meta content='max-image-preview:large' name='robots'/>
<!-- Link Canonical -->
<link expr:href='data:blog.url.canonical' rel='canonical'/>
<!--<b:if cond='data:view.url == data:view.url params { amp: "1" }'>
<link expr:href='data:view.url' rel='alternate'/>
<b:else/>
<link expr:href='data:view.url + "?m=1"' rel='alternate'/>
<link expr:href='data:view.url params { amp: "1" }' rel='amphtml'/>
</b:if>-->
<b:if cond='!data:view.isError'>
<!--[ Browser data, description and keyword ]-->
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription.escaped' name='description'/>
<b:elseif cond='data:view.isSingleItem'/>
<meta expr:content='data:post.snippet.escaped snippet { length: 147, links: false, linebreaks: false, ellipsis: false }' name='description'/>
<b:else/>
<meta expr:content='data:blog.pageName.escaped ? data:blog.pageName.escaped : data:blog.title' name='description'/>
</b:if>
<meta expr:content='data:blog.title.escaped + ", " + data:blog.pageName.escaped + ", Keyword_1, Keyword_2, Keyword_3 "' name='keywords'/>
<b:tag cond='data:view.isPost' expr:href='resizeImage(data:blog.postImageUrl, 0)' name='link' rel='image_src'/>
<!--[ Generator and rrs ]-->
<meta content='blogger' name='generator'/>
<link expr:href='data:blog.homepageUrl.canonical + "feeds/posts/default"' expr:title='data:blog.title + " » Atom"' rel='alternate' type='application/atom+xml'/>
<link expr:href='data:blog.homepageUrl.canonical + "feeds/posts/default?alt=rss"' expr:title='data:blog.title + " » Feed"' rel='alternate' type='application/rss+xml'/>
<link expr:href='data:blog.homepageUrl.canonical + "feeds/comments/default?alt=rss"' expr:title='data:blog.title + " » Comments Feed"' rel='alternate' type='application/rss+xml'/>
<!--[ Theme Color ]-->
<meta expr:content='data:skin.vars.themeColor' name='theme-color'/>
<meta expr:content='data:skin.vars.themeColor' name='msapplication-navbutton-color'/>
<meta expr:content='data:skin.vars.themeColor' name='apple-mobile-web-app-status-bar-style'/>
<meta expr:content='yes' name='apple-mobile-web-app-capable'/>
<!--[ Favicon ]-->
<link expr:href='data:blog.blogspotFaviconUrl' rel='apple-touch-icon' sizes='120x120'/>
<link expr:href='data:blog.blogspotFaviconUrl' rel='apple-touch-icon' sizes='152x152'/>
<link expr:href='data:blog.blogspotFaviconUrl' rel='icon' type='image/x-icon'/>
<link expr:href='data:blog.blogspotFaviconUrl' rel='shortcut icon' type='image/x-icon'/>
<!--[ Open graph ]-->
<meta expr:content='data:blog.pageName.escaped ? data:blog.pageName.escaped : data:blog.title.escaped' property='og:title'/>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>
<meta expr:content='data:blog.title.escaped' property='og:site_name'/>
<b:if cond='data:view.isMultipleItems'>
<meta content='website' property='og:type'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription.escaped' property='og:description'/>
<b:else/>
<meta expr:content='data:blog.pageName.escaped ? data:blog.pageName.escaped : data:blog.title' property='og:description'/>
</b:if>
<b:else/>
<meta content='article' property='og:type'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription.escaped' property='og:description'/>
<b:else/>
<meta expr:content='data:post.snippet.escaped snippet { length: 147, links: false, linebreaks: false, ellipsis: false }' property='og:description'/>
</b:if>
</b:if>
<meta expr:content='data:blog.pageName.escaped ? data:blog.pageName.escaped : data:blog.title.escaped' property='og:image:alt'/>
<b:if cond='data:blog.postImageUrl'>
<meta expr:content='resizeImage(data:blog.postImageUrl, 0)' property='og:image'/>
<b:else/>
<meta content='Add_your_image_url_here' property='og:image'/>
</b:if>
<!--[ Twitter Card ]-->
<meta expr:content='data:blog.pageName.escaped ? data:blog.pageName.escaped : data:blog.title.escaped' name='twitter:title'/>
<meta expr:content='data:blog.canonicalUrl' name='twitter:url'/>
<b:if cond='data:view.isMultipleItems'>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription.escaped' name='twitter:description'/>
<b:else/>
<meta expr:content='data:blog.pageName.escaped ? data:blog.pageName.escaped : data:blog.title' name='twitter:description'/>
</b:if>
<b:else/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription.escaped' name='twitter:description'/>
<b:else/>
<meta expr:content='data:post.snippet.escaped snippet { length: 147, links: false, linebreaks: false, ellipsis: false }' name='twitter:description'/>
</b:if>
</b:if>
<meta content='summary_large_image' name='twitter:card'/>
<meta expr:content='data:blog.pageName.escaped ? data:blog.pageName.escaped : data:blog.title.escaped' name='twitter:image:alt'/>
<b:if cond='data:blog.postImageUrl'>
<meta expr:content='resizeImage(data:blog.postImageUrl, 0)' name='twitter:image:src'/>
<b:else/>
<meta content='Add_your_image_url_here' name='twitter:image:src'/>
</b:if>
<!-- Site Verification -->
<meta content='Google-verification-tag' name='google-site-verification'/>
<meta content='Bing-verfication-tag' name='msvalidate.01'/>
</b:if>
<meta content='width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1' name='viewport'/>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js' type='text/javascript'/>
<link href='https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' rel='stylesheet'/>
<b:if cond='data:blog.pageType != "error_page"'>
<script type='application/ld+json'>{ "@context": "http://schema.org", "@type": "WebSite", "@id": "#website", "url": "<data:blog.homepageUrl/>", "potentialAction": { "@type": "SearchAction", "target": "<data:blog.homepageUrl/>search?q={search_term}", "query-input": "required name=search_term" } }</script>
</b:if>
<b:skin version='1.3.0'><![CDATA[
/******************************
Name : WiredNews Version : 3.0(Update)
Demo : https://wirednewsdemo.blogspot.com/
Type : Premium
Designer : Nikz Naveed
Website : www.imamuddinwp.com
********************************
NOTE : This theme is premium (paid).
You can only get it by purchasing officially.
If you get it for free through any method, that means you are using it illegally.
********************************/
/*
<!-- Variable definitions -->
<Variable name="followByEmail" description="Follow By Email Text" type="string" default="Get all latest content delivered straight to your inbox." value="Get all latest content delivered straight to your inbox."/>
<Group description="Theme Colors" selector="body">
<Variable name="main.color" description="Theme Color" type="color" default="#A80C0D" value="#A80C0D"/>
<Variable name="dark.color" description="Dark Color" type="color" default="#111111" value="#000000"/>
<Variable name="menu.bg" description="Menu Background" type="color" default="$(main.color)" value="#A80C0D"/>
<Variable name="title.color" description="Title Color" type="color" default="#111111" value="#000000"/>
<Variable name="footer.color" description="Footer Color" type="color" default="#f1ffff" value="#fff6ee"/>
</Group>
<Group description="Theme Body" selector="body">
<Variable name="body.background.color" description="Body Background Color" type="color" default="#f8f8f8" value="#f7f7f7"/>
<Variable name="body.background" description="Background" type="background" color="$(body.background.color)" default="$(color) url() repeat fixed top left" value="$(color) url() repeat fixed top left"/>
<Variable name="body.text.color" description="Text Color" type="color" default="#656565" value="#5c5c5c"/>
<Variable name="body.link.color" description="Link Color" type="color" default="$(main.color)" value="#A80C0D"/>
</Group>
<!-- Extra Variables -->
<Variable name="body.text.font" description="Font" hideEditor="true" type="font" default="14px Open Sans, sans-serif" value="14px Open Sans, sans-serif"/>
<Variable name="posts.background.color" description="Post background color" hideEditor="true" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="tabs.font" description="Font 2" hideEditor="true" type="font" default="14px Open Sans, sans-serif" value="14px Open Sans, sans-serif"/>
<Variable name="posts.title.color" description="Post title color" hideEditor="true" type="color" default="#111111" value="#000000"/>
<Variable name="posts.text.color" description="Post text color" hideEditor="true" type="color" default="#656565" value="#5c5c5c"/>
<Variable name="posts.icons.color" description="Post icons color" hideEditor="true" type="color" default="$(main.color)" value="#f12020"/>
<Variable name="labels.background.color" description="Label background color" hideEditor="true" type="color" default="$(main.color)" value="#f12020"/>
*/
/* Font Body and Heading */
@font-face{font-family: 'Noto Sans';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/notosans/v11/o-0OIpQlx3QUlC5A4PNr4ARMQ_m87A.woff2) format('woff2'), url(https://fonts.gstatic.com/s/notosans/v11/o-0OIpQlx3QUlC5A4PNr4DRG.woff) format('woff')}
@font-face{font-family: 'Noto Sans';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/notosans/v11/o-0TIpQlx3QUlC5A4PNr4Az5ZuyDzW0.woff2) format('woff2'), url(https://fonts.gstatic.com/s/notosans/v11/o-0TIpQlx3QUlC5A4PNr4Az5ZtyH.woff) format('woff')}
@font-face{font-family: 'Noto Sans';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/notosans/v11/o-0IIpQlx3QUlC5A4PNr5TRA.woff2) format('woff2'), url(https://fonts.gstatic.com/s/notosans/v11/o-0IIpQlx3QUlC5A4PNb4Q.woff) format('woff')}
@font-face{font-family: 'Noto Sans';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/notosans/v11/o-0NIpQlx3QUlC5A4PNjXhFVZNyB.woff2) format('woff2'), url(https://fonts.gstatic.com/s/notosans/v11/o-0NIpQlx3QUlC5A4PNjXhFlYA.woff) format('woff')}
/* Source Code Font */
@font-face {font-family: 'Fira Mono';font-style: normal;font-weight: 400;font-display: swap;src: local('Fira Mono Regular'), local('FiraMono-Regular'), url(https://fonts.gstatic.com/s/firamono/v9/N0bX2SlFPv1weGeLZDtQIg.woff) format('woff'), url(https://fonts.gstatic.com/s/firamono/v9/N0bX2SlFPv1weGeLZDtgJv7S.woff2) format('woff2')}
/* New interface B - ver 3
----------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figure { margin: 0; padding: 0;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display:block;}
ins{text-decoration:underline}
del{text-decoration:line-through}
*, *:before, *:after, html {-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;}
table {margin:15px 0; font-family: arial, sans-serif; font-size:13px; border-collapse: collapse; width: 100%;}
td, th {border: 1px solid #eee; text-align: left; padding:8px 10px;}
tr:nth-child(odd) {background: #fff;}*{outline: none;}
caption {background: #eee; text-align:center; padding: 4px 10px 4px}
dl {margin: 0 0 20px 0}
dl dt {font-weight: bold}
dd {margin-left: 20px}
pre {margin: 20px 0; white-space: pre}
pre, code, tt {font: 13px 'andale mono', 'lucida console', monospace; line-height: 18px}
sup{ vertical-align: super; font-size:smaller; }
code{ font-family: 'Courier New', Courier, monospace; font-size:12px; color:#272727; }
a img{border: none;}
canvas,iframe,img,svg,video{vertical-align:middle;max-width:100%}
canvas,img,video{max-width:100%;height:auto}
ul ul, ol ol { padding: 0; }
input {font: 400 13.7777px Arial;}
ol, ul { padding: 0px; margin: 0; }
ol li { list-style-type: none; padding:0; }
ul li { list-style-type: none; padding: 0; }
/* Theme color change
----------------------------------------------- */
a,a:hover,.post-title a:hover, .sidebar-wrapper a:hover, .left-sidebar a:hover, #related-article h4 a:hover{color:$(main.color);}
.no-posts-message,.share-buttons li .sharing-platform-button:focus, .share-buttons li .sharing-platform-button:hover,.post-filter-message{background:$(main.color);}
h1, h2, h3, h4, h5, h6 {color: #555; font-family:'Noto Sans', sans-serif; font-weight:600; margin:0; line-height:1.6em; }
h1{font-size:1.6rem} h2{font-size:1.4rem} h3{font-size:1.3rem} h4{font-size:1.2rem} h5{font-size:1.1rem} h6{font-size:1rem}
.post-body h1, .post-body h2, .post-body h3, .post-body h4, .post-body h5, .post-body h6{line-height:1.5em; margin:1.5em 0 18px;}
a{ color: ; outline:none; text-decoration: none; transition: 0.3s; }
a:hover { color: ; text-decoration:none; }
body {background-color:#E5E5E5; color:#666; font:15px/25px 'Noto Sans', sans-serif; overflow-wrap: break-word; word-break: break-word; word-wrap: break-word; min-height:100vh; margin:0; padding:0;}
.vv{font-family:'Noto Sans Sinhala', sans-serif; }
.ct-wrapper {padding:0px 0px 0; position:relative; margin: 0px auto; max-width:1400px; }
.outer-wrapper {padding: 0px 22px; float:left; width:100%; background: #fff; }
.main-wrapper{word-wrap:break-word; float:left; width:100%; }
.sidebar-wrapper{float:right; width:300px; word-wrap:break-word; }
.left-sidebar{width:23%; margin-right:1.3em; float:left; }
.main-container{padding:18px 18px; background-color: #F8F8F8; border-bottom:1px dotted #ccc; width:calc(100% - 330px); float:left; }
.contained {margin: 0 auto; padding:0 0px; position: relative; clear:both; max-width:1160px;}
.clearfix::after {content: ""; clear: both; display: table; }
.t-uppercase{text-transform:uppercase; }
.t-center{text-align:center; }
.hidden {display: none;}
.bot-thirty{margin-bottom:25px !important; }
.bot-twenty{margin-bottom:20px !important; }
.bot-ten{margin-bottom:10px !important; }
.bot-five{margin-bottom:5px !important; }
.top-forty{margin-top:40px !important; }
.top-thirty{margin-top:30px !important; }
.top-twenty{margin-top:20px !important; }
.top-ten{margin-top:10px !important; }
.lef-thirty{margin-left:30px !important; }
.lef-twenty{margin-left:20px !important; }
.lef-ten{margin-left:10px !important; }
.rig-thirty{margin-right:30px !important; }
.rig-twenty{margin-right:20px !important; }
.rig-ten{margin-right:10px !important; }
.rig-five{margin-right:5px !important; }
.zero-margin{margin:0 !important;}
.marg-top{margin-top:30px}
.menu, .pagemenu, a.menu-btn{ }
.PopularPosts .post-title, .ContactForm .contact-form-button, .dingo h2, .ticker h3.recent-title{ }
.ct-wrapper, .crossy, .post, .sidebar-wrapper{}
.header-logo{ position:relative; float:left; width:auto; }
.header-logo .header-image-wrapper{display:block}
.header-logo img{max-width:240px; max-height:60px; }
.header-logo h1, .header-logo h2{color:$(main.color); font-size: 30px; line-height: 31px; letter-spacing: 1px; margin:0;}
.header-logo h1 a, .header-logo h2 a{color:$(main.color); }
.header-logo h1 a:hover, .header-logo h2 a:hover{opacity:.8; }
.header-logo p{margin:10px 0 0; }
.header-logo img:hover{opacity:.85;}
.header-wrapper{height:100px;padding:0 22px; border-top:2px solid $(main.color);background-color:#fff; display: flex; justify-content: space-between; align-items: center;}
.head-right {float: right; }
img{max-width:100%;}
.invisible {visibility: hidden;}
.color{background-image: -webkit-gradient(linear,right top,left top,from(#CD4033),to(#FFB100)); background-image: linear-gradient(to left,#CD4033,#FFB100);}
.clearboth { clear: both;}
.main-heading {position: absolute; clip: rect(1px,1px,1px,1px); padding: 0; border: 0; height: 1px; width: 1px; overflow: hidden;}
.blogger-logo, .svg-icon-24.blogger-logo {fill: #ff9800; opacity: 1;}
.item-control {display: none;}
.BLOG_mobile_video_class {display: none;}
.bg-photo {background-attachment: scroll !important;}
a.menu-btn { display: none; position:relative; float: left; padding:12px 4px 12px 40px; color:#fff; font-size:16px; }
.menu { float: left; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; transition: all 0.3s ease; }
.menu ul {padding: 0px; margin: 0px; list-style: none; position: relative; display: inline-table;}
.menu > li > ul.sub-menu {min-width: 10em; padding: 4px 0; background-color: #f4f4f4; border: 1px solid #CCC; }
.menu ul li { padding: 0px; z-index: 10; position:relative;}
.menu div ul > li { display: inline-block; }
.menu ul li a { display: block; color: #fff; font-size: 14.4px; font-weight:500; }
.menu ul li > a {padding: 12px 15px;}
.menu ul ul {position: absolute; top:100%; min-width: 180px; background-color: #fff; box-shadow: 0 5px 8px rgba(0, 0, 0, 0.25); z-index:9; visibility: hidden; opacity: 0; transform: translate(0,25px); transition: all 0.2s ease-out;}
.menu ul li:hover > ul {visibility: visible; opacity: 1; transform: translate(0,0);}
.menu ul ul > li { position: relative; display:unset;}
.menu ul ul ul { position: absolute; left: 100%; top:0; }
.menu ul ul > li a { padding: 8px 18px; font-size:14px; color:#555; text-transform:initial; }
.menu ul ul > li a:hover { background-color: $(main.color); color: #fff; }
.menu ul li a:hover{background-color:#343A40; color:#fff; }
.with-ul:after {border-color: #ddd transparent transparent; border-image: none; border-style: solid; border-width: 4px; content: ""; position: absolute; top: 50%; right:5px;}
.hamburger {float: left; width: 18px; height: 20px; position: absolute; left: 14px; top: 23px;}
.hamburger > div {position: relative; width: 100%; height: 2px; background: #fff; align-items: center; justify-content: center; transition: all 0.4s ease;}
.hamburger > div::before,.hamburger > div::after {content: ''; position: absolute; z-index: 1; top: -7px; width: 100%; height: 2px; background: inherit;}
.hamburger > div::after {top: 7px;}
.base1{background-color: #354058; height:60px; float: left; width: 100%;}
.base2{background-color: #ddd; float: left; width: 100%;}
.white{background:#E9EFF9; float: left; width: 100%;}
.sidebar-wrapper .widget, .left-sidebar .widget, .brute .widget{float:left; width:100%; margin-bottom: 15px;}
.sidebar-wrapper li, .left-sidebar li{border-bottom: 1px solid #ddd; margin: 0; padding: 7px 0 7px 7px; text-transform: capitalize;}
.sidebar-wrapper li:last-child, .footer li:last-child, .left-sidebar li:last-child{border-bottom:none !important; padding-bottom:0; }
.PopularPosts ul li:first-child, .left-sidebar ul li:first-child{padding-top:2px !important;}
.adshere{background:#eee; border:1px solid #ddd; float:left; width:100%; max-width:100%; height:90px; text-align:center; line-height:90px;}
.mt-ad{min-height:70px;display:flex;align-items:center;justify-content:center;font-size:13px;color:#989b9f;border:1px solid #e6e6e6;border-radius:3px} .mt-ad::before{content:attr(data-text)}
.dropCap{float:left;margin:2px 8px 0 0; font-size:55px;line-height:45px;opacity:.8}
blockquote, .cmC i[rel=quote]{position:relative;font-size:.97rem; opacity:.8;line-height:1.6em;margin-left:0;margin-right:0;padding:5px 20px;border-left:2px solid #e6e6e6;}
blockquote, details.sp{font-size:.93rem; padding:25px 25px 25px 45px; margin:1em 0; border:1px solid #989b9f;border-left:0;border-right:0;line-height:1.7em}
blockquote::before{content:'\201D';position:absolute;top:10px;left:0; font-size:60px;line-height:normal;opacity:.5}
details.sp{padding:20px 15px} details.sp summary{display:flex;justify-content:space-between;align-items:baseline} details.sp summary::after{content:attr(data-show);font-size:12px; opacity:.7;cursor:pointer} details.sp[open] summary::after{content:attr(data-hide)} details.toc a{color:#204ecf;}details.toc a:hover{text-decoration:underline} details.toc ol, details.toc ul{padding:0 20px; list-style-type:decimal;margin:0 !important;font-size:14px;} details.toc li ol, details.toc li ul{margin:5px 0 10px; list-style-type:lower-alpha}
details.toc li, details.toc li{padding:0 !important;}
table{margin:0 auto; font-size:14px;font-family:'Noto Sans', sans-serif;} table:not(.tr-caption-container){min-width:90%;border:1px solid #e6e6e6;border-radius:3px;overflow:hidden} table:not(.tr-caption-container) td{padding:16px} table:not(.tr-caption-container) tr:not(:last-child) td{border-bottom:1px solid #e6e6e6;} table:not(.tr-caption-container) tr:nth-child(2n+1) td{background:rgba(0,0,0,.01)} table th{padding:16px; text-align:inherit; border-bottom:1px solid #e6e6e6;} .table{display:block; overflow-y:hidden;overflow-x:auto;scroll-behavior:smooth}
.note{position:relative;padding:16px 20px 16px 50px; background:#e1f5fe;color:#3c4043; font-size:.85rem;font-family:'Noto Sans', sans-serif;;line-height:1.6em;border-radius:10px;overflow:hidden} .note::before{content:'';width:60px;height:60px;background:#81b4dc;display:block;border-radius:50%;position:absolute;top:-12px;left:-12px;opacity:.1} .note::after{content:'\002A';position:absolute;left:18px;top:16px; font-size:20px; min-width:15px;text-align:center} .note.wr{background:#ffdfdf;color:#48525c} .note.wr::before{background:#e65151} .note.wr::after{content:'\0021'}
.post-body p{margin:1.6em 0;} .showH{font-size:.93rem;font-family:'Noto Sans', sans-serif;;line-height:1.7em} details.ac{padding: 18px 0; border-bottom: 1px solid #e6e6e6;} details.ac summary{font-weight:700; display:flex;align-items:baseline; transition:all .1s ease;} details.ac summary::before{content:'\203A'; flex:0 0 25px;display:flex;align-items:center;justify-content:flex-start;padding:0 5px; font-weight:400;font-size:1.33rem;color:inherit} details.ac[open] summary{color:#1C74E9;} details.ac:not(.alt)[open] summary::before{transform:rotate(90deg);padding:0 0 0 5px;justify-content:center} details.ac.alt summary::before{content:'\002B'; padding:0 2px} details.ac.alt[open] summary::before{content:'\2212'} details.ac .aC{padding:0 18px;opacity:.9}
.pre{background:#f4f4f4;color:#2f3337; direction: ltr} .pre:not(.tb){position:relative;border-radius:3px;overflow:hidden;margin:1.7em auto;font-family:'Fira Mono', monospace;} .pre pre{margin:0;color:inherit;background:inherit} .pre:not(.tb)::before, .cmC i[rel=pre]::before{content:'</>';display:flex;justify-content:flex-end;position:absolute;right:0;top:0;width:100%;background:inherit;color:#656e77;font-size:10px;padding:0 10px;z-index:2;line-height:30px} .pre:not(.tb).html::before{content:'.html'} .pre:not(.tb).css::before{content:'.css'} .pre:not(.tb).js::before{content:'.js'} pre, .cmC i[rel=pre]{display:block;position:relative;font-family:'Fira Mono', monospace;;font-size:13px;line-height:1.6em;border-radius:3px;background:#f4f4f4;color:#2f3337;padding:30px 20px 20px;margin:1.7em auto; -moz-tab-size:2;tab-size:2;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none; overflow:auto;direction:ltr;white-space:pre} pre i{color:#015692;font-style:normal} pre i.block{color:#fff;background:#015692;} pre i.green{color:#54790d;} pre i.gray{color:#656e77;} pre i.red{color:#b75501;} pre i.blue{color:#015692;} code{display:inline;padding:5px;font-size:14px;border-radius:3px;line-height:inherit;color:#2f3337;background:#f2f3f5;font-family:'Fira Mono', monospace;} .pre.tb{border-radius:5px} .pre.tb pre{margin:0;background:inherit} .pre.tb .preH{font-size:13px;border-color:rgba(0,0,0,.05);margin:0} .pre.tb .preH >*{padding:13px 20px} .pre.tb .preH::after{content:'</>';font-size:10px;font-family:'Fira Mono', monospace;;color:#656e77;padding:15px;margin-left:auto} .pre.tb >:not(.preH){display:none} input[id*="1"]:checked ~ div[class*="C-1"], input[id*="2"]:checked ~ div[class*="C-2"], input[id*="3"]:checked ~ div[class*="C-3"], input[id*="4"]:checked ~ div[class*="C-4"]{display:block}
.tbHd{display:flex; border-bottom:1px solid #e6e6e6;margin-bottom:30px;font-size:14px;font-family:'Noto Sans', sans-serif;;line-height:1.6em; overflow-x:hidden;overflow-y:hidden;scroll-behavior:smooth;scroll-snap-type:x mandatory; -ms-overflow-style:none;-webkit-overflow-scrolling:touch} .tbHd >*{padding:12px 15px; border-bottom:1px solid transparent; transition:all .1s ease;;opacity:.6;white-space:nowrap; scroll-snap-align:start} .tbHd >*::before{content:attr(data-text)} .tbCn >*{display:none;width:100%} .tbCn >* p:first-child{margin-top:0} input[id*="1"]:checked ~ .tbHd label[for*="1"], input[id*="2"]:checked ~ .tbHd label[for*="2"], input[id*="3"]:checked ~ .tbHd label[for*="3"], input[id*="4"]:checked ~ .tbHd label[for*="4"]{border-color:#1C74E9;opacity:1} input[id*="1"]:checked ~ .tbCn div[class*="Text-1"], input[id*="2"]:checked ~ .tbCn div[class*="Text-2"], input[id*="3"]:checked ~ .tbCn div[class*="Text-3"], input[id*="4"]:checked ~ .tbCn div[class*="Text-4"]{display:block} .tbHd.stick{position:-webkit-sticky;position:sticky;top:60px;background:#1C74E9;}
.extL::after{content:''; width:14px;height:14px; display:inline-block;margin:0 5px; background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23989b9f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M13 11L21.2 2.80005'/><path d='M22 6.8V2H17.2'/><path d='M11 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22H15C20 22 22 20 22 15V13'/></svg>") center / 14px no-repeat}
.button{display:inline-flex;align-items:center; margin:10px 0;padding:12px 15px;outline:0;border:0; border-radius:3px;line-height:20px; color:#fffdfc; background:#1C74E9; font-size:15px;font-family:'Noto Sans', sans-serif;; white-space:nowrap;overflow:hidden;max-width:320px; transition:all .3s ease;} .button.ln{color:inherit;background:transparent; border:1px solid #767676;} .button.ln:hover, .zbutton.ln:hover{border-color:#1C74E9;box-shadow:0 0 0 1px #1C74E9 inset} .btnF{display:flex;justify-content:center; margin:10px 0;width:calc(100% + 12px);left:-6px;right:-6px;position:relative} .btnF >*{margin:0 6px} .dlBox{max-width:500px;background:#f1f1f0;border-radius:10px;padding:12px;margin:1.7em 0; display:flex;align-items:center; font-size:14px} .dlBox .fT{flex-shrink:0;display:flex;align-items:center;justify-content:center; width:45px;height:45px; padding:10px; background:rgba(0,0,0,.1);border-radius:5px} .dlBox .fT::before{content:attr(data-text);opacity:.7} .dlBox a{flex-shrink:0;margin:0;padding:10px 12px;border-radius:5px;font-size:13px} .dlBox a::after{content:attr(aria-label)} .dlBox .fN{flex-grow:1; width:calc(100% - 200px);padding:0 15px} .dlBox .fN >*{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis} .dlBox .fS{line-height:16px;font-size:12px;opacity:.8} /* Icon btn */ .icon{flex-shrink:0;display:inline-flex} .icon::before{content:'';width:18px;height:18px;background-size:18px;background-repeat:no-repeat;background-position:center} .icon::after{content:'';padding:0 6px} .icon.dl::before, .drK .button.ln .icon.dl::before, .drK .zbutton.ln .icon.dl::before{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fefefe' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'><polyline points='8 17 12 21 16 17'/><line x1='12' y1='12' x2='12' y2='21'/><path d='M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29'/></svg>")} .icon.demo::before{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fefefe' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'><path d='M7.39999 6.32003L15.89 3.49003C19.7 2.22003 21.77 4.30003 20.51 8.11003L17.68 16.6C15.78 22.31 12.66 22.31 10.76 16.6L9.91999 14.08L7.39999 13.24C1.68999 11.34 1.68999 8.23003 7.39999 6.32003Z'/><path d='M10.11 13.6501L13.69 10.0601'/></svg>")} .button.ln .icon.dl::before, .zbutton.ln .icon.dl::before{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2308102b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'><polyline points='8 17 12 21 16 17'/><line x1='12' y1='12' x2='12' y2='21'/><path d='M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29'/></svg>")}a:hover.button{opacity:.8;color:#fff;} a:hover.button.ln{color:#555;}
.videoYt{position:relative;padding-bottom:56.25%; overflow:hidden;border-radius:5px} .videoYt iframe{position:absolute;width:100%;height:100%;left:0;right:0} .lazyYt{background:#f4f4f4;position:relative;overflow:hidden;padding-top:56.25%;border-radius:5px} .lazyYt img{width:100%;top:-16.84%;left:0;opacity:.95} .lazyYt img, .lazyYt iframe, .lazyYt .play{position:absolute} .lazyYt iframe{width:100%;height:100%;bottom:0;right:0} .lazyYt .play{top:50%;left:50%; transform:translate3d(-50%,-50%,0); transition:all .5s ease;display:block;width:70px;height:70px;z-index:1} .lazyYt .play svg{width:inherit;height:inherit; background:#fff; fill:none;stroke-width:8} .lazyYt .play .c{stroke:rgba(255,255,255,.85);stroke-dasharray:650;stroke-dashoffset:650; transition:all .4s ease-in-out; opacity:.3} .lazyYt .play .t{stroke:#FF0000; opacity:.7; stroke-dasharray:240;stroke-dashoffset:480; transition:all .6s ease-in-out; transform:translateY(0)} .lazyYt .play:hover .t{animation:nudge .6s ease-in-out;-webkit-animation:nudge .6s ease-in-out} .lazyYt .play:hover .t, .lazyYt .play:hover .c{stroke-dashoffset:0; opacity:.7;stroke:#FF0000} .nAmp .lazyYt{display:none} .lazyYt svg{position: relative; right: 0px; background-color: rgba(255, 54, 112, 0.11); border-radius: 50% !important; animation: pulse-border-pink 1.5s linear infinite; }
.bulean{position:fixed; top:30%; right:-128px; background:#ef3f49; z-index:99999;
-webkit-transition: all 300ms ease-in-out; transition: all 300ms ease-in-out; }
.bulean a{padding: 0 15px 0 0; color:#fff; display: block; line-height: 45px; text-align: left; white-space: nowrap; }
.bulean i{line-height: 45px; font-size:16px; width: 50px; text-align: center; display: inline-block; }
.bulean a:hover{background:#F0515A; }
.bulean:hover{right:0px; }
.sidebar-wrapper h3, .left-sidebar h3{background-color: #394046; font-size: 15px; font-weight: 400; margin: 0 0 16px 0; padding: 6px 0 6px 0px; color: #fff; line-height: 25px; }
.sidebar-wrapper h3:before, .left-sidebar h3:before {font-family: fontawesome; content: "\f0f6"; color: #fff; font-size: 17px; padding: 10px 9px 11px 11px; margin-right: 6px; background-color:$(main.color); }
.naver-bg {background-color:$(main.color); float:left; width:100%; }
.post-body ol,.post-body ul { padding: 10px 0 20px; margin: 0 0 0 25px; text-align: left; }
.post-body ol li { list-style-type: decimal; padding:0 0 5px; }
.post-body ul li { list-style-type: square; padding: 0 0 5px; }
.post-body img{max-width:100%; height:auto;}
.post-body iframe {max-width: 100%;}
.post-body a[imageanchor="1"] {display: inline-block;}
.post-body{margin:0 0 20px;}
.bow{display: flex; flex-wrap: wrap; padding: 0; margin-left: -30px; }
.half, .brox {-moz-box-flex: 0; width: calc(100% / 2); padding-left: 30px; }
.third, .delate{-moz-box-flex: 0; width: calc(100% / 3); padding-left: 30px; }
.quart, .footer {-moz-box-flex: 0; width: calc(100% / 4); padding-left: 30px; }
.fifth {-moz-box-flex: 0; width: calc(100% / 5); padding-left: 30px; }
.post-header{margin:5px 0; text-transform:uppercase; font-weight:500; font-size:14px; color:#a1a1a1;}
.byline {margin-right: 1em;}
.byline:last-child {margin-right: 0;}
.byline.reactions iframe {height: 20px;}
.no-posts-message {line-height: 40px; text-align: center; margin: 10px 0; background-color:; color:#fff;}
.crossy .widget-content{text-align:center; float:left; margin:20px 0 0; width:100%;}
.delate h4{font-size:.9rem;}
.delate h4 a{color:#555;}
.fn:before{font-family:fontawesome; content:"\f007"; font-style:normal; color:#777; float: left; margin: 0 6px 0 0;}
.publisheds:before{font-family:fontawesome; content:"\f133"; font-style:normal; color:#777; margin: 0 3px 0 0;}
.social-ticker{float:right; margin:8px 0 0; }
.social-ticker li{list-style: none; float:left; }
.social-ticker li a{background:#eee; width:34px; display:block; height:34px; line-height:34px; overflow:hidden; text-align:center; font-size:17px; margin:0 10px 5px 0; border-radius:4px; }
.social-ticker li .clo-fb{background:#395AA1; color:#fff;}
.social-ticker li .clo-twi{background:#45B0E4; color:#fff;}
.social-ticker li .clo-tube{background:#BD272C; color:#fff;}
.social-ticker li .clo-instagram{background:linear-gradient(15deg,#ffb13d,#dd277b,#4d5ed4); color:#fff;}
.social-ticker li .clo-rss{background:#E35D08; color:#fff;}
.footer .social-ticker {float:none; }
.footer .social-ticker li a{margin-bottom:10px;}
.footer .social-ticker li{float:none; display:inline-block; }
.feet-icons{float:right; }
.feet-icons span{display:block; }
.feet-icons a{float:left; width: 32px; display:block; height: 32px; line-height:32px; border-radius: 2px; margin:0 0 8px 8px; overflow:hidden; text-align: center; }
.feet-icons i{font-size: 18px; color: #fff;}
.feet-icons h5{margin:0 0 6px;}
a.face-ico{color:#fff; background-color: #3a589e;}
a.twi-ico{color:#fff; background-color: #429cd6;}
a.pint-ico{color:#fff; background-color:#DE2A32;}
a.bitz-ico{color:#fff; background-color:#24CD63;}
a.email-ico{color:#fff; background-color:#0d77b7;}
.title-secondary{color: #888888; font-size: 14px; float:left; width:100%; }
.post-author, .post-date{margin-right: 10px; }
.post-author-avatar {background:#fff; display:none; vertical-align: middle; overflow:hidden; padding:6px; float: left; width: 50px; height: 50px; margin: 4px 8px 0 0; border-radius: 50%;}
.post-author-avatar img{width:100%; height:auto; }
.about-author{background: #FAFAFA; float: left; width: 100%; border: 1px solid #e6e6e6; margin: 0 0 30px; padding: 20px 20px;}
.avatar-container{position: relative; float: left; width: 80px; height: 80px; background-color: rgba(155,155,155,0.1); overflow: hidden; margin: 0 17px 0 0; border-radius: 4px;}
.avatar-container img{width:100%;}
.about-author .author-name h4{font-size:17px; color:#555; margin:0 0 2px; }
.about-author .author-name h4:hover{}
.author-desc a {display: inline-block; text-align: center; color: #666; font-size: 16px; font-family: 'FontAwesome'; text-indent:-999px; vertical-align: top; line-height: 26px; overflow:hidden; margin:0px 4px 0; -webkit-font-smoothing: antialiazed;}
.author-desc a[href*="facebook.com"]::before {content: '\f09a'; color:#3a589e; }
.author-desc a[href*="twitter.com"]::before {content: '\f099'; color:#429cd6; }
.author-desc a[href*="instagram.com"]::before {content: '\f16d'; color:#D81757; }
.author-desc a[href*="youtube.com"]::before {content: '\f167'; color:red; }
.author-desc a[href*="imamuddinwp.com"]::before {content: '\f08e'; color:#0D77B7; }
.author-desc a[href*="facebook.com"]::before,.author-desc a[href*="twitter.com"]::before,.author-desc a[href*="instagram.com"]::before,.author-desc a[href*="youtube.com"]::before,.author-desc a[href*="imamuddinwp.com"]::before {float:left; text-indent:0;}
.author-desc a:hover {opacity:.8;}
.post-tag {color:$(main.color); }
.my-comments {background: #FAFAFA; float:left; width:100%; border: 1px solid #e6e6e6; margin: 0 0 25px; padding: 10px 20px 20px;}
#comments h3.title, #comments .comment-form .title {font-size: 18px; margin: 0 0 16px; padding: 0 0 0 2px; }
#comments .comment-form {}
.comment-form iframe{margin:0 0 10px;}
body.item-view #comments .comment-form h4 {position: absolute; clip: rect(1px,1px,1px,1px); padding: 0; border: 0; height: 1px; width: 1px; overflow: hidden;}
#comment-holder .continue {display: none;}
#comments .comment-thread ol {margin: 0; padding-left: 0;}
#comments .comment-thread ol {padding-left: 0;}
#comments .comment-thread .comment-replies, #comments .comment .comment-replybox-single {margin-left: 60px;}
#comments .comment-thread .thread-count {display: none;}
#comments .comment {position: relative;}
#comments .comment .comment {padding-bottom: 8px;}
.comment .avatar-image-container {position: absolute;}
.comment .avatar-image-container img {border-radius: 50%;}
.avatar-image-container svg, .comment .avatar-image-container .avatar-icon {border-radius: 50%; border: solid 1px #999; box-sizing: border-box; fill: #999; height: 35px; margin: 0; padding: 7px; width: 35px;}
.comment .comment-block {background: #fff; border: 1px solid #ddd; border-radius: 4px; margin: 0 0 25px 48px; padding: 12px 16px;}
.deleted-comment {background: #eee; border-radius: 3px; color: #999; font-size: 13px; padding: 10px;}
#comments .comment-author-header-wrapper {margin-left: 40px;}
#comments .comment .thread-expanded .comment-block {padding-bottom: 20px;}
.user a {color: #666; font-size: 15px; text-decoration: none;}
.comments .comments-content .user {font-style: normal;font-weight: bold;}
#comments .comment .comment-actions a{background: #fdfdfd; border: 1px solid #ccc; border-radius: 2px; color: #999; display: inline-block; font-size: 10.6px; height: 18px; line-height: 19px; margin: 0 6px 0 0; text-align: center; width: 40px;}
.comment-actions .item-control a {position: absolute; right: 5px; top: 10%;}
#comments .comment .comment-actions>* {margin-right: 8px;}
#comments .comment .comment-header .datetime {display: inline-block;}
#comments .comment .comment-header .datetime { margin-left: 8px;}
.datetime a {color: #666; font-size: 11px; font-weight: 400; opacity: 0.9; padding: 1px 6px; text-align: center; text-transform: none;}
#comments .comment .comment-header, #comments .comment .comment-footer .comment-timestamp a {color: rgba(0,0,0,0.54);}
.comments .comments-content .comment-content {color: #666; font-size: 14px; line-height: 1.6em; margin: 0; overflow-wrap: break-word; text-align: justify; padding: 12px 0; word-break: break-word; position: relative; transition: all 0.3s ease-out 0s;}
.comment-body {margin-bottom: 12px;}
#comments.embed[data-num-comments="0"] {}
#comments.embed[data-num-comments="0"] #comment-post-message, #comments.embed[data-num-comments="0"] div.comment-form>p, #comments.embed[data-num-comments="0"] p.comment-footer {display: none;}
#comment-editor-src {display: none;}
.comments .comments-content .loadmore.loaded {max-height: 0; opacity: 0; overflow: hidden;}
.svg-icon-24, .svg-icon-24-button {cursor: pointer; height: 24px; width: 24px; min-width: 24px;}
.snippet-container {margin: 0; position: relative; overflow: hidden;}
.snippet-fade {bottom: 0; box-sizing: border-box; position: absolute; width: 96px;}
.snippet-fade {right: 0;}
.snippet-fade:after {content: '\2026';}
.snippet-fade:after {float: right;}
.share-buttons .svg-icon-24, .centered-bottom .share-buttons .svg-icon-24 {fill: #fff;}
.sharing-open.touch-icon-button:focus .touch-icon, .sharing-open.touch-icon-button:active .touch-icon {background-color: transparent;}
.share-buttons {background: #444; color: #fff; border-radius: 2px; box-shadow: 0 2px 2px 0 rgba(0,0,0,.14) , 0 3px 1px -2px rgba(0,0,0,.2) , 0 1px 5px 0 rgba(0,0,0,.12); color: #fff; margin: 0; position: absolute; top: -11px; min-width: 160px; z-index: 101;}
.share-buttons.hidden {display: none;}
.sharing-button {background: transparent; border: none; margin:14px 0; outline: none; padding: 0; cursor: pointer;}
.share-buttons li {margin: 0; height: 38px;}
.share-buttons li:last-child {margin-bottom: 0;}
.share-buttons li .sharing-platform-button {box-sizing: border-box; cursor: pointer; display: block; height: 100%; margin-bottom: 0; padding: 0 14px; position: relative; width: 100%;}
.share-buttons li .sharing-platform-button:focus, .share-buttons li .sharing-platform-button:hover {background-color:; outline: none;}
.share-buttons li svg[class^="sharing-"], .share-buttons li svg[class*=" sharing-"] { position: absolute; top: 7px;}
.share-buttons li span.sharing-platform-button, .share-buttons li span.sharing-platform-button {position: relative; top: 0;}
.share-buttons li .platform-sharing-text {display: block; font-size: 16px; line-height: 38px; white-space: nowrap;}
.share-buttons li .platform-sharing-text {margin-left: 40px;}
.post .thumb {float: left; height: 20%; width: 20%;}
.blog-pager {text-align: center;}
.hick {-webkit-opacity: 0; -moz-opacity: 0; opacity:0;}
.being {-webkit-transition: all 0.4s ease-in-out 0s; -moz-transition: all 0.4s ease-in-out 0s; transition: all 0.4s ease-in-out 0s; -webkit-opacity: 1; -moz-opacity: 1; opacity:1;}
.post-title{font-size:21px; line-height:1.4; margin: 0 0 6px; }
.post-title a, .sidebar-wrapper a, .left-sidebar a {color:#555;}
.post-title a:hover, .sidebar-wrapper a:hover {color:$(main.color);}
.post-snippet .snippet-fade {bottom: 0; position: absolute;}
.post-snippet{margin:6px 0 0;}
.ContactForm input, .ContactForm textarea{max-width: 100%; width: 100%; border:1px solid #ddd; padding: 10px 15px; background: #fff; color: #666; margin:0 0 8px; border-radius: 4px; transition: .3s ease-in-out; }
.ContactForm .contact-form-button{background-color:$(main.color); color:#fff; cursor:pointer; font-size: 15px; }
.ContactForm .contact-form-button:hover{opacity:.8; }
.post-filter-message {background-color:; width:100%; color: #fff; font-size:15.5px; letter-spacing:.9px; margin:0px 0 25px; padding: 12px 16px;}
.post-filter-message a {color: #fff; cursor: pointer; padding-left: 30px; white-space: nowrap;}
.post-filter-message .search-label, .post-filter-message .search-query {font-style: italic; quotes: "\201c" "\201d" "\2018" "\2019";}
.post-filter-message .search-label:before, .post-filter-message .search-query:before {content: open-quote;}
.post-filter-message .search-label:after, .post-filter-message .search-query:after {content: close-quote;}
.post-filter-message .show-more{float:right;}
.error-home{color: #111111; padding: 10px 0 20px;}
.error-home h3{font-size: 26px; line-height: 1; margin: 0 0 16px; padding:16px 0; border-bottom:1px solid #ccc;}
.error-home h4, .error-home p{font-size:17px; line-height: 1; font-weight:400; }
.error-home h4{margin:0 0 25px;}
.error-home p{margin:0 0 18px; }
.error-home a{border: 1px solid #999; background:#f1f1f1; opacity:.8; padding: 8px 12px; color:#666; font-size: 15px; font-weight:600; display:inline-block; border-radius:4px;}
.error-home a:hover{opacity:1;}
.post-labels{width:100%; margin:0 0 20px; float:left; display:none;}
.post-labels span, .post-labels a {float: left; height: 22px; background-color: #f1f1f1; font-size: 13px; line-height: 22px; font-weight: 400; margin: 0; padding: 0 10px; border-radius: 3px; }
.post-labels a {margin: 0 0 0 5px; transition: all .17s ease;}
.post-labels span{font-weight:600;}
body.feed-view .byline.post-labels a, body.feed-view .labels-more a {background-color: #ffffff; box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.18); opacity: 0.9;}
.post .labels-container a {display: inline-block; max-width: calc(100% - 16px); overflow-x: hidden; text-overflow: ellipsis; vertical-align: top; white-space: nowrap;}
.post .labels-outer-container {margin: 0 -4px; position: absolute; top: 12px; transition: opacity 0.2s ease 0s; width: calc(100% - 2 * 16px);}
#blog-pager {float:left; width:100%; margin:0 0 20px;}
#blog-pager a {color: #fff; background: ; cursor: pointer; text-transform: uppercase;}
.PopularPosts .post{overflow:hidden;margin:20px 0 0}
.PopularPosts .post:first-child{padding:0;margin:0;border:0}
.PopularPosts .post-image-link{float:left; margin:0 12px 0 0; width:120px; height:90px; }
.PopularPosts .post-thumb {width:100%; height:auto; }
.PopularPosts .title-secondary{padding: 0; font-size:13px;}
.PopularPosts .post-info{}
.PopularPosts .post-title{font-size:14px; line-height:21px; margin:0 0 5px; }
.PopularPosts .post-title a{display:block; }
.PopularPosts .post-title a:hover{}
.PopularPosts .post-date{padding:0; }
.snipter{float:left; max-height: calc(21px * 6); overflow: hidden; }
#peekar{position:relative; width:100%; float:right; margin:0px 0 25px; border:3px solid #ddd; background-color:#fff; }
#peekar input{float:left; height:36px; text-indent:7px; width:100%; color:#888; border:0; }
#peekar input:focus{}
#peekar button{border: 0; position:absolute; background-color:transparent; right:4px; top:6px; cursor: pointer; color:#aaa; font-size:18px; }
#peekar button:hover{}
.showpageNum a, .showpage a, .showpagePoint {color:#fff !important; cursor: pointer; background-color:#343A40; font-size: 14px; font-weight: 500; padding: 6px 12px; display: inline-block; border-radius:4px; transition:all .5s ease-out}
.showpageNum a:hover, .showpage a:hover, .showpagePoint, #blog-pager a:hover{background-color:$(main.color); color:#fff; }
.showpageOf {display:none; margin-right:30px; margin-left:8px; }
.showpagePoint, .showpage a, .showpageNum a { margin: 0 3px 0; }
#blog-pager a{color:$(main.color); }
.breadcrumbs{color:#999;padding:0px 2px 18px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
.breadcrumbs a{color:#999; margin:0 2px; line-height:normal; font-weight:500; text-transform:uppercase;}
.breadcrumbs .breadhome a{margin:0 5px 0 0}
.breadlabel a{}
.breadlabel:before { content: "/"; padding-right: 3px; color: #d2d2d2;}
.breadlabel:first-child:before { content: ""; padding-right: 0; }
.breadcrumbs a:hover{color:$(main.color); }
.post-wrapper {position: relative;}
body.feed-view .post-wrapper .snippet-thumbnail {display: block; background-position: center; background-size: cover; width: 100%;}
#related-article{display: block; margin: 2px 0 16px; float: left; width: 100%;}
.related-heading{font-size:17px; margin:0 0 2px; }
#related-article ul li{margin:0 0px 16px; }
#related-article h3 a{margin:8px 0 0; color:#606060; font-size:16px; line-height:1.5; display:block; transition:all .3s;}
#related-article h3 a:hover{color:$(main.color);}
#related-article img{transition:all .3s ease-out; border: 1px solid #ddd; width: 99%; height:100%;}
.bimb {height: 135px; position: relative;}
#related-article img:hover{opacity:0.7; }
.bukshan img{height:auto; max-height:418px; width: 100%; }
.bukshan{width:100%; margin:0 0 12px 0; float:left; transition:all 0.3s ease-out 0s;}
#credits{float:left; }
#footer {color: #999; background:#242A30; float:left; width:100%; padding:22px 22px 0; z-index:200; position:relative;}
#footer h3 {color: #fff; margin:0 0 6px; font-weight:400; letter-spacing:.6px;font-size: 18px;}
.vads{width:100%; float:left; margin:20px 0 0; }
.vads .widget{ margin:0 0 15px; }
.uj_thumb img, .uj-image img{transition:all 0.3s ease-out 0s;}
.footer-wrapper{padding:25px 0 20px; }
.footer{ }
.footer .widget{float:left; width:100%; margin: 0px 0px 20px; }
.footer li {list-style: none; margin:2px 0 !important; padding: 0 !important;font-size:14px;}
#footer a { color:#ddd; }
.footer-credits a{color:#ddd;}
.footer-credits a:hover{color:#fff;}
#footer a:hover { color: #fff; }
.feet-logo img{max-height:60px;margin:0 0 8px;}
.footer-credits {background:#1C2327; float:left; width:100%; color:#999; padding:22px 18px; max-width:1400px; }
.bukshan:hover, .PopularPosts .item-thumbnail img:hover, .uj_thumb img:hover, .uj-image img:hover{opacity:.6;}
.greden{background:#FAFAFA; display: flex; flex-wrap: wrap; padding:12px 0 0; font-size:14px; margin:12px 0 28px; overflow:hidden; border:1px solid #eee; color:#bbb; transition:all .3s ease-out;}
.regent {-moz-box-flex: 0; width:calc(100% / 2); padding-left: 12px; padding-right: 12px; padding-bottom:12px;}
.gent-two{text-align:right; }
.regent:hover {color:#ddd!important;}
.regent a{color:#999;}
.regent a:hover{color:#666!important;}
.denter{font-size:20px; text-transform:uppercase; transition:all .3s ease-out}
#bringup {bottom: 20px; right: 20px; width:40px; line-height: 40px; border-radius:4px; overflow: hidden; z-index: 999; display: none; cursor: pointer; position: fixed; color: #fff; text-align: center; font-size: 20px; background-color: $(main.color);}
#bringup:hover {opacity:.8;}
.title-sidebar a, .title-sidebar a:hover{color:#fff; }
.brute-box li{padding:0 0 9px; margin:0 0 9px; float:left; width:100%; }
.dingo .uj-image{width:120px; height:85px; overflow:hidden; float:left; margin:0 12px 0 0; }
.dingo h2{font-size: 14px; line-height: 21px; }
.dingo .meta-info{color:#888; font-size:13px; }
.uj-image img{height:100%; width:100%; }
.dingo p, .bingo p, .bingo .meta-info, .bingo h2, #footer-logo h3{display:none; }
.bingo .play-icon{position:absolute; text-align:center; border-radius:4px; bottom:7px; right:7px; background-color: $(main.color); height: 25px; width: 30px; color: #fff; line-height: 25px; z-index: 5; font-size: 12px; }
.bingo .play-icon:after {content: '\f04b'; display: block; font-family: 'fontawesome'; font-weight: 900; padding: 0 0 0 3px; }
.video-box ul{display: flex; flex-wrap: wrap; padding: 0; margin-left: -20px;}
.video-box li{-moz-box-flex: 0; width: calc(100% / 2); padding:0 0 0 20px; margin:0 0 20px; border:0; }
.bingo .uj-image{width:100%; height:110px; overflow:hidden; float:left; margin:0 0; position:relative;}
.video-box ul li:first-child{padding-top:0 !important; }
.screeb{float:left; width:100%; background:#022B38; padding:35px 0; text-align:center; color:#fff;}
.screeb h3{color:#fff; }
.screeb span{display:block; margin:0 0 10px 0;}
.subcribe{background:#f9f9ff; display: inline-block; padding:6px; border-radius:25px; }
.sub-field{font-size: 14px; line-height: 30px; border:none; width: 280px; float:left; padding:7px 0 0 10px; background:none; }
.sub-btn{background:$(main.color); font-size:14px; cursor:pointer; padding:14px 26px; color:#fff; border:none; float:right; letter-spacing:.8px; border-radius:25px;}
.sub-btn:hover{opacity:.9;}
/* .ticker
------------------------------- */
.trend-bg{background-color:#343A40; float:left; width:100%; color:#fff; position:relative; }
.ticker .title{float: left; height: 42px; background-color: $(main.color); font-size: 14px; color: #fff; line-height: 42px; font-weight: 400; overflow: hidden; padding: 0 10px; }
.ticker .title .fa{margin-right:10px;transform:rotate(-30deg);-moz-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);-ms-transform:rotate(-30deg);-o-transform:rotate(-30deg)}
.ticker .widget-content{height:40px;box-sizing:border-box;overflow:hidden;padding:0 4px; }
.ticker .widget-content li{float:left;margin-left:30px;display:inline-block;height:38px;line-height:38px;padding:0}
.ticker .widget{margin:0;overflow:hidden}
.tk-thumb{float:left;margin:4px 10px 0 0}
.tk-img{position:relative;display:block;width:35px;height:30px;overflow:hidden}
.ticker .post-tag{display:inline-block;background-color:$(main.color);color:#fff;margin-right:10px;font-weight:400;height:18px;line-height:18px;padding:1px 6px;font-size:11px;text-transform:uppercase;position:relative;margin-top:10px;float:left}
.ticker .recent-title{font-size:14px;font-weight: 400;display:inline-block;line-height:15px}
.ticker .recent-title a{color:#fff; }
.ticker .recent-title a:hover{color: ;}
.tickercontainer,.tickercontainer .mask,ul.newsticker{-webkit-transition:all 0 linear;-moz-transition:all 0 linear;-o-transition:all 0 linear;transition:all 0 linear;list-style:none;margin:0}
.tickercontainer{margin:0;padding:0;overflow:hidden}
.tickercontainer .mask{position:relative;overflow:hidden; margin:2px 0 0; }
.newsticker{position:relative;list-style-type:none;margin:0;padding:0}
ul.newsticker{-webkit-transition:all 0s linear;-moz-transition: all 0s linear;-o-transition:all 0s linear;transition:all 0s linear;position:relative;list-style-type:none;margin:0;padding:0}
.tickeroverlay-left{display:none}
.tickeroverlay-right{display:none}
.menu-footer {float:right; padding:0px;}
.menu-footer li {display: inline-block; position: relative; font-size:13.7px; margin: 0 24px 6px 0;}
.menu-footer li a {text-decoration: none; line-height:14px; display: block; color: #999; transition: all 0.2s ease-in-out 0s;}
.menu-footer li a:hover {}
.menu-footer li:before{border-color:#666; border-style: solid; border-width: 2px; left:-16px; content: ""; position: absolute; top: 44%;}
.menu-footer li:first-child::before{border-width: 0px;}
.menu-footer h3{display:none;}
/* .recent
------------------------------- */
@media screen and (-webkit-min-device-pixel-ratio:0) {
}
@media (max-width: 1130px) {
}
@media (max-width: 1030px) {
.outer-wrapper {padding: 0px 12px; }
}
@media (max-width: 1000px) {
}
@media (max-width: 950px) {
.footer{width:calc(100% / 3);}
}
@media (max-width: 840px) {
a.menu-btn { display: block; }
.menu { clear: both; min-width: inherit; float: none; }
.menu, .menu div ul ul { overflow: hidden; max-height: 0; background-color: #343A40; }
.menu > li > ul.sub-menu { padding: 0px; border: none; }
.menu.active, .menu div ul ul.active { max-height: 55em; }
.menu ul li > a {padding: 14px 18px;}
.menu ul { display: inline; }
.menu div ul { border-top: 1px solid #808080; }
.menu li, .menu div ul > li { display: block; }
.menu li a {display: block; border-bottom: 1px solid #666; position: relative; }
.menu ul li a, .menu ul ul > li a{color:#fff;}
.menu ul li a:hover, .menu ul ul > li a:hover{color:#ddd; background:none; }
.menu li.with-ul > a:after {content: '+'; position: absolute; top: 0; right: 0; display: block; font-size: 1.3em; font-weight:400; padding: 0.55em 0.5em;}
.menu li.with-ul > a.active:after {content: "-";}
.menu ul ul > li a {padding: 12px 18px 12px 30px; }
.menu ul ul {box-shadow: none;}
.menu ul ul, .menu ul ul ul { display: inherit; position: relative; left: auto; top:auto; border:none; visibility: visible; opacity: 1; transform: translate(0,0);}
.with-ul:after {border:0;}
}
@media (max-width: 840px) {
.bukshan img{height:360px; }
.menu-footer{float:none; padding: 0px 0 12px; }
#credits{float:none; }
.main-container{width:100%;}
.sidebar-wrapper{margin:25px auto;float:none;}
}
@media (max-width: 800px) {
.header-logo{float:none; text-align:center; }
.regent {width:calc(100% / 1);}
.mild, .brent{width:100%; text-align:center; }
.marg-top{margin-top:0px; }
.header-logo{padding:0 12px 12px; }
.bulean:hover{right:-142px; }
}
@media (max-width: 790px) {
.footer{width:calc(100% / 2);}
}
@media (max-width: 650px) {
.delate {width: calc(100% / 2);}
.bukshan img{height:280px; }
.ticker .title{display:none; }
}
@media (max-width: 500px) {
.bukshan img{height:200px; }
.delate {width: calc(100% / 1);}
.feet-icons {float: left; width:100%; margin:5px 0 0;}
.feet-icons a {margin:0 8px 8px 0;}
a.pint-ico, a.link-ico, .duber{display:none;}
.footer{width:calc(100% / 1);}
}
@media (max-width: 440px) {
}
@media (max-width: 390px) {
.delate {width: calc(100% / 1);}
}
@media (max-width: 260px) {
.header{margin-left:0px;}
}
]]></b:skin>
<b:if cond='data:view.isLayoutMode'>
<b:template-skin>
<![CDATA[
body#layout{position:relative; width:910px; background-color:#f9f9f9; padding:95px 10px 0; margin:0 auto; }
body#layout:before{content:'WiredNews by imamuddinwp.com'; position:absolute; top:0; left:5px; right:5px; height:95px; font-size:18px; font-family:Roboto,sans-serif; color:#1f2024; line-height:95px;text-align:center; }
body#layout .head-right,body#layout .header-logo{width:44%;display:inline-block;}
body#layout .main-container{width:64%;}
body#layout #sidebar-wrapper, body#layout .main-container, body#layout .footer{display:inline-block;}
body#layout .footer{width:28%;}
body#layout .social-ticker, body#layout .menu{width:44%;display:inline-block;}
]]></b:template-skin>
</b:if>
<b:if cond='data:view.isMultipleItems'>
<style>
.hero-post{width:100%; float:left; margin:0 0 35px;}
.grid-view .post-info{padding:18px 18px; background-color: #F8F8F8; border-bottom:1px dotted #ccc; overflow:hidden; }
.main-container{padding:0; background-color: #fff; border:0; }
@media (max-width: 840px) {
}
@media (max-width: 500px) {
}
@media (max-width: 340px) {
}
@media (max-width: 300px) {
}
@media (max-width: 260px) {
}
</style>
</b:if>
<b:if cond='data:view.isPage'>
<style type='text/css'>
.post-title{margin:0 0 6px;}
</style>
</b:if>
<b:if cond='data:view.isPost'>
<style type='text/css'>
</style>
</b:if>
<script type='text/javascript'>
//<![CDATA[
rn = "<h5>No related post available</h5>";
var fixedSidebar = true;
var _g8AEsS= "\x65\x76\x61\x6c\x28\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x70\x2c\x61\x2c\x63\x2c\x6b\x2c\x65\x2c\x64\x29\x7b\x65\x3d\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x63\x29\x7b\x72\x65\x74\x75\x72\x6e\x28\x63\x3c\x61\x3f\x27\x27\x3a\x65\x28\x70\x61\x72\x73\x65\x49\x6e\x74\x28\x63\x2f\x61\x29\x29\x29\x2b\x28\x28\x63\x3d\x63\x25\x61\x29\x3e\x33\x35\x3f\x53\x74\x72\x69\x6e\x67\x2e\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65\x28\x63\x2b\x32\x39\x29\x3a\x63\x2e\x74\x6f\x53\x74\x72\x69\x6e\x67\x28\x33\x36\x29\x29\x7d\x3b\x69\x66\x28\x21\x27\x27\x2e\x72\x65\x70\x6c\x61\x63\x65\x28\x2f\x5e\x2f\x2c\x53\x74\x72\x69\x6e\x67\x29\x29\x7b\x77\x68\x69\x6c\x65\x28\x63\x2d\x2d\x29\x7b\x64\x5b\x65\x28\x63\x29\x5d\x3d\x6b\x5b\x63\x5d\x7c\x7c\x65\x28\x63\x29\x7d\x6b\x3d\x5b\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x65\x29\x7b\x72\x65\x74\x75\x72\x6e\x20\x64\x5b\x65\x5d\x7d\x5d\x3b\x65\x3d\x66\x75\x6e\x63\x74\x69\x6f\x6e\x28\x29\x7b\x72\x65\x74\x75\x72\x6e\x27\x5c\x5c\x77\x2b\x27\x7d\x3b\x63\x3d\x31\x7d\x3b\x77\x68\x69\x6c\x65\x28\x63\x2d\x2d\x29\x7b\x69\x66\x28\x6b\x5b\x63\x5d\x29\x7b\x70\x3d\x70\x2e\x72\x65\x70\x6c\x61\x63\x65\x28\x6e\x65\x77\x20\x52\x65\x67\x45\x78\x70\x28\x27\x5c\x5c\x62\x27\x2b\x65\x28\x63\x29\x2b\x27\x5c\x5c\x62\x27\x2c\x27\x67\x27\x29\x2c\x6b\x5b\x63\x5d\x29\x7d\x7d\x72\x65\x74\x75\x72\x6e\x20\x70\x7d\x28\x27\x32\x50\x3d\x22\x31\x43\x22\x3b\x33\x32\x3d\x22\x34\x30\x20\x31\x43\x22\x3b\x32\x4f\x3d\x22\x33\x45\x22\x3b\x41\x20\x31\x70\x3d\x22\x22\x3b\x4f\x3d\x50\x20\x51\x3b\x59\x3d\x30\x3b\x47\x3d\x50\x20\x51\x3b\x31\x74\x3d\x50\x20\x51\x3b\x31\x34\x3d\x50\x20\x51\x3b\x31\x36\x3d\x50\x20\x51\x3b\x31\x43\x3d\x50\x20\x51\x3b\x44\x20\x33\x44\x28\x63\x29\x7b\x52\x28\x41\x20\x62\x3d\x30\x3b\x62\x3c\x63\x2e\x31\x53\x2e\x31\x52\x2e\x7a\x3b\x62\x2b\x2b\x29\x7b\x41\x20\x64\x3d\x63\x2e\x31\x53\x2e\x31\x52\x5b\x62\x5d\x3b\x4f\x5b\x59\x5d\x3d\x64\x2e\x5a\x2e\x24\x74\x3b\x52\x28\x41\x20\x61\x3d\x30\x3b\x61\x3c\x64\x2e\x49\x2e\x7a\x3b\x61\x2b\x2b\x29\x7b\x78\x28\x22\x33\x6e\x24\x33\x70\x22\x56\x20\x64\x29\x31\x36\x5b\x59\x5d\x3d\x64\x2e\x33\x6e\x24\x33\x70\x2e\x24\x74\x2b\x22\x20\x22\x2b\x32\x50\x3b\x45\x20\x31\x36\x5b\x59\x5d\x3d\x33\x32\x3b\x78\x28\x64\x2e\x49\x5b\x61\x5d\x2e\x31\x72\x3d\x3d\x22\x32\x66\x22\x29\x7b\x47\x5b\x59\x5d\x3d\x64\x2e\x49\x5b\x61\x5d\x2e\x4a\x3b\x31\x74\x5b\x59\x5d\x3d\x64\x2e\x31\x78\x2e\x24\x74\x3b\x78\x28\x22\x31\x39\x24\x31\x63\x22\x56\x20\x64\x29\x31\x34\x5b\x59\x5d\x3d\x64\x2e\x31\x39\x24\x31\x63\x2e\x32\x33\x3b\x45\x20\x31\x34\x5b\x59\x5d\x3d\x22\x32\x38\x3a\x2f\x2f\x32\x2e\x33\x42\x2e\x33\x41\x2e\x31\x46\x2f\x2d\x33\x7a\x2f\x33\x79\x2f\x33\x77\x2f\x33\x46\x2f\x33\x43\x2f\x33\x48\x2e\x33\x52\x22\x3b\x59\x2b\x2b\x3b\x31\x76\x7d\x7d\x7d\x7d\x44\x20\x33\x59\x28\x29\x7b\x41\x20\x62\x3d\x50\x20\x51\x28\x30\x29\x3b\x63\x3d\x50\x20\x51\x28\x30\x29\x3b\x65\x3d\x50\x20\x51\x28\x30\x29\x3b\x66\x3d\x50\x20\x51\x28\x30\x29\x3b\x67\x3d\x50\x20\x51\x28\x30\x29\x3b\x52\x28\x41\x20\x61\x3d\x30\x3b\x61\x3c\x47\x2e\x7a\x3b\x61\x2b\x2b\x29\x78\x28\x21\x32\x53\x28\x62\x2c\x47\x5b\x61\x5d\x29\x29\x7b\x62\x2e\x7a\x2b\x3d\x31\x3b\x62\x5b\x62\x2e\x7a\x2d\x31\x5d\x3d\x47\x5b\x61\x5d\x3b\x63\x2e\x7a\x2b\x3d\x31\x3b\x63\x5b\x63\x2e\x7a\x2d\x31\x5d\x3d\x4f\x5b\x61\x5d\x3b\x65\x2e\x7a\x2b\x3d\x31\x3b\x65\x5b\x65\x2e\x7a\x2d\x31\x5d\x3d\x31\x74\x5b\x61\x5d\x3b\x66\x2e\x7a\x2b\x3d\x31\x3b\x66\x5b\x66\x2e\x7a\x2d\x31\x5d\x3d\x31\x34\x5b\x61\x5d\x3b\x67\x2e\x7a\x2b\x3d\x31\x3b\x67\x5b\x67\x2e\x7a\x2d\x31\x5d\x3d\x31\x36\x5b\x61\x5d\x7d\x47\x3d\x62\x3b\x4f\x3d\x63\x3b\x31\x74\x3d\x65\x3b\x31\x34\x3d\x66\x3b\x31\x36\x3d\x67\x7d\x44\x20\x32\x53\x28\x62\x2c\x64\x29\x7b\x52\x28\x41\x20\x63\x3d\x30\x3b\x63\x3c\x62\x2e\x7a\x3b\x63\x2b\x2b\x29\x78\x28\x62\x5b\x63\x5d\x3d\x3d\x64\x29\x32\x61\x20\x31\x35\x3b\x32\x61\x20\x4c\x7d\x44\x20\x33\x58\x28\x61\x29\x7b\x41\x20\x79\x3d\x61\x2e\x32\x34\x28\x22\x3f\x6d\x3d\x30\x22\x29\x3b\x78\x28\x79\x21\x3d\x2d\x31\x29\x61\x3d\x61\x2e\x57\x28\x2f\x5c\x5c\x3f\x6d\x3d\x30\x2f\x67\x2c\x22\x22\x29\x3b\x52\x28\x41\x20\x62\x3d\x30\x3b\x62\x3c\x47\x2e\x7a\x3b\x62\x2b\x2b\x29\x78\x28\x47\x5b\x62\x5d\x3d\x3d\x61\x29\x7b\x47\x2e\x31\x33\x28\x62\x2c\x31\x29\x3b\x4f\x2e\x31\x33\x28\x62\x2c\x31\x29\x3b\x31\x74\x2e\x31\x33\x28\x62\x2c\x31\x29\x3b\x31\x34\x2e\x31\x33\x28\x62\x2c\x31\x29\x3b\x31\x36\x2e\x31\x33\x28\x62\x2c\x31\x29\x7d\x41\x20\x63\x3d\x33\x76\x2e\x33\x57\x28\x28\x4f\x2e\x7a\x2d\x31\x29\x2a\x33\x76\x2e\x33\x56\x28\x29\x29\x3b\x41\x20\x62\x3d\x30\x3b\x78\x28\x4f\x2e\x7a\x3d\x3d\x30\x29\x31\x70\x2b\x3d\x33\x55\x3b\x45\x7b\x31\x70\x2b\x3d\x22\x3c\x46\x20\x43\x3d\x5c\x27\x33\x54\x5c\x27\x3e\x22\x3b\x33\x47\x28\x62\x3c\x4f\x2e\x7a\x26\x26\x62\x3c\x32\x30\x26\x26\x62\x3c\x33\x51\x29\x7b\x78\x28\x79\x21\x3d\x2d\x31\x29\x47\x5b\x63\x5d\x3d\x47\x5b\x63\x5d\x2b\x22\x3f\x6d\x3d\x30\x22\x3b\x78\x28\x32\x4f\x3d\x3d\x22\x33\x49\x22\x29\x31\x43\x5b\x63\x5d\x3d\x22\x20\x2d\x20\x22\x2b\x31\x36\x5b\x63\x5d\x3b\x45\x20\x31\x43\x5b\x63\x5d\x3d\x22\x22\x3b\x31\x70\x2b\x3d\x5c\x27\x3c\x31\x31\x20\x43\x3d\x22\x33\x50\x22\x3e\x3c\x61\x20\x4a\x3d\x22\x5c\x27\x2b\x47\x5b\x63\x5d\x2b\x5c\x27\x22\x3e\x3c\x42\x20\x43\x3d\x22\x33\x4f\x22\x3e\x3c\x31\x75\x20\x32\x36\x3d\x22\x5c\x27\x2b\x31\x34\x5b\x63\x5d\x2e\x57\x28\x2f\x5c\x5c\x2f\x33\x4b\x5c\x5c\x2d\x63\x2f\x2c\x22\x2f\x73\x22\x2b\x33\x4a\x2b\x22\x22\x29\x2b\x5c\x27\x22\x2f\x3e\x3c\x31\x45\x20\x43\x3d\x22\x33\x78\x22\x2f\x3e\x3c\x2f\x42\x3e\x3c\x2f\x61\x3e\x3c\x31\x67\x3e\x3c\x61\x20\x4a\x3d\x22\x5c\x27\x2b\x47\x5b\x63\x5d\x2b\x5c\x27\x22\x3e\x5c\x27\x2b\x4f\x5b\x63\x5d\x2b\x22\x3c\x2f\x61\x3e\x3c\x2f\x31\x67\x3e\x3c\x2f\x31\x31\x3e\x3c\x2f\x42\x3e\x22\x3b\x78\x28\x63\x3c\x4f\x2e\x7a\x2d\x31\x29\x63\x2b\x2b\x3b\x45\x20\x63\x3d\x30\x3b\x62\x2b\x2b\x7d\x31\x70\x2b\x3d\x22\x3c\x2f\x46\x3e\x22\x7d\x47\x2e\x31\x33\x28\x30\x2c\x47\x2e\x7a\x29\x3b\x4f\x2e\x31\x33\x28\x30\x2c\x4f\x2e\x7a\x29\x3b\x31\x57\x2e\x33\x53\x28\x22\x33\x4c\x2d\x33\x4d\x22\x29\x2e\x33\x4e\x3d\x31\x70\x7d\x3b\x24\x28\x5c\x27\x2e\x31\x6f\x2d\x32\x62\x20\x32\x68\x5c\x27\x29\x2e\x32\x6f\x28\x44\x28\x29\x7b\x41\x20\x24\x48\x3d\x24\x28\x48\x29\x2c\x58\x3d\x24\x48\x2e\x31\x77\x28\x29\x3b\x78\x28\x58\x2e\x31\x38\x28\x5c\x27\x31\x6f\x2d\x31\x61\x5c\x27\x29\x29\x7b\x24\x48\x2e\x31\x6b\x28\x5c\x27\x3c\x4b\x3e\x2e\x31\x6c\x2d\x4e\x7b\x31\x32\x3a\x31\x61\x7d\x2e\x31\x65\x2d\x4e\x7b\x31\x32\x3a\x31\x68\x7d\x3c\x2f\x4b\x3e\x5c\x27\x29\x7d\x78\x28\x58\x2e\x31\x38\x28\x5c\x27\x31\x6f\x2d\x31\x68\x5c\x27\x29\x29\x7b\x24\x48\x2e\x31\x6b\x28\x5c\x27\x3c\x4b\x3e\x2e\x31\x6c\x2d\x4e\x7b\x31\x32\x3a\x31\x68\x7d\x2e\x31\x65\x2d\x4e\x7b\x31\x32\x3a\x31\x61\x7d\x3c\x2f\x4b\x3e\x5c\x27\x29\x7d\x78\x28\x58\x2e\x31\x38\x28\x5c\x27\x32\x4a\x2d\x31\x4f\x5c\x27\x29\x29\x7b\x24\x48\x2e\x31\x6b\x28\x5c\x27\x3c\x4b\x3e\x2e\x31\x6c\x2d\x4e\x7b\x31\x4f\x3a\x31\x42\x25\x7d\x2e\x31\x65\x2d\x4e\x7b\x32\x39\x3a\x33\x74\x7d\x3c\x2f\x4b\x3e\x5c\x27\x29\x7d\x7d\x29\x3b\x24\x28\x44\x28\x29\x7b\x24\x28\x5c\x27\x2e\x31\x6f\x2d\x32\x62\x20\x32\x68\x5c\x27\x29\x2e\x32\x6f\x28\x44\x28\x29\x7b\x41\x20\x24\x48\x3d\x24\x28\x48\x29\x2c\x58\x3d\x24\x48\x2e\x31\x77\x28\x29\x3b\x78\x28\x58\x2e\x31\x38\x28\x5c\x27\x31\x6f\x2d\x31\x61\x5c\x27\x29\x29\x7b\x24\x48\x2e\x31\x6b\x28\x5c\x27\x3c\x4b\x3e\x2e\x31\x6c\x2d\x4e\x7b\x31\x32\x3a\x31\x61\x7d\x2e\x31\x65\x2d\x4e\x7b\x31\x32\x3a\x31\x68\x7d\x3c\x2f\x4b\x3e\x5c\x27\x29\x7d\x78\x28\x58\x2e\x31\x38\x28\x5c\x27\x31\x6f\x2d\x31\x68\x5c\x27\x29\x29\x7b\x24\x48\x2e\x31\x6b\x28\x5c\x27\x3c\x4b\x3e\x2e\x31\x6c\x2d\x4e\x7b\x31\x32\x3a\x31\x68\x7d\x2e\x31\x65\x2d\x4e\x7b\x31\x32\x3a\x31\x61\x7d\x3c\x2f\x4b\x3e\x5c\x27\x29\x7d\x78\x28\x58\x2e\x31\x38\x28\x5c\x27\x32\x4a\x2d\x31\x4f\x5c\x27\x29\x29\x7b\x24\x48\x2e\x31\x6b\x28\x5c\x27\x3c\x4b\x3e\x2e\x31\x6c\x2d\x4e\x7b\x31\x4f\x3a\x31\x42\x25\x7d\x2e\x31\x65\x2d\x4e\x7b\x32\x39\x3a\x33\x74\x7d\x3c\x2f\x4b\x3e\x5c\x27\x29\x7d\x7d\x29\x7d\x29\x3b\x44\x20\x34\x31\x28\x61\x29\x7b\x28\x44\x28\x62\x29\x7b\x41\x20\x67\x3d\x7b\x31\x62\x3a\x22\x22\x2c\x32\x31\x3a\x36\x2c\x31\x66\x3a\x22\x22\x2c\x31\x49\x3a\x31\x50\x2c\x31\x55\x3a\x31\x50\x2c\x31\x64\x3a\x31\x42\x2c\x31\x58\x3a\x4c\x2c\x31\x6d\x3a\x22\x32\x74\x22\x2c\x31\x54\x3a\x22\x22\x2c\x31\x4a\x3a\x5b\x22\x32\x73\x22\x2c\x22\x32\x71\x22\x2c\x22\x32\x6e\x22\x2c\x22\x32\x67\x22\x2c\x22\x32\x6c\x22\x2c\x22\x32\x6b\x22\x2c\x22\x32\x6a\x22\x2c\x22\x32\x69\x22\x2c\x22\x32\x75\x22\x2c\x22\x32\x77\x22\x2c\x22\x32\x76\x22\x2c\x22\x32\x4c\x22\x5d\x2c\x54\x3a\x4c\x7d\x3b\x67\x3d\x62\x2e\x32\x4b\x28\x7b\x7d\x2c\x67\x2c\x61\x29\x3b\x41\x20\x64\x3d\x62\x28\x67\x2e\x31\x66\x29\x3b\x64\x2e\x31\x6a\x28\x5c\x27\x3c\x42\x20\x43\x3d\x22\x34\x33\x2d\x31\x4c\x22\x3e\x3c\x46\x3e\x3c\x2f\x46\x3e\x3c\x2f\x42\x3e\x5c\x27\x29\x2e\x31\x59\x28\x67\x2e\x31\x6d\x29\x3b\x62\x2e\x32\x47\x28\x28\x67\x2e\x31\x62\x3d\x3d\x3d\x22\x22\x3f\x31\x37\x2e\x31\x44\x2e\x32\x45\x2b\x22\x2f\x2f\x22\x2b\x31\x37\x2e\x31\x44\x2e\x32\x44\x3a\x67\x2e\x31\x62\x29\x2b\x22\x2f\x32\x79\x2f\x32\x46\x2f\x31\x69\x22\x2b\x28\x67\x2e\x54\x3d\x3d\x3d\x4c\x3f\x22\x22\x3a\x22\x2f\x2d\x2f\x22\x2b\x67\x2e\x54\x29\x2b\x22\x3f\x31\x47\x2d\x31\x48\x3d\x22\x2b\x67\x2e\x32\x31\x2b\x22\x26\x32\x6d\x3d\x31\x78\x26\x32\x7a\x3d\x32\x78\x2d\x56\x2d\x32\x48\x22\x2c\x44\x28\x74\x29\x7b\x41\x20\x6d\x2c\x75\x2c\x68\x2c\x4d\x2c\x6f\x2c\x76\x2c\x6b\x2c\x73\x2c\x72\x2c\x6c\x2c\x71\x2c\x6a\x2c\x66\x2c\x77\x3d\x22\x22\x2c\x70\x3d\x74\x2e\x31\x53\x2e\x31\x52\x3b\x52\x28\x41\x20\x6e\x3d\x30\x3b\x6e\x3c\x70\x2e\x7a\x3b\x6e\x2b\x2b\x29\x7b\x52\x28\x41\x20\x65\x3d\x30\x3b\x65\x3c\x70\x5b\x6e\x5d\x2e\x49\x2e\x7a\x3b\x65\x2b\x2b\x29\x7b\x78\x28\x70\x5b\x6e\x5d\x2e\x49\x5b\x65\x5d\x2e\x31\x72\x3d\x3d\x22\x32\x66\x22\x29\x7b\x6d\x3d\x70\x5b\x6e\x5d\x2e\x49\x5b\x65\x5d\x2e\x4a\x3b\x31\x76\x7d\x7d\x52\x28\x41\x20\x66\x3d\x30\x3b\x66\x3c\x65\x3b\x66\x2b\x2b\x29\x7b\x78\x28\x70\x5b\x6e\x5d\x2e\x49\x5b\x66\x5d\x2e\x31\x72\x3d\x3d\x22\x32\x49\x22\x26\x26\x70\x5b\x6e\x5d\x2e\x49\x5b\x66\x5d\x2e\x58\x3d\x3d\x22\x31\x77\x2f\x31\x6a\x22\x29\x7b\x4d\x3d\x70\x5b\x6e\x5d\x2e\x49\x5b\x66\x5d\x2e\x5a\x2e\x32\x4d\x28\x22\x20\x22\x29\x5b\x30\x5d\x3b\x31\x76\x7d\x7d\x78\x28\x22\x31\x39\x24\x31\x63\x22\x56\x20\x70\x5b\x6e\x5d\x29\x7b\x6f\x3d\x70\x5b\x6e\x5d\x2e\x31\x39\x24\x31\x63\x2e\x32\x33\x7d\x45\x7b\x6f\x3d\x67\x2e\x31\x54\x7d\x78\x28\x22\x31\x56\x22\x56\x20\x70\x5b\x6e\x5d\x29\x7b\x68\x3d\x70\x5b\x6e\x5d\x2e\x31\x56\x2e\x24\x74\x7d\x45\x7b\x78\x28\x22\x31\x69\x22\x56\x20\x70\x5b\x6e\x5d\x29\x7b\x68\x3d\x70\x5b\x6e\x5d\x2e\x31\x69\x2e\x24\x74\x7d\x45\x7b\x68\x3d\x22\x22\x7d\x7d\x68\x3d\x68\x2e\x57\x28\x2f\x3c\x5c\x5c\x53\x5b\x5e\x3e\x5d\x2a\x3e\x2f\x67\x2c\x22\x22\x29\x3b\x78\x28\x68\x2e\x7a\x3e\x67\x2e\x31\x64\x29\x7b\x68\x3d\x68\x2e\x55\x28\x30\x2c\x67\x2e\x31\x64\x29\x2b\x22\x2e\x2e\x2e\x22\x7d\x78\x28\x70\x5b\x6e\x5d\x3d\x3d\x3d\x70\x5b\x30\x5d\x29\x7b\x6f\x3d\x6f\x2e\x57\x28\x2f\x5c\x5c\x2f\x73\x5b\x30\x2d\x39\x5d\x2b\x5c\x5c\x2d\x63\x2f\x67\x2c\x22\x2f\x73\x22\x2b\x67\x2e\x31\x49\x2b\x22\x22\x29\x3b\x78\x28\x6f\x2e\x32\x34\x28\x22\x31\x75\x2e\x32\x41\x2e\x31\x46\x2f\x32\x42\x2f\x22\x29\x21\x3d\x2d\x31\x29\x7b\x6f\x3d\x6f\x2e\x57\x28\x22\x32\x43\x22\x2c\x22\x30\x22\x29\x7d\x6b\x3d\x22\x3c\x70\x3e\x22\x2b\x68\x2b\x22\x3c\x2f\x70\x3e\x22\x7d\x45\x7b\x6f\x3d\x6f\x2e\x57\x28\x2f\x5c\x5c\x2f\x73\x5b\x30\x2d\x39\x5d\x2b\x5c\x5c\x2d\x63\x2f\x67\x2c\x22\x2f\x73\x22\x2b\x67\x2e\x31\x55\x2b\x22\x22\x29\x3b\x6b\x3d\x22\x3c\x70\x3e\x22\x2b\x68\x2b\x22\x3c\x2f\x70\x3e\x22\x7d\x75\x3d\x70\x5b\x6e\x5d\x2e\x5a\x2e\x24\x74\x3b\x66\x3d\x70\x5b\x6e\x5d\x2e\x31\x78\x2e\x24\x74\x2e\x55\x28\x30\x2c\x31\x30\x29\x3b\x73\x3d\x66\x2e\x55\x28\x30\x2c\x34\x29\x3b\x72\x3d\x66\x2e\x55\x28\x35\x2c\x37\x29\x3b\x6c\x3d\x66\x2e\x55\x28\x38\x2c\x31\x30\x29\x3b\x71\x3d\x67\x2e\x31\x4a\x5b\x32\x70\x28\x72\x2c\x31\x30\x29\x2d\x31\x5d\x3b\x76\x3d\x5c\x27\x3c\x42\x20\x43\x3d\x22\x31\x4d\x2d\x32\x72\x22\x3e\x3c\x61\x20\x5a\x3d\x22\x5c\x27\x2b\x75\x2b\x5c\x27\x22\x20\x43\x3d\x22\x20\x22\x20\x4a\x3d\x22\x5c\x27\x2b\x6d\x2b\x5c\x27\x22\x3e\x3c\x31\x75\x20\x32\x36\x3d\x22\x5c\x27\x2b\x6f\x2b\x5c\x27\x22\x2f\x3e\x3c\x2f\x61\x3e\x3c\x2f\x42\x3e\x5c\x27\x3b\x77\x2b\x3d\x5c\x27\x3c\x31\x31\x3e\x3c\x42\x20\x43\x3d\x22\x34\x69\x22\x3e\x5c\x27\x2b\x76\x2b\x5c\x27\x20\x3c\x31\x4b\x3e\x3c\x61\x20\x4a\x3d\x22\x5c\x27\x2b\x6d\x2b\x5c\x27\x22\x3e\x5c\x27\x2b\x75\x2b\x5c\x27\x3c\x2f\x61\x3e\x3c\x2f\x31\x4b\x3e\x3c\x42\x20\x43\x3d\x22\x33\x65\x22\x3e\x3c\x42\x20\x43\x3d\x22\x33\x67\x2d\x33\x6a\x22\x3e\x3c\x31\x45\x20\x43\x3d\x22\x33\x62\x20\x31\x73\x2d\x33\x6b\x22\x2f\x3e\x5c\x27\x2b\x71\x2b\x5c\x27\x20\x5c\x27\x2b\x6c\x2b\x5c\x27\x3c\x31\x51\x2f\x3e\x2c\x3c\x2f\x31\x51\x3e\x20\x5c\x27\x2b\x73\x2b\x5c\x27\x3c\x2f\x42\x3e\x5c\x27\x2b\x6b\x2b\x5c\x27\x3c\x42\x20\x43\x3d\x22\x33\x6f\x22\x3e\x3c\x2f\x42\x3e\x3c\x2f\x42\x3e\x3c\x2f\x42\x3e\x3c\x2f\x31\x31\x3e\x5c\x27\x7d\x62\x28\x22\x46\x22\x2c\x64\x29\x2e\x31\x4e\x28\x77\x29\x3b\x78\x28\x67\x2e\x31\x58\x29\x7b\x62\x28\x22\x46\x22\x2c\x64\x29\x2e\x31\x59\x28\x22\x31\x7a\x2d\x31\x5a\x22\x29\x3b\x62\x28\x67\x2e\x31\x66\x2b\x22\x20\x2e\x33\x71\x2d\x33\x72\x22\x29\x2e\x33\x73\x28\x7b\x32\x4e\x3a\x22\x33\x75\x22\x2c\x33\x6c\x3a\x22\x2e\x31\x7a\x2d\x31\x5a\x20\x3e\x20\x31\x31\x22\x2c\x33\x39\x3a\x31\x35\x2c\x32\x5a\x3a\x33\x38\x2c\x32\x51\x3a\x31\x35\x2c\x32\x52\x3a\x33\x2c\x32\x54\x3a\x31\x35\x2c\x32\x55\x3a\x30\x2c\x32\x56\x3a\x34\x2c\x32\x57\x3a\x4c\x2c\x32\x58\x3a\x34\x7d\x29\x7d\x45\x7b\x78\x28\x67\x2e\x54\x21\x3d\x4c\x29\x7b\x64\x2e\x31\x4e\x28\x5c\x27\x3c\x31\x67\x20\x43\x3d\x22\x31\x4d\x2d\x31\x4c\x2d\x5a\x22\x3e\x3c\x61\x20\x4a\x3d\x22\x2f\x32\x59\x2f\x33\x30\x2f\x5c\x27\x2b\x33\x31\x28\x67\x2e\x54\x29\x2b\x5c\x27\x3f\x26\x31\x47\x2d\x31\x48\x3d\x37\x22\x3e\x3c\x69\x20\x43\x3d\x22\x31\x73\x2d\x33\x33\x2d\x46\x22\x3e\x3c\x2f\x69\x3e\x3c\x2f\x61\x3e\x3c\x2f\x31\x67\x3e\x5c\x27\x29\x7d\x7d\x64\x2e\x33\x35\x28\x67\x2e\x31\x6d\x29\x7d\x2c\x22\x33\x37\x22\x29\x7d\x29\x28\x32\x35\x29\x7d\x44\x20\x34\x6a\x28\x61\x29\x7b\x28\x44\x28\x62\x29\x7b\x41\x20\x67\x3d\x7b\x31\x62\x3a\x22\x22\x2c\x32\x31\x3a\x36\x2c\x31\x66\x3a\x22\x22\x2c\x31\x49\x3a\x31\x50\x2c\x31\x55\x3a\x31\x50\x2c\x31\x64\x3a\x31\x42\x2c\x31\x58\x3a\x4c\x2c\x31\x6d\x3a\x22\x32\x74\x22\x2c\x31\x54\x3a\x22\x22\x2c\x31\x4a\x3a\x5b\x22\x32\x73\x22\x2c\x22\x32\x71\x22\x2c\x22\x32\x6e\x22\x2c\x22\x32\x67\x22\x2c\x22\x32\x6c\x22\x2c\x22\x32\x6b\x22\x2c\x22\x32\x6a\x22\x2c\x22\x32\x69\x22\x2c\x22\x32\x75\x22\x2c\x22\x32\x77\x22\x2c\x22\x32\x76\x22\x2c\x22\x32\x4c\x22\x5d\x2c\x54\x3a\x4c\x7d\x3b\x67\x3d\x62\x2e\x32\x4b\x28\x7b\x7d\x2c\x67\x2c\x61\x29\x3b\x41\x20\x64\x3d\x62\x28\x67\x2e\x31\x66\x29\x3b\x64\x2e\x31\x6a\x28\x5c\x27\x3c\x42\x20\x43\x3d\x22\x34\x6c\x2d\x31\x4c\x22\x3e\x3c\x46\x3e\x3c\x2f\x46\x3e\x3c\x2f\x42\x3e\x5c\x27\x29\x2e\x31\x59\x28\x67\x2e\x31\x6d\x29\x3b\x62\x2e\x32\x47\x28\x28\x67\x2e\x31\x62\x3d\x3d\x3d\x22\x22\x3f\x31\x37\x2e\x31\x44\x2e\x32\x45\x2b\x22\x2f\x2f\x22\x2b\x31\x37\x2e\x31\x44\x2e\x32\x44\x3a\x67\x2e\x31\x62\x29\x2b\x22\x2f\x32\x79\x2f\x32\x46\x2f\x31\x69\x22\x2b\x28\x67\x2e\x54\x3d\x3d\x3d\x4c\x3f\x22\x22\x3a\x22\x2f\x2d\x2f\x22\x2b\x67\x2e\x54\x29\x2b\x22\x3f\x31\x47\x2d\x31\x48\x3d\x22\x2b\x67\x2e\x32\x31\x2b\x22\x26\x32\x6d\x3d\x31\x78\x26\x32\x7a\x3d\x32\x78\x2d\x56\x2d\x32\x48\x22\x2c\x44\x28\x74\x29\x7b\x41\x20\x6d\x2c\x75\x2c\x68\x2c\x4d\x2c\x6f\x2c\x76\x2c\x6b\x2c\x73\x2c\x72\x2c\x6c\x2c\x71\x2c\x6a\x2c\x66\x2c\x77\x3d\x22\x22\x2c\x70\x3d\x74\x2e\x31\x53\x2e\x31\x52\x3b\x52\x28\x41\x20\x6e\x3d\x30\x3b\x6e\x3c\x70\x2e\x7a\x3b\x6e\x2b\x2b\x29\x7b\x52\x28\x41\x20\x65\x3d\x30\x3b\x65\x3c\x70\x5b\x6e\x5d\x2e\x49\x2e\x7a\x3b\x65\x2b\x2b\x29\x7b\x78\x28\x70\x5b\x6e\x5d\x2e\x49\x5b\x65\x5d\x2e\x31\x72\x3d\x3d\x22\x32\x66\x22\x29\x7b\x6d\x3d\x70\x5b\x6e\x5d\x2e\x49\x5b\x65\x5d\x2e\x4a\x3b\x31\x76\x7d\x7d\x52\x28\x41\x20\x66\x3d\x30\x3b\x66\x3c\x65\x3b\x66\x2b\x2b\x29\x7b\x78\x28\x70\x5b\x6e\x5d\x2e\x49\x5b\x66\x5d\x2e\x31\x72\x3d\x3d\x22\x32\x49\x22\x26\x26\x70\x5b\x6e\x5d\x2e\x49\x5b\x66\x5d\x2e\x58\x3d\x3d\x22\x31\x77\x2f\x31\x6a\x22\x29\x7b\x4d\x3d\x70\x5b\x6e\x5d\x2e\x49\x5b\x66\x5d\x2e\x5a\x2e\x32\x4d\x28\x22\x20\x22\x29\x5b\x30\x5d\x3b\x31\x76\x7d\x7d\x78\x28\x22\x31\x39\x24\x31\x63\x22\x56\x20\x70\x5b\x6e\x5d\x29\x7b\x6f\x3d\x70\x5b\x6e\x5d\x2e\x31\x39\x24\x31\x63\x2e\x32\x33\x7d\x45\x7b\x6f\x3d\x67\x2e\x31\x54\x7d\x78\x28\x22\x31\x56\x22\x56\x20\x70\x5b\x6e\x5d\x29\x7b\x68\x3d\x70\x5b\x6e\x5d\x2e\x31\x56\x2e\x24\x74\x7d\x45\x7b\x78\x28\x22\x31\x69\x22\x56\x20\x70\x5b\x6e\x5d\x29\x7b\x68\x3d\x70\x5b\x6e\x5d\x2e\x31\x69\x2e\x24\x74\x7d\x45\x7b\x68\x3d\x22\x22\x7d\x7d\x68\x3d\x68\x2e\x57\x28\x2f\x3c\x5c\x5c\x53\x5b\x5e\x3e\x5d\x2a\x3e\x2f\x67\x2c\x22\x22\x29\x3b\x78\x28\x68\x2e\x7a\x3e\x67\x2e\x31\x64\x29\x7b\x68\x3d\x68\x2e\x55\x28\x30\x2c\x67\x2e\x31\x64\x29\x2b\x22\x2e\x2e\x2e\x22\x7d\x78\x28\x70\x5b\x6e\x5d\x3d\x3d\x3d\x70\x5b\x30\x5d\x29\x7b\x6f\x3d\x6f\x2e\x57\x28\x2f\x5c\x5c\x2f\x73\x5b\x30\x2d\x39\x5d\x2b\x5c\x5c\x2d\x63\x2f\x67\x2c\x22\x2f\x73\x22\x2b\x67\x2e\x31\x49\x2b\x22\x22\x29\x3b\x78\x28\x6f\x2e\x32\x34\x28\x22\x31\x75\x2e\x32\x41\x2e\x31\x46\x2f\x32\x42\x2f\x22\x29\x21\x3d\x2d\x31\x29\x7b\x6f\x3d\x6f\x2e\x57\x28\x22\x32\x43\x22\x2c\x22\x30\x22\x29\x7d\x6b\x3d\x22\x3c\x70\x3e\x22\x2b\x68\x2b\x22\x3c\x2f\x70\x3e\x22\x7d\x45\x7b\x6f\x3d\x6f\x2e\x57\x28\x2f\x5c\x5c\x2f\x73\x5b\x30\x2d\x39\x5d\x2b\x5c\x5c\x2d\x63\x2f\x67\x2c\x22\x2f\x73\x22\x2b\x67\x2e\x31\x55\x2b\x22\x22\x29\x3b\x6b\x3d\x22\x3c\x70\x3e\x22\x2b\x68\x2b\x22\x3c\x2f\x70\x3e\x22\x7d\x75\x3d\x70\x5b\x6e\x5d\x2e\x5a\x2e\x24\x74\x3b\x66\x3d\x70\x5b\x6e\x5d\x2e\x31\x78\x2e\x24\x74\x2e\x55\x28\x30\x2c\x31\x30\x29\x3b\x73\x3d\x66\x2e\x55\x28\x30\x2c\x34\x29\x3b\x72\x3d\x66\x2e\x55\x28\x35\x2c\x37\x29\x3b\x6c\x3d\x66\x2e\x55\x28\x38\x2c\x31\x30\x29\x3b\x71\x3d\x67\x2e\x31\x4a\x5b\x32\x70\x28\x72\x2c\x31\x30\x29\x2d\x31\x5d\x3b\x76\x3d\x5c\x27\x3c\x42\x20\x43\x3d\x22\x31\x4d\x2d\x32\x72\x22\x3e\x3c\x61\x20\x5a\x3d\x22\x5c\x27\x2b\x75\x2b\x5c\x27\x22\x20\x43\x3d\x22\x20\x22\x20\x4a\x3d\x22\x5c\x27\x2b\x6d\x2b\x5c\x27\x22\x3e\x3c\x31\x75\x20\x32\x36\x3d\x22\x5c\x27\x2b\x6f\x2b\x5c\x27\x22\x2f\x3e\x3c\x31\x45\x20\x43\x3d\x22\x34\x64\x2d\x31\x73\x22\x3e\x3c\x2f\x31\x45\x3e\x3c\x2f\x61\x3e\x3c\x2f\x42\x3e\x5c\x27\x3b\x77\x2b\x3d\x5c\x27\x3c\x31\x31\x3e\x3c\x42\x20\x43\x3d\x22\x34\x63\x22\x3e\x5c\x27\x2b\x76\x2b\x5c\x27\x20\x3c\x31\x4b\x3e\x3c\x61\x20\x4a\x3d\x22\x5c\x27\x2b\x6d\x2b\x5c\x27\x22\x3e\x5c\x27\x2b\x75\x2b\x5c\x27\x3c\x2f\x61\x3e\x3c\x2f\x31\x4b\x3e\x3c\x42\x20\x43\x3d\x22\x33\x65\x22\x3e\x3c\x42\x20\x43\x3d\x22\x33\x67\x2d\x33\x6a\x22\x3e\x3c\x31\x45\x20\x43\x3d\x22\x33\x62\x20\x31\x73\x2d\x33\x6b\x22\x2f\x3e\x5c\x27\x2b\x71\x2b\x5c\x27\x20\x5c\x27\x2b\x6c\x2b\x5c\x27\x3c\x31\x51\x2f\x3e\x2c\x3c\x2f\x31\x51\x3e\x20\x5c\x27\x2b\x73\x2b\x5c\x27\x3c\x2f\x42\x3e\x5c\x27\x2b\x6b\x2b\x5c\x27\x3c\x42\x20\x43\x3d\x22\x33\x6f\x22\x3e\x3c\x2f\x42\x3e\x3c\x2f\x42\x3e\x3c\x2f\x42\x3e\x3c\x2f\x31\x31\x3e\x5c\x27\x7d\x62\x28\x22\x46\x22\x2c\x64\x29\x2e\x31\x4e\x28\x77\x29\x3b\x78\x28\x67\x2e\x31\x58\x29\x7b\x62\x28\x22\x46\x22\x2c\x64\x29\x2e\x31\x59\x28\x22\x31\x7a\x2d\x31\x5a\x22\x29\x3b\x62\x28\x67\x2e\x31\x66\x2b\x22\x20\x2e\x33\x71\x2d\x33\x72\x22\x29\x2e\x33\x73\x28\x7b\x32\x4e\x3a\x22\x33\x75\x22\x2c\x33\x6c\x3a\x22\x2e\x31\x7a\x2d\x31\x5a\x20\x3e\x20\x31\x31\x22\x2c\x33\x39\x3a\x31\x35\x2c\x32\x5a\x3a\x33\x38\x2c\x32\x51\x3a\x31\x35\x2c\x32\x52\x3a\x33\x2c\x32\x54\x3a\x31\x35\x2c\x32\x55\x3a\x30\x2c\x32\x56\x3a\x34\x2c\x32\x57\x3a\x4c\x2c\x32\x58\x3a\x34\x7d\x29\x7d\x45\x7b\x78\x28\x67\x2e\x54\x21\x3d\x4c\x29\x7b\x64\x2e\x31\x4e\x28\x5c\x27\x3c\x31\x67\x20\x43\x3d\x22\x31\x4d\x2d\x31\x4c\x2d\x5a\x22\x3e\x3c\x61\x20\x4a\x3d\x22\x2f\x32\x59\x2f\x33\x30\x2f\x5c\x27\x2b\x33\x31\x28\x67\x2e\x54\x29\x2b\x5c\x27\x3f\x26\x31\x47\x2d\x31\x48\x3d\x37\x22\x3e\x3c\x69\x20\x43\x3d\x22\x31\x73\x2d\x33\x33\x2d\x46\x22\x3e\x3c\x2f\x69\x3e\x3c\x2f\x61\x3e\x3c\x2f\x31\x67\x3e\x5c\x27\x29\x7d\x7d\x64\x2e\x33\x35\x28\x67\x2e\x31\x6d\x29\x7d\x2c\x22\x33\x37\x22\x29\x7d\x29\x28\x32\x35\x29\x7d\x32\x35\x28\x31\x57\x29\x2e\x32\x64\x28\x44\x28\x24\x29\x7b\x41\x20\x24\x31\x6e\x3d\x24\x28\x5c\x27\x23\x31\x6e\x5c\x27\x29\x2c\x24\x32\x65\x3d\x24\x28\x5c\x27\x2e\x31\x6e\x2d\x34\x34\x5c\x27\x29\x2c\x24\x33\x61\x3d\x24\x28\x5c\x27\x2e\x33\x36\x2d\x46\x20\x3e\x20\x61\x5c\x27\x29\x3b\x24\x32\x65\x2e\x32\x32\x28\x44\x28\x65\x29\x7b\x65\x2e\x32\x63\x28\x29\x3b\x24\x32\x65\x2e\x31\x41\x28\x5c\x27\x31\x79\x5c\x27\x29\x3b\x24\x31\x6e\x2e\x31\x41\x28\x5c\x27\x31\x79\x5c\x27\x29\x7d\x29\x3b\x24\x33\x61\x2e\x32\x32\x28\x44\x28\x65\x29\x7b\x65\x2e\x32\x63\x28\x29\x3b\x41\x20\x24\x48\x3d\x24\x28\x48\x29\x3b\x24\x48\x2e\x31\x41\x28\x5c\x27\x31\x79\x5c\x27\x29\x2e\x34\x35\x28\x5c\x27\x46\x5c\x27\x29\x2e\x31\x41\x28\x5c\x27\x31\x79\x5c\x27\x29\x7d\x29\x3b\x24\x28\x5c\x27\x2e\x31\x6e\x20\x31\x31\x3a\x34\x36\x28\x2e\x33\x36\x2d\x46\x29\x5c\x27\x29\x2e\x32\x32\x28\x44\x28\x65\x29\x7b\x24\x28\x22\x23\x31\x6e\x22\x29\x2e\x31\x41\x28\x22\x31\x79\x22\x29\x7d\x29\x7d\x29\x3b\x24\x28\x31\x37\x29\x2e\x31\x7a\x28\x44\x28\x29\x7b\x41\x20\x33\x34\x3d\x24\x28\x31\x37\x29\x2e\x33\x69\x28\x29\x3b\x78\x28\x33\x34\x3e\x31\x42\x29\x7b\x24\x28\x5c\x27\x23\x32\x37\x5c\x27\x29\x2e\x34\x37\x28\x29\x7d\x45\x7b\x24\x28\x5c\x27\x23\x32\x37\x5c\x27\x29\x2e\x34\x38\x28\x29\x7d\x7d\x29\x3b\x24\x28\x31\x57\x29\x2e\x32\x64\x28\x44\x28\x29\x7b\x24\x28\x22\x23\x32\x37\x22\x29\x2e\x32\x32\x28\x44\x28\x33\x6d\x29\x7b\x33\x6d\x2e\x32\x63\x28\x29\x3b\x24\x28\x22\x31\x6a\x2c\x20\x32\x62\x22\x29\x2e\x34\x39\x28\x7b\x33\x69\x3a\x30\x7d\x2c\x22\x34\x61\x22\x29\x3b\x32\x61\x20\x4c\x7d\x29\x7d\x29\x3b\x24\x28\x31\x57\x29\x2e\x32\x64\x28\x44\x28\x29\x7b\x24\x28\x5c\x27\x23\x33\x68\x5c\x27\x29\x2e\x31\x6a\x28\x5c\x27\x3c\x61\x20\x4a\x3d\x22\x32\x38\x3a\x2f\x2f\x33\x64\x2e\x33\x63\x2e\x31\x46\x2f\x22\x20\x4b\x3d\x22\x34\x62\x3a\x33\x66\x20\x21\x31\x71\x3b\x32\x39\x3a\x34\x65\x2d\x34\x32\x21\x31\x71\x3b\x34\x66\x3a\x31\x21\x31\x71\x3b\x34\x67\x3a\x34\x72\x21\x31\x71\x3b\x31\x77\x2d\x34\x71\x3a\x34\x6f\x21\x31\x71\x3b\x34\x70\x3a\x23\x34\x68\x21\x31\x71\x22\x20\x31\x72\x3d\x22\x34\x6e\x22\x3e\x34\x6d\x3c\x2f\x61\x3e\x5c\x27\x29\x3b\x34\x6b\x28\x44\x28\x29\x7b\x78\x28\x21\x24\x28\x5c\x27\x23\x33\x68\x3a\x33\x66\x5c\x27\x29\x2e\x7a\x29\x31\x37\x2e\x31\x44\x2e\x4a\x3d\x5c\x27\x32\x38\x3a\x2f\x2f\x33\x64\x2e\x33\x63\x2e\x31\x46\x2f\x5c\x27\x7d\x2c\x33\x5a\x29\x7d\x29\x27\x2c\x36\x32\x2c\x32\x37\x36\x2c\x27\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x7c\x69\x66\x7c\x7c\x6c\x65\x6e\x67\x74\x68\x7c\x76\x61\x72\x7c\x64\x69\x76\x7c\x63\x6c\x61\x73\x73\x7c\x66\x75\x6e\x63\x74\x69\x6f\x6e\x7c\x65\x6c\x73\x65\x7c\x75\x6c\x7c\x75\x72\x6c\x73\x7c\x74\x68\x69\x73\x7c\x6c\x69\x6e\x6b\x7c\x68\x72\x65\x66\x7c\x73\x74\x79\x6c\x65\x7c\x66\x61\x6c\x73\x65\x7c\x7c\x77\x72\x61\x70\x70\x65\x72\x7c\x74\x69\x74\x6c\x65\x73\x7c\x6e\x65\x77\x7c\x41\x72\x72\x61\x79\x7c\x66\x6f\x72\x7c\x7c\x74\x61\x67\x4e\x61\x6d\x65\x7c\x73\x75\x62\x73\x74\x72\x69\x6e\x67\x7c\x69\x6e\x7c\x72\x65\x70\x6c\x61\x63\x65\x7c\x74\x79\x70\x65\x7c\x74\x69\x74\x6c\x65\x73\x4e\x75\x6d\x7c\x74\x69\x74\x6c\x65\x7c\x7c\x6c\x69\x7c\x66\x6c\x6f\x61\x74\x7c\x73\x70\x6c\x69\x63\x65\x7c\x74\x68\x75\x6d\x62\x7c\x74\x72\x75\x65\x7c\x63\x6f\x6d\x6d\x65\x6e\x74\x73\x4e\x75\x6d\x7c\x77\x69\x6e\x64\x6f\x77\x7c\x6d\x61\x74\x63\x68\x7c\x6d\x65\x64\x69\x61\x7c\x6c\x65\x66\x74\x7c\x62\x6c\x6f\x67\x55\x52\x4c\x7c\x74\x68\x75\x6d\x62\x6e\x61\x69\x6c\x7c\x53\x75\x6d\x6d\x61\x72\x79\x6c\x65\x6e\x67\x74\x68\x7c\x73\x69\x64\x65\x62\x61\x72\x7c\x69\x64\x63\x6f\x6e\x74\x61\x69\x6e\x74\x7c\x68\x34\x7c\x72\x69\x67\x68\x74\x7c\x73\x75\x6d\x6d\x61\x72\x79\x7c\x68\x74\x6d\x6c\x7c\x72\x65\x70\x6c\x61\x63\x65\x57\x69\x74\x68\x7c\x6d\x61\x69\x6e\x7c\x6c\x6f\x61\x64\x69\x6e\x67\x43\x6c\x61\x73\x73\x7c\x6d\x65\x6e\x75\x7c\x70\x6f\x73\x74\x7c\x64\x77\x7c\x69\x6d\x70\x6f\x72\x74\x61\x6e\x74\x7c\x72\x65\x6c\x7c\x69\x63\x6f\x6e\x7c\x74\x69\x6d\x65\x52\x7c\x69\x6d\x67\x7c\x62\x72\x65\x61\x6b\x7c\x74\x65\x78\x74\x7c\x70\x75\x62\x6c\x69\x73\x68\x65\x64\x7c\x61\x63\x74\x69\x76\x65\x7c\x73\x63\x72\x6f\x6c\x6c\x7c\x74\x6f\x67\x67\x6c\x65\x43\x6c\x61\x73\x73\x7c\x31\x30\x30\x7c\x63\x6f\x6d\x6d\x65\x6e\x74\x73\x7c\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x7c\x73\x70\x61\x6e\x7c\x63\x6f\x6d\x7c\x6d\x61\x78\x7c\x72\x65\x73\x75\x6c\x74\x73\x7c\x46\x69\x72\x73\x74\x49\x6d\x61\x67\x65\x53\x69\x7a\x65\x7c\x4d\x6f\x6e\x74\x68\x4e\x61\x6d\x65\x73\x7c\x68\x32\x7c\x62\x6f\x78\x7c\x75\x6a\x7c\x61\x70\x70\x65\x6e\x64\x7c\x77\x69\x64\x74\x68\x7c\x36\x30\x30\x7c\x65\x6d\x7c\x65\x6e\x74\x72\x79\x7c\x66\x65\x65\x64\x7c\x70\x42\x6c\x61\x6e\x6b\x7c\x49\x6d\x61\x67\x65\x53\x69\x7a\x65\x7c\x63\x6f\x6e\x74\x65\x6e\x74\x7c\x64\x6f\x63\x75\x6d\x65\x6e\x74\x7c\x61\x6e\x69\x6d\x61\x74\x65\x64\x7c\x61\x64\x64\x43\x6c\x61\x73\x73\x7c\x69\x74\x65\x6d\x7c\x7c\x4d\x61\x78\x50\x6f\x73\x74\x7c\x63\x6c\x69\x63\x6b\x7c\x75\x72\x6c\x7c\x69\x6e\x64\x65\x78\x4f\x66\x7c\x6a\x51\x75\x65\x72\x79\x7c\x73\x72\x63\x7c\x62\x72\x69\x6e\x67\x75\x70\x7c\x68\x74\x74\x70\x73\x7c\x64\x69\x73\x70\x6c\x61\x79\x7c\x72\x65\x74\x75\x72\x6e\x7c\x62\x6f\x64\x79\x7c\x70\x72\x65\x76\x65\x6e\x74\x44\x65\x66\x61\x75\x6c\x74\x7c\x72\x65\x61\x64\x79\x7c\x6d\x65\x6e\x75\x6c\x69\x6e\x6b\x7c\x61\x6c\x74\x65\x72\x6e\x61\x74\x65\x7c\x41\x70\x72\x7c\x73\x74\x72\x69\x6b\x65\x7c\x41\x75\x67\x7c\x4a\x75\x6c\x7c\x4a\x75\x6e\x7c\x4d\x61\x79\x7c\x6f\x72\x64\x65\x72\x62\x79\x7c\x4d\x61\x72\x7c\x65\x61\x63\x68\x7c\x70\x61\x72\x73\x65\x49\x6e\x74\x7c\x46\x65\x62\x7c\x69\x6d\x61\x67\x65\x7c\x4a\x61\x6e\x7c\x6c\x6f\x61\x64\x69\x6e\x67\x7a\x7c\x53\x65\x70\x7c\x4e\x6f\x76\x7c\x4f\x63\x74\x7c\x6a\x73\x6f\x6e\x7c\x66\x65\x65\x64\x73\x7c\x61\x6c\x74\x7c\x79\x6f\x75\x74\x75\x62\x65\x7c\x76\x69\x7c\x64\x65\x66\x61\x75\x6c\x74\x7c\x68\x6f\x73\x74\x7c\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x7c\x70\x6f\x73\x74\x73\x7c\x67\x65\x74\x7c\x73\x63\x72\x69\x70\x74\x7c\x72\x65\x70\x6c\x69\x65\x73\x7c\x66\x75\x6c\x6c\x7c\x65\x78\x74\x65\x6e\x64\x7c\x44\x65\x63\x7c\x73\x70\x6c\x69\x74\x7c\x61\x6e\x69\x6d\x61\x74\x69\x6f\x6e\x7c\x63\x6f\x6d\x6d\x65\x6e\x74\x59\x4e\x7c\x72\x63\x6f\x6d\x6d\x65\x6e\x74\x7c\x70\x61\x75\x73\x65\x4f\x6e\x48\x6f\x76\x65\x72\x7c\x6d\x6f\x76\x65\x7c\x63\x6f\x6e\x74\x61\x69\x6e\x73\x7c\x63\x6f\x6e\x74\x72\x6f\x6c\x4e\x61\x76\x7c\x69\x74\x65\x6d\x4d\x61\x72\x67\x69\x6e\x7c\x6d\x69\x6e\x49\x74\x65\x6d\x73\x7c\x6d\x6f\x75\x73\x65\x77\x68\x65\x65\x6c\x7c\x6d\x61\x78\x49\x74\x65\x6d\x73\x7c\x73\x65\x61\x72\x63\x68\x7c\x69\x74\x65\x6d\x57\x69\x64\x74\x68\x7c\x6c\x61\x62\x65\x6c\x7c\x65\x6e\x63\x6f\x64\x65\x55\x52\x49\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x7c\x72\x64\x69\x73\x61\x62\x6c\x65\x7c\x6c\x69\x73\x74\x7c\x68\x65\x69\x67\x68\x74\x7c\x72\x65\x6d\x6f\x76\x65\x43\x6c\x61\x73\x73\x7c\x77\x69\x74\x68\x7c\x6a\x73\x6f\x6e\x70\x7c\x32\x39\x30\x7c\x61\x6e\x69\x6d\x61\x74\x69\x6f\x6e\x4c\x6f\x6f\x70\x7c\x6d\x65\x6e\x75\x54\x72\x69\x67\x67\x65\x72\x7c\x66\x70\x7c\x62\x6c\x6f\x67\x67\x65\x72\x74\x68\x65\x6d\x65\x39\x7c\x77\x77\x77\x7c\x62\x6f\x6f\x73\x74\x7c\x76\x69\x73\x69\x62\x6c\x65\x7c\x6d\x65\x74\x61\x7c\x63\x72\x65\x64\x69\x74\x7c\x73\x63\x72\x6f\x6c\x6c\x54\x6f\x70\x7c\x69\x6e\x66\x6f\x7c\x63\x61\x6c\x65\x6e\x64\x61\x72\x7c\x73\x65\x6c\x65\x63\x74\x6f\x72\x7c\x65\x76\x65\x6e\x74\x7c\x74\x68\x72\x7c\x63\x6c\x65\x61\x72\x7c\x74\x6f\x74\x61\x6c\x7c\x62\x75\x6f\x7c\x6e\x67\x6a\x6f\x77\x6f\x7c\x66\x6c\x65\x78\x73\x6c\x69\x64\x65\x72\x7c\x6e\x6f\x6e\x65\x7c\x73\x6c\x69\x64\x65\x7c\x4d\x61\x74\x68\x7c\x41\x41\x41\x41\x41\x41\x41\x41\x45\x45\x67\x7c\x6f\x76\x65\x72\x6c\x61\x79\x7c\x56\x35\x56\x62\x33\x68\x35\x62\x67\x47\x49\x7c\x70\x41\x6b\x79\x41\x42\x6c\x53\x49\x39\x49\x7c\x62\x6c\x6f\x67\x73\x70\x6f\x74\x7c\x62\x70\x7c\x73\x33\x32\x30\x7c\x72\x65\x6c\x61\x74\x65\x64\x5f\x72\x65\x73\x75\x6c\x74\x73\x5f\x6c\x61\x62\x65\x6c\x73\x7c\x6e\x6f\x7c\x30\x33\x58\x4c\x52\x5f\x66\x55\x48\x66\x63\x69\x75\x61\x79\x6c\x4a\x4a\x43\x69\x31\x47\x78\x44\x47\x32\x4c\x77\x39\x57\x71\x56\x77\x43\x4c\x63\x42\x7c\x77\x68\x69\x6c\x65\x7c\x63\x6f\x75\x70\x65\x72\x7c\x79\x65\x73\x7c\x73\x69\x7a\x65\x7c\x73\x37\x32\x7c\x72\x65\x6c\x61\x74\x65\x64\x7c\x61\x72\x74\x69\x63\x6c\x65\x7c\x69\x6e\x6e\x65\x72\x48\x54\x4d\x4c\x7c\x62\x69\x6d\x62\x7c\x64\x65\x6c\x61\x74\x65\x7c\x6d\x61\x78\x72\x65\x73\x75\x6c\x74\x73\x7c\x6a\x70\x67\x7c\x67\x65\x74\x45\x6c\x65\x6d\x65\x6e\x74\x42\x79\x49\x64\x7c\x62\x6f\x77\x7c\x72\x6e\x7c\x72\x61\x6e\x64\x6f\x6d\x7c\x66\x6c\x6f\x6f\x72\x7c\x70\x72\x69\x6e\x74\x52\x65\x6c\x61\x74\x65\x64\x4c\x61\x62\x65\x6c\x73\x7c\x72\x65\x6d\x6f\x76\x65\x52\x65\x6c\x61\x74\x65\x64\x44\x75\x70\x6c\x69\x63\x61\x74\x65\x73\x7c\x33\x30\x30\x30\x7c\x64\x69\x73\x61\x62\x6c\x65\x7c\x53\x68\x6f\x77\x50\x6f\x73\x74\x32\x7c\x62\x6c\x6f\x63\x6b\x7c\x62\x72\x75\x74\x65\x7c\x62\x74\x6e\x7c\x6e\x65\x78\x74\x7c\x6e\x6f\x74\x7c\x66\x61\x64\x65\x49\x6e\x7c\x66\x61\x64\x65\x4f\x75\x74\x7c\x61\x6e\x69\x6d\x61\x74\x65\x7c\x73\x6c\x6f\x77\x7c\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x7c\x62\x69\x6e\x67\x6f\x7c\x70\x6c\x61\x79\x7c\x69\x6e\x6c\x69\x6e\x65\x7c\x6f\x70\x61\x63\x69\x74\x79\x7c\x70\x6f\x73\x69\x74\x69\x6f\x6e\x7c\x41\x38\x30\x43\x30\x44\x7c\x64\x69\x6e\x67\x6f\x7c\x53\x68\x6f\x77\x50\x6f\x73\x74\x36\x7c\x73\x65\x74\x49\x6e\x74\x65\x72\x76\x61\x6c\x7c\x76\x69\x64\x65\x6f\x7c\x42\x6c\x6f\x67\x67\x65\x72\x74\x68\x65\x6d\x65\x39\x7c\x64\x6f\x66\x6f\x6c\x6c\x6f\x77\x7c\x30\x70\x78\x7c\x63\x6f\x6c\x6f\x72\x7c\x69\x6e\x64\x65\x6e\x74\x7c\x73\x74\x61\x74\x69\x63\x27\x2e\x73\x70\x6c\x69\x74\x28\x27\x7c\x27\x29\x2c\x30\x2c\x7b\x7d\x29\x29\x0a";eval(_g8AEsS);
//]]>
</script>
<b:if cond='data:view.isHomepage'>
</b:if>
<b:defaultmarkups>
<b:defaultmarkup type='Common'>
<b:includable id='widget-title'>
<b:if cond='data:defaultTitle or data:title'>
<div class='widget-title'>
<h3 class='title'>
<data:title/>
</h3>
</div>
</b:if>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='AdSense,Blog'>
<b:includable id='defaultAdUnit'>
<!-- Clear out style (need non-empty string) -->
<b:with value='"/* Done in css. */"' var='style'>
<b:include name='super.defaultAdUnit'/>
</b:with>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='PopularPosts'>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<div class='widget-content'>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='postContent'/>
</b:loop>
</div>
</b:includable>
<b:includable id='postContent' var='post'>
<div class='post'>
<div class='post-content'>
<a class='post-image-link' expr:href='data:post.url'>
<b:if cond='data:post.featuredImage'>
<img class='post-thumb' expr:alt='data:post.title' expr:src='data:post.featuredImage resizeImage 680'/>
<b:else/>
<img class='post-thumb' expr:alt='data:post.title' src='https://4.bp.blogspot.com/-O3EpVMWcoKw/WxY6-6I4--I/AAAAAAAAB2s/KzC0FqUQtkMdw7VzT6oOR_8vbZO6EJc-ACK4BGAYYCw/w680/nth.png'/>
</b:if>
</a>
<div class='post-info'>
<h2 class='post-title'>
<a expr:href='data:post.url'><data:post.title/></a>
</h2>
<div class='title-secondary'>
<span class='post-date published' expr:datetime='data:post.date.iso8601'><data:post.date/></span>
</div>
</div>
</div>
</div>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Header'>
<b:includable id='main' var='this'>
<div class='header-widget'>
<b:include cond='data:imagePlacement in {"REPLACE", "BEFORE_DESCRIPTION"}' name='image'/>
<b:include cond='data:imagePlacement == "BEHIND"' name='title'/>
</div>
</b:includable>
<b:includable id='image'>
<a class='header-image-wrapper' expr:href='data:blog.homepageUrl'>
<img expr:alt='data:blog.title.escaped' expr:data-height='data:height' expr:data-width='data:width' expr:src='data:image'/>
</a>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='FeaturedPost'>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<div class='widget-content'>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='postContent'/>
</b:loop>
</div>
</b:includable>
<b:includable id='postContent' var='post'>
<div class='post'>
<div class='post-content'>
<a class='post-image-link' expr:href='data:post.url'>
<b:if cond='data:post.featuredImage'>
<img class='post-thumb' expr:alt='data:post.title' expr:src='data:post.featuredImage resizeImage 680'/>
<b:else/>
<img class='post-thumb' expr:alt='data:post.title' src='https://4.bp.blogspot.com/-O3EpVMWcoKw/WxY6-6I4--I/AAAAAAAAB2s/KzC0FqUQtkMdw7VzT6oOR_8vbZO6EJc-ACK4BGAYYCw/w680/nth.png'/>
</b:if>
<span class='post-tag'><data:post.labels.last.name/></span>
</a>
<div class='post-info'>
<h2 class='post-title'>
<a expr:href='data:post.url'><data:post.title/></a>
</h2>
<div class='title-secondary'>
<span class='post-date published' expr:datetime='data:post.date.iso8601'><data:post.date/></span>
</div>
</div>
</div>
</div>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Label'>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<b:class expr:name='data:this.display + "-label"'/>
<b:include cond='data:this.display == "list"' name='list'/>
<b:include cond='data:this.display == "cloud"' name='list'/>
</div>
</b:includable>
<b:includable id='list'>
<ul>
<b:loop values='data:labels' var='label'>
<li>
<a class='label-name' expr:href='data:label.url'>