aboutsummaryrefslogtreecommitdiff
path: root/tests/hotexamples.html
blob: 85fbccf998704c6acc797c83c02004f45521dc7f (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
<!doctype html>
<html lang=en>

<head>
	<script data-cfasync="false">
		"use strict"; !function () { var e = function () { var e, t = "__tcfapiLocator", a = [], n = window; for (; n;) { try { if (n.frames[t]) { e = n; break } } catch (e) { } if (n === window.top) break; n = n.parent } e || (!function e() { var a = n.document, r = !!n.frames[t]; if (!r) if (a.body) { var i = a.createElement("iframe"); i.style.cssText = "display:none", i.name = t, a.body.appendChild(i) } else setTimeout(e, 5); return !r }(), n.__tcfapi = function () { for (var e, t = arguments.length, n = new Array(t), r = 0; r < t; r++)n[r] = arguments[r]; if (!n.length) return a; if ("setGdprApplies" === n[0]) n.length > 3 && 2 === parseInt(n[1], 10) && "boolean" == typeof n[3] && (e = n[3], "function" == typeof n[2] && n[2]("set", !0)); else if ("ping" === n[0]) { var i = { gdprApplies: e, cmpLoaded: !1, cmpStatus: "stub" }; "function" == typeof n[2] && n[2](i) } else a.push(n) }, n.addEventListener("message", (function (e) { var t = "string" == typeof e.data, a = {}; try { a = t ? JSON.parse(e.data) : e.data } catch (e) { } var n = a.__tcfapiCall; n && window.__tcfapi(n.command, n.version, (function (a, r) { var i = { __tcfapiReturn: { returnValue: a, success: r, callId: n.callId } }; t && (i = JSON.stringify(i)), e.source.postMessage(i, "*") }), n.parameter) }), !1)) }; "undefined" != typeof module ? module.exports = e : e() }();

		document.addEventListener("DOMContentLoaded", function (event) {
			var t = document.createElement('script');
			t.async = false;
			t.src = 'https://g.ezodn.com/cmp/v2/cmp.js?v=42';
			t.setAttribute("data-cfasync", "false");
			var tag = document.getElementsByTagName('head')[0];
			tag.appendChild(t);
		});
	</script>
	<script data-ezscrex=false data-cfasync=false
		data-pagespeed-no-defer>var __ez = __ez || {}; __ez.stms = Date.now(); __ez.evt = {}; __ez.script = {}; __ez.ck = __ez.ck || {}; __ez.template = {}; __ez.template.isOrig = false; __ez.queue = (function () {
				var count = 0, incr = 0, items = [], timeDelayFired = false, hpItems = [], lpItems = [], allowLoad = true; var obj = {
					func: function (name, funcName, parameters, isBlock, blockedBy, deleteWhenComplete, proceedIfError) {
						var self = this; this.name = name; this.funcName = funcName; this.parameters = parameters === null ? null : (parameters instanceof Array) ? parameters : [parameters]; this.isBlock = isBlock; this.blockedBy = blockedBy; this.deleteWhenComplete = deleteWhenComplete; this.isError = false; this.isComplete = false; this.isInitialized = false; this.proceedIfError = proceedIfError; this.isTimeDelay = false; this.process = function () {
							log("... func = " + name); self.isInitialized = true; self.isComplete = true; log("... func.apply: " + name); var funcs = self.funcName.split('.'); var func = null; if (funcs.length > 3) { } else if (funcs.length === 3) { func = window[funcs[0]][funcs[1]][funcs[2]]; } else if (funcs.length === 2) { func = window[funcs[0]][funcs[1]]; } else { func = window[self.funcName]; }
							if (typeof func !== 'undefined' && func !== null) { func.apply(null, this.parameters); }
							if (self.deleteWhenComplete === true) delete items[name]; if (self.isBlock === true) { log("----- F'D: " + self.name); processAll(); }
						}
					}, file: function (name, path, isBlock, blockedBy, async, defer, proceedIfError) { var self = this; this.name = name; this.path = path; this.async = async; this.defer = defer; this.isBlock = isBlock; this.blockedBy = blockedBy; this.isInitialized = false; this.isError = false; this.isComplete = false; this.proceedIfError = proceedIfError; this.isTimeDelay = false; this.process = function () { self.isInitialized = true; log("... file = " + name); var scr = document.createElement('script'); scr.src = path; if (async === true) scr.async = true; else if (defer === true) scr.defer = true; scr.onerror = function () { log("----- ERR'D: " + self.name); self.isError = true; if (self.isBlock === true) { processAll(); } }; scr.onreadystatechange = scr.onload = function () { var state = scr.readyState; log("----- F'D: " + self.name); if ((!state || /loaded|complete/.test(state))) { self.isComplete = true; if (self.isBlock === true) { processAll(); } } }; document.getElementsByTagName('head')[0].appendChild(scr); } }, fileLoaded: function (name, isComplete) { this.name = name; this.path = ""; this.async = false; this.defer = false; this.isBlock = false; this.blockedBy = []; this.isInitialized = true; this.isError = false; this.isComplete = isComplete; this.proceedIfError = false; this.isTimeDelay = false; this.process = function () { }; }
				}; function init() { window.addEventListener("load", function () { setTimeout(function () { timeDelayFired = true; log('TDELAY -----'); processAll(); }, 5000); }, false); }
				function addFile(name, path, isBlock, blockedBy, async, defer, proceedIfError, priority) {
					var item = new obj.file(name, path, isBlock, blockedBy, async, defer, proceedIfError); if (priority === true) { hpItems[name] = item } else { lpItems[name] = item }
					items[name] = item; checkIfBlocked(item);
				}
				function setallowLoad(settobool) { allowLoad = settobool }
				function addFunc(name, func, parameters, isBlock, blockedBy, autoInc, deleteWhenComplete, proceedIfError, priority) {
					if (autoInc === true) name = name + "_" + incr++; var item = new obj.func(name, func, parameters, isBlock, blockedBy, deleteWhenComplete, proceedIfError); if (priority === true) { hpItems[name] = item } else { lpItems[name] = item }
					items[name] = item; checkIfBlocked(item);
				}
				function addTimeDelayFile(name, path) { var item = new obj.file(name, path, false, [], false, false, true); item.isTimeDelay = true; log(name + ' ... ' + ' FILE! TDELAY'); lpItems[name] = item; items[name] = item; checkIfBlocked(item); }
				function addTimeDelayFunc(name, func, parameters) { var item = new obj.func(name, func, parameters, false, [], true, true); item.isTimeDelay = true; log(name + ' ... ' + ' FUNCTION! TDELAY'); lpItems[name] = item; items[name] = item; checkIfBlocked(item); }
				function checkIfBlocked(item) { if (isBlocked(item) === true || allowLoad == false) return; item.process(); }
				function isBlocked(item) {
					if (item.isTimeDelay === true && timeDelayFired === false) { log(item.name + " blocked = TIME DELAY!"); return true; }
					if (item.blockedBy instanceof Array) { for (var i = 0; i < item.blockedBy.length; i++) { var block = item.blockedBy[i]; if (items.hasOwnProperty(block) === false) { log(item.name + " blocked = " + block); return true; } else if (item.proceedIfError === true && items[block].isError === true) { return false; } else if (items[block].isComplete === false) { log(item.name + " blocked = " + block); return true; } } }
					return false;
				}
				function markLoaded(filename) {
					if (!filename || 0 === filename.length) { return; }
					if (filename in items) { var item = items[filename]; if (item.isComplete === true) { log(item.name + ' ' + filename + ': error loaded duplicate') } else { item.isComplete = true; item.isInitialized = true; } } else { items[filename] = new obj.fileLoaded(filename, true); }
					log("markLoaded dummyfile: " + items[filename].name);
				}
				function logWhatsBlocked() { for (var i in items) { if (items.hasOwnProperty(i) === false) continue; var item = items[i]; isBlocked(item) } }
				function log(msg) { var href = window.location.href; var reg = new RegExp('[?&]ezq=([^&#]*)', 'i'); var string = reg.exec(href); var res = string ? string[1] : null; if (res === "1") console.debug(msg); }
				function processAll() { count++; if (count > 200) return; log("let's go"); processItems(hpItems); processItems(lpItems); }
				function processItems(list) { for (var i in list) { if (list.hasOwnProperty(i) === false) continue; var item = list[i]; if (item.isComplete === true || isBlocked(item) || item.isInitialized === true || item.isError === true) { if (item.isError === true) { log(item.name + ': error') } else if (item.isComplete === true) { log(item.name + ': complete already') } else if (item.isInitialized === true) { log(item.name + ': initialized already') } } else { item.process(); } } }
				init(); return { addFile: addFile, addDelayFile: addTimeDelayFile, addFunc: addFunc, addDelayFunc: addTimeDelayFunc, items: items, processAll: processAll, setallowLoad: setallowLoad, markLoaded: markLoaded, logWhatsBlocked: logWhatsBlocked, };
			})(); __ez.evt.add = function (e, t, n) { e.addEventListener ? e.addEventListener(t, n, !1) : e.attachEvent ? e.attachEvent("on" + t, n) : e["on" + t] = n() }, __ez.evt.remove = function (e, t, n) { e.removeEventListener ? e.removeEventListener(t, n, !1) : e.detachEvent ? e.detachEvent("on" + t, n) : delete e["on" + t] }; __ez.script.add = function (e) { var t = document.createElement("script"); t.src = e, t.async = !0, t.type = "text/javascript", document.getElementsByTagName("head")[0].appendChild(t) }; __ez.dot = {};</script>
	<script>var __sellerid = "2a3cc1bd6330017a4a81dc7384c99d31";</script>
	<link rel=preload as=script href=//securepubads.g.doubleclick.net/tag/js/gpt.js>
	<link href=//ad.doubleclick.net rel=dns-prefetch>
	<link href=//pagead2.googlesyndication.com rel=dns-prefetch>
	<link href=//googleads.g.doubleclick.net rel=dns-prefetch>
	<link href=//tpc.googlesyndication.com rel=dns-prefetch>
	<link href=//adservice.google.com rel=dns-prefetch>
	<link href=//secureads.g.doubleclick.net rel=dns-prefetch>
	<link href=//www.googletagservices.com rel=dns-prefetch>
	<link rel=preload as=script
		href="//go.ezodn.com/hb/dall.js?b=amx,appnexus,conversant,ix,medianet,oftmedia,onemobile,onetag,pubmatic,pubmatic,sovrn,unruly&cb=195-2-24">
	<script async src=//c.amazon-adsystem.com/aax2/apstag.js></script>
	<script data-cfasync=false data-pagespeed-no-defer>var __ezaps = [{ "slotID": "div-gpt-ad-hotexamples_com-box-2-0", "slotName": "/21732118914/hotexamples_com-box-2", "sizes": [[300, 250]] }, { "slotID": "div-gpt-ad-hotexamples_com-box-2-0_1", "slotName": "/21732118914/hotexamples_com-box-2", "sizes": [[300, 250]] }, { "slotID": "div-gpt-ad-hotexamples_com-box-2-0_2", "slotName": "/21732118914/hotexamples_com-box-2", "sizes": [[300, 250]] }, { "slotID": "div-gpt-ad-hotexamples_com-medrectangle-1-0", "slotName": "/21732118914/hotexamples_com-medrectangle-1", "sizes": [[728, 90]] }]; var __ezapid = "aa05931b-5308-4ea3-95a2-adf84f4ffde4"; !function (a9, a) {
			if (a[a9]) return; function q(c, r) { a[a9]._Q.push([c, r]) }
			a[a9] = { init: function () { q("i", arguments) }, fetchBids: function () { q("f", arguments) }, setDisplayBids: function () { }, targetingKeys: function () { return [] }, _Q: [] };
		}("apstag", window); apstag.init({ pubID: __ezapid, adServer: 'googletag', schain: { complete: 1, ver: '1.0', nodes: [{ asi: 'ezoic.ai', sid: __sellerid, hp: 1 }] } }); function ezapsFetchBids(amazonSlots) {
			if (typeof amazonSlots === 'undefined' || amazonSlots.length === 0) { return }
			apstag.fetchBids({ slots: amazonSlots, timeout: 2e3 }, function (bids) {
				function getSlotById(id) {
					if (typeof window.ezslots === 'undefined' || window.ezslots == 0) { return; }
					for (var i = 0; i < window.ezslots.length; i++) {
						var slot = window[ezslots[i]]; if (typeof slot === 'undefined') { continue; }
						var slotId = slot.getSlotElementId(); if (typeof slotId !== 'undefined' && slotId == id) { return slot; }
					}
				}
				function setA9DisplayBids(bids) {
					if (typeof bids === 'undefined' || bids.length == 0) { return; }
					var keys = apstag.targetingKeys(); for (var i = 0; i < bids.length; i++) { var bid = bids[i]; for (var k = 0; k < keys.length; k++) { if (keys[k] in bid) { ezSetSlotTargeting(bid.slotID, keys[k], bid[keys[k]]); } } }
				}
				googletag.cmd.push(function () { setA9DisplayBids(bids); });
			});
		}
		if (typeof __tcfapi != "undefined") { } else { ezapsFetchBids(__ezaps); }</script>
	<script>
		var __banger_pmp_deals = function () { var d = { 18: { "DealId": 18, "Floor": 25 }, 19: { "DealId": 19, "Floor": 100 }, 601: { "DealId": 601, "Floor": 13 }, 619: { "DealId": 619, "Floor": 10 }, 1428: { "DealId": 1428, "Floor": 25 } }; return [{ "SlotName": "/21732118914/hotexamples_com-medrectangle-1", "Deals": [d[18], d[19], d[601], d[619], d[1428]] }, { "SlotName": "/21732118914/hotexamples_com-box-2", "Deals": [d[18], d[601], d[619], d[1428]] }, { "SlotName": "/21732118914/hotexamples_com-box-2", "Deals": [d[18], d[601], d[619], d[1428]] }, { "SlotName": "/21732118914/hotexamples_com-box-2", "Deals": [d[18], d[601], d[619], d[1428]] }] }();
	</script>
	<script data-ezscrex=false data-cfasync=false data-pagespeed-no-defer>ezobv = 28;</script>
	<script data-ezscrex=false data-cfasync=false
		data-pagespeed-no-defer>function ez_isclean(data) {
				if (typeof data === 'undefined') { data = document.URL; }
				var re = /(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))(@|%2540|%40)((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))/; var isClean = !re.test(data); return isClean;
			}
			var ezSlotKVStore = {}; function ezSetSlotTargeting(divid, key, value) {
				var slot = ezGetSlotById(divid); if (slot) { slot.setTargeting(key, value); } else {
					if (typeof ezSlotKVStore[divid] == 'undefined') { ezSlotKVStore[divid] = {}; }
					ezSlotKVStore[divid][key] = value;
				}
			}
			function ezGetSlotById(id) {
				if (typeof window.ezslots === 'undefined' || window.ezslots == 0) { return; }
				for (var i = 0; i < window.ezslots.length; i++) {
					var slot = window[ezslots[i]]; if (typeof slot === 'undefined') { continue; }
					var slotId = slot.getSlotElementId(); if (typeof slotId !== 'undefined' && slotId == id) { return slot; }
				}
			}
			var ez_queue = new Array(); function sort_queue(a, b) { if (a.priority < b.priority) return -1; else if (a.priority == b.priority) return 0; else return 1; }
			function execute_ez_queue() {
				ez_queue.sort(sort_queue); for (var i in ez_queue) {
					if (typeof ez_queue[i].method != "undefined") {
						try { ez_queue[i].method.call(null); }
						catch (err) { }
					}
				}
			}
			window.ez_ad_units = new Array(); window.ezslots = new Array(); window.ezsrqt = {}; function ez_write_tag(d) {
				if (ez_isclean() && d instanceof Array) {
					if (typeof ezstandalone !== 'undefined' && typeof ezstandalone.selectedPlaceholders !== 'undefined' && ezstandalone.selectedPlaceholders[d[3]] === true) { return "1+1"; }
					ez_ad_units[ez_ad_units.length] = d; var dve = ""; if (typeof d[5] != 'undefined' && d[5] > 0) { dve = '_' + d[5]; }
					var ezcmd = "googletag.cmd.push(function() {var divid = 'div-gpt-ad-" + d[1] + "-" + d[4] + "" + dve + "';if(typeof ezlrarn == 'function'){ezlrarn(divid);}googletag.display(divid);var to = 0;if(" + d[2] + ".getTargeting('ga')[0] == '0'){to = 500;}if((window.ezDisableInitialLoad==true || googletag.pubads().isInitialLoadDisabled()) && window.ezoll != true){setTimeout(function(){googletag.pubads().refresh([" + d[2] + "])},to);}});"; return ezcmd;
				}
				return "1+1";
			}
			function in_array(needle, haystack) {
				var length = haystack.length; for (var i = 0; i < length; i++) { if (haystack[i] == needle) return true; }
				return false;
			}
			var ezrpos = new Array(); var ez_current_interval; var ez_current_load = 0; function __ez_fad_load(n, r) {
				if (__ez_fad_csnt() && __ez_fad_rdy() && ezslit_run[n] != true && typeof __ez_fad_divs[n] != 'undefined' && __ez_fad_divs[n].length > 0) {
					ezslit_run[n] = true; __ez_fad_gpt(); if (n > 0 && n != 5) { __ez_fad_pb(); }
					googletag.cmd.push(function () {
						var s = []; for (var i = 0; i < __ez_fad_divs[n].length; i++) { if (__ez_fad_divsd.indexOf(__ez_fad_divs[n][i]) == -1) { __ez_fad_divsd.push(__ez_fad_divs[n][i]); s.push(__ez_fad_initslot[__ez_fad_divs[n][i]](r)); googletag.display(__ez_fad_divs[n][i]); } }; var ws = []; for (i3 = 0; i3 < s.length; i3++) { ws.push(window[s[i3]]); }
						googletag.pubads().refresh(ws); setTimeout(__ez_fad_floatshow, 0);
					}); if (n == 0) {
						if (document.readyState === "complete" || document.readyState === "loaded") { googletag.cmd.push(function () { __ez_fad_load(5, null); }); setTimeout(googletag.cmd.push(function () { __ez_fad_floatshow() }), 500); setTimeout(function () { __ez_fad_load(1, null); __ez_fad_load(5, null); }, 5500); return; }
						document.addEventListener('DOMContentLoaded', function (evt) { googletag.cmd.push(function () { __ez_fad_load(5, null); }); setTimeout(googletag.cmd.push(function () { __ez_fad_floatshow() }), 500); setTimeout(function () { __ez_fad_load(1, null); __ez_fad_load(5, null); }, 5500); }, false);
					}
				}
			}
			var __ez_fad_floatshowd = false; function __ez_fad_floatshow(d) {
				if (__ez_fad_floatshowd == false && typeof __ez_fad_floating != 'undefined') {
					__ez_fad_floatshowd = true; var e = document.getElementById('ezmobfooter'); if (e != null) { e.classList.add('ezmobtrans'); } else { head = document.head || document.getElementsByTagName('head')[0], style = document.createElement('style'); head.appendChild(style); var css = "body > #ezmobfooter{bottom:0px !important;visibility:visible;}"; style.type = 'text/css'; if (style.styleSheet) { style.styleSheet.cssText = css; } else { style.appendChild(document.createTextNode(css)); } }
					googletag.cmd.push(function () { for (var i = 0; i < __ez_fad_floating.length; i++) { var s = __ez_fad_initslot[__ez_fad_floating[i]](null); googletag.display(__ez_fad_floating[i]); googletag.pubads().refresh([window[s]]); } });
				}
			}
			var __ez_fad_initslot = {}; var __ez_fad_fastd = []; var __ez_fad_fastdiv = []; var __ez_fad_fastslots = []; var __ez_fad_viewslots = []; var __ez_fad_instaslots = []; var ezslit_run = []; var __ez_fad_divs = [[], [], [], [], [], [], []]; __ez_fad_divpos = {}; var __ez_fad_divsd = []; var __ez_fad_vw = window.screen.width; var __ez_fad_vh = window.screen.height; function __ez_fad_invisible(e) { !!(e.offsetWidth || e.offsetHeight || e.getClientRects().length) }
			function __ez_fad_position(id) {
				var did = document.getElementById(id); if (did != null) {
					var rect = did.getBoundingClientRect(); var vs = window.scrollY || document.body.scrollTop || document.documentElement.scrollTop; var vh = vs + __ez_fad_vh; _ez_fad_vw = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth; __ez_fad_vh = window.innerHeight || Math.max(document.documentElement.clientHeight, document.body.clientHeight); var height_adjust = 800; if (__ez_fad_vw < 1200) { height_adjust = __ez_fad_vh * 1.25; vh += 0; }
					if (__ez_fad_floating.indexOf(id) == -1) { __ez_fad_divpos[id] = rect.top; if (__ez_fad_invisible(did) && isFloat != true) { __ez_fad_divs[4].push(id); } else if (rect.top < vh && (ezslit_run[0] != true || ezslit_run[5] != true)) { if (ezslit_run[0] != true) { __ez_fad_gpt(); __ez_fad_divs[0].push(id); } else { __ez_fad_divs[5].push(id); } } else if (rect.top < (vh + height_adjust) && ezslit_run[1] != true) { if (ezslit_run[0] != true) { __ez_fad_load(0, 0); }; __ez_fad_divs[1].push(id); } else if (rect.top < (vh + height_adjust + (__ez_fad_vh)) && ezslit_run[2] != true) { if (ezslit_run[0] != true) { __ez_fad_load(0, 0); }; __ez_fad_divs[2].push(id); } else { __ez_fad_divs[3].push(id); } }
				}
			}
			function __ez_fad_fast(s, f, m) {
				if (__ez_fad_fastd.indexOf(s) == -1) {
					__ez_fad_fastd.push(s); googletag.cmd.push(function () {
						var ebbr2 = 'empty'; var br2 = 0; if (typeof ezoibfh[f] != 'undefined') { ebbr2 = ezoibfh[f]; br2 = f; }
						if (typeof window['ezslot_' + s] != 'undefined') { var br1 = parseInt(window['ezslot_' + s].getTargeting('br1')[0]); if (isNaN(br1) || br2 < br1) { window['ezslot_' + s].setTargeting('br1', br2).setTargeting('eb_br', ebbr2); if (m != null) { window['ezslot_' + s].setTargeting('bvr', m) } } else { } } else { }
					});
				}
			}
			function __ez_fad_csnt() { return document.cookie.indexOf('ezCMPCookieConsent') !== -1 || typeof __ez_conestreq == 'undefined'; }
			var __ez_fad_haspo = false; if (typeof PerformanceObserver != 'undefined' && typeof PerformanceObserver.supportedEntryTypes != 'undefined') { if (PerformanceObserver.supportedEntryTypes.indexOf('largest-contentful-paint') > -1) { __ez_fad_haspo = true; } }
			function __ez_fad_rdy() {
				if (document.body !== null && (__ez_fad_haspo == false && __ez_fad_doc_ht > __ez_fad_vp_ht || __ez_fad_hascp) || document.readyState === "complete") { return true; } else { __ez_fad_doc_ht = __ez_fad_docht(); __ez_fad_vp_ht = __ez_fad_vpht(); }
				return false;
			}
			function __ez_fad_docht() { if (typeof document.body != 'undefined' && document.body != null) { return Math.max(document.body.scrollHeight, document.body.offsetHeight); } else if (typeof document.documentElement != 'undefined') { return Math.max(document.documentElement.clientHeight, document.documentElement.scrollHeight, document.documentElement.offsetHeight); } else { return 0; } }
			function __ez_fad_vpht() {
				if (typeof window.innerHeight != 'undefined') { return window.innerHeight; } else if (typeof document.body != 'undefined' && document.body != null) { return document.body.clientHeight; } else if (typeof document.documentElement != 'undefined') { return document.documentElement.clientHeight; }
				else { return 0; }
			}
			var __ez_fad_doc_ht = __ez_fad_docht(); var __ez_fad_vp_ht = __ez_fad_vpht(); var __ez_fad_hascp = false; try { const __ez__fad_po = new PerformanceObserver((entryList) => { __ez_fad_hascp = true; }); __ez__fad_po.observe({ type: 'largest-contentful-paint', buffered: true }); } catch (e) { }</script>
	<script data-ezscrex=false>var ezorbf = [];</script>
	<script data-ezscrex=false data-cfasync=false
		data-pagespeed-no-defer>window.isEZABL = false; window.ezmadspc = 300; window.ezoViewCheck = false;</script>
	<script data-ezscrex=false data-cfasync=false data-pagespeed-no-defer>window.ezDisableInitialLoad = false;</script>
	<script data-ezscrex=false data-cfasync=false
		data-pagespeed-no-defer>window.googletag = window.googletag || {}; googletag.cmd = googletag.cmd || [];</script>
	<script
		data-ezscrex=false>window.addEventListener("EzoIvent", function (a) {
				if (a.detail[0] > 1 || a.detail[0] < 0) {
					(function () {
						var gads = document.createElement('script'); gads.async = true; gads.type = 'text/javascript'; gads.onload = function () { if (typeof ezogallbs == 'function') { ezogallbs() } }; var useSSL = 'https:' == document.location.protocol; gads.src = (useSSL ? 'https:' : 'http:') +
							'//securepubads.g.doubleclick.net/tag/js/gpt.js'; var node = document.getElementsByTagName('script')[0]; node.parentNode.insertBefore(gads, node);
					})();
				}
			});</script>
	<script data-ezscrex=false data-cfasync=false
		data-pagespeed-no-defer>window.ezogetbrkey = function (s) { var k = 'br1'; var k2 = 'eb_br'; if (window.ezogtk == "") { k = 'br1u'; k2 = 'eb_bru'; } else if (window.ezogtk != "NT") { k = 'br1t'; k2 = 'eb_brt'; } s.setTargeting('br1', s.getTargeting(k)); s.setTargeting('eb_br', s.getTargeting(k2)); }; googletag.cmd.push(function () { googletag.pubads().enableSingleRequest(); googletag.pubads().addEventListener('slotRenderEnded', function (event) { __ez.queue.addFunc("ezbanger", "ezbanger", event, false, ['banger.js'], true, true, false, true); }); googletag.pubads().addEventListener('impressionViewable', function (event) { __ez.queue.addFunc("ezvb", "ezvb", event, false, ['banger.js'], true, true, false, true); }); googletag.pubads().addEventListener('slotResponseReceived', function (event) { __ez.queue.addFunc("ezsr", "ezsr", event, false, ['banger.js'], true, true, false, true); }); googletag.pubads().addEventListener('slotRequested', function (e) { window.ezsrqt[e.slot.getSlotElementId()] = Date.now(); }); googletag.pubads().disableInitialLoad(); googletag.pubads().disableInitialLoad(); googletag.pubads().enableLazyLoad({ fetchMarginPercent: -1, renderMarginPercent: 250, mobileScaling: 2.0 }); googletag.enableServices(); }); window.ezoll = false; window.ezoadxnc = '21732118914'; window.ezoadhb = '140'; var ezoibfh = { 0: 'zero', 1000000: 'off', 90: '1ea83551a903e458c56ec08ec0ffaa93', 60: '5dfc84b2afe9d09bb5135bfcbbc5970f', 44: '588553dcabeb5286f2bd86e6617a0d98', 34: 'cc08e2bb0d386fbf4465310e5dcc50e8', 20: '45449ee2d6533045f60351c94107ba8e', 18: '190bf94969f2d51c1f9954199aa5f4f8', 14: '780324bcbe122aeb7768d94246861ef2', 48: 'a07d6583d81e029ba17a8abf2bdda13b', 140: '13817432a186231a2c8afb2cc1bac45d', 120: '9b8b7ac6c7f250874e7a1340470af55d', 80: '931e89386514f6e0ab7df9718ec5a124', 46: 'fc44e27e7de5f52a5f3c42d1877542d7', 40: '6f1c86ebad23a9c4f3d9e02ac8a8dbbf', 16: '5123967dad9631f0d2a57fa9c3237b87', 4: '063a7705d5a9d51bc46e0a87fba28a89', 50: 'f0b3832c5a11b18826c14c2c6c503110', 24: '4b9359dae970d701895b70c7efed2383', 32: '91e22f7223f09c1ff1a7040043fe9b1b', 10: '295bc01864bf3dbd0117e0a3f7f6bc96', 6: 'f09d4fef38161a27d028cff6eebf43aa', 42: 'f66e127b473e92f89e2d14510803ea0a', 38: '2987c3db2c41b735b4d6867239315fb0', 30: 'd753ba285129d8fd7ef33dec95bcaa7e', 26: '09900f25ac768e2ab6f6a1b9b20b686a', 2: 'ff65489184a8bd745b588323ab1b4e22', 100: '2b579bd406d80336360cc9360dca858a', 70: 'ea7c242a89c8cb1608366a3d063fa70d', 36: 'c6ffcfdd3dd19ac09fbf0cb03baa3e4b', 28: 'fe1f34fd0c4fe8bf8d52adece55deeb2', 22: 'eeb512de4b40f938fd78cdef344a7ebd', 12: '41f20af1f102ac44e83c11508b6865c1', 8: 'e2195fcdbbb593f7fa040d51c2eaea6c' }; window.ezorefgsl = function (r) { Array.isArray(r) || (r = [r]); for (var e = r.length, o = Array(), a = 0; a < e; a++) { var t = r[a]; t.setTargeting("reqt", Date.now()), void 0 !== t.DFPSlot ? o.push(t.DFPSlot) : o.push(t) } googletag.pubads().refresh(o) }; var ezaxmns = {}; var ezaucmns = {}; ezaxmns["div-gpt-ad-hotexamples_com-box-2-0"] = 0; ezaucmns["div-gpt-ad-hotexamples_com-box-2-0"] = 0; ezaxmns["div-gpt-ad-hotexamples_com-box-2-0_1"] = 0; ezaucmns["div-gpt-ad-hotexamples_com-box-2-0_1"] = 0; ezaxmns["div-gpt-ad-hotexamples_com-box-2-0_2"] = 0; ezaucmns["div-gpt-ad-hotexamples_com-box-2-0_2"] = 0; ezaxmns["div-gpt-ad-hotexamples_com-medrectangle-1-0"] = 0; ezaucmns["div-gpt-ad-hotexamples_com-medrectangle-1-0"] = 0;

			var __ez_fad_floating = [];
			var __ez_fad_gptd = false; var __ez_fad_ezpbinitd = false; function __ez_fad_gpt() {
				if (__ez_fad_gptd == false) {
					__ez_fad_gptd = true; (function () {
						var gads = document.createElement('script'); gads.async = true; gads.type = 'text/javascript'; var useSSL = 'https:' == document.location.protocol; gads.src = (useSSL ? 'https:' : 'http:') +
							'//securepubads.g.doubleclick.net/tag/js/gpt.js'; var node = document.getElementsByTagName('script')[0]; node.parentNode.insertBefore(gads, node);
					})();
				}
			} function __ez_fad_pb() { if (__ez_fad_ezpbinitd == false && typeof __ez_fad_ezpbinit == 'function') { __ez_fad_ezpbinitd = true; __ez_fad_ezpbinit() } };
			__ez_fad_initslot['div-gpt-ad-hotexamples_com-box-2-0'] = function (bvr) {
				googletag.cmd.push(function () {
					var did = 'div-gpt-ad-hotexamples_com-box-2-0';
					ezslot_0 = googletag.defineSlot('/21732118914/hotexamples_com-box-2', [[300, 250], [430, 310], [390, 350], [360, 380]], 'div-gpt-ad-hotexamples_com-box-2-0').addService(googletag.pubads()).updateTargetingFromMap({ 'a': '1', 'iid10': '920128', 'iit': '0', 't': '134', 'd': '110793', 't1': '134', 'pvc': '0', 'ap': '1137', 'sap': '1137', 'a': '|3|', 'as': 'revenue', 'plat': '1', 'bra': 'mod1', 'ic': '1', 'at': 'mbf', 'adr': '399', 'ezosn': '0', 'reft': 'tf', 'refs': '30', 'ga': '5302779', 'gala': '', 'rid': '99998', 'pt': '1', 'al': '1001', 'compid': '0', 'tap': 'hotexamples_com-box-2-920128', 'eb_br': '931e89386514f6e0ab7df9718ec5a124', 'eba': '1', 'ebss': [10017, 10082, 10061, 11304, 11307], 'bv': '0', 'bvm': '3', 'bvr': '2', 'shp': '1', 'ftsn': '3', 'acptad': '1', 'br1': '80', 'br2': '40', 'ezoic': '1', 'nmau': '3', 'mau': '0', 'stl': [81, 206, 169, 27, 50, 122, 88, 20, 71, 180, 205, 31], 'deal1': [17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 608, 760, 761, 813, 814, 815, 816, 817, 818, 819, 893, 899, 903, 917, 918, 919, 774], 'ax_ssid': '10082' }).setCollapseEmptyDiv(false); ezrpos[0] = "0"; ezslots.push("ezslot_0");
					if (bvr != null) {
						if (typeof __ez_fad_fastslots['div-gpt-ad-hotexamples_com-box-2-0'] == 'function') {
							__ez_fad_fastslots['div-gpt-ad-hotexamples_com-box-2-0']();
						}
					}
					if (typeof ezSlotKVStore != 'undefined' && typeof ezSlotKVStore[did] != 'undefined') {
						for (var name in ezSlotKVStore[did]) {
							if (!ezSlotKVStore.hasOwnProperty(name)) {
								ezSetSlotTargeting(did, name, ezSlotKVStore[did][name]);
							}
						}
						ezSlotKVStore[did] = {};
					}
				}); return "ezslot_0";
			};
			__ez_fad_fastslots['div-gpt-ad-hotexamples_com-box-2-0'] = function () { __ez_fad_fastdiv.push('div-gpt-ad-hotexamples_com-box-2-0'); __ez_fad_fast('0', 26, null); };
			__ez_fad_viewslots['div-gpt-ad-hotexamples_com-box-2-0'] = function () { __ez_fad_fastdiv.push('div-gpt-ad-hotexamples_com-box-2-0'); __ez_fad_fast('0', 60, null); };
			__ez_fad_instaslots['div-gpt-ad-hotexamples_com-box-2-0'] = function () { __ez_fad_fastdiv.push('div-gpt-ad-hotexamples_com-box-2-0'); __ez_fad_fast('0', 0, 0); }; __ez_fad_initslot['div-gpt-ad-hotexamples_com-box-2-0_1'] = function (bvr) {
				googletag.cmd.push(function () {
					var did = 'div-gpt-ad-hotexamples_com-box-2-0_1';
					ezslot_1 = googletag.defineSlot('/21732118914/hotexamples_com-box-2', [[300, 250], [430, 310], [390, 350], [360, 380]], 'div-gpt-ad-hotexamples_com-box-2-0_1').addService(googletag.pubads()).updateTargetingFromMap({ 'a': '1', 'iid10': '920128', 'iit': '0', 't': '134', 'd': '110793', 't1': '134', 'pvc': '0', 'ap': '1137', 'sap': '1137', 'a': '|252|', 'as': 'revenue', 'plat': '1', 'bra': 'mod1', 'ic': '1', 'at': 'mbf', 'adr': '399', 'ezosn': '1', 'reft': 'tf', 'refs': '30', 'ga': '5302779', 'gala': '', 'rid': '99998', 'pt': '1', 'al': '1001', 'compid': '0', 'tap': 'hotexamples_com-box-2-920128', 'eb_br': '931e89386514f6e0ab7df9718ec5a124', 'eba': '1', 'ebss': [10017, 10082, 10061, 11304, 11307], 'bv': '0', 'bvm': '3', 'bvr': '2', 'shp': '1', 'ftsn': '3', 'acptad': '1', 'br1': '80', 'br2': '40', 'ezoic': '1', 'nmau': '3', 'mau': '1', 'stl': [83, 41, 120, 67, 51, 122, 66, 20, 34, 23, 35, 30], 'deal1': [17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 608, 760, 761, 813, 814, 815, 816, 817, 818, 819, 893, 899, 903, 917, 918, 919, 774], 'ax_ssid': '10082' }).setCollapseEmptyDiv(false); ezrpos[1] = "1"; ezslots.push("ezslot_1");
					if (bvr != null) {
						if (typeof __ez_fad_fastslots['div-gpt-ad-hotexamples_com-box-2-0_1'] == 'function') {
							__ez_fad_fastslots['div-gpt-ad-hotexamples_com-box-2-0_1']();
						}
					}
					if (typeof ezSlotKVStore != 'undefined' && typeof ezSlotKVStore[did] != 'undefined') {
						for (var name in ezSlotKVStore[did]) {
							if (!ezSlotKVStore.hasOwnProperty(name)) {
								ezSetSlotTargeting(did, name, ezSlotKVStore[did][name]);
							}
						}
						ezSlotKVStore[did] = {};
					}
				}); return "ezslot_1";
			};
			__ez_fad_fastslots['div-gpt-ad-hotexamples_com-box-2-0_1'] = function () { __ez_fad_fastdiv.push('div-gpt-ad-hotexamples_com-box-2-0_1'); __ez_fad_fast('1', 26, null); };
			__ez_fad_viewslots['div-gpt-ad-hotexamples_com-box-2-0_1'] = function () { __ez_fad_fastdiv.push('div-gpt-ad-hotexamples_com-box-2-0_1'); __ez_fad_fast('1', 60, null); };
			__ez_fad_instaslots['div-gpt-ad-hotexamples_com-box-2-0_1'] = function () { __ez_fad_fastdiv.push('div-gpt-ad-hotexamples_com-box-2-0_1'); __ez_fad_fast('1', 0, 0); }; __ez_fad_initslot['div-gpt-ad-hotexamples_com-box-2-0_2'] = function (bvr) {
				googletag.cmd.push(function () {
					var did = 'div-gpt-ad-hotexamples_com-box-2-0_2';
					ezslot_2 = googletag.defineSlot('/21732118914/hotexamples_com-box-2', [[300, 250], [430, 310], [390, 350], [360, 380]], 'div-gpt-ad-hotexamples_com-box-2-0_2').addService(googletag.pubads()).updateTargetingFromMap({ 'a': '1', 'iid10': '920128', 'iit': '0', 't': '134', 'd': '110793', 't1': '134', 'pvc': '0', 'ap': '1137', 'sap': '1137', 'a': '|1|', 'as': 'revenue', 'plat': '1', 'bra': 'mod1', 'ic': '1', 'at': 'mbf', 'adr': '399', 'ezosn': '2', 'reft': 'tf', 'refs': '30', 'ga': '5302779', 'gala': '', 'rid': '99998', 'pt': '1', 'al': '1001', 'compid': '0', 'tap': 'hotexamples_com-box-2-920128', 'eb_br': '931e89386514f6e0ab7df9718ec5a124', 'eba': '1', 'ebss': [10017, 10082, 10061, 11304, 11307], 'bv': '0', 'bvm': '3', 'bvr': '2', 'shp': '1', 'ftsn': '3', 'acptad': '1', 'br1': '80', 'br2': '40', 'ezoic': '1', 'nmau': '3', 'mau': '2', 'stl': [34, 13, 28, 67, 45, 43, 66, 20, 32, 0, 13, 0], 'deal1': [17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 608, 760, 761, 813, 814, 815, 816, 817, 818, 819, 893, 899, 903, 917, 918, 919, 774], 'ax_ssid': '10082' }).setCollapseEmptyDiv(false); ezrpos[2] = "2"; ezslots.push("ezslot_2");
					if (bvr != null) {
						if (typeof __ez_fad_fastslots['div-gpt-ad-hotexamples_com-box-2-0_2'] == 'function') {
							__ez_fad_fastslots['div-gpt-ad-hotexamples_com-box-2-0_2']();
						}
					}
					if (typeof ezSlotKVStore != 'undefined' && typeof ezSlotKVStore[did] != 'undefined') {
						for (var name in ezSlotKVStore[did]) {
							if (!ezSlotKVStore.hasOwnProperty(name)) {
								ezSetSlotTargeting(did, name, ezSlotKVStore[did][name]);
							}
						}
						ezSlotKVStore[did] = {};
					}
				}); return "ezslot_2";
			};
			__ez_fad_fastslots['div-gpt-ad-hotexamples_com-box-2-0_2'] = function () { __ez_fad_fastdiv.push('div-gpt-ad-hotexamples_com-box-2-0_2'); __ez_fad_fast('2', 26, null); };
			__ez_fad_viewslots['div-gpt-ad-hotexamples_com-box-2-0_2'] = function () { __ez_fad_fastdiv.push('div-gpt-ad-hotexamples_com-box-2-0_2'); __ez_fad_fast('2', 60, null); };
			__ez_fad_instaslots['div-gpt-ad-hotexamples_com-box-2-0_2'] = function () { __ez_fad_fastdiv.push('div-gpt-ad-hotexamples_com-box-2-0_2'); __ez_fad_fast('2', 0, 0); }; __ez_fad_initslot['div-gpt-ad-hotexamples_com-medrectangle-1-0'] = function (bvr) {
				googletag.cmd.push(function () {
					var did = 'div-gpt-ad-hotexamples_com-medrectangle-1-0';
					ezslot_3 = googletag.defineSlot('/21732118914/hotexamples_com-medrectangle-1', [[728, 90], [234, 60], [300, 250], [320, 50], [468, 60], [200, 200], [970, 90], [970, 250], [250, 250], [320, 100], [120, 240], [180, 150], [125, 125], ['fluid'], [430, 310], [310, 370], [340, 390]], 'div-gpt-ad-hotexamples_com-medrectangle-1-0').addService(googletag.pubads()).updateTargetingFromMap({ 'a': '1', 'iid10': '988066', 'iit': '8', 't': '134', 'd': '110793', 't1': '134', 'pvc': '0', 'ap': '1138', 'sap': '1138', 'a': '|6|', 'as': 'revenue', 'plat': '1', 'bra': 'mod1', 'ic': '1', 'at': 'mbf', 'adr': '399', 'ezosn': '3', 'reft': 'tf', 'refs': '30', 'ga': '5302779', 'gala': '', 'rid': '99998', 'pt': '4', 'al': '1004', 'compid': '0', 'tap': 'hotexamples_com-medrectangle-1-988066', 'eb_br': '13817432a186231a2c8afb2cc1bac45d', 'eba': '1', 'ebss': [10017, 10082, 10061, 11304, 11307], 'bv': '0', 'bvm': '1', 'bvr': '2', 'shp': '1', 'ftsn': '3', 'acptad': '1', 'br1': '140', 'br2': '70', 'ezoic': '1', 'nmau': '0', 'mau': '0', 'stl': [63, 14, 28, 4, 51, 0, 88, 0, 71, 30, 0, 31], 'deal1': [17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 608, 760, 761, 813, 814, 815, 816, 817, 818, 819, 893, 899, 903, 917, 918, 919, 774], 'ax_ssid': '10082' }).setCollapseEmptyDiv(false); ezrpos[3] = "3"; ezslots.push("ezslot_3");
					if (bvr != null) {
						if (typeof __ez_fad_fastslots['div-gpt-ad-hotexamples_com-medrectangle-1-0'] == 'function') {
							__ez_fad_fastslots['div-gpt-ad-hotexamples_com-medrectangle-1-0']();
						}
					}
					if (typeof ezSlotKVStore != 'undefined' && typeof ezSlotKVStore[did] != 'undefined') {
						for (var name in ezSlotKVStore[did]) {
							if (!ezSlotKVStore.hasOwnProperty(name)) {
								ezSetSlotTargeting(did, name, ezSlotKVStore[did][name]);
							}
						}
						ezSlotKVStore[did] = {};
					}
				}); return "ezslot_3";
			};
			__ez_fad_fastslots['div-gpt-ad-hotexamples_com-medrectangle-1-0'] = function () { __ez_fad_fastdiv.push('div-gpt-ad-hotexamples_com-medrectangle-1-0'); __ez_fad_fast('3', 46, null); };
			__ez_fad_viewslots['div-gpt-ad-hotexamples_com-medrectangle-1-0'] = function () { __ez_fad_fastdiv.push('div-gpt-ad-hotexamples_com-medrectangle-1-0'); __ez_fad_fast('3', 120, null); };
			__ez_fad_instaslots['div-gpt-ad-hotexamples_com-medrectangle-1-0'] = function () { __ez_fad_fastdiv.push('div-gpt-ad-hotexamples_com-medrectangle-1-0'); __ez_fad_fast('3', 0, 0); };</script>
	<script type=text/ez-screx>(function(){function storageAvailable(type){var storage;try{storage=window[type];var x='__storage_test__';storage.setItem(x,x);storage.removeItem(x);return true;}
catch(e){return e instanceof DOMException&&(e.code===22||e.code===1014||e.name==='QuotaExceededError'||e.name==='NS_ERROR_DOM_QUOTA_REACHED')&&(storage&&storage.length!==0);}}
function remove_ama_config(){if(storageAvailable('localStorage')){localStorage.removeItem("google_ama_config");}}
remove_ama_config()})()</script>
	<script data-ezscrex=false
		data-cfasync=false>__ez.ssaf = [17, 19, 16]; __ez.sswp = 4; __ez.ssv = 116299; __ez.sshsdef = false;</script>
	<script>var ezoicTestActive = true</script>
	<script data-ezscrex=false
		data-cfasync=false>var _ezaq = { "ad_cache_level": 2, "ad_count_adjustment": 1, "ad_lazyload_version": 2, "ad_load_version": 2, "ad_location_ids": "1,1,1,4", "ad_transform_level": 0, "adx_ad_count": 4, "bidder_method": 1, "bidder_version": 1, "city": "Eskilstuna", "country": "SE", "days_since_last_visit": -1, "display_ad_count": 2, "domain_id": 110793, "domain_test_group": 20210303, "ds_adsize_opt_id": -1, "engaged_time_visit": 0, "ezcache_level": 1, "ezcache_skip_code": 8, "form_factor_id": 1, "framework_id": 1, "has_bad_image": 0, "has_bad_words": 0, "iab_category": "", "iab_category_0": "596", "iab_category_1": "631", "is_from_recommended_pages": false, "is_return_visitor": false, "is_sitespeed": 1, "last_page_load": "", "last_pageview_id": "", "lt_cache_level": 0, "max_ads": 2, "metro_code": 0, "optimization_version": 1, "page_ad_positions": "1137,1137,1137,1138", "page_view_count": 0, "page_view_id": "2c437542-03ac-4315-67b8-e37f0e9b16c7", "position_selection_id": 39, "postal_code": "632 30", "pv_event_count": 0, "response_size_orig": 18956, "response_time_orig": 394, "serverid": "18.197.229.53:9726", "state": "D", "sub_page_ad_positions": "1137,1137,1137,1138", "t_epoch": 1626712542, "template_id": 134, "time_on_site_visit": 0, "url": "https://hotexamples.com/search", "user_id": 0, "word_count": 127, "worst_bad_word_level": 0 }; var _ezim_d = { "hotexamples_com-box-2": { "adsense_stat_source_id": 5, "adx_ad_count": 4, "adx_stat_source_id": 35, "full_id": "hotexamples_com-box-2/2021-07-19/920128", "position_id": 1137, "sub_position_id": 1137 }, "hotexamples_com-box-2_1": { "adsense_stat_source_id": 5, "adx_ad_count": 4, "adx_stat_source_id": 35, "full_id": "hotexamples_com-box-2/2021-07-19/920128", "position_id": 1137, "sub_position_id": 1137 }, "hotexamples_com-box-2_2": { "adsense_stat_source_id": 5, "adx_ad_count": 4, "adx_stat_source_id": 35, "full_id": "hotexamples_com-box-2/2021-07-19/920128", "position_id": 1137, "sub_position_id": 1137 }, "hotexamples_com-medrectangle-1": { "adsense_stat_source_id": 5, "adx_ad_count": 4, "adx_stat_source_id": 35, "full_id": "hotexamples_com-medrectangle-1/2021-07-19/988066", "height": "90", "position_id": 1138, "sub_position_id": 1138, "width": "728" } }; var _ezat = { "domain_id": 110793, "form_factor_id": 1, "framework_id": 1, "pageview_date": "2021-07-19", "pageview_id": "2c437542-03ac-4315-67b8-e37f0e9b16c7", "template_id": 134, "url": "https://hotexamples.com/search", "visit_uuid": "3c458ae0-af9b-46c0-40fd-c5e836269a54" };</script>
	<script data-ezscrex=false data-pagespeed-no-defer
		data-cfasync=false>__ez.queue.addFile('banger.js', '/porpoiseant/banger.js?cb=195-2&bv=28&v=51&PageSpeed=off', true, [], true, false, false, true);</script>
	<script data-ezscrex=false data-cfasync=false data-pagespeed-no-defer>__ez.vep = (function () {
			var pixels = [], pxURL = "/detroitchicago/grapefruit.gif"; function AddPixel(vID, pixelData) { if (__ez.dot.isDefined(vID) && __ez.dot.isValid(pixelData)) { pixels.push({ type: 'video', video_impression_id: vID, domain_id: __ez.dot.getDID(), t_epoch: __ez.dot.getEpoch(0), data: __ez.dot.dataToStr(pixelData) }); } }
			function Fire() {
				if (typeof document.visibilityState !== 'undefined' && document.visibilityState === "prerender") { return; }
				if (__ez.dot.isDefined(pixels) && pixels.length > 0) {
					while (pixels.length > 0) {
						var j = 5; if (j > pixels.length) { j = pixels.length; }
						var pushPixels = pixels.splice(0, j); var pixelURL = __ez.dot.getURL(pxURL) + "?orig=" + (__ez.template.isOrig === true ? 1 : 0) + "&v=" + btoa(JSON.stringify(pushPixels)); __ez.dot.Fire(pixelURL);
					}
				}
				pixels = [];
			}
			return { Add: AddPixel, Fire: Fire };
		})();</script>
	<script data-ezscrex=false data-cfasync=false
		data-pagespeed-no-defer>__ez.pel = (function () {
				var pixels = [], pxURL = "/porpoiseant/army.gif"; function AddAndFirePixel(adSlot, pixelData) { AddPixel(adSlot, pixelData, 0, 0, 0, 0, 0); Fire(); }
				function AddAndFireOrigPixel(adSlot, pixelData) { AddPixel(adSlot, pixelData, 0, 0, 0, 0, 0, true); Fire(); }
				function GetCurrentPixels() { return pixels; }
				function AddPixel(adSlot, pixelData, revenue, est_revenue, bid_floor_filled, bid_floor_prev, stat_source_id, isOrig) {
					if (!__ez.dot.isDefined(adSlot) || __ez.dot.isAnyDefined(adSlot.getSlotElementId, adSlot.ElementId) == false) { return; }
					var ad_position_id = parseInt(__ez.dot.getTargeting(adSlot, 'ap')); var impId = __ez.dot.getSlotIID(adSlot), adUnit = __ez.dot.getAdUnit(adSlot, isOrig); var compId = parseInt(__ez.dot.getTargeting(adSlot, "compid")); var lineItemId = 0; var creativeId = 0; var ezimData = getEzimData(adSlot); if (typeof ezimData == 'object') {
						if (ezimData.creative_id !== undefined) { creativeId = ezimData.creative_id; }
						if (ezimData.line_item_id !== undefined) { lineItemId = ezimData.line_item_id; }
					}
					if (__ez.dot.isDefined(impId, adUnit) && __ez.dot.isValid(pixelData)) { pixels.push({ type: "impression", impression_id: impId, domain_id: __ez.dot.getDID(), unit: adUnit, t_epoch: __ez.dot.getEpoch(0), revenue: revenue, est_revenue: est_revenue, ad_position: ad_position_id, ad_size: "", bid_floor_filled: bid_floor_filled, bid_floor_prev: bid_floor_prev, stat_source_id: stat_source_id, country_code: __ez.dot.getCC(), pageview_id: __ez.dot.getPageviewId(), comp_id: compId, line_item_id: lineItemId, creative_id: creativeId, data: __ez.dot.dataToStr(pixelData), is_orig: isOrig || __ez.template.isOrig, }); }
				}
				function AddPixelById(impFullId, pixelData, isOrig) { var vals = impFullId.split('/'); if (__ez.dot.isDefined(impFullId) && vals.length === 3 && __ez.dot.isValid(pixelData)) { var adUnit = vals[0], impId = vals[2]; pixels.push({ type: "impression", impression_id: impId, domain_id: __ez.dot.getDID(), unit: adUnit, t_epoch: __ez.dot.getEpoch(0), pageview_id: __ez.dot.getPageviewId(), data: __ez.dot.dataToStr(pixelData), is_orig: isOrig || __ez.template.isOrig }); } }
				function Fire() {
					if (typeof document.visibilityState !== 'undefined' && document.visibilityState === "prerender") return; if (__ez.dot.isDefined(pixels) && pixels.length > 0) {
						var allPixels = [pixels.filter(function (pixel) { return pixel.is_orig }), pixels.filter(function (pixel) { return !pixel.is_orig })]; allPixels.forEach(function (pixels) {
							while (pixels.length > 0) {
								var isOrig = pixels[0].is_orig || false; var j = 5; if (j > pixels.length) { j = pixels.length; }
								var pushPixels = pixels.splice(0, j); var pixelURL = __ez.dot.getURL(pxURL) + "?orig=" + (isOrig === true ? 1 : 0) + "&sts=" + btoa(JSON.stringify(pushPixels)); if (typeof window.isAmp !== 'undefined' && isAmp && typeof window._ezaq !== 'undefined' && _ezaq.hasOwnProperty("domain_id")) { pixelURL += "&visit_uuid=" + _ezaq['visit_uuid']; }
								__ez.dot.Fire(pixelURL);
							}
						})
					}
					pixels = [];
				}
				function getEzimData(adSlot) {
					if (typeof _ezim_d == "undefined") { return false }
					var adUnitName = __ez.dot.getAdUnitPath(adSlot).split('/').pop(); if (typeof _ezim_d === 'object' && _ezim_d.hasOwnProperty(adUnitName)) { return _ezim_d[adUnitName]; }
					for (var ezimKey in _ezim_d) { if (ezimKey.split('/').pop() === adUnitName) { return _ezim_d[ezimKey]; } }
					return false;
				}
				return { Add: AddPixel, AddAndFire: AddAndFirePixel, AddAndFireOrig: AddAndFireOrigPixel, AddById: AddPixelById, Fire: Fire, GetPixels: GetCurrentPixels, };
			})();</script>
	<link rel=preconnect href=//doc.hotexamples.com crossorigin>
	<link rel=preconnect href=//python.hotexamples.com crossorigin>
	<link rel=preconnect href=//javascript.hotexamples.com crossorigin>
	<link rel=preconnect href=//www.googletagmanager.com crossorigin>
	<link rel=preconnect href=//java.hotexamples.com crossorigin>
	<link rel=preconnect href=//typescript.hotexamples.com crossorigin>
	<link rel=preconnect href=//ajax.googleapis.com crossorigin>
	<link rel=preconnect href=//pagead2.googlesyndication.com crossorigin>
	<link rel=preconnect href=//c.amazon-adsystem.com crossorigin>
	<link rel=preconnect href=//csharp.hotexamples.com crossorigin>
	<link rel=preconnect href=//securepubads.g.doubleclick.net crossorigin>
	<link rel=preconnect href=//cpp.hotexamples.com crossorigin>
	<link rel=preconnect href=//golang.hotexamples.com crossorigin>
	<link rel=preconnect href=//go.ezoic.net crossorigin>
	<style class=ezcritcss>
		html {
			font-family: sans-serif;
			-ms-text-size-adjust: 100%;
			-webkit-text-size-adjust: 100%
		}

		body {
			margin: 0
		}

		footer,
		nav {
			display: block
		}

		a {
			background-color: transparent
		}

		h1 {
			font-size: 2em;
			margin: .67em 0
		}

		button,
		input {
			color: inherit;
			font: inherit;
			margin: 0
		}

		button {
			overflow: visible
		}

		button {
			text-transform: none
		}

		button {
			-webkit-appearance: button
		}

		button::-moz-focus-inner,
		input::-moz-focus-inner {
			border: 0;
			padding: 0
		}

		input {
			line-height: normal
		}

		* {
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box
		}

		:before,
		:after {
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box
		}

		html {
			font-size: 10px
		}

		body {
			font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
			font-size: 14px;
			line-height: 1.42857143;
			color: #333;
			background-color: #fff
		}

		input,
		button {
			font-family: inherit;
			font-size: inherit;
			line-height: inherit
		}

		a {
			color: #337ab7;
			text-decoration: none
		}

		.sr-only {
			position: absolute;
			width: 1px;
			height: 1px;
			padding: 0;
			margin: -1px;
			overflow: hidden;
			clip: rect(0, 0, 0, 0);
			border: 0
		}

		h1 {
			font-family: inherit;
			font-weight: 500;
			line-height: 1.1;
			color: inherit
		}

		h1 {
			margin-top: 20px;
			margin-bottom: 10px
		}

		h1 {
			font-size: 36px
		}

		ul {
			margin-top: 0;
			margin-bottom: 10px
		}

		ul ul {
			margin-bottom: 0
		}

		.container {
			padding-right: 15px;
			padding-left: 15px;
			margin-right: auto;
			margin-left: auto
		}

		@media (min-width:768px) {
			.container {
				width: 750px
			}
		}

		@media (min-width:992px) {
			.container {
				width: 970px
			}
		}

		@media (min-width:1200px) {
			.container {
				width: 1170px
			}
		}

		.row {
			margin-right: -15px;
			margin-left: -15px
		}

		.col-sm-9,
		.col-md-9,
		.col-lg-9,
		.col-md-12 {
			position: relative;
			min-height: 1px;
			padding-right: 15px;
			padding-left: 15px
		}

		@media (min-width:768px) {
			.col-sm-9 {
				float: left
			}

			.col-sm-9 {
				width: 75%
			}
		}

		@media (min-width:992px) {

			.col-md-9,
			.col-md-12 {
				float: left
			}

			.col-md-12 {
				width: 100%
			}

			.col-md-9 {
				width: 75%
			}
		}

		@media (min-width:1200px) {
			.col-lg-9 {
				float: left
			}

			.col-lg-9 {
				width: 75%
			}
		}

		.form-control {
			display: block;
			width: 100%;
			height: 34px;
			padding: 6px 12px;
			font-size: 14px;
			line-height: 1.42857143;
			color: #555;
			background-color: #fff;
			background-image: none;
			border: 1px solid #ccc;
			border-radius: 4px;
			-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
			box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
		}

		.form-control:focus {
			border-color: #66afe9;
			outline: 0;
			-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
			box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
		}

		.form-control::-moz-placeholder {
			color: #999;
			opacity: 1
		}

		.form-control:-ms-input-placeholder {
			color: #999
		}

		.form-control::-webkit-input-placeholder {
			color: #999
		}

		.form-control::-ms-expand {
			background-color: transparent;
			border: 0
		}

		.btn {
			display: inline-block;
			margin-bottom: 0;
			font-weight: 400;
			text-align: center;
			white-space: nowrap;
			vertical-align: middle;
			-ms-touch-action: manipulation;
			touch-action: manipulation;
			background-image: none;
			border: 1px solid transparent;
			padding: 6px 12px;
			font-size: 14px;
			line-height: 1.42857143;
			border-radius: 4px
		}

		.btn-default {
			color: #333;
			background-color: #fff;
			border-color: #ccc
		}

		.btn-primary {
			color: #fff;
			background-color: #337ab7;
			border-color: #2e6da4
		}

		.collapse {
			display: none
		}

		.caret {
			display: inline-block;
			width: 0;
			height: 0;
			margin-left: 2px;
			vertical-align: middle;
			border-top: 4px dashed;
			border-top: 4px solid \9;
			border-right: 4px solid transparent;
			border-left: 4px solid transparent
		}

		.dropdown {
			position: relative
		}

		.dropdown-menu {
			position: absolute;
			top: 100%;
			left: 0;
			z-index: 1000;
			display: none;
			float: left;
			min-width: 160px;
			padding: 5px 0;
			margin: 2px 0 0;
			font-size: 14px;
			text-align: left;
			list-style: none;
			background-color: #fff;
			-webkit-background-clip: padding-box;
			background-clip: padding-box;
			border: 1px solid #ccc;
			border: 1px solid rgba(0, 0, 0, .15);
			border-radius: 4px;
			-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
			box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
		}

		.dropdown-menu>li>a {
			display: block;
			padding: 3px 20px;
			clear: both;
			font-weight: 400;
			line-height: 1.42857143;
			color: #333;
			white-space: nowrap
		}

		@media (min-width:768px) {
			.navbar-right .dropdown-menu {
				right: 0;
				left: auto
			}
		}

		.btn .caret {
			margin-left: 0
		}

		.input-group {
			position: relative;
			display: table;
			border-collapse: separate
		}

		.input-group .form-control {
			position: relative;
			z-index: 2;
			float: left;
			width: 100%;
			margin-bottom: 0
		}

		.input-group .form-control:focus {
			z-index: 3
		}

		.input-group-btn,
		.input-group .form-control {
			display: table-cell
		}

		.input-group .form-control:not(:first-child):not(:last-child) {
			border-radius: 0
		}

		.input-group-btn {
			width: 1%;
			white-space: nowrap;
			vertical-align: middle
		}

		.input-group-btn:first-child>.btn,
		.input-group-btn:first-child>.dropdown-toggle {
			border-top-right-radius: 0;
			border-bottom-right-radius: 0
		}

		.input-group-btn:last-child>.btn {
			border-top-left-radius: 0;
			border-bottom-left-radius: 0
		}

		.input-group-btn {
			position: relative;
			font-size: 0;
			white-space: nowrap
		}

		.input-group-btn>.btn {
			position: relative
		}

		.input-group-btn:first-child>.btn {
			margin-right: -1px
		}

		.input-group-btn:last-child>.btn {
			z-index: 2;
			margin-left: -1px
		}

		.nav {
			padding-left: 0;
			margin-bottom: 0;
			list-style: none
		}

		.nav>li {
			position: relative;
			display: block
		}

		.nav>li>a {
			position: relative;
			display: block;
			padding: 10px 15px
		}

		.navbar {
			position: relative;
			min-height: 50px;
			margin-bottom: 20px;
			border: 1px solid transparent
		}

		@media (min-width:768px) {
			.navbar {
				border-radius: 4px
			}
		}

		@media (min-width:768px) {
			.navbar-header {
				float: left
			}
		}

		.navbar-collapse {
			padding-right: 15px;
			padding-left: 15px;
			overflow-x: visible;
			border-top: 1px solid transparent;
			-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
			box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
			-webkit-overflow-scrolling: touch
		}

		@media (min-width:768px) {
			.navbar-collapse {
				width: auto;
				border-top: 0;
				-webkit-box-shadow: none;
				box-shadow: none
			}

			.navbar-collapse.collapse {
				display: block !important;
				height: auto !important;
				padding-bottom: 0;
				overflow: visible !important
			}

			.navbar-fixed-top .navbar-collapse {
				padding-right: 0;
				padding-left: 0
			}
		}

		.navbar-fixed-top {
			position: fixed;
			right: 0;
			left: 0;
			z-index: 1030
		}

		.navbar-fixed-top .navbar-collapse {
			max-height: 340px
		}

		@media (min-width:768px) {
			.navbar-fixed-top {
				border-radius: 0
			}
		}

		.navbar-fixed-top {
			top: 0;
			border-width: 0 0 1px
		}

		.container>.navbar-header,
		.container>.navbar-collapse {
			margin-right: -15px;
			margin-left: -15px
		}

		@media (min-width:768px) {

			.container>.navbar-header,
			.container>.navbar-collapse {
				margin-right: 0;
				margin-left: 0
			}
		}

		.navbar-brand {
			float: left;
			height: 50px;
			padding: 15px;
			font-size: 18px;
			line-height: 20px
		}

		@media (min-width:768px) {
			.navbar>.container .navbar-brand {
				margin-left: -15px
			}
		}

		.navbar-toggle {
			position: relative;
			float: right;
			padding: 9px 10px;
			margin-right: 15px;
			margin-top: 8px;
			margin-bottom: 8px;
			background-color: transparent;
			background-image: none;
			border: 1px solid transparent;
			border-radius: 4px
		}

		.navbar-toggle .icon-bar {
			display: block;
			width: 22px;
			height: 2px;
			border-radius: 1px
		}

		.navbar-toggle .icon-bar+.icon-bar {
			margin-top: 4px
		}

		@media (min-width:768px) {
			.navbar-toggle {
				display: none
			}
		}

		.navbar-nav {
			margin: 7.5px -15px
		}

		.navbar-nav>li>a {
			padding-top: 10px;
			padding-bottom: 10px;
			line-height: 20px
		}

		@media (min-width:768px) {
			.navbar-nav {
				float: left;
				margin: 0
			}

			.navbar-nav>li {
				float: left
			}

			.navbar-nav>li>a {
				padding-top: 15px;
				padding-bottom: 15px
			}
		}

		.navbar-form {
			padding: 10px 15px;
			margin-right: -15px;
			margin-left: -15px;
			border-top: 1px solid transparent;
			border-bottom: 1px solid transparent;
			-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
			box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
			margin-top: 8px;
			margin-bottom: 8px
		}

		@media (min-width:768px) {
			.navbar-form .form-control {
				display: inline-block;
				width: auto;
				vertical-align: middle
			}

			.navbar-form .input-group {
				display: inline-table;
				vertical-align: middle
			}

			.navbar-form .input-group .input-group-btn,
			.navbar-form .input-group .form-control {
				width: auto
			}

			.navbar-form .input-group>.form-control {
				width: 100%
			}
		}

		@media (min-width:768px) {
			.navbar-form {
				width: auto;
				padding-top: 0;
				padding-bottom: 0;
				margin-right: 0;
				margin-left: 0;
				border: 0;
				-webkit-box-shadow: none;
				box-shadow: none
			}
		}

		.navbar-nav>li>.dropdown-menu {
			margin-top: 0;
			border-top-left-radius: 0;
			border-top-right-radius: 0
		}

		@media (min-width:768px) {
			.navbar-right {
				float: right !important;
				margin-right: -15px
			}
		}

		.navbar-inverse {
			background-color: #222;
			border-color: #080808
		}

		.navbar-inverse .navbar-brand {
			color: #9d9d9d
		}

		.navbar-inverse .navbar-nav>li>a {
			color: #9d9d9d
		}

		.navbar-inverse .navbar-toggle {
			border-color: #333
		}

		.navbar-inverse .navbar-toggle .icon-bar {
			background-color: #fff
		}

		.navbar-inverse .navbar-collapse,
		.navbar-inverse .navbar-form {
			border-color: #101010
		}

		.container:before,
		.container:after,
		.row:before,
		.row:after,
		.nav:before,
		.nav:after,
		.navbar:before,
		.navbar:after,
		.navbar-header:before,
		.navbar-header:after,
		.navbar-collapse:before,
		.navbar-collapse:after {
			display: table;
			content: " "
		}

		.container:after,
		.row:after,
		.nav:after,
		.navbar:after,
		.navbar-header:after,
		.navbar-collapse:after {
			clear: both
		}

		@-ms-viewport {
			width: device-width
		}

		@media (max-width:767px) {
			h1 {
				font-size: 26px;
				overflow: hidden;
				text-overflow: ellipsis
			}
		}

		@media (min-width:1330px) {
			.container {
				width: 1330px
			}
		}

		@media (min-width:1440px) {
			.container {
				width: 1440px
			}
		}

		html,
		body {
			height: 100%
		}

		.wrap {
			min-height: 100%;
			height: auto;
			margin: 0 auto -60px;
			padding: 0 0 60px
		}

		.wrap>.container {
			padding: 70px 15px 20px
		}

		.footer {
			height: 60px;
			padding-top: 20px
		}

		.footer {
			height: 60px;
			padding-top: 20px
		}

		.container:before {
			display: block !important
		}

		.navbar {
			margin-bottom: 0 !important
		}

		.clear {
			width: 1px !important
		}

		.navbar-form .input-group {
			width: 100%
		}

		.navbar-collapse {
			max-height: 100% !important
		}
	</style>
	<script data-ezscrex=false data-cfasync=false data-pagespeed-no-defer
		src="//sf.ezoiccdn.com/tardisrocinante/cash.js?cb=4"></script>
	<link rel=preload href=https://securepubads.g.doubleclick.net/tag/js/gpt.js as=script>
	<link rel=preload href=//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js as=script>
	<link rel=preload href=https://c.amazon-adsystem.com/aax2/apstag.js as=script>
	<script async src="https://www.googletagmanager.com/gtag/js?id=UA-140811786-1"></script>
	<script>
		window.dataLayer = window.dataLayer || [];

		function gtag() {
			dataLayer.push(arguments);
		}

		gtag('js', new Date());

		gtag('config', 'UA-140811786-1');
	</script>
	<meta name=yandex-verification content="20304c916f21f7f7">
	<meta charset=utf-8>
	<meta name=viewport content="width=device-width,initial-scale=1">
	<title>PHP Code Examples - HotExamples</title>
	<link href="/assets/0d59035a7b51a27bb7256ffc19791588f9efb496.css?ez_used_css_s=13" rel=preload as=style
		onload="this.onload=null;this.rel='stylesheet'"><noscript>
		<link
			href="https://cdn-0.hotexamples.com/assets/0d59035a7b51a27bb7256ffc19791588f9efb496.css?ff=1&wps=false&ez_used_css_s=13"
			rel=stylesheet>
	</noscript>
	<link rel=canonical href=https://hotexamples.com/search>
	<link rel=alternate hreflang=ru href=https://hotexamples.com/ru/search>
	<link rel=alternate hreflang=de href=https://hotexamples.com/de/search>
	<link rel=alternate hreflang=fr href=https://hotexamples.com/fr/search>
	<link rel=alternate hreflang=es href=https://hotexamples.com/es/search>
	<link rel=alternate hreflang=pt href=https://hotexamples.com/pt/search>
	<link rel=alternate hreflang=it href=https://hotexamples.com/it/search>
	<link rel=alternate hreflang=jp href=https://hotexamples.com/jp/search>
	<link rel=alternate hreflang=zh href=https://hotexamples.com/zh/search>
	<link rel=apple-touch-icon sizes=180x180 href=/images/php/apple-touch-icon.png>
	<link rel=icon type=image/png sizes=32x32 href=/images/php/favicon-32x32.png>
	<link rel=icon type=image/png sizes=16x16 href=/images/php/favicon-16x16.png>
	<link rel=manifest href=/images/php/site.webmanifest>
	<link rel=mask-icon href=/images/php/safari-pinned-tab.svg color=#5bbad5>
	<link rel="shortcut icon" href=/images/php/favicon.ico>
	<meta name=msapplication-TileColor content="#ffffff">
	<meta name=msapplication-config content="/images/php/browserconfig.xml">
	<meta name=theme-color content="#ffffff">
	<style>
		.ezoic-ad.box-2 {
			border: none !important;
			display: block !important;
			float: none;
			line-height: 0px;
			margin-bottom: 15px !important;
			margin-left: 0px !important;
			margin-right: 0px !important;
			margin-top: 15px !important;
			min-height: 250px;
			min-width: 300px;
			padding: 0;
			text-align: center !important;
		}

		.ezoic-ad.box-2 {
			border: none !important;
			display: block !important;
			float: none;
			line-height: 0px;
			margin-bottom: 15px !important;
			margin-left: 0px !important;
			margin-right: 0px !important;
			margin-top: 15px !important;
			min-height: 250px;
			min-width: 300px;
			padding: 0;
			text-align: center !important;
		}

		.ezoic-ad.box-2 {
			border: none !important;
			display: block !important;
			float: none;
			line-height: 0px;
			margin-bottom: 15px !important;
			margin-left: 0px !important;
			margin-right: 0px !important;
			margin-top: 15px !important;
			min-height: 250px;
			min-width: 300px;
			padding: 0;
			text-align: center !important;
		}

		.ezoic-ad.box-2137 {
			background: 0 0 !important;
			display: flex !important;
			float: none;
			justify-content: space-between;
			line-height: 0px;
			margin-bottom: 15px !important;
			margin-left: auto !important;
			margin-right: auto !important;
			margin-top: 15px !important;
			min-width: 970px;
			padding: 0;
			text-align: center !important;
			width: 970px;
		}

		.ezoic-ad.medrectangle-1138 {
			display: inline-block;
			float: none;
			line-height: 0px;
			margin-bottom: 2px !important;
			margin-left: 0px !important;
			margin-right: 0px !important;
			margin-top: 2px !important;
			min-height: 250px;
			min-width: 970px;
			padding: 0;
		}

		.ezoic-ad {
			display: inline-block;
			border: 0px;
		}

		.ezoic-ad>div>iframe {
			margin: 0px !important;
			padding: 0px !important;
		}

		.adtester-container-152,
		.adtester-container-151,
		.adtester-container-115,
		.adtester-container-143,
		.adtester-container-150,
		.adtester-container-127,
		.adtester-container-130,
		.adtester-container-132,
		.adtester-container-118,
		.adtester-container-104,
		.adtester-container-105,
		.adtester-container-131,
		.adtester-container-123,
		.adtester-container-102,
		.adtester-container-149,
		.adtester-container-119,
		.adtester-container-124,
		.adtester-container-106,
		.adtester-container-129,
		.adtester-container-144,
		.adtester-container-100,
		.adtester-container-154,
		.adtester-container-110,
		.adtester-container-126,
		.adtester-container-121,
		.adtester-container-111,
		.adtester-container-141,
		.adtester-container-128,
		.adtester-container-108,
		.adtester-container-107,
		.adtester-container-146,
		.adtester-container-125,
		.adtester-container-117,
		.adtester-container-112,
		.adtester-container-120,
		.adtester-container-147,
		.adtester-container-142,
		.adtester-container-114,
		.adtester-container-113,
		.adtester-container-116,
		.adtester-container-134,
		.adtester-container-139,
		.adtester-container-148,
		.adtester-container-145,
		.adtester-container-122,
		.adtester-container-103,
		.adtester-container-135,
		.adtester-container-101,
		.adtester-container-140,
		.adtester-container-109,
		.adtester-container-133 {
			display: none !important
		}

		.ezoic-floating-bottom {
			display: none !important;
		}
	</style>
	<script>
		(adsbygoogle = window.adsbygoogle || []).pauseAdRequests = 1; var __ez_conestreq = true;</script>
	<script>var ezouid = "1";</script>
	<base href=https://hotexamples.com/search>
	<script>
		var ezoTemplate = 'pub_site';
		if (typeof ezouid == 'undefined') {
			var ezouid = 'none';
		}
		var ezoFormfactor = '1';
		var ezo_elements_to_check = Array();
	</script>
	<script data-ezscrex=false>
		var soc_app_id = '0';
		var did = 110793;
		var ezdomain = 'hotexamples.com';
		var ezoicSearchable = 1;
	</script>
	<script data-ezscrex=false data-pagespeed-no-defer data-cfasync=false>
		function create_ezolpl(pvID, rv) {
			var d = new Date();
			d.setTime(d.getTime() + (365 * 24 * 60 * 60 * 1000));
			var expires = "expires=" + d.toUTCString();
			__ez.ck.setByCat("ezux_lpl_110793=" + new Date().getTime() + "|" + pvID + "|" + rv + "; " + expires, 3);
		}
		function attach_ezolpl(pvID, rv) {
			if (document.readyState === "complete") {
				create_ezolpl(pvID, rv);
			}
			if (window.attachEvent) {
				window.attachEvent("onload", create_ezolpl, pvID, rv);
			} else {
				if (window.onload) {
					var curronload = window.onload;
					var newonload = function (evt) {
						curronload(evt);
						create_ezolpl(pvID, rv);
					};
					window.onload = newonload;
				} else {
					window.onload = create_ezolpl.bind(null, pvID, rv);
				}
			}
		}

		__ez.queue.addFunc("attach_ezolpl", "attach_ezolpl", ["2c437542-03ac-4315-67b8-e37f0e9b16c7", "false"], false, ['/detroitchicago/boise.js'], true, false, false, false);
	</script>
	<script>__ez.queue.addFile('/detroitchicago/cmbv2.js', '/detroitchicago/cmbv2.js?gcb=195-2&cb=04-1y02-4y06-12y07-1y19-5y0b-5y0d-10y13-3y17-3y1a-2y1b-1y1f-2y1e-4y20-3y33-14&cmbcb=20&sj=x04x02x06x07x19x0bx0dx13x17x1ax1bx1fx1ex20x33', true, [], true, false, true, false);</script>
	<script
		defer>__ez.queue.addFile('/detroitchicago/cmbdv2.js', '/detroitchicago/cmbdv2.js?gcb=195-2&cb=03-4y0c-5y18-3y34-14&cmbcb=20&sj=x03x0cx18x34', true, ['/detroitchicago/cmbv2.js'], true, false, true, false);</script>
	<script>
		(function (window, document) {
			if (typeof window.__tcfapi !== "undefined") {
				function _ezAllowed(tcdata, purpose) {
					return tcdata.purpose.consents[purpose] || tcdata.purpose.legitimateInterests[purpose];
				};
				function _reloadAds() {
					if (typeof window.ezorefgsl === "function" && typeof window.ezslots === "object") {
						if (typeof __ezapsFetchBids == "function") {
							ezapsFetchBids(__ezaps);
						}
						var slots = [];
						for (var i = 0; i < window.ezslots.length; i++) {
							if (window[window.ezslots[i]] && typeof window[window.ezslots[i]] === "object") {
								slots.push(window[window.ezslots[i]])
							}
							else {
								setTimeout(_reloadAds, 50);
								return false;
							}
						}
						for (var i = 0; i < slots.length; i++) {
							window.ezorefgsl(slots[i]);
						}
					}
					else {
						setTimeout(_reloadAds, 50);
					}
				};
				function _clearEzConsentCookie() {
					document.cookie = 'ezCMPCookieConsent=tcf2;Domain=.hotexamples.com;Path=/;expires=Thu, 01 Jan 1970 00:00:00 GMT';
				};
				__tcfapi('addEventListener', 2, function (tcdata, success) {
					if (success) {
						if (tcdata.eventStatus === "useractioncomplete" || tcdata.eventStatus === "tcloaded") {
							var ezConsentCategories = window.ezConsentCategories ? window.ezConsentCategories : {};
							ezConsentCategories.preferences = false;
							ezConsentCategories.statistics = false;
							ezConsentCategories.marketing = false;
							if ((tcdata.vendor.consents["347"] !== false) || (tcdata.vendor.legitimateInterests["347"] !== false)) {
								if (tcdata.purpose.consents["1"] === true) {
									ezConsentCategories.preferences = true;
								}
								if ((tcdata.purpose.consents["1"] === true) && _ezAllowed(tcdata, "10") && _ezAllowed(tcdata, "7") && _ezAllowed(tcdata, "8")) {
									ezConsentCategories.statistics = true;
								}
								if ((tcdata.purpose.consents["1"] === true) && _ezAllowed(tcdata, "2") && _ezAllowed(tcdata, "3") && _ezAllowed(tcdata, "4")) {
									ezConsentCategories.marketing = true;
								}
							}
							if ((tcdata.purpose.consents["1"] === true) && (tcdata.vendor.consents["755"] !== false)) {
								(adsbygoogle = window.adsbygoogle || []).pauseAdRequests = 0;
								_reloadAds();
							}
							if (window.__ezconsent) {
								__ezconsent.setEzoicConsentSettings(ezConsentCategories);
							}
							window.addEventListener("beforeunload", _clearEzConsentCookie);
							__tcfapi("removeEventListener", 2, function (success) { return null; }, tcdata.listenerId);
							if (!((tcdata.purpose.consents["1"] === true) && _ezAllowed(tcdata, "2") && _ezAllowed(tcdata, "3") && _ezAllowed(tcdata, "4"))) {
								if (typeof __ez == 'object' && typeof __ez.bit == 'object' && typeof window["_ezaq"] == 'object' && typeof window["_ezaq"]["page_view_id"] == 'string') {
									__ez.bit.AddAndFire(window["_ezaq"]["page_view_id"], [(new __ezDotData('non_personalized_ads', true))]);
								}
							}
						}
					}
				});
			}
		})(window, document);
	</script>
	<script type="text/javascript">var cmpIsOn = true;</script>
	<script type="text/javascript" src="/detroitchicago/consentsettings.js?cb=1"></script>
