Spaces:
Running
Running
File size: 173,117 Bytes
4b630e2 |
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 |
<head data-webtasks-id="9df70745-c6e0-44d3"><style data-merge-styles="true" data-webtasks-id="78375974-1044-492f"></style><style data-merge-styles="true" data-webtasks-id="9aeb6759-42e3-486c"></style><style data-merge-styles="true" data-webtasks-id="fa999271-6539-4389"></style><style data-merge-styles="true" data-webtasks-id="5a506c38-b44c-44ff"></style><script type="text/javascript" async="" src="https://sb.scorecardresearch.com/c2/18767423/cs.js" data-webtasks-id="25748801-102d-45fa"></script><script id="canva-script" src="https://sdk.canva.com/v2/beta/api.js" data-webtasks-id="ec44f306-b863-46eb"></script><script gtm="GTM-WD9JLB" type="text/javascript" async="" src="https://www.google-analytics.com/gtm/optimize.js?id=GTM-PB8NDN3" data-webtasks-id="5ae07b30-4668-4771"></script><script async="" src="//static.wattpad.com/js/tracker/app.bccd513f.js" crossorigin="anonymous" data-webtasks-id="968666ea-09f9-42f7"></script><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtag/js?id=G-FNDTZ0MZDQ&l=dataLayer&cx=c" data-webtasks-id="706a3a66-b735-42a9"></script><script src="https://connect.facebook.net/signals/config/1422218544461353?v=2.9.124&r=stable&domain=www.wattpad.com" async="" data-webtasks-id="0c9112e5-7644-41b9"></script><script async="" src="https://connect.facebook.net/en_US/fbevents.js" data-webtasks-id="8b040730-5e4b-46a3"></script><script async="" src="https://sb.scorecardresearch.com/beacon.js" data-webtasks-id="7466ad59-2de3-40a2"></script><script type="text/javascript" async="" src="https://www.google-analytics.com/analytics.js" data-webtasks-id="f1754385-c968-4638"></script><script async="" src="//www.googletagmanager.com/gtm.js?id=GTM-WD9JLB" data-webtasks-id="8ecdd6bc-8c81-42a0"></script><script type="text/javascript" src="//static.wattpad.com/js/ados.ad0e6cf9.js" crossorigin="anonymous" data-webtasks-id="10f25ccb-308e-4386"></script>
<meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=edge" data-webtasks-id="59820ce1-3a91-4665">
<script src="//static.wattpad.com/js/boomerang.99a8a777.min.js" crossorigin="anonymous" data-webtasks-id="96dc94d4-40fb-42b1"></script><script data-webtasks-id="2461d933-fec5-4cfe">
(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="1b7a6a52-8062-4dfd">
<link rel="shortcut icon" href="//static.wattpad.com/favicon.ico" data-webtasks-id="d28807f8-d38b-4946">
<title data-webtasks-id="26db5862-e66f-4142">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="434b7e13-45fb-40df">
<link rel="preload" as="script" type="text/javascript" href="//static.wattpad.com/js/desktop-web/app.d4fead2f.js" crossorigin="anonymous" data-webtasks-id="3425685c-c841-4f53">
<link rel="preload" as="script" type="text/javascript" href="//static.wattpad.com/js/react-bundle.deps.122d0950.js" crossorigin="anonymous" data-webtasks-id="8bbd9895-fd15-4326">
<link rel="preload" as="script" type="text/javascript" href="//static.wattpad.com/js/react-bundle.components.5f21c61e.js" crossorigin="anonymous" data-webtasks-id="a6a44809-cc50-4c5b">
<link rel="stylesheet" type="text/css" href="//static.wattpad.com/css/desktop-web/desktop-web.62ed2f6b.min.css" data-webtasks-id="c0b8a168-fef8-4833">
<style type="text/css" media="print" data-webtasks-id="80bba6d8-cc25-42b1">
main#parts-container-new { visibility: hidden; display: none }
</style>
<script type="text/javascript" data-webtasks-id="111523bc-3037-40c5">
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="2076f158-b5e0-4a7a">
(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="53d2325f-9312-4bc5">
( 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="04ab7e29-c5cc-4b91">
(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="0094c103-10a4-4285">
<link rel="stylesheet" type="text/css" href="//static.wattpad.com/css/web-ui-library.622b4f3c.min.css" data-webtasks-id="882ea227-5831-4ca1">
<script type="text/javascript" data-webtasks-id="b746f24e-cfe3-4595">
"use strict";var addFrame=function(){if(!window.frames.__uspapiLocator)if(document.body){var e=document.createElement("iframe");e.style.cssText="display:none",e.name="__uspapiLocator",document.body.appendChild(e)}else setTimeout(addFrame,5)};function __handleUspapiMessage(o){var n=o&&o.data&&o.data.__uspapiCall;n&&window.__uspapi(n.command,n.version,function(e,a){o.source.postMessage({__uspapiReturn:{returnValue:e,success:a,callId:n.callId}},"*")})}addFrame(),window.__uspapi=function(t){var i=[];window.__uspapi=function(e,a,o,n){return"getUSPData"===e&&1===a?"function"!=typeof o?void console.error("__uspapi: getUSPData, callback parameter not a function"):o({version:1,uspString:t||"1---"},!0):"registerDeletion"===e&&1===a?"function"!=typeof o?void console.error("__uspapi: registerDeletion, callback parameter not a function"):i.push(o):"performDeletion"===e&&1===a?(console.info("__uspapi: performDeletion called"),i.forEach(function(e){e(n)}),!0):(console.error("__uspapi: unsupported usage, command: "+e+" version: "+a),"function"!=typeof o?void console.error("__uspapi: callback parameter not a function"):o(null,!1))}},window.addEventListener("message",__handleUspapiMessage,!1);
//# sourceMappingURL=ccpa.7317839c.min.js.map
</script>
<script type="text/javascript" src="//static.wattpad.com/js/atha.9277d491.min.js" crossorigin="anonymous" data-webtasks-id="0a213ea5-d669-4d32"></script>
<script type="text/javascript" src="//static.wattpad.com/js/ad-config.328f692a.min.js" crossorigin="anonymous" data-webtasks-id="5b971eca-f3a4-4251"></script>
<script type="text/javascript" data-webtasks-id="fb98e897-5ae6-430e">
window.__uspapi('');
</script><script src="//ads.pubmatic.com/AdServer/js/pwt/159971/3014/pwt.js" data-webtasks-id="64a8f03e-4d2c-4be9"></script><script src="//a.wp-e.net/prebid.js" data-webtasks-id="c1a0886f-dd03-4595"></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=48cb2545-3b8e-41ac-ad7b-ca26c83fd865-6mhk" data-webtasks-id="52d50baf-6837-49bc"></script><style data-make-styles-bucket="d" data-webtasks-id="d3145529-458d-4388"></style><style data-make-styles-bucket="t" data-webtasks-id="fa24dcaa-3529-42f5"></style></head>
<body class="touchDisabled route-createWorksEdit" dir="ltr" data-webtasks-id="4fd69e0d-a84c-4e88">
<script type="text/javascript" data-webtasks-id="b0166933-b0a8-4213">
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="681ab027-75a8-405c">window.dataLayer=[];</script>
<noscript data-webtasks-id="1c968001-b581-4bf7"><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="45bac249-8553-48f7">(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="2d676d29-f87d-4f2a"> <div id="languageModal" class="modal-language modal fade hide" role="dialog" aria-labelledby="Language" aria-hidden="true" data-webtasks-id="9f7f7e29-b3dc-47fb">
<div class="modal-dialog" data-webtasks-id="42040a34-c877-418e">
<div class="modal-content" data-webtasks-id="fdfd7b50-72dd-4e92">
<div class="modal-body" data-webtasks-id="87faf8df-548c-4596">
<iframe src="" frameborder="0" name="languageiframe" data-webtasks-id="784cd7b4-2b19-4283"></iframe>
</div>
</div>
</div>
</div>
<div id="generic-modal" class="modal fade" role="dialog" data-webtasks-id="0310639f-a3ea-48ee">
<div class="modal-dialog" data-webtasks-id="78a5a25d-25b2-42c5">
<div class="modal-content" data-webtasks-id="ec392dd1-be54-4513">
<div class="modal-body" data-webtasks-id="8325ec33-9a46-4e3b">
</div>
</div>
</div>
</div>
</div><iframe name="__uspapiLocator" data-webtasks-id="1c1811b5-e04c-47dc" style="display: none;"></iframe>
<div id="header-container" data-webtasks-id="db662943-c686-4baf" class="hidden">
<div role="banner" id="header" class="hidden" data-webtasks-id="b92eb951-9b10-4850">
<nav data-webtasks-id="3057398e-9994-4ea0">
<ul class="list-inline" data-webtasks-id="8603ae3c-11fb-427a">
<li id="header-item-logo" data-webtasks-id="0dbf8eff-85b8-4306">
<a class="on-navigate" href="/home" title="Wattpad Home" aria-label="Home" data-webtasks-id="2f68a291-c2ab-4356">
</a>
</li>
<li id="discover-dropdown" class="button-group dropdown" data-webtasks-id="21138e84-7428-4161">
<button data-toggle="dropdown" data-webtasks-id="1f048bec-6da7-4c57">Browse <span class="caret" data-webtasks-id="36fc006b-33aa-4c22"></span></button>
<div class="triangle" data-webtasks-id="9a3dd7b3-645c-4310"></div>
<div class="dropdown-menu new-curation large header-list" aria-labelledby="browse-dropdown" data-webtasks-id="32336c62-dd2c-45d4">
<div class="col-xs-9 discover-categories" data-webtasks-id="778aecb7-d486-4387">
<ul class="row" data-webtasks-id="dd0b3839-de42-4a3c">
<li class="title col-xs-12" aria-label="Browse Topics" data-webtasks-id="05b04b32-57d4-4ce6">Browse</li>
<li class="col-xs-4" data-webtasks-id="03d8b501-3f26-4e16">
<a href="https://www.wattpad.com/catalog/paidstories" class="on-navigate on-topic" data-webtasks-id="fc8ef26a-a26e-4628">Paid Stories</a>
</li>
<li class="col-xs-4" data-webtasks-id="d1613eec-5300-4892">
<a href="https://www.wattpad.com/list/551324301" class="on-navigate on-topic" data-webtasks-id="326ffa94-1f71-46cc">Editor's Picks</a>
</li>
<li class="col-xs-4" data-webtasks-id="63c563cb-a29d-4e76">
<a href="https://www.wattpad.com/user/TheWattys" class="on-navigate on-topic" data-webtasks-id="5d0ad3af-0ca0-4af9">The Wattys</a>
</li>
<li class="col-xs-4" data-webtasks-id="091a39f1-1510-4853">
<a href="/stories/adventure" class="on-navigate on-topic" data-webtasks-id="6373d75a-62ef-4a87">Adventure</a>
</li>
<li class="col-xs-4" data-webtasks-id="9fb84343-7dd3-4fb2">
<a href="/stories/contemporarylit" class="on-navigate on-topic" data-webtasks-id="3518a213-b120-48c5">Contemporary Lit</a>
</li>
<li class="col-xs-4" data-webtasks-id="9a2e493c-e455-4f18">
<a href="/stories/diverselit" class="on-navigate on-topic" data-webtasks-id="492a3b8e-cf4d-434b">Diverse Lit</a>
</li>
<li class="col-xs-4" data-webtasks-id="c412af5d-5599-4093">
<a href="/stories/fanfiction" class="on-navigate on-topic" data-webtasks-id="4008dcc9-75d6-4077">Fanfiction</a>
</li>
<li class="col-xs-4" data-webtasks-id="0885c8fe-b9ea-47a1">
<a href="/stories/fantasy" class="on-navigate on-topic" data-webtasks-id="2e39bda0-f591-4948">Fantasy</a>
</li>
<li class="col-xs-4" data-webtasks-id="b408a7fd-2fc7-46d2">
<a href="/stories/historicalfiction" class="on-navigate on-topic" data-webtasks-id="9d00ea53-414d-4dc7">Historical Fiction</a>
</li>
<li class="col-xs-4" data-webtasks-id="0e889e98-27c6-4748">
<a href="/stories/horror" class="on-navigate on-topic" data-webtasks-id="7aacc450-867c-4950">Horror</a>
</li>
<li class="col-xs-4" data-webtasks-id="b450f61b-4eba-4e00">
<a href="/stories/humor" class="on-navigate on-topic" data-webtasks-id="0184b84e-7c06-4c43">Humor</a>
</li>
<li class="col-xs-4" data-webtasks-id="77be95f1-2190-4587">
<a href="/stories/lgbt" class="on-navigate on-topic" data-webtasks-id="976ca68a-3575-475c">LGBTQ+</a>
</li>
<li class="col-xs-4" data-webtasks-id="bde28cd2-ed34-42f8">
<a href="/stories/mystery" class="on-navigate on-topic" data-webtasks-id="00e92ae3-03ef-4f45">Mystery</a>
</li>
<li class="col-xs-4" data-webtasks-id="02e77cc5-31c8-4e48">
<a href="/stories/newadult" class="on-navigate on-topic" data-webtasks-id="e19fa210-9a4a-4949">New Adult</a>
</li>
<li class="col-xs-4" data-webtasks-id="48803910-4696-41da">
<a href="/stories/nonfiction" class="on-navigate on-topic" data-webtasks-id="07526df7-9b3b-434f">Non-Fiction</a>
</li>
<li class="col-xs-4" data-webtasks-id="6af5a70e-b610-4ad2">
<a href="/stories/paranormal" class="on-navigate on-topic" data-webtasks-id="6a235cbe-7f94-41b1">Paranormal</a>
</li>
<li class="col-xs-4" data-webtasks-id="7dbc95a5-ecad-4c73">
<a href="/stories/poetry" class="on-navigate on-topic" data-webtasks-id="7cf197eb-0be0-4aab">Poetry</a>
</li>
<li class="col-xs-4" data-webtasks-id="5bda82aa-0cd6-4339">
<a href="/stories/romance" class="on-navigate on-topic" data-webtasks-id="a1703669-fbee-496b">Romance</a>
</li>
<li class="col-xs-4" data-webtasks-id="3e01bba5-565c-49b4">
<a href="/stories/sciencefiction" class="on-navigate on-topic" data-webtasks-id="ebedc6a6-7580-490d">Science Fiction</a>
</li>
<li class="col-xs-4" data-webtasks-id="fb68e93b-104d-471c">
<a href="/stories/shortstory" class="on-navigate on-topic" data-webtasks-id="792728e8-a5fe-4958">Short Story</a>
</li>
<li class="col-xs-4" data-webtasks-id="dbfe7a35-0375-462b">
<a href="/stories/teenfiction" class="on-navigate on-topic" data-webtasks-id="4b8063d4-71a5-472a">Teen Fiction</a>
</li>
<li class="col-xs-4" data-webtasks-id="964a70ad-fe49-4e3d">
<a href="/stories/thriller" class="on-navigate on-topic" data-webtasks-id="5c24235f-44b8-4db9">Thriller</a>
</li>
<li class="col-xs-4" data-webtasks-id="96bb393c-8c13-4471">
<a href="/stories/werewolf" class="on-navigate on-topic" data-webtasks-id="53499349-1393-420d">Werewolf</a>
</li>
</ul>
</div>
<div class="col-xs-3 wattpad-picks" data-webtasks-id="8e63474e-cdb5-47d6">
<ul class="row" aria-label="Wattpad Picks" data-webtasks-id="7d6da5f8-e9c9-4010">
<li class="title col-xs-12" data-webtasks-id="eb8c3d34-8e06-4849">Wattpad Picks</li>
<li class="col-xs-12" data-webtasks-id="52d07aed-31b8-4eba">
<a href="/featured/551324301" class="on-navigate" data-webtasks-id="25818a6a-9d74-412b">Editors' Choice</a>
</li>
<li class="col-xs-12" data-webtasks-id="7e361621-af2d-4fcf">
<a href="/featured/1449040700" class="on-navigate" data-webtasks-id="c3f9f92b-9441-4346">Where Bad Boy x Bad Girl stories live 💅</a>
</li>
<li class="col-xs-12" data-webtasks-id="189caf1d-f220-4b1b">
<a href="/featured/1459335752" class="on-navigate" data-webtasks-id="2b129b86-ec85-4bda">Campus life, campus love 🎓🫶</a>
</li>
<li class="col-xs-12" data-webtasks-id="637f4f3d-e992-4d48">
<a href="/featured/1459335298" class="on-navigate" data-webtasks-id="9255fb73-82ca-4bca">These workflirts mean business</a>
</li>
<li class="col-xs-12" data-webtasks-id="f4734b6b-82e0-4a8d">
<a href="/featured/960279561" class="on-navigate" data-webtasks-id="41357e62-5fe9-4fa6">From our Creators</a>
</li>
<li class="col-xs-12" data-webtasks-id="dbb43cfb-c075-45ea">
<a href="/featured/703389905" class="on-navigate" data-webtasks-id="a2e4b60c-a6e9-47bf">Wattpad Studios Hits</a>
</li>
</ul>
</div>
</div>
</li>
<li id="community-dropdown" class="button-group dropdown hidden-xs hidden-sm" data-webtasks-id="ad2d0ac8-772a-4648">
<button data-toggle="dropdown" data-webtasks-id="c741bdf1-458c-4dd9">Community <span class="caret" data-webtasks-id="652b381b-2a0b-4e3e"></span></button>
<div class="triangle" data-webtasks-id="8c3fb891-51ca-4229"></div>
<div class="dropdown-menu large" aria-labelledby="community-dropdown" data-webtasks-id="d9c5636e-e397-4243">
<ul aria-label="Community" class="header-list" data-webtasks-id="cbda8b0e-8b93-42a7">
<li data-webtasks-id="404a62f1-e724-48cb">
<a href="/awards" rel="noopener noreferrer" target="_blank" data-webtasks-id="54730b1c-7862-408f">
The Watty Awards
</a>
</li>
<li data-webtasks-id="f0f7b994-7b10-4d8b">
<a href="/story/25279524" rel="noopener noreferrer" target="_blank" data-webtasks-id="505be1d0-4cb8-43ec">
Community Happenings
</a>
</li>
<li data-webtasks-id="ff83a100-6cf5-4d66">
<a href="/823619" rel="noopener noreferrer" target="_blank" data-webtasks-id="f9316750-246c-4544">
Wattpad Ambassadors
</a>
</li>
</ul>
</div>
</li>
</ul>
</nav>
<div id="header-item-search" aria-label="Search" data-webtasks-id="04852298-9d39-460c">
<div data-webtasks-id="9f2661b4-09e0-44a4"><form class="form-horizontal dropdown" role="search" name="search" action="/search/" autocomplete="off" data-webtasks-id="b6c08222-c739-4057">
<input id="search-query" placeholder="Search" name="q" type="text" spellcheck="false" aria-label="Search" value="" data-webtasks-id="d1e97424-c6ca-46bb">
<button type="submit" aria-label="Submit search" data-webtasks-id="a981b520-5516-4e8d">
<span class="fa fa-search fa-wp-neutral-1 " aria-hidden="true" style="font-size:18px;" data-webtasks-id="b9e6f8b0-4d24-410c"></span>
</button>
<input type="hidden" name="ref" value="1" data-webtasks-id="4cea015c-fd16-4f6b">
<div class="dropdown-menu items" aria-label="search-dropdown" data-webtasks-id="85f62218-5d46-40d1">
<ul aria-label="Autocomplete" class="autocomplete-item-container" data-webtasks-id="8ab294d9-6d5c-4a96"></ul>
</div>
<div class="triangle" data-webtasks-id="ffd86644-6043-4916"></div>
</form>
</div>
</div>
<nav data-webtasks-id="8162766f-a16b-4aee">
<ul class="list-inline" data-webtasks-id="128febb3-d0e8-41bf">
<li class="button-group dropdown hidden-xs hidden-sm" data-webtasks-id="f5463d79-f523-4b7b">
<button data-toggle="dropdown" data-webtasks-id="68bca6c0-0338-4ddf">Write <span class="caret" data-webtasks-id="0f51bb28-6de3-48aa"></span></button>
<div class="triangle" data-webtasks-id="7c873ec1-8a83-411d"></div>
<div class="dropdown-menu large" aria-labelledby="create-dropdown" data-webtasks-id="63c4067f-563e-469b">
<ul aria-label="Write" class="header-list" data-webtasks-id="3196d8d7-670a-447c">
<li data-webtasks-id="a83b3031-b2f7-47ff">
<a href="/myworks/new" rel="nofollow" aria-label="Create a new story" data-webtasks-id="bada142a-467f-4e84">
<img alt="Create a new story" src="//static.wattpad.com/img/icons/create-story.svg?v=a14574b" data-webtasks-id="4b676f6d-e3d8-4853">Create a new story
</a>
</li>
<li data-webtasks-id="11553e00-f891-4b10">
<a href="/myworks" rel="nofollow" aria-label="My Stories" data-webtasks-id="09234208-efd0-42e2">My Stories</a>
</li>
<li role="presentation" class="divider" data-webtasks-id="b292c39c-76ba-4551"></li>
<li data-webtasks-id="0067f434-44fb-436c">
<a href="https://creators.wattpad.com/creators-101/" data-webtasks-id="01175b33-9c50-4959">Helpful writer resources</a>
</li>
<li data-webtasks-id="593b06dc-c6a9-44f3">
<a href="https://creators.wattpad.com/programs-and-opportunities/" data-webtasks-id="ede5b7de-c6f9-4e02">Wattpad programs & opportunities</a>
</li>
<li data-webtasks-id="1833c4f4-f2dd-46f9">
<a href="/go/writing-contests/" data-webtasks-id="f7c083cd-905b-4be4">Writing contests</a>
</li>
</ul>
</div>
</li>
</ul>
</nav>
<div id="go-premium-button" data-webtasks-id="681f012f-d385-4f6f">
<div class="component-wrapper" id="component-trypremium-header-%2fmyworks%2fnew" data-webtasks-id="568ce2ff-56a9-44e3"><a href="https://www.wattpad.com/premium" class="try-premium on-premium btn-primary" target="_blank" rel="noopener noreferrer" data-webtasks-id="0a95d34e-2acd-4824"><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="dce7a2ba-a512-4492"><g data-webtasks-id="3314242c-e256-44dc"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2" data-webtasks-id="3e6491e2-96d4-46c3"></polygon></g></svg><div class="button-copy" data-webtasks-id="eeb0b041-9eed-4273">Try Premium</div></a></div>
</div>
<div id="profile-dropdown" class="button-group dropdown" data-webtasks-id="025115ca-582e-4c50">
<button data-toggle="dropdown" role="button" aria-label="User" data-webtasks-id="fdce1045-b307-402a">
<div class="avatar avatar-sm" data-webtasks-id="7f3128e6-5883-4308">
<img src="https://img.wattpad.com/useravatar/Webtask.24.336719.jpg" width="25" height="25" alt="Webtask" data-webtasks-id="b44f0eff-6389-4897">
</div>
<span class="username hidden-xs hidden-sm hidden-md " data-webtasks-id="ff5a44ab-a00e-4ca3">
Webtask
</span>
<span class="caret" data-webtasks-id="cc3e2a85-0196-4a58"></span>
</button>
<div class="triangle" data-webtasks-id="a0cd0d3d-4926-4e2e"></div>
<div class="dropdown-menu dropdown-menu-right large" role="menu" aria-labelledby="profile-dropdown" data-webtasks-id="561c4aac-e164-44ef">
<ul aria-label="Profile" class="header-list" data-webtasks-id="b4775f43-8e00-4985">
<li data-webtasks-id="f059d9ce-84c2-44f1"><a class="on-navigate" href="/user/Webtask" data-webtasks-id="84d98214-23ab-4336">My Profile</a></li>
<li role="presentation" class="divider" data-webtasks-id="979fd47c-2d00-49b5"></li>
<li data-webtasks-id="0ec116d5-4a9a-458a"><a href="/inbox" data-webtasks-id="c3632e2d-a3e4-4d3c">Inbox
</a></li>
<li data-webtasks-id="bd43b5fd-26dc-45fc"><a class="on-navigate" href="/notifications" data-webtasks-id="4098a43c-67fe-45c1">Notifications
</a></li>
<li data-webtasks-id="a279ad96-946c-4228"><a class="on-navigate" href="/library" data-webtasks-id="4c6733a7-2bbe-4866">Library</a></li>
<li role="presentation" class="divider" data-webtasks-id="5cbf4e40-2b0a-47d9"></li>
<li data-webtasks-id="a8cf8e43-63dd-466f"><a href="/settings/language?jq=true" class="on-language" data-ignore="true" data-webtasks-id="8ebfa7a8-7d8a-481b">Language: English</a></li>
<li data-webtasks-id="d6b71e86-ea5b-46e0"><a href="//support.wattpad.com" data-webtasks-id="10678150-7c00-4359">Help</a></li>
<li data-webtasks-id="08cf2161-0a90-4a83">
<a class="on-navigate" href="/settings" data-webtasks-id="7c45b86d-9f15-41f3">Settings</a>
</li>
<li data-webtasks-id="27b80ec2-75ff-44d0"><a href="/logout" class="on-logout" data-webtasks-id="a62f2297-48e2-4f83">Log Out</a></li>
</ul>
</div>
</div>
</div>
</div>
<div id="react-client-root" data-webtasks-id="e1dbccde-c795-4a95"></div>
<div id="app-container" data-webtasks-id="217f12c2-c0b2-44a6"> <div id="works-item-edit" data-webtasks-id="bc42754b-4bbd-4bbf"><div id="works-item-edit" data-webtasks-id="a968ca96-c130-486a">
<div id="edit-controls" class="edit-profile" data-webtasks-id="f7061912-309e-4a3e">
<button class="btn btn-text on-edit-cancel" aria-label="Cancel" data-webtasks-id="28d72299-6169-434d"><span class="fa fa-left fa-wp-neutral-2 " aria-hidden="true" style="font-size:24px;" data-webtasks-id="f6852478-8314-4f24"></span></button>
<div class="works-item-metadata" data-webtasks-id="65167c49-84e2-4bd3">
<p class="small group-title" data-webtasks-id="98b326f1-4301-4546">
Add Story Info
</p>
<span class="h4" data-webtasks-id="3c3e399f-0c64-40b1">Untitled Story</span>
</div>
<div class="actions pull-right" data-webtasks-id="f86f6702-5cdc-4864">
<img class="save-working hidden" src="/img/desktop-web/ajax-spinner-off-white.gif" data-webtasks-id="31592b2e-055c-4646">
<button class="btn btn-grey on-edit-cancel" data-webtasks-id="6d2e0b8f-096a-404c">Cancel</button>
<button class="btn btn-orange on-edit-save" data-webtasks-id="de4a21eb-3432-4ac7"><span class="text" data-webtasks-id="d786de03-0707-4922">Skip</span>
<div id="finish-tooltip" data-toggle="popover" data-original-title="" title="" data-webtasks-id="26187a1c-8b97-4899"></div>
</button>
</div>
</div>
<div id="publish-status-banner" data-webtasks-id="dcf123fd-1480-4cc6"></div>
<div class="container" data-webtasks-id="b31d452c-58ba-4b39">
<div class="col-lg-3 col-md-3 col-sm-12" id="picture-sidebar" data-webtasks-id="0d967031-4e9c-4c2c">
<div class="image-placeholder new-image file-upload file-drop" data-file-upload="drop" data-webtasks-id="0e216abf-0b1c-420a">
<img src="" alt="Untitled Story" height="256" class="cover cover-xlg edit-cover" data-webtasks-id="ee5d7afe-7f65-4c5b">
<div class="new-cover-upload" data-webtasks-id="b69d7c59-709b-42c8">
<span class="dropdown-holder" data-toggle="dropdown" data-webtasks-id="09bc6944-e18d-41c8"><span class="fa fa-image fa-wp-neutral-2 fa-3x" aria-hidden="true" style="font-size:60px;" data-webtasks-id="ddfe5770-3632-4b96"></span></span>
<div class="add-cover-text dropdown-holder" data-toggle="dropdown" data-webtasks-id="6cdfc443-af2e-47a2">Add a cover</div>
<div class="drop-cover-text dropdown-holder" data-toggle="dropdown" data-webtasks-id="13c72808-5432-4e3f">Drop a cover</div>
<div class="triangle" data-webtasks-id="f40e4ad5-1924-49ec"></div>
<ul id="works-more-options-" class="dropdown-menu cover-edit-dropdown" role="menu" data-webtasks-id="80158ef5-2597-4606">
<li role="none" data-webtasks-id="e607cbc2-106e-4860">
<a class="file-select" role="menuitem" href="#" data-toggle="modal" data-target="#worksDelete" data-webtasks-id="fb4e1f73-a2f7-406a">
Upload Cover
</a>
</li>
<li role="none" data-webtasks-id="b18d2b32-134a-4615">
<a class="list-item-no-style" role="menuitem" href="javascript:void(0);" data-webtasks-id="67763941-7e6f-423f">
<div class="component-wrapper" id="component-canvabutton-canva-button-new-%2fmyworks%2fnew" data-webtasks-id="730d6a32-76af-478e"><button class="canva-btn canva-btn-size-s" data-webtasks-id="c7b088ce-9ede-4b56"><span class="canva-btn-i" data-webtasks-id="b1518c0e-97bd-40dc"></span>Create Cover</button></div>
</a>
</li>
</ul>
</div>
<div id="cover-uploader" class="button-group inline-block dropdown hidden" data-webtasks-id="0ba18d5d-e8d5-4ca7">
<div class="cover-edit-prompt" data-webtasks-id="697c727b-8802-46f8">
<div class="default-state" data-webtasks-id="3053ffbc-a085-4c19">
<span class="on-cover-edit hidden" data-toggle="dropdown" data-webtasks-id="bed2674c-5bf0-4f35">Edit your cover</span>
<span data-toggle="dropdown" data-webtasks-id="cd277475-4a18-41c8"><span class="fa fa-edit fa-wp-neutral-5 on-cover-edit-icon" aria-hidden="true" style="font-size:16px;" data-webtasks-id="a12d926a-e7b7-492f"></span></span>
<div class="triangle" data-webtasks-id="0d172a98-1980-45de"></div>
<ul id="works-more-options-" class="dropdown-menu cover-edit-dropdown" role="menu" data-webtasks-id="86ec0cd7-fc45-4162">
<li role="none" data-webtasks-id="8d0e7759-c27a-4a02">
<a class="file-select" role="menuitem" href="#" data-toggle="modal" data-target="#worksDelete" data-webtasks-id="71c20dd4-6358-4aa1">
Upload Cover
</a>
</li>
<li role="none" data-webtasks-id="57f1863a-60a3-4589">
<a class="list-item-no-style" role="menuitem" href="javascript:void(0);" data-webtasks-id="18c70276-9f0c-4077">
<div class="component-wrapper" id="component-canvabutton-canva-button-edit-%2fmyworks%2fnew" data-webtasks-id="9eba4633-a3f2-480f"><button class="canva-btn canva-btn-size-s" data-webtasks-id="ba0410c5-7cde-476e"><span class="canva-btn-i" data-webtasks-id="802e33aa-bb51-4681"></span>Create Cover</button></div>
</a>
</li>
</ul>
</div>
<div class="drag-state" data-webtasks-id="a8bb57ca-5a27-4dfa">
<span class="on-cover-edit hidden" data-webtasks-id="edf828c1-60b4-4b9f">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="9fce0828-e91a-4e78"></span>
</div>
</div>
</div>
<span class="empty-warning hidden" data-webtasks-id="a5af0cf5-8de8-4b81">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="1a1150c1-6cce-4bae">
<span data-toggle="popover" class="popover-icon" id="image-tooltip" title="" data-original-title="Add a story cover" data-webtasks-id="71f2ddf3-b126-4100"><span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="38150335-20bf-4002"></span></span>
</div>
<div class="social-share-wrapper" data-webtasks-id="6b935726-a39b-4c05">
</div>
</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="5343b150-b808-42ae">
<div class="row" data-webtasks-id="494b6ffa-0b50-47c7">
<div id="contest-banner-container" data-webtasks-id="58fb676c-7fcb-45d1">
</div>
<div class="work-section" data-webtasks-id="cddc7e8c-9926-4838">
<div class="component-wrapper" id="component-worksitemsdetailsnavbar-works-nav-bar-%2fmyworks%2fnew" data-webtasks-id="357aa40d-a4e8-4c76"><div class="works-edit-select" data-webtasks-id="4229d0d0-ccf3-4e6a"><button class="on-switch-type active" data-section="story-detail" data-webtasks-id="03dc5825-5702-4660">Story Details</button></div></div>
<form class="main-edit-form
" data-webtasks-id="bcf3c751-3536-45fe">
<div class="required-form-wrapper" data-webtasks-id="81d86ca5-43db-4ba3">
<div class="form-group title-form" data-webtasks-id="cdbf1de2-91fa-497b">
<label data-webtasks-id="96cbf0ff-834d-442c">Title</label>
<span class="empty-warning hidden" id="title-warning" data-webtasks-id="b96996c3-d606-4c25">Required</span>
<div contenteditable="true" class="story-title has-title" data-webtasks-id="3fa7cfa1-3f08-4fb3" spellcheck="false" data-ms-editor="true" data-event-id="6" listener="false">Starlight Academy: The Lost Constellation</div>
</div>
<div class="form-group description-form" data-webtasks-id="b4d371f5-4380-4f91">
<div class="form-wrapper" data-webtasks-id="a8425426-48bc-433d">
<label data-webtasks-id="fe795ac5-4a91-4f05">Description</label>
<span data-toggle="popover" class="popover-icon" id="description-tooltip" title="" data-original-title="Add a story description" data-webtasks-id="78b678f2-c461-495d"><span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="440bb3d7-8bee-460a"></span></span>
<span class="empty-warning hidden" id="description-warning" data-webtasks-id="771a2cea-68ea-4a34">Required</span>
</div>
<textarea type="text" name="title" class="story-description " aria-label="Story description" aria-multiline="true" data-webtasks-id="7ebe8a20-ce4e-4b1a" spellcheck="false" data-ms-editor="true"></textarea>
</div>
<div class="form-group characters-form" data-webtasks-id="f58eba0e-e51c-41a2">
<div class="form-wrapper" data-webtasks-id="a2e5db3d-72e4-4216">
<label data-webtasks-id="81bb89d3-d696-466e">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="0d4b8d3b-af78-48ff"><span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="09ff1920-f512-43dd"></span></span>
</div>
<div class="characters" data-webtasks-id="d65b1bfc-fc85-47d5">
<div class="character" data-webtasks-id="e3c36ff7-6bd9-4cbe">
<input type="text" class="character-input" name="character" aria-label="Character name" readonly="readonly" placeholder="Name" data-id="" value="Nova- A determined and empathetic girl with the power to control stardust" data-webtasks-id="02c42fe7-5510-43c9">
<div class="btn btn-orange on-remove-character" aria-label="Remove character" data-webtasks-id="8c9a7713-f8d2-441d"><span class="fa fa-minus fa-wp-neutral-5 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="d3067c4b-fe9e-43d0"></span></div>
</div>
<div class="character" data-webtasks-id="442a968d-cd0a-43c9">
<input type="text" class="character-input" name="character" aria-label="Character name" readonly="readonly" placeholder="Name" data-id="" value="Orion- A confident and ambitious boy gifted with the ability to manipulate starlight." data-webtasks-id="87c64862-a7f7-4d5e">
<div class="btn btn-orange on-remove-character" aria-label="Remove character" data-webtasks-id="e34f10c8-2ba6-4180"><span class="fa fa-minus fa-wp-neutral-5 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="3f081fab-7613-4869"></span></div>
</div>
<div class="character" data-webtasks-id="3717fd8a-8d03-460b">
<input type="text" class="character-input" name="character" aria-label="Character name" readonly="readonly" placeholder="Name" data-id="" value="Lyra- A creative and spirited girl capable of weaving illusions using constellations" data-webtasks-id="0d91c5ca-8c8c-41dc">
<div class="btn btn-orange on-remove-character" aria-label="Remove character" data-webtasks-id="e83a8f1a-e8e9-48f9"><span class="fa fa-minus fa-wp-neutral-5 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="235e480c-0420-4cc3"></span></div>
</div>
<div class="character" data-webtasks-id="ce715798-d5b0-4941">
<input type="text" class="character-input" name="character" aria-label="Character name" readonly="readonly" placeholder="Name" data-id="" value="Cassiopeia- a wise and intuitive boy woth the gift of seeing glimpses of the future in the stars" data-webtasks-id="19774703-0cd8-441f">
<div class="btn btn-orange on-remove-character" aria-label="Remove character" data-webtasks-id="53827727-bb5f-4bc4"><span class="fa fa-minus fa-wp-neutral-5 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="9b3695a4-8a27-4440"></span></div>
</div>
<div class="character" data-webtasks-id="c39f203e-d92c-4354">
<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="d644b828-25da-482e" data-event-id="27" listener="false">
<div class="btn on-add-character btn-orange" aria-label="Add another character" data-webtasks-id="dfe25cb3-1308-4b4c"><span class="fa fa-plus fa-wp-neutral-5" aria-hidden="true" style="font-size:16px;" data-webtasks-id="95c435dc-f8be-47e6"></span></div>
</div>
</div>
</div>
<div class="form-group category-form" data-webtasks-id="3d15e2c5-5eba-4ac5">
<div class="form-wrapper" data-webtasks-id="957bce11-80b7-4bc0">
<label for="categoryselect" data-webtasks-id="d844bc2b-b898-4f3c">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="5018aa49-e3cb-42bc">
<span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="7d4eff38-a9cd-4b2f"></span>
</span>
<select id="categoryselect" class="form-control " data-webtasks-id="092c6982-11c3-4260">
<option value="-1" data-webtasks-id="314bcc9e-d82f-41a1">Select a category</option>
<option value="14" data-webtasks-id="23c822f3-d901-4676">Action</option>
<option value="11" data-webtasks-id="7704bd02-adc4-496b">Adventure</option>
<option value="24" data-webtasks-id="cd0b0e8b-114c-4a2f">ChickLit</option>
<option value="6" data-webtasks-id="456382d4-a861-4fb3">Fanfiction</option>
<option value="3" data-webtasks-id="44e2adef-8cb5-4fc1">Fantasy</option>
<option value="21" data-webtasks-id="09c622ce-1776-4e3d">General Fiction</option>
<option value="23" data-webtasks-id="251041b3-dc9f-490c">Historical Fiction</option>
<option value="9" data-webtasks-id="8413a489-642a-42ad">Horror</option>
<option value="7" data-webtasks-id="5ca03da5-d6cb-46b6">Humor</option>
<option value="8" data-webtasks-id="08e8f96c-c9a9-407c">Mystery / Thriller</option>
<option value="16" data-webtasks-id="b127aa45-6eff-437c">Non-Fiction</option>
<option value="12" data-webtasks-id="618ad2c9-b212-4d4b">Paranormal</option>
<option value="2" data-webtasks-id="24acb4f8-0082-4231">Poetry</option>
<option value="19" data-webtasks-id="ea231847-4226-4283">Random</option>
<option value="4" data-webtasks-id="f72b2824-8f5c-4210">Romance</option>
<option value="5" data-webtasks-id="cf02fe41-57da-4c1b">Science Fiction</option>
<option value="17" data-webtasks-id="9627949c-0ac1-45fe">Short Story</option>
<option value="13" data-webtasks-id="b5162f21-db87-4c12">Spiritual</option>
<option value="1" data-webtasks-id="7090f148-446e-4ef7">Teen Fiction</option>
<option value="18" data-webtasks-id="649a8a25-3252-4274">Vampire</option>
<option value="22" data-webtasks-id="66a48b9d-20da-4985">Werewolf</option>
</select>
<span class="empty-warning hidden" id="category-empty-warning" data-webtasks-id="d4fe6d74-e5fa-4a7b">
Required
</span>
</div>
</div>
<div class="form-group tags-form" data-webtasks-id="0226a3d1-ee9a-4b25">
<div class="form-wrapper" data-webtasks-id="a8dbc3b7-2992-4328">
<label data-webtasks-id="a83c6fc8-49bd-4f25">Tags</label>
<span data-toggle="popover" class="popover-icon" id="tags-tooltip" title="" data-original-title="Help readers find your story" data-webtasks-id="59855e21-0276-4e06"><span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="cd949b30-0edc-4b7c"></span></span>
<span class="empty-warning hidden" id="tag-empty-warning" data-webtasks-id="15caf8e0-c91b-41cc">Required</span>
</div>
<div class="tag-container" data-webtasks-id="d06e0183-cbf9-4aa4">
<div id="editable-tags" style="margin-bottom: 5px;" data-webtasks-id="93e7ea40-a382-4db4">
<div class="component-wrapper" id="component-storytags-storytags-%2fmyworks%2fnew" data-webtasks-id="60e42ccc-5637-45f5"></div>
</div>
<div id="add-tag" class="tag-item with-icon on-add-tag" data-webtasks-id="fc9dcd8a-1543-42e4">
<span data-webtasks-id="6fe8c0f4-95ea-44f1">Add a tag</span><span class="fa fa-plus fa-wp-neutral-1 " aria-hidden="true" style="font-size:12px;" data-webtasks-id="df3a9595-664a-4941"></span>
</div>
<span id="tag-input-wrapper" data-webtasks-id="4b08421d-06e7-4a0f">
<input id="tag-input" class="hidden on-tag-input" placeholder="Separate tags with a space" autocomplete="off" data-webtasks-id="3474a995-78f7-4907" spellcheck="false" data-ms-editor="true">
</span>
</div>
</div>
</div>
<div class="form-group target-audience-form" data-webtasks-id="648df728-3d9f-4782">
<div class="form-wrapper" data-webtasks-id="e57d0b67-4a09-45e4">
<label for="target-audience" data-webtasks-id="7c205507-497a-4acf">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="22f9addd-f4a9-4ff0">
<span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="1fe1ffe0-09fa-4e72"></span>
</span>
<select id="target-audience" class="form-control " data-webtasks-id="311a2b36-65bb-4113">
<option selected="true" disabled="disabled" data-webtasks-id="d7fb490d-3794-4a71">Who is your primary audience?</option>
<option value="13-18" data-webtasks-id="5b8a910b-f573-4d35">Young Adult (13-18 years of age)</option>
<option value="18-25" data-webtasks-id="18476c54-d816-48e6">New Adult (18-25 years of age)</option>
<option value="25+" data-webtasks-id="8325c2b0-bdd3-46be">Adult (25+ years of age)</option>
</select>
</div>
</div>
<div class="inline-form-wrapper" data-webtasks-id="3df0aaa4-b98b-416e">
<div class="form-group language-form" data-webtasks-id="e279d95d-a0e9-424d">
<div class="form-wrapper" data-webtasks-id="d7259117-bfab-46c5">
<label data-webtasks-id="775103d4-652e-4eb1">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="027764bf-b43a-442b"><span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="19a25b1b-1c4d-4656"></span></span>
<select id="languageselect" class="form-control " aria-label="Story language" data-webtasks-id="9665bd50-6321-4957">
<option value="1" selected="selected" data-webtasks-id="fca160c9-4c7b-43dc">English</option>
<option value="2" data-webtasks-id="735e91a8-414a-48c7">Français</option>
<option value="3" data-webtasks-id="3e5e8df1-e6f6-40bb">Italiano</option>
<option value="4" data-webtasks-id="5031afad-204b-46c3">Deutsch</option>
<option value="5" data-webtasks-id="6b58ecbb-1247-4160">Español</option>
<option value="6" data-webtasks-id="d1f0f814-f5e4-47b2">Português</option>
<option value="38" data-webtasks-id="eaf213d3-544a-4bc2">Català</option>
<option value="19" data-webtasks-id="98836cf8-7c0d-4656">Tiếng Việt</option>
<option value="18" data-webtasks-id="fe8bf90a-37ac-4b3b">Filipino</option>
<option value="20" data-webtasks-id="6954ff21-a227-4dbf">Bahasa Indonesia</option>
<option value="22" data-webtasks-id="a95dd531-1412-47c0">Bahasa Melayu</option>
<option value="32" data-webtasks-id="83757e1b-8541-49a9">ภาษาไทย</option>
<option value="7" data-webtasks-id="d7e43347-c928-4850">Русский</option>
<option value="15" data-webtasks-id="b3704b75-520d-4f27">Română</option>
<option value="23" data-webtasks-id="7e843608-021a-4841">Türkçe</option>
<option value="24" data-webtasks-id="afa0506a-fef0-43d0">Česky</option>
<option value="14" data-webtasks-id="a3ee4c81-88f8-4cca">Polski</option>
<option value="28" data-webtasks-id="89be40a1-1408-40af">Magyar</option>
<option value="30" data-webtasks-id="ad470980-fb10-419c">ελληνικά</option>
<option value="35" data-webtasks-id="2fa96d4e-fa31-4f97">Eesti</option>
<option value="36" data-webtasks-id="645a1a58-35a6-4dcc">Latviešu</option>
<option value="37" data-webtasks-id="1c0b0c87-6f4e-452e">Lietuvių</option>
<option value="39" data-webtasks-id="504f740c-5864-4019">Босански</option>
<option value="40" data-webtasks-id="c2ef30bf-fae7-4d21">Српски</option>
<option value="41" data-webtasks-id="cd4ba4fc-3a35-4975">Hrvatski</option>
<option value="43" data-webtasks-id="98052d6f-712c-4de3">Български</option>
<option value="44" data-webtasks-id="2751b4fa-dae7-4ba7">Slovenčina</option>
<option value="42" data-webtasks-id="03fdec29-024e-41a5">Slovenščina</option>
<option value="45" data-webtasks-id="cc79df47-e379-4411">Беларускі</option>
<option value="46" data-webtasks-id="69d1a9d0-1c38-4f0d">Українська</option>
<option value="26" data-webtasks-id="3afd38b3-4a42-4aee">Svenska</option>
<option value="27" data-webtasks-id="67b1eeac-6edd-45e3">Norsk</option>
<option value="34" data-webtasks-id="d65fd2f7-89d4-4a84">Suomi</option>
<option value="29" data-webtasks-id="8bcc5bd1-9628-403d">Dansk</option>
<option value="13" data-webtasks-id="562049cc-50d3-4f66">Nederlands</option>
<option value="33" data-webtasks-id="262343b4-17c0-4563">Íslenska</option>
<option value="12" data-webtasks-id="c131c3ee-d3aa-42f2">简体中文</option>
<option value="8" data-webtasks-id="9554c03b-a4df-433c">繁體中文</option>
<option value="9" data-webtasks-id="bd28f881-2621-47f5">日本語</option>
<option value="10" data-webtasks-id="e1ab1e0f-ec1b-4332">한국어</option>
<option value="16" data-webtasks-id="73e2b297-e933-4136">العربية</option>
<option value="53" data-webtasks-id="27a34b9e-6204-42a8">ગુજરાતી</option>
<option value="17" data-webtasks-id="e82629a5-a105-4e70">עברית</option>
<option value="21" data-webtasks-id="aea8140b-6f3f-4b93">हिन्दी</option>
<option value="25" data-webtasks-id="57baabf4-f313-45e1">മലയാളം</option>
<option value="54" data-webtasks-id="b6b391ee-60b8-4fd2">ଓଡ଼ିଆ</option>
<option value="31" data-webtasks-id="7be42ba9-db87-4c0c">فارسی</option>
<option value="55" data-webtasks-id="49f01668-bb86-45f1">ਪੰਜਾਬੀ</option>
<option value="56" data-webtasks-id="f5bdbe50-f30c-4a25">অসমীয়া</option>
<option value="47" data-webtasks-id="8f3f907d-fe7d-42fb">বাংলা</option>
<option value="48" data-webtasks-id="c158e1dd-ddb0-4b5f">اُردُو</option>
<option value="49" data-webtasks-id="de48bea1-a9dc-4d75">தமிழ்</option>
<option value="50" data-webtasks-id="8f652192-3bef-41f7">Kiswahili</option>
<option value="51" data-webtasks-id="24cad4c0-5334-413c">Afrikaans</option>
<option value="57" data-webtasks-id="2433d78c-fc3e-4f97">मराठी</option>
<option value="11" data-webtasks-id="a1f8d41f-bbf5-4bf1">Other</option>
</select>
</div>
</div>
<div class="form-group copyright-form" data-webtasks-id="4a856adc-41c8-48a5">
<div class="form-wrapper" data-webtasks-id="0cf49d0a-0825-4db2">
<div class="component-wrapper" id="component-copyright-copyright-%2fmyworks%2fnew" data-webtasks-id="600e3d93-b79f-4e20"><div class="form-field" data-webtasks-id="020a7b0f-83d2-4f03"><div class="form-field-label" data-webtasks-id="f7ead8a5-6221-4ff6"><label data-webtasks-id="ab717446-d61a-4da6">Copyright</label><div class="icon-container" data-webtasks-id="b99e8836-fc14-4352"><button class="btn btn-no-style" data-webtasks-id="b35fbabb-cc4d-4475"><span class="fa fa-info fa-wp-neutral-2" aria-hidden="true" data-webtasks-id="49997b02-3f15-4d5a" 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="ed4e5310-f38b-46d5">(value !== placeholder && <option hidden="" disabled="" value="Select" data-webtasks-id="0909d4df-87f9-481e">Select</option>)<option value="1" data-webtasks-id="a803beb8-2025-4339">All Rights Reserved</option><option value="2" data-webtasks-id="0bef8caa-aa36-4611">Public Domain</option><option value="3" data-webtasks-id="f24dcbe1-1288-4a9a">Creative Commons (CC) Attribution</option><option value="4" data-webtasks-id="c00395f4-5b06-42cd">(CC) Attrib. NonCommercial</option><option value="5" data-webtasks-id="d06cbbbe-92f7-4a94">(CC) Attrib. NonComm. NoDerivs</option><option value="6" data-webtasks-id="f13be3a7-af3a-48ed">(CC) Attrib. NonComm. ShareAlike</option><option value="7" data-webtasks-id="61ebc17f-a3e4-444b">(CC) Attribution-ShareAlike</option><option value="8" data-webtasks-id="22a72ba9-cc9c-4174">(CC) Attribution-NoDerivs</option></select></div><p class="copyright-description" data-webtasks-id="5e4bfbdb-09f3-4846">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="cd3fc1e4-3b9a-4b96">
<div class="form-wrapper" data-webtasks-id="77596356-0597-4004">
<label class="rating-label" data-webtasks-id="f1eca9ab-36e1-4362">Rating</label>
<span data-toggle="popover" class="popover-icon" id="rating-tooltip" title="" data-original-title="Rate your story" data-webtasks-id="e1193def-cc84-45d7"><span class="fa fa-info fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="eba4270d-d88e-4f18"></span></span>
<span class="toggle-prompt" data-webtasks-id="e9e9ac5f-cf69-494f">Mature</span>
<div class="onoffswitch " data-webtasks-id="c664eb6e-9204-46bb">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="mature-switch" data-webtasks-id="f93e001b-d80b-4158">
<label class="onoffswitch-label" for="mature-switch" data-webtasks-id="9c20e040-3904-471b">
<div class="onoffswitch-inner" data-webtasks-id="48a11439-9254-45d4">
<span class="on" data-webtasks-id="8f11bcf4-c4f6-48e2">ON</span>
<span class="off" data-webtasks-id="a547352c-6655-4074">OFF</span>
</div>
<span class="onoffswitch-switch" data-webtasks-id="234bd31a-608c-48c0"></span>
</label>
</div>
</div>
<p class="rating-warning everyone" data-webtasks-id="3e4237a4-b2fa-4160">
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="b99566f4-0163-4520">https://www.wattpad.com/guidelines</a>
</p>
<p class="rating-warning writerMature hidden" data-webtasks-id="a98299e3-492e-4534">
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="9dbbc325-b8e3-4317">https://www.wattpad.com/guidelines</a>
</p>
</div>
</div>
</form>
<div class="table-of-contents hidden" data-webtasks-id="d867d1c2-3a9f-4323">
</div>
<div class="story-planner" data-webtasks-id="a2012bca-de0c-47fb">
<div class="component-wrapper" id="component-storynotes-editor-view-%2fmyworks%2fnew" data-webtasks-id="b1cc204d-7558-4468"></div>
</div>
</div>
</div>
</div>
</div>
<div id="details-modal" class="modal fade" role="dialog" data-webtasks-id="8189c4a1-a72b-489a">
<div class="modal-dialog" data-webtasks-id="961ca874-8015-44cc">
<div class="modal-content" data-webtasks-id="fe7e6e82-3a19-4384">
<div class="modal-header" data-webtasks-id="1b988849-92ff-4f3a">
<span class="close pull-right" data-dismiss="modal" data-webtasks-id="7165e2f8-abd2-4c00"><span class="fa fa-remove fa-wp-neutral-2 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="c6acda3d-d306-4ac4"></span></span>
<span class="sr-only" data-webtasks-id="6481e300-8749-4131">Close</span>
<div class="modal-title delete-part-modal hidden" data-webtasks-id="4f0e255f-4dde-4d04">Confirm Part Delete</div>
<div class="modal-title delete-published-part-modal hidden" data-webtasks-id="aa37cef2-cb7d-4ee5">Delete Part?</div>
<div class="modal-title unpublish-part-modal hidden" data-webtasks-id="5a9a011a-bd9d-4242">Unpublish Part?</div>
<div class="modal-title unpublish-story-modal hidden" data-webtasks-id="63093878-7895-465c">Unpublish Story?</div>
<div class="modal-title delete-story-modal hidden" data-webtasks-id="9189b9de-bef9-49bb">Confirm Story Delete</div>
<div class="modal-title delete-published-story-modal hidden" data-webtasks-id="62876711-b0b6-410a">Delete Story?</div>
</div>
<div class="modal-body" data-webtasks-id="bd67a833-7825-4f4a">
<div id="embed-modal" data-webtasks-id="664106d0-694c-44bc">
<h4 data-webtasks-id="f7846e07-3364-40b7">Embed this Story</h4>
<h5 data-webtasks-id="5d119a36-b93e-4a7a">Preview</h5>
<iframe width="500" height="280" data-href="https://embed.wattpad.com/story/?quote_text=" frameborder="0" allowfullscreen="" data-webtasks-id="654f78a2-dee9-4836"></iframe>
<div class="on-select embed-code" data-webtasks-id="abccb223-ae2e-4869">
<span id="embed-url" data-webtasks-id="e13bae7a-c0ee-4b44">
<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=&load-font=1" data-webtasks-id="40561538-2296-4c5a"></iframe>
<div class="hidden warning delete-published-story-modal delete-story-modal delete-published-part-modal delete-part-modal" data-webtasks-id="09662eb2-3e49-4bdd">
WARNING: This cannot be undone.
</div>
<div class="hidden question-modal unpublish-part-modal" data-webtasks-id="598ede55-fdb2-4793">
<div class="prompt" data-webtasks-id="50085b2a-bfd9-43b2">
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="1aced36a-6af7-48d9">
<button class="btn btn-long btn-teal on-do-unpublish-part" data-webtasks-id="5117811a-d1fe-4bba">Unpublish</button>
<button class="btn btn-short btn-grey" data-dismiss="modal" data-webtasks-id="7f13d3df-3b72-47ce">Cancel</button>
</div>
</div>
<div class="hidden question-modal delete-published-part-modal" data-webtasks-id="2958298f-d3db-4171">
<div class="prompt" data-webtasks-id="5627891c-403d-4ab3">
If you're unsure, it's better to <strong data-webtasks-id="99a6d8a2-2a48-40f3">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="70bdb04a-2df8-4c78">
<button class="btn btn-red on-delete-part" data-webtasks-id="4abcd290-015f-4037">Delete</button>
<button class="btn btn-teal on-do-unpublish-part" data-webtasks-id="7c421760-93f3-4e70">Unpublish</button>
<button class="btn btn-grey" data-dismiss="modal" data-webtasks-id="478aa157-eae8-4bf6">Cancel</button>
</div>
</div>
<div class="hidden question-modal delete-part-modal" data-webtasks-id="5b0e4d9f-51ee-46e5">
<div class="prompt" data-webtasks-id="48dab2c5-b9c5-4ba9">
<div data-webtasks-id="b4bccd98-435b-4068">All <strong data-webtasks-id="7c98917a-35b0-4a6d">reads</strong> for this part will be <strong data-webtasks-id="64e407f7-89e3-4feb">deleted</strong>.</div>
<div data-webtasks-id="b4ffc612-9420-4dbd">All <strong data-webtasks-id="c67196bb-554f-48ed">votes</strong> for this part will be <strong data-webtasks-id="6f6ae860-7975-4357">deleted</strong>.</div>
<div data-webtasks-id="259e15d8-c095-47d2">All <strong data-webtasks-id="309bdb15-19ce-4906">comments</strong> for this part will be <strong data-webtasks-id="68686f2b-7008-4f9f">deleted</strong>.</div>
</div>
<div class="action-buttons two-btns" data-webtasks-id="bc55d616-e077-4031">
<button class="btn btn-long btn-red on-do-delete-part" data-webtasks-id="89c69ed5-5a0a-429c">Delete Forever</button>
<button class="btn btn-short btn-grey" data-dismiss="modal" data-webtasks-id="64f06ef4-5793-4f33">Cancel</button>
</div>
</div>
<div class="hidden question-modal unpublish-story-modal" data-webtasks-id="8c6de60c-f2e5-43dd">
<div class="prompt" data-webtasks-id="5f6f53b7-99fd-4527">
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="df4e7afa-eb98-478b">
<button class="btn btn-long btn-teal on-do-unpublish-story cta" data-webtasks-id="d940ba4b-bd4f-4041">Unpublish</button>
<button class="btn btn-short btn-grey" data-dismiss="modal" data-webtasks-id="158646c0-6d17-4388">Cancel</button>
</div>
<div id="working-wrapper" class="hidden" data-webtasks-id="b149e011-df55-4723">
<div id="unpublish-working" data-webtasks-id="530bb874-0ceb-4809">Working …</div>
<div class="progress" data-webtasks-id="8795dc30-6db5-494e">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;" data-webtasks-id="ae5c4bdf-f03f-4016"></div>
</div>
</div>
</div>
<div class="hidden question-modal delete-published-story-modal" data-webtasks-id="5d3ce1ae-a208-4c8a">
<div class="prompt" data-webtasks-id="48476246-6bcc-4d4f">
If you're unsure, it's better to <strong data-webtasks-id="d98d0ebf-759a-4b2e">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="316bcf6a-5c03-450e">
<button class="btn btn-red on-delete-story" data-webtasks-id="f45eda86-03c9-47f0">Delete</button>
<button class="btn btn-teal on-unpublish-story" data-webtasks-id="10366f34-c1ef-470d">Unpublish</button>
<button class="btn btn-grey" data-dismiss="modal" data-webtasks-id="e71e17c1-c093-473e">Cancel</button>
</div>
</div>
<div class="hidden question-modal delete-story-modal" data-webtasks-id="9c44def0-4ad8-4442">
<div class="prompt" data-webtasks-id="56a49f89-41e9-4262">
<div data-webtasks-id="964aa434-0d46-47b3">All <strong data-webtasks-id="e3912c7f-03f9-4e6c">parts</strong> for this story will be <strong data-webtasks-id="00521c65-dc3a-42f9">deleted</strong>.</div>
<div data-webtasks-id="f5cb4b53-d05e-4aba">All <strong data-webtasks-id="543c8f5c-1e32-4a65">reads</strong> for this story will be <strong data-webtasks-id="0a25e009-64ea-45ef">deleted</strong>.</div>
<div data-webtasks-id="a96932af-a2ca-42b2">All <strong data-webtasks-id="29bb6090-ac1d-4b0f">votes</strong> for this story will be <strong data-webtasks-id="181fab3a-889e-48d5">deleted</strong>.</div>
<div data-webtasks-id="a62ad422-cad5-46e9">All <strong data-webtasks-id="8640af40-adcf-4d68">comments</strong> for this story will be <strong data-webtasks-id="ca3b0cc0-6b82-4bd1">deleted</strong>.</div>
</div>
<form id="delete-story-form" data-webtasks-id="c0169951-2185-41ef">
<div class="hidden alert alert-danger" role="alert" data-webtasks-id="ba634070-87f5-44d8">
<span class="fa fa-warning fa-wp-error-1 " aria-hidden="true" style="font-size:16px;" data-webtasks-id="1964c0fe-108a-49c1"></span> <div data-webtasks-id="557ef473-94a7-4678">Please correct the following</div>
<ul class="messages" data-webtasks-id="189cb0c7-c2a5-4a90"></ul>
</div>
<div class="form-group" data-webtasks-id="03ab73c2-d432-4183">
<input id="username" class="form-control input-lg enable" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" placeholder="Username" data-webtasks-id="828f2653-342d-44d4">
</div>
<div class="form-group last" data-webtasks-id="8a15ec33-9a85-48bf">
<input id="confirm-username" class="form-control input-lg enable" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" placeholder="Confirm Username" data-webtasks-id="adc1b9ba-5fe3-4ea5" spellcheck="false" data-ms-editor="true">
</div>
<div class="action-buttons two-btns" data-webtasks-id="fe4d94aa-ab7e-4a55">
<input type="submit" class="btn btn-long btn-red" value="Delete Forever" data-webtasks-id="d215ca61-ff77-41f1">
<button class="btn btn-short btn-grey" data-dismiss="modal" data-webtasks-id="82ce6042-eecb-4126">Cancel</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer id="footer-container" data-webtasks-id="05637cec-7f6b-42a4">
<div id="footer" data-webtasks-id="fff410fd-2297-4368">
<ul class="footer-list main" aria-label="Footer Links" data-webtasks-id="6980c033-fef3-40cf">
<li data-webtasks-id="582ccdf2-a484-4a2a"><a href="/paidstories" aria-label="Paid Stories" data-webtasks-id="c46d1f7b-0197-4750">Paid Stories</a></li>
<li data-webtasks-id="d85f5552-5a16-4278"><a class="on-premium" href="/premium" aria-label="Try Premium" data-webtasks-id="cef2786d-9971-44a8">Try Premium</a></li>
<li data-webtasks-id="8bd4f055-f3ee-4812"><a href="/getmobile" aria-label="Get the App" data-webtasks-id="1e67f487-af8e-47a5">Get the App</a></li>
<li data-webtasks-id="5385a19b-a8e3-4dbf"><a href="/settings/language?jq=true" class="on-language" rel="nofollow" aria-label="Language" data-webtasks-id="e37fc1c5-c31d-4f99">Language</a></li>
<li data-webtasks-id="d7118b07-dbe8-4f68"><a href="https://creators.wattpad.com/" aria-label="Writers" data-webtasks-id="50c62fe7-e824-440f">Writers</a></li>
<li aria-hidden="true" role="none" data-webtasks-id="efd948e4-5add-4252">|</li>
<li data-webtasks-id="db32fccd-1c68-409d"><a href="https://brands.wattpad.com" aria-label="Brand Partnerships" data-webtasks-id="0a5a051d-983f-445c">Brand Partnerships</a></li>
<li data-webtasks-id="345f9256-fcac-4d19"><a href="https://company.wattpad.com/jobs" aria-label="Jobs" data-webtasks-id="44c9fbd9-b9ab-454f">Jobs</a></li>
<li data-webtasks-id="66b42b6b-24fd-4d5a"><a href="https://company.wattpad.com/press" aria-label="Press" data-webtasks-id="ef95f522-74ba-4d5a">Press</a></li>
</ul>
<ul class="footer-list legal" aria-label="Legal Footer Links" data-webtasks-id="24f82650-4182-4e74">
<li data-webtasks-id="a6388028-d8ae-439b"><a href="/terms" rel="nofollow" aria-label="Terms" data-webtasks-id="4316d3e9-0a7e-4699">Terms</a></li>
<li data-webtasks-id="045e40f8-6ec3-40a1"><a href="/privacy" rel="nofollow" aria-label="Privacy" data-webtasks-id="2c306c3a-674d-4b24">Privacy</a></li>
<li data-webtasks-id="7f1d597d-ff3f-4453"><a href="https://policies.wattpad.com/accessibility" rel="nofollow" aria-label="Accessibility" data-webtasks-id="d1d951a9-0459-4a5b">Accessibility</a></li>
<li data-webtasks-id="a7f1ef8b-28cf-4ce3"><a href="https://support.wattpad.com" aria-label="Help" data-webtasks-id="0df39795-8f75-4fb2">Help</a></li>
<li data-webtasks-id="de2a889e-9f7a-477c">© 2023 Wattpad</li>
</ul>
</div>
</footer>
<div id="interstitial-container" class="container" data-webtasks-id="6f36e079-09e6-468d"></div>
<div id="toast-container" data-webtasks-id="19baae15-6e3a-47b7"></div>
<div id="react-popover" data-webtasks-id="dfefe951-62ef-4c91"></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="ad4fb3c2-2a5e-4931"> </div>
<script type="text/javascript" data-webtasks-id="d3af43a1-36ff-4a6f">
window.prefetched = {};
</script>
<script type="text/javascript" data-webtasks-id="cd41cdcd-adce-4d5a">
(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 = 'b298a986e40fc7e968e6dc5dbb231ba51c45b306';
wattpad.pageLoadTimestamp = Date.now();
wattpad.maxTimeSinceAppLoadInHours = 24;
wattpad.testGroups = {"NEW_STORY_DETAILS":true,"HFC_LIMIT_INCREASE":true,"ADS_DATADOG_METRICS":false,"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,"WRITERS_PORTAL":true,"GDPR_USER":false,"GDPR_ADS_EXPERIENCE":false,"OUTSTREAM_ELIGIBLE":false,"PAID_ROW_TAG_PAGES":true,"DISABLE_COMMENT_CACHE":false,"SENTIMENT_SURVEY":false,"SURVEY_DEVELOPMENT":false,"ADDSURVEYGIZMOCOOKIE":false,"ENGLISH_READER":true,"LIVERAMP_ENABLED":false,"DELAY_ADS":false,"EXCLUDE_PREBID_PARTNERS":false,"NEW_SEARCH_LAYOUT":false,"SPECIAL_AD_EXEMPT":false,"ENABLE_BLOCKTHROUGH":false,"PAID_PART_CONFIG_ENABLED":false,"CONTINUE_READING":false,"PREBID_BETA":false,"USE_AFP":false,"TOP_10_ROW":false,"ROTATING_CATALOG":false,"WEB_COIN_PURCHASING":false,"WEB_PAYMENTS":false,"CONTEST_TAG":false,"WATTYS_TAG":false};
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":18,"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.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,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,314764186,330900398,335129229,159191461,255919585,272754755,295246328,317522253,339432163,292895162,118719964,152590481,119741668,129671139,157269484,320742009,183574689,286759081,286742747,328825548,334310388,320479684,276967672,310598262];
wattpad.wattysActiveKey = 'wattys2023';
}());
</script>
<script type="text/javascript" data-webtasks-id="c5e03e4e-db08-4ca5">
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" id="" data-webtasks-id="cd698c1e-e161-47bd">(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="ec6b87a5-9985-4bbe">
<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="acb6bad2-209d-426d">!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="a0337d9a-0c48-4bb4"><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="81c58bd4-7d01-4949"></script><script type="text/javascript" data-webtasks-id="b731ea27-6ba0-47c1">
window.dependencyFailure = false;
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js" crossorigin="anonymous" data-webtasks-id="8858a631-31e6-4304"></script>
<script type="text/javascript" data-webtasks-id="60659012-2abe-4d70">
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="e0eeba0f-5f80-48ee">
!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="2dc691ee-ea74-49ba">
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="ab2e5464-6412-4e0c"></script>
<script data-webtasks-id="14f027cf-0eeb-4420">
moment.locale('en_US');
</script>
<script type="text/javascript" src="//static.wattpad.com/js/desktop-web/app.d4fead2f.js" id="desktop-web" crossorigin="anonymous" data-webtasks-id="3d7276d3-6e0a-43e6"></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="a90b51e7-ff55-4fe4"></script>
<script type="text/javascript" src="//static.wattpad.com/js/react-bundle.desktop-web-create.31562dc5.js" id="desktop-web-create" crossorigin="anonymous" data-webtasks-id="5df33b68-44f3-4a12"></script>
<script type="text/javascript" src="//static.wattpad.com/js/react-bundle.deps.122d0950.js" id="react-dependencies" crossorigin="anonymous" data-webtasks-id="f2111423-e9fa-4f73"></script>
<script type="text/javascript" src="//static.wattpad.com/js/react-bundle.components.5f21c61e.js" id="react-components" crossorigin="anonymous" data-webtasks-id="fd914c77-da15-4630"></script>
<script type="text/javascript" data-webtasks-id="e59d8010-5da8-468e">
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},"paidStoriesCatalog":{"featuredList":[],"paidStoriesTags":[],"paidStoriesListByTag":{},"paidStoriesListOffset":0,"isLoadingPaidStories":false,"hasTagsLoaded":false},"premiumPicksCatalog":{"title":"","stories":[],"isLoading":true,"loadError":null},"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="0bab0cd2-45c9-469c">
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="02c9d126-59ab-4677">
!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.bccd513f.js","te");
</script>
<script type="text/javascript" data-webtasks-id="f4dacfd0-2cfc-414e">
window.te.push('create', 'desktop-web', null, window.wattpad.user ? window.wattpad.user.id : null);
</script>
<script type="text/javascript" data-webtasks-id="2b0ad05a-c128-45da">
(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="0b379621-37f2-4884">
(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="54e59453-4734-4d90">
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="b2a23d2c-ae82-4720">
!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="2e75dfba-57ea-4f5e"></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.690302158230625" style="display: none;" data-webtasks-id="63bb90e0-00db-42d6"><input type="hidden" name="rt.start" value="navigation" data-webtasks-id="95e375b2-cd55-4808"><input type="hidden" name="rt.tstart" value="1692340328838" data-webtasks-id="27bde419-1d49-439c"><input type="hidden" name="rt.cstart" value="1692340328808" data-webtasks-id="8ea3bafc-8b14-4180"><input type="hidden" name="rt.bstart" value="1692340331012" data-webtasks-id="1dd6a3d4-f576-43e1"><input type="hidden" name="rt.end" value="1692340333193" data-webtasks-id="430b151d-e199-4ad7"><input type="hidden" name="t_resp" value="413" data-webtasks-id="dc772c76-2a31-4ae7"><input type="hidden" name="t_page" value="3942" data-webtasks-id="f6387139-4b9f-40bf"><input type="hidden" name="t_done" value="4355" data-webtasks-id="07b37b96-4b6b-41b8"><input type="hidden" name="r" value="https://www.wattpad.com/home" data-webtasks-id="a4ba0e4d-fe78-43a2"><input type="hidden" name="nt_red_cnt" value="0" data-webtasks-id="801c39d5-aee6-4949"><input type="hidden" name="nt_nav_type" value="0" data-webtasks-id="f5bf4e91-b454-444a"><input type="hidden" name="nt_nav_st" value="1692340328838" data-webtasks-id="d397296c-5b8d-4cf7"><input type="hidden" name="nt_red_st" value="0" data-webtasks-id="2e667573-7fdc-44dc"><input type="hidden" name="nt_red_end" value="0" data-webtasks-id="c681f8ab-b808-4569"><input type="hidden" name="nt_fet_st" value="1692340328935" data-webtasks-id="916f5e5f-c200-4839"><input type="hidden" name="nt_dns_st" value="1692340328935" data-webtasks-id="9eaf975e-282a-4e52"><input type="hidden" name="nt_dns_end" value="1692340328935" data-webtasks-id="9a061f9f-0545-436c"><input type="hidden" name="nt_con_st" value="1692340328935" data-webtasks-id="8fb25c7d-b177-46c9"><input type="hidden" name="nt_con_end" value="1692340328935" data-webtasks-id="23cc0c16-bfb4-4b5b"><input type="hidden" name="nt_req_st" value="1692340328945" data-webtasks-id="a9d61bc6-9726-425c"><input type="hidden" name="nt_res_st" value="1692340329251" data-webtasks-id="02422e0f-0b9e-494a"><input type="hidden" name="nt_res_end" value="1692340329266" data-webtasks-id="c8fd37cf-9753-4423"><input type="hidden" name="nt_domloading" value="1692340329305" data-webtasks-id="65820834-1356-41d2"><input type="hidden" name="nt_domint" value="1692340332989" data-webtasks-id="a2dde4e7-eb5c-4138"><input type="hidden" name="nt_domcontloaded_st" value="1692340332990" data-webtasks-id="3d9c3fd2-1eb3-4277"><input type="hidden" name="nt_domcontloaded_end" value="0" data-webtasks-id="cc15be09-03c5-4285"><input type="hidden" name="nt_domcomp" value="0" data-webtasks-id="028d0cfe-f979-4a5d"><input type="hidden" name="nt_load_st" value="0" data-webtasks-id="473c645f-db60-4008"><input type="hidden" name="nt_load_end" value="0" data-webtasks-id="50ee45c0-bf08-4bc5"><input type="hidden" name="nt_unload_st" value="1692340329291" data-webtasks-id="78c09f03-4ae2-4263"><input type="hidden" name="nt_unload_end" value="1692340329291" data-webtasks-id="00e0d358-67ab-4f2a"><input type="hidden" name="nt_spdy" value="1" data-webtasks-id="94fee75a-b7a7-430a"><input type="hidden" name="nt_cinf" value="h2" data-webtasks-id="449c5555-0310-4e43"><input type="hidden" name="nt_first_paint" value="1692340330.75" data-webtasks-id="95703736-6376-4c7c"><input type="hidden" name="u" value="https://www.wattpad.com/myworks/new" data-webtasks-id="5df6071d-1527-476a"><input type="hidden" name="v" value="0.9.1454699113" data-webtasks-id="3edba074-35d3-4e82"><input type="hidden" name="vis.st" value="visible" data-webtasks-id="651fa404-ac2a-4b4b"></form></body><editor-card style="position:absolute;top:0px;left:0px;z-index:auto;display: block !important" data-webtasks-id="8a2492a5-7a94-424d"><div dir="ltr" style="all: initial;" data-webtasks-id="a6e26807-1266-4e18"><div data-webtasks-id="15da1528-b979-4e86" 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; scroll-timeline: 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; timeline-scope: 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-timeline: initial; view-timeline-inset: 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;"><link rel="stylesheet" href="chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css" data-webtasks-id="496f1caf-f074-4fcf"><div data-webtasks-id="92fe5ae3-d80c-4957" style="all: initial;"></div></div><div data-webtasks-id="899f69dc-f520-4d45" 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; scroll-timeline: 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; timeline-scope: 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-timeline: initial; view-timeline-inset: 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;"><link rel="stylesheet" href="chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css" data-webtasks-id="fea1c077-418b-48b9"></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; scroll-timeline: 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; timeline-scope: 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-timeline: initial; view-timeline-inset: 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="2ddbb3d3-ef7c-4938"><link rel="stylesheet" href="chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css" data-webtasks-id="9ec66d27-ce5d-4c98"></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; scroll-timeline: 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; timeline-scope: 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-timeline: initial; view-timeline-inset: 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="ecbe2ed5-51e2-4eaf"><link rel="stylesheet" href="chrome-extension://gpaiobkfhnonedkhhfjpmhdalgeoebfa/fonts/fabric-icons.css" data-webtasks-id="a7b2104f-4f2e-4252"></div></div></editor-card> |