cypherine

cy/op

Oct 19th, 2021 (edited)
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 58.76 KB | None | 0 0
  1. <html>
  2. <!DOCTYPE html>
  3. <script type="text/javascript">
  4. // <![CDATA[
  5. var colour="#ff00f0";
  6. var sparkles=120;
  7.  
  8. /****************************
  9. * Tinkerbell Magic Sparkle *
  10. * (c) 2005 mf2fm web-design *
  11. * http://www.mf2fm.com/rv *
  12. * DON'T EDIT BELOW THIS BOX *
  13. ****************************/
  14.  
  15. /*CREDS! https://shuvee.tumblr.com and ^^ for the sparkly cursor thing!*/
  16. var x=ox=400;
  17. var y=oy=300;
  18. var swide=800;
  19. var shigh=600;
  20. var sleft=sdown=0;
  21. var tiny=new Array();
  22. var star=new Array();
  23. var starv=new Array();
  24. var starx=new Array();
  25. var stary=new Array();
  26. var tinyx=new Array();
  27. var tinyy=new Array();
  28. var tinyv=new Array();
  29.  
  30. window.onload=function() { if (document.getElementById) {
  31. var i, rats, rlef, rdow;
  32. for (var i=0; i<sparkles; i++) {
  33. var rats=createDiv(3, 3);
  34. rats.style.visibility="hidden";
  35. document.body.appendChild(tiny[i]=rats);
  36. starv[i]=0;
  37. tinyv[i]=0;
  38. var rats=createDiv(5, 5);
  39. rats.style.backgroundColor="transparent";
  40. rats.style.visibility="hidden";
  41. var rlef=createDiv(1, 5);
  42. var rdow=createDiv(5, 1);
  43. rats.appendChild(rlef);
  44. rats.appendChild(rdow);
  45. rlef.style.top="2px";
  46. rlef.style.left="0px";
  47. rdow.style.top="0px";
  48. rdow.style.left="2px";
  49. document.body.appendChild(star[i]=rats);
  50. }
  51. set_width();
  52. sparkle();
  53. }}
  54.  
  55. function sparkle() {
  56. var c;
  57. if (x!=ox || y!=oy) {
  58. ox=x;
  59. oy=y;
  60. for (c=0; c<sparkles; c++) if (!starv[c]) {
  61. star[c].style.left=(starx[c]=x)+"px";
  62. star[c].style.top=(stary[c]=y)+"px";
  63. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  64. star[c].style.visibility="visible";
  65. starv[c]=50;
  66. break;
  67. }
  68. }
  69. for (c=0; c<sparkles; c++) {
  70. if (starv[c]) update_star(c);
  71. if (tinyv[c]) update_tiny(c);
  72. }
  73. setTimeout("sparkle()", 40);
  74. }
  75.  
  76. function update_star(i) {
  77. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  78. if (starv[i]) {
  79. stary[i]+=1+Math.random()*3;
  80. if (stary[i]<shigh+sdown) {
  81. star[i].style.top=stary[i]+"px";
  82. starx[i]+=(i%5-2)/5;
  83. star[i].style.left=starx[i]+"px";
  84. }
  85. else {
  86. star[i].style.visibility="hidden";
  87. starv[i]=0;
  88. return;
  89. }
  90. }
  91. else {
  92. tinyv[i]=50;
  93. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  94. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  95. tiny[i].style.width="2px";
  96. tiny[i].style.height="2px";
  97. star[i].style.visibility="hidden";
  98. tiny[i].style.visibility="visible"
  99. }
  100. }
  101.  
  102. function update_tiny(i) {
  103. if (--tinyv[i]==25) {
  104. tiny[i].style.width="1px";
  105. tiny[i].style.height="1px";
  106. }
  107. if (tinyv[i]) {
  108. tinyy[i]+=1+Math.random()*3;
  109. if (tinyy[i]<shigh+sdown) {
  110. tiny[i].style.top=tinyy[i]+"px";
  111. tinyx[i]+=(i%5-2)/5;
  112. tiny[i].style.left=tinyx[i]+"px";
  113. }
  114. else {
  115. tiny[i].style.visibility="hidden";
  116. tinyv[i]=0;
  117. return;
  118. }
  119. }
  120. else tiny[i].style.visibility="hidden";
  121. }
  122.  
  123. document.onmousemove=mouse;
  124. function mouse(e) {
  125. set_scroll();
  126. y=(e)?e.pageY:event.y+sdown;
  127. x=(e)?e.pageX:event.x+sleft;
  128. }
  129.  
  130. function set_scroll() {
  131. if (typeof(self.pageYOffset)=="number") {
  132. sdown=self.pageYOffset;
  133. sleft=self.pageXOffset;
  134. }
  135. else if (document.body.scrollTop || document.body.scrollLeft) {
  136. sdown=document.body.scrollTop;
  137. sleft=document.body.scrollLeft;
  138. }
  139. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  140. sleft=document.documentElement.scrollLeft;
  141. sdown=document.documentElement.scrollTop;
  142. }
  143. else {
  144. sdown=0;
  145. sleft=0;
  146. }
  147. }
  148.  
  149. window.onresize=set_width;
  150. function set_width() {
  151. if (typeof(self.innerWidth)=="number") {
  152. swide=self.innerWidth;
  153. shigh=self.innerHeight;
  154. }
  155. else if (document.documentElement && document.documentElement.clientWidth) {
  156. swide=document.documentElement.clientWidth;
  157. shigh=document.documentElement.clientHeight;
  158. }
  159. else if (document.body.clientWidth) {
  160. swide=document.body.clientWidth;
  161. shigh=document.body.clientHeight;
  162. }
  163. }
  164.  
  165. function createDiv(height, width) {
  166. var div=document.createElement("div");
  167. div.style.position="absolute";
  168. div.style.height=height+"px";
  169. div.style.width=width+"px";
  170. div.style.overflow="hidden";
  171. div.style.backgroundColor=colour;
  172. return (div);
  173. }
  174. function tab(obj, motion){
  175. if(motion == "open"){
  176. id = obj.getAttribute("post-id")
  177. obj.setAttribute("class","postbox_tab");
  178. document.getElementById("closeNotes_" + id).setAttribute("class", "postbox_tab unselected_tab");
  179. document.getElementById("postContent_" + id).setAttribute("style", "display: none;");
  180. document.getElementById("postNotes_" + id).setAttribute("style", "display: block;");
  181. }else{
  182. id = obj.getAttribute("post-id")
  183. obj.setAttribute("class","postbox_tab");
  184. document.getElementById("openNotes_" + id).setAttribute("class", "postbox_tab unselected_tab");
  185. document.getElementById("postNotes_" + id).setAttribute("style", "display: none;");
  186. document.getElementById("postContent_" + id).setAttribute("style", "display: block;");
  187. }
  188. }
  189. // ]]>
  190. </script>
  191.  
  192. <head>
  193. <title>cypherine</title> <!--title in the tab-->
  194. <link rel="shortcut icon" href="{Favicon}"> <!--icon in the tab-->
  195. <link rel="altertnate" type="application/rss+xml" href="{RSS}">
  196.  
  197. <!--scripts + stylesheets-->
  198. <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600i,800|Roboto" rel="stylesheet">
  199. <!--icon font by fontawsome | https://fontawesome.io/icons/-->
  200. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.1/css/all.css" integrity="sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ" crossorigin="anonymous">
  201.  
  202. <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.6/SmoothScroll.min.js"></script>
  203. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  204. <script src="https://static.tumblr.com/ihhnoee/12Cotb0p2/jquery.style-my-tooltips.js"></script>
  205.  
  206. <script>
  207. (function($){
  208. $(document).ready(function(){
  209. $("a[title]").style_my_tooltips({
  210. tip_follows_cursor:false,
  211. tip_delay_time:100,
  212. tip_fade_speed:300,
  213. attribute:"title"
  214. });
  215. });
  216. })(jQuery);
  217. </script>
  218. <style>
  219. #s-m-t-tooltip { /*what shows up when you hover over something with a title, such as the credit in the corner*/
  220. max-width:175px;
  221. margin:10px 14px 7px 10px;
  222. padding:5px 7px;
  223. background-color:#fff;/*tooltip bg*/
  224. color:#888;/*tooltip text*/
  225. border:solid 1px #eee;/*tooltip border color*/
  226. font-family:ms gothic;
  227. font-size:10px;
  228. text-transform:uppercase;
  229. letter-spacing:1px;
  230. line-height:10px;
  231. z-index:99999999;
  232.  
  233. }
  234.  
  235. /*iframe fix by @cyantists | cyantists.tumblr.com/post/163728517915/fix-tumblrs-new-controls-i-have-come-up-with-3*/
  236. iframe.tmblr-iframe { visibility:hidden; }
  237.  
  238. /*scrollbar customize*/
  239. ::-webkit-scrollbar { height:2px; width:3px; background:#fff;/*scrollbar bg*/ }
  240. ::-webkit-scrollbar-thumb { background:#888; /*scrollbar color*/ border-radius:3px; -webkit-border-radius:3px; }
  241.  
  242. /*coloring for what happens when you highlight text*/
  243. ::-webkit-selection { background:#eee; color:#171717; }
  244. ::-moz-selection { background:#eee; color:#171717; }
  245. ::-ms-selection { background:#eee; color:#171717; }
  246. ::-o-selection { background:#eee; color:#171717; }
  247. ::selection { background:#eee; color:#171717; }
  248.  
  249. /*general*/
  250. body {
  251. background-image: url(https://64.media.tumblr.com/b4a9d3a3453d2bfbc1ad99175622b3e8/tumblr_inline_miqn3kJquq1qz4rgp.png);
  252. background-color:#fbfbfb; /*background color*/
  253. font-family:ms gothic;
  254. font-size:11px;
  255. overflow-x:hidden;
  256. }
  257.  
  258. a {
  259. text-decoration: none;
  260. -webkit-transition: all .35s ease-in-out;
  261. -moz-transition: all .35s ease-in-out;
  262. -ms-transition: all .35s ease-in-out;
  263. -o-transition: all .35s ease-in-out;
  264. transition: all .35s ease-in-out;
  265. }
  266.  
  267. /*CURSOR*/
  268. *, body, a, a:hover {cursor: url(https://64.media.tumblr.com/4c0582589bd3f4dbc987c072aff26068/tumblr_inline_mfn7u0MPDe1qid2nw.png), auto;}
  269. /*end of custom cursor*/
  270.  
  271. #galaxy { width:439px; margin:170px auto; }
  272.  
  273. #sol { /*title*/
  274. color:#b031eb; /*title color*/
  275. font-weight:800;
  276. letter-spacing:10px; font-size:30px;
  277. text-align:left; text-transform:uppercase;
  278. }
  279.  
  280. #comet {
  281. width:100px; height:100px;
  282. padding:5px;
  283. background:#fff; /*icon box background color*/
  284. border:solid 1px #dbdbdb; /*icon box border color*/
  285. box-shadow:1px 1px #000000; /*icon box shadow color*/
  286. position:fixed;
  287. }
  288.  
  289. #comet img { width:100px; height:100px; }
  290.  
  291. #earth {
  292. width:290px; height:100px;
  293. margin-left:130px; padding:5px;
  294. background:#fff; /*info box background color*/
  295. border:solid 1px #dbdbdb; /*info box border color*/
  296. box-shadow:1px 1px #000000; /*info box shadow color*/
  297. position:fixed;
  298. }
  299.  
  300. /*mini info accent color*/
  301. #earth c { color:#f518e2; text-transform:uppercase; }
  302. #earth p { margin-top:4px; margin-bottom:13px; }
  303.  
  304. /*line colors; best if matched with border*/
  305. #vl1 { margin-top:-5px; margin-left:145px; stroke:#dbdbdb; position:fixed; }
  306. #hl1 { margin-top:11px; margin-left:-5px; stroke:#dbdbdb; position:fixed; }
  307. #hl2 { margin-top:39px; margin-left:-5px; stroke:#dbdbdb; position:fixed; }
  308. #hl3 { margin-top:67px; margin-left:-5px; stroke:#dbdbdb; position:fixed; }
  309.  
  310. #box {
  311. width:139px; height:100px;
  312. margin-top:-100px; margin-left:141px; padding:5px;
  313. position:fixed;
  314. }
  315.  
  316. #box h1 {
  317. margin-left:11px; margin-bottom:-2px; color:#f518e2; /*playlist title color*/
  318. font-size:11px; font-weight:600; font-style:italic;
  319. text-align:left; text-transform:uppercase;
  320. }
  321.  
  322. #box li { margin-left:-20px; line-height:120%; list-style: none; }
  323. #box li:before {
  324. content:"♡"; /* change update tab bullet points here | use something simple like a • or a character from an alt+ code : you can also use an emoji, just be sure to alter the line height above (standard is 120%; increase to anywhere between 130% and 150% if emojis are overlapping*/
  325. padding-right: 5px;
  326. }
  327.  
  328. #box a { color:#f518e2; } /* links color*/
  329. #box a:hover { color:#b031eb; } /* links hover color*/
  330.  
  331. #luna {
  332. width:420; height:68px;
  333. margin-top:130px; padding:5px;
  334. background:#fff; /*description background color*/
  335. border:solid 1px #dbdbdb; /*description border color*/
  336. box-shadow:1px 1px #000000; /*description shadow color*/
  337. text-align:justify;
  338. position:relative;
  339. }
  340.  
  341. #luna a { color:#f518e2; } /*description link color*/
  342. #luna a:hover { color:#b031eb; } /*link hover color*/
  343. #luna i, b, u { color:#b031eb; } /*italics, bold, underline color*/
  344.  
  345. #stars {margin-top:20px; font-size:17px; text-align:center; position:relative;}
  346.  
  347. #stars a { margin-left:30px; margin-right:30px;
  348. color:#b031eb; } /*icon link color*/
  349. #stars a:hover { color:#b031eb; } /*icon link hover color*/
  350.  
  351. #saturn {
  352. margin-top:15px; color:#ffffff; /*quote text color*/
  353. font-size:10px; text-align:center;
  354. line-height:120%; position:relative;
  355. }
  356.  
  357. #saturn a,a:hover { color:#b031eb; } /*quote link color + hover color*/
  358.  
  359. /*remember: don't remove or edit ♡ */
  360. #credit {
  361. right:0; bottom:0; padding:9px 10px;
  362. font-size:10px; position:fixed;
  363. -webkit-transition: all .35s ease-in-out;
  364. -moz-transition: all .35s ease-in-out;
  365. -ms-transition: all .35s ease-in-out;
  366. -o-transition: all .35s ease-in-out;
  367. transition: all .35s ease-in-out;
  368. -webkit-transform: scaleX(-1);
  369. -moz-transform: scaleX(-1);
  370. -ms-transform: scaleX(-1);
  371. -o-transform: scaleX(-1);
  372. transform: scaleX(-1);
  373. }
  374. #sidemoon {
  375. width:70px; max-height:500px; float:right;
  376. background:#fff;
  377. right:5; bottom:50; padding:9px 10px;
  378. text-align:right; text-transform:uppercase;
  379. margin-right:17px;
  380. box-shadow:1px 1px #000000;
  381.  
  382. }
  383.  
  384. #credit:hover {
  385. -webkit-transform: scale(1.3) scaleX(-1);
  386. -moz-transform: scale(1.3) scaleX(-1);
  387. -ms-transform: scale(1.3) scaleX(-1);
  388. -o-transform: scale(1.3) scaleX(-1);
  389. transform: scale(1.3) scaleX(-1);
  390. }
  391.  
  392. #credit a { color:#171717; text-decoration:none; }
  393.  
  394. #cbox {
  395. width: 200px;
  396. left: 40px;
  397. bottom: -505px;
  398. z-index: 9999;
  399. position: fixed;
  400. -webkit-transition: all 0.8s ease-in-out;
  401. -moz-transition: all 0.8s ease-in-out;
  402. -o-transition: all 0.8s ease-in-out;
  403. -ms-transition: all 0.8s ease-in-out;
  404. transition: all 0.8s ease-in-out;
  405. border: 5px solid #fff;
  406. border-top-left-radius: 10px;
  407. border-top-right-radius: 10px;
  408. box-shadow: 0px 0px 0px 1px #fedbdb;
  409. }
  410.  
  411. #cbox:hover {
  412. bottom: 0px;
  413. }
  414.  
  415. #cboxtitle {
  416. width: 190px;
  417. height: 17px;
  418. background-color: #ffffff;
  419. padding: 8px 5px 5px 5px;
  420. text-align: center;
  421. font-size: 14px;
  422. font-family: 'Josefin Sans', sans-serif;
  423. font-weight: 300;
  424. letter-spacing: 10px;
  425. color: #db9494;
  426. text-shadow: 1px 1px 1px #ffffff;
  427. text-transform: uppercase;
  428. }
  429.  
  430. #cboxdesc {
  431. width: 190px;
  432. height: 40px;
  433. padding: 5px;
  434. background-color: #ffffff;
  435. overflow: auto;
  436. font-family: 'Roboto', sans-serif;
  437. font-size: 9px;
  438. text-align: justify;
  439. letter-spacing: 1px;
  440. color: #a19090;
  441. }
  442.  
  443. .button{
  444. border: #DFDFDF outset 2px;
  445. color: black;
  446. background: #f5f5f5;
  447. text-align: center;
  448. }
  449.  
  450. .button:hover {
  451. background-color: #d87dff;
  452. color: white;
  453. }
  454.  
  455. .winbox{
  456. background-color: #fff;
  457. color: black;
  458. border: #DFDFDF outset 2px;
  459. font-family: 'Microsoft Sans Serif';
  460. font-size: 11px;
  461. background-repeat: no-repeat;
  462. background-color: {color:Background Color};
  463. height:500px;overflow:auto;
  464.  
  465. }
  466.  
  467. .winbox .winbox_header{
  468. background-color: {color:Background Color};
  469. vertical-align: middle;
  470. padding-left: 2px;
  471. padding-right: 2px;
  472. padding-top: 3px;
  473. font-size: 12px;
  474.  
  475. }
  476.  
  477. .winbox .winbox_header .winbox_title{
  478. vertical-align: middle;
  479. text-decoration: none;
  480. }
  481.  
  482. .winbox .winbox_header .winbox_title .winbox_titletext{
  483. display: inline-block;
  484. margin-top: 2px;
  485. width: calc(100% - 48px);
  486. color: {color:Title Text Color};
  487. }
  488.  
  489. .winbox .winbox_header .winbox_title .winbox_titletext.first_caps::first-letter{
  490. text-transform: uppercase;
  491. }
  492. .winbox .winbox_header .winbox_icon{
  493. position: absolute;
  494. width: 10px;
  495. height: 10px;
  496. top: 2px;
  497. right: 2px;
  498. text-align: center;
  499. font-size: 10px;
  500. }
  501. .winbox .winbox_header .winbox_icon.winbox_like{
  502. right: 34px;
  503. }
  504.  
  505. .winbox .winbox_header .winbox_icon.winbox_reblog{
  506. right: 18px;
  507. }
  508. .aboutbox{
  509. position: fixed;
  510. top:10%;
  511. left:50px;
  512. width: 350px;
  513. }
  514.  
  515.  
  516. .aboutbox_content{
  517. padding-top: 15px;
  518. max-width: 245px;
  519. font-size: 11px;
  520. }
  521.  
  522.  
  523.  
  524.  
  525. </style>
  526. </head>
  527. <body>
  528.  
  529. <div id="galaxy">
  530. <div id="sol">cypherine</div> <!--title edit-->
  531. <div id="comet"> <!--url for icon-->
  532. <a href="/"><img src="https://static.tumblr.com/eff2ad31ed6bd6f9e0c13a6a733406e3/mjvcmrg/42Volx0v7/tumblr_static_egaz8m27jagoo44o0wksgkg8k.gif" width="1" length="20"></a>
  533. </div><!--end comet-->
  534. <div id="earth">
  535. <div id="vl1"><svg height="110" width="1"><line x1="0" y1="0" x2="0" y2="289" style="stroke-width:5" /></svg></div>
  536. <div id="hl1"><svg height="1" width="151"><line x1="0" y1="0" x2="289" y2="0" style="stroke-width:5" /></svg></div>
  537. <div id="hl2"><svg height="1" width="151"><line x1="0" y1="0" x2="289" y2="0" style="stroke-width:5" /></svg></div>
  538. <div id="hl3"><svg height="1" width="151"><line x1="0" y1="0" x2="289" y2="0" style="stroke-width:5" /></svg></div>
  539.  
  540. <!--short bio info-->
  541. <p><c>name:</c> Cypherine</p>
  542. <p><c>birthday:</c> 12.06.05</p>
  543. <p><c>age:</c> 15</p>
  544. <p><c>mbti:</c> <a href="https://www.cbr.com/mbti-anime-characters-intps/">INTP-T</a></p>
  545.  
  546. <div id="box">
  547. <h1><img src="https://cdn.discordapp.com/attachments/830436421910134808/899661034170753124/ezgif-2-4f56d408f132.gif"></img></h1> <!--playlist links-->
  548. <ul>
  549. <li><a href="https://myanimelist.net/profile/606cypherine">MAL</a> 606cypherine</li>
  550. <li><a href="https://www.instagram.com/cypher_oh_seven/">IG</a> cypher_oh_seven
  551. <li><a href="https://www.youtube.com/watch?v=sgdPlDG1-8k&ab_channel=Eve">DSC</a> Cypherine#4832</li>
  552. <li><a href="https://cypherine.tumblr.com/op">ONE PIECE</a> !!</li>
  553. </ul>
  554. </div><!--end box-->
  555. </div><!--end earth-->
  556.  
  557. <div id="luna"> <!--description-->
  558. <br>
  559. Hi random user browsing through this website.
  560. <br> Thanks for stopping by!! I'm Cy and I'd love to be friends with u so feel free to send a message on any of my socials ☆ (Or just drop something at the chatbox)<i> Chatbox found at the bottom left corner</i>
  561. </div><!--end luna-->
  562.  
  563. <div id="stars"><!--icon links-->
  564. <a href="https://cypherine.tumblr.com/" title="home"><i class="fas fa-home"></i></a>
  565. <a href="https://cypherine.tumblr.com/askcy" title="ask"><i class="fas fa-paper-plane"></i></a>
  566. <a href="https://cypherine.tumblr.com/stuff" title="あの娘シークレット"><i class="fas fa-bars"></i></a>
  567.  
  568. </div><!--end stars-->
  569.  
  570. <div id="saturn"><!--bottom quote-->
  571. <p>うらやまし 思ひ切る時 猫の恋</p>
  572. </div>
  573. </div><!--end galaxy-->
  574.  
  575. <div id="sidemoon">
  576.  
  577. <!--Online right now!!-->
  578. <script language="JavaScript">var fhs = document.createElement('script');var fhs_id = "5666523";
  579. var ref = (''+document.referrer+'');var pn = window.location;var w_h = window.screen.width + " x " + window.screen.height;
  580. fhs.src = "//freehostedscripts.net/ocounter.php?site="+fhs_id+"&e1=人&e2=人&r="+ref+"&wh="+w_h+"&a=1&pn="+pn+"";
  581. document.head.appendChild(fhs);document.write("<span id='o_"+fhs_id+"'></span>");
  582. </script>
  583. <br>
  584. <br>
  585.  
  586.  
  587. <!--Visits/hits-->
  588. <script language="JavaScript">var fhsh = document.createElement('script');var fhs_id_h = "3365982";
  589. fhsh.src = "//freehostedscripts.net/ocount.php?site="+fhs_id_h+"&name=ヒット&a=1";
  590. document.head.appendChild(fhsh);document.write("<span id='h_"+fhs_id_h+"'></span>");
  591. </script>
  592.  
  593. <!--Chatbox!-->
  594. <div id="cbox">
  595. <div id="cboxtitle">chatbox</div>
  596. <div id="cboxdesc">
  597.  
  598. chat with people!
  599.  
  600. </div> <!-- IMPORTANT! PLEASE KEEP THIS HERE -->
  601.  
  602. <iframe src="https://www3.cbox.ws/box/?boxid=3508719&boxtag=CJmQGx" width="100%" height="450" allowtransparency="yes" allow="autoplay" frameborder="0" marginheight="0" marginwidth="0" scrolling="auto"></iframe>
  603.  
  604. </div> <!-- IMPORTANT! PLEASE KEEP THIS HERE -->
  605.  
  606. <!--ONE PPIECE POP UP###############################################-->
  607. </div>
  608. <div class="winbox aboutbox">
  609. <div class="winbox_header">
  610. <a href="https://cypherine.tumblr.com/opex" class="winbox_title" target="_blank">
  611. <strong class="winbox_titletext">One Piece Episodes/Chapters List<br><br>crtl (cmd) + f to search for specific episode/chapter</strong>
  612. <a href="https://cypherine.tumblr.com/" class="winbox_icon button"><strong>X</a></strong></span>
  613. </a>
  614.  
  615. <a href="https://onepiece.fandom.com/wiki/One_Piece_Wiki" class="winbox_icon button" style="right:18px; "target="_blank">
  616. <strong>?</strong>
  617. </span>
  618.  
  619. </div>
  620. <table style="width:100%">
  621. <tr>
  622.  
  623. <td class="aboutbox_content">
  624. A list of One Piece anime episodes and their corresponding manga chapters
  625. <br/>
  626. <hr/>
  627. <br> <br> e995 c986 p. 5-17
  628. <br> <br> e994 c985 p. 13-19 and c986 p. 2-5
  629. <br> <br> e993 c985 p. 3-13
  630. <br> <br> e992 c984 p. 6-17
  631. <br> <br> e991 c983 p. 2-6 and c984 p. 2-5
  632. <br> <br> e990 c983 p. 7-17
  633. <br> <br> e989 c982 p. 5-8, 11-17
  634. <br> <br> e988 c981 p. 14-19 and c982 p. 2-4, 9-10
  635. <br> <br> e987 c981 p. 3-14
  636. <br> <br> e986 c980 p. 7-17
  637. <br> <br> e985 c979 p. 10-15 and c980 p. 2-6
  638. <br> <br> e984 c979 p. 2-9, 16-17
  639. <br> <br> e983 c977 p. 14-15 and c978 p. 2-11
  640. <br> <br> e982 c977 p. 8,11-14,16-17 and c978 p. 11-17
  641. <br> <br> e981 c977 p. 2-7,9-10
  642. <br> <br> e980 c976 p. 8-19
  643. <br> <br> e979 c975 p. 11-17 and c976 p. 3-7
  644. <br> <br> e978 c975 p. 2-10
  645. <br> <br> e977 c974 p. 7-17
  646. <br> <br> e976 c973 p. 12-17 and c974 p. 2-7
  647. <br> <br> e975 c972 p. 17-19 and c973 p. 2-12
  648. <br> <br> e974 c972 p. 3-17
  649. <br> <br> e973 c971 p. 6-17
  650. <br> <br> e972 c970 p. 9-17 and c971 p. 2-6
  651. <br> <br> e971 c969 p. 12-17 and c970 p. 2-8
  652. <br> <br> e970 c968 p. 15-17 and c969 p. 2-11
  653. <br> <br> e969 c968 p. 2-14
  654. <br> <br> e968 c967 p. 11-19
  655. <br> <br> e967 c966 p. 16-17 and c967 p. 3-11
  656. <br> <br> e966 c966 p. 6-15
  657. <br> <br> e965 c965 p. 7-17 and c966 p. 2-5
  658. <br> <br> e964 c964 p. 11-17 and c965 p. 2-6
  659. <br> <br> e963 c963 p. 15-17 and c964 p. 2-11
  660. <br> <br> e962 c962 p. 8-13 and c963 p. 2-15
  661. <br> <br> e961 c961 p. 2-17 and c962 p. 2-7
  662. <br> <br> e960 c959 p. 10-17 and c960 p. 2-17
  663. <br> <br> e959 c958 p. 2-15 and c959 p. 2-9
  664. <br> <br> e958 c957 p. 3-19
  665. <br> <br> e957 c956 p. 2-17
  666. <br> <br> e956 c955 p. 2-17
  667. <br> <br> e955 c954 p. 2-15
  668. <br> <br> e954 c953 p. 3-17
  669. <br> <br> e953 c952 p. 5-17 and c953 p. 2
  670. <br> <br> e952 c951 p. 10-19 and c952 p. 2-4
  671. <br> <br> e951 c950 p. 14-17 and c951 p. 3-9
  672. <br> <br> e950 c950 p. 2-13
  673. <br> <br> e949 c949 p. 7-19
  674. <br> <br> e948 c948 p. 9-17 and c949 p. 3-6
  675. <br> <br> e947 c947 p. 13-17 and c948 p. 2-10
  676. <br> <br> e946 c947 p. 2-13
  677. <br> <br> e945 c946 p. 2-17
  678. <br> <br> e944 c945 p. 12-19
  679. <br> <br> e943 c944 p. 14-17 and c945 p. 3-11
  680. <br> <br> e942 c944 p. 2-13
  681. <br> <br> e941 c943 p. 4-17
  682. <br> <br> e940 c942 p. 9-17 and c943 p. 2-3
  683. <br> <br> e939 c941 p. 9, 14-17 and c942 p. 2-9
  684. <br> <br> e938 c941 p. 3-13
  685. <br> <br> e937 c940 p. 5-17
  686. <br> <br> e936 c939 p. 2-7, 14-17 and c940 p. 2-5
  687. <br> <br> e935 c938 p. 10-13 and c939 p. 8-14
  688. <br> <br> e934 c937 p. 14-17 and c938 p. 2-9
  689. <br> <br> e933 c937 p. 3-14
  690. <br> <br> e932 c936 p. 7-17
  691. <br> <br> e931 c935 p. 11-17 and c936 p. 2-7
  692. <br> <br> e930 c934 p. 14-15 and c935 p. 2-10
  693. <br> <br> e929 c934 p. 2-14
  694. <br> <br> e928 c933 p. 5-17
  695. <br> <br> e927 c932 p. 9-17 and c933 p. 2-4
  696. <br> <br> e926 c931 p. 14-17 and c932 p. 2-9
  697. <br> <br> e925 c931 p. 2-13
  698. <br> <br> e924 c930 p. 8-17
  699. <br> <br> e923 c928 p. 4-5, c929 p. 13-18 and c930 p. 2-7
  700. <br> <br> e922 c928 p. 16-17 and c929 p. 3-12
  701. <br> <br> e921 c927 p. 14-15 and c928 p. 4, 6-16
  702. <br> <br> e920 c927 p. 2-13 and c928 p. 2-3
  703. <br> <br> e919 c926 p. 8-17
  704. <br> <br> e918 c925 p. 12-17 and c926 p. 2-8
  705. <br> <br> e917 c925 p. 2-12
  706. <br> <br> e916 c924 p. 5-15
  707. <br> <br> e915 c923 p. 12-17 and c924 p. 2-4
  708. <br> <br> e914 c922 p. 15-17 and c923 p. 2-11
  709. <br> <br> e913 c922 p. 2-15
  710. <br> <br> e912 c921 p. 10-19 and c922 p. 3,6
  711. <br> <br> e911 c920 p. 12-17 and c921 p. 3-9
  712. <br> <br> e910 c920 p. 2-12
  713. <br> <br> e909 c919 p. 6-17
  714. <br> <br> e908 c918 p. 12-17 and c919 p. 2-5
  715. <br> <br> e907 20th Anniversary Special: Romance Dawn, Version 2
  716. <br> <br> e906 c918 p. 2-11
  717. <br> <br> e905 c917 p. 6-17
  718. <br> <br> e904 c916 p. 11, 15-19 and c917 p. 2-5
  719. <br> <br> e903 c916 p. 6-15
  720. <br> <br> e902 c915 p. 8-17 and c916 p. 3-6
  721. <br> <br> e901 c914 p. 13-17 and c915 p. 2-7
  722. <br> <br> e900 c914 p. 2-13
  723. <br> <br> e899 c913 p. 10-17 and c915 p. 14
  724. <br> <br> e898 c913 p. 2-11
  725. <br> <br> e897 c912 p. 8-19
  726. <br> <br> Wano Country Arc #2 <br>
  727. <br> <br> e896 Filler
  728. <br> <br> e895 Filler
  729. <br> <br> Cidre Guild Arc <br>
  730. <br> <br> e894 c911 p. 12-19 and c912 p. 3-7
  731. <br> <br> e893 c910 p. 16-17 and c911 p. 3-11
  732. <br> <br> e892 c909 p. 8-17 and c910 p. 14-16
  733. <br> <br> e891 c910 p. 2-14
  734. <br> <br> e890 c909 p. 2-7
  735. <br> <br> Wano Country Arc #1 <br>
  736. <br> <br> e889 c908 p. 10-17
  737. <br> <br> e888 c908 p. 2-9
  738. <br> <br> e887 c907 p. 2-6, 16-17
  739. <br> <br> e886 c907 p. 7-16
  740. <br> <br> e885 c864 p. 1, c865 p. 1, c866 p. 1, c868 p. 1, c870 p. 1, c871 p. 1, c888 p. 1, c903 p. 1, c904 p. 1, c906 p. 11-17
  741. <br> <br> e884 c906 p. 2-10
  742. <br> <br> e883 c905 p. 8-14, 16-17
  743. <br> <br> e882 c905 p. 5-7, 14-15
  744. <br> <br> e881 c905 p. 2-4
  745. <br> <br> e880 c904 p. 2-15
  746. <br> <br> e879 c903 p. 5, 8-17
  747. <br> <br> e878 c903 p. 2-8
  748. <br> <br> Levely Arc <br>
  749. <br> <br> e877 c902 p. 3-19
  750. <br> <br> e876 c901 p. 2-17
  751. <br> <br> e875 c900 p. 3-19
  752. <br> <br> e874 c899 p. 2-17
  753. <br> <br> e873 c898 p. 2-17
  754. <br> <br> e872 c897 p. 2-17
  755. <br> <br> e871 c896 p. 2-17 and c902 p. 10
  756. <br> <br> e870 c895 p. 2-17
  757. <br> <br> e869 c894 p. 3-8, 11, 13-17
  758. <br> <br> e868 c893 p. 8-17 and c894 p. 9-12
  759. <br> <br> e867 c892 p. 9-17 and c893 p. 2-8
  760. <br> <br> e866 c891 p. 12-17 and c892 p. 2-9
  761. <br> <br> e865 c890 p. 18-19, c891 p. 2-11 and c894 p. 2-3
  762. <br> <br> e864 c890 p. 4-18
  763. <br> <br> e863 c889 p. 6-17 and c890 p. 3-5
  764. <br> <br> e862 c888 p. 2-3, 6-17 and c889 p. 2-5
  765. <br> <br> e861 c887 p. 8-17 and c888 p. 2, 4-7
  766. <br> <br> e860 c886 p. 12-19 and c887 p. 2-8
  767. <br> <br> e859 c885 p. 10-13 and c886 p. 3-12
  768. <br> <br> e858 c884 p. 15-17 and c885 p. 2-9, 14-17
  769. <br> <br> e857 c884 p. 2-15
  770. <br> <br> e856 c883 p. 5-17
  771. <br> <br> e855 c882 p. 8-17 and c883 p. 2-5
  772. <br> <br> e854 c881 p. 11-17 and c882 p. 11-17
  773. <br> <br> e853 c880 p. 13-17 and c881 p. 2-10
  774. <br> <br> e852 c879 p. 15-17 and c880 p. 2-12
  775. <br> <br> e851 c879 p. 2-15
  776. <br> <br> e850 c878 p. 6-19
  777. <br> <br> e849 c877 p. 10-17 and c878 p. 3-5
  778. <br> <br> e848 c876 p. 12-17 and c877 p. 2-9
  779. <br> <br> e847 c875 p. 14-17 and c876 p. 2-12
  780. <br> <br> e846 c875 p. 2-14
  781. <br> <br> e845 c874 p. 5-19
  782. <br> <br> e844 c873 p. 6-17 and c874 p. 3-5
  783. <br> <br> e843 c872 p. 10-19 and c873 p. 2-7
  784. <br> <br> e842 c871 p. 12-17 and c872 p. 3-9
  785. <br> <br> e841 c870 p. 14-17 and c871 p. 2-11
  786. <br> <br> e840 c869 p. 17-19 and c870 p. 2-13
  787. <br> <br> e839 c868 p. 16-17 and c869 p. 2-16
  788. <br> <br> e838 c868 p. 2-15
  789. <br> <br> e837 c867 p. 2-17
  790. <br> <br> e836 c866 p. 2-17
  791. <br> <br> e835 c865 p. 2-17
  792. <br> <br> e834 c864 p. 2-17
  793. <br> <br> e833 c863 p. 3-19
  794. <br> <br> e832 c862 p. 2-17
  795. <br> <br> e831 c861 p. 2-17
  796. <br> <br> e830 c860 p. 7-17
  797. <br> <br> e829 c859 p. 11-17 and c860 p. 2-6
  798. <br> <br> e828 c858 p. 14-19 and c859 p. 2-11
  799. <br> <br> e827 c857 p. 16-17 and c858 p. 3-15
  800. <br> <br> e826 c857 p. 2-15
  801. <br> <br> e825 c856 p. 8-17
  802. <br> <br> e824 c855 p. 13-17 and c856 p. 2-7
  803. <br> <br> e823 c855 p. 2-12
  804. <br> <br> e822 c854 p. 4-17
  805. <br> <br> e821 c853 p. 10-17 and c854 p. 2-3
  806. <br> <br> e820 c852 p. 14-17 and c853 p. 2-9
  807. <br> <br> e819 c852 p. 2-13
  808. <br> <br> e818 c851 p. 8-17
  809. <br> <br> e817 c850 p. 4,6,12-17 and c851 p. 3-7
  810. <br> <br> e816 c850 p. 2-3,5-11
  811. <br> <br> e815 c848 p. 18-19 and c849 p. 2,7-17
  812. <br> <br> e814 c848 p. 8-18 and c849 p. 3-6
  813. <br> <br> e813 c847 p. 10-17 and c848 p. 3-7
  814. <br> <br> e812 c846 p. 12-17 and c847 p. 2-10
  815. <br> <br> e811 c846 p. 2-11
  816. <br> <br> e810 c845 p. 12-17
  817. <br> <br> e809 c845 p. 2-11
  818. <br> <br> e808 c843 p. 14-16 and c844 p. 2-17
  819. <br> <br> e807 c843 p. 11-13, 17-19
  820. <br> <br> e806 c842 p. 10-15 and c843 p. 2-9
  821. <br> <br> e805 c841 p. 15-17 and c842 p. 2-9
  822. <br> <br> e804 c841 p. 2-14
  823. <br> <br> e803 c840 p. 8-17
  824. <br> <br> e802 c839 p. 15-17 and c840 p. 2-7
  825. <br> <br> e801 c839 p. 7-14
  826. <br> <br> e800 c838 p. 10-17 and c839 p. 2-6
  827. <br> <br> e799 c837 p. 13-17 and c838 p. 2-9
  828. <br> <br> e798 c836 p. 14-15 and c837 p. 2-12
  829. <br> <br> e797 c835 p. 17-19 and c836 p. 2-13
  830. <br> <br> e796 c835 p. 3-17
  831. <br> <br> e795 c834 p. 4-17
  832. <br> <br> e794 c833 p. 10-19 and c834 p. 2-3
  833. <br> <br> e793 c832 p. 13-19 and c833 p. 3-10
  834. <br> <br> e792 c831 p. 15-17 and c832 p. 3-12
  835. <br> <br> e791 c831 p. 2-14
  836. <br> <br> e790 c830 p. 2-17
  837. <br> <br> e789 c829 p. 10-18
  838. <br> <br> e788 c828 p. 14-17 and c829 p. 3-10
  839. <br> <br> e787 c828 p. 2-13
  840. <br> <br> e786 c827 p. 3-17
  841. <br> <br> e785 c826 p. 8-17 and c827 p. 2-3,5
  842. <br> <br> e784 c825 p. 9-13 and c826 p. 2-8
  843. <br> <br> e783 c824 p. 16-19 and c825 p. 2-9
  844. <br> <br> Whole Cake Island Arc <br>
  845. <br> <br> e782 Filler
  846. <br> <br> e781 Filler
  847. <br> <br> e780 Filler
  848. <br> <br> Marine Rookie Arc <br>
  849. <br> <br> e779 c824 p. 3-15
  850. <br> <br> e778 c823 p. 8-9, 13-17
  851. <br> <br> e777 c823 p. 2-8, 10-13
  852. <br> <br> e776 c822 p. 2-17
  853. <br> <br> e775 Filler
  854. <br> <br> e774 c821 p. 7-19
  855. <br> <br> e773 c820 p. 11-17 and c821 p. 3-7
  856. <br> <br> e772 c819 p. 14-17 and c820 p. 2-10
  857. <br> <br> e771 c819 p. 2-13
  858. <br> <br> e770 c818 p. 8-17
  859. <br> <br> e769 c817 p. 15-19 and c818 p. 2-7
  860. <br> <br> e768 c817 p. 3-14
  861. <br> <br> e767 c816 p. 2-17
  862. <br> <br> e766 c815 p. 2-17
  863. <br> <br> e765 c814 p. 2-3, 10-17 and c815 p. 2
  864. <br> <br> e764 c813 p. 10-17 and c814 p. 2-9
  865. <br> <br> e763 c812 p. 10-17 and c813 p. 2-10
  866. <br> <br> e762 c811 p. 17-19 and c812 p. 2-10
  867. <br> <br> e761 c810 p. 13-16
  868. <br> <br> e760 c808 p. 17, c809 p. 3 and c810 p. 5-17
  869. <br> <br> e759 c809 p. 11-19 and c810 p. 2-5
  870. <br> <br> e758 c808 p. 12-17 and c809 p. 3-10
  871. <br> <br> e757 c807 p. 15-17 and c808 p. 2-11
  872. <br> <br> e756 c807 p. 2-15
  873. <br> <br> e755 c806 p. 2-17
  874. <br> <br> e754 c805 p. 2-17
  875. <br> <br> e753 c803 p. 12-13 and c804 p. 2-17
  876. <br> <br> e752 c802 p. 7-11 and c803 p. 2-11
  877. <br> <br> e751 c802 p. 5-7, 12-17
  878. <br> <br> Zou Arc <br>
  879. <br> <br> e750 Filler
  880. <br> <br> e749Filler
  881. <br> <br> e748 Filler
  882. <br> <br> e747 Filler + c802 p. 3-5
  883. <br> <br> Silver Mine Arc
  884. <br> <br> YONKO SAGA <br>
  885. <br> <br> e746 c801 p. 2-17
  886. <br> <br> e745 c800 p. 2-17
  887. <br> <br> e744 c799 p. 7-17
  888. <br> <br> e743 c798 p. 9-17 and c799 p. 2-7
  889. <br> <br> e742 c797 p. 12-17 and c798 p. 2-8
  890. <br> <br> e741 c796 p. 16-19 and c797 p. 2-11
  891. <br> <br> e740 c796 p. 3-15
  892. <br> <br> e739 c795 p. 4-17
  893. <br> <br> e738 c794 p. 7-15 and c795 p. 2-3
  894. <br> <br> e737 c794 p. 2-7
  895. <br> <br> e736 c793 p. 2-15
  896. <br> <br> e735 c792 p. 2-15
  897. <br> <br> e734 c791 p. 2-17
  898. <br> <br> e733 c790 p. 3-19
  899. <br> <br> e732 c789 p. 6-19
  900. <br> <br> e731 c788 p. 9-17 and c789 p. 2-5
  901. <br> <br> e730 c787 p. 10-17 and c788 p. 2-8
  902. <br> <br> e729 c786 p. 11-17 and c787 p. 2-9
  903. <br> <br> e728 c785 p. 16-19 and c786 p. 2-11
  904. <br> <br> e727 c785 p. 2-15
  905. <br> <br> e726 c784 p. 2-19
  906. <br> <br> e725 c783 p. 6-19
  907. <br> <br> e724 c782 p. 10-19 and c783 p. 2-6
  908. <br> <br> e723 c781 p. 15-19 and c782 p. 2-10
  909. <br> <br> e722 c781 p. 2-15
  910. <br> <br> e721 c780 p. 2-15
  911. <br> <br> e720 c779 p. 2-12, 14-19
  912. <br> <br> e719 c778 p. 5-19
  913. <br> <br> e718 c777 p. 10-19 and c778 p. 2-4
  914. <br> <br> e717 c776 p. 14-19 and c777 p. 2-9
  915. <br> <br> e716 c775 p. 17-19 and c776 p. 2-14
  916. <br> <br> e715 c775 p. 3-17 and c779 p. 13
  917. <br> <br> e714 c774 p. 2-15 and c779 p. 12-13
  918. <br> <br> e713 c773 p. 6-19
  919. <br> <br> e712 c772 p. 8-17 and c773 p. 2-5
  920. <br> <br> e711 c769 p. 17, c770 p. 2-3, c771 p. 3-4, c772 p. 2-8 and c780 p. 2-3
  921. <br> <br> e710 c769 p. 17 and c771 p. 5-19
  922. <br> <br> e709 c769 p. 11-17 and c770 p. 9-17
  923. <br> <br> e708 c769 p. 2-11 and c770 p. 4-7
  924. <br> <br> e707 c768 p. 2-15
  925. <br> <br> e706 c767 p. 2-17
  926. <br> <br> e705 c766 p. 2-17
  927. <br> <br> e704 c765 p. 2-17
  928. <br> <br> e703 c764 p. 2-19
  929. <br> <br> e702 c763 p. 2-17
  930. <br> <br> e701 c762 p. 2-17
  931. <br> <br> e700 c761 p. 2-15
  932. <br> <br> e699 c760 p. 2-13
  933. <br> <br> e698 c759 p. 2-17
  934. <br> <br> e697 c758 p. 7-17
  935. <br> <br> e696 c757 p. 12-17 and c758 p. 2-6
  936. <br> <br> e695 c756 p. 18 and c757 p. 2-11
  937. <br> <br> e694 c756 p. 6-17
  938. <br> <br> e693 c755 p. 8-17 and 756 (p. 3-5)
  939. <br> <br> e692 c754 p. 12-17 and c755 p. 3-8
  940. <br> <br> e691 c753 p. 16-17, c754 p. 2-11 and c755 p. 2
  941. <br> <br> e690 c752 p. 16 and c753 p. 2-15
  942. <br> <br> e689 c752 p. 2-11, 15-17
  943. <br> <br> e688 c751 p. 10-17 and c752 p. 7, 12-15
  944. <br> <br> e687 c750 p. 15-19 and c751 p. 2-9
  945. <br> <br> e686 c749 p. 15-17 and c750 p. 3-14
  946. <br> <br> e685 c749 p. 2-15 and c750 p. 8
  947. <br> <br> e684 c748
  948. <br> <br> e683 c747
  949. <br> <br> e682 c746 p. 17-19 and c747 p. 2-7, 11-16
  950. <br> <br> e681 c746 p. 2-17
  951. <br> <br> e680 c745 p. 4-17
  952. <br> <br> e679 c744 p. 12-19 and c745 p. 3-4
  953. <br> <br> e678 c744 p. 2-11
  954. <br> <br> e677 c743 p. 2-16
  955. <br> <br> e676 c742 p. 8-19
  956. <br> <br> e675 c741 p. 14-19 and c742 p. 2-8
  957. <br> <br> e674 c741 p. 3-13
  958. <br> <br> e673 c740 p. 3-19
  959. <br> <br> e672 c739 p. 2-19 and c740 p. 2
  960. <br> <br> e671 c738 p. 4-19 and c739 p. 8
  961. <br> <br> e670 c736 p. 16-17, c737 p. 4-11 and c738 p. 2-3
  962. <br> <br> e669 c736 p. 18-19 and c737 p. 2-3, 12-19
  963. <br> <br> e668 c736 p. 2-15
  964. <br> <br> e667 c735 p. 2-19
  965. <br> <br> e666 c734 p. 2-19
  966. <br> <br> e665 c733 p. 3-19
  967. <br> <br> e664 c732 p. 2-19
  968. <br> <br> e663 c731 p. 2-19
  969. <br> <br> e662 c730 p. 2-19
  970. <br> <br> e661 c728 p. 19 and c729 p. 2-19
  971. <br> <br> e660 c728 p. 2-19
  972. <br> <br> e659 c727 p. 3-19
  973. <br> <br> e658 c726 p. 3-11, 14-19
  974. <br> <br> e657 c725 p. 14-17, c726 p. 12-13, c727 p. 2 and c731 p. 15
  975. <br> <br> e656 c725 p. 2-13
  976. <br> <br> e655 c724 p. 3-19
  977. <br> <br> e654 c706 p. 11 and c723 p. 8-19
  978. <br> <br> e653 c722 p. 14-19 and c723 p. 2-7
  979. <br> <br> e652 c722 p. 2-13
  980. <br> <br> e651 c721 p. 2-19
  981. <br> <br> e650 c720 p. 2-19
  982. <br> <br> e649 c718 p. 18-19 and c719 p. 2-19
  983. <br> <br> e648 c718 p. 2-18 and c726 p. 15
  984. <br> <br> e647 c717 p. 3-19
  985. <br> <br> e646 c716 p. 2-19
  986. <br> <br> e645 c715 p. 2-19
  987. <br> <br> e644 c714 p. 2-19
  988. <br> <br> e643 c713 p. 2-19 and c714 p. 12-13
  989. <br> <br> e648 c718 p. 2-18 and c726 p. 16
  990. <br> <br> e647 c717 p. 3-19
  991. <br> <br> e646 c716 p. 2-19
  992. <br> <br> e645 c715 p. 2-19
  993. <br> <br> e644 c714 p. 2-19
  994. <br> <br> e643 c713 p. 2-19 and c714 p. 12-13
  995. <br> <br> e642 c706 p. 10, c711 p. 18-19 and c712 p. 10-19
  996. <br> <br> e641 c711 p. 2-9,14-18 and c712 p. 7-9
  997. <br> <br> e640 c710 p. 14-19, c711 p. 9-13 and c712 p. 2-7
  998. <br> <br> e639 c710 p. 3-13
  999. <br> <br> e638 c709 p. 2-19
  1000. <br> <br> e637 c707 p. 9-15 and c708 p. 2-15
  1001. <br> <br> e636 c706 p. 2-5, 9, 12-15 and c707 p. 3-8, 15-17
  1002. <br> <br> e635 c705 p. 8-19 and c706 p. 7-8
  1003. <br> <br> e634 c704 p. 10-19, c705 p. 2-7 and c706 p. 6-7
  1004. <br> <br> e633 c703 p. 5-19 and c704 p. 2-10
  1005. <br> <br> e632 c702 p. 12-15 and c703 p. 3-15
  1006. <br> <br> e631 c701 p. 16-19 and c702 p. 2-12, 15
  1007. <br> <br> e630 c701 p. 2-16
  1008. <br> <br> e629 Filler
  1009. <br> <br> Dressrosa Arc <br>
  1010. <br> <br> e628 Filler
  1011. <br> <br> e627 Filler
  1012. <br> <br> e626 Filler + c699 p. 14-15
  1013. <br> <br> Caesar Retrieval Arc <br>
  1014. <br> <br> e625 c698 p. 15-17 and c699 p. 3-14
  1015. <br> <br> e624 c698 p. 2-14, 18-19
  1016. <br> <br> e623 c697 p. 2-19
  1017. <br> <br> e622 c696 p. 2-19
  1018. <br> <br> e621 c695 p. 2-19
  1019. <br> <br> e620 c694 p. 2-17
  1020. <br> <br> e619 c693 p. 3-17 and c694 p. 6, 10-11
  1021. <br> <br> e618 c692 p. 6-19
  1022. <br> <br> e617 c691 p. 5-21 and c692 p. 3-6
  1023. <br> <br> e616 c690 p. 2-19 and c693 p. 1-2
  1024. <br> <br> e615 c689 p.2-19
  1025. <br> <br> e614 c688 p.2-17
  1026. <br> <br> e613 c687 p.2-19
  1027. <br> <br> e612 c686 p.2-19
  1028. <br> <br> e611 c685 p.3-19
  1029. <br> <br> e610 c684 p.2-19
  1030. <br> <br> e609 c683 p.2-19
  1031. <br> <br> e608 c682 p.2-19
  1032. <br> <br> e607 c681 p.2-19
  1033. <br> <br> e606 c680 p.2-19
  1034. <br> <br> e605 c679 p.4-19
  1035. <br> <br> e604 c678 p.2-19 and c679 p.2-4
  1036. <br> <br> e603 c677 p.2-19
  1037. <br> <br> e602 c676 p.2-19
  1038. <br> <br> e601 c675 p.2-19
  1039. <br> <br> e600 c674 p.2-17
  1040. <br> <br> e599 c673 p.2-19
  1041. <br> <br> e598 c672 p.2-19
  1042. <br> <br> e597 c671 p.2-17 and c672 p.6
  1043. <br> <br> e596 c670 p.2-17
  1044. <br> <br> e595 c669 p.2-17
  1045. <br> <br> e594 c668 p.2-19
  1046. <br> <br> e593 c667 p.2-19
  1047. <br> <br> e592 c666 p.2-17
  1048. <br> <br> e591 c665 p.2-17
  1049. <br> <br> e590One Piece + Toriko + Dragon Ball Crossover
  1050. <br> <br> e589 c664 p.3-19
  1051. <br> <br> e588 c662 p.19 and c663 p.2-8, 10-19
  1052. <br> <br> e587 c662 p.2-19 and c663 p.9-10
  1053. <br> <br> e586 c661 p.2-19
  1054. <br> <br> e585 c660 p.3-19
  1055. <br> <br> e584 c659 p.2-5, 10-19
  1056. <br> <br> e583 c658 p.2-11 and c659 p.5-9, 13
  1057. <br> <br> e582 c657 p.11-17 and c658 p.12-19
  1058. <br> <br> e581 c656 p.18-19, c657 p.2-10, and c658 p.13
  1059. <br> <br> e580 c655 p.19; c656 p.2-17
  1060. <br> <br> e579 c655 p.2-19
  1061. <br> <br> Punk Hazard Arc <br>
  1062. <br> <br> e578 Filler
  1063. <br> <br> e577 Filler
  1064. <br> <br> e576 Filler
  1065. <br> <br> e575 Filler
  1066. <br> <br> Z's Ambition Arc <br>
  1067. <br> <br> PIRATE ALLIANCE SAGA <br>
  1068. <br> <br> e574 c654 p.2-19 and c655 p.2
  1069. <br> <br> e573 c653 p.2-19
  1070. <br> <br> e572 c652 p.2-19
  1071. <br> <br> e571 c651 p.2-19
  1072. <br> <br> e570 c650 p.2-17
  1073. <br> <br> e569 c649 p.2-19
  1074. <br> <br> e568 c648 p.2-19
  1075. <br> <br> e567 c645 p.5-8 and c647 p.2-19
  1076. <br> <br> e566 c645 p.5, 8-13 and c646 p.2-19
  1077. <br> <br> e565 c643 p.6-11, c644 p.18-19, and c645 p.2-4, 13-19
  1078. <br> <br> e564 c642 p.15-19 and c644 p.2-18
  1079. <br> <br> e563 c642 p.4-15, c643 p.2-5, 12-19, and c644 p.3
  1080. <br> <br> e562 c641
  1081. <br> <br> e561 c640
  1082. <br> <br> e560 c639
  1083. <br> <br> e559 c638
  1084. <br> <br> e558 c636 p.19 and c637
  1085. <br> <br> e557 c636 p.3-19
  1086. <br> <br> e556 c634 p.14,19, c635 p.5-6, 12-19, and c636 p.2
  1087. <br> <br> e555 c634 p.18-19 and c635 p.2-4, 7-12
  1088. <br> <br> e554 c634 p.3-18
  1089. <br> <br> e553 c633
  1090. <br> <br> e552 c632
  1091. <br> <br> e551 c631
  1092. <br> <br> e550 c629 p.15-17 and c630
  1093. <br> <br> e549 c629 p.2-14, 18-19
  1094. <br> <br> e548 c628
  1095. <br> <br> e547 c627
  1096. <br> <br> e546 c625 p.18-19 and c626
  1097. <br> <br> e545 c624 p.17 and c625 p.2-18
  1098. <br> <br> e544 c623 p.19 and c624 p.2-16
  1099. <br> <br> e543 c623 p.2-18
  1100. <br> <br> e542One Piece x Toriko Crossover
  1101. <br> <br> e541 c620 p.17, c621 p.17, and c622
  1102. <br> <br> e540 c621 p.2-16 and c622 p.2-3
  1103. <br> <br> e539 c620 p.2-16
  1104. <br> <br> e538 c619
  1105. <br> <br> e537 c618
  1106. <br> <br> e536 c617
  1107. <br> <br> e535 c616
  1108. <br> <br> e534 c614 p.10 and c615
  1109. <br> <br> e533 c614
  1110. <br> <br> e532 c613
  1111. <br> <br> e531 c612
  1112. <br> <br> e530 c611
  1113. <br> <br> e529 c610
  1114. <br> <br> e528 c609
  1115. <br> <br> e527 c607 p.14-17 and c608
  1116. <br> <br> e526 c606 p.12-17 and c607 p.2-15
  1117. <br> <br> e525 c605 p.11-19 and c606 p.2-12
  1118. <br> <br> e524c604 p.6-19 and c605 p.2-11
  1119. <br> <br> e523 c603 and c604 p.3-5
  1120. <br> <br> Fishman Island Arc <br>
  1121. <br> <br> e522 c602
  1122. <br> <br> e521 c601
  1123. <br> <br> e520 c600 p.8-19
  1124. <br> <br> e519 c599 p.8-15 and c600 p.2-7
  1125. <br> <br> e518 c598 p.17-18, 20-22 and c599 p.2-7, 16-19
  1126. <br> <br> e517 c598 p.1-16, c19, 23-24
  1127. <br> <br> Return to Sabaody Arc <br>
  1128. <br> <br> FISHMAN ISLAND SAGA <br>
  1129. <br> <br> e516 c597 p.8-19
  1130. <br> <br> e515 c596 p.6-11, 16-19 and c597 p.2-7
  1131. <br> <br> e514 c595 p.16-19 and c596 p.2-5, 12-15
  1132. <br> <br> e513 c595 p.3-15
  1133. <br> <br> e512 c593 p.12-19 and c594 p.15-17
  1134. <br> <br> e511 c594 p.2-14, 18-19
  1135. <br> <br> e510 c591 p.17-19 and c593 p.2-11
  1136. <br> <br> e509 c592 p.2-7, 16-19
  1137. <br> <br> e508 c592 p.8-15
  1138. <br> <br> e507c591 p.2-16
  1139. <br> <br> e506 Filler
  1140. <br> <br> e505 c590
  1141. <br> <br> e504 c1 p.47-51 and c589 p.7-19
  1142. <br> <br> e503 c588 p.6-19 and c589 p.2-6
  1143. <br> <br> e502 c587 p.10-19 and c588 p.3-6
  1144. <br> <br> e501 c586 p.12-19 and c587 p.2-9
  1145. <br> <br> e500 c585 p.18-19 and c586 p.2-12
  1146. <br> <br> e499 Filler
  1147. <br> <br> e498 c584 p.17 and c585 p.15
  1148. <br> <br> e497 c585 p.14-17
  1149. <br> <br> e496 c585 p.2-14
  1150. <br> <br> e495 c584 p.8-17
  1151. <br> <br> e494 c583 p.10-17 and c584 p.2-8
  1152. <br> <br> e493 c582 p.16-20 and c583 p.1-10
  1153. <br> <br> e492One Piece x Toriko Crossover
  1154. <br> <br> e491 c581 p.7 and c582 p.3-15
  1155. <br> <br> e490 c581
  1156. <br> <br> Post-War Arc <br>
  1157. <br> <br> e489 c580
  1158. <br> <br> e488 c579
  1159. <br> <br> e487 c578
  1160. <br> <br> e486 c577
  1161. <br> <br> e485 c576 p.4-16
  1162. <br> <br> e484 c574 p.16-17, c575, and c576 p.2-3
  1163. <br> <br> e483 c574
  1164. <br> <br> e482 c573
  1165. <br> <br> e481 c572
  1166. <br> <br> e480 c571
  1167. <br> <br> e479 c570 and c571 p.2-3
  1168. <br> <br> e478 c569
  1169. <br> <br> e477 c568
  1170. <br> <br> e476 c567
  1171. <br> <br> e475 c566
  1172. <br> <br> e474 c565
  1173. <br> <br> e473 c564
  1174. <br> <br> e472 c563
  1175. <br> <br> e471 c562
  1176. <br> <br> e470 c561
  1177. <br> <br> e469 c560
  1178. <br> <br> e468 c559
  1179. <br> <br> e467 c558
  1180. <br> <br> e466 c557
  1181. <br> <br> e465 c556
  1182. <br> <br> e464 c554 p.14 and c555
  1183. <br> <br> e463 c553 p.15-17 and c554
  1184. <br> <br> e462 c552 p.16-20 and c553 p.3-14
  1185. <br> <br> e461 c551 p.17-19 and c552 p.2-15
  1186. <br> <br> e460 c551 p.3-16
  1187. <br> <br> e459 c549 p.18-19, c550, and c551 p.2
  1188. <br> <br> e458Recaps of Jaya Arc, Baratie Arc, Thriller Bark Arc, Amazon Lily Arc, Davy Back Fight Arc and Sabaody Archipelago Arc
  1189. <br> <br> e457Recaps of Alabasta Arc, Jaya Arc and Impel Down Arc
  1190. <br> <br> Marineford Arc <br>
  1191. <br> <br> e456 c557, c558, c559, and c560 covers.
  1192. <br> <br> e455 c545, c546, c550, and c551 covers.
  1193. <br> <br> e454 c543, c544, c552, and c554 covers.
  1194. <br> <br> e453 c555, c556, c548, and c549 covers.
  1195. <br> <br> e452 c549 p.1-17
  1196. <br> <br> e451 c548
  1197. <br> <br> e450 c546 p.16-17 and c547
  1198. <br> <br> e449 c545 p.18-19 and c546 p.2-16
  1199. <br> <br> e448 c545 p.2-17
  1200. <br> <br> e447 c544 p.5-19
  1201. <br> <br> e446 c543 p.8-19 and c544 p.2-4
  1202. <br> <br> e445 c542 p.12-19 and c543 p.2-7
  1203. <br> <br> e444 c541 p.13-15, 17-19 and c542 p.2-11
  1204. <br> <br> e443 c540 p.15-19 and c541 p.2-14, c16
  1205. <br> <br> e442 c540 p.3-15
  1206. <br> <br> e441 c539 p.5-19
  1207. <br> <br> e440 c538 p.8-19 and c539 p.2-4
  1208. <br> <br> e439 c537 p.10-17 and c538 p.1-7
  1209. <br> <br> e438 c536 p.12-19 and c537 p.1-10
  1210. <br> <br> e437 c535 p.12-19 and c536 p.1-11
  1211. <br> <br> e436 c535 p.1-11
  1212. <br> <br> e435 c533 p.18-19 and c534
  1213. <br> <br> e434 c533
  1214. <br> <br> e433 c532
  1215. <br> <br> e432 c530 p.19 and c531
  1216. <br> <br> e431 c530
  1217. <br> <br> e430 c528 p.16-19 and c529
  1218. <br> <br> e429 Strong World Prologue
  1219. <br> <br> e428 Strong World Prologue
  1220. <br> <br> e427 Strong World Prologue
  1221. <br> <br> e426 Strong World Prologue
  1222. <br> <br> e425 c528 p.1-15 and c530 p.5
  1223. <br> <br> e424 c527
  1224. <br> <br> e423 c526 p.5-19
  1225. <br> <br> e422 c525 and c526 p.3-6
  1226. <br> <br> Impel Down Arc <br>
  1227. <br> <br> e421 c524 p.4-5, 10-12, 15-19
  1228. <br> <br> e420 c524 p.2-3, 6-7
  1229. <br> <br> e419 c523 p.18-19 and c524 p.8-9, 13-14
  1230. <br> <br> e418 c523 p.14-17
  1231. <br> <br> e417 c522 p.15-19 and c523 p.1-13
  1232. <br> <br> e416 c522 p.1-14
  1233. <br> <br> e415 c521
  1234. <br> <br> e414 c520
  1235. <br> <br> e413 c519
  1236. <br> <br> e412 c518
  1237. <br> <br> e411 c517
  1238. <br> <br> e410 c516
  1239. <br> <br> e409 c515
  1240. <br> <br> e408 c514
  1241. <br> <br> Amazon Lily Arc <br>
  1242. <br> <br> e407 Filler
  1243. <br> <br> e406 Filler
  1244. <br> <br> e405 c513
  1245. <br> <br> e404 c511 p.16-19 and c512
  1246. <br> <br> e403 c510 p.11-19 and c511 p.1-15
  1247. <br> <br> e402 c509 and c510 p.1-10
  1248. <br> <br> e401 c507 p.13-19 and c508
  1249. <br> <br> e400 c506 p.6-19 and c507 p.1-12
  1250. <br> <br> e399 c505 and c506 p.1-5
  1251. <br> <br> e398 c504
  1252. <br> <br> e397 c503
  1253. <br> <br> e396 c502
  1254. <br> <br> e395 c501
  1255. <br> <br> e394 c500
  1256. <br> <br> e393 c499
  1257. <br> <br> e392 c498
  1258. <br> <br> e391 c497
  1259. <br> <br> e390 c496
  1260. <br> <br> e389 c494 p.17, c19 and c495
  1261. <br> <br> e388 c493 p.4-19 and c494
  1262. <br> <br> e387 c492 and c493 p.2-3
  1263. <br> <br> e386 c490 p.18 and c491
  1264. <br> <br> e385 c490 p.7-18
  1265. <br> <br> Sabaody Archipelago Arc <br>
  1266. <br> <br> e384 Filler
  1267. <br> <br> e383 Filler
  1268. <br> <br> e382 Filler
  1269. <br> <br> Spa Island Arc <br>
  1270. <br> <br> e381 c489 and c490 p.1-6
  1271. <br> <br> e380 c487 p.13-19 and c488
  1272. <br> <br> e379 c487 p.1-12
  1273. <br> <br> e378 c486
  1274. <br> <br> e377 c485
  1275. <br> <br> e376 c484
  1276. <br> <br> e375 c483
  1277. <br> <br> e374 c481 p.14-19 and c482
  1278. <br> <br> e373 c480 and c481 p.1-13
  1279. <br> <br> e372 c478 and c479
  1280. <br> <br> e371 c476 p.8-19 and c477
  1281. <br> <br> e370 c475 and c476 p.1-7
  1282. <br> <br> e369 c474
  1283. <br> <br> e368 c473
  1284. <br> <br> e367 c472
  1285. <br> <br> e366 c471
  1286. <br> <br> e365 c470
  1287. <br> <br> e364 c469
  1288. <br> <br> e363 c468
  1289. <br> <br> e362 c466 p.16-19 and c467
  1290. <br> <br> e361 c466 p.1-15
  1291. <br> <br> e360 c465
  1292. <br> <br> e359 c463 p.8-9 and c464
  1293. <br> <br> e358 c463 p.1-8, 10-19 and c464 p.16
  1294. <br> <br> e357 c462
  1295. <br> <br> e356 c461
  1296. <br> <br> e355 c460
  1297. <br> <br> e354 c459 p.13-19
  1298. <br> <br> e353 c458 p.14-18 and c459 p.1-12
  1299. <br> <br> e352 c458 p.1-13
  1300. <br> <br> e351 c457
  1301. <br> <br> e350 c456
  1302. <br> <br> e349 c455
  1303. <br> <br> e348 c454
  1304. <br> <br> e347 c453
  1305. <br> <br> e346 c452
  1306. <br> <br> e345 c451
  1307. <br> <br> e344 c449 p.7 and c450
  1308. <br> <br> e343 c448 p.16-19 and c449 p.8-19
  1309. <br> <br> e342 c447 p.17-19, c448 p.1-15, and c449 p.3-7
  1310. <br> <br> e341 c446 p.12-19 and c447 p.1-16
  1311. <br> <br> e340 c445 and c446 p.1-11
  1312. <br> <br> e339 c443 p.18-19 and c444
  1313. <br> <br> e338 c443 p.1-17
  1314. <br> <br> e337 c442 p.4-19
  1315. <br> <br> Thriller Bark Arc <br>
  1316. <br> <br> e336 Chopper Man
  1317. <br> <br> e335 Filler
  1318. <br> <br> e334 Filler
  1319. <br> <br> e333 Filler
  1320. <br> <br> e332 Filler
  1321. <br> <br> e331 Filler
  1322. <br> <br> e330 Filler
  1323. <br> <br> e329 Filler
  1324. <br> <br> e328 Filler
  1325. <br> <br> e327 Filler
  1326. <br> <br> e326 c442 p.1-3
  1327. <br> <br> Lovely Island Arc
  1328. <br> <br> WHITEBEARD WAR SAGA <br>
  1329. <br> <br> e325 c434 p.18-19, c440 p.11-19, and c441
  1330. <br> <br> e324 c439 and c440 p.1-10
  1331. <br> <br> e323 c438
  1332. <br> <br> e322 c437
  1333. <br> <br> e321c436
  1334. <br> <br> e320 c358 p.3 and c435 p.9-19
  1335. <br> <br> e319 c435 p.8-9
  1336. <br> <br> e318 Filler
  1337. <br> <br> e317 Filler
  1338. <br> <br> e316 c433 p.19, c434 p.1-17, and c435 p.1-7
  1339. <br> <br> e315 c433 p.1-18
  1340. <br> <br> e314 c432
  1341. <br> <br> e313 c431
  1342. <br> <br> Post-Enies Lobby Arc <br>
  1343. <br> <br> e312 c430
  1344. <br> <br> e311 c429
  1345. <br> <br> e310 c428
  1346. <br> <br> e309 c426 p.12-14 and c427
  1347. <br> <br> e308 c425 p.10-19 and c426 p.1-11, 15-19
  1348. <br> <br> e307 c424 p.1-3, 7-19 and c425 p.1-9
  1349. <br> <br> e306 c423 and c424 p.4-6
  1350. <br> <br> e305 c422
  1351. <br> <br> e304 c421
  1352. <br> <br> e303 Filler
  1353. <br> <br> e302 c420 p.6-19
  1354. <br> <br> e301 c419 and c420 p.1-5
  1355. <br> <br> e300 c417 p.11-19 and c418
  1356. <br> <br> e299 c416 p.3-19 and c417 p.1-11
  1357. <br> <br> e298 c414 p.10-19, c415, and c416 p.2
  1358. <br> <br> e297 c413 and c414 p.1-10
  1359. <br> <br> e296 c411 p.18-19 and c412
  1360. <br> <br> e295 c410 and c411 p.1-18
  1361. <br> <br> e294 c409
  1362. <br> <br> e293 c407 p.14-19 and c408
  1363. <br> <br> e292 Filler
  1364. <br> <br> e291 Filler
  1365. <br> <br> e290 c406 p.11-19 and c407 p.1-13
  1366. <br> <br> e289 c405 and c406 p.1-10
  1367. <br> <br> e288 c403 p.16-19 and c404
  1368. <br> <br> e287 c402 p.8-19 and c403 p.1-15
  1369. <br> <br> e286 c401 and c402 p.1-7
  1370. <br> <br> e285 c400 p.4-19
  1371. <br> <br> e284 c399 and c400 p.2-3
  1372. <br> <br> e283 Monster Time (one-shot), Water 7 Arc, and Enies Lobby Arc Recap
  1373. <br> <br> e282 Jingi-nai Time (one-shot), Baratie Arc, and Drum Island Arc Recap
  1374. <br> <br> e281 Obahan Time (one-shot) and Arlong Arc Recap
  1375. <br> <br> e280 Report Time (one-shot), Captain Morgan Arc, and Captain Kuro Arc Recap
  1376. <br> <br> e279 Chopper Man (one-shot) and 1 Recap
  1377. <br> <br> e278 c397 p.6-19 and c398
  1378. <br> <br> e277 c395 p.1-19, c396, and c397 p.1-6
  1379. <br> <br> e276 c393, c394, and c395 p.2, c4
  1380. <br> <br> e275 c391 p.5-19 and c392
  1381. <br> <br> e274 c389 and c390
  1382. <br> <br> e273 c387 p.1-11 and c388
  1383. <br> <br> e272 c385 p.16-19, c386, and c387 p.12-19
  1384. <br> <br> e271 c384 p.8-19 and c385 p.1-15
  1385. <br> <br> e270 c383 p.1-5, 10-19 and c384 p.1-7
  1386. <br> <br> e269 c382 p.1-5, 9-19 and c383 p.5-9
  1387. <br> <br> e268 c381 and c382 p.5-8
  1388. <br> <br> e267 c379 p.12-19 and c380
  1389. <br> <br> e266 c378 p.6-19 and c379 p.1-11
  1390. <br> <br> e265 c376 p.17-19, c377, and c388 p.1-5
  1391. <br> <br> e264 c375 p.15-19 and c376 p.1-16
  1392. <br> <br> Enies Lobby Arc <br>
  1393. <br> <br> e263 c374 p.13-19 and c375 p.1-14
  1394. <br> <br> e262 c373 p.9-19 and c374 p.1-13
  1395. <br> <br> e261 c371 p.11-19, c372 p.13-19, and c373 p.1-9
  1396. <br> <br> e260 c370 p.1-6, c371 p.1-11, and c372 p.1-12
  1397. <br> <br> e259 c369 p. 1-5, 10-19 and c370 p.7-19
  1398. <br> <br> e258 c368 and c369 p.6-9
  1399. <br> <br> e257 c366 p.16-19 and c367
  1400. <br> <br> e256 c358 p.2, 4-10 and c366 p.1-15
  1401. <br> <br> e255 c364 p.11-19 and c365 p.5-19
  1402. <br> <br> e254 c363, c364 p.1-11, and c365 p.1-4
  1403. <br> <br> e253 c361 p.10-19 and c362 p.1-10
  1404. <br> <br> e252 c360 and c361 p.1-9
  1405. <br> <br> e251 c358 p.15-19 and c359
  1406. <br> <br> e250 c356 p.11-19, c357, and c358 p.11-14
  1407. <br> <br> e249 c353 p.4-8, c355, and c356 p.1-10
  1408. <br> <br> e248 c352 p.8-19, c353 p.1-3, 9-19, and c354
  1409. <br> <br> e247 c350 p.18-19, c351, and c352 p.1-7
  1410. <br> <br> e246 c349 and c350 p.1-17
  1411. <br> <br> e245 c347 and c348
  1412. <br> <br> e244 c346
  1413. <br> <br> e243 c343 p.18-19, c344, and c345
  1414. <br> <br> e242 c340 p.16-19, c341, and c342 p.1-4
  1415. <br> <br> e241 c340 p.16-19, c341, and c342 p.1-4
  1416. <br> <br> e240 c339 p.10-19 and c340 p.1-15
  1417. <br> <br> e239 c337 p.14-19, c338, and c339 p.1-9
  1418. <br> <br> e238 c335 p.15-19, c336, and c337 p.1-14
  1419. <br> <br> e237 c334 and c335 p.1-15
  1420. <br> <br> e236 c332 p.10-19 and c333
  1421. <br> <br> e235 c331 p.4-19 and c332 p.1-9
  1422. <br> <br> e234 c329 p.12-19, c330, and c331 p.2-3
  1423. <br> <br> e233 c328 and c329 p.1-11
  1424. <br> <br> e232 c326 p.13-17 and c327
  1425. <br> <br> e231 c325 p.1-5, 10-19 and c326 p.1-13
  1426. <br> <br> e230 c323 p.14-19, c324, and c325 p.6-9
  1427. <br> <br> e229 c322 p.10-19, c323 p.1-13, and c324 p.1-8
  1428. <br> <br> e228 c320 p.14-19, c321, and c322 p.1-9
  1429. <br> <br> e227 c319 and c320 p.1-14
  1430. <br> <br> Water 7 Arc <br>
  1431. <br> <br> e226 c318 p.18-19
  1432. <br> <br> e225 c303 p.19
  1433. <br> <br> Foxy's Return Arc <br>
  1434. <br> <br> e224 Filler
  1435. <br> <br> e223 Filler
  1436. <br> <br> e222 Filler
  1437. <br> <br> e221 Filler
  1438. <br> <br> e220 Filler
  1439. <br> <br> Ocean's Dream Arc <br>
  1440. <br> <br> e219 c317 and c318 p.1-17
  1441. <br> <br> e218 c315 and c316
  1442. <br> <br> e217 c313 p. 11-19 and c314
  1443. <br> <br> e216 c313 p.10
  1444. <br> <br> e215 Filler
  1445. <br> <br> e214 c313 p.8-9
  1446. <br> <br> e213 Filler
  1447. <br> <br> e212 c312 and c313 p.1-9
  1448. <br> <br> e211 c310 and c311
  1449. <br> <br> e210 c308 and c309
  1450. <br> <br> e209 c306 p.17-19 and c307
  1451. <br> <br> e208 c305 p.6-19 and c306 p.1-16
  1452. <br> <br> e207 c303 p.4-9, c13, c304, and c305 p.1-6
  1453. <br> <br> Long Ring Long Land Arc <br>
  1454. <br> <br> CP9 SAGA <br>
  1455. <br> <br> e206 Filler
  1456. <br> <br> e205 Filler
  1457. <br> <br> e204 Filler
  1458. <br> <br> e203 c303 p.16-18
  1459. <br> <br> e202 Filler
  1460. <br> <br> e201 Filler
  1461. <br> <br> e200 Filler
  1462. <br> <br> e199 Filler
  1463. <br> <br> e198 Filler
  1464. <br> <br> e197 Filler
  1465. <br> <br> e196 Filler
  1466. <br> <br> G-8 Arc <br>
  1467. <br> <br> e195 c302 and c303 p.2-3, 10-11, c14
  1468. <br> <br> e194 c301
  1469. <br> <br> e193 c299 and c300
  1470. <br> <br> e192 c297 p.4-16 and c298
  1471. <br> <br> e191 c295 p.8-17, c296, and c297 p.2-3
  1472. <br> <br> e190 c294 and c295 p.2-7
  1473. <br> <br> e189 c291 p.4-19, c292, and c293
  1474. <br> <br> e188 c289, c290, and c291 p.2-3
  1475. <br> <br> e187 c286 p.9-17, c287 and c288
  1476. <br> <br> e186 c284 p.17-18, c285, and c286 p.2-8
  1477. <br> <br> e185 c283 p.7-19 and c284 p.2-16
  1478. <br> <br> e184 c282 and c283 p.2-6
  1479. <br> <br> e183 c280 and c281
  1480. <br> <br> e182 c276 p.17-18, c277 p.2, c278, and c279
  1481. <br> <br> e181 c275 p.14-19, c276 p.2-17, and c277 p.3-17
  1482. <br> <br> e180 c274 and c275 p.2-13
  1483. <br> <br> e179 c272 p.14-18 and c273
  1484. <br> <br> e178 c271 p.9-18 and c272 p.5-18
  1485. <br> <br> e177 c270 and c271 p.2-8
  1486. <br> <br> e176 c268 p.1-7, 11-13, c15 and c269
  1487. <br> <br> e175 c266 p.5-19 and c267
  1488. <br> <br> e174 c263 p.19, c264 p.7-10, c265, c266 p.2-5, c268 p.8-10, c14, c17, and c272 p.2-4
  1489. <br> <br> e173 c263 p.5-18 and c264 p.2-6, 11-19
  1490. <br> <br> e172 c261 p.12-14, c262, and c263 p.2-4
  1491. <br> <br> e171 c260 and c261 p.2-11, p.15-19
  1492. <br> <br> e170 c258 p.2-9, p.12-19, and c259
  1493. <br> <br> e169 c256 p.9-19, c257, and c258 p.10-11
  1494. <br> <br> e168 c255 and c256 p.2-8
  1495. <br> <br> e167 c254
  1496. <br> <br> e166 c253
  1497. <br> <br> e165 c252
  1498. <br> <br> e164 c251
  1499. <br> <br> e163 c249 p.5-18 and c250
  1500. <br> <br> e162 c248 and c249 p.2-4
  1501. <br> <br> e161 c247 p.7-18
  1502. <br> <br> e160 c246 and c247 p.2-6
  1503. <br> <br> e159 c245
  1504. <br> <br> e158 c244
  1505. <br> <br> e157 c243
  1506. <br> <br> e156 c242
  1507. <br> <br> e155 c241
  1508. <br> <br> e154 c239 and c240
  1509. <br> <br> e153 c237 and c238
  1510. <br> <br> Skypiea Arc <br>
  1511. <br> <br> e152 c235 and c236
  1512. <br> <br> e151 c232 p.11-18, c233, and c234
  1513. <br> <br> e150 c231 and c232 p.2-10
  1514. <br> <br> e149 c229 and c230
  1515. <br> <br> e148 c227 and c228
  1516. <br> <br> e147 c225 and c226
  1517. <br> <br> e146 c222, c223, and c224
  1518. <br> <br> e145 c221
  1519. <br> <br> e144 c218 p.14-18, c219 and c220
  1520. <br> <br> Jaya Arc <br>
  1521. <br> <br> e143 Filler and c218 p.13-15
  1522. <br> <br> e142 Filler
  1523. <br> <br> e141 Filler
  1524. <br> <br> e140 Filler
  1525. <br> <br> e139 Filler
  1526. <br> <br> Ruluka Island Arc <br>
  1527. <br> <br> e138 Filler
  1528. <br> <br> e137 Filler
  1529. <br> <br> e136 Filler
  1530. <br> <br> Goat Island Arc <br>
  1531. <br> <br> SKYPIEA SAGA
  1532. <br> <br> e135 Filler
  1533. <br> <br> e134 Filler
  1534. <br> <br> e133 Filler
  1535. <br> <br> e132 Filler
  1536. <br> <br> e131 Filler
  1537. <br> <br> Post-Alabasta Arc <br>
  1538. <br> <br> e130 c217 and c218 p.2-13
  1539. <br> <br> e129 c215 and c216
  1540. <br> <br> e128 c213 and c214
  1541. <br> <br> e127 c211 and c212
  1542. <br> <br> e126 c208 p.6-9, c209, and c210
  1543. <br> <br> e125 c206, c207, and c208 p.2-5, 10-18
  1544. <br> <br> e124 c204 and c205
  1545. <br> <br> e123 c202 and c203
  1546. <br> <br> e122 c200 and c201
  1547. <br> <br> e121 c198 and c199
  1548. <br> <br> e120 c196 and c197
  1549. <br> <br> e119 c194 and c195
  1550. <br> <br> e118 c192 p.2, 8-19 and c193
  1551. <br> <br> e117 c190 p.11-19, c191, and c192 p.3-7
  1552. <br> <br> e116 c188 p.4-19, c189, and c190 p.2-10
  1553. <br> <br> e115 c186 p.5-18, c187, and c188 p.2-3
  1554. <br> <br> e114 c184 p.14-19, c185, and c186 p.2-4
  1555. <br> <br> e113 c182 p.18, c183 p.3-19, and c184 p.2-13
  1556. <br> <br> e112 c180 p.18-19, c181, c182 p.2-17, and c183 p.2
  1557. <br> <br> e111 c179 and c180 p.2-17
  1558. <br> <br> e110 c176 p.14-19, c177 and c178
  1559. <br> <br> e109 c175 and c176 p.1-14
  1560. <br> <br> e108 c172 p.18-19, c173, and c174
  1561. <br> <br> e107 c171 and c172 p.2-17
  1562. <br> <br> e106 c169 and c170
  1563. <br> <br> e105 c167 and c168
  1564. <br> <br> e104 c165 p.4-18 and c166
  1565. <br> <br> e103 c160 p.2, 6-18, c161 p.2-4, c162 p.18, c163 p.2-10, c164 p.17-19, c165 p.2-3
  1566. <br> <br> e102 Filler
  1567. <br> <br> e101 c159 p.13 + filler
  1568. <br> <br> e100 c163 p.8-19, c164 p.2-16
  1569. <br> <br> e99 Filler
  1570. <br> <br> e98 c162 p.15-16
  1571. <br> <br> e97 c162 p.2-14
  1572. <br> <br> e96 c159 p.5-6, c160 p.3, and c161
  1573. <br> <br> e95 c159 p.2-4, 7-12, 14-19
  1574. <br> <br> e94 c157 p.12-17 and c158 p.4-13
  1575. <br> <br> e93 c158 p.2-3, 14-16
  1576. <br> <br> e92 c155 p.2-13, c156, and c157 p.1-10
  1577. <br> <br> Alabasta Arc <br>
  1578. <br> <br> e91 c142 p.5-8, c154, and c155 p. 14-18
  1579. <br> <br> e90 c152 p.10-20 and c153
  1580. <br> <br> e89 c150 p.5-19, c151, and c152 p.3-9
  1581. <br> <br> e88 c147 p.2-3, 11-13, c148 p.2-4, 11-19, c149, and c150 p.2-5
  1582. <br> <br> e87 c145 p.18-19, c146, c147 p.4-10, 14-18, and c148 p.5-10
  1583. <br> <br> e86 c141 p.4-5, c143 p.9-19, c144, and c145 p.2-17
  1584. <br> <br> e85 c140 p.18-19, c141 p.10-19, c142 p.2-5, 9-19, and c143 p.2-8
  1585. <br> <br> e84 c139 p.8-19 and c140 p.2-17
  1586. <br> <br> e83 c138 and c139 p.1-10
  1587. <br> <br> e82 c136 p.3-17, c137, and c138 p.1-2
  1588. <br> <br> e81 c134 p.11-19, c135, and c136 p. 1-2, 18-19
  1589. <br> <br> e80 c132 p.14-19, c133, and c134 p.1-11
  1590. <br> <br> e79 c128 p.1-7, c131, and c132 p.1-15
  1591. <br> <br> Drum Island Arc <br>
  1592. <br> <br> e78 c129 p.11-21, c130, and c131 p.1-3
  1593. <br> <br> e77 c127, c128 p.8-21, and c129 p.1-9
  1594. <br> <br> e76 c124 p.16-19, c125, and c126
  1595. <br> <br> e75 c123 and c124 p.1-16
  1596. <br> <br> e74 c121 and c122
  1597. <br> <br> e73 c119 p.1-9, 12-19 and c120
  1598. <br> <br> e72 c117, c118 p.1-10, 18-19, and c119 p.10-11
  1599. <br> <br> e71 c116 p.4-19 and c118 p.11-17
  1600. <br> <br> e70 c115, c116 p.1-3, and c117 p.1-5
  1601. <br> <br> Little Garden Arc <br>
  1602. <br> <br> e69 c114-c116, c118-c119 (Cover Pages)
  1603. <br> <br> e68 c83-c85, c87-c93, c95-c99, c101-c102, c104-c106, c108-c110, c112-c113 (Cover Pages)
  1604. <br> <br> Coby and Helmeppo Arc <br>
  1605. <br> <br> e67 c113 and c114
  1606. <br> <br> e66 c110 p.13-19, c111, and c112
  1607. <br> <br> e65 c107 p.15-18, c108, c109, and c110 p.1-13
  1608. <br> <br> e64 c106 and c107 p.1-15
  1609. <br> <br> Whiskey Peak Arc <br>
  1610. <br> <br> e63 c103 p.19-20, c104, and c105
  1611. <br> <br> e62 c102 and c103 p.1-18
  1612. <br> <br> Reverse Mountain Arc <br>
  1613. <br> <br> BAROQUE WORKS SAGA <br>
  1614. <br> <br> e61 c101 p.2-4, 11-18
  1615. <br> <br> e60 Filler
  1616. <br> <br> e59 Filler
  1617. <br> <br> e58 Filler
  1618. <br> <br> e57 Filler
  1619. <br> <br> e56 Filler
  1620. <br> <br> e55 c101 p.5-10
  1621. <br> <br> e54 c101 p.5
  1622. <br> <br> Warship Island Arc <br>
  1623. <br> <br> e53 c100
  1624. <br> <br> e52 c98 and c99
  1625. <br> <br> e51 Filler
  1626. <br> <br> e50 Filler
  1627. <br> <br> e49 c97 p.5-18
  1628. <br> <br> e48 c96 p.11-14 and c97 p.1-4, c19
  1629. <br> <br> Loguetown Arc <br>
  1630. <br> <br> e47 c36, c55, 57-60, 62-63, 65-68, 71-75 (Cover Pages)
  1631. <br> <br> e46 c35, c37, 39-40, 42-43, 46-48, 50-51, 53-54 (Cover Pages)
  1632. <br> <br> Buggy Side Story Arc <br>
  1633. <br> <br> e45 c96 p.1-10, 15-18
  1634. <br> <br> e44 c95
  1635. <br> <br> e43 c92 p.18-19, c93, and c94
  1636. <br> <br> e42 c90 p.8-19, c91, and c92 p.1-17
  1637. <br> <br> e41 c88 p.11-19, c89, and c90 p.1-7
  1638. <br> <br> e40 c86 p.8-20, c87, and c88 p.1-10
  1639. <br> <br> e39 c84 p.5-19, c85, and c86 p.1-7
  1640. <br> <br> e38 c82, c83, and c84 p.1-4
  1641. <br> <br> e37 c80 p.10-19 and c81
  1642. <br> <br> e36 c78 p.6-19, c79, and c80 p.1-9
  1643. <br> <br> e35 c77 p.4-18 and c78 p.1-5
  1644. <br> <br> e34 c75 p.8-19, c76, and c77 p.2-3
  1645. <br> <br> e33 c73 p.1-5, 14-19, c74, and c75 p.1-7
  1646. <br> <br> e32 c70 p.13-19, c71 p.1-4, 9-19, c72, and c73 p.6-13
  1647. <br> <br> e31 c69, c70 p.1-12, and c71 p.5-8
  1648. <br> <br> Arlong Park Arc <br>
  1649. <br> <br> e30 c67 and c68
  1650. <br> <br> e29 c65 and c66
  1651. <br> <br> e28 c62 p.16-19, c63, and c64
  1652. <br> <br> e27 c59 p.11-19, c60, c61, and c62 p.1-15
  1653. <br> <br> e26 c56, c57, c58, and c59 p.2-10
  1654. <br> <br> e25 c53, c54, and c55
  1655. <br> <br> e24 c50, c51, and c52
  1656. <br> <br> e23 c48 and c49
  1657. <br> <br> e22 c46 and c47
  1658. <br> <br> e21 c44 and c45
  1659. <br> <br> e20 c42 p.13-19 and c43
  1660. <br> <br> e19 c5 p.11-16 and c42 p.4-12
  1661. <br> <br> Baratie Arc <br>
  1662. <br> <br> e18 c22 and c42 p.2-3
  1663. <br> <br> e17 c39 p.13-19, c40, and c41
  1664. <br> <br> e16 c38 and c39 p.2-12
  1665. <br> <br> e15 c35, c36, and c37
  1666. <br> <br> e14 c33 and c34
  1667. <br> <br> e13 c30 p.4-19, c31 p.13-19, and c32
  1668. <br> <br> e12 c28, c29, and c30 p.3
  1669. <br> <br> e11 c26 p.15-19 and c27
  1670. <br> <br> e10 c24 p.15-19, c25, and c26 p.1-14
  1671. <br> <br> e9 c23 and c24 p.2-14
  1672. <br> <br> Syrup Village Arc <br>
  1673. <br> <br> e8 c19, c20, and c21
  1674. <br> <br> e7 c15 p.11-19, c16, c17, and c18
  1675. <br> <br> e6 c11 p.15-19, c12, c13, c14, c15 p.2-10
  1676. <br> <br> e5 c8 p.17-19, c9, c10, and c11 p.2-14
  1677. <br> <br> e4 c1 p.5-46 and c8 p.2-16
  1678. <br> <br> Orange Town Arc <br>
  1679. <br> <br> e3 c5 p.20, c6, and c7
  1680. <br> <br> e2 c3, c4, and c5 p.2-10, 12-20
  1681. <br> <br> e1 c2 p.4-23
  1682. <br> <br> Romance Dawn Arc <br>
  1683. <br> <br> EAST BLUE SAGA
  1684.  
  1685. </td>
  1686. </tr>
  1687. </table>
  1688. </div>
  1689.  
  1690. <!-- remember: don't remove | santa is always watching, always judging-->
  1691. <div id="credit"><a title="shuvee" href="https://shuvee.tumblr.com"><d class="far fa-moon"></d></a></div>
  1692. </body>
  1693. </html>
  1694.  
  1695.  
  1696. </body>
  1697. </html>
  1698.  
Add Comment
Please, Sign In to add comment