File size: 206,892 Bytes
d372e81 |
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 |
<head data-webtasks-id="205ec921-472d-4775"><style data-merge-styles="true" data-webtasks-id="a618f53d-f643-4c6e"></style><style data-merge-styles="true" data-webtasks-id="19cf2e39-3c99-4c6f"></style><style data-merge-styles="true" data-webtasks-id="a5fb4ff7-2db1-43e3"></style><style data-merge-styles="true" data-webtasks-id="32d42bc6-de76-49fe"></style><script type="text/javascript" async="" src="https://sb.scorecardresearch.com/c2/18767423/cs.js" data-webtasks-id="b65ede8c-743c-4f80"></script><script id="canva-script" src="https://sdk.canva.com/v2/beta/api.js" data-webtasks-id="c63eefbe-950c-415b"></script><script async="" src="//static.wattpad.com/js/tracker/app.75cc698d.js" crossorigin="anonymous" data-webtasks-id="466d96fc-1732-40ff"></script><script gtm="GTM-WD9JLB" type="text/javascript" async="" src="https://www.google-analytics.com/gtm/optimize.js?id=GTM-PB8NDN3" data-webtasks-id="537635e9-aadf-4368"></script><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtag/js?id=G-FNDTZ0MZDQ&l=dataLayer&cx=c" data-webtasks-id="0a79ba1d-89ef-4c3a"></script><script src="https://connect.facebook.net/signals/config/1422218544461353?v=2.9.115&r=stable" async="" data-webtasks-id="7fc87af9-d22e-46c0"></script><script async="" src="https://connect.facebook.net/en_US/fbevents.js" data-webtasks-id="cd297470-98d5-4aef"></script><script async="" src="https://sb.scorecardresearch.com/beacon.js" data-webtasks-id="251ea6ae-9df3-43cd"></script><script type="text/javascript" async="" src="https://www.google-analytics.com/analytics.js" data-webtasks-id="1044fd14-0662-48eb"></script><script async="" src="//www.googletagmanager.com/gtm.js?id=GTM-WD9JLB" data-webtasks-id="8da7984f-643c-43ad"></script><script type="text/javascript" src="//static.wattpad.com/js/ados.ad0e6cf9.js" crossorigin="anonymous" data-webtasks-id="e6bfdc78-1e01-4082"></script>
<meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=edge" data-webtasks-id="e7e129c9-a72c-43ed">
<script src="//static.wattpad.com/js/boomerang.99a8a777.min.js" crossorigin="anonymous" data-webtasks-id="4145c0b1-5655-48a1"></script><script data-webtasks-id="176cbaeb-0b01-4d32">
(function(d, s) {
var js = d.createElement(s),
sc = d.getElementsByTagName(s)[0];
js.src = "//static.wattpad.com/js/boomerang.99a8a777.min.js";
js.crossOrigin = 'anonymous';
sc.parentNode.insertBefore(js, sc);
if (document.addEventListener) {
document.addEventListener( "onBoomerangLoaded", function(e) {
e.detail.BOOMR.init( {
beacon_url: '/v4/metrics',
beacon_type: 'POST',
autorun: false
} );
} );
}
}(document, "script"));
</script>
<meta charset="utf-8" data-webtasks-id="3bdb7416-3947-4800">
<link rel="shortcut icon" href="//static.wattpad.com/favicon.ico" data-webtasks-id="0393ad57-6797-403a">
<title data-webtasks-id="c450706e-a780-4bfb">My Stories - Wattpad</title>
<link rel="preload" as="script" type="text/javascript" href="//static.wattpad.com/js/desktop-web/dependencies.ae71a012.min.js" crossorigin="anonymous" data-webtasks-id="0c683241-abd0-4557">
<link rel="preload" as="script" type="text/javascript" href="//static.wattpad.com/js/desktop-web/app.14627e8c.js" crossorigin="anonymous" data-webtasks-id="53ea9e94-7dba-4440">
<link rel="preload" as="script" type="text/javascript" href="//static.wattpad.com/js/react-bundle.deps.fa9482f7.js" crossorigin="anonymous" data-webtasks-id="d03c8f71-8baa-4c2d">
<link rel="preload" as="script" type="text/javascript" href="//static.wattpad.com/js/react-bundle.components.5eb33435.js" crossorigin="anonymous" data-webtasks-id="0db12707-df52-4880">
<link rel="stylesheet" type="text/css" href="//static.wattpad.com/css/desktop-web/desktop-web.56a86ca9.min.css" data-webtasks-id="62d241af-9ed8-4a8c">
<style type="text/css" media="print" data-webtasks-id="a6fda439-02be-4c83">
main#parts-container-new { visibility: hidden; display: none }
</style>
<script type="text/javascript" data-webtasks-id="f7d413cb-5ed5-4628">
var localStorageSupport=function(){var t,e="testKey",r="localStorage";try{return(t=window.localStorage).setItem(e,"1"),t.removeItem(e),r in window&&window[r]}catch(t){return!1}}();localStorageSupport||(window.localStorage={_data:{},setItem:function(t,e){return this._data[t]=String(e)},getItem:function(t){return this._data.hasOwnProperty(t)?this._data[t]:void 0},removeItem:function(t){return delete this._data[t]},clear:function(){return this._data={}}});var sessionStorageSupport=function(){var t,e="testKey",r="sessionStorage";try{return(t=window.sessionStorage).setItem(e,"1"),t.removeItem(e),r in window&&window[r]}catch(t){return!1}}();sessionStorageSupport||(window.sessionStorage={_data:{},setItem:function(t,e){return this._data[t]=String(e)},getItem:function(t){return this._data.hasOwnProperty(t)?this._data[t]:void 0},removeItem:function(t){return delete this._data[t]},clear:function(){return this._data={}}});
//# sourceMappingURL=polyfill-localstorage.2f7cbe1c.min.js.map
</script>
<script type="text/javascript" data-webtasks-id="b432b457-1102-4bef">
(function(){var t;function n(t){this.callBack=t}null==window.MutationObserver&&(n.prototype.observe=function(t,n){return this.element=t,this.interval=setInterval((e=this,function(){var t;if((t=e.element.innerHTML)!==e.oldHtml)return e.oldHtml=t,e.callBack.apply(null)}),200);var e},n.prototype.disconnect=function(){return window.clearInterval(this.interval)},t=n,window.MutationObserver=t)}).call(this);
//# sourceMappingURL=polyfill-mutationobserver.e0c747b9.min.js.map
</script>
<script type="text/javascript" data-webtasks-id="f81377fd-be59-4082">
( function() {
var d = document;
var pbs = d.createElement( "script" );
pbs.type = "text/javascript";
pbs.src = "//static.wattpad.com/js/ados.ad0e6cf9.js";
pbs.crossOrigin = 'anonymous';
var target = d.getElementsByTagName( "head" )[ 0 ];
target.insertBefore( pbs, target.firstChild );
} )();
</script>
<script type="text/javascript" data-webtasks-id="abb31d71-32ee-457a">
(function() {
var wattpad = window.wattpad = ( window.wattpad || {} );
wattpad.adzerkHeaderBiddingUnitMap = {"storylanding_top":{"zone":185196,"rubiconZone":1836706,"pubmaticSlot":3209047,"sovrnTag":830412,"tripleliftInvCode":"wattpad_storylanding_top_300x250","ixSiteId":"633264","openXUnitId":"543966300","sharethroughPKey":"XxS52m4zkQua1vqwB8Vcl12X","sizes":{"5":[300,250]}},"storylanding_bottom":{"zone":185197,"rubiconZone":1836702,"pubmaticSlot":3208877,"sovrnTag":830410,"tripleliftInvCode":"wattpad_storylanding_bottom_728x90_display","ixSiteId":"633265","openXUnitId":"543966294","sharethroughPkey":"QjKocE6BJDyJhIhnJeiO6DhB","sizes":{"4":[728,90]}},"readingshort_top":{"zone":185429,"rubiconZone":1836694,"pubmaticSlot":3209052,"sovrnTag":830406,"tripleliftInvCode":"wattpad_readingshort_top_300x250_display","ixSiteId":"633267","openXUnitId":"543966307","sharethroughPKey":"MogDMVuTk5Jd9bIQ2ZOlyHWW","lazyAd":true,"sizes":{"5":[300,250]}},"readingshort_bottom":{"zone":185431,"rubiconZone":1836682,"pubmaticSlot":3208867,"sovrnTag":830400,"tripleliftInvCode":"wattpad_readingshort_bottom_728x90_display","ixSiteId":"633268","openXUnitId":"543966292","sharethroughPKey":"q2ixFurrAuuzN5TLWpqF0BOc","lazyAd":true,"sizes":{"4":[728,90]}},"readingshort_comments":{"zone":185430,"rubiconZone":1836690,"pubmaticSlot":3209054,"sovrnTag":830404,"tripleliftInvCode":"wattpad_readingshort_comments_300x250_display","ixSiteId":"633269","openXUnitId":"543966303","sharethroughPKey":"cOdbdF5zhjjnC0FnoGhDuNMC","lazyAd":true,"sizes":{"5":[300,250]}},"readingshort_comments_mweb":{"zone":264096,"rubiconZone":2565820,"sharethroughPKey":"9y3NOPRHCwZzYrs4h5dh5a17","tripleliftInvCode":"readingshort_comments_mweb","pubmaticSlot":4762047,"lazyAd":true,"sizes":{"5":[300,250],"23":[320,50]}},"readingshort_comments_loggedout_mweb":{"zone":264097,"rubiconZone":2565822,"sharethroughPKey":"Gcr9Kyu1JHMOdBvTpcw7gNlG","tripleliftInvCode":"readingshort_comments_loggedout_mweb","pubmaticSlot":4762048,"lazyAd":true,"sizes":{"5":[300,250],"23":[320,50]}},"readinglong_top":{"zone":185432,"rubiconZone":1836672,"pubmaticSlot":3209061,"sovrnTag":830395,"tripleliftInvCode":"wattpad_readinglong_top_300x600","ixSiteId":"633270","openXUnitId":"543966308","sharethroughPKey":"8FzRfzTXlOCeH7M6BZOzMaBg","lazyAd":true,"sizes":{"5":[300,250],"43":[300,600]}},"readinglong_mid":{"zone":185433,"refreshAd":true,"stickyAd":true,"stickyStart":".sticky-ad-container","stickyEnd":"#sticky-end","rubiconZone":1836664,"pubmaticSlot":3209069,"sovrnTag":830386,"tripleliftInvCode":"wattpad_readinglong_mid_300x600","ixSiteId":"633271","openXUnitId":"543966299","sharethroughPKey":"QKEGwkCQTYAIyUpDSHO0W2B5","lazyAd":true,"sizes":{"5":[300,250],"43":[300,600]}},"readinglong_bottom":{"zone":185435,"rubiconZone":1836652,"pubmaticSlot":3208847,"sovrnTag":830380,"tripleliftInvCode":"wattpad_readinglong_bottom_728x90_display","ixSiteId":"633272","openXUnitId":"543966282","sharethroughPKey":"QIJgn98ul3WmBcCYvVMmlTyk","lazyAd":true,"sizes":{"4":[728,90]}},"readinglong_comments":{"zone":185434,"rubiconZone":1836660,"pubmaticSlot":3209072,"sovrnTag":830384,"tripleliftInvCode":"wattpad_desktop_readinglong_comments_300x250","ixSiteId":"633273","openXUnitId":"543966293","sharethroughPKey":"oOHplzBYyX96tpIvEgKfiKW0","lazyAd":true,"sizes":{"5":[300,250]}},"readinglong_comments_mweb":{"zone":264098,"rubiconZone":2565824,"sharethroughPKey":"7kMJq9mq2i0Nq02lgNIQ8zub","tripleliftInvCode":"readinglong_comments_mweb","pubmaticSlot":4762049,"lazyAd":true,"sizes":{"5":[300,250],"23":[320,50]}},"readinglong_comments_loggedout_mweb":{"zone":264099,"rubiconZone":2565826,"sharethroughPKey":"GYSbANPIGcCYZzpK3Cy1bSiG","tripleliftInvCode":"readinglong_comments_loggedout_mweb","pubmaticSlot":4762050,"lazyAd":true,"sizes":{"5":[300,250],"23":[320,50]}},"readingshort_top_loggedout":{"zone":185436,"rubiconZone":1836696,"pubmaticSlot":3209051,"sovrnTag":830407,"tripleliftInvCode":"wattpad_readingshort_top_loggedout_300x250_display","ixSiteId":"633274","openXUnitId":"543966285","sharethroughPKey":"ZzcWmSJqnINZleWJ5Cofyhqs","lazyAd":true,"sizes":{"5":[300,250]}},"readingshort_bottom_loggedout":{"zone":185438,"rubiconZone":1836684,"pubmaticSlot":3208868,"sovrnTag":830401,"tripleliftInvCode":"wattpad_readingshort_bottom_loggedout_728x90_display","ixSiteId":"633275","openXUnitId":"543966295","sharethroughPKey":"Eq32H2cSDhyTGuZ44R35JwYH","lazyAd":true,"sizes":{"4":[728,90]}},"readingshort_comments_loggedout":{"zone":185437,"rubiconZone":1836692,"pubmaticSlot":3209053,"sovrnTag":830405,"tripleliftInvCode":"wattpad_readingshort_comments_loggedout_300x250_display","ixSiteId":"633276","openXUnitId":"543966305","sharethroughPKey":"xvnFUSZT66r0wTcTkY04KAtL","lazyAd":true,"sizes":{"5":[300,250]}},"readinglong_top_loggedout":{"zone":185439,"rubiconZone":1836676,"pubmaticSlot":3209059,"sovrnTag":830396,"tripleliftInvCode":"wattpad_readinglong_top_loggedout_300x600","ixSiteId":"633277","openXUnitId":"543966284","sharethroughPKey":"8ZY80FZvbsxRSzlGO5O7NAS2","lazyAd":true,"sizes":{"5":[300,250],"43":[300,600]}},"readinglong_mid_loggedout":{"zone":185440,"refreshAd":true,"stickyAd":true,"stickyStart":".sticky-ad-container","stickyEnd":"#sticky-end","rubiconZone":1836666,"pubmaticSlot":3209066,"sovrnTag":830389,"tripleliftInvCode":"wattpad_readinglong_mid_loggedout_300x600","ixSiteId":"633278","openXUnitId":"543966302","sharethroughPKey":"R6vp0hqA96aZiblt21zGalF9","lazyAd":true,"sizes":{"5":[300,250],"43":[300,600]}},"readinglong_bottom_loggedout":{"zone":185442,"rubiconZone":1836654,"pubmaticSlot":3208848,"sovrnTag":830381,"tripleliftInvCode":"wattpad_readinglong_bottom_loggedout_728x90_display","ixSiteId":"633282","openXUnitId":"543966283","sharethroughPKey":"XBM6W8A8WiI9w8jSo1l2JOgA","lazyAd":true,"sizes":{"4":[728,90]}},"readinglong_comments_loggedout":{"zone":185441,"rubiconZone":1836662,"pubmaticSlot":3029071,"sovrnTag":830385,"tripleliftInvCode":"wattpad_readinglong_comments_loggedout_300x250","ixSiteId":"633283","openXUnitId":"543966296","sharethroughPKey":"g9YU0UhNg0G0p7sBgtirvrR9","lazyAd":true,"sizes":{"5":[300,250]}},"storylanding_bottom_mweb":{"zone":185453,"rubiconZone":1836704,"pubmaticSlot":3209048,"sovrnTag":830411,"tripleliftInvCode":"wattpad_storylanding_bottom_mweb_320x50_display","ixSiteId":"633284","openXUnitId":"543966297","sharethroughPKey":"1KcOHnIArQcpyIsGEjdFrPlS","lazyAd":true,"sizes":{"23":[320,50]}},"readingshort_bottom_mweb":{"zone":185454,"rubiconZone":1836688,"pubmaticSlot":3209055,"sovrnTag":830403,"tripleliftInvCode":"wattpad_readingshort_bottom_mweb_320x50_display","ixSiteId":"633285","openXUnitId":"543966301","sharethroughPKey":"aAoKWsaAu9Li4KcewMvF1JtA","lazyAd":true,"sizes":{"23":[320,50]}},"readingshort_bottom_loggedout_mweb":{"zone":188377,"rubiconZone":1836686,"pubmaticSlot":3209056,"sovrnTag":830402,"tripleliftInvCode":"wattpad_readingshort_bottom_loggedout_mweb_320x50_display","ixSiteId":"633286","openXUnitId":"543966298","sharethroughPKey":"xSsrmNSBiTVGU8MKcU3GGKU6","lazyAd":true,"sizes":{"23":[320,50]}},"readinglong_mid_mweb":{"zone":185455,"rubiconZone":1836670,"pubmaticSlot":3209063,"sovrnTag":830393,"tripleliftInvCode":"wattpad_readinglong_mid_mweb_300x250_display","ixSiteId":"633287","openXUnitId":"543966306","sharethroughPKey":"zoLZ0mFQzY0XxcmYCiTyngXi","lazyAd":true,"sizes":{"5":[300,250],"23":[320,50]}},"readinglong_bottom_mweb":{"zone":185456,"rubiconZone":1836658,"pubmaticSlot":3209073,"sovrnTag":830383,"tripleliftInvCode":"wattpad_readinglong_bottom_mweb_320x50_display","ixSiteId":"633288","openXUnitId":"543966290","sharethroughPKey":"1FGNJtD8Tc85pnPSrx4gEk0g","lazyAd":true,"sizes":{"23":[320,50]}},"readinglong_mid_loggedout_mweb":{"zone":185457,"rubiconZone":1836668,"pubmaticSlot":3209065,"sovrnTag":830391,"tripleliftInvCode":"wattpad_readinglong_mid_loggedout_mweb_300x250_display","ixSiteId":"633289","openXUnitId":"543966304","sharethroughPKey":"gSi9mMySvluqUqmiZxIcduqd","lazyAd":true,"sizes":{"5":[300,250],"23":[320,50]}},"readinglong_bottom_loggedout_mweb":{"zone":185458,"rubiconZone":1836656,"pubmaticSlot":3209074,"sovrnTag":830382,"tripleliftInvCode":"wattpad_readinglong_bottom_loggedout_mweb_320x50_display","ixSiteId":"633290","openXUnitId":"543966287","sharethroughPKey":"bUMwogFn2gWL2dtnUd0Cbhga","lazyAd":true,"sizes":{"23":[320,50]}},"readinglong_top_loggedout_mweb":{"zone":210614,"rubiconZone":1836678,"pubmaticSlot":3209058,"sovrnTag":830398,"tripleliftInvCode":"wattpad_readinglong_top_loggedout_mweb_320x50_display","ixSiteId":"633292","openXUnitId":"543966286","sharethroughPKey":"lQXMBqDRaqj1i9IZH8eI3OVP","lazyAd":true,"sizes":{"23":[320,50]}},"readinglong_top_mweb":{"zone":210612,"rubiconZone":1836680,"pubmaticSlot":3209057,"sovrnTag":830399,"tripleliftInvCode":"wattpad_readinglong_top_mweb_320x50_display","ixSiteId":"633293","openXUnitId":"543966289","sharethroughPKey":"QnWK1Js760C64KHER4S6stM6","lazyAd":true,"sizes":{"23":[320,50]}},"readingshort_top_loggedout_mweb":{"zone":210613,"rubiconZone":1836698,"pubmaticSlot":3209050,"sovrnTag":830408,"tripleliftInvCode":"wattpad_readingshort_top_loggedout_mweb_320x50_display","ixSiteId":"633295","openXUnitId":"543966288","sharethroughPKey":"ySrq3KmSd0iXsGdoueoIINmV","lazyAd":true,"sizes":{"23":[320,50]}},"readingshort_top_mweb":{"zone":210611,"rubiconZone":1836700,"pubmaticSlot":3209049,"sovrnTag":830409,"tripleliftInvCode":"wattpad_readingshort_top_mweb_320x50_display","ixSiteId":"633296","openXUnitId":"543966291","sharethroughPKey":"LWEv4YihSwUrihdu2bbDhmfc","lazyAd":true,"sizes":{"23":[320,50]}},"mediumrect_top":{"zone":183796,"adzerkOnly":true,"sizes":{"5":[300,250]}},"library_banner":{"zone":264755,"rubiconZone":2591550,"sharethroughPKey":"7W4EqRAPM1wYfl7MwO3iQ5pA","tripleliftInvCode":"library_banner_728x90","pubmaticSlot":4762051,"lazyAd":true,"sizes":{"4":[728,90]}},"library_banner_mweb":{"zone":264756,"rubiconZone":2591552,"sharethroughPKey":"sPIyMUQe8QtYKBP0TNfP4WA7","tripleliftInvCode":"library_banner_mweb_320x50","pubmaticSlot":4762052,"lazyAd":true,"sizes":{"23":[320,50]}}};
}());
</script>
<link rel="stylesheet" type="text/css" href="//static.wattpad.com/css/tokens.943faf7c.min.css" data-webtasks-id="5a4c2b8a-7d4e-470f">
<link rel="stylesheet" type="text/css" href="//static.wattpad.com/css/web-ui-library.622b4f3c.min.css" data-webtasks-id="09852a14-8a00-42d3">
<script type="text/javascript" data-webtasks-id="63146cdc-e369-4ede">
"use strict";var API_VERSION=1,addFrame=function(){if(!window.frames.__uspapiLocator)if(document.body){var a=document.createElement("iframe");a.style.cssText="display:none",a.name="__uspapiLocator",document.body.appendChild(a)}else setTimeout(addFrame,5)};function __handleUspapiMessage(n){var s=n&&n.data&&n.data.__uspapiCall;s&&window.__uspapi(s.command,s.version,function(a,e){n.source.postMessage({__uspapiReturn:{returnValue:a,success:e,callId:s.callId}},"*")})}addFrame(),window.__uspapi=function(s){window.__uspapi=function(a,e,n){"function"==typeof n?"getUSPData"===a&&e===API_VERSION?n({version:API_VERSION,uspString:s||API_VERSION+"---"},!0):n(null,!1):console.error("__uspapi: callback parameter not a function")}},window.addEventListener("message",__handleUspapiMessage,!1);
//# sourceMappingURL=ccpa.df76e70c.min.js.map
</script>
<script type="text/javascript" src="//static.wattpad.com/js/atha.9277d491.min.js" crossorigin="anonymous" data-webtasks-id="ae4e8fea-9a06-47ca"></script>
<script type="text/javascript" src="//static.wattpad.com/js/ad-config.328f692a.min.js" crossorigin="anonymous" data-webtasks-id="7354ae90-5a9f-4ede"></script>
<script type="text/javascript" data-webtasks-id="8f9668cd-9956-45bf">
window.__uspapi('');
</script><script src="//ads.pubmatic.com/AdServer/js/pwt/159971/3014/pwt.js" data-webtasks-id="848bc3c5-2c80-4d18"></script><script src="//a.wp-e.net/prebid.js" data-webtasks-id="96683d57-357a-4f3b"></script>
<!-- Datadog browser log collector -->
<script type="application/javascript" async="" src="https://ase.clmbtech.com/message?cid=65973%3A3140&val_102=www.wattpad.com&val_120=0&val_101=65973%3A3140&val_101=ctrt%3Awattpad.com&val_122=a334e83c-bf7c-4125-b56a-f18836799f85-hvt8" data-webtasks-id="8a1c6f57-c6d4-4c78"></script><style data-make-styles-bucket="d" data-webtasks-id="d4bedc43-99c0-4121"></style><style data-make-styles-bucket="t" data-webtasks-id="92733e33-9bfc-43ef"></style></head>
<body class="touchDisabled route-createWorksWriter modal-open" dir="ltr" data-webtasks-id="46eda412-0980-4241" style="padding-right: 17px;">
<script type="text/javascript" data-webtasks-id="b710e783-208f-4142">
var getParameterByName = function (name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&?#]*)"),
results = regex.exec(location.search);
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
var search = [
{urlParam: 'utm_source', key: 'source'},
{urlParam: 'utm_medium', key: 'medium'},
{urlParam: 'utm_campaign', key: 'campaign'},
{urlParam: 'utm_content', key: 'content'},
{urlParam: 'wp_originator', key: 'originator'},
{urlParam: 'wp_uname', key: 'wp_username'},
{urlParam: 'wp_page', key: 'page'}
];
window._utms = window._utms || {};
for (var i = 0; i < search.length; i++) {
var match = getParameterByName(search[i].urlParam);
if ( match !== "") {
window._utms[search[i].key] = match;
}
}
</script>
<script type="text/javascript" data-webtasks-id="a0369715-2eec-4ec9">window.dataLayer=[];</script>
<noscript data-webtasks-id="4a12ac50-a130-423d"><iframe src="//www.googletagmanager.com/ns.html?id=GTM-WD9JLB"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script data-webtasks-id="1754f2dc-2c82-44f0">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WD9JLB');</script>
<div id="modals" data-webtasks-id="e2546904-16ad-4929"> <div id="languageModal" class="modal-language modal fade hide" role="dialog" aria-labelledby="Language" aria-hidden="true" data-webtasks-id="5a8f93d5-a11a-42b2">
<div class="modal-dialog" data-webtasks-id="84e701c2-f9a6-438a">
<div class="modal-content" data-webtasks-id="6b6d0db2-89d7-46f8">
<div class="modal-body" data-webtasks-id="2f90a354-67fc-4075">
<iframe src="" frameborder="0" name="languageiframe" data-webtasks-id="672ece36-c55d-470c"></iframe>
</div>
</div>
</div>
</div>
<div id="generic-modal" class="modal fade publish-modal in" role="dialog" data-webtasks-id="3fae6aa8-c838-4b86" aria-hidden="false" style="display: block;">
<div class="modal-dialog" data-webtasks-id="d342fbd9-5487-4413">
<div class="modal-content" data-webtasks-id="e1002be2-34f8-4c89">
<div class="modal-body" data-webtasks-id="a00749df-708c-4416"><div data-webtasks-id="74692265-ce66-43d8"><div id="works-item-edit" data-webtasks-id="8d1ce801-f22d-4462">
<div id="edit-controls" class="edit-profile" data-webtasks-id="a79cf4cd-2aa9-4c7d">
<button class="btn btn-text on-edit-cancel" aria-label="Cancel" data-webtasks-id="712a1257-3634-42f2"><span class="fa fa-left fa-wp-neutral-2 " aria-hidden="true" style="font-size:24px;" data-webtasks-id="9883dbe7-28c8-4ae0"></span></button>
<div class="works-item-metadata" data-webtasks-id="e7ae52ba-9d90-411c">
<p class="small group-title" data-webtasks-id="08ced933-00f0-440b">
Before you publish Whispers in the Wind.
</p>
<span class="h4" data-webtasks-id="35e8f571-20a5-4c1a">Whispers of the Soul.</span>
</div>
<div class="actions pull-right" data-webtasks-id="2799a2bb-1929-4a6c">
<img class="save-working hidden" src="/img/desktop-web/ajax-spinner-off-white.gif" data-webtasks-id="e8ee63f7-4d61-4532">
<button class="btn btn-grey on-edit-close" data-webtasks-id="aa4265be-c533-4d1f">Close</button>
<button class="btn btn-orange on-publish" data-webtasks-id="c57d4ede-3f24-4d92">Publish</button>
</div>
</div>
<div id="publish-status-banner" data-webtasks-id="2be8c9f1-b6f1-445a"></div>
<div class="container" data-webtasks-id="be25c0f2-97f9-439b">
<div class="col-lg-3 col-md-3 col-sm-12" id="picture-sidebar" data-webtasks-id="9acc8ff7-b30a-4467">
<div class="image-placeholder file-upload file-drop" data-file-upload="drop" data-webtasks-id="a8ccbfe9-0655-4b58">
<img src="https://img.wattpad.com/cover/347185120-256-ke01bc4.jpg" alt="Whispers of the Soul." height="256" class="cover cover-xlg edit-cover" data-webtasks-id="3ef15900-3acf-4c6d">
<div class="new-cover-upload hidden" data-webtasks-id="99e99dc7-7790-4d0f">
<span class="dropdown-holder" data-toggle="dropdown" data-webtasks-id="7f2a761d-d943-425e"><span class="fa fa-image fa-wp-neutral-2 fa-3x" aria-hidden="true" style="font-size:60px;" data-webtasks-id="2081fc9b-1c70-44a4"></span></span>
<div class="add-cover-text dropdown-holder" data-toggle="dropdown" data-webtasks-id="06e1cbcc-a4ee-4db5">Add a cover</div>
<div class="drop-cover-text dropdown-holder" data-toggle="dropdown" data-webtasks-id="513c19ce-c248-4265">Drop a cover</div>
<div class="triangle" data-webtasks-id="45c739ae-a927-46c4"></div>
<ul id="works-more-options-" class="dropdown-menu cover-edit-dropdown" role="menu" data-webtasks-id="e0096212-6d19-4379">
<li role="none" data-webtasks-id="268832c6-b8bd-4c75">
<a class="file-select" role="menuitem" href="#" data-toggle="modal" data-target="#worksDelete" data-webtasks-id="baf3c0c4-4f6f-451f">
Upload Cover
</a>
</li>
<li role="none" data-webtasks-id="32ae5af9-dffd-4601">
<a class="list-item-no-style" role="menuitem" href="javascript:void(0);" data-webtasks-id="45a3bfe7-9580-4ffb">
<div class="component-wrapper" id="component-canvabutton-canva-button-new-%2fmyworks%2f347185120%2fwrite%2f1364490725" data-webtasks-id="0c4de182-6c57-4a47"><button class="canva-btn canva-btn-size-s" data-webtasks-id="d80a7d25-11ec-4db4"><span class="canva-btn-i" data-webtasks-id="22a05caa-4ba1-4ef7"></span>Create Cover</button></div>
</a>
</li>
</ul>
</div>
<div id="cover-uploader" class="button-group inline-block dropdown" data-webtasks-id="aed6c26e-d535-4e07">
<div class="cover-edit-prompt" data-webtasks-id="3eda4f0c-eb23-4551">
<div class="default-state" data-webtasks-id="12e97f37-66f8-4549">
<span class="on-cover-edit hidden" data-toggle="dropdown" data-webtasks-id="baab94ea-d5a7-4bcf">Edit your cover</span>
<span data-toggle="dropdown" data-webtasks-id="2bd5a9e6-5f07-4a4b"><span class="fa fa-edit fa-wp-neutral-5 on-cover-edit-icon" aria-hidden="true" style="font-size:16px;" data-webtasks-id="997595b9-2358-4127"></span></span>
<div class="triangle" data-webtasks-id="c2db4cb2-97d9-4211"></div>
<ul id="works-more-options-" class="dropdown-menu cover-edit-dropdown" role="menu" data-webtasks-id="77b60b53-ebc9-4d33">
<li role="none" data-webtasks-id="72de3c9b-4cca-4569">
<a class="file-select" role="menuitem" href="#" data-toggle="modal" data-target="#worksDelete" data-webtasks-id="c07fa547-fd79-44cd">
Upload Cover
</a>
</li>
<li role="none" data-webtasks-id="ef07cf62-785a-4b8f">
<a class="list-item-no-style" role="menuitem" href="javascript:void(0);" data-webtasks-id="da90ec6d-c112-406e">
<div class="component-wrapper" id="component-canvabutton-canva-button-edit-%2fmyworks%2f347185120%2fwrite%2f1364490725" data-webtasks-id="36c96aa4-8381-4f7d"><button class="canva-btn canva-btn-size-s" data-webtasks-id="a566c345-8542-49da"><span class="canva-btn-i" data-webtasks-id="193bf360-f65e-4a1f"></span>Create Cover</button></div>
</a>
</li>
</ul>
</div>
<div class="drag-state" data-webtasks-id="e121fea9-011c-4b0f">
<span class="on-cover-edit hidden" data-webtasks-id="03033974-4ee9-432b">Drop your cover</span>
<span class="fa fa-plus fa-wp-neutral-5 on-cover-edit-icon" aria-hidden="true" style="font-size:16px;" data-webtasks-id="7c9ce42a-e10b-4582"></span>
</div>
</div>
</div>
<span class="empty-warning hidden" data-webtasks-id="93772b55-1fce-4ef3">Required</span>
<input accept="image/jpeg, image/png, image/gif" type="file" name="file" style="position: absolute; right: 0px; top: 0px; opacity: 0; height: 0; width: 0" aria-label="Story cover file upload" data-webtasks-id="d04d3ddd-3a4b-4b65">
</div>
<button class="btn btn-orange btn-view-as-reader on-view-as-reader" data-attr="wid-btn" data-url="/story/347185120-whispers-of-the-soul" data-webtasks-id="2d126fb2-e7b3-4413">
View as reader
</button>
</div>
<div class="col-lg-8 col-lg-offset-1 col-sm-12 col-md-8 col-md-offset-1" id="main-edit-container" data-webtasks-id="785887bb-cc11-47bd">
<div class="row" data-webtasks-id="3bf61a38-46ce-4fc9">
<div id="contest-banner-container" data-webtasks-id="75e459ef-e0f8-49cd">
</div>
<div class="work-section" data-webtasks-id="34363627-b30b-48db">
<div class="component-wrapper" id="component-worksitemsdetailsnavbar-works-nav-bar-%2fmyworks%2f347185120%2fwrite%2f1364490725" data-webtasks-id="60ef8bbf-44d1-498f"><div class="works-edit-select" data-webtasks-id="990419f3-cdfd-4c82"><button class="on-switch-type" data-section="story-detail" data-webtasks-id="ea47a01b-ccd7-4959">Story Details</button><button class="on-switch-type" data-section="story-planner" data-webtasks-id="f99f3144-79b9-45b4"><div id="story-planner-tab" data-webtasks-id="1c414d64-0d28-4f54"><div id="story-planner-new-tag-container" data-webtasks-id="938b0481-55cd-424f"><img src="/img/shared/new-tag-2x.png" id="storyplanner-new-tag" height="19px" width="40px" data-webtasks-id="7cb8b86b-ea75-41bc"></div><div data-webtasks-id="6c77e37a-84f8-4552">Story Notes</div></div></button></div></div>
<form class="main-edit-form
publish-edit
" data-webtasks-id="10779d39-38f1-4017">
<div class="required-form-wrapper" data-webtasks-id="90778270-7d16-474c">
<div class="form-group title-form" data-webtasks-id="82b411d9-c8bd-467a">
<label data-webtasks-id="f6d82712-ceda-4c96">Title</label>
<span class="empty-warning hidden" id="title-warning" data-webtasks-id="f2c92b3f-b2a0-462c">Required</span>
<div contenteditable="true" class="story-title has-title" spellcheck="false" data-ms-editor="true" data-webtasks-id="0346f71b-3018-4ea2">Whispers of the Soul.</div>
</div>
<div class="form-group description-form" data-webtasks-id="8db2755a-eb82-4dff">
<div class="form-wrapper" data-webtasks-id="1450fc72-a847-48ca">
<label data-webtasks-id="0c7fec2b-b904-4da4">Description</label>
<span data-toggle="popover" class="popover-icon" id="description-tooltip" title="" data-original-title="Add a story description" data-webtasks-id="c2edb0c5-57be-4e27"><span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="55603b0d-94cb-49d6"></span></span>
<span class="empty-warning hidden" id="description-warning" data-webtasks-id="c635d33e-894a-4628">Required</span>
</div>
<textarea type="text" name="title" class="story-description " aria-label="Story description" aria-multiline="true" spellcheck="false" data-ms-editor="true" data-webtasks-id="c5b010af-ffcb-4264">Immerse yourself in a collection of heartfelt poems that delve into the depths of human emotions and experiences. From love and loss to hope and resilience, these verses will resonate with your soul and take you on an emotional journey. Each poem is a glimpse into the poet's heart, inviting you to feel and reflect on life's beauty and complexities.</textarea>
</div>
<div class="form-group characters-form" data-webtasks-id="da710395-377f-4eff">
<div class="form-wrapper" data-webtasks-id="738dd7f4-4a99-4285">
<label data-webtasks-id="1b88b5d9-5dde-43ba">Main Characters</label>
<span data-toggle="popover" class="popover-icon" id="characters-tooltip" title="" data-original-title="Who are your Main Characters?" data-webtasks-id="c41bc3ea-a8c4-49ae"><span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="d53668da-5d08-48b0"></span></span>
</div>
<div class="characters" data-webtasks-id="34bf7771-10a0-4eb7">
<div class="character" data-webtasks-id="072eea7f-9826-4a03">
<input type="text" class="character-input" name="character" aria-label="Character name" placeholder="Name" data-id="" value="" spellcheck="false" data-ms-editor="true" data-webtasks-id="39faf74f-1b5a-4062">
<div class="btn btn-grey on-add-character" aria-label="Add another character" data-webtasks-id="75cb22bb-5419-4c8b"><span class="fa fa-plus fa-wp-neutral-1 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="58700860-500c-4bce"></span></div>
</div>
</div>
</div>
<div class="form-group category-form" data-webtasks-id="73b68123-866d-4f1b">
<div class="form-wrapper" data-webtasks-id="aed6b13b-b46b-4214">
<label for="categoryselect" data-webtasks-id="9de8ecee-b4c6-4dfd">Category</label>
<span data-toggle="popover" class="popover-icon" id="category-tooltip" title="" data-original-title="Tell Wattpad the category of your story" data-webtasks-id="63228c26-c416-432e">
<span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="74c5ebca-16e9-4117"></span>
</span>
<select id="categoryselect" class="form-control " data-webtasks-id="2033c4a7-f96b-4295">
<option value="-1" data-webtasks-id="a705d250-5c56-42c2">Select a category</option>
<option value="14" data-webtasks-id="87f13a64-be59-48eb">Action</option>
<option value="11" data-webtasks-id="539d4580-653d-46fc">Adventure</option>
<option value="24" data-webtasks-id="9e8e19c4-ee4f-4471">ChickLit</option>
<option value="6" data-webtasks-id="5c244555-862f-4a0f">Fanfiction</option>
<option value="3" data-webtasks-id="e5b70d73-7c61-44a0">Fantasy</option>
<option value="21" data-webtasks-id="1fbf27f3-2edd-4ca3">General Fiction</option>
<option value="23" data-webtasks-id="2cfbd94d-3f75-4453">Historical Fiction</option>
<option value="9" data-webtasks-id="b2ea9c82-4937-468e">Horror</option>
<option value="7" data-webtasks-id="2bf642ee-2d39-4f87">Humor</option>
<option value="8" data-webtasks-id="7284f371-bc1b-4248">Mystery / Thriller</option>
<option value="16" data-webtasks-id="fdd9bbc7-ad88-4578">Non-Fiction</option>
<option value="12" data-webtasks-id="65cd3409-5212-4e82">Paranormal</option>
<option value="2" selected="selected" data-webtasks-id="5453bcf9-0b50-4001">Poetry</option>
<option value="19" data-webtasks-id="8a6f3ded-8a30-4c94">Random</option>
<option value="4" data-webtasks-id="dcb8a4f4-8ec3-4895">Romance</option>
<option value="5" data-webtasks-id="fec1f057-1154-419e">Science Fiction</option>
<option value="17" data-webtasks-id="7c9c8408-7806-40dd">Short Story</option>
<option value="13" data-webtasks-id="322f28c1-4063-41a0">Spiritual</option>
<option value="1" data-webtasks-id="df8ea2c6-eb3f-49d0">Teen Fiction</option>
<option value="18" data-webtasks-id="2d04633d-d4f6-4321">Vampire</option>
<option value="22" data-webtasks-id="73a871f9-aafe-4363">Werewolf</option>
</select>
<span class="empty-warning hidden" id="category-empty-warning" data-webtasks-id="353fa76b-937a-4b86">
Required
</span>
</div>
</div>
<div class="form-group tags-form" data-webtasks-id="03096a29-bd66-4b05">
<div class="form-wrapper" data-webtasks-id="3930703e-3bac-4062">
<label data-webtasks-id="c4041569-6a34-4247">Tags</label>
<span data-toggle="popover" class="popover-icon" id="tags-tooltip" title="" data-original-title="Help readers find your story" data-webtasks-id="6bd5e8e0-0c74-4440"><span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="7280c2cf-3933-44d3"></span></span>
<span class="empty-warning hidden" id="tag-empty-warning" data-webtasks-id="f57abec2-6d63-41ff">Required</span>
</div>
<div class="tag-container" data-webtasks-id="ae6cc920-d002-4dc7">
<div id="editable-tags" style="margin-bottom: 5px;" data-webtasks-id="81790bb7-a8c3-42a1">
<div class="component-wrapper" id="component-storytags-storytags-%2fmyworks%2f347185120%2fwrite%2f1364490725" data-webtasks-id="24ee127b-8cf5-461a"><div class="tag-grid clearfix" data-webtasks-id="5c835789-5b3a-4019"><ul class="tag-items" data-webtasks-id="51a37732-19cd-4267"><li data-webtasks-id="288f4cd1-cc08-4f1b"><a class="tag-item with-icon active" data-webtasks-id="2c9c0ce3-c931-4a54"><span data-webtasks-id="dc366dd0-5b98-4df2">emotions</span><span class="fa fa-remove fa-wp-neutral-2" aria-hidden="true" data-webtasks-id="56c47259-17bc-4431" style="font-size: 12px;"></span></a></li><li data-webtasks-id="44c61322-6112-4651"><a class="tag-item with-icon active" data-webtasks-id="6f363978-54df-44a7"><span data-webtasks-id="f6ca5dae-0ad4-4f18">hope</span><span class="fa fa-remove fa-wp-neutral-2" aria-hidden="true" data-webtasks-id="ee64b3f4-b2aa-4cb0" style="font-size: 12px;"></span></a></li><li data-webtasks-id="fbb48e84-4b8f-4531"><a class="tag-item with-icon active" data-webtasks-id="68e6b871-05a7-4d65"><span data-webtasks-id="ae17f165-d120-4e7c">loss</span><span class="fa fa-remove fa-wp-neutral-2" aria-hidden="true" data-webtasks-id="8a9afc4a-bc62-4e80" style="font-size: 12px;"></span></a></li><li data-webtasks-id="03d87d21-a55f-4b8f"><a class="tag-item with-icon active" data-webtasks-id="b923b9c1-6fa8-4d19"><span data-webtasks-id="12bd379e-4e5a-47d2">love</span><span class="fa fa-remove fa-wp-neutral-2" aria-hidden="true" data-webtasks-id="c3758e7b-0e34-488e" style="font-size: 12px;"></span></a></li><li data-webtasks-id="6bb292b6-11d9-49f1"><a class="tag-item with-icon active" data-webtasks-id="7d712ac6-173a-4060"><span data-webtasks-id="63fc12c3-4bd6-46ca">resilience</span><span class="fa fa-remove fa-wp-neutral-2" aria-hidden="true" data-webtasks-id="11b39168-1c2d-41b0" style="font-size: 12px;"></span></a></li></ul></div></div>
</div>
<div id="add-tag" class="tag-item with-icon on-add-tag" data-webtasks-id="e795be5a-c9c5-421c">
<span data-webtasks-id="01f12731-bec0-4f03">Add a tag</span><span class="fa fa-plus fa-wp-neutral-1 " aria-hidden="true" style="font-size:12px;" data-webtasks-id="e9d83072-0850-4492"></span>
</div>
<span id="tag-input-wrapper" data-webtasks-id="9b17a600-482a-4fb3">
<input id="tag-input" class="hidden on-tag-input" placeholder="Separate tags with a space" autocomplete="off" spellcheck="false" data-ms-editor="true" data-webtasks-id="ec2eee9f-bbe6-43e4">
</span>
</div>
</div>
</div>
<div class="form-group target-audience-form" data-webtasks-id="152fc7a3-1914-45b5">
<div class="form-wrapper" data-webtasks-id="be121f15-48f8-4d35">
<label for="target-audience" data-webtasks-id="fbe77e22-384d-4bbc">Target Audience</label>
<span data-toggle="popover" class="popover-icon" id="target-audience-tooltip" title="" data-original-title="Who is this story for?" data-webtasks-id="8fe1819d-4d36-4cb8">
<span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="e2c29606-7b0d-4bc3"></span>
</span>
<select id="target-audience" class="form-control " data-webtasks-id="0223ee31-be12-4c89">
<option selected="true" disabled="disabled" data-webtasks-id="b7459218-ebe2-4d3d">Who is your primary audience?</option>
<option value="13-18" data-webtasks-id="cbca987a-d3a6-42cc">Young Adult (13-18 years of age)</option>
<option value="18-25" data-webtasks-id="9c0f2f35-c48b-4ccc">New Adult (18-25 years of age)</option>
<option value="25+" selected="" data-webtasks-id="4ee4b2aa-da9a-4fd4">Adult (25+ years of age)</option>
</select>
</div>
</div>
<div class="inline-form-wrapper" data-webtasks-id="338068fd-2a59-4998">
<div class="form-group language-form" data-webtasks-id="77862942-4b76-4e57">
<div class="form-wrapper" data-webtasks-id="cf04ffb2-00bd-4567">
<label data-webtasks-id="0b35a9cc-f8a1-45ea">Language</label>
<span data-toggle="popover" class="popover-icon" id="language-tooltip" title="" data-original-title="What language is your story in?" data-webtasks-id="b7954eac-779b-4d72"><span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="81ff138b-2403-4452"></span></span>
<select id="languageselect" class="form-control " aria-label="Story language" data-webtasks-id="32588935-2a99-4d62">
<option value="1" selected="selected" data-webtasks-id="502689b2-fd96-4b1e">English</option>
<option value="2" data-webtasks-id="d111ef1a-eb92-4641">Français</option>
<option value="3" data-webtasks-id="0a2d1918-bc5f-4fc3">Italiano</option>
<option value="4" data-webtasks-id="dc8a9056-4477-42d1">Deutsch</option>
<option value="5" data-webtasks-id="2f6e8cbe-8001-4110">Español</option>
<option value="6" data-webtasks-id="678a1648-1bb5-4710">Português</option>
<option value="38" data-webtasks-id="e90ac020-ee2b-41ad">Català</option>
<option value="19" data-webtasks-id="42c8f93e-5bf5-4a92">Tiếng Việt</option>
<option value="18" data-webtasks-id="6afe3aba-1b9b-40bb">Filipino</option>
<option value="20" data-webtasks-id="80b7afdb-2f4c-4dfe">Bahasa Indonesia</option>
<option value="22" data-webtasks-id="16ba6664-1edc-44f7">Bahasa Melayu</option>
<option value="32" data-webtasks-id="a29ca7f5-20ac-43c2">ภาษาไทย</option>
<option value="7" data-webtasks-id="80bf1b4e-9df4-4a1f">Русский</option>
<option value="15" data-webtasks-id="93cf7807-dc88-42d7">Română</option>
<option value="23" data-webtasks-id="4e383f95-fe64-465d">Türkçe</option>
<option value="24" data-webtasks-id="d4ee1e2b-c2d2-41d5">Česky</option>
<option value="14" data-webtasks-id="6e363543-b9ad-420d">Polski</option>
<option value="28" data-webtasks-id="cb785619-01ba-4080">Magyar</option>
<option value="30" data-webtasks-id="f484eaca-4b7d-495c">ελληνικά</option>
<option value="35" data-webtasks-id="860a0844-113a-434f">Eesti</option>
<option value="36" data-webtasks-id="8d5cfcc7-ab25-49e0">Latviešu</option>
<option value="37" data-webtasks-id="698f7c9d-2e6a-40c6">Lietuvių</option>
<option value="39" data-webtasks-id="a5888d6c-ddbc-4f56">Босански</option>
<option value="40" data-webtasks-id="c65ad04c-9a88-4305">Српски</option>
<option value="41" data-webtasks-id="95da08ca-ca85-4761">Hrvatski</option>
<option value="43" data-webtasks-id="13d30d86-3ad3-418f">Български</option>
<option value="44" data-webtasks-id="3cd19974-2460-4a98">Slovenčina</option>
<option value="42" data-webtasks-id="57fd239f-a1b0-4ff7">Slovenščina</option>
<option value="45" data-webtasks-id="5ba2a1d8-2290-4b29">Беларускі</option>
<option value="46" data-webtasks-id="3c23c7b3-b810-4c95">Українська</option>
<option value="26" data-webtasks-id="75989045-914c-434d">Svenska</option>
<option value="27" data-webtasks-id="779904f9-b722-45a5">Norsk</option>
<option value="34" data-webtasks-id="0731776b-e657-4c03">Suomi</option>
<option value="29" data-webtasks-id="2d2fe449-3b48-4aef">Dansk</option>
<option value="13" data-webtasks-id="eb275386-b1a2-4455">Nederlands</option>
<option value="33" data-webtasks-id="27566c8c-1555-47f3">Íslenska</option>
<option value="12" data-webtasks-id="b2e6a3f8-a179-4dc4">简体中文</option>
<option value="8" data-webtasks-id="5d7b14e8-8344-420e">繁體中文</option>
<option value="9" data-webtasks-id="f2972cc7-e289-4ded">日本語</option>
<option value="10" data-webtasks-id="6ff33dac-4a74-4998">한국어</option>
<option value="16" data-webtasks-id="9d7827ab-b682-43ca">العربية</option>
<option value="53" data-webtasks-id="0facafa5-6305-48f8">ગુજરાતી</option>
<option value="17" data-webtasks-id="204c6dfc-c770-4ae3">עברית</option>
<option value="21" data-webtasks-id="f857b532-34e3-4a3f">हिन्दी</option>
<option value="25" data-webtasks-id="7de728dd-f026-4737">മലയാളം</option>
<option value="54" data-webtasks-id="bcbb0d4e-a784-4f3a">ଓଡ଼ିଆ</option>
<option value="31" data-webtasks-id="0f6d1837-31e4-4368">فارسی</option>
<option value="55" data-webtasks-id="c466b5d0-79ae-4c81">ਪੰਜਾਬੀ</option>
<option value="56" data-webtasks-id="1b129db5-506b-4073">অসমীয়া</option>
<option value="47" data-webtasks-id="bf1178f3-5888-4bcf">বাংলা</option>
<option value="48" data-webtasks-id="88cc6722-5006-4abf">اُردُو</option>
<option value="49" data-webtasks-id="c3e066c8-b65c-4f67">தமிழ்</option>
<option value="50" data-webtasks-id="bfbadce1-3bdc-4ed3">Kiswahili</option>
<option value="51" data-webtasks-id="15f2a3d3-e205-4034">Afrikaans</option>
<option value="57" data-webtasks-id="8d52d92d-977f-4c12">मराठी</option>
<option value="11" data-webtasks-id="bf5f0a81-b91c-41ec">Other</option>
</select>
</div>
</div>
<div class="form-group copyright-form" data-webtasks-id="24efcfc4-fc90-4ba9">
<div class="form-wrapper" data-webtasks-id="0b7d1a4d-fedc-409b">
<div class="component-wrapper" id="component-copyright-copyright-%2fmyworks%2f347185120%2fwrite%2f1364490725" data-webtasks-id="cfb7340d-dde8-42ce"><div class="form-field" data-webtasks-id="017d88d2-c62e-4569"><div class="form-field-label" data-webtasks-id="9ffa3c7b-320e-466e"><label data-webtasks-id="d9c90f1c-c0c8-45dc">Copyright</label><div class="icon-container" data-webtasks-id="5e2359b8-716d-4b75"><button class="btn btn-no-style" data-webtasks-id="5a8dc39e-343a-431e"><span class="fa fa-info fa-wp-neutral-2" aria-hidden="true" data-webtasks-id="43e02648-3fd9-4d3a" style="font-size: 16px;"></span></button></div></div><select class="select-form-field" id="select-form-component" aria-label="Copyright options" name="copyright" data-webtasks-id="3ce50c84-c8ac-4285">(value !== placeholder && <option hidden="" disabled="" value="Select" data-webtasks-id="60086cda-7fdd-413e">Select</option>)<option value="1" data-webtasks-id="bd21279a-d6a0-41c1">All Rights Reserved</option><option value="2" data-webtasks-id="e175d9c2-9ece-4fb4">Public Domain</option><option value="3" data-webtasks-id="aa8fd669-e53e-4733">Creative Commons (CC) Attribution</option><option value="4" data-webtasks-id="8095e337-90b8-4b2f">(CC) Attrib. NonCommercial</option><option value="5" data-webtasks-id="0d2b60e0-a597-49d7">(CC) Attrib. NonComm. NoDerivs</option><option value="6" data-webtasks-id="3bb2a2d4-3f21-4a56">(CC) Attrib. NonComm. ShareAlike</option><option value="7" data-webtasks-id="ea026b00-d67a-4a4b">(CC) Attribution-ShareAlike</option><option value="8" data-webtasks-id="355f562e-30f9-473e">(CC) Attribution-NoDerivs</option></select></div><p class="copyright-description" data-webtasks-id="f42765ce-7570-4083">You do not allow your work to be used or adapted in any way without your permission.</p></div>
</div>
</div>
<div class="form-group rating-form" data-webtasks-id="e8e35906-c816-4207">
<div class="form-wrapper" data-webtasks-id="f06424d1-7777-4c47">
<label class="rating-label" data-webtasks-id="5dd568ad-fc03-4e7b">Rating</label>
<span data-toggle="popover" class="popover-icon" id="rating-tooltip" title="" data-original-title="Rate your story" data-webtasks-id="e08bcae5-633d-4e71"><span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="51ee2a0e-3870-4178"></span></span>
<span class="toggle-prompt" data-webtasks-id="f7641e53-7828-477c">Mature</span>
<div class="onoffswitch " data-webtasks-id="bbc7712c-6848-4d36">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="mature-switch" data-webtasks-id="384030c4-2dea-4d03">
<label class="onoffswitch-label" for="mature-switch" data-webtasks-id="751e6c20-633e-4c31">
<div class="onoffswitch-inner" data-webtasks-id="fd022865-f770-47da">
<span class="on" data-webtasks-id="2dd8726c-7256-4d34">ON</span>
<span class="off" data-webtasks-id="c186a562-6740-4ced">OFF</span>
</div>
<span class="onoffswitch-switch" data-webtasks-id="b06162e6-920a-4040"></span>
</label>
</div>
</div>
<p class="rating-warning everyone" data-webtasks-id="fc569962-d254-40f7">
Your story is appropriate for all audiences. The Wattpad community has the ability to rate
your story Mature. For more info, please read Wattpad’s Content Guidelines: <a href="https://www.wattpad.com/guidelines" data-webtasks-id="6a124300-ce00-4261">https://www.wattpad.com/guidelines</a>
</p>
<p class="rating-warning writerMature hidden" data-webtasks-id="ae1d61ef-902b-40d4">
Your story contains graphic depictions of violence, sexuality, strong language, and/or other
mature themes. For more info, please read Wattpad’s Content Guidelines: <a href="https://www.wattpad.com/guidelines" data-webtasks-id="d135a64a-4504-4eb9">https://www.wattpad.com/guidelines</a>
</p>
</div>
<div class="form-group status-form" data-webtasks-id="9bad66c6-a378-46f2">
<div class="form-wrapper" data-webtasks-id="f4e69cb9-a515-40bf">
<label class="rating-label" data-webtasks-id="25fb1931-b7a3-4e9e">Story Status</label>
<span data-toggle="popover" class="popover-icon" id="story-tooltip" title="" data-original-title="Mark as Complete" data-webtasks-id="b81efbfd-d46a-4790"><span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="a394527b-4270-4fc3"></span></span>
<span class="toggle-prompt" data-webtasks-id="4a111053-c73c-46c6">Complete?</span>
<div class="onoffswitch" data-webtasks-id="0d4ba2d7-2028-4764">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="complete-switch" data-webtasks-id="236b72e3-afd0-48e4">
<label class="onoffswitch-label" for="complete-switch" data-webtasks-id="779816b7-69d4-4b9f">
<span class="onoffswitch-inner" data-webtasks-id="6058e66f-f36e-4566">
<span class="on" data-webtasks-id="3cd9d521-25fd-4cdf">ON</span>
<span class="off" data-webtasks-id="a75084fc-e825-46b1">OFF</span>
</span>
<span class="onoffswitch-switch" data-webtasks-id="73cf8335-f021-407c"></span>
</label>
</div>
</div>
</div>
<div class="form-group inline-form" data-webtasks-id="20a804b0-9217-4193">
<div class="acknowledge-wrapper" data-webtasks-id="cdf12607-bd37-4cc6">
<span class="empty-warning hidden" id="acknowledge-empty-warning" data-webtasks-id="bebe0f01-be25-4bd3">
*You must complete this field to proceed
</span>
<div class="component-wrapper" id="component-acknowledge-acknowledge-%2fmyworks%2f347185120%2fwrite%2f1364490725" data-webtasks-id="d3dbe7a0-97ae-45ec"><div class="acknowledge" data-webtasks-id="ca95df59-1fe7-4d46"><button class="react-checkbox btn-no-style" id="acknowledge-checkbox" data-webtasks-id="dba5206a-7043-4cd1"></button><label for="acknowledge-checkbox" data-webtasks-id="7c5f7a10-d8ce-45d9">I acknowledge this is my own original work, or I have the permission from the original author to post this work. Copyright infringement may result in story deletion or account closure.</label></div></div>
</div>
</div>
</div>
</form>
<div class="table-of-contents " data-webtasks-id="fd4d87e8-df55-455b">
</div>
<div class="story-planner" data-webtasks-id="5cbc1c0b-3e6b-4266">
<div class="component-wrapper" id="component-storynotes-editor-view-%2fmyworks%2f347185120%2fwrite%2f1364490725" data-webtasks-id="c0b43067-2a1a-4c2e"></div>
</div>
</div>
</div>
</div>
</div>
<div id="details-modal" class="modal fade" role="dialog" data-webtasks-id="96769505-bd0a-486a">
<div class="modal-dialog" data-webtasks-id="3c402ac5-fd1c-4285">
<div class="modal-content" data-webtasks-id="e519d57a-8df5-4dc1">
<div class="modal-header" data-webtasks-id="e4004c48-bbee-473c">
<span class="close pull-right" data-dismiss="modal" data-webtasks-id="00d25a0c-dc61-457c"><span class="fa fa-remove fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="8e262e98-f581-4af3"></span></span>
<span class="sr-only" data-webtasks-id="d8120a87-f3e2-42a4">Close</span>
<div class="modal-title delete-part-modal hidden" data-webtasks-id="14d99cea-f15f-401d">Confirm Part Delete</div>
<div class="modal-title delete-published-part-modal hidden" data-webtasks-id="cbf31470-89ae-40c5">Delete Part?</div>
<div class="modal-title unpublish-part-modal hidden" data-webtasks-id="2eca1cb2-312c-4471">Unpublish Part?</div>
<div class="modal-title unpublish-story-modal hidden" data-webtasks-id="dec7d86c-587b-43a5">Unpublish Story?</div>
<div class="modal-title delete-story-modal hidden" data-webtasks-id="af0e811d-2b19-4bcb">Confirm Story Delete</div>
<div class="modal-title delete-published-story-modal hidden" data-webtasks-id="b88aa821-3041-4b04">Delete Story?</div>
</div>
<div class="modal-body" data-webtasks-id="b123704d-b45e-4b94">
<div id="embed-modal" data-webtasks-id="ac1d8950-6281-4c13">
<h4 data-webtasks-id="541786f7-ab98-494d">Embed this Story</h4>
<h5 data-webtasks-id="7ce8bb70-e885-42a5">Preview</h5>
<iframe width="500" height="280" data-href="https://embed.wattpad.com/story/?quote_text=" frameborder="0" allowfullscreen="" data-webtasks-id="bdd617e3-b550-4f6c"></iframe>
<div class="on-select embed-code" data-webtasks-id="a9418d5c-322c-4650">
<span id="embed-url" data-webtasks-id="535a1505-0529-4a8f">
<iframe width="500" height="280" frameborder="0" allowfullscreen=""
src="https://embed.wattpad.com/story/"
></iframe>
</span>
</div>
</div>
<iframe id="stats-modal" frameborder="0" class="hidden" data-href="/dialog/story_stats?groupid=347185120&load-font=1" data-webtasks-id="d35b0462-8d72-4aad"></iframe>
<div class="hidden warning delete-published-story-modal delete-story-modal delete-published-part-modal delete-part-modal" data-webtasks-id="6717ad4d-689a-4664">
WARNING: This cannot be undone.
</div>
<div class="hidden question-modal unpublish-part-modal" data-webtasks-id="fb0b3348-9a6a-47f9">
<div class="prompt" data-webtasks-id="d994c786-63d5-431a">
Draft stories can't be seen by other members of Wattpad, so they don't get any new reads, votes, or comments.
</div>
<div class="action-buttons two-btns" data-webtasks-id="2fb2beb9-35da-4827">
<button class="btn btn-long btn-teal on-do-unpublish-part" data-webtasks-id="cf62de4c-7220-48b0">Unpublish</button>
<button class="btn btn-short btn-grey" data-dismiss="modal" data-webtasks-id="962c6af5-4283-4e67">Cancel</button>
</div>
</div>
<div class="hidden question-modal delete-published-part-modal" data-webtasks-id="a8ff0950-5e36-4256">
<div class="prompt" data-webtasks-id="88497b73-6e3f-45ec">
If you're unsure, it's better to <strong data-webtasks-id="06a12622-9c5a-4845">unpublish</strong> your part. Unpublished parts can only be seen by you, so they don't get any new reads, votes, or comments.
</div>
<div class="action-buttons" data-webtasks-id="24befda0-83ed-4fcc">
<button class="btn btn-red on-delete-part" data-webtasks-id="97f02bfa-bf6f-4a39">Delete</button>
<button class="btn btn-teal on-do-unpublish-part" data-webtasks-id="f4740a9f-c316-4486">Unpublish</button>
<button class="btn btn-grey" data-dismiss="modal" data-webtasks-id="e1e6698e-988b-47f6">Cancel</button>
</div>
</div>
<div class="hidden question-modal delete-part-modal" data-webtasks-id="ef1d9d43-1be8-42fb">
<div class="prompt" data-webtasks-id="376cd53e-ab3d-4902">
<div data-webtasks-id="d6af2b71-0649-4cd3">All <strong data-webtasks-id="422c5cb2-c9fc-4973">reads</strong> for this part will be <strong data-webtasks-id="46fa2356-ad98-43ec">deleted</strong>.</div>
<div data-webtasks-id="99258942-ed99-4ff9">All <strong data-webtasks-id="5bcf0bfa-c2c7-4177">votes</strong> for this part will be <strong data-webtasks-id="43ae9486-e1c8-4d13">deleted</strong>.</div>
<div data-webtasks-id="7711db43-2a0f-4876">All <strong data-webtasks-id="80368044-a3af-4e56">comments</strong> for this part will be <strong data-webtasks-id="5b0e9199-a9fb-4d05">deleted</strong>.</div>
</div>
<div class="action-buttons two-btns" data-webtasks-id="48fa96ca-de40-4c11">
<button class="btn btn-long btn-red on-do-delete-part" data-webtasks-id="cd04b7e9-3601-430a">Delete Forever</button>
<button class="btn btn-short btn-grey" data-dismiss="modal" data-webtasks-id="f1db1457-31ce-47ef">Cancel</button>
</div>
</div>
<div class="hidden question-modal unpublish-story-modal" data-webtasks-id="7ccab02c-64f5-49c3">
<div class="prompt" data-webtasks-id="7b3caa5d-8b03-4b1c">
Draft stories can't be seen by other members of Wattpad, so they don't get any new reads, votes, or comments.
</div>
<div class="action-buttons two-btns" data-webtasks-id="65b2724d-99f2-40b1">
<button class="btn btn-long btn-teal on-do-unpublish-story cta" data-webtasks-id="4a3e4b4f-7dba-403c">Unpublish</button>
<button class="btn btn-short btn-grey" data-dismiss="modal" data-webtasks-id="eb2bc59d-07f3-440f">Cancel</button>
</div>
<div id="working-wrapper" class="hidden" data-webtasks-id="4923dfc9-4388-42d7">
<div id="unpublish-working" data-webtasks-id="6ed8be21-f50d-4dec">Working …</div>
<div class="progress" data-webtasks-id="866ae995-e163-401d">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;" data-webtasks-id="c7d02401-bec8-4c5b"></div>
</div>
</div>
</div>
<div class="hidden question-modal delete-published-story-modal" data-webtasks-id="e1cdc62c-d245-49da">
<div class="prompt" data-webtasks-id="2cc33024-e431-47e5">
If you're unsure, it's better to <strong data-webtasks-id="84990e9f-197f-4938">unpublish</strong> your story. Unpublished stories can only be seen by you, so they don't get any new reads, votes, or comments.
</div>
<div class="action-buttons" data-webtasks-id="ffc0aec7-b110-40eb">
<button class="btn btn-red on-delete-story" data-webtasks-id="031bbef4-82b7-4f7b">Delete</button>
<button class="btn btn-teal on-unpublish-story" data-webtasks-id="fbc7cfe0-68e6-485f">Unpublish</button>
<button class="btn btn-grey" data-dismiss="modal" data-webtasks-id="5596917f-dee0-4bc4">Cancel</button>
</div>
</div>
<div class="hidden question-modal delete-story-modal" data-webtasks-id="24097252-5fd5-48c2">
<div class="prompt" data-webtasks-id="d1fe4b12-cfaa-4e11">
<div data-webtasks-id="b3b94aae-ee66-4ea8">All <strong data-webtasks-id="edd80a9c-564f-4e28">parts</strong> for this story will be <strong data-webtasks-id="7cc3351d-f6ad-46cf">deleted</strong>.</div>
<div data-webtasks-id="bce41923-b39e-4a79">All <strong data-webtasks-id="84d480c3-37b5-4f00">reads</strong> for this story will be <strong data-webtasks-id="fe521bfb-5470-4d27">deleted</strong>.</div>
<div data-webtasks-id="3200201c-f9b6-46be">All <strong data-webtasks-id="be122da4-d3af-4ab3">votes</strong> for this story will be <strong data-webtasks-id="a670117f-198e-4ce4">deleted</strong>.</div>
<div data-webtasks-id="c9574be0-f338-4b88">All <strong data-webtasks-id="d772e47e-52bc-44dd">comments</strong> for this story will be <strong data-webtasks-id="20af8e28-02e5-4a06">deleted</strong>.</div>
</div>
<form id="delete-story-form" data-webtasks-id="b9a4aa9c-c06b-4f1d">
<div class="hidden alert alert-danger" role="alert" data-webtasks-id="1c9026ee-5582-4915">
<span class="fa fa-warning fa-wp-error-1 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="caaa2472-f5f6-4366"></span> <div data-webtasks-id="0390eafb-70d1-4458">Please correct the following</div>
<ul class="messages" data-webtasks-id="3d91dd42-6513-4276"></ul>
</div>
<div class="form-group" data-webtasks-id="c8293bfe-5cf4-480e">
<input id="username" class="form-control input-lg enable" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" placeholder="Username" data-webtasks-id="9e53441a-37f1-4932">
</div>
<div class="form-group last" data-webtasks-id="04ea3ed8-1bf3-4922">
<input id="confirm-username" class="form-control input-lg enable" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" placeholder="Confirm Username" spellcheck="false" data-ms-editor="true" data-webtasks-id="a1c38762-36b5-4771">
</div>
<div class="action-buttons two-btns" data-webtasks-id="001e1b6c-62f5-45b6">
<input type="submit" class="btn btn-long btn-red" value="Delete Forever" data-webtasks-id="39e2fd15-0992-4a54">
<button class="btn btn-short btn-grey" data-dismiss="modal" data-webtasks-id="e96de7ed-de76-42d8">Cancel</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div></div>
</div>
</div>
</div>
</div><iframe name="__uspapiLocator" style="display: none;" data-webtasks-id="a8fd260d-0aac-41a0"></iframe>
<div id="header-container" class="hidden" data-webtasks-id="ab3ac8d7-e549-4ec8">
<div role="banner" id="header" class="hidden" data-webtasks-id="d3633685-1959-4eed">
<nav data-webtasks-id="765edc62-6400-4222">
<ul class="list-inline" data-webtasks-id="f4e0a90e-27bc-4048">
<li id="header-item-logo" data-webtasks-id="1bd42f94-7e57-46c0">
<a class="on-navigate" href="/home" title="Wattpad Home" aria-label="Home" data-webtasks-id="cbee3fa8-b601-4568">
</a>
</li>
<li id="discover-dropdown" class="button-group dropdown" data-webtasks-id="33dad55b-15da-4cf1">
<button data-toggle="dropdown" data-webtasks-id="2018a003-b8e6-4de3">Browse <span class="caret" data-webtasks-id="bdefd0c2-9dd8-452b"></span></button>
<div class="triangle" data-webtasks-id="e8f53e58-ef7b-486a"></div>
<div class="dropdown-menu new-curation large header-list" aria-labelledby="browse-dropdown" data-webtasks-id="08c9233f-e1a2-43cb">
<div class="col-xs-9 discover-categories" data-webtasks-id="c64ea924-7302-4009">
<ul class="row" data-webtasks-id="e409ba19-57cd-4060">
<li class="title col-xs-12" aria-label="Browse Topics" data-webtasks-id="29e128c9-955f-404e">Browse</li>
<li class="col-xs-4" data-webtasks-id="1ae74880-8d2a-464a">
<a href="https://www.wattpad.com/catalog/paidstories" class="on-navigate on-topic" data-webtasks-id="c6914aa4-a617-4664">Paid Stories</a>
</li>
<li class="col-xs-4" data-webtasks-id="f130d153-782f-4cf6">
<a href="https://www.wattpad.com/list/551324301" class="on-navigate on-topic" data-webtasks-id="1d640fad-325d-47d6">Editor's Picks</a>
</li>
<li class="col-xs-4" data-webtasks-id="1a5710b7-6263-4999">
<a href="https://www.wattpad.com/user/TheWattys" class="on-navigate on-topic" data-webtasks-id="94431b9f-7f3b-4b27">The Wattys</a>
</li>
<li class="col-xs-4" data-webtasks-id="226cf240-06df-467d">
<a href="/stories/adventure" class="on-navigate on-topic" data-webtasks-id="b38160ae-8bb4-425f">Adventure</a>
</li>
<li class="col-xs-4" data-webtasks-id="aca43f08-ac69-49f9">
<a href="/stories/contemporarylit" class="on-navigate on-topic" data-webtasks-id="dbfd7db9-28e9-4f29">Contemporary Lit</a>
</li>
<li class="col-xs-4" data-webtasks-id="0005595a-b1b0-473d">
<a href="/stories/diverselit" class="on-navigate on-topic" data-webtasks-id="befbd3d6-4dfb-4c5b">Diverse Lit</a>
</li>
<li class="col-xs-4" data-webtasks-id="c4c4194b-1adc-4588">
<a href="/stories/fanfiction" class="on-navigate on-topic" data-webtasks-id="7ebeb194-b365-4f57">Fanfiction</a>
</li>
<li class="col-xs-4" data-webtasks-id="5fc4fa02-4e3b-448f">
<a href="/stories/fantasy" class="on-navigate on-topic" data-webtasks-id="3513c905-9adc-40d5">Fantasy</a>
</li>
<li class="col-xs-4" data-webtasks-id="d52df0ea-85df-487c">
<a href="/stories/historicalfiction" class="on-navigate on-topic" data-webtasks-id="fc348ce1-3050-4783">Historical Fiction</a>
</li>
<li class="col-xs-4" data-webtasks-id="0358a5d9-fcc6-4fa4">
<a href="/stories/horror" class="on-navigate on-topic" data-webtasks-id="4724413d-5cb9-42d0">Horror</a>
</li>
<li class="col-xs-4" data-webtasks-id="e47c9ba6-67bb-4c8b">
<a href="/stories/humor" class="on-navigate on-topic" data-webtasks-id="c6d57c13-dc14-47ee">Humor</a>
</li>
<li class="col-xs-4" data-webtasks-id="91a71092-d156-40bd">
<a href="/stories/lgbt" class="on-navigate on-topic" data-webtasks-id="6b4323fb-56e8-49d9">LGBTQ+</a>
</li>
<li class="col-xs-4" data-webtasks-id="e0ba446a-2b39-400e">
<a href="/stories/mystery" class="on-navigate on-topic" data-webtasks-id="373e7586-6301-486e">Mystery</a>
</li>
<li class="col-xs-4" data-webtasks-id="5d85d304-d181-4290">
<a href="/stories/newadult" class="on-navigate on-topic" data-webtasks-id="28137588-b027-4185">New Adult</a>
</li>
<li class="col-xs-4" data-webtasks-id="bbcf693b-28d3-4ff5">
<a href="/stories/nonfiction" class="on-navigate on-topic" data-webtasks-id="f40b432f-44c3-403f">Non-Fiction</a>
</li>
<li class="col-xs-4" data-webtasks-id="0c49aa19-4edb-4772">
<a href="/stories/paranormal" class="on-navigate on-topic" data-webtasks-id="682cda40-8e48-4a70">Paranormal</a>
</li>
<li class="col-xs-4" data-webtasks-id="5dc25039-92c7-4a84">
<a href="/stories/poetry" class="on-navigate on-topic" data-webtasks-id="6a96502f-35c6-476d">Poetry</a>
</li>
<li class="col-xs-4" data-webtasks-id="ecbb74aa-d0d9-43d1">
<a href="/stories/romance" class="on-navigate on-topic" data-webtasks-id="688455c6-3523-401a">Romance</a>
</li>
<li class="col-xs-4" data-webtasks-id="14efd868-6175-43cf">
<a href="/stories/sciencefiction" class="on-navigate on-topic" data-webtasks-id="a7ab40c4-e9af-4a6e">Science Fiction</a>
</li>
<li class="col-xs-4" data-webtasks-id="c8dc7e8c-4949-4ac4">
<a href="/stories/shortstory" class="on-navigate on-topic" data-webtasks-id="15887e09-cc2b-4efd">Short Story</a>
</li>
<li class="col-xs-4" data-webtasks-id="d0a4b5de-c262-461f">
<a href="/stories/teenfiction" class="on-navigate on-topic" data-webtasks-id="2af87479-065d-4214">Teen Fiction</a>
</li>
<li class="col-xs-4" data-webtasks-id="b82d88b8-0f52-494c">
<a href="/stories/thriller" class="on-navigate on-topic" data-webtasks-id="b07bcdff-73d3-45d5">Thriller</a>
</li>
<li class="col-xs-4" data-webtasks-id="c813cd07-9488-430e">
<a href="/stories/werewolf" class="on-navigate on-topic" data-webtasks-id="cdcae0d3-655e-449d">Werewolf</a>
</li>
</ul>
</div>
<div class="col-xs-3 wattpad-picks" data-webtasks-id="716ebea3-bba8-4041">
<ul class="row" aria-label="Wattpad Picks" data-webtasks-id="3a716a37-2e52-4611">
<li class="title col-xs-12" data-webtasks-id="3f6597cd-f6bd-4dea">Wattpad Picks</li>
<li class="col-xs-12" data-webtasks-id="4dbf9c46-0098-4096">
<a href="/featured/551324301" class="on-navigate" data-webtasks-id="1af0b45c-d503-41e9">Editors' Choice</a>
</li>
<li class="col-xs-12" data-webtasks-id="fc8a815c-5103-40a3">
<a href="/featured/1452732909" class="on-navigate" data-webtasks-id="4b8a238e-00bd-4c79">Summer Loving Reads 🌻</a>
</li>
<li class="col-xs-12" data-webtasks-id="ccfb187c-9d17-4ddc">
<a href="/featured/1449040700" class="on-navigate" data-webtasks-id="22b306c1-fe62-418c">Where Bad Boy x Bad Girl stories live 💅</a>
</li>
<li class="col-xs-12" data-webtasks-id="68016eef-020a-429c">
<a href="/featured/1452733842" class="on-navigate" data-webtasks-id="059f23a4-641d-4264">Your Inner Hero 🤓</a>
</li>
<li class="col-xs-12" data-webtasks-id="4660bdf7-1d68-428e">
<a href="/featured/960279561" class="on-navigate" data-webtasks-id="4ecf17a2-d894-44f8">From our Creators</a>
</li>
<li class="col-xs-12" data-webtasks-id="17148f02-0669-4019">
<a href="/featured/703389905" class="on-navigate" data-webtasks-id="6be3560e-e395-44f0">Wattpad Studios Hits</a>
</li>
</ul>
</div>
</div>
</li>
<li id="community-dropdown" class="button-group dropdown hidden-xs hidden-sm" data-webtasks-id="1b6e359a-6235-4de4">
<button data-toggle="dropdown" data-webtasks-id="77885d93-2408-4bee">Community <span class="caret" data-webtasks-id="2fbe90b9-12b9-4238"></span></button>
<div class="triangle" data-webtasks-id="975ffe29-48b8-4ed6"></div>
<div class="dropdown-menu large" aria-labelledby="community-dropdown" data-webtasks-id="c168600f-1b2f-423c">
<ul aria-label="Community" class="header-list" data-webtasks-id="77cc22d1-c613-47ee">
<li data-webtasks-id="c395ef16-2dd9-45ac">
<a href="/awards" rel="noopener noreferrer" target="_blank" data-webtasks-id="9f410b3f-a8a4-4e07">
The Watty Awards
</a>
</li>
<li data-webtasks-id="bf17c798-6061-4ed1">
<a href="/story/25279524" rel="noopener noreferrer" target="_blank" data-webtasks-id="a57c94f9-3e82-4f8b">
Community Happenings
</a>
</li>
<li data-webtasks-id="b2846110-85e0-4c23">
<a href="/823619" rel="noopener noreferrer" target="_blank" data-webtasks-id="29787cb5-2296-4cdf">
Wattpad Ambassadors
</a>
</li>
</ul>
</div>
</li>
</ul>
</nav>
<div id="header-item-search" aria-label="Search" data-webtasks-id="c1bfa14a-2f9b-41f9">
<div data-webtasks-id="41017f63-7ebb-44bf"><form class="form-horizontal dropdown" role="search" name="search" action="/search/" autocomplete="off" data-webtasks-id="138e1427-48b6-4c58">
<input id="search-query" placeholder="Search" name="q" type="text" spellcheck="false" aria-label="Search" value="" data-webtasks-id="1d22e5a8-0d8e-4344">
<button type="submit" aria-label="Submit search" data-webtasks-id="2275854f-feda-4b95">
<span class="fa fa-search fa-wp-neutral-1 " aria-hidden="true" style="font-size:18px;" data-webtasks-id="97cb4361-43b8-42d3"></span>
</button>
<input type="hidden" name="ref" value="1" data-webtasks-id="1802f982-a6ab-4471">
<div class="dropdown-menu items" aria-label="search-dropdown" data-webtasks-id="06c29073-1805-4241">
<ul aria-label="Autocomplete" class="autocomplete-item-container" data-webtasks-id="b73aef41-220f-4336"></ul>
</div>
<div class="triangle" data-webtasks-id="d0f00a19-31d4-4986"></div>
</form>
</div>
</div>
<nav data-webtasks-id="c41fbd96-857c-440b">
<ul class="list-inline" data-webtasks-id="e36d3552-f198-47cb">
<li class="button-group dropdown hidden-xs hidden-sm" data-webtasks-id="5c0a083a-fdbe-4a9e">
<button data-toggle="dropdown" data-webtasks-id="9edf83ca-597b-4ca8">Write <span class="caret" data-webtasks-id="1ff76ab6-cc55-456a"></span></button>
<div class="triangle" data-webtasks-id="937a5de6-6da5-466a"></div>
<div class="dropdown-menu large" aria-labelledby="create-dropdown" data-webtasks-id="da95df1c-5171-4604">
<ul aria-label="Write" class="header-list" data-webtasks-id="dfe6ac52-d0e1-440e">
<li data-webtasks-id="f337ede1-dcae-4507">
<a href="/myworks/new" rel="nofollow" aria-label="Create a new story" data-webtasks-id="c0652562-0e95-457c">
<img alt="Create a new story" src="//static.wattpad.com/img/icons/create-story.svg?v=a14574b" data-webtasks-id="560c1c9f-f7a9-4eee">Create a new story
</a>
</li>
<li data-webtasks-id="cc4bfead-e6a6-4fe4">
<a href="/myworks" rel="nofollow" aria-label="My Stories" data-webtasks-id="caa2db0e-6d8b-4382">My Stories</a>
</li>
<li role="presentation" class="divider" data-webtasks-id="92b130a6-377e-4cf2"></li>
<li data-webtasks-id="25e9fcc9-ee52-4904">
<a href="https://creators.wattpad.com/creators-101/" data-webtasks-id="a81a83ae-d1c0-4c98">Helpful writer resources</a>
</li>
<li data-webtasks-id="03e4a79b-cee7-4676">
<a href="https://creators.wattpad.com/programs-and-opportunities/" data-webtasks-id="ef4485b5-6411-4be1">Wattpad programs & opportunities</a>
</li>
<li data-webtasks-id="6655ac9d-0d9f-45ab">
<a href="/go/writing-contests/" data-webtasks-id="4f2f34f5-664b-494f">Writing contests</a>
</li>
</ul>
</div>
</li>
</ul>
</nav>
<div id="go-premium-button" data-webtasks-id="f2fa823a-6539-49f9">
<div class="component-wrapper" id="component-trypremium-header-%2fmyworks%2fnew" data-webtasks-id="4faaf8de-17a6-451b"><a href="https://www.wattpad.com/premium" class="try-premium on-premium btn-primary" target="_blank" rel="noopener noreferrer" data-webtasks-id="4ec35c25-efcc-4b96"><svg width="20" height="20" viewBox="0 0 24 24" fill="#e81249" stroke="#e81249" stroke-width="2" aria-hidden="true" stroke-linecap="round" stroke-linejoin="round" class="zap-icon" data-webtasks-id="0e176650-b08b-41d9"><g data-webtasks-id="e9c1c337-ed5f-4477"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2" data-webtasks-id="d518d2ad-b7d0-4b02"></polygon></g></svg><div class="button-copy" data-webtasks-id="dce661c1-3aee-4a90">Try Premium</div></a></div>
</div>
<div id="profile-dropdown" class="button-group dropdown" data-webtasks-id="11f2370b-178e-4b17">
<button data-toggle="dropdown" role="button" aria-label="User" data-webtasks-id="18b8b694-7a1a-4a88">
<div class="avatar avatar-sm" data-webtasks-id="07b47e06-4275-4659">
<img src="https://img.wattpad.com/useravatar/Webtask.24.336719.jpg" width="25" height="25" alt="Webtask" data-webtasks-id="a7e4c68a-1664-40db">
</div>
<span class="username hidden-xs hidden-sm hidden-md " data-webtasks-id="03f1732f-efec-4575">
Webtask
</span>
<span class="caret" data-webtasks-id="2ef36677-1e90-405f"></span>
</button>
<div class="triangle" data-webtasks-id="61b54540-220b-483a"></div>
<div class="dropdown-menu dropdown-menu-right large" role="menu" aria-labelledby="profile-dropdown" data-webtasks-id="387a2985-0afc-4683">
<ul aria-label="Profile" class="header-list" data-webtasks-id="f033ca2f-9659-4a77">
<li data-webtasks-id="86ac5d39-de7f-484e"><a class="on-navigate" href="/user/Webtask" data-webtasks-id="6a3a243a-7a91-472b">My Profile</a></li>
<li role="presentation" class="divider" data-webtasks-id="7173e5c0-9209-49a6"></li>
<li data-webtasks-id="a0d1ac73-fc60-49f2"><a href="/inbox" data-webtasks-id="e3fe3a98-989c-4a10">Inbox
</a></li>
<li data-webtasks-id="ab92849a-6aa6-4337"><a class="on-navigate" href="/notifications" data-webtasks-id="26b0aa10-8f62-419a">Notifications
</a></li>
<li data-webtasks-id="bdfd6d4f-3741-4cfa"><a class="on-navigate" href="/library" data-webtasks-id="e224d1d6-1fcd-48e0">Library</a></li>
<li role="presentation" class="divider" data-webtasks-id="a19ac280-bff8-42a5"></li>
<li data-webtasks-id="07178ff1-a53f-4bde"><a href="/settings/language?jq=true" class="on-language" data-ignore="true" data-webtasks-id="7a62cd12-d739-4117">Language: English</a></li>
<li data-webtasks-id="e366ebb1-7e5c-4e15"><a href="//support.wattpad.com" data-webtasks-id="241019f0-2ac8-41fb">Help</a></li>
<li data-webtasks-id="41939470-32f9-4b7b">
<a class="on-navigate" href="/settings" data-webtasks-id="0835940e-ea4f-49f9">Settings</a>
</li>
<li data-webtasks-id="a71545fe-704a-4bf3"><a href="/logout" class="on-logout" data-webtasks-id="84c602fa-8718-43b9">Log Out</a></li>
</ul>
</div>
</div>
</div>
</div>
<div id="react-client-root" data-webtasks-id="ab054daf-d595-4d00"></div>
<div id="app-container" data-webtasks-id="eb096da0-7407-45f0">
<div data-webtasks-id="8d511857-073d-4f2e"><section id="writer-navigation-container" class="clearfix" data-webtasks-id="0ca13bc2-a765-46ef">
<div id="writer-navigation" class="writer-navigation" data-webtasks-id="36cbfaf5-ff67-4ab1">
<button class="btn btn-text btn-works-item-details on-works-item-details" aria-label="Go back to Story Details" data-webtasks-id="beed5b2e-8a1c-4c6b"><span class="fa fa-left fa-wp-neutral-2 " aria-hidden="true" style="font-size:24px;" data-webtasks-id="7a365a25-b4ed-49fe"></span></button>
<div class="navbar-story-metadata dropdown" data-webtasks-id="eaa201f3-8bf8-4ef8">
<a class="cover" data-webtasks-id="438d1229-1100-4b7b">
<img src="https://img.wattpad.com/cover/347185120-64-ke01bc4.jpg" alt="Whispers of the Soul. by Webtask" data-webtasks-id="85b457a8-3214-436f">
</a>
<div class="navbar-story-parts dropdown-toggle" data-toggle="dropdown" data-webtasks-id="c0ef31f1-f8ce-44df">
<p class="small group-title" data-webtasks-id="cc475aad-ff6a-4505">Whispers of the Soul.<span class="fa fa-down fa-wp-neutral-2 " aria-hidden="true" style="font-size:15px;" data-webtasks-id="aa42027c-f327-43bd"></span></p>
<p class="h4 story-part-title" data-webtasks-id="02588062-ba87-4a64">Whispers in the Wind.</p>
<span class="small" data-webtasks-id="bf26360a-ebcc-44bf">
Draft
</span>
<span class="word-count small" data-webtasks-id="78dae7fb-dd38-4970">(28 Words)</span>
<span class="save-indicator small" data-webtasks-id="13eda7e0-2e2b-4ea5"><span class="fa fa-loading fa-spin fa-wp-base-2 fix-spinner-position" aria-hidden="true" style="font-size:16px;" data-webtasks-id="a3deee72-072e-4b8c"></span> Saving...</span>
</div>
<div class="triangle" data-webtasks-id="1f9ce28d-c148-44eb"></div>
<ul class="dropdown-menu" data-webtasks-id="b78be057-d539-4252">
<div class="story-parts-wrapper" data-webtasks-id="e03fd56f-b29a-45a0">
<li class="story-part" data-part="1364490725" data-webtasks-id="55ab0e1b-8c43-4656">
<a class="story-part-link" href="/myworks/347185120/write/1364490725" data-webtasks-id="179d34c5-cef8-4066">
<span class="fa fa-check fa-wp-base-2 pull-right " aria-hidden="true" style="font-size:16px;" data-webtasks-id="5e5b5963-211c-44a8"></span>
<div class="part-title story-part-title" data-webtasks-id="0a5d7a18-2a35-4583">Whispers in the Wind.</div>
<div class="part-meta" data-webtasks-id="3845449a-dc23-4100">
<span class="publish-state" data-webtasks-id="4fa54e36-2920-4ca9">
Draft
</span>
<span data-webtasks-id="28a9562b-7257-4115"> - Jul 20, 2023</span>
</div>
</a>
</li>
</div>
<li class="newpart-wrapper" data-webtasks-id="aeca76cb-6a9a-4a19"><button class="btn btn-orange on-newpart" data-webtasks-id="96e6ab64-f8e9-492c"><span class="fa fa-plus fa-wp-neutral-5 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="474e09db-55da-4105"></span> New Part</button>
</li></ul>
</div>
<div class="connection-problems hidden" data-webtasks-id="b777db2b-fd3e-41cd">Trying to reconnect. Please check your Internet connection.</div>
<div class="actions pull-right writer-options" data-webtasks-id="8b8fb688-b8d5-40ef">
<div class="component-wrapper" id="component-editworksbuttons-edit-my-works-buttons-%2fmyworks%2f347185120%2fwrite%2f1364490725" data-webtasks-id="89a41d95-c48f-4d6c"><div class="button-container" data-webtasks-id="0eb0c64d-98fe-43d3"><button class="btn publish-btn" data-webtasks-id="afde29a4-7139-4470">Publish</button><button class="btn__Qzch5 title-sm secondary_btn__Ae3Vl" data-webtasks-id="2e858eec-a76b-49d3">Save</button><button class="btn__Qzch5 title-sm secondary_btn__Ae3Vl" data-webtasks-id="e74455d8-b25e-4fb6">Preview</button></div></div>
<div class="component-wrapper" id="component-publishmodal-publish-modal-%2fmyworks%2f347185120%2fwrite%2f1364490725" data-webtasks-id="20683f45-34fa-448c"></div>
<button id="story-settings" class="btn btn-grey on-show-settings" aria-label="Show story settings menu" data-webtasks-id="7e1a7ab7-f765-4e2e"><span class="fa fa-more fa-wp-neutral-2 " aria-hidden="true" style="font-size:24px;" data-webtasks-id="312e5d9d-5e82-4327"></span></button>
<div class="popover bottom faded story-settings-menu" data-webtasks-id="9c92d68d-6984-4989">
<div class="arrow" data-webtasks-id="f35bde86-0bf2-4920"></div>
<div class="popover-content" data-webtasks-id="8e1d0f53-84f7-4075">
<div class="menu-item not-available" data-webtasks-id="a13c97b5-c3ea-46df">
<div class="action-label" data-webtasks-id="17e9da13-58d9-4bdb">
<h6 data-webtasks-id="0bae54fc-0272-4e63">Dedication</h6>
<span class="x-small text-muted" data-webtasks-id="8dc4d11b-9fed-4e68">Dedicate your story to a friend</span>
</div>
<div class="action" data-webtasks-id="72395f1d-6d41-4427">
<button class="btn btn-grey on-dedication" data-webtasks-id="bad91938-d527-4f95">Add</button>
</div>
</div>
<div class="menu-item" data-webtasks-id="4c125236-f761-48a2">
<div class="action-label" data-webtasks-id="bf3b9802-63c8-4167">
<h6 data-webtasks-id="4afb5f92-1c03-4349">Time Setting</h6>
<span class="x-small text-muted" data-webtasks-id="397867a3-4b54-46db">When does this part of your story take place?</span>
<a class="x-small" href="https://support.wattpad.com/hc/en-us/articles/360027663651-Add-a-Time-Setting-to-a-Story" target="_blank" data-webtasks-id="358ee514-2902-45d8">Learn More</a>
</div>
<select id="time-setting" data-webtasks-id="e93d547a-0862-4334">
<option value="" hidden="" data-webtasks-id="4660dfd8-03df-4f8c">Select a Time</option>
<option value="over_100_years_ago" data-webtasks-id="b2f69830-88a4-4d5b">Far Past (over 100 years ago)</option>
<option value="within_100_years_ago" data-webtasks-id="46134c3b-018b-4931">Near Past (within 100 years ago)</option>
<option value="present_time" data-webtasks-id="d373c7b6-0772-4a20">Present Time</option>
<option value="within_100_years_from_now" data-webtasks-id="e846b335-e57c-4c50">Near Future (within 100 years from now)</option>
<option value="over_100_years_from_now" data-webtasks-id="1da6eeca-dd11-42c7">Far Future (over 100 years from now)</option>
<option value="alternate_time" data-webtasks-id="be83fd3b-4d12-476b">Alternate Time</option>
</select>
</div>
<div class="menu-item" data-webtasks-id="64ccffd5-c0cd-44d4">
<div class="action-label" data-webtasks-id="9ee2b501-d78f-4a57">
<h6 data-webtasks-id="f734e649-d238-44b9">External link</h6>
</div>
<div class="action" data-webtasks-id="d3ca2665-2e6f-466f">
<button class="btn btn-grey on-external-link" data-webtasks-id="23246ff6-92a4-49d4">Add</button>
</div>
</div>
<div class="menu-item" data-webtasks-id="6c6692a4-7112-4b55">
<div class="action-label" data-webtasks-id="8cd8d4ff-a4ff-4d88">
<h6 data-webtasks-id="859b10b3-b269-4640">Revisions</h6>
<span class="x-small text-muted" data-webtasks-id="5a64284e-8406-4830">Restore a previous version of this story part</span>
</div>
<div class="action" data-webtasks-id="4de8d1d3-f388-4235">
<button class="btn btn-grey on-revision-history" data-webtasks-id="8ac68858-848e-406e">View</button>
</div>
</div>
<div class="menu-item delete-part on-delete-part" data-webtasks-id="f22f134d-6a39-4567">
<a href="" data-webtasks-id="a1e00993-985d-4602">Delete this part</a>
</div>
</div>
</div>
<div class="popover bottom faded revision-list center-text" data-webtasks-id="5605e535-e3f3-42f8">
<span class="fa fa-loading fa-spin fa-wp-neutral-2 loading-spinner fa-spin-fix-position" aria-hidden="true" style="font-size:16px;" data-webtasks-id="32a7dc47-df70-4ab8"></span>
<span data-webtasks-id="9c6f3fc9-c99b-47da"> Loading ...</span>
</div>
</div>
</div>
</section>
<section id="writer-media-container" class="has-spacer" data-webtasks-id="b27bc10e-62cf-40d7"><div class="media-container" data-webtasks-id="360ab6c5-d006-4bda"> <div class="media-wrapper" data-webtasks-id="c4020d05-c308-445b">
<div class="hover-wrapper" data-webtasks-id="99c296f0-a71a-4529">
<div class="background-lg media background" data-webtasks-id="a2732858-f2c3-4b27">
<div class="btn-group media-buttons" role="group" data-webtasks-id="8114f8ce-37e6-4afa">
<button type="button" class="btn btn-white btn-lg btn-writer-media on-add-image" aria-label="Insert image" data-webtasks-id="148cafae-e020-44c0"><span class="fa fa-image fa-wp-neutral-2 " aria-hidden="true" style="font-size:36px;" data-webtasks-id="31dafff5-e3c2-47b9"></span></button>
<button type="button" class="btn btn-white btn-lg btn-writer-media on-add-video" aria-label="Insert YouTube video" data-webtasks-id="121379f3-d952-481f"><span class="fa fa-video fa-wp-neutral-2 " aria-hidden="true" style="font-size:36px;" data-webtasks-id="c2882ef5-318e-4f15"></span></button>
</div>
<div class="media-fields" data-webtasks-id="a56d7267-ba17-4e82">
<div class="input-group input-group-lg photo-url hide" data-webtasks-id="ccddad1d-9204-4ee3">
<input type="text" name="photoURL" class="photo-url-field form-control" value="" placeholder="Paste image URL" spellcheck="false" data-ms-editor="true" data-webtasks-id="7fe7be56-43c8-4d25">
<span class="input-group-btn" data-webtasks-id="5bb9abf6-ceec-442b">
<button class="btn btn-grey on-submit-photo" type="button" data-webtasks-id="b3863843-53c1-4892">Add</button>
</span>
</div>
<div class="input-group input-group-lg video-url hide" data-webtasks-id="17850f25-4f26-441c">
<input type="text" name="videoURL" class="video-url-field form-control" value="" placeholder="Paste YouTube URL" spellcheck="false" data-ms-editor="true" data-webtasks-id="d6f875bf-8608-4e27">
<span class="input-group-btn" data-webtasks-id="7d85104a-5fd2-4763">
<button class="btn btn-grey on-submit-video" type="button" data-webtasks-id="dd09c9e3-6b75-4422">Add</button>
</span>
<span class="input-group-btn" data-webtasks-id="0a6aad2a-ee14-4207">
<button class="btn btn-grey media-fields-underlay on-cancel" type="button" data-webtasks-id="1ddcdda9-f159-4e7a">Cancel</button>
</span>
</div>
</div>
<ol class="carousel-indicators" data-webtasks-id="208dfcf2-164b-4c94">
<li class="icon-container" data-webtasks-id="b56b8c26-8e90-443e"><span class="fa fa-flag fa-wp-neutral-3 on-report-image-banner " aria-hidden="true" style="font-size:12px;" data-webtasks-id="18435e2f-da40-403b"></span></li>
<li class="icon-container" data-webtasks-id="519b0d59-b3c4-4077">
<a href="" class="social-share" id="share-header-media-facebook" data-gtm-action="shareinlinemedia:facebook" data-share-channel="facebook" target="_blank" title="Share on Facebook" data-webtasks-id="254eb976-6fcf-4af8">
<span class="fa fa-facebook fa-wp-neutral-5 on-share-image-banner facebook " aria-hidden="true" style="font-size:12px;" data-webtasks-id="5dc64227-b60c-424d"></span>
</a>
</li>
<li class="icon-container" data-webtasks-id="652a402a-efb1-4a71">
<a href="" class="social-share" id="share-header-media-pinterest" data-gtm-action="shareinlinemedia:pinterest" data-share-channel="pinterest" target="_blank" title="Share on Pinterest" data-webtasks-id="8da197db-0b4a-417f">
<span class="fa fa-pinterest fa-wp-neutral-5 on-share-image-banner pinterest " aria-hidden="true" style="font-size:12px;" data-webtasks-id="f5fe4ed2-f4ed-4494"></span>
</a>
</li>
</ol>
</div>
</div>
<div class="file-upload hidden" data-webtasks-id="0ca8b8d2-1d06-4121">
<input accept=".jpeg,image/jpeg, image/png, image/gif" type="file" name="file" data-webtasks-id="a2f72848-35e4-483f">
</div>
<div class="media-fields-underlay" data-webtasks-id="cd6f1195-0a54-4b9f"></div>
</div>
</div></section>
<section id="writer-editor-container" data-webtasks-id="7e9f911c-28eb-4d7c"><div id="writer-editor" data-webtasks-id="9c6f37eb-a43a-4519"><h2 id="story-title" contenteditable="true" spellcheck="false" data-ms-editor="true" data-webtasks-id="a84ef01f-3546-404c">Whispers in the Wind.</h2>
<div class="story-editor medium-editor-element" role="textbox" aria-label="Write your story" aria-multiline="true" contenteditable="true" spellcheck="false" data-medium-editor-element="true" data-medium-editor-editor-index="1" medium-editor-index="a8a5cac8-9d0a-7159-3c72-822cae39ecfc" data-placeholder="Type your text" data-ms-editor="true" data-webtasks-id="9bde7292-4f38-4417" data-event-id="49" listener="false"><div data-webtasks-id="3193da3c-2ada-4bd4">Whispers in the wind, </div><div data-webtasks-id="3916110a-a827-4603">A dance of words unseen, </div><div data-webtasks-id="da6ded6b-56f2-4648">Emotions unfurling, </div><div data-webtasks-id="6e6fb48f-c102-4fec">In the spaces between.</div><p data-webtasks-id="30175562-3bb0-445d"><br data-webtasks-id="6ce10a34-a5af-4f14"></p><div data-webtasks-id="f891fa51-2f3e-43a7">Love's tender embrace, </div><div data-webtasks-id="1b3c3d1b-5982-42bc">Or heartache's bitter sting, </div><div data-webtasks-id="7c679f83-8aac-499e">In verses, they're woven, </div><div data-webtasks-id="91d7d6a5-646e-4449">A poet's offering.</div><p data-webtasks-id="62ffdefe-6069-493c"><br data-webtasks-id="939360b9-eeb7-4b11"></p><p data-webtasks-id="e7dc9463-7ec5-4f6a"><br data-webtasks-id="a49916bd-301c-4818"></p><p data-webtasks-id="84a43ed4-0afc-4923"><br data-webtasks-id="b188f153-d474-45c0"></p><p data-webtasks-id="a9560c5b-37cf-4b1b"><br data-webtasks-id="ac6acd85-b499-4b10"></p><p data-webtasks-id="ab63c290-db97-4229"><br data-webtasks-id="20d2fffc-5b3a-4733"></p><p data-webtasks-id="c5dd14b3-0686-48ce"><br data-webtasks-id="19a1d24c-4bf6-419b"></p><p data-webtasks-id="fe056920-e76d-4f15"><br data-webtasks-id="6b3043e3-0082-4d8f"></p><p data-webtasks-id="4a3bc683-7514-4add"><br data-webtasks-id="1ba69c87-e55c-42f5"></p><p data-webtasks-id="fd5bd62a-5b37-43d1"><br data-webtasks-id="c91951b9-b1e8-4cd0"></p><p data-webtasks-id="d9527c27-8850-44dc"><br data-webtasks-id="10989a40-796b-425a"></p><p data-webtasks-id="fa929024-ace4-4246"><br data-webtasks-id="5d614a1e-b8c4-44b4"></p></div>
<div class="mentioner-container hidden" data-webtasks-id="b336dea5-5c02-4a8d">
<span class="title" data-webtasks-id="b6798632-730e-4603">@</span><input class="input mentioner-input" type="text" placeholder="mention a user" spellcheck="false" data-ms-editor="true" data-webtasks-id="7fcaeac0-2360-4f85">
</div>
<div class="video-url-container hidden" data-webtasks-id="0b0adaeb-0825-4a11">
<input class="input video-input" type="text" placeholder="Paste YouTube URL" spellcheck="false" data-ms-editor="true" data-webtasks-id="a9673a48-3be6-43c4">
</div>
<div class="story-media-picker" data-webtasks-id="89a5adf3-b887-4a67" style="left: 319.6px; top: 424.8px;">
<button type="button" class="btn btn-white on-add-image" aria-label="Insert image" data-webtasks-id="be775b7f-2812-4ac4"><span class="fa fa-image fa-wp-neutral-2 " aria-hidden="true" style="font-size:24px;" data-webtasks-id="8d9af088-d0ba-431f"></span></button>
<div class="popover writer-tooltip fade bottom in hidden" role="tooltip" id="inline-media-tooltip" style="top: 25px; left: -139.5px; display: block;" data-webtasks-id="8ebd0af0-c11c-4d78"><div class="arrow" data-webtasks-id="e4b167d3-668f-4c9a"></div><h3 class="popover-title" data-webtasks-id="b2051e43-d166-4077">Add in-line media</h3><div class="popover-content" data-webtasks-id="7d6fb1cd-f2c3-40fc"><div class="main-content" data-webtasks-id="ed40cf0a-ae1f-4643">Bring your story to life by adding multimedia.<div class="secondary-content" data-webtasks-id="68cf163b-37c0-49d9">Must be in PNG, GIF, or JPG format, smaller than 2MB. Recommended cover dimensions: 512x800 pixels.</div></div><div class="tooltip-footer" data-webtasks-id="2d7d8c29-c7b2-4f14"><a href="" data-webtasks-id="5cf04f04-89e9-4343">Learn More</a><button class="btn btn-orange on-okay image-tooltip-ok" data-webtasks-id="cca864d1-3c57-4ac0">OK</button></div></div></div>
<button type="button" class="btn btn-white on-add-video" aria-label="Insert YouTube video" data-webtasks-id="d06c21d1-8288-48fe"><span class="fa fa-video fa-wp-neutral-2 " aria-hidden="true" style="font-size:24px;" data-webtasks-id="f39641b9-d08c-47d8"></span></button>
</div>
<div class="file-upload hidden" data-webtasks-id="401c90fe-e7b0-4db2">
<input accept=".jpeg,image/jpeg, image/png, image/gif" type="file" name="file" data-webtasks-id="753b74b7-2d01-4749">
</div>
<div id="story-image-layout-toggle" class="medium-editor-toolbar medium-toolbar-arrow-under" data-webtasks-id="2d00aeb4-f202-4158" style="visibility: hidden;">
<ul class="medium-editor-toolbar-actions" style="display:block;" data-webtasks-id="aae4c9d2-776b-4c3c">
<li data-webtasks-id="e892edab-d887-4e3e">
<button class="medium-editor-action medium-editor-action-bold medium-editor-button-first" data-webtasks-id="496c40ba-89d7-42e2">
<span class="fa fa-single-image fa-wp-base-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="f2302735-9f23-463a"></span>
</button>
</li>
<li data-webtasks-id="868216e5-94ca-461f">
<button class="medium-editor-action medium-editor-action-bold medium-editor-button-last on-add-second-image" data-webtasks-id="60679b24-40ed-43ca">
<span class="fa fa-single-image fa-wp-neutral-5 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="f24dad5e-88cb-4246"></span>
<span class="fa fa-double-image fa-wp-neutral-5 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="83be010b-c1da-44f0"></span>
</button>
</li>
</ul>
</div>
<span id="image-placeholder" class="hidden" data-webtasks-id="b0303a09-81a2-4f3d"><span class="fa fa-plus fa-wp-neutral-2 " aria-hidden="true" style="font-size:48px;" data-webtasks-id="72d470ae-ecab-462a"></span></span>
</div><div id="medium-editor-anchor-preview-1" class="medium-editor-anchor-preview" data-webtasks-id="4c9de41f-f605-4e19"><div class="medium-editor-toolbar-anchor-preview" id="medium-editor-toolbar-anchor-preview" data-webtasks-id="762871e1-324a-491d"> <a class="medium-editor-toolbar-anchor-preview-inner" data-webtasks-id="eefa3625-3506-4b32"></a></div></div><div id="medium-editor-toolbar-1" class="medium-editor-toolbar medium-editor-stalker-toolbar" data-webtasks-id="b7704eab-6c40-4921"><ul id="medium-editor-toolbar-actions1" class="medium-editor-toolbar-actions" data-webtasks-id="e17129a8-69a8-468e" style="display: block;"><li data-webtasks-id="b51b8b54-0792-4767"><button class="medium-editor-action medium-editor-action-bold medium-editor-button-first" data-action="bold" title="bold" aria-label="bold" data-webtasks-id="c235dad1-57fa-4e64"><span class="fa fa-bold fa-wp-base-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="d4cfe6a3-8494-4be3"></span></button></li><li data-webtasks-id="d25229de-ab39-4fc8"><button class="medium-editor-action medium-editor-action-italic" data-action="italic" title="italic" aria-label="italic" data-webtasks-id="14547193-0abb-48d8"><span class="fa fa-italic fa-wp-base-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="51462926-e1ed-441c"></span></button></li><li data-webtasks-id="eb242b04-64fb-4f19"><button class="medium-editor-action medium-editor-action-underline" data-action="underline" title="underline" aria-label="underline" data-webtasks-id="a35e2852-61ce-4d75"><span class="fa fa-underline fa-wp-base-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="86a923a1-dad2-4f0f"></span></button></li><li data-webtasks-id="a333e1d3-6ef7-493e"><button class="medium-editor-action medium-editor-action-justifyLeft" data-action="justifyLeft" title="left justify" aria-label="left justify" data-webtasks-id="4bb34085-88fb-4f05"><span class="fa fa-left-aligned fa-wp-base-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="67e5e211-7be0-438d"></span></button></li><li data-webtasks-id="fad881cf-1e2a-47f5"><button class="medium-editor-action medium-editor-action-justifyCenter" data-action="justifyCenter" title="center justify" aria-label="center justify" data-webtasks-id="5afdccd9-1718-4136"><span class="fa fa-centered fa-wp-base-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="f3649076-5057-414b"></span></button></li><li data-webtasks-id="e34aca0b-9075-4e99"><button class="medium-editor-action medium-editor-action-justifyRight medium-editor-button-last" data-action="justifyRight" title="right justify" aria-label="right justify" data-webtasks-id="48f59b00-5b95-428a"><span class="fa fa-right-aligned fa-wp-base-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="56b39bd3-b55c-448b"></span></button></li></ul></div></section>
<section id="writer-message-container" class="hidden" data-webtasks-id="69995ec3-983c-40a3">
<div class="message revision-restored" data-webtasks-id="7c6284ef-facc-40b8">
<span class="fa-stack fa-lg" data-webtasks-id="dc263112-d7a2-482c">
<span class="fa fa-wp-neutral-5 fa-circle-filled fa-stack-2x" data-webtasks-id="252a0699-f2e2-49a8"></span>
<span class="fa fa-stack-1x fa-check" data-webtasks-id="c6c953f8-6166-457e"></span>
</span>
Revision restored
</div>
<div class="message message-modal uploads-incomplete" data-webtasks-id="f7fde3ba-fa28-47be">
<h4 data-webtasks-id="9979d180-cd66-4899">Images are still uploading</h4>
Some of your images are still uploading and are not in your story yet.
<div class="center-text" data-webtasks-id="01ecc41b-a72d-4591">
<button class="btn btn-orange on-dismiss-notification" data-webtasks-id="5651595e-c7f9-4df9">Return to editor</button>
<button class="btn btn-grey on-discard" data-webtasks-id="91cc851b-4808-445f">Discard images</button>
</div>
</div>
</section>
<section id="writer-modal-container" data-webtasks-id="c807c4e7-ad99-4587">
<div id="dedication-modal" tabindex="-1" class="dedicationModal modal fade" aria-labelledby="dedication-modal-label" aria-hidden="true" role="dialog" data-webtasks-id="f6c3a494-4758-4d9a">
<div class="modal-dialog" data-webtasks-id="3c7dc3a5-96e8-4d9b">
<div class="modal-content" data-webtasks-id="3e3ffdbb-030b-4b39">
<header class="modal-header" data-webtasks-id="42c6fd09-04d0-48c3">
<div class="pull-right close" data-dismiss="modal" data-webtasks-id="b2d48c40-14b6-4482">
<span class="fa fa-remove-alt fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="2e07ac28-f0d5-4c40"></span>
</div>
<h2 class="modal-title" id="dedication-modal-label-1364490725" data-webtasks-id="6448132c-b68c-462f">Dedicate this story part to a friend</h2>
</header>
<div class="modal-body" data-webtasks-id="b5a60f16-e272-44d0">
<p data-webtasks-id="45a58e98-2feb-48be">Dedications are a way to thank someone who has impacted your story. <a href="#" data-webtasks-id="6d0e35d3-6b83-4b4d">Learn more</a></p>
<div class="input-group" data-webtasks-id="a820d8a2-9e35-4737">
<input id="dedication-search" class="form-control on-dedication-save" placeholder="Add someone..." name="dedicationSearch" spellcheck="false" data-ms-editor="true" data-webtasks-id="55a0df33-d8f4-45f5">
<div class="input-group-btn" data-webtasks-id="d59c2066-c842-4582">
<button class="btn btn-grey on-save-dedication" type="button" data-webtasks-id="51b46f8d-6501-4cef">Dedicate</button>
</div>
</div>
</div>
<div class="modal-footer" data-webtasks-id="209cce3f-304a-4ad6">
</div>
</div>
</div>
</div>
<div id="external-link-modal" tabindex="-1" class="publishModal modal fade" aria-labelledby="external-link-modal-label" aria-hidden="true" role="dialog" data-webtasks-id="0c3d0293-4c06-4a33">
<div class="modal-dialog" data-webtasks-id="d62c7087-eff4-4e2f">
<div class="modal-content" data-webtasks-id="0f6bd490-c23d-4f04">
<header class="modal-header" data-webtasks-id="6b01b9df-6f63-469e">
<div class="pull-right close" data-dismiss="modal" data-webtasks-id="30b45ebe-31b5-4d4e">
<span class="fa fa-remove-alt fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="2252ab87-751b-4abf"></span>
</div>
<h2 class="modal-title" id="external-link-modal-label" data-webtasks-id="f0845241-9780-48f6">External link</h2>
</header>
<div class="modal-body" data-webtasks-id="5f327c3a-b035-49a1">
<p data-webtasks-id="5e200032-983a-406b">
Add a link for this story part.
</p>
<div class="input-group" data-webtasks-id="c62696e6-7548-4359">
<input id="external-link" class="form-control" placeholder="http://" name="dedicationSearch" value="" spellcheck="false" data-ms-editor="true" data-webtasks-id="cfca1f1a-f5c6-4ca1">
<div class="input-group-btn" data-webtasks-id="e4dddabd-f094-4bde">
<button class="btn btn-grey on-save-external-link" type="button" data-webtasks-id="ddc5cce2-347b-4223">Ok</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="unpublish-part-modal" tabindex="-1" class="modal fade" aria-labelledby="unpublish-part-modal-label" aria-hidden="true" role="dialog" data-webtasks-id="1316dd15-4ffe-4a95">
<div class="modal-dialog" data-webtasks-id="36d2abc5-8f97-4e4c">
<div class="modal-content" data-webtasks-id="10fbd53d-68c0-4f3e">
<header class="modal-header" data-webtasks-id="4e337155-21c6-45ac">
<div class="pull-right close" data-dismiss="modal" data-webtasks-id="31394ca8-7b40-47df">
<span class="fa fa-remove-alt fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="209af7c0-0447-4c43"></span>
</div>
</header>
<div class="modal-body" data-webtasks-id="10bbb13d-618b-4137">
<div class="text-center question-modal" data-webtasks-id="cc50abb8-52f6-4fc6">
<div class="prompt" data-webtasks-id="912940b0-c0c5-43c9">Are you sure you want to unpublish this part?</div>
<button class="btn btn-orange on-do-unpublish-part" data-webtasks-id="cd3a2a2d-8ae0-40f9">Yes, Unpublish this Part</button>
<button class="btn btn-grey" data-dismiss="modal" data-webtasks-id="657002e8-540b-449a">No, Cancel</button>
</div>
</div>
<div class="modal-footer" data-webtasks-id="d844e077-e9c9-4b37">
</div>
</div>
</div>
</div>
<div id="conflict-modal" tabindex="-1" class="conflictModal modal fade" aria-labelledby="dedication-modal-label" aria-hidden="true" role="dialog" data-webtasks-id="48d1fd6d-5417-4bcf">
<div class="modal-dialog" data-webtasks-id="799c5f62-07a0-4452">
<div class="modal-content" data-webtasks-id="af9e1350-c1a8-4db8">
<header class="modal-header" data-webtasks-id="9f685d90-0ac1-4feb">
<div class="pull-right close" data-dismiss="modal" data-webtasks-id="6595b21f-e72d-447e">
<span class="fa fa-remove-alt fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="04a1a5d2-f95b-4b17"></span>
</div>
<h3 data-webtasks-id="628da159-2e4a-4a3d">Resolve Conflict</h3>
</header>
<div class="modal-body" data-webtasks-id="29adf0b3-23ab-4cff">
<p data-webtasks-id="a8bf6b1f-231e-4102">You've saved a newer version of this story part from somewhere else. Which one would you like to keep?</p>
</div>
<div class="modal-footer" data-webtasks-id="55afe166-4365-42b5">
<div data-webtasks-id="ee5fcaf5-e978-408c">
<button class="btn btn-orange on-keep-current" data-webtasks-id="a02f6c27-9dfd-4ffd">Keep this version</button>
<button class="btn btn-grey on-load-latest" data-webtasks-id="089bf461-9b61-428e">Replace this version</button>
</div>
</div>
</div>
</div>
</div>
<div id="unsaved-changes-modal" tabindex="-1" class="unsavedChangesModal modal fade" aria-labelledby="dedication-modal-label" aria-hidden="true" role="dialog" data-webtasks-id="6c7dd168-aad7-4be4">
<div class="modal-dialog" data-webtasks-id="769b6703-82ad-4b62">
<div class="modal-content" data-webtasks-id="84560824-8870-48f3">
<header class="modal-header" data-webtasks-id="e124261e-aa9b-4b13">
<div class="pull-right close" data-dismiss="modal" data-webtasks-id="9c378e9b-158c-45d7">
<span class="fa fa-remove fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="6190027a-e274-4703"></span>
</div>
<h3 data-webtasks-id="ee30d87e-0335-412c">Save Changes?</h3>
</header>
<div class="modal-body" data-webtasks-id="3bc559de-ae7c-422d">
<p data-webtasks-id="b528bce8-a213-4da2">You have unsaved changes. Would you like to save?</p>
</div>
<div class="modal-footer" data-webtasks-id="791bd497-c45f-4316">
<div data-webtasks-id="4381e542-a16f-4770">
<button class="btn btn-grey on-discard-changes" data-webtasks-id="c646d7a6-8575-4949">Discard changes</button>
<button class="btn btn-orange on-save-and-navigate" data-webtasks-id="0db4aa1d-c5df-4860">Save changes</button>
</div>
</div>
</div>
</div>
</div>
</section>
</div></div>
<footer id="footer-container" data-webtasks-id="9706e47e-d6eb-4d64">
<div id="footer" data-webtasks-id="2b6868cb-7c3b-4e0e">
<ul class="footer-list main" aria-label="Footer Links" data-webtasks-id="ecb80990-f8dd-43c0">
<li data-webtasks-id="f9cce474-acb6-4773"><a href="/paidstories" aria-label="Paid Stories" data-webtasks-id="48cc6955-e91a-4675">Paid Stories</a></li>
<li data-webtasks-id="4d63a50e-898e-4098"><a class="on-premium" href="/premium" aria-label="Try Premium" data-webtasks-id="27b0cbfa-5b92-45c9">Try Premium</a></li>
<li data-webtasks-id="6e301aa2-d0d2-4df8"><a href="/getmobile" aria-label="Get the App" data-webtasks-id="91c67ae5-a8f4-4ec6">Get the App</a></li>
<li data-webtasks-id="eb114cb8-db1f-41ce"><a href="/settings/language?jq=true" class="on-language" rel="nofollow" aria-label="Language" data-webtasks-id="93120fcc-82c3-4f0e">Language</a></li>
<li data-webtasks-id="543c7ae6-0735-4d25"><a href="https://creators.wattpad.com/" aria-label="Writers" data-webtasks-id="e47524ae-b105-4625">Writers</a></li>
<li aria-hidden="true" role="none" data-webtasks-id="de3f1926-8628-4484">|</li>
<li data-webtasks-id="aee29f43-7656-4253"><a href="https://brands.wattpad.com" aria-label="Brand Partnerships" data-webtasks-id="af99804b-14b3-4378">Brand Partnerships</a></li>
<li data-webtasks-id="adf63154-49ab-4d32"><a href="https://company.wattpad.com/jobs" aria-label="Jobs" data-webtasks-id="5b2d20d4-20d9-4967">Jobs</a></li>
<li data-webtasks-id="7c25c0e8-27d7-4d5e"><a href="https://company.wattpad.com/press" aria-label="Press" data-webtasks-id="abd6f7d1-451a-4c98">Press</a></li>
</ul>
<ul class="footer-list legal" aria-label="Legal Footer Links" data-webtasks-id="d65147cc-dafa-4dbd">
<li data-webtasks-id="cf4909a4-f73e-4b9f"><a href="/terms" rel="nofollow" aria-label="Terms" data-webtasks-id="67ad2efc-0c47-4d1e">Terms</a></li>
<li data-webtasks-id="8d569409-a0eb-451c"><a href="/privacy" rel="nofollow" aria-label="Privacy" data-webtasks-id="b37c4eb5-5e48-440a">Privacy</a></li>
<li data-webtasks-id="fb56c638-7cac-4e7f"><a href="https://policies.wattpad.com/accessibility" rel="nofollow" aria-label="Accessibility" data-webtasks-id="f7e11d52-2929-4377">Accessibility</a></li>
<li data-webtasks-id="cf3229d8-93b7-45b8"><a href="https://support.wattpad.com" aria-label="Help" data-webtasks-id="f1468c76-c9c4-420f">Help</a></li>
<li data-webtasks-id="ba5b8382-56c9-40b9">© 2023 Wattpad</li>
</ul>
</div>
</footer>
<div id="interstitial-container" class="container" data-webtasks-id="a4578787-6e04-4136"></div>
<div id="toast-container" data-webtasks-id="b5cb8595-6607-49e9"></div>
<div id="react-popover" data-webtasks-id="a90b0faf-11b1-415e"></div>
<div id="ad-bait" class="pub_300x250 pub_300x250m pub_728x90 text-ad textAd text_ad text_ads text-ads text-ad-links" style="display: none;" data-webtasks-id="5fa9a04b-de8a-4af9"> </div>
<script type="text/javascript" data-webtasks-id="e9b30edf-93c2-4044">
window.prefetched = {};
</script>
<script type="text/javascript" data-webtasks-id="8fd5f4ce-41b4-49d7">
(function() {
var wattpad = window.wattpad = ( window.wattpad || {} );
wattpad.avatarSizes = [24, 32, 42, 48, 64, 84, 128, 256];
wattpad.coverSizes = [64, 80, 100, 128, 144, 160, 176, 200, 208, 256, 288, 352, 368, 416, 512];
wattpad.logoSizes = [140, 280, 420];
wattpad.backgroundSizes = [320, 640, 720, 1280, 1920 ];
wattpad.modals = {};
wattpad.utils = {};
wattpad.digitsClientId = 'SPwmeBsZREoxgK6TTaRTgzsrs';
wattpad.googleClientId = '819350800788-s42oc45ge5shd8hkimbj2broh7l6j7h6.apps.googleusercontent.com';
wattpad.instagramClientId = '';
wattpad.apiAuthKey = 'IwKhVmNM7VXhnsVb0BabhS';
wattpad.canvaApiKey = 'gpJZaH8RjnukEBMR5tYrmnsY';
wattpad.apiDomain = 'https://api.wattpad.com';
wattpad.siteRoot = 'https://www.wattpad.com';
wattpad.branchKey = 'key_live_pgerP08EdSp0oA8BT3aZqbhoqzgSpodT';
wattpad.languagePackage = '74b64df1b8745ca10542090b4610442e';
wattpad.userCountryCode = 'IN';
wattpad.userRegion = '';
wattpad.currentYear = '2023';
wattpad.revision = '0f693a103eb26495faec64345f949d3f4c6c7260';
wattpad.pageLoadTimestamp = Date.now();
wattpad.maxTimeSinceAppLoadInHours = 24;
wattpad.testGroups = {"NEW_LANDING":true,"PAID_CONTENT":true,"WATTYS_TAG":true,"BRAND_PARTNERSHIPS":true,"PUBLISHING_SCHEDULER":true,"ADS_DATADOG_METRICS":false,"EMAIL_REVERIFICATION":true,"CAN_VIEW_CCPA":false,"USE_KEVEL":false,"COLLECT_BROWSER_LOGS":false,"USE_33ACROSS":false,"USE_IMAGE_MOD":false,"LANGUAGE_DETECT":false,"EMBED":false,"PROFILE_QUESTS":false,"WRITER_LINKS":false,"WEB_PAYMENTS":false,"WRITERS_PORTAL":true,"GDPR_USER":false,"GDPR_ADS_EXPERIENCE":false,"OUTSTREAM_ELIGIBLE":false,"PAID_ROW_TAG_PAGES":true,"DISABLE_COMMENT_CACHE":false,"BLOCK_MVP":true,"SENTIMENT_SURVEY":false,"SURVEY_DEVELOPMENT":false,"ADDSURVEYGIZMOCOOKIE":false,"ENGLISH_READER":true,"LIVERAMP_ENABLED":false,"CONTEST_TAG":false,"DELAY_ADS":false,"EXCLUDE_PREBID_PARTNERS":false,"NEW_SEARCH_LAYOUT":false,"HYBE_STORY_IDS":true,"SPECIAL_AD_EXEMPT":false,"ENABLE_BLOCKTHROUGH":false,"PAID_PART_CONFIG_ENABLED":false,"CONTINUE_READING":false,"PREBID_BETA":false,"USE_AFP":false,"HFC_LIMIT_INCREASE":false,"WEB_COIN_PURCHASING":false,"NEW_STORY_DETAILS":true};
wattpad.user = {"username":"Webtask","avatar":"https://img.wattpad.com/useravatar/Webtask.128.336719.jpg","isPrivate":false,"backgroundUrl":"","follower":false,"following":false,"name":"Webtasks Navigator","description":"","gender":"Male","language":1,"locale":"en_US","createDate":"2023-07-14T12:11:59Z","location":"","verified":false,"ambassador":false,"facebook":"","twitter":"","website":"","smashwords":"","numStoriesPublished":10,"numFollowing":0,"numFollowers":0,"numLists":1,"verified_email":true,"allowCrawler":true,"birthdate":"1998-01-26T08:00:00Z","is_staff":false,"inbox":{"unread":0,"total":0},"notifications":{"unread":0},"age":25,"email":"[email protected]","beta_enabled":false,"campfire_enabled":true,"new_home_enabled":true,"gemini_enabled":true,"gemini_welcome_story_id":9341306,"gemini_welcome_part_id":296285898,"gemini_welcome_message":"Welcome to your new profile!","gemini_welcome_part_url":"https://www.wattpad.com/296285898-news-updates-august-16th-2016-the-new-wattpad","story_links_enabled":false,"wtg_status":null,"recommendedTags":[],"isMature":true,"has_accepted_latest_tos":true,"appear_offline":0,"show_name":1,"show_age":null,"notificationSettings":{"alerts":1,"alertssub":true,"alertssub_broadcast":false,"subscribe":1},"highlight_colour":"#BDCDD1","html_enabled":false,"wattpad_squad":false,"programs":{"wattpad_stars":false},"externalId":"10e2236e9b647be2e237c8091dd8523bf284db3e","isPremium":false,"id":436173188,"ga":{"logged":"1","created":"20230714","group":"130"},"isSysAdmin":false,"country":"IN","max_parts":200};
wattpad.isModerator = 0;
wattpad.supportedLangs = [{"id":1,"name":"English","translated":true,"locale":"en_US","code":"en","nameEnglish":"English","hreflangCode":"en","selected":true},{"id":2,"name":"Français","translated":true,"locale":"fr_FR","code":"fr","nameEnglish":"French","hreflangCode":"fr"},{"id":3,"name":"Italiano","translated":true,"locale":"it_IT","code":"it","nameEnglish":"Italian","hreflangCode":"it"},{"id":4,"name":"Deutsch","translated":true,"locale":"de_DE","code":"de","nameEnglish":"German","hreflangCode":"de"},{"id":5,"name":"Español","translated":true,"locale":"es_ES","code":"es","nameEnglish":"Spanish","hreflangCode":"es"},{"id":6,"name":"Português","translated":true,"locale":"pt_PT","code":"pt_PT","nameEnglish":"Portugese","hreflangCode":"pt"},{"id":38,"name":"Català","translated":true,"locale":"ca_ES","code":"ca","nameEnglish":"Catalan","hreflangCode":"ca"},{"id":19,"name":"Tiếng Việt","translated":true,"locale":"vi_VN","code":"vi","nameEnglish":"Vietnamese","hreflangCode":"vi"},{"id":18,"name":"Filipino","translated":true,"locale":"tl_PH","code":"tl","nameEnglish":"Tagalog","hreflangCode":"tl"},{"id":20,"name":"Bahasa Indonesia","translated":true,"locale":"id_ID","code":"id","nameEnglish":"Indonesian","hreflangCode":"id"},{"id":22,"name":"Bahasa Melayu","translated":false,"locale":"ms_MY","code":"ms","nameEnglish":"Malay","hreflangCode":"ms"},{"id":32,"name":"ภาษาไทย","translated":false,"locale":"th_TH","code":"th","nameEnglish":"Thai","hreflangCode":"th"},{"id":7,"name":"Русский","translated":true,"locale":"ru_RU","code":"ru","nameEnglish":"Russian","hreflangCode":"ru"},{"id":15,"name":"Română","translated":true,"locale":"ro_RO","code":"ro","nameEnglish":"Romanian","hreflangCode":"ro"},{"id":23,"name":"Türkçe","translated":true,"locale":"tr_TR","code":"tr","nameEnglish":"Turkish","hreflangCode":"tr"},{"id":24,"name":"Česky","translated":true,"locale":"cs_CZ","code":"cs","nameEnglish":"Czech","hreflangCode":"cs"},{"id":14,"name":"Polski","translated":true,"locale":"pl_PL","code":"pl","nameEnglish":"Polish","hreflangCode":"pl"},{"id":28,"name":"Magyar","translated":true,"locale":"hu_HU","code":"hu","nameEnglish":"Hungarian","hreflangCode":"hu"},{"id":30,"name":"ελληνικά","translated":true,"locale":"el_GR","code":"el","nameEnglish":"Greek","hreflangCode":"el"},{"id":35,"name":"Eesti","translated":false,"locale":"et_EE","code":"et","nameEnglish":"Estonian","hreflangCode":"et"},{"id":36,"name":"Latviešu","translated":false,"locale":"lv_LV","code":"lv","nameEnglish":"Latvian","hreflangCode":"lv"},{"id":37,"name":"Lietuvių","translated":false,"locale":"lt_LT","code":"lt","nameEnglish":"Lithuanian","hreflangCode":"lt"},{"id":39,"name":"Босански","translated":false,"locale":"bs_BA","code":"bs","nameEnglish":"Bosnian","hreflangCode":"bs"},{"id":40,"name":"Српски","translated":false,"locale":"sr_CS","code":"sr","nameEnglish":"Serbian","hreflangCode":"sr"},{"id":41,"name":"Hrvatski","translated":false,"locale":"hr_HR","code":"hr","nameEnglish":"Croatian","hreflangCode":"hr"},{"id":43,"name":"Български","translated":false,"locale":"bg_BG","code":"bg","nameEnglish":"Bulgarian","hreflangCode":"bg"},{"id":44,"name":"Slovenčina","translated":true,"locale":"sk_SK","code":"sk","nameEnglish":"Slovak","hreflangCode":"sk"},{"id":42,"name":"Slovenščina","translated":false,"locale":"sl_SI","code":"sl","nameEnglish":"Slovenian","hreflangCode":"sl"},{"id":45,"name":"Беларускі","translated":false,"locale":"be_BY","code":"be","nameEnglish":"Belarusian","hreflangCode":"be"},{"id":46,"name":"Українська","translated":true,"locale":"uk_UA","code":"uk","nameEnglish":"Ukrainian","hreflangCode":"uk"},{"id":26,"name":"Svenska","translated":true,"locale":"sv_SE","code":"sv","nameEnglish":"Swedish","hreflangCode":"sv"},{"id":27,"name":"Norsk","translated":true,"locale":"nn_NO","code":"nn","nameEnglish":"Norwegian","hreflangCode":"nn"},{"id":34,"name":"Suomi","translated":false,"locale":"fi_FI","code":"fi","nameEnglish":"Finnish","hreflangCode":"fi"},{"id":29,"name":"Dansk","translated":true,"locale":"da_DK","code":"da","nameEnglish":"Danish","hreflangCode":"da"},{"id":13,"name":"Nederlands","translated":true,"locale":"nl_NL","code":"nl","nameEnglish":"Dutch","hreflangCode":"nl"},{"id":33,"name":"Íslenska","translated":false,"locale":"is_IS","code":"is","nameEnglish":"Icelandic","hreflangCode":"is"},{"id":12,"name":"简体中文","translated":true,"locale":"zh_CN","code":"zh_CN","nameEnglish":"Simplified Chinese","hreflangCode":"zh-Hans"},{"id":8,"name":"繁體中文","translated":true,"locale":"zh_TW","code":"zh_TW","nameEnglish":"Traditional Chinese","hreflangCode":"zh-Hant"},{"id":9,"name":"日本語","translated":false,"locale":"ja_JP","code":"ja","nameEnglish":"Japanese","hreflangCode":"ja"},{"id":10,"name":"한국어","translated":false,"locale":"ko_KR","code":"ko","nameEnglish":"Korean","hreflangCode":"ko"},{"id":16,"name":"العربية","translated":true,"locale":"ar_EG","code":"ar","nameEnglish":"Arabic","hreflangCode":"ar"},{"id":53,"name":"ગુજરાતી","translated":false,"locale":"gu_IN","code":"gu","nameEnglish":"Gujarati","hreflangCode":"gu"},{"id":17,"name":"עברית","translated":true,"locale":"he_IL","code":"he","nameEnglish":"Hebrew","hreflangCode":"he"},{"id":21,"name":"हिन्दी","translated":true,"locale":"hi_IN","code":"hi","nameEnglish":"Hindi","hreflangCode":"hi"},{"id":25,"name":"മലയാളം","translated":false,"locale":"ml_IN","code":"ml","nameEnglish":"Malayalam","hreflangCode":"ml"},{"id":54,"name":"ଓଡ଼ିଆ","translated":false,"locale":"or_IN","code":"or","nameEnglish":"Oriya","hreflangCode":"or"},{"id":31,"name":"فارسی","translated":false,"locale":"fa_IR","code":"fa","nameEnglish":"Persian","hreflangCode":"fa"},{"id":55,"name":"ਪੰਜਾਬੀ","translated":false,"locale":"pa_IN","code":"pa","nameEnglish":"Punjabi","hreflangCode":"pa"},{"id":56,"name":"অসমীয়া","translated":false,"locale":"as_IN","code":"as","nameEnglish":"Assamese","hreflangCode":"as"},{"id":47,"name":"বাংলা","translated":false,"locale":"bn_BD","code":"bn","nameEnglish":"Bengali","hreflangCode":"bn"},{"id":48,"name":"اُردُو","translated":false,"locale":"ur_PK","code":"ur","nameEnglish":"Urdu","hreflangCode":"ur"},{"id":49,"name":"தமிழ்","translated":false,"locale":"ta_IN","code":"ta","nameEnglish":"Tamil","hreflangCode":"ta"},{"id":50,"name":"Kiswahili","translated":false,"locale":"sw_TZ","code":"sw","nameEnglish":"Swahili","hreflangCode":"sw"},{"id":51,"name":"Afrikaans","translated":false,"locale":"af_ZA","code":"af","nameEnglish":"Afrikaans","hreflangCode":"af"},{"id":57,"name":"मराठी","translated":false,"locale":"mr_IN","code":"mr","nameEnglish":"Marathi","hreflangCode":"mr"},{"id":11,"name":"Other","translated":false,"locale":null,"code":"en","nameEnglish":"Other","hreflangCode":"en"}];
wattpad.translatedLangs = [{"id":1,"name":"English","translated":true,"locale":"en_US","code":"en","nameEnglish":"English","hreflangCode":"en","selected":true},{"id":2,"name":"Français","translated":true,"locale":"fr_FR","code":"fr","nameEnglish":"French","hreflangCode":"fr"},{"id":3,"name":"Italiano","translated":true,"locale":"it_IT","code":"it","nameEnglish":"Italian","hreflangCode":"it"},{"id":4,"name":"Deutsch","translated":true,"locale":"de_DE","code":"de","nameEnglish":"German","hreflangCode":"de"},{"id":5,"name":"Español","translated":true,"locale":"es_ES","code":"es","nameEnglish":"Spanish","hreflangCode":"es"},{"id":6,"name":"Português","translated":true,"locale":"pt_PT","code":"pt_PT","nameEnglish":"Portugese","hreflangCode":"pt"},{"id":38,"name":"Català","translated":true,"locale":"ca_ES","code":"ca","nameEnglish":"Catalan","hreflangCode":"ca"},{"id":19,"name":"Tiếng Việt","translated":true,"locale":"vi_VN","code":"vi","nameEnglish":"Vietnamese","hreflangCode":"vi"},{"id":18,"name":"Filipino","translated":true,"locale":"tl_PH","code":"tl","nameEnglish":"Tagalog","hreflangCode":"tl"},{"id":20,"name":"Bahasa Indonesia","translated":true,"locale":"id_ID","code":"id","nameEnglish":"Indonesian","hreflangCode":"id"},{"id":7,"name":"Русский","translated":true,"locale":"ru_RU","code":"ru","nameEnglish":"Russian","hreflangCode":"ru"},{"id":15,"name":"Română","translated":true,"locale":"ro_RO","code":"ro","nameEnglish":"Romanian","hreflangCode":"ro"},{"id":23,"name":"Türkçe","translated":true,"locale":"tr_TR","code":"tr","nameEnglish":"Turkish","hreflangCode":"tr"},{"id":24,"name":"Česky","translated":true,"locale":"cs_CZ","code":"cs","nameEnglish":"Czech","hreflangCode":"cs"},{"id":14,"name":"Polski","translated":true,"locale":"pl_PL","code":"pl","nameEnglish":"Polish","hreflangCode":"pl"},{"id":28,"name":"Magyar","translated":true,"locale":"hu_HU","code":"hu","nameEnglish":"Hungarian","hreflangCode":"hu"},{"id":30,"name":"ελληνικά","translated":true,"locale":"el_GR","code":"el","nameEnglish":"Greek","hreflangCode":"el"},{"id":44,"name":"Slovenčina","translated":true,"locale":"sk_SK","code":"sk","nameEnglish":"Slovak","hreflangCode":"sk"},{"id":46,"name":"Українська","translated":true,"locale":"uk_UA","code":"uk","nameEnglish":"Ukrainian","hreflangCode":"uk"},{"id":26,"name":"Svenska","translated":true,"locale":"sv_SE","code":"sv","nameEnglish":"Swedish","hreflangCode":"sv"},{"id":27,"name":"Norsk","translated":true,"locale":"nn_NO","code":"nn","nameEnglish":"Norwegian","hreflangCode":"nn"},{"id":29,"name":"Dansk","translated":true,"locale":"da_DK","code":"da","nameEnglish":"Danish","hreflangCode":"da"},{"id":13,"name":"Nederlands","translated":true,"locale":"nl_NL","code":"nl","nameEnglish":"Dutch","hreflangCode":"nl"},{"id":12,"name":"简体中文","translated":true,"locale":"zh_CN","code":"zh_CN","nameEnglish":"Simplified Chinese","hreflangCode":"zh-Hans"},{"id":8,"name":"繁體中文","translated":true,"locale":"zh_TW","code":"zh_TW","nameEnglish":"Traditional Chinese","hreflangCode":"zh-Hant"},{"id":16,"name":"العربية","translated":true,"locale":"ar_EG","code":"ar","nameEnglish":"Arabic","hreflangCode":"ar"},{"id":17,"name":"עברית","translated":true,"locale":"he_IL","code":"he","nameEnglish":"Hebrew","hreflangCode":"he"},{"id":21,"name":"हिन्दी","translated":true,"locale":"hi_IN","code":"hi","nameEnglish":"Hindi","hreflangCode":"hi"}];
wattpad.experiments = {};
wattpad.harm = [{"words":["suicide","depression","depressed","cut","cuts","cutting","selfharm","self harm","self-harm","I want to die","I want to kill myself","howtokillmyself","killmyself","killthemself","howtodie","killme","killyourself","bluewhale","cutmyself","howtoselfharm","howtosuicide","suicidenote","unalivemyself","hurtmyself","howtocut"],"message":["If you are struggling with thoughts of self-harm or suicide, help is available. Some online trends are harmful. Remember to think critically about what you see online so that you stay safe.%s Don't hesitate to reach out for help: %s, %s","<br/><br/>","<a href=\"https://support.wattpad.com/hc/en-us/articles/200774284-Counseling-and-Prevention-Resources\" target=\"_blank\" rel=\"noopener noreferrer\">https://support.wattpad.com/hc/en-us/articles/200774284-Counseling-and-Prevention-Resources</a>","<a href=\"https://safetyportal.wattpad.com\" target=\"_blank\" rel=\"noopener noreferrer\">https://safetyportal.wattpad.com</a>"]},{"words":["pro-ana","proana","anorexia","anorexic","bulimia","bulimic","thinspo","thinspiration","promia","eatingdisorder","weightdiary","meanspo"],"message":["If you or someone you know is struggling with an eating disorder or weight issues, please know that help is available.%s For residents in the U.S., contact the National Eating Disorders Association Helpline at 1-800-931-2237 (%s).%s For residents in Canada, contact 1-866-633-4220 (%s).%s Help for other countries can be found at %s.","<br/><br/>","<a href=\"http://www.nationaleatingdisorders.org\" target=\"_blank\" rel=\"noopener noreferrer\">www.nationaleatingdisorders.org</a>","<br/><br/>","<a href=\"http://www.nedic.ca\" target=\"_blank\" rel=\"noopener noreferrer\">www.nedic.ca</a>","<br/><br/>","<a href=\"http://w.tt/1csPgyo\" target=\"_blank\" rel=\"noopener noreferrer\">http://w.tt/1csPgyo</a>"]},{"words":["abuse","abusive","abusivecontent","abusivemarriage","abusiverelationship","beastality","child exploitation","child porn","child pornography","child-exploitation","child-porn","child-pornography","childexploitation","childporn","childpornography","daddykink","daddysgirl","ddlg","dubcon","dubiousconsent","forced","forcedlove","forcedmarriage","forcedrelationship","incest","kidnap","kidnapping","littlegirl","magcon","masterandslut","masterxslave","noncon","nonconsensual","owned","pedo","pedofil","pedofila","pedofile","pedofili","pedophile","pedophiles","pedophilia","porn","pornography","punishments","rape","raped","rapefantasy","rapist","rough","sex chat","sex traffic","sex trafficing","sexslave","sexualassault","slave","slavery","slavexmaster","sold","stepdad","stepdaughter","sub","teacherxstudent","torture","tutorstudent","underage","virgin"],"message":["Consent in any relationship is important and the terms you are searching could contain triggering content where consent is not always clear. Some online trends are harmful. Remember to think critically about what you see online so that you stay safe. %s<a href=%s target=\"_blank\" rel=\"noopener noreferrer\">Check out our Safety Portal</a> to learn more about consent and keeping yourself safe.","<br/><br/>","https://safetyportal.wattpad.com/youth-portal/adult-content"]}];
wattpad.outstreamVideoCountries = ["AT","CA","DE","ES","FR","GB","IT","NL","US"];
wattpad.categoryList = {"0":"genre-uncategorized","1":"genre-teen-fiction","2":"genre-poetry","3":"genre-fantasy","4":"genre-romance","5":"genre-science-fiction","6":"genre-fanfiction","7":"genre-humor","8":"genre-mystery-thriller","9":"genre-horror","10":"genre-classics","11":"genre-adventure","12":"genre-paranormal","13":"genre-spiritual","14":"genre-action","16":"genre-non-fiction","17":"genre-short-stories","18":"genre-vampire","19":"genre-random","21":"genre-general-fiction","22":"genre-werewolf","23":"genre-historical-fiction","24":"genre-chick-lit"};
wattpad.assetServer = '//static.wattpad.com';
wattpad.mediaServer = '//img.wattpad.com';
wattpad.mediaService = '//loadbalancer-media-production-1.wattpad.com';
wattpad.spielbergoData = '[{"video":"ZHEb0F7BZGY","story":"38820105"}]';
wattpad.newCurationProfiles = '[{"code":"en","username":"WattpadExplorer"},{"code":"tl","username":"readinglistsph"},{"code":"id","username":"readinglistsid"},{"code":"es","username":"readinglistses"},{"code":"de","username":"readinglistsde"},{"code":"fr","username":"readinglistsfr"},{"code":"it","username":"readinglistsit"},{"code":"nl","username":"readinglistsnl"},{"code":"pt_PT","username":"readinglistspt"},{"code":"tr","username":"readingliststr"},{"code":"ml","username":"readinglistsmy"},{"code":"vi","username":"readinglistsvn"},{"code":"ru","username":"readinglistsru"}]';
wattpad.directAdCountries = '["CA","US"]';
wattpad.tagBgColours = '["#ff7744","#ff9b77","#ffae4d","#ffc477","#6dbec0","#87dbdb","#6d7fc0","#8799db"]';
wattpad.tagTextColours = '["#5c1900","#822200","#6f3c00","#703f00","#004345","#005353","#000c3b","#001152"]';
wattpad.tagCountLimit = '25';
wattpad.hybeStoryIds = ["294965960","294966013","294966028","294966049","294966539","294966588","294966611","294966627"];
wattpad.paidPartModalEligibleStories = [318949618,309778458,309513668,314879266,309262906,254141084,322521482,202112406,318293208,320071548,322521482,324747992,1147990254,320072007,326867815,165811669,7265464,284024018,158530942,161108266,291948470,279413523,287808571,265626471,178896408,287366795,213398545,184440073,291314199,287808571,265626471,65427985,262949035,307264294,246430822,102985191,121044195,162833349,229172867,202935336,135176886,134915498,149156795,168608510,93474431,301181970,143367728,163363093,295740104,153571620,297744774,302248068,191128068,249323959,297650842,231100326,42913698,41955865,41249222,15146893,104901409,189309736,303003825,289526735,293658451,219070977,221317980,286869150,94967867,91348994,305508523,205154501,211692604,142891879,181522376,137675320,260944985,63467299,990020,247025167,315394329,249215491,267132605,152123599,180471361,11012700,304046497,295275081,310592798,96054937,87298026,161957179,247642839,304367563,246785445,221510371,144594856,247005567,251719603,291948470,296520845,228765794,261316381,275943626,241005560,318062647,6613422,229571342,203910665,257181896,208463767,301876065,179192089,285744882,259957268,55198369,278260394,254141084,193014064,312591594,183124390,173341799,202581633,285922952,173333221,285099293,286366535,195533676,222472674,133651455,48831680,126888833,315811164,255919585,295666100,90263025,209726576,145813192,52944402,267767992,279088614,92704806,313325592,285748708,106818088,299397959,122196883,127107323,224351916,280390277,287848946,246198214,171779228,208655669,232108742,208617081,212727742,162756571,173425160,318949618,293878894,170003970,308033056,289301714,311177792,149183043,145132890,90943536,204001244,240641376,170464652,147953994,155903960,3148841,51301294,300320746,103391419,208594308,189051869,256171562,250958694,317107751,307848144,223036460,189149364,62069585,237003725,304052574,229342693,272028759,242491431,240047154,132000429,193397749,308617748,149029234,73782645,54378388,286928953,284020367,304672698,303004004,88859156,81866697,117883597,93501200,106314255,217438337,224092350,235900979,332998386,253237164,261400960,312206567,243579521,331229815,328614486,285810562,316248079,266647373,224538333,282268220,319429384,329224379,329224548,312068319,300240023,315811164,80859968,317257696,193226174,215485736,239902744,308004990,215947900,227815558,267392116,203414140,298257525,233851263,194952578,230375107,332081148,322243550,216138850,68093653,93357695,121160186,169033691,230024454,260388406,211509305,315747987,240607867,300237069,83380976,59160792,111936772,208117857,197727245,155902908,248065173,42950907,180946815,3148812,312136645,183754924,309909279,241320234,184696980,7265464,308300174,258830605,310237184,328128832,320965884,327057364,267947125,258988576,270560789,328825218,120672509,814509529,317924233,300171866,274835824,219014616,262139427,319335105,148383174,217978513,324345536,198976686,306758639,215155648,252113309,260541020,265368586,290544484,318811569,239345577,243921690,247417046,185821222,178797015,194370173,204002644,280689027,327578535,327749066,330740100,330742532,330799604,321874893,250713592,283153074,278214678,28800556,44802362,59865573,51768868,125771229,329119315,187582657,305906095,336026380,314764186,330900398,335129229,159191461,237258174,255919585,272754755,295246328,317522253,339432163,292895162,118719964,343363008,152590481,119741668,129671139,157269484,320742009,183574689,286759081,286742747,328825548,334310388,320479684,276967672,310598262];
wattpad.wattysActiveKey = 'wattys2023';
}());
</script>
<script type="text/javascript" data-webtasks-id="4359cb58-029d-4ebb">
window.mobileApp=window.mobileApp||{},window.mobileApp.xhrLoad=function(n){"use strict";n.XMLHttpFactories=[function(){return new n.XMLHttpRequest},function(){return new ActiveXObject("Msxml2.XMLHTTP")},function(){return new ActiveXObject("Msxml3.XMLHTTP")},function(){return new ActiveXObject("Microsoft.XMLHTTP")}],n.createXMLHTTPObject=function(){for(var t=!1,e=0;e<n.XMLHttpFactories.length;e++){try{t=n.XMLHttpFactories[e]()}catch(t){continue}break}return t},n.injectScript=function(t){var e=n.createXMLHTTPObject();if(e)try{e.onreadystatechange(function(){if(4===e.readyState&&200===e.status){var t=n.document.createElement("script");t.type="text/javascript",t.text=e.responseText,n.document.getElementsByTagName("head")[0].appendChild(t)}}),e.open("GET",t,!1),e.send("")}catch(t){}}},window.mobileApp.xhrLoad(window),window.mobileApp.reload=function(t,e,n){"use strict";var r,i;if(void 0!==window.dependencyFailure&&!window.dependencyFailure){i=function(t){for(var e,n=0,r=t.length;n<r;n++){e=window;for(var i=0,o=t[n].obj.length;i<o;i++){if(void 0===e[t[n].obj[i]])return t[n].name;e=e[t[n].obj[i]]}}return!1},r=function(){for(var t="",e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",n=0;n<7;n++)t+=e.charAt(Math.floor(Math.random()*e.length));return t};var o=t||e,c=o.split("?"),a=1<c.length?c[1]:"v="+r();if(!(o=c[0]||o)||!i(n))return;if(window.injectScript(o+"?"+a),!o||!i(n))return;window.injectScript(e+"?"+a),window.dependencyFailure=(o?"":"no-src|")+i(n)}};
//# sourceMappingURL=xhr-load.5f76a8d4.min.js.map
</script>
<script type="text/javascript" data-webtasks-id="a8f6e873-db64-42d5">
window.dependencyFailure = false;
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js" crossorigin="anonymous" data-webtasks-id="9fe82b80-73d4-4a82"></script>
<script type="text/javascript" data-webtasks-id="63395850-bb83-486b">
if (typeof window.jQuery === "undefined") {
document.write('<script type="text/javascript" src="/js/jquery-1.12.2.min.js"><\/script>');
}
</script>
<script type="text/javascript" data-webtasks-id="c9c7bf2e-292b-48a3">
!function(e){"use strict";e.mobileApp=e.mobileApp||{},e.mobileApp.reload(null,"https://www.wattpad.com/js/jquery-1.12.2.min.js",[{name:"jquery",obj:["jQuery"]}])}(window);
//# sourceMappingURL=jquery-retry.e84dcc91.min.js.map
</script>
<script data-webtasks-id="14c26d6a-4442-4782">
var wp = window.wattpad || {};
wp.utils = {};
wp.app_id = 2582347323;
wp.facebook_app_name = 'wattpad';
</script>
<script type="text/javascript" src="//static.wattpad.com/js/desktop-web/dependencies.ae71a012.min.js" id="desktop-web-requirements" crossorigin="anonymous" data-webtasks-id="6ca2b431-f2a8-4c9b"></script>
<script data-webtasks-id="d2da9f38-f978-4365">
moment.locale('en_US');
</script>
<script type="text/javascript" src="//static.wattpad.com/js/desktop-web/app.14627e8c.js" id="desktop-web" crossorigin="anonymous" data-webtasks-id="e1e24fbf-6914-464c"></script>
<script type="text/javascript" id="" data-webtasks-id="228ab7be-b555-4fc4">(function(){var a=document.createElement("script"),b=document.getElementsByTagName("script")[0];a.async=!0;a.src=("https:"==document.location.protocol?"https://sb":"http://b")+".scorecardresearch.com/beacon.js";b.parentNode.insertBefore(a,b)})();</script>
<noscript data-webtasks-id="39af1d04-c9b6-47d7">
<img src="http://b.scorecardresearch.com/p?c1=2&c2=18767423&cv=2.0&cj=1">
</noscript><script type="text/javascript" id="" data-webtasks-id="976793fa-a409-464c">!function(b,e,f,g,a,c,d){b.fbq||(a=b.fbq=function(){a.callMethod?a.callMethod.apply(a,arguments):a.queue.push(arguments)},b._fbq||(b._fbq=a),a.push=a,a.loaded=!0,a.version="2.0",a.queue=[],c=e.createElement(f),c.async=!0,c.src=g,d=e.getElementsByTagName(f)[0],d.parentNode.insertBefore(c,d))}(window,document,"script","https://connect.facebook.net/en_US/fbevents.js");fbq("init","1422218544461353");fbq("track","PageView");</script>
<noscript data-webtasks-id="a9793486-91b4-4337"><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=1422218544461353&ev=PageView&noscript=1"></noscript><script type="text/javascript" id="" src="https://static.clmbtech.com/ase/65973/3140/aa.js" data-webtasks-id="0c0a7950-22c3-45d3"></script><script type="text/javascript" src="//static.wattpad.com/js/react-bundle.desktop-web-create.dependencies.0fd59c5d.js" id="desktop-web-create-requirements" crossorigin="anonymous" data-webtasks-id="3df07428-21bc-4507"></script>
<script type="text/javascript" src="//static.wattpad.com/js/react-bundle.desktop-web-create.2b6d5669.js" id="desktop-web-create" crossorigin="anonymous" data-webtasks-id="62db1453-a3e0-4bfd"></script>
<script type="text/javascript" src="//static.wattpad.com/js/react-bundle.deps.fa9482f7.js" id="react-dependencies" crossorigin="anonymous" data-webtasks-id="8777e184-1c35-4927"></script>
<script type="text/javascript" src="//static.wattpad.com/js/react-bundle.components.5eb33435.js" id="react-components" crossorigin="anonymous" data-webtasks-id="9d6b5351-eb0e-448a"></script>
<script type="text/javascript" data-webtasks-id="599d62dc-0e1a-4b4a">
window.parsedStore = {"userData":{"locale":"en_US","ff":"1"},"appData":{"translatedLangs":[{"id":1,"name":"English","translated":true,"locale":"en_US","code":"en","nameEnglish":"English","hreflangCode":"en"},{"id":2,"name":"Français","translated":true,"locale":"fr_FR","code":"fr","nameEnglish":"French","hreflangCode":"fr"},{"id":3,"name":"Italiano","translated":true,"locale":"it_IT","code":"it","nameEnglish":"Italian","hreflangCode":"it"},{"id":4,"name":"Deutsch","translated":true,"locale":"de_DE","code":"de","nameEnglish":"German","hreflangCode":"de"},{"id":5,"name":"Español","translated":true,"locale":"es_ES","code":"es","nameEnglish":"Spanish","hreflangCode":"es"},{"id":6,"name":"Português","translated":true,"locale":"pt_PT","code":"pt_PT","nameEnglish":"Portugese","hreflangCode":"pt"},{"id":38,"name":"Català","translated":true,"locale":"ca_ES","code":"ca","nameEnglish":"Catalan","hreflangCode":"ca"},{"id":19,"name":"Tiếng Việt","translated":true,"locale":"vi_VN","code":"vi","nameEnglish":"Vietnamese","hreflangCode":"vi"},{"id":18,"name":"Filipino","translated":true,"locale":"tl_PH","code":"tl","nameEnglish":"Tagalog","hreflangCode":"tl"},{"id":20,"name":"Bahasa Indonesia","translated":true,"locale":"id_ID","code":"id","nameEnglish":"Indonesian","hreflangCode":"id"},{"id":7,"name":"Русский","translated":true,"locale":"ru_RU","code":"ru","nameEnglish":"Russian","hreflangCode":"ru"},{"id":15,"name":"Română","translated":true,"locale":"ro_RO","code":"ro","nameEnglish":"Romanian","hreflangCode":"ro"},{"id":23,"name":"Türkçe","translated":true,"locale":"tr_TR","code":"tr","nameEnglish":"Turkish","hreflangCode":"tr"},{"id":24,"name":"Česky","translated":true,"locale":"cs_CZ","code":"cs","nameEnglish":"Czech","hreflangCode":"cs"},{"id":14,"name":"Polski","translated":true,"locale":"pl_PL","code":"pl","nameEnglish":"Polish","hreflangCode":"pl"},{"id":28,"name":"Magyar","translated":true,"locale":"hu_HU","code":"hu","nameEnglish":"Hungarian","hreflangCode":"hu"},{"id":30,"name":"ελληνικά","translated":true,"locale":"el_GR","code":"el","nameEnglish":"Greek","hreflangCode":"el"},{"id":44,"name":"Slovenčina","translated":true,"locale":"sk_SK","code":"sk","nameEnglish":"Slovak","hreflangCode":"sk"},{"id":46,"name":"Українська","translated":true,"locale":"uk_UA","code":"uk","nameEnglish":"Ukrainian","hreflangCode":"uk"},{"id":26,"name":"Svenska","translated":true,"locale":"sv_SE","code":"sv","nameEnglish":"Swedish","hreflangCode":"sv"},{"id":27,"name":"Norsk","translated":true,"locale":"nn_NO","code":"nn","nameEnglish":"Norwegian","hreflangCode":"nn"},{"id":29,"name":"Dansk","translated":true,"locale":"da_DK","code":"da","nameEnglish":"Danish","hreflangCode":"da"},{"id":13,"name":"Nederlands","translated":true,"locale":"nl_NL","code":"nl","nameEnglish":"Dutch","hreflangCode":"nl"},{"id":12,"name":"简体中文","translated":true,"locale":"zh_CN","code":"zh_CN","nameEnglish":"Simplified Chinese","hreflangCode":"zh-Hans"},{"id":8,"name":"繁體中文","translated":true,"locale":"zh_TW","code":"zh_TW","nameEnglish":"Traditional Chinese","hreflangCode":"zh-Hant"},{"id":16,"name":"العربية","translated":true,"locale":"ar_EG","code":"ar","nameEnglish":"Arabic","hreflangCode":"ar"},{"id":17,"name":"עברית","translated":true,"locale":"he_IL","code":"he","nameEnglish":"Hebrew","hreflangCode":"he"},{"id":21,"name":"हिन्दी","translated":true,"locale":"hi_IN","code":"hi","nameEnglish":"Hindi","hreflangCode":"hi"}]},"deviceData":{"isMobile":false,"isDesktop":true},"wallet":{"amount":0,"animationStep":"default","id":"wp1","fetched":false},"purchase":{"isPurchasing":false,"amountSpent":0,"buyingPart":false},"threads":{"isLoading":true,"isLoadingMore":false,"isEmailVerified":false,"threads":[],"filter":"","total":0,"offset":0},"conversation":{"isActive":false,"isLoading":true,"isLoadingMore":false,"isDeleting":false,"isPosting":false,"messages":[],"badges":[],"scrollToMessageId":-1,"total":0,"offset":0,"isEmailVerified":false,"isMutingCurrentUser":false,"isMutedByCurrentUser":false,"isBlockedByCurrentUser":false,"isFollowing":false},"paidMetadata":{"parts":{},"stories":{}},"modal":{"modalProps":null},"popover":{"popoverProps":{}},"contestForm":{"isLoading":true,"hasCheckedSubmission":false,"hasSubmitted":false,"isNearEligible":false,"hasAddedWattysTag":false,"user":"","cover":"","title":"","data":{"storyId":null,"contest":"","wattys_submitted_time":0,"language":"","storyStatus":"","isSeries":"","seriesType":"","isSeriesStandalone":"","numberOfStoriesInSeries":"","totalPlannedStoriesInSeries":"","anticipatedStoryLength":"","diversity":[],"diversityOther":"","storyType":"","genrePrimary":"","genreOthers":[],"matureThemes":[],"matureThemeOther":"","storyMaturity":"","logLine":"","plotSummary":"","platformExclusivity":false,"writerEmail":"","studiosConsent":"","finalConsent":false}},"storyTags":{"tags":[]},"homeSections":{"sections":[],"sectionBounds":{}},"profileData":{"mutedUsers":[],"blockedUsers":[],"muteListLoaded":false,"blockListLoaded":false},"toast":{"toastProps":null},"catalog":{"featuredList":[],"paidStoriesTags":[],"paidStoriesListByTag":{},"paidStoriesListOffset":0,"isLoadingPaidStories":false,"hasTagsLoaded":false},"quests":{"isLoading":true,"mapById":{},"mapByEmbeddedType":{}},"storyNotes":{"isLoading":true,"hasNotesBeenVisible":false,"data":{"id":null,"protagonist":{"name":null,"other_names":"","pronoun":null,"attributes":"","extrovert_introvert":null,"likeable":null,"focus_past_future":null,"thinking_feeling":null,"decisive_improvise":null,"laidback_serious":null,"personality_change":null},"protagonist_goal":{"description":"","physical_emotional":null,"type":null,"change_themselves_surroundings":null,"explore_emotions_world":null,"navigate_familiar_unfamiliar":null,"recall_past":null,"find_meaning":null,"take_keep":null,"outcome":"","succeed":null,"outcome_feeling":null},"opportunity":{"interested":null,"logline":"","story_progress":null,"types":null}}},"worksItemDetails":{"worksItemDetailsActiveTab":"toc"},"paidPartConfig":{"isLoading":true,"isFormVisible":false,"data":{"story_id":0,"part_id":0,"author_id":0,"paid_model":"paid_bonus","author_note":"","chapter_description":"","bonus_type":0,"is_free_part":false}}};
</script>
<script type="text/javascript" data-webtasks-id="fc20dcc5-5578-4c82">
window.mobileApp=window.mobileApp||{},window.mobileApp.appStart=function(t){"use strict";void 0===t.dependencyFailure||t.dependencyFailure?(t.onerror=null,t.document.cookie="mw-no=true; path=/",t.location.reload(!0)):$(function(){$.ajaxSetup({beforeSend:function(e,o){if(/\/(apiv2|api\/v3|v4|v5)\//.test(o.url)){e.setRequestHeader("Authorization",app.get("api-key-web"));var t=wattpad.utils.getCookie("wattpad_test");if(t&&e.setRequestHeader("X-WP-Test-Auth",t),/\/v5\/home/.test(o.url)){var a=app.get("translatedLanguage");a&&e.setRequestHeader("X-Accept-Language",a.locale)}}}}),"ontouchstart"in t||$("body").addClass("touchDisabled"),$(t).on("keyup",function(e){27===e.which&&$(".modal.fade.in").each(function(){var e=$(this);e&&e.data("bs.modal")&&e.data("bs.modal").options.keyboard&&e.modal("hide")})});var o=function(e){t.app&&t.app.components?(10<e&&console.log("window.app.components ready to go",e),t.parsedStore&&(t.store=t.app.components.createStore(t.parsedStore)),t.wattpad.utils.bootstrapReactRoot(),t.app.start({pushState:!0})):e<100?(console.log("waiting for window.app.components",e),setTimeout(o,e,2*e)):console.error("window.app.components never showed up :(",e)};o(10)})},window.mobileApp.appStart(window);
//# sourceMappingURL=app-start.f5bde2c7.min.js.map
</script>
<script type="text/javascript" data-webtasks-id="fcfddda7-681c-4837">
!function(a,b,c,d,e,f,g){a.wpAnalytics=e,a[e]=a[e]||[],
a[e].push=function(){
null!==arguments[arguments.length-1]&&"object"==typeof arguments[arguments.length-1]
?arguments[arguments.length-1].ts=1*new Date
:Array.prototype.push.call(arguments,{ts:1*new Date}),
Array.prototype.push.call(this,arguments)
},f=b.createElement(c),g=b.getElementsByTagName(c)[0],
f.async=1,f.src=d,f.crossOrigin='anonymous',g.parentNode.insertBefore(f,g)
}(window,window.document,"script","//static.wattpad.com/js/tracker/app.75cc698d.js","te");
</script>
<script type="text/javascript" data-webtasks-id="b9c5fd4d-92d5-4dd5">
window.te.push('create', 'desktop-web', null, window.wattpad.user ? window.wattpad.user.id : null);
</script>
<script type="text/javascript" data-webtasks-id="19967418-b8ed-45d3">
(function() {
var ad = document.getElementById( 'ad-bait' );
if ( !ad || ad.innerHTML.length === 0 || ad.clientHeight === 0 ) {
window.wattpad.utils.pushEvent( {
category: 'ads',
action: 'ad-block-on'
} );
}
ad.style.display = 'none';
})();
</script>
<script type="text/javascript" data-webtasks-id="a49ce652-7b86-4b0e">
(function() {
var referer = 'https://www.wattpad.com/home';
var parseUrl = function() {
var parsedUrl = document.URL.match( /^(?:https?\:\/\/)?(?:www\.)?(?:[^\/?#]+)(?:\/)([a-zA-z0-9]+)?(?:\/)?([-a-zA-Z]+|[0-9]+)?(?:[\/]?[\?]?(?:view=|q=))?([a-zA-Z\+]+)?/i );
return {
page : parsedUrl[1],
view : parsedUrl[2],
storyid : parsedUrl[2],
filter : parsedUrl[3]
}
};
this.top.location !== this.location && (this.top.location = this.location);
var teSend = function( eventType, channel, referer, page, filter, storyid ) {
if ( window.te === undefined ) {
return;
}
if ( page === 'story' || !isNaN( page ) ) {
if ( !isNaN( page ) ) {
storyid = parseInt( page );
page = 'story';
} else {
storyid = parseInt( storyid );
}
window.te.push( 'event', 'wattpad', null, null, eventType, { 'channel': channel, 'referer': referer, 'page': page, 'storyid': storyid } );
return;
} else if ( typeof page === 'undefined' ) {
page = 'signup';
}
window.te.push( 'event', 'wattpad', null, null, eventType, { 'channel': channel, 'referer': referer, 'page': page, 'filter': filter } );
};
var trackNavigation = function() {
var parsedUrl = parseUrl();
var parsedChannel = null;
if ( window.referralDetails ) {
parsedChannel = window.referralDetails.channel;
}
if ( parsedUrl.page && parsedUrl.page.indexOf( 'stories' ) > -1 && parsedUrl.view !== undefined ) {
page = parsedUrl.view;
}
if ( referer === undefined ) {
teSend( 'start', parsedChannel, 'direct', parsedUrl.page, parsedUrl.filter, parsedUrl.storyid );
return;
}
var pagereferer = referer.match( /^(https?\:\/\/)?(?:www\.)?([^\/?#]+)(?:[\/?#]|$)/i )[2];
if ( pagereferer.indexOf( 'wattpad' ) > -1 ) {
teSend( 'navigate', parsedChannel, null, parsedUrl.page, parsedUrl.filter, parsedUrl.storyid );
}
else {
teSend( 'start', parsedChannel, pagereferer, parsedUrl.page, parsedUrl.filter, parsedUrl.storyid );
}
};
var getReferral = function() {
if ( _.isEmpty(window._utms) ) {
return {};
}
var details = {
source: window._utms.source,
channel: window._utms.medium,
content: window._utms.content,
campaign: window._utms.campaign,
page: window._utms.page,
originator: window._utms.originator
},
path = window.location.pathname,
entity = 'other';
if ( path.indexOf( 'comment/' ) !== -1 ) {
var match = document.URL.match( /\/(\d){2,}/i );
if (match !== null) {
entity = 'comment';
details.partid = match[1];
}
}
else if ( path.indexOf( 'story/' ) !== -1 ) {
var match = document.URL.match( /\/story\/(\w*)/i );
if (match !== null) {
entity = 'story';
details.storyid = match[1];
}
}
else if ( path.indexOf( 'user/' ) !== -1 ) {
var match = document.URL.match( /\/user\/(\w*)/i );
if (match !== null) {
entity = 'user';
details.username = match[1];
}
}
else if ( path.indexOf( 'list/' ) !== -1 ) {
var match = document.URL.match( /\/list\/(\w*)/i );
if (match !== null) {
entity = 'reading_list';
details.reading_listid = match[1];
}
}
else {
var match = document.URL.match( /\/(\d{2,})/i );
if (match !== null) {
entity = 'part';
details.partid = match[1];
}
}
if ( details.source === 'email-invite' || details.campaign === 'invitefriends' ) {
entity = 'invite_friends';
}
window.te.push( 'event', 'wattpad', entity, null, 'deeplink', details );
return details;
};
window.referralDetails = getReferral();
trackNavigation();
})();
</script>
<script data-webtasks-id="dce82b27-dfc4-47cd">
wattpad.translation = {"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"en"},"Not Specified":[""],"All Rights Reserved":[""],"Public Domain":[""],"Creative Commons (CC) Attribution":[""],"(CC) Attrib. NonCommercial":[""],"(CC) Attrib. NonComm. NoDerivs":[""],"(CC) Attrib. NonComm. ShareAlike":[""],"(CC) Attribution-ShareAlike":[""],"(CC) Attribution-NoDerivs":[""],"Untitled Story":[""],"My Stories":[""],"Cancel":[""],"Add Story Info":[""],"Skip":[""],"Add a cover":[""],"Drop a cover":[""],"Upload Cover":[""],"Required":[""],"Story cover file upload":[""],"Add a story cover":[""],"Story Details":[""],"Title":[""],"Description":[""],"Add a story description":[""],"Story description":[""],"Main Characters":[""],"Who are your Main Characters?":[""],"Category":[""],"Tell Wattpad the category of your story":[""],"Select a category":[""],"Tags":[""],"Help readers find your story":[""],"Add a tag":[""],"Separate tags with a space":[""],"Target Audience":[""],"Who is this story for?":[""],"Who is your primary audience?":[""],"Young Adult (13-18 years of age)":[""],"New Adult (18-25 years of age)":[""],"Adult (25+ years of age)":[""],"Language":[""],"What language is your story in?":[""],"Story language":[""],"Who owns your story?":[""],"Let others know if this story is just yours, or if anyone can repost or remix it":[""],"Learn more":[""],"OK":[""],"You do not allow your work to be used or adapted in any way without your permission.":[""],"This allows anyone to use your story for any purpose — they could freely print, sell, or turn your story into a movie.":[""],"You hold some rights to your story but allow for things like translation or adaptations with credit back to you.":[""],"This license lets others remix, adapt, and build upon your work non-commercially with credit back to you.":[""],"This license allows others to share your unaltered work with others as long as you get credit.":[""],"This lets others adapt, and build upon your work non-commercially, as long as you are credited and the same terms are applied.":[""],"This lets others adapt and build on your work, even for commercial purposes, as long as you are credited and the same terms are applied.":[""],"This lets others reuse your work for any purpose but it cannot be altered and you must be credited.":[""],"Copyright":[""],"Copyright options":[""],"Rating":[""],"Rate your story":[""],"Mature":[""],"ON":[""],"OFF":[""],"The Protagonist":[""],"Stories have multiple characters, and many main characters. The Protagonist on the other hand is the leading character in your story. They are the most prominent figure in your story, who drives the plot and makes up most of the narrative. They are the character whose fate is most closely followed by your reader.":[""],"If you’re struggling to figure out who your Protagonist is,":[""],"Learn More Here":[""],"Your Protagonist's name":[""],"Enter Name":[""],"Other names for the Protagonist":[""],"Separate Names By Commas":[""],"Protagonist's pronoun":[""],"He":[""],"She":[""],"They":[""],"Select":[""],"Protagonist's attributes":[""],"Type and Select":[""],"Up to 10 attributes. Include attributes like skin tone, ethnicity, gender selection, disabilities, hair, eyes, body type, and sexual orientation.":[""],"The Protagonist tends to be:":[""],"Extroverted":[""],"Introverted":[""],"Unlikable":[""],"Likable":[""],"Focused on Patterns in the Past":[""],"Focused on Future Possibilities":[""],"Uses Mind & Logic":[""],"Uses Heart & Emotion":[""],"Organized & Decisive Decision Making":[""],"Improvised & Open Decision Making":[""],"Light & Laid Back Attitude":[""],"Complex & Serious Attitude":[""],"How will the Protagonist's personality change by the end of the story?":[""],"Negative Personality Change":[""],"No/Minimal Personality Change":[""],"Positive Personality Change":[""],"Albino":[""],"White skin tone":[""],"Pale":[""],"Olive skin tone":[""],"Light brown skin tone":[""],"Brown skin tone":[""],"Dark brown skin tone":[""],"Black skin tone":[""],"Vitiligo":[""],"Above Average":[""],"Attractive":[""],"Average":[""],"Beautiful":[""],"Cute":[""],"Good Looking":[""],"Gorgeous":[""],"Handsome":[""],"Hot":[""],"Pretty":[""],"Sexy":[""],"Stunning":[""],"Alpha":[""],"Ambitious":[""],"Arrogant":[""],"Awkward":[""],"Bad Boy":[""],"Beta":[""],"Boy next door":[""],"Charming":[""],"Clever":[""],"Common sense":[""],"Creep":[""],"Cunning":[""],"Dominant":[""],"Educated":[""],"Emotional":[""],"Friendly":[""],"Funny":[""],"Geek":[""],"Genius":[""],"Girl next door":[""],"Good Girl":[""],"Jerk":[""],"Kind":[""],"Lazy":[""],"Nerd":[""],"Nice":[""],"Not smart":[""],"Omega":[""],"Popular":[""],"Sensitive":[""],"Silly":[""],"Smart":[""],"Submissive":[""],"Sweet":[""],"Underdog":[""],"Unpopular":[""],"Wise":[""],"Intelligent":[""],"Passionate":[""],"Actor":[""],"Archaeologist":[""],"Architect":[""],"Artist":[""],"Assassin":[""],"Astronaut":[""],"Athlete":[""],"Author":[""],"Babysitter":[""],"Baker":[""],"Barista":[""],"Bartender":[""],"Billionaire":[""],"Bodyguard":[""],"Boss":[""],"Business person":[""],"Butler":[""],"Captain":[""],"Cashier":[""],"Celebrity":[""],"CEO":[""],"Chef":[""],"Con Artist":[""],"Criminal":[""],"Dentist":[""],"Detective":[""],"Doctor":[""],"Driver":[""],"Editor":[""],"Engineer":[""],"Entrepreneur":[""],"Executive":[""],"Farmer":[""],"Firefighter":[""],"Flight Attendant":[""],"Gamer":[""],"Hunter":[""],"Influencer":[""],"Intern":[""],"Journalist":[""],"Knight":[""],"Lawyer":[""],"Lifeguard":[""],"Lumberjack":[""],"Magician":[""],"Maid":[""],"Massage Therapist":[""],"Mechanic":[""],"Millionaire":[""],"Mobster":[""],"Model":[""],"Musician":[""],"Nanny":[""],"Novelist":[""],"Nurse":[""],"Photographer":[""],"Pilot":[""],"Police Officer":[""],"Politician":[""],"Popstar":[""],"Prince":[""],"Princess":[""],"Prisoner":[""],"Private Eye":[""],"Professor":[""],"Programmer":[""],"Royalty":[""],"Scientist":[""],"Secretary":[""],"Server":[""],"Sex worker":[""],"Singer":[""],"Soldier":[""],"Spy":[""],"Student":[""],"Superhero":[""],"Teacher":[""],"Therapist":[""],"Traveler":[""],"Waiter/Waitress":[""],"Writer":[""],"Alien":[""],"Angel":[""],"Animal":[""],"Child":[""],"Clown":[""],"Cyborg":[""],"Devil":[""],"Dinosaur":[""],"Elderly":[""],"Elf":[""],"Fairy":[""],"Father":[""],"Fey":[""],"Ghost":[""],"Infant":[""],"Insect":[""],"Machine":[""],"Mermaid":[""],"Mother":[""],"Octopus":[""],"Old":[""],"Parent":[""],"Pirate":[""],"Plant":[""],"Reaper":[""],"Robot":[""],"Spirit":[""],"Succubus":[""],"Supernatural":[""],"Teenager":[""],"Vampire":[""],"Werewolf":[""],"Witch":[""],"Wizard":[""],"Young":[""],"Zombie":[""],"African American":[""],"Anglo Saxon":[""],"Arab":[""],"Asian":[""],"Australasian":[""],"Biracial":[""],"Caribbean":[""],"Caucasian":[""],"Central American":[""],"Central Asian":[""],"East African":[""],"East Asian":[""],"Eastern European":[""],"Eurasian":[""],"European":[""],"Fictional Ethnicity":[""],"First Nations":[""],"Hispanic":[""],"Indigenous":[""],"Jewish":[""],"Latinx":[""],"Levantine":[""],"Mediterranean":[""],"Melanesian":[""],"Mesopotamian":[""],"Middle Eastern":[""],"Multiracial":[""],"Multiple Ethnic Background":[""],"Native":[""],"Native American":[""],"North African":[""],"North American":[""],"Northern East African":[""],"Northwestern European":[""],"Pacific Islander":[""],"Scandinavian":[""],"South American":[""],"South Asian":[""],"South East Asian":[""],"South Pacific Islander":[""],"South East African":[""],"Southern European":[""],"Sub Saharan African":[""],"West African":[""],"Western Asian":[""],"Western European":[""],"Visually Impaired":[""],"Chronic illness or pain":[""],"Hard of Hearing":[""],"Mobility impairment":[""],"Physical Illness":[""],"Disease":[""],"Wheelchair Person":[""],"Learning disability":[""],"Neurodiverse":[""],"Autistic":[""],"Depression":[""],"Anxiety":[""],"Mental Illness":[""],"Trauma":[""],"Paralyzed":[""],"Paranoia":[""],"Cancer":[""],"Eating Disorder":[""],"Amputee":[""],"Memory Loss":[""],"Has an Addiction":[""],"Personality Disorder":[""],"Deaf":[""],"Able-bodied":[""],"Neurotypical":[""],"Straight (Fine/Thin) hair":[""],"Straight (Medium) hair":[""],"Straight (Coarse) hair":[""],"Wavy (Fine/Thin) hair":[""],"Wavy (Medium) hair":[""],"Wavy (Coarse) hair":[""],"Curly (Loose) hair":[""],"Curly (Tight) hair":[""],"Kinky (Soft) hair":[""],"Kinky (Wiry) hair":[""],"No hair":[""],"Fur":[""],"Natural Hair":[""],"Afro":[""],"Locks":[""],"Long hair":[""],"Medium hair":[""],"Short hair":[""],"Bald":[""],"Buzz cut":[""],"Auburn hair":[""],"Chestnut brown hair":[""],"Copper hair":[""],"Dark brown hair":[""],"Brown hair":[""],"Ginger hair":[""],"Golden blonde hair":[""],"Grey hair":[""],"Light blonde hair":[""],"Light brown hair":[""],"Light chestnut brown hair":[""],"Medium blonde hair":[""],"Medium brown hair":[""],"Natural black hair":[""],"Natural brown hair":[""],"Strawberry blonde hair":[""],"Titian hair":[""],"White hair":[""],"Red hair":[""],"Orange hair":[""],"Yellow hair":[""],"Green hair":[""],"Blue hair":[""],"Purple hair":[""],"Honey Blonde hair":[""],"Caramel hair":[""],"Brown eyes":[""],"Blue eyes":[""],"Hazel eyes":[""],"Amber eyes":[""],"Green eyes":[""],"Gray eyes":[""],"Red eyes":[""],"Heterochromia":[""],"White eyes":[""],"Black eyes":[""],"Violet eyes":[""],"Orange eyes":[""],"Yellow eyes":[""],"Thin":[""],"Athletic":[""],"Curvy":[""],"Voluptuous":[""],"Muscular":[""],"Overweight":[""],"Underweight":[""],"Average weight":[""],"Male":[""],"Female":[""],"Agender":[""],"Androgyne":[""],"Androgynous":[""],"Bigender":[""],"Cis":[""],"Cisgender":[""],"Cisgender Female":[""],"Cisgender Male":[""],"Cisgender Man":[""],"Cisgender Woman":[""],"Female to Male":[""],"FTM":[""],"Gender Fluid":[""],"Gender Nonconforming":[""],"Gender Questioning":[""],"Gender Variant":[""],"Genderqueer":[""],"Intersex":[""],"Male to Female":[""],"MTF":[""],"Neutrois":[""],"Non-binary":[""],"Pangender":[""],"Trans":[""],"Trans Female":[""],"Trans Male":[""],"Trans Man":[""],"Trans Person":[""],"Trans Woman":[""],"Transfeminine":[""],"Transgender":[""],"Transgender Female":[""],"Transgender Male":[""],"Transgender Man":[""],"Transgender Person":[""],"Transgender Woman":[""],"Transmasculine":[""],"Two-Spirit":[""],"Gender Neutral":[""],"Lesbian":[""],"Gay":[""],"Bisexual":[""],"Pansexual":[""],"Heterosexual":[""],"Bicurious":[""],"Questioning":[""],"Queer":[""],"Polysexual":[""],"Androsexual":[""],"Gynosexual":[""],"Asexual":[""],"The Story Goal":[""],"The Protagonist’s goal in the story is what is known as the Story Goal. A Story Goal is the foundation of every plot, which is why it’s critical to understand what your Protagonist’s main objective is in the story. The Story Goal can be physical or emotional.":[""],"What is your Protagonist's ultimate goal in this story?":[""],"The goal is primarily:":[""],"Physical":[""],"The goal type is to:":[""],"Acquire":[""],"Explore":[""],"Escape":[""],"Find":[""],"Protect":[""],"Survive":[""],"Accept":[""],"Appreciate":[""],"Forget":[""],"Learn":[""],"Love":[""],"Self Actualize":[""],"To achieve the story goal the Protagonist has to . . .":[""],"Change themselves":[""],"Change their surroundings":[""],"Explore their emotions":[""],"Explore their world":[""],"Navigates a familiar world":[""],"Encounters an unfamiliar world":[""],"Ignore the Past":[""],"Recall the past":[""],"Reappreciate the current meaning":[""],"Find a new meaning":[""],"Take something away from the antagonist":[""],"Keep something away from the antagonist":[""],"The Story Outcome":[""],"Ideally, every story has a planned outcome. This will help you set the arc of your story, and plan accordingly. The Story Outcome relates to the outcome the Protagonist is aiming to achieve. Knowing where you want to go with the story will help you pace your story and keep your narrative as tight as possible.":[""],"What happens at the end of the story?":[""],"Will the Protagonist succeed in reaching the goal at the end of this story?":[""],"Yes":[""],"No":[""],"How will the Protagonist feel about the outcome from achieving the goal?":[""],"Good":[""],"Bad":[""],"Story Opportunities on Wattpad":[""],"Interested in submitting your story to the backlog of stories Wattpad reviews for opportunities like being featured, being part of the Paid Stories program, or being considered as a Wattpad Star Writer?":[""],"What specific opportunities on Wattpad are you interested in for this story?":[""],"Wattpad Paid Stories (make money from fans who pay for your story on Wattpad)":[""],"Wattpad Publishing (be considered for publication by a major commercial publisher)":[""],"Wattpad Books (be published by Wattpad)":[""],"Wattpad Studios (be considered for adaptation into a television show or film)":[""],"All available opportunities with Wattpad":[""],"What is your story’s logline?":[""],"A logline is a very short “elevator pitch” about your story that reviews the key elements of the story without giving too much away. Loglines aim to hook the reader into wanting to read more.":[""],"How much have you written so far?":[""],"My Story is in Progress":[""],"My Story is Halfway Done":[""],"My Story is Complete but being Edited":[""],"My Story is Complete":[""],"All fields in the Story Notes must be filled before submitting Story to Wattpad.\nYou can change and resubmit your Story Notes to Wattpad again at anytime.":[""],"Close":[""],"Confirm Part Delete":[""],"Delete Part?":[""],"Unpublish Part?":[""],"Unpublish Story?":[""],"Confirm Story Delete":[""],"Delete Story?":[""],"Embed this Story":[""],"Preview":[""],"WARNING: This cannot be undone.":[""],"Draft stories can't be seen by other members of Wattpad, so they don't get any new reads, votes, or comments.":[""],"Unpublish":[""],"If you're unsure, it's better to <strong>unpublish</strong> your part. Unpublished parts can only be seen by you, so they don't get any new reads, votes, or comments.":[""],"Delete":[""],"All <strong>reads</strong> for this part will be <strong>deleted</strong>.":[""],"All <strong>votes</strong> for this part will be <strong>deleted</strong>.":[""],"All <strong>comments</strong> for this part will be <strong>deleted</strong>.":[""],"Delete Forever":[""],"Working":[""],"If you're unsure, it's better to <strong>unpublish</strong> your story. Unpublished stories can only be seen by you, so they don't get any new reads, votes, or comments.":[""],"All <strong>parts</strong> for this story will be <strong>deleted</strong>.":[""],"All <strong>reads</strong> for this story will be <strong>deleted</strong>.":[""],"All <strong>votes</strong> for this story will be <strong>deleted</strong>.":[""],"All <strong>comments</strong> for this story will be <strong>deleted</strong>.":[""],"Please correct the following":[""],"Username":[""],"Confirm Username":[""],"Home":[""],"Browse":[""],"Wattpad Picks":[""],"Community":[""],"The Watty Awards":[""],"Community Happenings":[""],"Wattpad Ambassadors":[""],"Search":[""],"Submit search":[""],"Autocomplete":[""],"Write":[""],"Create a new story":[""],"Helpful writer resources":[""],"Wattpad programs & opportunities":[""],"Writing contests":[""],"Try Premium":[""],"User":[""],"Profile":[""],"My Profile":[""],"Inbox":[""],"Notifications":[""],"Library":[""],"Help":[""],"Settings":[""],"Log Out":[""],"Reads":[""],"Footer Links":[""],"Paid Stories":[""],"Get the App":[""],"Writers":[""],"Brand Partnerships":[""],"Jobs":[""],"Press":[""],"Legal Footer Links":[""],"Terms":[""],"Privacy":[""],"Accessibility":[""]};
</script>
<script type="text/javascript" data-webtasks-id="e3908767-32a8-407c">
!function(){var d="hidden";function n(n){var e,i,t={focus:"visible",focusin:"visible",pageshow:"visible",blur:"hidden",focusout:"hidden",pagehide:"hidden"};"start"===(e=(n=n||window.event).type in t?"hidden"===t[n.type]?"stop":"start":this[d]?"stop":"start")&&(i={premium:wattpad.utils.getCurrentUserAttr("premium")?1:0});window.te.push("event","app","session",null,e,i)}d in document?document.addEventListener("visibilitychange",n):(d="mozHidden")in document?document.addEventListener("mozvisibilitychange",n):(d="webkitHidden")in document?document.addEventListener("webkitvisibilitychange",n):(d="msHidden")in document?document.addEventListener("msvisibilitychange",n):"onfocusin"in document?document.onfocusin=document.onfocusout=n:window.onpageshow=window.onpagehide=window.onfocus=window.onblur=n,void 0!==document[d]&&n({type:document[d]?"blur":"focus"})}();
//# sourceMappingURL=page-visibility.ec43ae16.min.js.map
</script>
<iframe width="0" height="0" frameborder="0" scrolling="no" src="https://ssum.casalemedia.com/usermatch?s=185638&cb=https%3A%2F%2Fe-9660.adzerk.net%2Fudb%2F9660%2Fsync%2Fi.gif%3FpartnerId%3D1%26userId%3D" style="display: none;" marginheight="0" marginwidth="0" data-webtasks-id="da5efaa1-2d41-48ba"></iframe>
<!-- [[LINK_CSS]] -->
<form method="POST" id="beacon_form" enctype="application/x-www-form-urlencoded" action="/v4/metrics" target="boomerang_post-https%3A%2F%2Fwww.wattpad.com%2Fmyworks%2Fnew-0.5138071370854984" style="display: none;" data-webtasks-id="b77202f9-b266-4bd2"><input type="hidden" name="rt.start" value="navigation" data-webtasks-id="bd0c8c4b-8bc7-4aa0"><input type="hidden" name="rt.tstart" value="1689850896294" data-webtasks-id="2d4a0cb2-fb4d-4d99"><input type="hidden" name="rt.cstart" value="1689850896282" data-webtasks-id="046a50a0-5724-4eff"><input type="hidden" name="rt.bstart" value="1689850898182" data-webtasks-id="31ec2301-6acf-4f62"><input type="hidden" name="rt.end" value="1689850898699" data-webtasks-id="3aba1287-2c3a-404c"><input type="hidden" name="t_resp" value="308" data-webtasks-id="e5393103-0ef3-4505"><input type="hidden" name="t_page" value="2097" data-webtasks-id="c60e0f28-447e-44a7"><input type="hidden" name="t_done" value="2405" data-webtasks-id="dad49e44-1fa2-48cf"><input type="hidden" name="r" value="https://www.wattpad.com/home" data-webtasks-id="42c17886-26ae-474a"><input type="hidden" name="nt_red_cnt" value="0" data-webtasks-id="77f4f324-0c86-460b"><input type="hidden" name="nt_nav_type" value="0" data-webtasks-id="b506e4ce-e7e4-422b"><input type="hidden" name="nt_nav_st" value="1689850896294" data-webtasks-id="1397231f-f142-4ac5"><input type="hidden" name="nt_red_st" value="0" data-webtasks-id="015bf806-cb5e-40f3"><input type="hidden" name="nt_red_end" value="0" data-webtasks-id="42f668ce-9043-4ef2"><input type="hidden" name="nt_fet_st" value="1689850896295" data-webtasks-id="133cd317-028b-48f7"><input type="hidden" name="nt_dns_st" value="1689850896295" data-webtasks-id="a9d658c1-bf37-4c27"><input type="hidden" name="nt_dns_end" value="1689850896295" data-webtasks-id="a1279170-44d1-41e5"><input type="hidden" name="nt_con_st" value="1689850896295" data-webtasks-id="d674980d-5688-44b9"><input type="hidden" name="nt_con_end" value="1689850896295" data-webtasks-id="f9791a01-e57f-411e"><input type="hidden" name="nt_req_st" value="1689850896300" data-webtasks-id="4fa10896-412e-4df3"><input type="hidden" name="nt_res_st" value="1689850896602" data-webtasks-id="0e7439a0-3785-47ae"><input type="hidden" name="nt_res_end" value="1689850896799" data-webtasks-id="4ec9f9bc-387f-4030"><input type="hidden" name="nt_domloading" value="1689850896630" data-webtasks-id="7295385a-9422-4956"><input type="hidden" name="nt_domint" value="1689850898658" data-webtasks-id="909b7afa-54eb-4787"><input type="hidden" name="nt_domcontloaded_st" value="1689850898659" data-webtasks-id="df7646d7-6b92-46c6"><input type="hidden" name="nt_domcontloaded_end" value="0" data-webtasks-id="75c32d37-0cfc-4c0d"><input type="hidden" name="nt_domcomp" value="0" data-webtasks-id="5e2314c4-d543-4c04"><input type="hidden" name="nt_load_st" value="0" data-webtasks-id="cfe60045-6944-4cfd"><input type="hidden" name="nt_load_end" value="0" data-webtasks-id="95a4fce3-6f3a-44f3"><input type="hidden" name="nt_unload_st" value="1689850896624" data-webtasks-id="abf39d36-1ab5-4b78"><input type="hidden" name="nt_unload_end" value="1689850896624" data-webtasks-id="2a00573e-2c9d-45a8"><input type="hidden" name="nt_spdy" value="1" data-webtasks-id="bd5a09a5-06f4-400d"><input type="hidden" name="nt_cinf" value="h2" data-webtasks-id="24b63acd-f7cc-4036"><input type="hidden" name="nt_first_paint" value="1689850897.596" data-webtasks-id="c6bd693e-3acb-43dc"><input type="hidden" name="u" value="https://www.wattpad.com/myworks/new" data-webtasks-id="888b0a58-4ddb-4e8d"><input type="hidden" name="v" value="0.9.1454699113" data-webtasks-id="e138c352-6a7d-419b"><input type="hidden" name="vis.st" value="visible" data-webtasks-id="a636de01-e074-488b"></form><script type="text/javascript" id="" data-webtasks-id="f0b3dc41-96c8-4333">window.COMSCORE&&window.COMSCORE.beacon&&window.COMSCORE.beacon({c1:"2",c2:google_tag_manager["rm"]["511769"](151)});</script><div class="modal-backdrop fade in" data-webtasks-id="0c946e3e-bf6d-4331"></div></body><editor-card style="position:absolute;top:0px;left:0px;z-index:auto;display: block !important" data-webtasks-id="01223505-64a1-4ee7"><div dir="ltr" style="all: initial;" data-webtasks-id="663db66d-5290-465f"><div style="color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;" data-webtasks-id="b2efdfb4-3ef9-4dba"><link rel="stylesheet" href="chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css" data-webtasks-id="5e1e883b-1e54-4427"><div style="all: initial;" data-webtasks-id="b0ac916c-50da-49da"></div></div><div style="color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;" data-webtasks-id="d85e8db2-48b5-4c2a"><link rel="stylesheet" href="chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css" data-webtasks-id="c62b83ad-0cbf-46ae"></div><div style="color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;" data-webtasks-id="e05b728d-4615-419e"><link rel="stylesheet" href="chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css" data-webtasks-id="77fd975d-a6b8-44d0"></div><div style="color: initial; font: initial; font-palette: initial; font-synthesis: initial; forced-color-adjust: initial; text-orientation: initial; text-rendering: initial; -webkit-font-smoothing: initial; -webkit-locale: initial; -webkit-text-orientation: initial; -webkit-writing-mode: initial; writing-mode: initial; zoom: initial; accent-color: initial; place-content: initial; place-items: initial; place-self: initial; alignment-baseline: initial; animation-composition: initial; animation: initial; app-region: initial; appearance: initial; aspect-ratio: initial; backdrop-filter: initial; backface-visibility: initial; background: initial; background-blend-mode: initial; baseline-shift: initial; baseline-source: initial; block-size: initial; border-block: initial; border: initial; border-radius: initial; border-collapse: initial; border-end-end-radius: initial; border-end-start-radius: initial; border-inline: initial; border-start-end-radius: initial; border-start-start-radius: initial; inset: initial; box-shadow: initial; box-sizing: initial; break-after: initial; break-before: initial; break-inside: initial; buffered-rendering: initial; caption-side: initial; caret-color: initial; clear: initial; clip: initial; clip-path: initial; clip-rule: initial; color-interpolation: initial; color-interpolation-filters: initial; color-rendering: initial; color-scheme: initial; columns: initial; column-fill: initial; gap: initial; column-rule: initial; column-span: initial; contain: initial; contain-intrinsic-block-size: initial; contain-intrinsic-size: initial; contain-intrinsic-inline-size: initial; container: initial; content: initial; content-visibility: initial; counter-increment: initial; counter-reset: initial; counter-set: initial; cursor: initial; cx: initial; cy: initial; d: initial; display: initial; dominant-baseline: initial; empty-cells: initial; fill: initial; fill-opacity: initial; fill-rule: initial; filter: initial; flex: initial; flex-flow: initial; float: initial; flood-color: initial; flood-opacity: initial; grid: initial; grid-area: initial; height: initial; hyphenate-character: initial; hyphenate-limit-chars: initial; hyphens: initial; image-orientation: initial; image-rendering: initial; initial-letter: initial; inline-size: initial; inset-block: initial; inset-inline: initial; isolation: initial; letter-spacing: initial; lighting-color: initial; line-break: initial; list-style: initial; margin-block: initial; margin: initial; margin-inline: initial; marker: initial; mask: initial; mask-type: initial; math-depth: initial; math-shift: initial; math-style: initial; max-block-size: initial; max-height: initial; max-inline-size: initial; max-width: initial; min-block-size: initial; min-height: initial; min-inline-size: initial; min-width: initial; mix-blend-mode: initial; object-fit: initial; object-position: initial; object-view-box: initial; offset: initial; opacity: initial; order: initial; orphans: initial; outline: initial; outline-offset: initial; overflow-anchor: initial; overflow-clip-margin: initial; overflow-wrap: initial; overflow: initial; overscroll-behavior-block: initial; overscroll-behavior-inline: initial; overscroll-behavior: initial; padding-block: initial; padding: initial; padding-inline: initial; page: initial; page-orientation: initial; paint-order: initial; perspective: initial; perspective-origin: initial; pointer-events: initial; position: absolute; quotes: initial; r: initial; resize: initial; rotate: initial; ruby-position: initial; rx: initial; ry: initial; scale: initial; scroll-behavior: initial; scroll-margin-block: initial; scroll-margin: initial; scroll-margin-inline: initial; scroll-padding-block: initial; scroll-padding: initial; scroll-padding-inline: initial; scroll-snap-align: initial; scroll-snap-stop: initial; scroll-snap-type: initial; scrollbar-gutter: initial; shape-image-threshold: initial; shape-margin: initial; shape-outside: initial; shape-rendering: initial; size: initial; speak: initial; stop-color: initial; stop-opacity: initial; stroke: initial; stroke-dasharray: initial; stroke-dashoffset: initial; stroke-linecap: initial; stroke-linejoin: initial; stroke-miterlimit: initial; stroke-opacity: initial; stroke-width: initial; tab-size: initial; table-layout: initial; text-align: initial; text-align-last: initial; text-anchor: initial; text-combine-upright: initial; text-decoration: initial; text-decoration-skip-ink: initial; text-emphasis: initial; text-emphasis-position: initial; text-indent: initial; text-overflow: initial; text-shadow: initial; text-size-adjust: initial; text-transform: initial; text-underline-offset: initial; text-underline-position: initial; white-space: initial; touch-action: initial; transform: initial; transform-box: initial; transform-origin: initial; transform-style: initial; transition: initial; translate: initial; user-select: initial; vector-effect: initial; vertical-align: initial; view-transition-name: initial; visibility: initial; border-spacing: initial; -webkit-box-align: initial; -webkit-box-decoration-break: initial; -webkit-box-direction: initial; -webkit-box-flex: initial; -webkit-box-ordinal-group: initial; -webkit-box-orient: initial; -webkit-box-pack: initial; -webkit-box-reflect: initial; -webkit-highlight: initial; -webkit-line-break: initial; -webkit-line-clamp: initial; -webkit-mask-box-image: initial; -webkit-mask: initial; -webkit-mask-composite: initial; -webkit-print-color-adjust: initial; -webkit-rtl-ordering: initial; -webkit-ruby-position: initial; -webkit-tap-highlight-color: initial; -webkit-text-combine: initial; -webkit-text-decorations-in-effect: initial; -webkit-text-fill-color: initial; -webkit-text-security: initial; -webkit-text-stroke: initial; -webkit-user-drag: initial; -webkit-user-modify: initial; widows: initial; width: initial; will-change: initial; word-break: initial; word-spacing: initial; x: initial; y: initial; z-index: 2147483647;" data-webtasks-id="7e3657fd-c086-4401"><link rel="stylesheet" href="chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css" data-webtasks-id="a18ac8b8-ab36-40d4"></div></div></editor-card> |