</head>

<body>
	<div class=wrap>
		<nav id=w0 class="navbar-inverse navbar-fixed-top navbar">
			<div class=container>
				<div class=navbar-header><button type=button class=navbar-toggle data-toggle=collapse
						data-target=#w0-collapse><span class=sr-only>Toggle navigation</span>
						<span class=icon-bar></span><span class=icon-bar></span><span class=icon-bar></span></button><a
						class=navbar-brand href=https://hotexamples.com />Hot Examples</a></div>
				<div id=w0-collapse class="collapse navbar-collapse">
					<ul id=w1 class="navbar-nav navbar-right nav">
						<li class=dropdown><a class=dropdown-toggle href=# data-toggle=dropdown>EN <span
									class=caret></span></a>
							<ul id=w2 class=dropdown-menu>
								<li><a href=https://hotexamples.com/search tabindex=-1>EN</a>
								<li><a href=https://hotexamples.com/ru/search tabindex=-1>RU</a>
								<li><a href=https://hotexamples.com/de/search tabindex=-1>DE</a>
								<li><a href=https://hotexamples.com/fr/search tabindex=-1>FR</a>
								<li><a href=https://hotexamples.com/es/search tabindex=-1>ES</a>
								<li><a href=https://hotexamples.com/pt/search tabindex=-1>PT</a>
								<li><a href=https://hotexamples.com/it/search tabindex=-1>IT</a>
								<li><a href=https://hotexamples.com/jp/search tabindex=-1>JP</a>
								<li><a href=https://hotexamples.com/zh/search tabindex=-1>ZH</a>
							</ul>
					</ul>
					<div class="col-sm-9 col-md-9 col-lg-9">
						<form id=search-form class=navbar-form action=https://hotexamples.com/search method=post
							role=search><input type=hidden id=searchform-lang class=form-control name=SearchForm[lang]
								value=cpp>
							<div class=input-group>
								<div class="input-group-btn clear"><button type=button
										class="btn btn-default dropdown-toggle" data-toggle=dropdown aria-haspopup=true
										aria-expanded=false>
										<span class=search-language-name>C++</span><span class=caret></span></button>
									<ul class=dropdown-menu>
										<li><a href class=search-language-item
												data-action=https://hotexamples.com/search data-value=php
												data-example="Example: Zend_Json::decode">PHP</a>
										<li><a href class=search-language-item
												data-action=https://csharp.hotexamples.com/search data-value=csharp
												data-example="Example: DateTime.Now">C#</a>
										<li><a href class=search-language-item
												data-action=https://java.hotexamples.com/search data-value=java
												data-example="Example: Collections.binarySearch">Java</a>
										<li><a href class=search-language-item
												data-action=https://golang.hotexamples.com/search data-value=go
												data-example="Example: Sprintf">Go</a>
										<li><a href class=search-language-item
												data-action=https://cpp.hotexamples.com/search data-value=cpp
												data-example="Example: QList.isEmpty">C++</a>
										<li><a href class=search-language-item
												data-action=https://python.hotexamples.com/search data-value=python
												data-example="Example: OrderedDict.iteritems">Python</a>
										<li><a href class=search-language-item
												data-action=https://javascript.hotexamples.com/search
												data-value=javascript data-example="Example: AsyncStorage">JS</a>
										<li><a href class=search-language-item
												data-action=https://typescript.hotexamples.com/search
												data-value=typescript data-example="Example: AsyncStorage">TS</a>
									</ul>
								</div><input id=searchform-search class=form-control name=SearchForm[search] value=fgets
									autofocus placeholder="Example: QList.isEmpty" aria-required=true>
								<span class="input-group-btn clear"><button class="btn btn-primary"
										name=search>Search</button></span>
							</div>
						</form>
					</div>
				</div>
			</div>
		</nav>
		<div class="container search-results">
			<div class=row><span id=ezoic-pub-ad-placeholder-137 class=ezoic-adpicker-ad></span><span
					class="ezoic-ad box-2 box-2137 adtester-container adtester-container-137 ezoic-ad-adaptive"
					data-ez-name=hotexamples_com-box-2><span
						class="ezoic-ad box-2 box-2-multi-137 adtester-container adtester-container-137"
						data-ez-name=hotexamples_com-box-2><span id=div-gpt-ad-hotexamples_com-box-2-0 ezaw=323 ezah=250
							style=position:relative;z-index:0;display:inline-block;padding:0;min-height:250px;min-width:323px;
							class=ezoic-ad>
							<script data-ezscrex=false data-cfasync=false
								style=display:none;>if (typeof __ez_fad_position != 'undefined') { __ez_fad_position('div-gpt-ad-hotexamples_com-box-2-0') };</script>
						</span></span><span
						class="ezoic-ad box-2 box-2-multi-137 adtester-container adtester-container-137"
						data-ez-name=hotexamples_com-box-2><span id=div-gpt-ad-hotexamples_com-box-2-0_1 ezaw=323
							ezah=250
							style=position:relative;z-index:0;display:inline-block;padding:0;min-height:250px;min-width:323px;
							class=ezoic-ad>
							<script data-ezscrex=false data-cfasync=false
								style=display:none;>if (typeof __ez_fad_position != 'undefined') { __ez_fad_position('div-gpt-ad-hotexamples_com-box-2-0_1') };</script>
						</span></span><span
						class="ezoic-ad box-2 box-2-multi-137 adtester-container adtester-container-137"
						data-ez-name=hotexamples_com-box-2><span id=div-gpt-ad-hotexamples_com-box-2-0_2 ezaw=323
							ezah=250
							style=position:relative;z-index:0;display:inline-block;padding:0;min-height:250px;min-width:323px;
							class=ezoic-ad>
							<script data-ezscrex=false data-cfasync=false
								style=display:none;>if (typeof __ez_fad_position != 'undefined') { __ez_fad_position('div-gpt-ad-hotexamples_com-box-2-0_2') };</script>
						</span></span>
					<style>
						.box-2-multi-137 {
							border: none !important;
							display: block !important;
							float: none;
							line-height: 0px;
							margin-bottom: 15px !important;
							margin-left: 0px !important;
							margin-right: 0px !important;
							margin-top: 15px !important;
							min-height: 250px;
							min-width: 300px;
							padding: 0;
							text-align: center !important;
						}
					</style>
				</span>
				<div class=col-md-12>
					<h1>Results for: fgets</h1>
					<div class="search-result row">
						<div class="col-md-1 counter">1.</div>
						<div class=col-md-11>
							<div class=header><span class=item-lang>C++:</span>
								<a href=https://cpp.hotexamples.com/examples/-/-/fgets/cpp-fgets-function-examples.html><span
										class=highlight>fgets</span></a> - <span class=item-type>Examples</span>
							</div>
							<div class=counters><span class=count><span>Examples:</span> 30</span></div>
						</div>
					</div>
					<div class="search-result row">
						<div class="col-md-1 counter">2.</div>
						<div class=col-md-11>
							<div class=header><span class=item-lang>C++:</span>
								<a href=https://cpp.hotexamples.com/examples/-/-/Fgets/cpp-fgets-function-examples.html><span
										class=highlight>Fgets</span></a> - <span class=item-type>Examples</span>
							</div>
							<div class=counters><span class=count><span>Examples:</span> 30</span></div>
						</div>
					</div>
					<div class="search-result row">
						<div class="col-md-1 counter">3.</div>
						<div class=col-md-11>
							<div class=header><span class=item-lang>C++:</span>
								<a
									href=https://cpp.hotexamples.com/examples/-/MIOFILE/fgets/cpp-miofile-fgets-method-examples.html>MIOFILE::<span
										class=highlight>fgets</span></a> - <span class=item-type>Examples</span>
							</div>
							<div class=counters><span class=count><span>Examples:</span> 30</span></div>
						</div>
					</div>
					<div class="search-result row">
						<div class="col-md-1 counter">4.</div>
						<div class=col-md-11>
							<div class=header><span class=item-lang>C++:</span>
								<a href=https://cpp.hotexamples.com/examples/-/-/FGets/cpp-fgets-function-examples.html><span
										class=highlight>FGets</span></a> - <span class=item-type>Examples</span>
							</div>
							<div class=counters><span class=count><span>Examples:</span> 22</span></div>
						</div>
					</div>
					<div class="search-result row">
						<div class="col-md-1 counter">5.</div>
						<div class=col-md-11>
							<div class=header><span class=item-lang>C++:</span>
								<a href=https://cpp.hotexamples.com/examples/-/-/FGETS/cpp-fgets-function-examples.html><span
										class=highlight>FGETS</span></a> - <span class=item-type>Examples</span>
							</div>
							<div class=counters><span class=count><span>Examples:</span> 15</span></div>
						</div>
					</div>
					<div class="search-result row">
						<div class="col-md-1 counter">6.</div>
						<div class=col-md-11>
							<div class=header><span class=item-lang>C++:</span>
								<a href=https://cpp.hotexamples.com/examples/-/-/FGetS/cpp-fgets-function-examples.html><span
										class=highlight>FGetS</span></a> - <span class=item-type>Examples</span>
							</div>
							<div class=counters><span class=count><span>Examples:</span> 3</span></div>
						</div>
					</div>
					<div class="search-result row">
						<div class="col-md-1 counter">7.</div>
						<div class=col-md-11>
							<div class=header><span class=item-lang>C++:</span>
								<a
									href=https://cpp.hotexamples.com/examples/-/YsString/Fgets/cpp-ysstring-fgets-method-examples.html>YsString::<span
										class=highlight>Fgets</span></a> - <span class=item-type>Examples</span>
							</div>
							<div class=counters><span class=count><span>Examples:</span> 3</span></div>
						</div>
					</div>
				</div>
			</div>
		</div><span id=ezoic-pub-ad-placeholder-138 class=ezoic-adpicker-ad></span><span
			class="ezoic-ad medrectangle-1 medrectangle-1138 adtester-container adtester-container-138"
			data-ez-name=hotexamples_com-medrectangle-1><span id=div-gpt-ad-hotexamples_com-medrectangle-1-0 ezaw=728
				ezah=90
				style="position:relative;z-index:0;display:inline-block;padding:0;width:100%;max-width:1200px;margin-left:auto !important;margin-right:auto !important;min-height:250px;min-width:970px;"
				class=ezoic-ad>
				<script data-ezscrex=false data-cfasync=false
					style=display:none;>if (typeof __ez_fad_position != 'undefined') { __ez_fad_position('div-gpt-ad-hotexamples_com-medrectangle-1-0') };</script>
			</span><span style=width:728px;display:block;height:14px;margin:auto class=reportline><span
					style="text-align:center;font-size: smaller;float:left;line-height:normal;"><a
						href=https://www.ezoic.com/what-is-ezoic/ target=_blank rel="noopener noreferrer nofollow"
						style=cursor:pointer><img src=https://go.ezoic.net/utilcave_com/img/ezoic.png alt=Ezoic
							style="height:12px !important; padding:2px !important; border:0px !important; cursor:pointer !important; width: 58px !important; margin:0 !important; box-sizing: content-box !important;"></a></span><span
					class=ez-report-ad-button
					name="?pageview_id=2c437542-03ac-4315-67b8-e37f0e9b16c7&ad_position_id=138&impression_group_id=hotexamples_com-medrectangle-1/2021-07-19/988066&ad_size=728x90&domain_id=110793&url=https://hotexamples.com/search"
					style="cursor: pointer!important; font-size:12px !important;color: #a5a5a5 ;float:right;text-decoration:none !important;font-family:arial !important;line-height:normal;">report
					this ad</span></span></span>
	</div>
	<footer class=footer>
		<div class=container>
			<div class=row>
				<div class=col-md-12 style="text-align: center"><a
						href="https://hotexamples.com/site/trends?type=php%7Cf">Top Functions</a> |
					<a href="https://hotexamples.com/site/trends?type=php%7Cc">Top Classes</a>
					|
					<a href=https://doc.hotexamples.com/doc/map>Documentation</a>
					| <a href=/site/privacy>Privacy Policy</a>
				</div>
			</div>
			<div class=row>
				<div class=col-md-12 style="text-align: center"><a href=https://hotexamples.com />PHP</a>
					| <a href=https://csharp.hotexamples.com />C# (CSharp)</a>
					| <a href=https://java.hotexamples.com />Java</a>
					| <a href=https://golang.hotexamples.com />Golang</a>
					| <a href=https://cpp.hotexamples.com />C++ (Cpp)</a>
					| <a href=https://python.hotexamples.com />Python</a>
					| <a href=https://javascript.hotexamples.com />JavaScript</a>
					| <a href=https://typescript.hotexamples.com />TypeScript</a></div>
			</div>
			<div class=row>
				<div class=col-md-12 style="text-align: center"><a href=https://hotexamples.com/search>EN</a>
					| <a href=https://hotexamples.com/ru/search>RU</a>
					| <a href=https://hotexamples.com/de/search>DE</a>
					| <a href=https://hotexamples.com/fr/search>FR</a>
					| <a href=https://hotexamples.com/es/search>ES</a>
					| <a href=https://hotexamples.com/pt/search>PT</a>
					| <a href=https://hotexamples.com/it/search>IT</a>
					| <a href=https://hotexamples.com/jp/search>JP</a>
					| <a href=https://hotexamples.com/zh/search>ZH</a></div>
			</div>
			<div class=row>
				<div class="col-md-10 col-md-offset-1"></div>
				<div class=col-md-1>
					<script type=text/ez-screx><!--
                        __ez.scxr.getDW(document).write("<a href='//www.liveinternet.ru/click' " +
                            "target=_blank><img src='//counter.yadro.ru/hit?t44.6;r" +
                            escape(document.referrer) + ((typeof(screen) == "undefined") ? "" :
                                ";s" + screen.width + "*" + screen.height + "*" + (screen.colorDepth ?
                                screen.colorDepth : screen.pixelDepth)) + ";u" + escape(document.URL) +
                            ";" + Math.random() +
                            "' alt='' title='LiveInternet' " +
                            "border='0' width='31' height='31'><\/a>");
                        //--></script>
				</div>
			</div>
		</div>
	</footer>
	<script
		src="https://cdn-0.hotexamples.com/ezossp/unknown/ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js?screx=1&sxcb=1a"
		type=text/ez-screx></script>
	<script src="https://cdn-0.hotexamples.com/assets/57baee906870e236a126e22a165ef4a4eb6518e2.js?screx=1&sxcb=1a"
		type=text/ez-screx></script>
	<script type=text/ez-screx>ezoicSiteSpeed(jQuery, String(/documentReady/).substring(1).slice(0,-1), String(/jQuery-document-ready/).substring(1).slice(0,-1), function ($) {
jQuery('#search-form').yiiActiveForm([{"id":"searchform-lang","name":"lang","container":".field-searchform-lang","input":"#searchform-lang","enableAjaxValidation":true},{"id":"searchform-search","name":"search","container":".field-searchform-search","input":"#searchform-search","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"Search cannot be blank."});}}], []);
});</script>
	<script>
		var __inScopeForCCPA = false;
		function __uspapi(command, version, callback) {
			var response = null;
			var successs = false;
			if (command === "getUSPData" && version === 1) {
				var uspString = "1"; // Version
				if (__inScopeForCCPA) {
					uspString += "Y"; // Has Explicit Notice for Opt Out been provided (ex footer or minor consent modal)
					var result;
					var consentCookie = (result = new RegExp('(?:^|; )ezoccpaconsent=([^;]*)').exec(document.cookie)) ? (result[1]) : null;
					if (consentCookie === "nonconsent") {
						uspString += "Y";
					}
					else {
						uspString += "N";
					}
					uspString += "N" // Is pub a signatory to the IAB Limited Service Provider Agreement (http://www.iabprivacy.com/)
				}
				else {
					uspString += "---";
				}
				response = {
					uspString: uspString,
					version: 1
				};
				success = true;
			}
			return callback(response, success);
		};
		function __receiveUspapiMessage(event) {
			if (event.data.hasOwnProperty('__uspapiCall')) {
				__uspapi('getUSPData', 1, function (uspData, success) {
					event.source.postMessage({
						__uspapiReturn: {
							returnValue: uspData,
							success: success,
							callId: event.data.__uspapiCall.callId
						}
					},
						event.origin);
				});
			}
			return null;
		};
		window.addEventListener("message", __receiveUspapiMessage, false);
	</script>
	<script>function __ez_fad_ezpbinit() {
			var s = document.createElement('script');
			s.setAttribute('src', '//go.ezodn.com/hb/dall.js?b=amx,appnexus,conversant,ix,medianet,oftmedia,onemobile,onetag,pubmatic,pubmatic,sovrn,unruly&cb=195-2-24');
			document.body.appendChild(s);
		} var epbjs = epbjs || {}; epbjs.que = epbjs.que || []; epbjs.bidderTimeout = 2000; epbjs.useAdj = true; epbjs.SS = { "amx": 11290, "appnexus": 10087, "conversant": 10033, "ix": 10082, "medianet": 11307, "oftmedia": 10081, "onemobile": 11293, "onetag": 11291, "pubmatic": 10061, "sovrn": 10017, "unruly": 10097 }; epbjs.bidders = ['amx,appnexus,conversant,ix,medianet,oftmedia,onemobile,onetag,pubmatic,pubmatic,sovrn,unruly']; epbjs.que.push(function () { epbjs.aliasBidder('appnexus', 'conversant'); epbjs.aliasBidder('appnexus', 'oftmedia'); }); epbjs.bidderSettings = { 'conversant': { bidCpmAdjustment: function (bidCpm) { var adj1 = bidCpm * 1.000000; var adj2 = adj1 * 1.000000; return adj2; } }, 'sovrn': { bidCpmAdjustment: function (bidCpm) { var adj1 = bidCpm * 1.000000; var adj2 = adj1 * 1.000000; return adj2; } }, 'oftmedia': { bidCpmAdjustment: function (bidCpm) { var adj1 = bidCpm * 0.850000; var adj2 = adj1 * 1.000000; return adj2; } }, 'ix': { bidCpmAdjustment: function (bidCpm) { var adj1 = bidCpm * 0.950000; var adj2 = adj1 * 1.000000; return adj2; } }, 'onemobile': { bidCpmAdjustment: function (bidCpm) { var adj1 = bidCpm * 1.000000; var adj2 = adj1 * 1.000000; return adj2; } }, 'pubmatic': { bidCpmAdjustment: function (bidCpm) { var adj1 = bidCpm * 1.000000; var adj2 = adj1 * 1.000000; return adj2; } }, 'pubmatic': { bidCpmAdjustment: function (bidCpm) { var adj1 = bidCpm * 1.000000; var adj2 = adj1 * 1.000000; return adj2; } }, 'amx': { bidCpmAdjustment: function (bidCpm) { var adj1 = bidCpm * 1.000000; var adj2 = adj1 * 1.000000; return adj2; } }, 'onetag': { bidCpmAdjustment: function (bidCpm) { var adj1 = bidCpm * 1.000000; var adj2 = adj1 * 1.000000; return adj2; } }, 'appnexus': { bidCpmAdjustment: function (bidCpm) { var adj1 = bidCpm * 0.950000; var adj2 = adj1 * 1.000000; return adj2; } }, 'medianet': { bidCpmAdjustment: function (bidCpm) { var adj1 = bidCpm * 1.000000; var adj2 = adj1 * 1.000000; return adj2; } }, 'unruly': { bidCpmAdjustment: function (bidCpm) { var adj1 = bidCpm * 0.490000; var adj2 = adj1 * 1.000000; return adj2; } }, }; epbjs.gadj = 1.000000; var __enableAnalytics = false;
		var __s2sbidders = [];
		var __allBidders = ['conversant', 'sovrn', 'oftmedia', 'ix', 'onemobile', 'pubmatic', 'pubmatic', 'amx', 'onetag', 'appnexus', 'medianet', 'unruly'];
		__ez.queue.addFile('/detroitchicago/denver.js', '/detroitchicago/denver.js?gcb=2&cb=9', false, [], true, false, true, false); __ez.queue.addFunc("epbjsRequestAdUnits", "epbjsRequestAdUnits", [[{
			code: 'div-gpt-ad-hotexamples_com-box-2-0', mediaTypes: { video: { context: 'outstream', playerSize: [[300, 250]], mimes: ["video/x-ms-wmv", "video/mp4", "video/mpeg", "video/webm"], renderer: { url: '//go.ezodn.com/detroitchicago/springfield.js?cb=2', render: function (bid) { if (!(bid.vastXml === undefined || bid.vastXml === null)) { try { setTimeout(() => { var configObj = { width: bid.width, height: bid.height, vastTimeout: 5000, maxAllowedVastTagRedirects: 3, allowVpaid: true, autoPlay: true, preload: false, mute: true, adText: 'Ezoic' }; outstreamPlayer(bid, bid.adUnitCode, configObj); }, 3000); } catch (e) { console.log(e); console.log('Error in rendering'); } } }, backupOnly: true } } }, bids: [{ bidder: 'unruly', params: { siteId: '217328', targetingUUID: '217328' } }], sizeMapping: [
				{
					minWidth: 300,
					sizes: [[300, 250]]
				}]
		}, {
			code: 'div-gpt-ad-hotexamples_com-box-2-0', mediaTypes: { banner: { sizes: [[300, 250]] } }, bids: [{ bidder: 'conversant', params: { site_id: '207364', secure: 1 } }, { bidder: 'sovrn', params: { tagid: '593589' } }, { bidder: 'oftmedia', params: { placementId: '19594005', video: { skippable: true, playback_method: ['auto_play_sound_off'] } } }, { bidder: 'ix', params: { siteId: '305137', size: [300, 250] } }, { bidder: 'pubmatic', params: { publisherId: '156983', adSlot: 'e_top_of_page_300x250' } }, { bidder: 'pubmatic', params: { publisherId: '156983', adSlot: 'e_top_of_page_300x250' } }, { bidder: 'amx', params: { tagId: 'ZXpvaWMuY29t' } }, { bidder: 'onetag', params: { pubId: '62499636face9dc' } }, { bidder: 'appnexus', params: { placementId: '20393530', video: { skippable: true, playback_method: ['auto_play_sound_off'] } } }, { bidder: 'medianet', params: { cid: '8CUBCB617', crid: '188911743' } }, { bidder: 'unruly', params: { siteId: '217328', targetingUUID: '217328' } }], sizeMapping: [
				{
					minWidth: 300,
					sizes: [[300, 250]]
				}]
		}, {
			code: 'div-gpt-ad-hotexamples_com-box-2-0_1', mediaTypes: { video: { context: 'outstream', playerSize: [[300, 250]], mimes: ["video/x-ms-wmv", "video/mp4", "video/mpeg", "video/webm"], renderer: { url: '//go.ezodn.com/detroitchicago/springfield.js?cb=2', render: function (bid) { if (!(bid.vastXml === undefined || bid.vastXml === null)) { try { setTimeout(() => { var configObj = { width: bid.width, height: bid.height, vastTimeout: 5000, maxAllowedVastTagRedirects: 3, allowVpaid: true, autoPlay: true, preload: false, mute: true, adText: 'Ezoic' }; outstreamPlayer(bid, bid.adUnitCode, configObj); }, 3000); } catch (e) { console.log(e); console.log('Error in rendering'); } } }, backupOnly: true } } }, bids: [{ bidder: 'unruly', params: { siteId: '217328', targetingUUID: '217328' } }], sizeMapping: [
				{
					minWidth: 300,
					sizes: [[300, 250]]
				}]
		}, {
			code: 'div-gpt-ad-hotexamples_com-box-2-0_1', mediaTypes: { banner: { sizes: [[300, 250]] } }, bids: [{ bidder: 'conversant', params: { site_id: '207364', secure: 1 } }, { bidder: 'sovrn', params: { tagid: '593589' } }, { bidder: 'oftmedia', params: { placementId: '19594005', video: { skippable: true, playback_method: ['auto_play_sound_off'] } } }, { bidder: 'ix', params: { siteId: '305137', size: [300, 250] } }, { bidder: 'pubmatic', params: { publisherId: '156983', adSlot: 'e_top_of_page_300x250' } }, { bidder: 'pubmatic', params: { publisherId: '156983', adSlot: 'e_top_of_page_300x250' } }, { bidder: 'amx', params: { tagId: 'ZXpvaWMuY29t' } }, { bidder: 'onetag', params: { pubId: '62499636face9dc' } }, { bidder: 'appnexus', params: { placementId: '20393530', video: { skippable: true, playback_method: ['auto_play_sound_off'] } } }, { bidder: 'medianet', params: { cid: '8CUBCB617', crid: '188911743' } }, { bidder: 'unruly', params: { siteId: '217328', targetingUUID: '217328' } }], sizeMapping: [
				{
					minWidth: 300,
					sizes: [[300, 250]]
				}]
		}, {
			code: 'div-gpt-ad-hotexamples_com-box-2-0_2', mediaTypes: { video: { context: 'outstream', playerSize: [[300, 250]], mimes: ["video/x-ms-wmv", "video/mp4", "video/mpeg", "video/webm"], renderer: { url: '//go.ezodn.com/detroitchicago/springfield.js?cb=2', render: function (bid) { if (!(bid.vastXml === undefined || bid.vastXml === null)) { try { setTimeout(() => { var configObj = { width: bid.width, height: bid.height, vastTimeout: 5000, maxAllowedVastTagRedirects: 3, allowVpaid: true, autoPlay: true, preload: false, mute: true, adText: 'Ezoic' }; outstreamPlayer(bid, bid.adUnitCode, configObj); }, 3000); } catch (e) { console.log(e); console.log('Error in rendering'); } } }, backupOnly: true } } }, bids: [{ bidder: 'unruly', params: { siteId: '217328', targetingUUID: '217328' } }], sizeMapping: [
				{
					minWidth: 300,
					sizes: [[300, 250]]
				}]
		}, {
			code: 'div-gpt-ad-hotexamples_com-box-2-0_2', mediaTypes: { banner: { sizes: [[300, 250]] } }, bids: [{ bidder: 'conversant', params: { site_id: '207364', secure: 1 } }, { bidder: 'sovrn', params: { tagid: '593589' } }, { bidder: 'oftmedia', params: { placementId: '19594005', video: { skippable: true, playback_method: ['auto_play_sound_off'] } } }, { bidder: 'ix', params: { siteId: '305137', size: [300, 250] } }, { bidder: 'pubmatic', params: { publisherId: '156983', adSlot: 'e_top_of_page_300x250' } }, { bidder: 'pubmatic', params: { publisherId: '156983', adSlot: 'e_top_of_page_300x250' } }, { bidder: 'amx', params: { tagId: 'ZXpvaWMuY29t' } }, { bidder: 'onetag', params: { pubId: '62499636face9dc' } }, { bidder: 'appnexus', params: { placementId: '20393530', video: { skippable: true, playback_method: ['auto_play_sound_off'] } } }, { bidder: 'medianet', params: { cid: '8CUBCB617', crid: '188911743' } }, { bidder: 'unruly', params: { siteId: '217328', targetingUUID: '217328' } }], sizeMapping: [
				{
					minWidth: 300,
					sizes: [[300, 250]]
				}]
		}, { code: 'div-gpt-ad-hotexamples_com-medrectangle-1-0', mediaTypes: { video: { context: 'outstream', playerSize: [[728, 90]], mimes: ["video/x-ms-wmv", "video/mp4", "video/mpeg", "video/webm"], renderer: { url: '//go.ezodn.com/detroitchicago/springfield.js?cb=2', render: function (bid) { if (!(bid.vastXml === undefined || bid.vastXml === null)) { try { setTimeout(() => { var configObj = { width: bid.width, height: bid.height, vastTimeout: 5000, maxAllowedVastTagRedirects: 3, allowVpaid: true, autoPlay: true, preload: false, mute: true, adText: 'Ezoic' }; outstreamPlayer(bid, bid.adUnitCode, configObj); }, 3000); } catch (e) { console.log(e); console.log('Error in rendering'); } } }, backupOnly: true } } }, bids: [{ bidder: 'unruly', params: { siteId: '217328', targetingUUID: '217328' } }] }, { code: 'div-gpt-ad-hotexamples_com-medrectangle-1-0', mediaTypes: { banner: { sizes: [[728, 90]] } }, bids: [{ bidder: 'conversant', params: { site_id: '207364', secure: 1 } }, { bidder: 'sovrn', params: { tagid: '593624' } }, { bidder: 'oftmedia', params: { placementId: '19594037', video: { skippable: true, playback_method: ['auto_play_sound_off'] } } }, { bidder: 'ix', params: { siteId: '305140', size: [728, 90] } }, { bidder: 'pubmatic', params: { publisherId: '156983', adSlot: 'e_bottom_of_page_728x90' } }, { bidder: 'pubmatic', params: { publisherId: '156983', adSlot: 'e_bottom_of_page_728x90' } }, { bidder: 'amx', params: { tagId: 'ZXpvaWMuY29t' } }, { bidder: 'onetag', params: { pubId: '62499636face9dc' } }, { bidder: 'appnexus', params: { placementId: '20393530', video: { skippable: true, playback_method: ['auto_play_sound_off'] } } }, { bidder: 'medianet', params: { cid: '8CUBCB617', crid: '188911743' } }, { bidder: 'unruly', params: { siteId: '217328', targetingUUID: '217328' } }] }]], false, ['/detroitchicago/denver.js'], true, true, true, true);</script>
	<script>var __ez_tkn_evnt = function () { if (typeof (_ezaq) != 'undefined') { if (typeof window.ezogtk !== "undefined" && window.ezogtk !== "") { __ez.bit.AddAndFire(_ezaq.page_view_id, [new __ezDotData("ext_user_hash", window.ezogtk)]); } } }; document.addEventListener("DOMContentLoaded", __ez.queue.addFunc("__ez_tkn_evnt", "__ez_tkn_evnt", event, false, ['/detroitchicago/minneapolis.js', '/detroitchicago/memphis.js'], true, true, false, true));</script>
	<script async
		data-ezscrex=false>__ez_fad_load(0, 0); __ez_fad_doc_ht = __ez_fad_docht(); __ez_fad_vp_ht = __ez_fad_vpht(); function __ez_fad_scroll() { return window.pageYOffset || (document.documentElement || document.body.parentNode || document.body).scrollTop }
			var __ez_fad_scrollint = setInterval(function () {
				var sy = __ez_fad_scroll(); var isShortPage = __ez_fad_doc_ht <= (__ez_fad_vh + 100); var bot = (__ez_fad_vp_ht + sy); var botThresh = bot + __ez_fad_vp_ht; for (var divid in __ez_fad_divpos) {
					if (__ez_fad_fastdiv.indexOf(divid) != -1) { continue; }
					var divPos = __ez_fad_divpos[divid]; if (divPos > 0 && divPos > sy && divPos < (sy + 200)) { if (typeof __ez_fad_instaslots[divid] == 'function') { __ez_fad_instaslots[divid](); } } else if (divPos > 0 && divPos > sy && divPos < (sy + 600)) { if (typeof __ez_fad_instaslots[divid] == 'function') { __ez_fad_viewslots[divid](); } }
				}
				__ez_fad_chkpos(); if (ezslit_run[0] != true) { __ez_fad_load(0, 0); }
				if ((sy > 0 || isShortPage) && ezslit_run[1] != true) { __ez_fad_load(1, null); __ez_fad_load(5, null); }
				if ((sy > 100 || isShortPage) && ezslit_run[2] != true) { __ez_fad_load(2, null); }
				if (sy > (__ez_fad_vp_ht * .75) && ezslit_run[3] != true) { __ez_fad_load(3, null); }
				if (ezslit_run[1] == true && ezslit_run[2] == true && ezslit_run[3] == true) { clearInterval(__ez_fad_scrollint); }
			}, 500); function __ez_fad_chkpos() { if (typeof __ez_fad_divs[4] != 'undefined') { for (var i = 0; i < __ez_fad_divs[4].length; i++) { var id = __ez_fad_divs[4][i]; __ez_fad_divs[4][i] = null; __ez_fad_position([id]); }; } }</script>
	<script>(function (f, a) { function g(b, a, c) { b.addEventListener ? b.addEventListener(a, c) : b.attachEvent("on" + a, function () { c.call(b) }) } function k(b) { b && ("string" == typeof b["class"] && b["class"] && a.getElementById("uglipop_popbox").setAttribute("class", b["class"]), b.keepLayout && !b["class"] && a.getElementById("uglipop_popbox").setAttribute("style", "position:relative;height:300px;width:300px;background-color:white;opacity:1;"), "string" == typeof b.content && b.content && "html" == b.source && (a.getElementById("uglipop_popbox").innerHTML = b.content), "string" == typeof b.content && b.content && "div" == b.source && (a.getElementById("uglipop_popbox").innerHTML = a.getElementById(b.content).innerHTML)); a.getElementById("uglipop_overlay_wrapper").style.display = ""; a.getElementById("uglipop_overlay").style.display = ""; a.getElementById("uglipop_content_fixed").style.display = "" } function h() { a.getElementById("uglipop_overlay_wrapper").style.display = "none"; a.getElementById("uglipop_overlay").style.display = "none"; a.getElementById("uglipop_content_fixed").style.display = "none" } g(a, "DOMContentLoaded", function () { var b = a.createElement("div"), e = a.createElement("div"), c = a.createElement("div"), d = a.createElement("div"); e.id = "uglipop_content_fixed"; e.setAttribute("style", "position:fixed;top: 50%;left: 50%;transform: translate(-50%, -50%);-webkit-transform: translate(-50%, -50%);-ms-transform: translate(-50%, -50%);opacity:1;z-index:10000000;"); c.id = "uglipop_popbox"; d.id = "uglipop_overlay_wrapper"; d.setAttribute("style", "position:absolute;top:0;bottom:0;left:0;right:0;display:none"); b.id = "uglipop_overlay"; b.setAttribute("style", "position:fixed;top:0;bottom:0;left:0;right:0;opacity:0.3;width:100%;height:100%;background-color:black;"); d.appendChild(b); e.appendChild(c); a.body.appendChild(d); a.body.appendChild(e); a.getElementById("uglipop_overlay_wrapper").style.display = "none"; a.getElementById("uglipop_overlay").style.display = "none"; a.getElementById("uglipop_content_fixed").style.display = "none"; d.addEventListener("click", h); g(f, "keydown", function (a) { 27 == a.keyCode && h() }); f.uglipop = k }) })(window, document); var ezRBA = (function () {
			function init() {
				var reportAdsBtns = document.querySelectorAll('.ez-report-ad-button'); for (var i = 0; i < reportAdsBtns.length; i++) {
					reportAdsBtns[i].addEventListener('click', function (e) {
						var url = '<iframe src="https://svc.ezoic.com/pub/reportads/reportads.html' + e.target.getAttribute('name') + '" width="400" height="500" style="border-radius: 10px; box-shadow: 2px 2px 30px 6px rgba(0,0,0,0.75); border: 1px solid black;"></iframe>'
						uglipop({ class: 'none', source: 'html', content: url, });
					});
				}
				function bindEvent(element, eventName, eventHandler) { if (element.addEventListener) { element.addEventListener(eventName, eventHandler, false); } else if (element.attachEvent) { element.attachEvent('on' + eventName, eventHandler); } }
				bindEvent(window, 'message', function (e) { if (e.data === 'close-report-ad-modal') { document.getElementById('uglipop_overlay_wrapper').style.display = 'none'; document.getElementById('uglipop_overlay').style.display = 'none'; document.getElementById('uglipop_content_fixed').style.display = 'none'; } })
			}
			return { init: init };
		})(); ezRBA.init();</script>
	<script
		data-cfasync=false>(function () {
				var addListeners = function (eltype, els) {
					for (var en = 0; en < els.length; en++) {
						var el = els[en]; if (el.complete == false || (typeof (el.readyState) != 'undefined' && el.readyState < 4)) {
							var src = el.getAttribute('src') || el.currentSrc; if (typeof (el.readyState) != 'undefined' && el.readyState == 0) { el.addEventListener('loadstart', function (e) { var src = e.currentTarget.getAttribute('src') || e.currentSrc; window["ezorqs"](e, src); }); } else { var src = el.getAttribute('src') || el.currentSrc; window["ezorqs"](el, src); }
							el.addEventListener('load', function (e) { var src = e.currentTarget.getAttribute('src') || e.srcElement.currentSrc; window["ezorqe"](e, src); }); el.addEventListener('loadeddata', function (e) { var src = e.currentTarget.getAttribute('src') || e.srcElement.currentSrc; window["ezorqe"](e, src); }); el.addEventListener('error', function (e) { var src = e.currentTarget.getAttribute('src') || e.srcElement.currentSrc; window["ezorqe"](e, src); });
						}
					}
				}; var CssLoadedListeners = function (els) { for (var en = 0; en < els.length; en++) { var el = els[en]; if ((el.getAttribute('rel') == 'preload' || el.getAttribute('rel') == 'stylesheet') && el.getAttribute('href') != null) { if (isStyleSheetLoaded(el.getAttribute('href'))) { window["ezorqs"](el, el.getAttribute('href')); var img = document.createElement('img'); img.onerror = function (e) { if (typeof e.path != "undefined" && typeof e.path[0].currentSrc != "undefined") { window["ezorqe"](el, e.path[0].currentSrc); } else if (typeof e.srcElement != "undefined" && typeof e.srcElement.href != "undefined") { window["ezorqe"](el, e.srcElement.href); } }; img.src = el.getAttribute('href'); } else { } } else { } } }; function isStyleSheetLoaded(url) {
					for (var i = 0; i < document.styleSheets.length; i++) { if (document.styleSheets[i].href == url) { return true } }
					return false;
				}
				__ez_addAllListeners = function () {
					addListeners('img', document.querySelectorAll('img')); addListeners('video', document.querySelectorAll('video')); addListeners('audio', document.querySelectorAll('audio')); CssLoadedListeners(document.querySelectorAll('link')); if (typeof window["__ez"]["ssaf"] != "undefined" && window["__ez"]["ssaf"].indexOf(16) > -1) {
						if (typeof window["__ez"]["sshsdef"] !== "undefined" && window["__ez"]["sshsdef"] === false) {
							if (Element.prototype.addEventListener) {
								if (typeof window["onload"] == "function") { window["addEventListener"]("load", window["onload"]); window["onload"] = null; }
								if (typeof document["onload"] == "function") { document["addEventListener"].addEventListener("load", document["onload"]); document["onload"] = null; }
							}
						}
					}
				}
				__ez.queue.addFunc("__ez_addAllListeners", "__ez_addAllListeners", null, false, ['/detroitchicago/tulsa.js'], true, true, true, true);
			}());</script>
	<script style=display:none;>var __ez_dims = (function () {
			var setCookie = function (name, content, expiry) {
				return document.cookie = name + '=' + content + ((expiry) ? ';expires=' + (new Date(Math.floor(new Date().getTime() + expiry * 1000)).toUTCString()) : '') + ';path=/';
			};
			var ffid = 1;
			var oh = window.screen.height;
			var ow = window.screen.width;
			var h = ffid === 1 ? oh : (oh > ow) ? oh : ow;
			var w = ffid === 1 ? ow : (oh > ow) ? ow : oh;
			var uh = window.innerHeight || document.documentElement.clientHeight || document.getElementsByTagName('body')[0].clientHeight;
			var uw = window.innerWidth || document.documentElement.clientWidth || document.getElementsByTagName('body')[0].clientWidth;
			setCookie('ezds', encodeURIComponent('ffid=' + ffid + ',w=' + w + ',h=' + h), (31536e3 * 7));
			setCookie('ezohw', encodeURIComponent('w=' + uw + ',h=' + uh), (31536e3 * 7));
		})();</script>
	<script style=display:none; async>
	</script>
	<script type="text/javascript">
		var ezCanEngagePage = false;
		(function () {
			var attachEvent = function (element, evt, func) {
				if (element.addEventListener) {
					element.addEventListener(evt, func, false);
				} else {
					element.attachEvent("on" + evt, func);
				}
			};
			attachEvent(document.body, "ezPageEngageable", function (e) {
				ezCanEngagePage = true;
			});
			attachEvent(document.body, "ezCMPComplete", function (e) {
				if (typeof (_ezaq) !== "undefined") {
					__ez.bit.AddAndFire(_ezaq["page_view_id"], [(new __ezDotData('pageview_updated_t_time', Date.now()))]);
				}
			});
		})();</script>
	<script type="text/javascript">var cmpCookies = {}; cmpCookies["3"] = ["ezoadgid_110793=-1; Path=/; Domain=hotexamples.com; Expires=Mon, 19 Jul 2021 17:05:42 UTC", "ezoref_110793=; Path=/; Domain=hotexamples.com; Expires=Mon, 19 Jul 2021 18:35:42 UTC", "ezoab_110793=mod1; Path=/; Domain=hotexamples.com; Expires=Mon, 19 Jul 2021 18:35:42 UTC", "ezopvc_110793=1; Path=/; Domain=hotexamples.com; Expires=Mon, 19 Jul 2021 17:05:43 UTC", "ezepvv=0; Path=/; Domain=hotexamples.com; Expires=Tue, 20 Jul 2021 16:35:43 UTC", "ezovid_110793=28271840; Path=/; Domain=hotexamples.com; Expires=Mon, 19 Jul 2021 17:05:43 UTC", "lp_110793=https://hotexamples.com/search; Path=/; Domain=hotexamples.com; Expires=Mon, 19 Jul 2021 17:05:43 UTC"];
	</script>

	<script>
		var __ezCmpConfig = {
			version: 4,
			pageIsEngageable: false,
			results: { "domain": ".hotexamples.com", "contentData": { "languages": { "de": "de", "en": "en", "es": "es", "fr": "fr", "hr": "hr", "it": "it", "nl": "nl", "sl": "sl", "sr": "sr", "sv": "sv" }, "list": [{ "id": 106, "did": 0, "language": "en", "dialogHeading": "This website uses cookies", "dialogBody": "This website use cookies to personalize content, provide custom experiences, target ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners who may combine it with other information that you've provided to them or that they've collected from your use of their services. Below you have the option of selecting which types of cookies you'll allow to store your personal information. To view the vendor list or change consent settings at any time please visit our privacy policy using the link below.", "declineButton": "Allow Necessary Cookies \u0026 Continue", "acceptButton": "Continue with Recommended Cookies", "okButton": "Save", "cookieInfo": "Cookies are small text files that can be used by websites to make a user's experience more efficient.\r\n\r\nThe law states that we can store cookies that contain personal information on your device if they are strictly necessary for the operation of this site. For all other types of cookies that contain personal information we need your permission.\r\n\r\nThis site uses different types of cookies. Some cookies are placed by third party services that appear on our pages.", "necessaryCategory": "Necessary", "necessaryDescription": "Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure areas of the website. The website cannot function properly without these cookies.                            ", "preferenceCategory": "Preferences", "preferenceDescription": "Preference cookies enable a website to remember information that changes the way the website behaves or looks, like your preferred language or the region that you are in.", "statisticsCategory": "Statistics", "statisticsDescription": "Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting information anonymously.", "marketingCategory": "Marketing", "marketingDescription": "Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and engaging for the individual user and thereby more valuable for publishers and third party advertisers.", "unclassifiedCategory": "Unclassified", "unclassifiedDescription": "Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual cookies.", "cookieDetailsLink": "Cookie Details", "aboutCookiesLink": "About Cookies", "privacyPolicyLink": "Privacy Policy", "columnName": "Name", "columnPurpose": "Purpose", "columnPII": "May Contain Personal Information", "columnDuration": "Duration", "mainHeading": "Privacy \u0026 Transparency", "purposes": "Purposes", "legitimateInterest": "Legitimate Interest", "consent": "Consent", "specialPurposes": "Special Purposes", "manageSettings": "Manage Settings", "saveSettings": "Save Settings \u0026 Exit", "vendors": "Vendor List", "nonTcfVendors": "Additional Vendors", "features": "Features", "specialFeatures": "Special Features", "acceptAllButton": "Accept All \u0026 Continue", "purposePrefix": "We and our partners use cookies to ", "stackPrefix": "We and our partners use data for ", "mainBody": "An example of data being processed may be a unique identifier stored in a cookie. Some of our partners may process your data as a part of their legitimate business interest without asking for consent. To view the purposes they believe they have legitimate interest for, or to object to this data processing use the vendor list link below. The consent submitted will only be used for data processing originating from this website. If you would like to change your settings or withdraw consent at any time, the link to do so is in our privacy policy accessible from our home page." }, { "id": 107, "did": 0, "language": "fr", "dialogHeading": "Ce site web utilise des cookies", "dialogBody": "Nous utilisons des cookies pour personnaliser le contenu et les publicités, pour fournir des fonctionnalités de médias sociaux et pour analyser notre trafic. Nous partageons également des informations sur votre utilisation de notre site avec nos partenaires de médias sociaux, de publicité et d'analyse qui peuvent les combiner avec d'autres informations que vous leur avez fournies ou qu'ils ont collectées à partir de votre utilisation de leurs services. S'il vous plaît lire plus sur notre page de politique de confidentialité. Pour consulter la liste des fournisseurs ou modifier les paramètres de consentement à tout moment, veuillez consulter notre politique de confidentialité en utilisant le lien ci-dessous.", "declineButton": "Utilisez les cookies nécessaires uniquement et continuez", "acceptButton": "Autoriser tous les cookies et continuer", "okButton": "D'accord", "cookieInfo": "Les cookies sont de petits fichiers texte qui peuvent être utilisés par les sites Web pour rendre l'expérience utilisateur plus efficace.\r\n\r\nLa loi stipule que nous pouvons stocker des cookies sur votre appareil s'ils sont strictement nécessaires au fonctionnement de ce site. Pour tous les autres types de cookies, nous avons besoin de votre permission.\r\n\r\nCe site utilise différents types de cookies. Certains cookies sont placés par des services tiers qui apparaissent sur nos pages.", "necessaryCategory": "Nécessaire", "necessaryDescription": "Les cookies nécessaires permettent de rendre un site Web utilisable en activant des fonctions de base telles que la navigation dans les pages et l'accès à des zones sécurisées du site Web. Le site Web ne peut pas fonctionner correctement sans ces cookies.", "preferenceCategory": "Préférences", "preferenceDescription": "Les cookies de préférence permettent à un site Web de mémoriser des informations qui modifient le comportement ou l'aspect du site Web, comme votre langue préférée ou la région dans laquelle vous vous trouvez.", "statisticsCategory": "Statistiques", "statisticsDescription": "Les cookies statistiques aident les propriétaires de sites Web à comprendre comment les visiteurs interagissent avec les sites Web en collectant et en signalant les informations de manière anonyme.", "marketingCategory": "Commercialisation", "marketingDescription": "Les cookies de marketing sont utilisés pour suivre les visiteurs sur les sites Web. L'intention est d'afficher des publicités pertinentes et engageantes pour l'utilisateur individuel et donc plus utiles pour les éditeurs et les annonceurs tiers.", "unclassifiedCategory": "Non classé", "unclassifiedDescription": "Les cookies non classés sont des cookies que nous sommes en train de classer, ainsi que les fournisseurs de cookies individuels.", "cookieDetailsLink": "Détails du cookie", "aboutCookiesLink": "À propos des cookies", "privacyPolicyLink": "Politique de confidentialité", "columnName": "Prénom", "columnPurpose": "Objectif", "columnPII": "Peut contenir des informations personnelles", "columnDuration": "Durée", "mainHeading": "Confidentialité et Transparence", "purposes": "Objectifs", "legitimateInterest": "Intérêt Légitime", "consent": "Consentement", "specialPurposes": "Objectifs Spéciaux", "manageSettings": "Gérer les Paramètres", "saveSettings": "Enregistrer les Paramètres", "vendors": "Liste de Fournisseurs", "nonTcfVendors": "Fournisseurs Supplémentaires", "features": "Caractéristiques", "specialFeatures": "Particularités", "acceptAllButton": "Accepter Tout et Continuer", "purposePrefix": "Nous et nos partenaires utilisons des cookies pour ", "stackPrefix": "Nous et nos partenaires utilisons les données pour ", "mainBody": "Un exemple de données traitées peut être un identifiant unique stocké dans un cookie. Certains de nos partenaires peuvent traiter vos données dans le cadre de leurs intérêts commerciaux légitimes sans vous demander votre consentement. Pour connaître les raisons pour lesquelles ils estiment avoir un intérêt légitime ou pour s'opposer à ce traitement de données, utilisez le lien de la liste des fournisseurs ci-dessous. Le consentement soumis ne sera utilisé que pour le traitement des données provenant de ce site web. Si vous souhaitez modifier vos paramètres ou retirer votre consentement à tout moment, le lien pour ce faire se trouve dans notre politique de confidentialité accessible depuis notre page d'accueil." }, { "id": 108, "did": 0, "language": "de", "dialogHeading": "Diese Website verwendet Cookies", "dialogBody": "Um diese Website zu betreiben, ist es für mich notwendig Cookies zu verwenden. Einige Cookies sind erforderlich, um die Funktionalität zu gewährleisten, andere brauche ich für Statistiken und wieder andere helfen mir dir nur die Werbung anzuzeigen, die dich interessiert. Mehr erfährst du in meiner Datenschutzerklärung.", "declineButton": "Nur notwendige Cookies", "acceptButton": "Weiter mit den empfohlenen Cookies", "okButton": "Speichern", "cookieInfo": "Cookies sind kleine Textdateien, die von Websites verwendet werden können, um die Nutzererfahrung effizienter zu gestalten.\n\nDas Gesetz besagt, dass wir Cookies, die persönliche Informationen auf Ihrem Gerät enthalten, speichern können, wenn sie für den Betrieb dieser Website unbedingt erforderlich sind. Für alle anderen Arten von Cookies, die persönliche Informationen enthalten, benötigen wir Ihre Erlaubnis.\n\nDiese Seite verwendet verschiedene Arten von Cookies. Einige Cookies werden von Drittanbietern auf unseren Seiten platziert. ", "necessaryCategory": "Notwendig", "necessaryDescription": "Notwendige Cookies helfen dabei, eine Website nutzbar zu machen, indem grundlegende Funktionen wie Seitennavigation und Zugriff auf sichere Bereiche der Website aktiviert werden. Die Website kann ohne diese Cookies nicht ordnungsgemäß funktionieren.", "preferenceCategory": "Präferenzen", "preferenceDescription": "Präferenz-Cookies ermöglichen es einer Website, Informationen zu speichern, die das Verhalten oder das Aussehen der Website ändern, wie z.B. Ihre bevorzugte Sprache oder die Region, in der Sie sich befinden.", "statisticsCategory": "Statistiken", "statisticsDescription": "Statistische Cookies helfen Website-Betreibern zu verstehen, wie Besucher mit Websites interagieren, indem sie Informationen anonym sammeln und melden.", "marketingCategory": "Marketing", "marketingDescription": "Marketing-Cookies werden verwendet, um Besucher auf Websites zu verfolgen. Die Absicht besteht darin, relevante und ansprechende Anzeigen für den einzelnen Nutzer anzuzeigen und somit für Publisher und Werbetreibende von Drittanbietern nützlicher zu sein.", "unclassifiedCategory": "Nicht klassifiziert", "unclassifiedDescription": "Nicht klassifizierte Cookies sind Cookies, die wir gerade klassifizieren, sowie die Lieferanten einzelner Cookies.", "cookieDetailsLink": "Details von Cookies", "aboutCookiesLink": "Über Cookies", "privacyPolicyLink": "Datenschutzerklärung", "columnName": "Name", "columnPurpose": "Ziel", "columnPII": "Kann persönliche Informationen enthalten", "columnDuration": "Dauer", "mainHeading": "Datenschutz \u0026 Transparenz", "purposes": "Verwendungszwecke", "legitimateInterest": "Legitimes Interesse", "consent": "Consent", "specialPurposes": "besondere Verwendungszwecke", "manageSettings": "Einstellungen verwalten", "saveSettings": "Einstellungen speichern \u0026 Beenden", "vendors": "Anbieter-Liste", "nonTcfVendors": "Zusätzliche Anbieter", "features": "Eigenschaften", "specialFeatures": "Besondere Eigenschaften", "acceptAllButton": "Alle akzeptieren \u0026 fortfahren", "purposePrefix": "Wir und unsere Partner verwenden Cookies, um", "stackPrefix": "Wir und unsere Partner verwenden Daten für", "mainBody": "Ein Beispiel für Daten, welche verarbeitet werden, kann eine in einem Cookie gespeicherte eindeutige Kennung sein. Einige unserer Partner können Ihre Daten im Rahmen ihrer legitimen Geschäftsinteressen verarbeiten, ohne Ihre Zustimmung einzuholen. Um die Verwendungszwecke einzusehen, für die diese ihrer Meinung nach ein berechtigtes Interesse haben, oder um dieser Datenverarbeitung zu widersprechen, verwenden Sie den unten stehenden Link zur Anbieterliste. Die übermittelte Einwilligung wird nur für die von dieser Webseite ausgehende Datenverarbeitung verwendet. Wenn Sie Ihre Einstellungen ändern oder Ihre Einwilligung jederzeit widerrufen möchten, finden Sie den Link dazu in unserer Datenschutzerklärung, die von unserer Homepage aus zugänglich ist" }, { "id": 1528, "did": 0, "language": "es", "dialogHeading": "Este sitio web utiliza cookies", "dialogBody": "Este sitio web utiliza cookies para personalizar el contenido, proporcionar experiencias personalizadas, mostrar anuncios, proporcionar características de redes sociales y analizar nuestro tráfico. También compartimos información sobre su uso en nuestro sitio con nuestros socios de redes sociales, publicidad y análisis que pueden combinarlo con otra información que les haya proporcionado o que hayan recopilado sobre el uso de sus servicios. A continuación, tiene la opción de seleccionar qué tipos de cookies permitirá que almacenen su información personal. Para ver la lista de proveedores o cambiar la configuración de consentimiento en cualquier momento, visite nuestra \"Política de privacidad\" utilizando el siguiente enlace.", "declineButton": "Permitir las Cookies Necesarias y Continuar", "acceptButton": "Continuar con las Cookies Recomendadas", "okButton": "Guardar", "cookieInfo": "Las cookies son pequeños archivos de texto que los sitios web pueden usar para hacer que la experiencia del usuario sea más eficiente.\nLa ley establece que podemos almacenar cookies que contienen información personal en su dispositivo si son estrictamente necesarias para el funcionamiento de este sitio. Para todos los demás tipos de cookies que contienen información personal, necesitamos su permiso.\nEste sitio utiliza diferentes tipos de cookies. Algunas cookies son colocadas por servicios de terceros que aparecen en nuestras páginas.", "necessaryCategory": "Necesarias", "necessaryDescription": "Las cookies necesarias ayudan a que un sitio web sea utilizable al habilitar funciones básicas como la navegación de páginas y el acceso a áreas seguras del sitio web. El sitio web no puede funcionar correctamente sin estas cookies.", "preferenceCategory": "Preferencias", "preferenceDescription": "Las cookies de preferencias, permiten que un sitio web guarde la información que modifica, la forma en que se comporta o se ve el sitio web, así como, su idioma preferido o la región en la que se encuentra.", "statisticsCategory": "Estadísticas", "statisticsDescription": "Las cookies de estadísticas ayudan a los propietarios de los sitios web, a comprender cómo los visitantes interactúan con los sitios mediante la recolección y reporte de información anónima.", "marketingCategory": "Mercadeo", "marketingDescription": "Las cookies de mercadeo se utilizan para seguir a los visitantes en los sitios web. La intención es mostrar anuncios que sean relevantes y atractivos para el usuario y, por tanto, más valiosos para editores y anunciantes externos.", "unclassifiedCategory": "Sin clasificación", "unclassifiedDescription": "Las cookies no clasificadas son cookies que estamos en proceso de clasificar, junto con los proveedores de cookies individuales.", "cookieDetailsLink": "Detalles de Cookies", "aboutCookiesLink": "Acerca de las Cookies", "privacyPolicyLink": "Enlace de políticas de privacidad", "columnName": "Nombre", "columnPurpose": "Propósito", "columnPII": "Puede contener información personal", "columnDuration": "Duración", "mainHeading": "Privacidad y transparencia", "purposes": "Propósitos", "legitimateInterest": "Interés legítimo", "consent": "Consentimiento", "specialPurposes": "Fines especiales", "manageSettings": "Administrar configuración", "saveSettings": "Guardar configuración y salir", "vendors": "Lista de proveedores", "nonTcfVendors": "Proveedores adicionales", "features": "Funciones", "specialFeatures": "Funciones especiales", "acceptAllButton": "Aceptar todo y continuar", "purposePrefix": "Nosotros y nuestros socios utilizamos cookies para ", "stackPrefix": "Nosotros y nuestros socios usamos datos para ", "mainBody": "Un ejemplo de datos procesados ​​puede ser un identificador único almacenado en una cookie. Algunos de nuestros socios pueden procesar sus datos como parte de su interés comercial legítimo sin solicitar su consentimiento. Para ver los propósitos que creen que tienen interés legítimo u oponerse a este procesamiento de datos, utilice el enlace de la lista de proveedores a continuación. El consentimiento enviado solo se utilizará para el procesamiento de datos que tienen su origen en este sitio web. Si desea cambiar su configuración o retirar el consentimiento en cualquier momento, el enlace hacerlo está en nuestra política de privacidad accesible desde nuestra página de inicio." }, { "id": 1715, "did": 0, "language": "it", "dialogHeading": "questo sito usa i cookie", "dialogBody": "Questo sito web utilizza i cookie per personalizzare i contenuti, fornire esperienze personalizzate, annunci mirati, fornire funzionalità di social media e analizzare il nostro traffico. Condividiamo anche informazioni sull'utilizzo del nostro sito con i nostri partner di social media, pubblicità e analisi che possono combinare con altre informazioni che avete fornito loro o che hanno raccolto dall'utilizzo dei loro servizi da parte vostra. Di seguito avete la possibilità di selezionare quali tipi di cookie consentite di memorizzare le vostre informazioni personali. Per visualizzare l'elenco dei fornitori o modificare le impostazioni di consenso in qualsiasi momento, visitate la nostra politica sulla privacy utilizzando il link sottostante", "declineButton": "accettare necessario", "acceptButton": "accetta tutto e continua", "okButton": "accetta", "cookieInfo": "I cookie sono piccoli file di testo che possono essere utilizzati dai siti web per rendere più efficiente l'esperienza dell'utente. La legge afferma che possiamo memorizzare i cookie che contengono informazioni personali sul tuo dispositivo se sono strettamente necessari per il funzionamento di questo sito. Per tutti gli altri tipi di cookie che contengono informazioni personali abbiamo bisogno della tua autorizzazione. Questo sito utilizza diversi tipi di cookie. Alcuni cookie sono inseriti da servizi di terze parti che compaiono sulle nostre pagine.", "necessaryCategory": "necessario", "necessaryDescription": "I cookie di preferenza consentono ad un sito web di memorizzare informazioni che cambiano il modo in cui il sito web si comporta o il suo aspetto, come la lingua preferita, o la regione in cui ci si trova", "preferenceCategory": "preferenze", "preferenceDescription": "I cookie di preferenza consentono a un sito web di ricordare le informazioni che cambiano il modo in cui il sito web si comporta o appare, come la tua lingua preferita o la regione in cui ti trovi.", "statisticsCategory": "statistiche", "statisticsDescription": "I cookie statistici aiutano i proprietari dei siti web a capire come i visitatori interagiscono con i siti raccogliendo e trasmettendo informazioni in forma anonima.", "marketingCategory": "marketing", "marketingDescription": "I cookie per il marketing vengono utilizzati per tracciare i visitatori dei siti web. L'intenzione è quella di visualizzare annunci che siano rilevanti e coinvolgenti per il singolo utente e quindi di maggior valore per gli editori e gli inserzionisti di terze parti", "unclassifiedCategory": " ", "unclassifiedDescription": " ", "cookieDetailsLink": "dettagli cookie", "aboutCookiesLink": "informazioni sui cookie", "privacyPolicyLink": "informativa sulla privacy", "columnName": " ", "columnPurpose": " ", "columnPII": " ", "columnDuration": " ", "mainHeading": "privacy e trasparenza", "purposes": "finalita", "legitimateInterest": "interesse legittimo", "consent": "consentire", "specialPurposes": "scopi specifici", "manageSettings": "gestire le impostazioni", "saveSettings": "accetta", "vendors": "lista dei fornitori", "nonTcfVendors": "fornitori aggiuntivi", "features": "caratteristiche", "specialFeatures": "caratteristiche speciali", "acceptAllButton": "accetta tutto e continua", "purposePrefix": "Noi e i nostri partner utilizziamo i cookie per", "stackPrefix": "Noi e i nostri partner utilizziamo i cookie per", "mainBody": "Un esempio di trattamento dei dati può essere un identificatore univoco memorizzato in un cookie. Alcuni dei nostri partner possono trattare i vostri dati come parte del loro legittimo interesse commerciale senza chiedere il consenso. Per visualizzare le finalità per le quali ritengono di avere un interesse legittimo o per opporsi a questo trattamento dei dati, utilizzare il link della lista dei fronitori qui sotto. Il consenso fornito sarà utilizzato solo per il trattamento dei dati provenienti da questo sito web. Se si desidera modificare le impostazioni o non dare il consenso in qualsiasi momento, il link per farlo è nella nostra politica sulla privacy accessibile dalla nostra home page" }, { "id": 2121, "did": 0, "language": "hr", "dialogHeading": "Ovo web-mjesto upotrebljava kolačiće.", "dialogBody": "Ovo web-mjesto koristi kolačiće za prilagodbu sadržaja, pružanje prilagođenih iskustava, ciljanje oglasa, pružanje značajki društvenih mreža i analizu našeg prometa. Također dijelimo informacije o vašoj upotrebi naše stranice s našim društvenim mrežama, oglašivačkim i analitičkim partnerima koji ih mogu kombinirati s ostalim informacijama koje ste im pružili ili koje su prikupili iz vašeg korištenja njihovim uslugama. Niže u tekstu nalazi se mogućnost odabira vrsta kolačića kojima ćete dopustiti pohranu vaših osobnih podataka. Da biste u bilo kojem trenutku pregledali popis dobavljača ili promijenili postavke privole, posjetite našu politiku privatnosti putem donje poveznice.", "declineButton": "Omogući nužne kolačiće i nastavi", "acceptButton": "Nastavi s preporučenim kolačićima", "okButton": "Spremi", "cookieInfo": "Kolačići su male tekstualne datoteke koje web-mjesta mogu upotrebljavati za učinkovitije korisničko iskustvo.\n\nZakonom je propisano da na vaš uređaj možemo pohraniti kolačiće koji sadrže osobne podatke ako su oni nužno potrebni za rad ove stranice. Za sve ostale vrste kolačića koji sadrže osobne podatke trebamo vaše dopuštenje.\n\nOva stranica upotrebljava različite vrste kolačića. Neke kolačiće postavljaju usluge trećih strana koje se pojavljuju na našim stranicama.", "necessaryCategory": "Nužni kolačići", "necessaryDescription": "Nužni kolačići pomažu da se web-mjesto učini korisnim omogućavanjem osnovnih funkcija poput navigacije stranicom i pristupa sigurnim dijelovima web-mjesta. Web-mjesto ne može ispravno funkcionirati bez ovih kolačića.", "preferenceCategory": "Kolačići preferencija", "preferenceDescription": "Kolačići preferencija omogućuju web-mjestu da pamti informacije koje mijenjaju način ponašanja ili izgleda web-mjesta, poput željenog jezika ili regije u kojoj se nalazite.", "statisticsCategory": "Statistički kolačići", "statisticsDescription": "Statistički kolačići pomažu vlasnicima web-mjesta da razumiju interakciju između posjetitelja i web-mjesta anonimnim prikupljanjem i izvješavanjem o informacijama.", "marketingCategory": "Marketinški kolačići", "marketingDescription": "Marketinški kolačići upotrebljavaju se za praćenje posjetitelja na web-mjestima. Namjera je prikazati oglase koji su relevantni i zanimljivi pojedinačnom korisniku te stoga vrjedniji izdavačima i oglašivačima trećih strana.", "unclassifiedCategory": "Neklasificirani kolačići", "unclassifiedDescription": "Neklasificirani kolačići su kolačići koje u tom trenutku klasificiramo, zajedno s pružateljima pojedinačnih kolačića.", "cookieDetailsLink": "Detalji kolačića", "aboutCookiesLink": "O kolačićima", "privacyPolicyLink": "Politika privatnosti", "columnName": "Naziv", "columnPurpose": "Svrha", "columnPII": "Mogu sadržavati osobne informacije", "columnDuration": "Trajanje", "mainHeading": "Privatnost i transparentnost", "purposes": "Svrhe", "legitimateInterest": "Legitiman interes", "consent": "Privola", "specialPurposes": "Posebne svrhe", "manageSettings": "Upravljanje postavkama", "saveSettings": "Spremi postavke i izađi", "vendors": "Popis dobavljača", "nonTcfVendors": "Dodatni dobavljači", "features": "Značajke", "specialFeatures": "Posebne značajke", "acceptAllButton": "Prihvati sve i nastavi", "purposePrefix": "Mi i naši partneri upotrebljavamo kolačiće za", "stackPrefix": "Mi i naši partneri upotrebljavamo podatke za", "mainBody": "Primjer podataka koji se obrađuju može biti jedinstveni identifikator pohranjen u kolačiću. Neki naši partneri mogu obrađivati vaše podatke kao dio svojeg legitimnog poslovnog interesa bez traženja privole. Da biste vidjeli svrhe za koje partneri smatraju da imaju legitimni interes ili se usprotivili ovoj obradi podataka, upotrijebite donju poveznicu na popis dobavljača. Poslana privola koristit će se samo za obradu podataka koji potječu s ovog web-mjesta. Ako u bilo kojem trenutku želite promijeniti svoje postavke ili povući privolu, poveznica za to nalazi se u našoj politici privatnosti dostupnoj na našoj početnoj stranici." }, { "id": 2125, "did": 0, "language": "sv", "dialogHeading": "Den här hemsidan använder sig av cookies", "dialogBody": "Denna webbplats använder cookies för att anpassa innehåll, tillhandahålla anpassade upplevelser, rikta annonser, för att tillhandahålla sociala mediefunktioner och för att analysera trafiken. Vi delar också information om din användning av vår webbplats med våra sociala medier, reklam- och analyspartner som kan kombinera den med annan information som du har gett dem eller som de har samlat in från din användning av deras tjänster. Nedan har du möjlighet att välja vilka typer av cookies du tillåter för att lagra din personliga information. För att se leverantörslistan eller ändra samtyckeinställningar när som helst, besök vår integritetspolicy med länken nedan.", "declineButton": "Till nödvändiga cookies och fortsätt", "acceptButton": "Fortsätt med rekommenderade cookies", "okButton": "Spara", "cookieInfo": "Cookies är små textfiler som kan användas av webbplatser för att effektivisera användarens upplevelse. \n\nEnligt lag kan vi spara cookies som innehåller personlig information på din enhet om de är absolut nödvändiga för driften av denna webbplats. För alla andra typer av cookies som innehåller personlig information behöver vi din tillåtelse. \n\nDenna webbplats använder olika typer av cookies. Vissa cookies placeras av tjänster från tredje part som visas på våra sidor.", "necessaryCategory": "Nödvändiga", "necessaryDescription": "Nödvändiga cookies hjälper till att göra en webbplats användbar genom att möjliggöra grundläggande funktioner som sidnavigering och åtkomst till säkra områden på webbplatsen. Webbplatsen kan inte fungera korrekt utan dessa cookies.", "preferenceCategory": "Inställningar", "preferenceDescription": "Nödvändiga cookies hjälper till att göra en webbplats användbar genom att aktivera grundläggande funktioner som sidnavigering och tillgång till säkra områden på webbplatsen. Webbplatsen kan inte fungera korrekt utan dessa cookies.", "statisticsCategory": "Statistik", "statisticsDescription": "Cookies för statistik hjälper en webbplatsägare att förstå hur besökare interagerar med webbplatser genom att samla och rapportera in information anonymt.", "marketingCategory": "Marknadsföring", "marketingDescription": "Cookies för marknadsföring används för att spåra besökare på webbplatser. Avsikten är att visa annonser som är relevanta och engagerande för enskilda användare, och därmed mer värdefull för utgivare och tredjepartsannonsörer.", "unclassifiedCategory": "Oklassifierade", "unclassifiedDescription": "Oklassificerade cookies är cookies som ännu inte har klassificerats, dessa håller vi på att klassificera tillsammans med leverantörerna av leverantörerna av dessa cookies.", "cookieDetailsLink": "Cookie detaljer", "aboutCookiesLink": "Om Cookies", "privacyPolicyLink": "Integritetspolicy", "columnName": "Namn", "columnPurpose": "Syfte", "columnPII": "Kan innehålla personlig information", "columnDuration": "Varaktighet", "mainHeading": "Sekretess och transparens", "purposes": "Syften", "legitimateInterest": "Legitima intressen", "consent": "Samtycke", "specialPurposes": "Särskilda ändamål", "manageSettings": "Hantera inställningar", "saveSettings": "Spara inställningar och avsluta", "vendors": "Leverantörs lista", "nonTcfVendors": "Ytterligare leverantörer", "features": "Funktioner", "specialFeatures": "Speciella funktioner", "acceptAllButton": "Acceptera alla och fortsätt", "purposePrefix": "Vi och våra partners använder cookies för att", "stackPrefix": "Vi och våra partners använder data för", "mainBody": "Ett exempel på data som samlas in kan vara en unik identifierare lagrad i en cookie. Vissa av våra partners kan behandla dina uppgifter som en del av deras legitima affärsintresse utan att fråga om samtycke. För att se ändamålen som de anser att de har ett berättigat intresse för, eller för att invända mot denna databehandling, använder du länken för leverantörslistan nedan. Det samtycke som lämnas kommer endast att användas för databehandling som härrör från denna webbplats. Du kan när som helst ändra dina inställningar eller återkalla ditt samtycke genom länken som finns i vår integritetspolicy, vilken är tillgänglig på vår hemsida." }, { "id": 2126, "did": 0, "language": "sr", "dialogHeading": "Ова веб страница користи колачиће", "dialogBody": "На овој веб страници користимо колачиће да бисмо персонализовали садржину, пружили прилагођена корисничка искуства, приказали огласе за циљану публику, омогућили одређене карактеристике друштвених мрежа и анализирали промет на нашој страници. Такође, податке о вашем коришћењу наше веб странице делимо са нашим партнерима за друштвене мреже, оглашавање и анализу, а они би их могли комбиновати са другим подацима које сте им пружили или које су сакупили док сте користили њихове услуге. У продужетку вам нудимо могућност избора врсте колачића којим ћете дозволити похрану ваших личних података. Да бисте могли у било ком тренутку прегледати попис добављача или променити поставке сагласности, помоћу следеће повезнице приступите нашим Правилима о заштити приватности.", "declineButton": "Прихвати нужне колачиће и продужи", "acceptButton": "Продужи са препорученим колачићима", "okButton": "Спреми", "cookieInfo": "Колачићи су мале текстуалне датотеке које се користе на интернет страницама да би се унапредило корисничко искуство.\n \n Законом је дозвољено спремање колачића који садрже личне податке на ваш уређај ако су они изричито потребни за рад ове странице. За све остале врсте колачића које садрже личне податке потребна нам је ваша дозвола.\n \n На овој веб страници користимо различите врсте колачића. Неки колачићи постављају услуге трећих страна које се приказују на нашим страницама.", "necessaryCategory": "Нужни", "necessaryDescription": "Нужни колачићи омогућавају коришћење веб странице тако да омогућавају основне функције, као што су навигација страницом и приступ безбедним подручјима на страници. Исправан рад веб странице није могућ без тих колачића.", "preferenceCategory": "Преферирани", "preferenceDescription": "Преферирани колачићи омогућавају веб страници да упамти податке који мењају начин рада или изглед веб странице, као што су преферирани језик или регион у ком се налазите.", "statisticsCategory": "Статистички", "statisticsDescription": "Статистички колачићи помажу власницима веб страницама да разумеју како посетиоци употребљавају интернет страницу и то тако да анонимно сакупљају и извештавају о подацима.", "marketingCategory": "Маркетиншки", "marketingDescription": "Маркетиншки колачићи се користе за бележење броја посетиоца на интернет страницама. Циљ је приказивање огласа који интересују и привлаче индивидуалног корисника и који су због тога вреднији издавачима и оглашивачима трећих страна.", "unclassifiedCategory": "Некласификовани", "unclassifiedDescription": "Некласификовани колачићи су колачићи који су, са појединим колачићима пружаоца улуге, у поступку класификовања.", "cookieDetailsLink": "Подаци о колачићима", "aboutCookiesLink": "Више података о колачићима", "privacyPolicyLink": "Правила о заштити приватности", "columnName": "Назив", "columnPurpose": "Сврха", "columnPII": "Може да садржи личне податке", "columnDuration": "Трајање", "mainHeading": "Приватност и транспарентност", "purposes": "Сврхе", "legitimateInterest": "Легитимни интерес", "consent": "Сагласност", "specialPurposes": "Посебне сврхе", "manageSettings": "Управљање поставкама", "saveSettings": "Спреми поставке и изађи", "vendors": "Попис добављача", "nonTcfVendors": "Додатни добављачи", "features": "Карактеристике", "specialFeatures": "Посебне карактеристике", "acceptAllButton": "Прихвати све и продужи", "purposePrefix": "Ми и наши партнери користимо колачиће за", "stackPrefix": "Ми и наши партнери користимо податке за", "mainBody": "Подаци који се обрађују могу да представљају јединствени идентификатор похрањен у колачићу. Неки од наших партнера могу да обрађују ваше податке као део свог легитимног пословног интереса без тражења сагласности. Да бисте прегледали сврхе за које партнери наводе да имају легитимни интерес или да бисте уложили приговор на такву обраду података, погледајте попис добављача у продужетку. Предана сагласност користиће се само за обраду података који потичу са ове веб странице. Ако у било ком тренутку одлучите да промените поставке или да повучете сагласност, то можете да учините помоћу повезнице у нашим правилима о заштити приватности којим можете да приступите са наше насловне странице." }, { "id": 2127, "did": 0, "language": "sl", "dialogHeading": "Ta spletna stran uporablja piškotke", "dialogBody": "Na tej spletni strani uporabljamo piškotke za personalizirane vsebine, zagotavljanje prilagojenih uporabniških izkušenj, prikazovanje oglasov za ciljne skupine, omogočanje določenih funkcij družbenih omrežij in analizo prometa na naši spletni strani. Podatke o vaši uporabi naše spletne strani delimo tudi z našimi partnerji za družabna omrežja, oglaševanje in analizo, ki jih lahko kombinirajo z drugimi informacijami, ki ste jih posredovali ali zbrali med uporabo njihovih storitev. V nadaljevanju vam ponujamo možnost izbire vrste piškotkov, s katerimi dovoljujete shranjevanje vaših osebnih podatkov. Če želite kadar koli pregledati seznam ponudnikov ali spremeniti nastavitve privolitve, uporabite naslednjo povezavo za dostop do naših pravil o varstvu zasebnosti.", "declineButton": "Strinjam se", "acceptButton": "Nadaljujte s priporočenimi piškotki", "okButton": "Shrani", "cookieInfo": "Piškotek je majhna tekstovna datoteka, ki se uporablja na spletnih straneh za izboljšanje uporabniške izkušnje.\n \n Zakon dovoljuje shranjevanje piškotkov, ki vsebujejo osebne podatke, če je to izrecno potrebno za delovanje te strani. Za vse druge vrste piškotkov, ki vsebujejo osebne podatke, potrebujemo vaše dovoljenje.\n \n Na tej spletni strani uporabljamo različne vrste piškotkov. Nekateri piškotki opredeljujejo storitve tretjih oseb, ki so prikazane na naših spletnih straneh.", "necessaryCategory": "Nujni", "necessaryDescription": "Nujni piškotki omogočajo uporabo spletne strani, tako da omogočajo osnovne funkcije, kot so navigacija po spletišču in dostop do varnih delov spletišča. Brez teh piškotkov ni možno zagotoviti pravilno delovanje spletne strani.", "preferenceCategory": "Prednostni", "preferenceDescription": "Prednostni piškotki omogočajo spletni strani, da si zapomni informacije, ki spreminjajo način delovanja ali izgleda, kot je vaš želeni jezik ali regija, v kateri se nahajate.", "statisticsCategory": "Statistični", "statisticsDescription": "Statistični piškotki lastnikom spletnih strani pomagajo razumeti, kako obiskovalci uporabljajo spletno stran z anonimnim zbiranjem in poročanjem podatkov.", "marketingCategory": "Marketinški", "marketingDescription": "Marketinški piškotki se uporabljajo za spremljanje obiskovalcev skozi spletne strani. Namen je prikazovanje oglasov, ki so relevantni za določenega uporabnika in ga spodbujajo k sodelovanju, kar je pomembno za založnike in oglaševalce tretjih oseb.", "unclassifiedCategory": "Nerazvrščeni", "unclassifiedDescription": "Nerazvrščeni piškotki so piškotki, ki jim bomo skupaj s ponudniki posameznih piškotkov počasi razvrstili.", "cookieDetailsLink": "Informacije o piškotkih", "aboutCookiesLink": "Več informacij o piškotkih", "privacyPolicyLink": "Pravila o varstvu zasebnosti", "columnName": "Ime", "columnPurpose": "Namen", "columnPII": "Lahko vsebuje osebne podatke", "columnDuration": "Trajanje delovanja", "mainHeading": "Zasebnost in preglednost", "purposes": "Namen", "legitimateInterest": "Legitimni interes", "consent": "Privolitev", "specialPurposes": "Poseben namen", "manageSettings": "Upravljanje nastavitev", "saveSettings": "Shrani nastavitve in zapri", "vendors": "Seznam ponudnikov", "nonTcfVendors": "Dodatni ponudniki", "features": "Značilnosti", "specialFeatures": "Posebne značilnosti", "acceptAllButton": "Sprejmi vse in nadaljuj", "purposePrefix": "Mi in naši partnerji uporabljamo piškotke za", "stackPrefix": "Mi in naši partnerji uporabljamo podatke za", "mainBody": "Podatki, ki se obdelujejo, lahko predstavljajo edinstveni identifikator, ki je shranjen v piškotku. Nekateri naši partnerji lahko obdelujejo vaše podatke brez privolitve kot del svojega legitimnega poslovnega interesa. Če želite pregledati namene, za katere partnerji izjavijo, da imajo legitimen interes, ali da bi vložili ugovor takšni obdelavi podatkov, si oglejte seznam ponudnikov v nadaljevanju. Dana privolitev se bo uporabljala samo za obdelavo podatkov, ki izvirajo s te spletne strani. Če se odločite kadar koli spremeniti svoje nastavitve ali umakniti privolitev, lahko to storite s povezavo v naših pravilih o varstvu zasebnosti, do katerih lahko dostopate z naše domače strani." }, { "id": 2128, "did": 0, "language": "nl", "dialogHeading": "Deze website gebruikt cookies", "dialogBody": "Deze website gebruikt cookies om inhoud te personaliseren, aangepaste ervaringen aan te bieden, advertenties te targeten, om functies voor sociale media aan te bieden en om ons verkeer te analyseren. We delen ook informatie over uw gebruik van onze site met onze sociale media-, advertentie- en analysepartners die deze kunnen combineren met andere informatie die u aan hen heeft verstrekt of die zij hebben verzameld door uw gebruik van hun diensten. Hieronder kunt u selecteren welke soorten cookies u toestaat om uw persoonlijke gegevens op te slaan. Als u de leverancierslijst wilt bekijken of de toestemmingsinstellingen op elk gewenst moment wilt wijzigen, gaat u naar ons privacybeleid via de onderstaande link.", "declineButton": "Enkel noodzakelijke cookies toestaan", "acceptButton": "Ga verder met aanbevolen cookies", "okButton": "Opslaan", "cookieInfo": "Cookies zijn kleine tekstbestanden die door websites kunnen worden gebruikt om de gebruikerservaring efficiënter te maken.\n\nDe wet stelt dat we cookies die persoonlijke informatie bevatten op uw apparaat kunnen opslaan als ze strikt noodzakelijk zijn voor de werking van deze site. Voor alle andere soorten cookies die persoonlijke informatie bevatten, hebben we uw toestemming nodig.\n\nDeze site gebruikt verschillende soorten cookies. Sommige cookies worden geplaatst door diensten van derden die op onze pagina's verschijnen.", "necessaryCategory": "Noodzakelijk", "necessaryDescription": "Noodzakelijke cookies helpen een website bruikbaar te maken door basisfuncties zoals paginanavigatie en toegang tot beveiligde delen van de website mogelijk te maken. Zonder deze cookies kan de website niet naar behoren functioneren.", "preferenceCategory": "Voorkeuren", "preferenceDescription": "Met voorkeurscookies kan een website informatie onthouden die de manier waarop de website zich gedraagt of eruit ziet verandert, zoals de taal van uw voorkeur of de regio waarin u zich bevindt.", "statisticsCategory": "Statistieken", "statisticsDescription": "Statistische cookies helpen website-eigenaren om te begrijpen hoe bezoekers omgaan met websites door anoniem informatie te verzamelen en te rapporteren.", "marketingCategory": "Marketing", "marketingDescription": "Marketingcookies worden gebruikt om bezoekers op verschillende websites te volgen. Het is de bedoeling advertenties weer te geven die relevant en aantrekkelijk zijn voor de individuele gebruiker en daardoor waardevoller zijn voor uitgevers en externe adverteerders.", "unclassifiedCategory": "Niet geclassificeerd", "unclassifiedDescription": "Niet-geclassificeerde cookies zijn cookies die we aan het classificeren zijn, samen met de aanbieders van individuele cookies.", "cookieDetailsLink": "Cookie Details", "aboutCookiesLink": "Over Cookies", "privacyPolicyLink": "Privacy Policy", "columnName": "Naam", "columnPurpose": "Doel", "columnPII": "Kan persoonlijke informatie bevatten", "columnDuration": "Duur", "mainHeading": "Privacy \u0026 Transparantie", "purposes": "Doeleinden", "legitimateInterest": "Gerechtvaardigd belang ", "consent": "Toestemming", "specialPurposes": "Speciale doeleinden", "manageSettings": "Instellingen beheren", "saveSettings": "Instellingen opslaan \u0026 Afsluiten", "vendors": "Leverancierslijst", "nonTcfVendors": "Bijkomende Leveranciers", "features": "Kenmerken", "specialFeatures": "Speciale kenmerken", "acceptAllButton": "Accepteer alles en ga door", "purposePrefix": "Wij en onze partners gebruiken cookies om", "stackPrefix": "Wij en onze partners gebruiken gegevens voor", "mainBody": "Een voorbeeld van de gegevens die worden verwerkt, kan een unieke identificatie zijn die in een cookie is opgeslagen. Sommige van onze partners kunnen uw gegevens verwerken als onderdeel van hun legitieme zakelijke belang zonder toestemming te vragen. Gebruik de onderstaande link met de leverancierslijst om te zien voor welke doeleinden zij denken dat ze een gerechtvaardigd belang hebben, of om bezwaar te maken tegen deze gegevensverwerking. De verstrekte toestemming wordt alleen gebruikt voor gegevensverwerking die afkomstig is van deze website. Als u uw instellingen wilt wijzigen of uw toestemming op enig moment wilt intrekken, vindt u de link om dit te doen in ons privacybeleid dat toegankelijk is vanaf onze startpagina." }] }, "settings": { "DomainSettingId": 4522, "DomainId": 110793, "defaultLanguage": "en", "IsDialogEnabled": true, "IsOrigDialogEnabled": true, "IsMinorContent": false, "IsTCF2": true, "IsAMPDialogEnabled": false, "AutoDetectLanguage": true, "IsThirdParty": false, "IsWorldWide": false, "IsIabLspaSignatory": false, "ShowAcceptNecessaryButton": false, "ShowCategoryCheckboxes": false, "dialogAccentColor": "#5fa624", "dialogBackgroundColor": "#ffffff", "dialogTextColor": "#000000", "checkedConsentBoxes": "preference,statistics", "country": "", "ccpaBannerPosition": "bottom", "AltConsentEnabled": false, "hasNoConsentPage": false, "HasDynamicCookieRegex": false }, "vendors": { "vendorList": null }, "ezCMP": "ezCMPCookieConsent", "ckLength": 365, "cmpAllCookies": null, "cmpCookieTranslations": null, "privacy": "https://g.ezoic.net/privacy/hotexamples.com" },
			styles: '#ez-cookie-dialog-wrapper {width: 100% !important;height: 100% !important;margin: 0 auto !important;position: fixed !important;top: 0 !important;left: 0 !important;background-color: rgba(0, 0, 0, 0.5) !important;font-family: Arial, serif !important;z-index: 2000000000 !important;overflow-y: auto !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-table-box {overflow-y: auto !important;max-height: 150px !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog .select-wrapper span, #ez-cookie-dialog-wrapper #ez-cookie-dialog .select-wrapper ul, #ez-cookie-dialog-wrapper #ez-cookie-dialog .select-wrapper input {display: none !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog {display: block !important;position: relative !important;opacity: 1 !important;visibility: visible !important;margin: 150px auto 0 !important;width: 650px !important;-webkit-box-sizing: content-box !important;-moz-box-sizing: content-box !important;box-sizing: content-box !important;max-width: 90% !important;background: {background_color}!important;padding: 12px 24px !important;overflow: hidden !important;z-index: 2000000000 !important;border: 10px solid {accent_color}!important;box-shadow: #333 1px 1px 10px 1px !important;line-height: 1.2 !important;text-align: left !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog h2 {font-size: 20px !important;line-height: 16px !important;font-weight: 700 !important;margin: 10px 0 16px !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog p {margin: 12px 0 !important;line-height: 16px !important;text-indent: 0 !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog button {line-height: 16px !important;text-transform: none !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog select, #ez-cookie-dialog-wrapper #ez-cookie-dialog input {display: inline-block !important;position: relative !important;opacity: 1 !important;margin: 3px !important;font-size: 13px !important;color: {text_color};background-color: {background_color}!important;width: initial !important;padding: 0 !important;border: 1px solid {accent_color}!important;border-radius: 0 !important;height: initial !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog a, #ez-cookie-dialog-wrapper #ez-cookie-dialog p, #ez-cookie-dialog-wrapper #ez-cookie-dialog h2, #ez-cookie-dialog-wrapper #ez-cookie-dialog button {color: {text_color}!important;font-style: normal !important;text-decoration: none !important;font-variant: normal !important;font-family: Arial, serif !important;box-shadow: none !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog p, #ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-details-description, #ez-cookie-dialog-wrapper #ez-cookie-dialog button {font-weight: 400 !important;font-size: 10pt !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-details-description {padding: 10px 0 5px !important;color: {text_color}!important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-details {height: 34px !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-details, #ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-about-cookies {display: table-cell !important;color: {accent_color}!important;vertical-align: bottom !important;position: relative !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-details:after {width: 0px !important;height: 0px !important;border-left: 4px solid transparent !important;border-right: 4px solid transparent !important;border-top: 4px solid {accent_color}!important;content: "" !important;position: absolute !important;right: -14px !important;bottom: 6px !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-details.open:after {border-bottom: 4px solid {accent_color}!important;border-top: 0 solid transparent !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-about-cookies-text {display: none !important;margin-top: 12px !important;text-align: left !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-necessary-cookies {border: none !important;font-family: Arial, serif !important;color: #ffffff !important;background: #333333 !important;padding: 10px 20px 10px 20px !important;text-decoration: none !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-necessary-cookies:hover {cursor: pointer !important;background: #111111 !important;text-decoration: none !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-all-cookies {border: none !important;font-family: Arial, serif !important;color: {accept_button_text_color}!important;background: {accent_color}!important;padding: 10px 20px 10px 20px !important;text-decoration: none !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-all-cookies:hover {cursor: pointer !important;background: {accent_color}!important;text-decoration: none !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #privacy-link {font-size: 12px !important;display: block !important;margin-top: 20px !important;text-decoration: underline !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-ok-cookies {border: 1px solid {background_color}!important;font-family: Arial, serif !important;font-size: 9pt !important;color: {text_color}!important;background: {background_color}!important;padding: 5px 15px !important;text-decoration: none !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-ok-cookies:hover {cursor: pointer !important;background: {background_color}!important;text-decoration: none !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-about-cookies-container {margin: 32px auto 12px !important;width: 100% !important;display: none !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog a {color: {accent_color}!important;text-decoration: none !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #privacy {text-align: right !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-options {display: flex !important;flex-direction: row !important;margin: 12px 0 !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-details-container {display: none !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog .ez-cookie-option {flex: 1 !important;font-family: Arial, serif !important;font-size: 9pt !important;display: block !important;line-height: 26px !important;color: {text_color}!important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog .ez-cookie-option label {cursor: pointer !important;font-size: 12px !important;color: {text_color}!important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-table {max-width: 525px !important;width: 525px !important;margin-top: 12px !important;font-family: Arial, serif !important;border-spacing: 1px !important;font-size: 8pt !important;border-collapse: separate !important;background-color: {background_color}!important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-table th {background-color: {background_color}!important;color: {text_color}!important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #button-row {display: flex !important;flex-wrap: nowrap !important;justify-content: space-between !important;margin-right: 10px !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #secondary-links {display: flex !important;font-size: 12px !important;margin-top: 20px !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #secondary-links .bar {margin: 0 5px !important;width:auto!important;height:auto!important;position:relative!important;background:0 0!important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-table td {background-color: {background_color}!important;font-size: 8pt !important;width: 30% !important;-ms-word-break: break-word !important;word-break: break-word !important;color: {text_color}!important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-table td:nth-child(1) {width: 30% !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-table td:nth-child(2) {width: 50% !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-table td:nth-child(3) {width: 20% !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-table th, #ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-table td {text-align: left !important;padding: 3px !important;vertical-align: top !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog .ez-cookie-option input {vertical-align: middle !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-language {position: absolute !important;top: 10px !important;right: 10px !important;color: {text_color}!important;}@media only screen and (max-width: 600px) {#ez-cookie-dialog-wrapper #ez-cookie-dialog {margin-top: 5px !important;width: 100% !important;padding: 10px !important;border-width: 5px !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #button-row {flex-direction: column !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-options {flex-direction: column !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-necessary-cookies {margin-bottom: 5px !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog h2 {margin: 5px 0 !important;margin-right: 44px !important;font-size: 16px !important;}#ez-cookie-dialog-wrapper #ez-cookie-dialog #ez-cookie-table-box {overflow-y: auto !important;max-height: 100px !important;}}.cDuration {display: none;}',
			wrapper: '<div id="ez-cookie-dialog-wrapper"> <div id="ez-cookie-dialog"> <select id="ez-cookie-language" onchange="ezCMP.changeLanguage(this.value)">{language-options}</select> <div id="ez-cookie-form"></div> </div></div>',
			template: '<div id="ez-cookie-template"> <h2>{dialog-heading}</h2> <p>{dialog-body}</p><p><span id="button-row"> <span> <button id="ez-necessary-cookies" style="display:{decline-botton-text-display}" onclick="ezCMP.handleDeclineClick()">{decline-button-text}</button> <button id="ez-all-cookies" onclick="ezCMP.handleAcceptClick()">{accept-button-text}</button> </span> <span> <a id="ez-cookie-details" onclick="ezCMP.toggleDetails(true)" href="javascript:void(0);">{cookie-details-link}</a> </span> </span> </p><div id="ez-cookie-options" style="display:{cookie-options-display}"> <div class="ez-cookie-option"><label><input id="ez-cookie-option-necessary" type="checkbox" value="1" disabled checked/>{necessary}</label></div><div class="ez-cookie-option"><label><input id="ez-cookie-option-preference" type="checkbox" value="0"{preference-checked}/>{preference}</label></div><div class="ez-cookie-option"><label><input id="ez-cookie-option-statistics" type="checkbox" value="0"{statistics-checked}/>{statistics}</label></div><div class="ez-cookie-option"><label><input id="ez-cookie-option-marketing" type="checkbox" value="0"{marketing-checked}/>{marketing}</label></div><div class="ez-cookie-option"><button id="ez-ok-cookies" onclick="ezCMP.handleOkClick()">{ok-button-text}</button></div></div><div id="ez-cookie-details-container"> <div> <select onchange="ezCMP.loadDetails(this.value)"> <option value="necessary">{necessary}</option> <option value="preference">{preference}</option> <option value="statistics">{statistics}</option> <option value="marketing">{marketing}</option> <option value="unclassified">{unclassified}</option> </select> </div><div id="ez-cookie-details-description"></div><div style="overflow-x:auto;" id="ez-cookie-table-box"> <table id="ez-cookie-table"> <thead> <tr> <th>{column-name}</th> <th>{column-purpose}</th> <th>{column-pii}</th> <th class="cDuration">{column-duration}</th> </tr></thead> <tbody id="ez-cookie-table-body"> </tbody> </table> </div></div><p id="ez-about-cookies-text">{cookie-info}</p><div id="secondary-links"> <a id="ez-about-cookies" href="javascript:void(0);" onclick="ezCMP.toggleAbout()">{about-cookies-link}</a> <span class="bar">|</span> <a href="{privacy}" target="_privacy">{privacy-link}</a> </div></div>'
		};
	</script>

	<script type="text/javascript" async src="/utilcave_com/inc/ezcl.webp?cb=4"></script>
</body>

</html>