├── CNAME ├── logo.png ├── title.png ├── favicon.ico ├── logo192.png ├── logo512.png ├── footer-cloud.png ├── robots.txt ├── frame_safari_dark.png ├── frame_safari_dark_(1).png ├── sitemap.xml ├── manifest.json ├── asset-manifest.json ├── README.md ├── static ├── js │ ├── 2.8f0bc054.chunk.js.LICENSE.txt │ ├── runtime-main.8f5d72ae.js │ ├── runtime-main.3478a80a.js │ ├── 3.24dee0ef.chunk.js │ ├── 3.24dee0ef.chunk.js.map │ ├── main.6c3b32f2.chunk.js │ ├── main.45a25e82.chunk.js │ ├── main.9b59b7a0.chunk.js │ ├── runtime-main.8f5d72ae.js.map │ ├── runtime-main.3478a80a.js.map │ ├── main.6c3b32f2.chunk.js.map │ ├── main.45a25e82.chunk.js.map │ └── main.9b59b7a0.chunk.js.map └── css │ ├── main.a2822302.chunk.css │ ├── main.62618932.chunk.css │ ├── main.ea80181a.chunk.css │ ├── main.a2822302.chunk.css.map │ ├── main.62618932.chunk.css.map │ └── main.ea80181a.chunk.css.map └── index.html /CNAME: -------------------------------------------------------------------------------- 1 | srt2prxml.chenhao.do -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen97/SRT2PRXML/HEAD/logo.png -------------------------------------------------------------------------------- /title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen97/SRT2PRXML/HEAD/title.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen97/SRT2PRXML/HEAD/favicon.ico -------------------------------------------------------------------------------- /logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen97/SRT2PRXML/HEAD/logo192.png -------------------------------------------------------------------------------- /logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen97/SRT2PRXML/HEAD/logo512.png -------------------------------------------------------------------------------- /footer-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen97/SRT2PRXML/HEAD/footer-cloud.png -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /frame_safari_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen97/SRT2PRXML/HEAD/frame_safari_dark.png -------------------------------------------------------------------------------- /frame_safari_dark_(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen97/SRT2PRXML/HEAD/frame_safari_dark_(1).png -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | https://srt2prxml.chdo.xyz/ 12 | 2022-03-13T13:04:29+00:00 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /asset-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": { 3 | "main.css": "/static/css/main.62618932.chunk.css", 4 | "main.js": "/static/js/main.9b59b7a0.chunk.js", 5 | "main.js.map": "/static/js/main.9b59b7a0.chunk.js.map", 6 | "runtime-main.js": "/static/js/runtime-main.8f5d72ae.js", 7 | "runtime-main.js.map": "/static/js/runtime-main.8f5d72ae.js.map", 8 | "static/js/2.8f0bc054.chunk.js": "/static/js/2.8f0bc054.chunk.js", 9 | "static/js/2.8f0bc054.chunk.js.map": "/static/js/2.8f0bc054.chunk.js.map", 10 | "static/js/3.24dee0ef.chunk.js": "/static/js/3.24dee0ef.chunk.js", 11 | "static/js/3.24dee0ef.chunk.js.map": "/static/js/3.24dee0ef.chunk.js.map", 12 | "index.html": "/index.html", 13 | "static/css/main.62618932.chunk.css.map": "/static/css/main.62618932.chunk.css.map", 14 | "static/js/2.8f0bc054.chunk.js.LICENSE.txt": "/static/js/2.8f0bc054.chunk.js.LICENSE.txt" 15 | }, 16 | "entrypoints": [ 17 | "static/js/runtime-main.8f5d72ae.js", 18 | "static/js/2.8f0bc054.chunk.js", 19 | "static/css/main.62618932.chunk.css", 20 | "static/js/main.9b59b7a0.chunk.js" 21 | ] 22 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SRT2PRXML 2 | 3 | A tool for converting the subtitle file (SRT) to PremierePro-supported XML. 4 | 5 | Website: http://srt2prxml.chdo.xyz 6 | 7 | # Background 8 | 9 | Premiere Pro 2022 is designed to specifically limit the visibility to one track at a time to avoid accidentally burning in multiple tracks. Hence you are not able to present (visible) multiple subtitles on track at the same time. 10 | 11 | # Solution 12 | 13 | There is a temporary solution to resolve the issue by using the tool SRT2PRXML. 14 | 15 | 1. Convert your SRT file to Premiere Pro XML on the website https://srt2prxml.chdo.xyz. 16 | 2. Import the XML file into Premiere Pro. 17 | 3. Drag the XML to your track. 18 | 4. (Optional) Edit your font pattern (size or color) of the SRT version subtitle in PR, and store the preset font file once you’re done with the editing. Then, select all of your XML version subtitles in track, drag the font preset and apply it into the selection. 19 | 20 | # Screenshot 21 | 22 | ![frame_safari_dark.png](https://github.com/chen97/SRT2PRXML/blob/main/frame_safari_dark.png?raw=true) 23 | 24 | ![frame_safari_dark (1).png](https://github.com/chen97/SRT2PRXML/blob/main/frame_safari_dark_(1).png?raw=true) 25 | -------------------------------------------------------------------------------- /static/js/2.8f0bc054.chunk.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /* 2 | object-assign 3 | (c) Sindre Sorhus 4 | @license MIT 5 | */ 6 | 7 | /*! 8 | * The buffer module from node.js, for the browser. 9 | * 10 | * @author Feross Aboukhadijeh 11 | * @license MIT 12 | */ 13 | 14 | /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */ 15 | 16 | /** @license React v0.20.2 17 | * scheduler.production.min.js 18 | * 19 | * Copyright (c) Facebook, Inc. and its affiliates. 20 | * 21 | * This source code is licensed under the MIT license found in the 22 | * LICENSE file in the root directory of this source tree. 23 | */ 24 | 25 | /** @license React v17.0.2 26 | * react-dom.production.min.js 27 | * 28 | * Copyright (c) Facebook, Inc. and its affiliates. 29 | * 30 | * This source code is licensed under the MIT license found in the 31 | * LICENSE file in the root directory of this source tree. 32 | */ 33 | 34 | /** @license React v17.0.2 35 | * react-jsx-runtime.production.min.js 36 | * 37 | * Copyright (c) Facebook, Inc. and its affiliates. 38 | * 39 | * This source code is licensed under the MIT license found in the 40 | * LICENSE file in the root directory of this source tree. 41 | */ 42 | 43 | /** @license React v17.0.2 44 | * react.production.min.js 45 | * 46 | * Copyright (c) Facebook, Inc. and its affiliates. 47 | * 48 | * This source code is licensed under the MIT license found in the 49 | * LICENSE file in the root directory of this source tree. 50 | */ 51 | -------------------------------------------------------------------------------- /static/js/runtime-main.8f5d72ae.js: -------------------------------------------------------------------------------- 1 | !function(e){function r(r){for(var n,i,a=r[0],c=r[1],l=r[2],s=0,p=[];sConvert SRT to Premiere Pro XML
-------------------------------------------------------------------------------- /static/js/3.24dee0ef.chunk.js: -------------------------------------------------------------------------------- 1 | (this.webpackJsonpsub2prxml=this.webpackJsonpsub2prxml||[]).push([[3],{26:function(e,t,n){"use strict";n.r(t),n.d(t,"getCLS",(function(){return y})),n.d(t,"getFCP",(function(){return g})),n.d(t,"getFID",(function(){return C})),n.d(t,"getLCP",(function(){return k})),n.d(t,"getTTFB",(function(){return D}));var i,r,a,o,u=function(e,t){return{name:e,value:void 0===t?-1:t,delta:0,entries:[],id:"v2-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12)}},c=function(e,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){if("first-input"===e&&!("PerformanceEventTiming"in self))return;var n=new PerformanceObserver((function(e){return e.getEntries().map(t)}));return n.observe({type:e,buffered:!0}),n}}catch(e){}},f=function(e,t){var n=function n(i){"pagehide"!==i.type&&"hidden"!==document.visibilityState||(e(i),t&&(removeEventListener("visibilitychange",n,!0),removeEventListener("pagehide",n,!0)))};addEventListener("visibilitychange",n,!0),addEventListener("pagehide",n,!0)},s=function(e){addEventListener("pageshow",(function(t){t.persisted&&e(t)}),!0)},m=function(e,t,n){var i;return function(r){t.value>=0&&(r||n)&&(t.delta=t.value-(i||0),(t.delta||void 0===i)&&(i=t.value,e(t)))}},v=-1,p=function(){return"hidden"===document.visibilityState?0:1/0},d=function(){f((function(e){var t=e.timeStamp;v=t}),!0)},l=function(){return v<0&&(v=p(),d(),s((function(){setTimeout((function(){v=p(),d()}),0)}))),{get firstHiddenTime(){return v}}},g=function(e,t){var n,i=l(),r=u("FCP"),a=function(e){"first-contentful-paint"===e.name&&(f&&f.disconnect(),e.startTime-1&&e(t)},r=u("CLS",0),a=0,o=[],v=function(e){if(!e.hadRecentInput){var t=o[0],i=o[o.length-1];a&&e.startTime-i.startTime<1e3&&e.startTime-t.startTime<5e3?(a+=e.value,o.push(e)):(a=e.value,o=[e]),a>r.value&&(r.value=a,r.entries=o,n())}},p=c("layout-shift",v);p&&(n=m(i,r,t),f((function(){p.takeRecords().map(v),n(!0)})),s((function(){a=0,T=-1,r=u("CLS",0),n=m(i,r,t)})))},E={passive:!0,capture:!0},w=new Date,L=function(e,t){i||(i=t,r=e,a=new Date,F(removeEventListener),S())},S=function(){if(r>=0&&r1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,t){var n=function(){L(e,t),r()},i=function(){r()},r=function(){removeEventListener("pointerup",n,E),removeEventListener("pointercancel",i,E)};addEventListener("pointerup",n,E),addEventListener("pointercancel",i,E)}(t,e):L(t,e)}},F=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(t){return e(t,b,E)}))},C=function(e,t){var n,a=l(),v=u("FID"),p=function(e){e.startTimeperformance.now())return;n.entries=[t],e(n)}catch(e){}},"complete"===document.readyState?setTimeout(t,0):addEventListener("load",(function(){return setTimeout(t,0)}))}}}]); 2 | //# sourceMappingURL=3.24dee0ef.chunk.js.map -------------------------------------------------------------------------------- /static/css/main.a2822302.chunk.css: -------------------------------------------------------------------------------- 1 | body{margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.App{text-align:center;padding:290px 0 200px;line-height:28px;font-size:16px;height:100%;font-family:"Roboto",sans-serif;font-weight:400;color:#6b707f;letter-spacing:.15px;background:#ccefff}body{background:#fff}.App-logo{height:40vmin;pointer-events:none}@media (prefers-reduced-motion:no-preference){.App-logo{-webkit-animation:App-logo-spin 20s linear infinite;animation:App-logo-spin 20s linear infinite}}.App-header{background-color:#282c34;min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;font-size:calc(10px + 2vmin);background:#f7f7f7}.App-link{color:#61dafb}@-webkit-keyframes App-logo-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes App-logo-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.nav_btn:not(.not-round-btn){color:#4c4cf1;border-radius:45px}.right-nav .nav_btn{font-size:14px;font-weight:500;padding:8px 27px;text-align:center;border-radius:4px;border:2px solid #fff;transition:all .3s linear;background:#fff;color:#4c4cf1}.cloud-bg .bg1{position:absolute;width:100%;height:400px;background:url(http://localhost:3000/footer-cloud.png);background-repeat:repeat-x;background-position:0 bottom;bottom:39%}.theme-share-head{width:44px;height:44px;overflow:hidden;padding:3px}.acss-header{display:block;position:absolute;top:50%;left:50%;margin:-240px 0 0 -230px;z-index:1}.acss_banner{width:333px;height:69px;background-image:url(http://localhost:3000/logo.png);background-repeat:no-repeat;background-size:100% 100%;margin:0 auto 70px}.verify-form{margin:0 auto;text-align:center;font-size:14px;position:relative;background:#fff;background-color:hsla(0,0%,100%,.5);border-radius:4px;box-shadow:0 0 10px rgba(171,198,235,.3)}.avatar{display:inline-block;vertical-align:middle;padding:15px 0}.theme-share-head span{line-height:1;display:table-cell;vertical-align:middle;text-align:center}.theme-share-head,.theme-share-head>span{width:370px;height:44px;overflow:hidden}.theme-share-head img{width:100%;vertical-align:middle}.verify-input{padding:20px 30px 48px}.verify-input .pickpw{padding:0 0 15px}.a_demo_three input{display:none}.a_demo_three{background-color:#3bb3e0;font-family:"Open Sans",sans-serif;font-size:20px;text-decoration:none;color:#fff;position:relative;padding:26px 70px;border-left:1px solid #2ab7ec;margin-left:45px;height:50px;background-image:linear-gradient(bottom,#2ca0ca,#3eb8e5);background-image:-ms-linear-gradient(bottom,#2ca0ca 0,#3eb8e5 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#2ca0ca),color-stop(1,#3eb8e5));-webkit-border-top-right-radius:5px;-webkit-border-bottom-right-radius:5px;-moz-border-radius-topright:5px;-moz-border-radius-bottomright:5px;border-top-right-radius:5px;border-bottom-right-radius:5px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #156785,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #156785,0 10px 5px #999}.a_demo_three:active{top:3px;background-image:linear-gradient(bottom,#3eb8e5,#2ca0ca);background-image:-ms-linear-gradient(bottom,#3eb8e5 0,#2ca0ca 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#3eb8e5),color-stop(1,#2ca0ca));-o-box-shadow:inset 0 1px 0 #2ab7ec,0 2px 0 0 #156785,0 5px 3px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 2px 0 0 #156785,0 5px 3px #999}.a_demo_three:before{text-align:center;background-color:#2561b4;content:"1";width:80px;height:50px;position:absolute;display:block;padding-top:25px;top:0;font-size:26px;font-weight:700;color:#8fd1ea;text-shadow:1px 1px 0 #07526e;border-right:1px solid #07526e;background-image:linear-gradient(bottom,#0a5e7d,#0e8bb8);background-image:-ms-linear-gradient(bottom,#0a5e7d 0,#0e8bb8 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#0a5e7d),color-stop(1,#0e8bb8));-webkit-border-top-left-radius:5px;-webkit-border-bottom-left-radius:5px;-moz-border-radius-topleft:5px;-moz-border-radius-bottomleft:5px;border-top-left-radius:5px;border-bottom-left-radius:5px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,0 10px 5px #999}.a_demo_three:active:before{top:-3px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,1px 1px 0 0 #044a64,2px 2px 0 0 #044a64,2px 5px 0 0 #044a64,6px 4px 2px #0b698b,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,1px 1px 0 0 #044a64,2px 2px 0 0 #044a64,2px 5px 0 0 #044a64,6px 4px 2px #0b698b,0 10px 5px #999}.b_demo_three{background-color:#3bb3e0;font-family:"Open Sans",sans-serif;font-size:20px;text-decoration:none;color:#fff;position:relative;padding:26px 72px;border-left:1px solid #2ab7ec;margin-left:45px;height:50px;background-image:linear-gradient(bottom,#2ca0ca,#3eb8e5);background-image:-ms-linear-gradient(bottom,#2ca0ca 0,#3eb8e5 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#2ca0ca),color-stop(1,#3eb8e5));-webkit-border-top-right-radius:5px;-webkit-border-bottom-right-radius:5px;-moz-border-radius-topright:5px;-moz-border-radius-bottomright:5px;border-top-right-radius:5px;border-bottom-right-radius:5px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #156785,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #156785,0 10px 5px #999}.b_demo_three:active{top:3px;background-image:linear-gradient(bottom,#3eb8e5,#2ca0ca);background-image:-ms-linear-gradient(bottom,#3eb8e5 0,#2ca0ca 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#3eb8e5),color-stop(1,#2ca0ca));-o-box-shadow:inset 0 1px 0 #2ab7ec,0 2px 0 0 #156785,0 5px 3px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 2px 0 0 #156785,0 5px 3px #999}.b_demo_three:before{text-align:center;background-color:#2561b4;content:"2";width:80px;height:50px;position:absolute;display:block;padding-top:25px;top:0;font-size:26px;font-weight:700;color:#8fd1ea;text-shadow:1px 1px 0 #07526e;border-right:1px solid #07526e;background-image:linear-gradient(bottom,#0a5e7d,#0e8bb8);background-image:-ms-linear-gradient(bottom,#0a5e7d 0,#0e8bb8 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#0a5e7d),color-stop(1,#0e8bb8));-webkit-border-top-left-radius:5px;-webkit-border-bottom-left-radius:5px;-moz-border-radius-topleft:5px;-moz-border-radius-bottomleft:5px;border-top-left-radius:5px;border-bottom-left-radius:5px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,0 10px 5px #999}.b_demo_three:active:before{top:-3px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,1px 1px 0 0 #044a64,2px 2px 0 0 #044a64,2px 5px 0 0 #044a64,6px 4px 2px #0b698b,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,1px 1px 0 0 #044a64,2px 2px 0 0 #044a64,2px 5px 0 0 #044a64,6px 4px 2px #0b698b,0 10px 5px #999}.lds-ripple{display:inline-block;position:relative;width:80px;height:80px}.lds-ripple div{position:absolute;border:4px solid #2ab7ec;opacity:1;border-radius:50%;-webkit-animation:lds-ripple 1s cubic-bezier(0,.2,.8,1) infinite;animation:lds-ripple 1s cubic-bezier(0,.2,.8,1) infinite}.lds-ripple div:nth-child(2){-webkit-animation-delay:-.5s;animation-delay:-.5s}@-webkit-keyframes lds-ripple{0%{top:36px;left:36px;width:0;height:0;opacity:1}to{top:0;left:0;width:72px;height:72px;opacity:0}}@keyframes lds-ripple{0%{top:36px;left:36px;width:0;height:0;opacity:1}to{top:0;left:0;width:72px;height:72px;opacity:0}} 2 | /*# sourceMappingURL=main.a2822302.chunk.css.map */ -------------------------------------------------------------------------------- /static/css/main.62618932.chunk.css: -------------------------------------------------------------------------------- 1 | body{margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.App{text-align:center;padding:290px 0 200px;line-height:28px;font-size:16px;height:100%;font-family:"Roboto",sans-serif;font-weight:400;color:#6b707f;letter-spacing:.15px;background:#ccefff}body{background:#fff}.App-logo{height:40vmin;pointer-events:none}@media (prefers-reduced-motion:no-preference){.App-logo{-webkit-animation:App-logo-spin 20s linear infinite;animation:App-logo-spin 20s linear infinite}}.App-header{background-color:#282c34;min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;font-size:calc(10px + 2vmin);background:#f7f7f7}.App-link{color:#61dafb}@-webkit-keyframes App-logo-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes App-logo-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.nav_btn:not(.not-round-btn){color:#4c4cf1;border-radius:45px}.right-nav .nav_btn{font-size:14px;font-weight:500;padding:8px 27px;text-align:center;border-radius:4px;border:2px solid #fff;transition:all .3s linear;background:#fff;color:#4c4cf1}.cloud-bg .bg1{position:absolute;width:100%;height:400px;background:url(https://srt2prxml.chdo.xyz/footer-cloud.png);background-repeat:repeat-x;background-position:0 bottom;bottom:39%}.theme-share-head{width:44px;height:44px;overflow:hidden;padding:3px}.acss-header{display:block;position:absolute;top:50%;left:50%;margin:-240px 0 0 -230px;z-index:1}.acss_banner{width:333px;height:69px;background-image:url(https://srt2prxml.chdo.xyz/logo.png);background-repeat:no-repeat;background-size:100% 100%;margin:0 auto 70px}.verify-form{margin:0 auto;text-align:center;font-size:14px;position:relative;background:#fff;background-color:hsla(0,0%,100%,.5);border-radius:4px;box-shadow:0 0 10px rgba(171,198,235,.3)}.avatar{display:inline-block;vertical-align:middle;padding:15px 0}.theme-share-head span{line-height:1;display:table-cell;vertical-align:middle;text-align:center}.theme-share-head,.theme-share-head>span{width:370px;height:44px;overflow:hidden}.theme-share-head img{width:100%;vertical-align:middle}.verify-input{padding:20px 30px 48px}.verify-input .pickpw{padding:0 0 15px}.a_demo_three input{display:none}.a_demo_three{background-color:#3bb3e0;font-family:"Open Sans",sans-serif;font-size:20px;text-decoration:none;color:#fff;position:relative;padding:26px 70px;border-left:1px solid #2ab7ec;margin-left:45px;height:50px;background-image:linear-gradient(bottom,#2ca0ca,#3eb8e5);background-image:-ms-linear-gradient(bottom,#2ca0ca 0,#3eb8e5 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#2ca0ca),color-stop(1,#3eb8e5));-webkit-border-top-right-radius:5px;-webkit-border-bottom-right-radius:5px;-moz-border-radius-topright:5px;-moz-border-radius-bottomright:5px;border-top-right-radius:5px;border-bottom-right-radius:5px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #156785,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #156785,0 10px 5px #999}.a_demo_three:active{top:3px;background-image:linear-gradient(bottom,#3eb8e5,#2ca0ca);background-image:-ms-linear-gradient(bottom,#3eb8e5 0,#2ca0ca 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#3eb8e5),color-stop(1,#2ca0ca));-o-box-shadow:inset 0 1px 0 #2ab7ec,0 2px 0 0 #156785,0 5px 3px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 2px 0 0 #156785,0 5px 3px #999}.a_demo_three:before{text-align:center;background-color:#2561b4;content:"1";width:80px;height:50px;position:absolute;display:block;padding-top:25px;top:0;font-size:26px;font-weight:700;color:#8fd1ea;text-shadow:1px 1px 0 #07526e;border-right:1px solid #07526e;background-image:linear-gradient(bottom,#0a5e7d,#0e8bb8);background-image:-ms-linear-gradient(bottom,#0a5e7d 0,#0e8bb8 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#0a5e7d),color-stop(1,#0e8bb8));-webkit-border-top-left-radius:5px;-webkit-border-bottom-left-radius:5px;-moz-border-radius-topleft:5px;-moz-border-radius-bottomleft:5px;border-top-left-radius:5px;border-bottom-left-radius:5px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,0 10px 5px #999}.a_demo_three:active:before{top:-3px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,1px 1px 0 0 #044a64,2px 2px 0 0 #044a64,2px 5px 0 0 #044a64,6px 4px 2px #0b698b,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,1px 1px 0 0 #044a64,2px 2px 0 0 #044a64,2px 5px 0 0 #044a64,6px 4px 2px #0b698b,0 10px 5px #999}.b_demo_three{background-color:#3bb3e0;font-family:"Open Sans",sans-serif;font-size:20px;text-decoration:none;color:#fff;position:relative;padding:26px 72px;border-left:1px solid #2ab7ec;margin-left:45px;height:50px;background-image:linear-gradient(bottom,#2ca0ca,#3eb8e5);background-image:-ms-linear-gradient(bottom,#2ca0ca 0,#3eb8e5 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#2ca0ca),color-stop(1,#3eb8e5));-webkit-border-top-right-radius:5px;-webkit-border-bottom-right-radius:5px;-moz-border-radius-topright:5px;-moz-border-radius-bottomright:5px;border-top-right-radius:5px;border-bottom-right-radius:5px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #156785,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #156785,0 10px 5px #999}.b_demo_three:active{top:3px;background-image:linear-gradient(bottom,#3eb8e5,#2ca0ca);background-image:-ms-linear-gradient(bottom,#3eb8e5 0,#2ca0ca 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#3eb8e5),color-stop(1,#2ca0ca));-o-box-shadow:inset 0 1px 0 #2ab7ec,0 2px 0 0 #156785,0 5px 3px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 2px 0 0 #156785,0 5px 3px #999}.b_demo_three:before{text-align:center;background-color:#2561b4;content:"2";width:80px;height:50px;position:absolute;display:block;padding-top:25px;top:0;font-size:26px;font-weight:700;color:#8fd1ea;text-shadow:1px 1px 0 #07526e;border-right:1px solid #07526e;background-image:linear-gradient(bottom,#0a5e7d,#0e8bb8);background-image:-ms-linear-gradient(bottom,#0a5e7d 0,#0e8bb8 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#0a5e7d),color-stop(1,#0e8bb8));-webkit-border-top-left-radius:5px;-webkit-border-bottom-left-radius:5px;-moz-border-radius-topleft:5px;-moz-border-radius-bottomleft:5px;border-top-left-radius:5px;border-bottom-left-radius:5px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,0 10px 5px #999}.b_demo_three:active:before{top:-3px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,1px 1px 0 0 #044a64,2px 2px 0 0 #044a64,2px 5px 0 0 #044a64,6px 4px 2px #0b698b,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,1px 1px 0 0 #044a64,2px 2px 0 0 #044a64,2px 5px 0 0 #044a64,6px 4px 2px #0b698b,0 10px 5px #999}.lds-ripple{display:inline-block;position:relative;width:80px;height:80px}.lds-ripple div{position:absolute;border:4px solid #2ab7ec;opacity:1;border-radius:50%;-webkit-animation:lds-ripple 1s cubic-bezier(0,.2,.8,1) infinite;animation:lds-ripple 1s cubic-bezier(0,.2,.8,1) infinite}.lds-ripple div:nth-child(2){-webkit-animation-delay:-.5s;animation-delay:-.5s}@-webkit-keyframes lds-ripple{0%{top:36px;left:36px;width:0;height:0;opacity:1}to{top:0;left:0;width:72px;height:72px;opacity:0}}@keyframes lds-ripple{0%{top:36px;left:36px;width:0;height:0;opacity:1}to{top:0;left:0;width:72px;height:72px;opacity:0}} 2 | /*# sourceMappingURL=main.62618932.chunk.css.map */ -------------------------------------------------------------------------------- /static/css/main.ea80181a.chunk.css: -------------------------------------------------------------------------------- 1 | body{margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.App{text-align:center;padding:290px 0 200px;line-height:28px;font-size:16px;height:100%;font-family:"Roboto",sans-serif;font-weight:400;color:#6b707f;letter-spacing:.15px;background:#ccefff}body{background:#fff}.App-logo{height:40vmin;pointer-events:none}@media (prefers-reduced-motion:no-preference){.App-logo{-webkit-animation:App-logo-spin 20s linear infinite;animation:App-logo-spin 20s linear infinite}}.App-header{background-color:#282c34;min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;font-size:calc(10px + 2vmin);background:#f7f7f7}.App-link{color:#61dafb}@-webkit-keyframes App-logo-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes App-logo-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.nav_btn:not(.not-round-btn){color:#4c4cf1;border-radius:45px}.right-nav .nav_btn{font-size:14px;font-weight:500;padding:8px 27px;text-align:center;border-radius:4px;border:2px solid #fff;transition:all .3s linear;background:#fff;color:#4c4cf1}.cloud-bg .bg1{position:absolute;width:100%;height:400px;background:url(https://chdo.xyz/srt2prxml/footer-cloud.png);background-repeat:repeat-x;background-position:0 bottom;bottom:39%}.theme-share-head{width:44px;height:44px;overflow:hidden;padding:3px}.acss-header{display:block;position:absolute;top:50%;left:50%;margin:-240px 0 0 -230px;z-index:1}.acss_banner{width:333px;height:69px;background-image:url(https://chdo.xyz/srt2prxml/logo.png);background-repeat:no-repeat;background-size:100% 100%;margin:0 auto 70px}.verify-form{margin:0 auto;text-align:center;font-size:14px;position:relative;background:#fff;background-color:hsla(0,0%,100%,.5);border-radius:4px;box-shadow:0 0 10px rgba(171,198,235,.3)}.avatar{display:inline-block;vertical-align:middle;padding:15px 0}.theme-share-head span{line-height:1;display:table-cell;vertical-align:middle;text-align:center}.theme-share-head,.theme-share-head>span{width:370px;height:44px;overflow:hidden}.theme-share-head img{width:100%;vertical-align:middle}.verify-input{padding:20px 30px 48px}.verify-input .pickpw{padding:0 0 15px}.a_demo_three input{display:none}.a_demo_three{background-color:#3bb3e0;font-family:"Open Sans",sans-serif;font-size:20px;text-decoration:none;color:#fff;position:relative;padding:26px 70px;border-left:1px solid #2ab7ec;margin-left:45px;height:50px;background-image:linear-gradient(bottom,#2ca0ca,#3eb8e5);background-image:-ms-linear-gradient(bottom,#2ca0ca 0,#3eb8e5 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#2ca0ca),color-stop(1,#3eb8e5));-webkit-border-top-right-radius:5px;-webkit-border-bottom-right-radius:5px;-moz-border-radius-topright:5px;-moz-border-radius-bottomright:5px;border-top-right-radius:5px;border-bottom-right-radius:5px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #156785,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #156785,0 10px 5px #999}.a_demo_three:active{top:3px;background-image:linear-gradient(bottom,#3eb8e5,#2ca0ca);background-image:-ms-linear-gradient(bottom,#3eb8e5 0,#2ca0ca 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#3eb8e5),color-stop(1,#2ca0ca));-o-box-shadow:inset 0 1px 0 #2ab7ec,0 2px 0 0 #156785,0 5px 3px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 2px 0 0 #156785,0 5px 3px #999}.a_demo_three:before{text-align:center;background-color:#2561b4;content:"1";width:80px;height:50px;position:absolute;display:block;padding-top:25px;top:0;font-size:26px;font-weight:700;color:#8fd1ea;text-shadow:1px 1px 0 #07526e;border-right:1px solid #07526e;background-image:linear-gradient(bottom,#0a5e7d,#0e8bb8);background-image:-ms-linear-gradient(bottom,#0a5e7d 0,#0e8bb8 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#0a5e7d),color-stop(1,#0e8bb8));-webkit-border-top-left-radius:5px;-webkit-border-bottom-left-radius:5px;-moz-border-radius-topleft:5px;-moz-border-radius-bottomleft:5px;border-top-left-radius:5px;border-bottom-left-radius:5px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,0 10px 5px #999}.a_demo_three:active:before{top:-3px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,1px 1px 0 0 #044a64,2px 2px 0 0 #044a64,2px 5px 0 0 #044a64,6px 4px 2px #0b698b,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,1px 1px 0 0 #044a64,2px 2px 0 0 #044a64,2px 5px 0 0 #044a64,6px 4px 2px #0b698b,0 10px 5px #999}.b_demo_three{background-color:#3bb3e0;font-family:"Open Sans",sans-serif;font-size:20px;text-decoration:none;color:#fff;position:relative;padding:26px 72px;border-left:1px solid #2ab7ec;margin-left:45px;height:50px;background-image:linear-gradient(bottom,#2ca0ca,#3eb8e5);background-image:-ms-linear-gradient(bottom,#2ca0ca 0,#3eb8e5 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#2ca0ca),color-stop(1,#3eb8e5));-webkit-border-top-right-radius:5px;-webkit-border-bottom-right-radius:5px;-moz-border-radius-topright:5px;-moz-border-radius-bottomright:5px;border-top-right-radius:5px;border-bottom-right-radius:5px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #156785,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #156785,0 10px 5px #999}.b_demo_three:active{top:3px;background-image:linear-gradient(bottom,#3eb8e5,#2ca0ca);background-image:-ms-linear-gradient(bottom,#3eb8e5 0,#2ca0ca 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#3eb8e5),color-stop(1,#2ca0ca));-o-box-shadow:inset 0 1px 0 #2ab7ec,0 2px 0 0 #156785,0 5px 3px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 2px 0 0 #156785,0 5px 3px #999}.b_demo_three:before{text-align:center;background-color:#2561b4;content:"2";width:80px;height:50px;position:absolute;display:block;padding-top:25px;top:0;font-size:26px;font-weight:700;color:#8fd1ea;text-shadow:1px 1px 0 #07526e;border-right:1px solid #07526e;background-image:linear-gradient(bottom,#0a5e7d,#0e8bb8);background-image:-ms-linear-gradient(bottom,#0a5e7d 0,#0e8bb8 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#0a5e7d),color-stop(1,#0e8bb8));-webkit-border-top-left-radius:5px;-webkit-border-bottom-left-radius:5px;-moz-border-radius-topleft:5px;-moz-border-radius-bottomleft:5px;border-top-left-radius:5px;border-bottom-left-radius:5px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,0 10px 5px #999}.b_demo_three:active:before{top:-3px;-o-box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,1px 1px 0 0 #044a64,2px 2px 0 0 #044a64,2px 5px 0 0 #044a64,6px 4px 2px #0b698b,0 10px 5px #999;box-shadow:inset 0 1px 0 #2ab7ec,0 5px 0 0 #032b3a,1px 1px 0 0 #044a64,2px 2px 0 0 #044a64,2px 5px 0 0 #044a64,6px 4px 2px #0b698b,0 10px 5px #999}.lds-ripple{display:inline-block;position:relative;width:80px;height:80px}.lds-ripple div{position:absolute;border:4px solid #2ab7ec;opacity:1;border-radius:50%;-webkit-animation:lds-ripple 1s cubic-bezier(0,.2,.8,1) infinite;animation:lds-ripple 1s cubic-bezier(0,.2,.8,1) infinite}.lds-ripple div:nth-child(2){-webkit-animation-delay:-.5s;animation-delay:-.5s}@-webkit-keyframes lds-ripple{0%{top:36px;left:36px;width:0;height:0;opacity:1}to{top:0;left:0;width:72px;height:72px;opacity:0}}@keyframes lds-ripple{0%{top:36px;left:36px;width:0;height:0;opacity:1}to{top:0;left:0;width:72px;height:72px;opacity:0}} 2 | /*# sourceMappingURL=main.ea80181a.chunk.css.map */ -------------------------------------------------------------------------------- /static/js/3.24dee0ef.chunk.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["../node_modules/web-vitals/dist/web-vitals.js"],"names":["e","t","n","i","r","name","value","delta","entries","id","concat","Date","now","Math","floor","random","a","PerformanceObserver","supportedEntryTypes","includes","self","getEntries","map","observe","type","buffered","o","document","visibilityState","removeEventListener","addEventListener","u","persisted","c","f","s","m","timeStamp","v","setTimeout","firstHiddenTime","d","disconnect","startTime","push","window","performance","getEntriesByName","requestAnimationFrame","p","l","h","hadRecentInput","length","takeRecords","T","passive","capture","y","g","w","E","entryType","target","cancelable","processingStart","forEach","S","L","b","F","once","P","getEntriesByType","timing","max","navigationStart","responseStart","readyState"],"mappings":"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","file":"static/js/3.24dee0ef.chunk.js","sourcesContent":["var e,t,n,i,r=function(e,t){return{name:e,value:void 0===t?-1:t,delta:0,entries:[],id:\"v2-\".concat(Date.now(),\"-\").concat(Math.floor(8999999999999*Math.random())+1e12)}},a=function(e,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){if(\"first-input\"===e&&!(\"PerformanceEventTiming\"in self))return;var n=new PerformanceObserver((function(e){return e.getEntries().map(t)}));return n.observe({type:e,buffered:!0}),n}}catch(e){}},o=function(e,t){var n=function n(i){\"pagehide\"!==i.type&&\"hidden\"!==document.visibilityState||(e(i),t&&(removeEventListener(\"visibilitychange\",n,!0),removeEventListener(\"pagehide\",n,!0)))};addEventListener(\"visibilitychange\",n,!0),addEventListener(\"pagehide\",n,!0)},u=function(e){addEventListener(\"pageshow\",(function(t){t.persisted&&e(t)}),!0)},c=function(e,t,n){var i;return function(r){t.value>=0&&(r||n)&&(t.delta=t.value-(i||0),(t.delta||void 0===i)&&(i=t.value,e(t)))}},f=-1,s=function(){return\"hidden\"===document.visibilityState?0:1/0},m=function(){o((function(e){var t=e.timeStamp;f=t}),!0)},v=function(){return f<0&&(f=s(),m(),u((function(){setTimeout((function(){f=s(),m()}),0)}))),{get firstHiddenTime(){return f}}},d=function(e,t){var n,i=v(),o=r(\"FCP\"),f=function(e){\"first-contentful-paint\"===e.name&&(m&&m.disconnect(),e.startTime-1&&e(t)},f=r(\"CLS\",0),s=0,m=[],v=function(e){if(!e.hadRecentInput){var t=m[0],i=m[m.length-1];s&&e.startTime-i.startTime<1e3&&e.startTime-t.startTime<5e3?(s+=e.value,m.push(e)):(s=e.value,m=[e]),s>f.value&&(f.value=s,f.entries=m,n())}},h=a(\"layout-shift\",v);h&&(n=c(i,f,t),o((function(){h.takeRecords().map(v),n(!0)})),u((function(){s=0,l=-1,f=r(\"CLS\",0),n=c(i,f,t)})))},T={passive:!0,capture:!0},y=new Date,g=function(i,r){e||(e=r,t=i,n=new Date,w(removeEventListener),E())},E=function(){if(t>=0&&t1e12?new Date:performance.now())-e.timeStamp;\"pointerdown\"==e.type?function(e,t){var n=function(){g(e,t),r()},i=function(){r()},r=function(){removeEventListener(\"pointerup\",n,T),removeEventListener(\"pointercancel\",i,T)};addEventListener(\"pointerup\",n,T),addEventListener(\"pointercancel\",i,T)}(t,e):g(t,e)}},w=function(e){[\"mousedown\",\"keydown\",\"touchstart\",\"pointerdown\"].forEach((function(t){return e(t,S,T)}))},L=function(n,f){var s,m=v(),d=r(\"FID\"),p=function(e){e.startTimeperformance.now())return;n.entries=[t],e(n)}catch(e){}},\"complete\"===document.readyState?setTimeout(t,0):addEventListener(\"load\",(function(){return setTimeout(t,0)}))};export{h as getCLS,d as getFCP,L as getFID,F as getLCP,P as getTTFB};\n"],"sourceRoot":""} -------------------------------------------------------------------------------- /static/js/main.6c3b32f2.chunk.js: -------------------------------------------------------------------------------- 1 | (this.webpackJsonpsub2prxml=this.webpackJsonpsub2prxml||[]).push([[0],{13:function(e,t,a){},14:function(e,t,a){},25:function(e,t,a){"use strict";a.r(t);var i=a(1),s=a.n(i),r=a(4),n=a.n(r),c=(a(13),a(5)),l=a(6),C=a(2),D=a(8),o=a(7),d=(a(14),a(0)),m=a(16).encode,p=a(17),h=a(24).default,u=function(e){Object(D.a)(a,e);var t=Object(o.a)(a);function a(e){var i;return Object(c.a)(this,a),(i=t.call(this,e)).changeTitle=function(e){var t=i.convertSRTtoXML("awdawd.srt",e.target.value);i.setState({xml:t})},i.downloadTxtFile=function(){var e=document.createElement("a"),t=new Blob([i.state.xml],{type:"text/xml"});e.href=URL.createObjectURL(t),e.download=i.state.name+".xml",document.body.appendChild(e),e.click()},i.state={name:"none",status:!0,loading:!0},i.uploadFile=i.uploadFile.bind(Object(C.a)(i)),i.clearAll=i.clearAll.bind(Object(C.a)(i)),i}return Object(l.a)(a,[{key:"addZeroInHex",value:function(e){return"00"+e.match(/.{1,2}/g).join("00")}},{key:"encodeContent",value:function(e){var t=m(e),a="0F0F0000000000007B0022006D0053006800610064006F00770046006F006E0074004D0061007000480061007300680022003A006E0075006C006C002C0022006D00540065007800740050006100720061006D0022003A007B0022006D0041006C00690067006E006D0065006E00740022003A0032002E0030002C0022006D004200610063006B00460069006C006C0043006F006C006F00720022003A0030002E0030002C0022006D004200610063006B00460069006C006C004F0070006100630069007400790022003A0030002E0030002C0022006D004200610063006B00460069006C006C00530069007A00650022003A0030002E0030002C0022006D004200610063006B00460069006C006C00560069007300690062006C00650022003A00660061006C00730065002C0022006D00440065006600610075006C007400520075006E0022003A005B005D002C0022006D0048006500690067006800740022003A0030002E0030002C0022006D00480069006E006400690044006900670069007400730022003A00660061006C00730065002C0022006D0049006E0064006900630022003A00660061006C00730065002C0022006D00490073004D00610073006B0022003A00660061006C00730065002C0022006D00490073004D00610073006B0049006E0076006500720074006500640022003A00660061006C00730065002C0022006D004900730056006500720074006900630061006C00540065007800740022003A00660061006C00730065002C0022006D004C0065006100640069006E00670022003A0030002E0030002C0022006D004C006900670061007400750072006500730022003A00660061006C00730065002C0022006D004C0069006E006500430061007000540079007000650022003A0030002E0030002C0022006D004C0069006E0065004A006F0069006E00540079007000650022003A0030002E0030002C0022006D004D0069007400650072004C0069006D006900740022003A0030002E0030002C0022006D004E0075006D005300740072006F006B006500730022003A0031002E0030002C0022006D00520054004C0022003A00660061006C00730065002C0022006D0053006800610064006F00770041006E0067006C00650022003A003100330035002E0030002C0022006D0053006800610064006F00770042006C007500720022003A00340030002E0030002C0022006D0053006800610064006F00770043006F006C006F00720022003A0034003100340034003900350039002E0030002C0022006D0053006800610064006F0077004F006600660073006500740022003A0037002E0030002C0022006D0053006800610064006F0077004F0070006100630069007400790022003A00370035002E0030002C0022006D0053006800610064006F007700530069007A00650022003A0030002E0030002C0022006D0053006800610064006F007700560069007300690062006C00650022003A00660061006C00730065002C0022006D005300740079006C0065005300680065006500740022003A007B0022006D004100640064006900740069006F006E0061006C005300740072006F006B00650043006F006C006F00720022003A005B005D002C0022006D004100640064006900740069006F006E0061006C005300740072006F006B006500560069007300690062006C00650022003A005B005D002C0022006D004100640064006900740069006F006E0061006C005300740072006F006B0065005700690064007400680022003A005B005D002C0022006D0042006100730065006C0069006E0065004F007000740069006F006E0022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D0042006100730065006C0069006E0065005300680069006600740022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D0043006100700073004F007000740069006F006E0022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D00460061007500780042006F006C00640022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C00660061006C00730065005D005D007D002C0022006D0046006100750078004900740061006C006900630022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C00660061006C00730065005D005D007D002C0022006D00460069006C006C0043006F006C006F00720022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C00310036003700370037003200310035002E0030005D005D007D002C0022006D00460069006C006C004F007600650072005300740072006F006B00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C0074007200750065005D005D007D002C0022006D00460069006C006C00560069007300690062006C00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C0074007200750065005D005D007D002C0022006D0046006F006E0074004E0061006D00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C00220041007200690061006C004D00540022005D005D007D002C0022006D0046006F006E007400530069007A00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C00360030002E0030005D005D007D002C0022006D004B00650072006E0069006E00670022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D005300740072006F006B00650043006F006C006F00720022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D005300740072006F006B006500560069007300690062006C00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C0074007200750065005D005D007D002C0022006D005300740072006F006B0065005700690064007400680022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C00310030002E0030005D005D007D002C0022006D00540065007800740022003A0022005C0072"+this.addZeroInHex(t)+"0022002C0022006D0054007200610063006B0069006E00670022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D005400730075006D00690022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D0055006E006400650072006C0069006E00650022003A006E0075006C006C007D002C0022006D005400610062005700690064007400680022003A003400300030002E0030002C0022006D0056006500720074006900630061006C0041006C00690067006E006D0065006E00740022003A0030002E0030002C0022006D005700690064007400680022003A0030002E0030007D002C0022006D005500730065004C0065006700610063007900540065007800740042006F00780022003A00660061006C00730065002C0022006D00560065007200730069006F006E0022003A0031002E0030007D00";return p.encode(a)}},{key:"processTime",value:function(e){var t=e.split(":"),a=36e5*Number(t[0])+6e4*Number(t[1])+Number(String(t[2]).replace(",",""));return Math.round(a/40)}},{key:"convertSRTtoXML",value:function(e,t){var a=(new h).fromSrt(t),i="";e=e.replace(".srt","");for(var s=0;smasterclip-'+s+"Graphictrue25false"+this.processTime(n)+""+this.processTime(c)+'nonesquarefalseGraphicGraphicAndType'+l+'GraphicAndTypegraphicfilterfalse1Source Text'+this.encodeContent(l)+'3Positionfalse0,0.5:0.8240740740740741,0,0,0,0,0,0,0,0,0,0,0,0'}return('2085225false'+e+"").replace("\t","")}},{key:"sleep",value:function(e){return new Promise((function(t){return setTimeout(t,e)}))}},{key:"uploadFile",value:function(e){var t=this,a=new FileReader;a.readAsText(e.target.files[0]),a.onload=function(a){var i=t.convertSRTtoXML(e.target.files[0].name,a.target.result);t.setState({xml:i}),t.setState({name:e.target.files[0].name.replace(".srt","")}),t.setState({loading:!1}),setTimeout((function(){t.setState({loading:!0}),t.setState({status:!1})}),2e3),e.target.value=null}}},{key:"clearAll",value:function(){this.setState({loading:!0}),this.setState({status:!0})}},{key:"render",value:function(){return Object(d.jsxs)("div",{className:"App",children:[Object(d.jsxs)("div",{className:"acss-header",children:[Object(d.jsx)("div",{className:"acss_banner"}),Object(d.jsx)("div",{className:"verify-form",children:Object(d.jsxs)("form",{className:"clearfix",children:[Object(d.jsx)("div",{className:"avatar",children:Object(d.jsx)("div",{className:"theme-share-head",children:Object(d.jsxs)("span",{className:"radius-3",children:[Object(d.jsx)("img",{src:"./title.png",width:"370"}),Object(d.jsx)("span",{className:"cert-info"})]})})}),Object(d.jsxs)("div",{className:"verify-input",children:[Object(d.jsx)("p",{children:Object(d.jsxs)("label",{className:"a_demo_three",href:"#",children:[Object(d.jsx)("a",{children:"Upload SRT file"}),Object(d.jsx)("input",{type:"file",name:"myFile",onChange:this.uploadFile,onClick:this.clearAll,accept:".srt"})]})}),Object(d.jsx)("br",{}),Object(d.jsx)("div",{hidden:this.state.loading,children:Object(d.jsxs)("div",{className:"lds-ripple",children:[Object(d.jsx)("div",{}),Object(d.jsx)("div",{})]})}),Object(d.jsxs)("p",{hidden:this.state.status,children:[Object(d.jsxs)("a",{children:[this.state.name,".xml"]}),Object(d.jsx)("br",{}),Object(d.jsx)("br",{}),Object(d.jsx)("a",{className:"b_demo_three",onClick:this.downloadTxtFile,children:"Download XML"})]})]}),"* The tool is supporting English subtitles only *",Object(d.jsx)("br",{}),"If you feel this tool is helpful, please ",Object(d.jsx)("a",{href:"https://buy.stripe.com/bIY4iTcUu59hf4scMM",children:"donate"})," $2 to the me."]})})]}),Object(d.jsxs)("div",{className:"cloud-bg",children:[Object(d.jsx)("div",{className:"bg1"}),Object(d.jsx)("div",{className:"bg2"}),Object(d.jsx)("div",{className:"bg3"})]})]})}}]),a}(i.Component),A=function(e){e&&e instanceof Function&&a.e(3).then(a.bind(null,26)).then((function(t){var a=t.getCLS,i=t.getFID,s=t.getFCP,r=t.getLCP,n=t.getTTFB;a(e),i(e),s(e),r(e),n(e)}))};n.a.render(Object(d.jsx)(s.a.StrictMode,{children:Object(d.jsx)(u,{})}),document.getElementById("root")),A()}},[[25,1,2]]]); 2 | //# sourceMappingURL=main.6c3b32f2.chunk.js.map -------------------------------------------------------------------------------- /static/js/main.45a25e82.chunk.js: -------------------------------------------------------------------------------- 1 | (this.webpackJsonpsub2prxml=this.webpackJsonpsub2prxml||[]).push([[0],{13:function(e,t,a){},14:function(e,t,a){},25:function(e,t,a){"use strict";a.r(t);var i=a(1),s=a.n(i),r=a(4),n=a.n(r),c=(a(13),a(5)),l=a(6),C=a(2),D=a(8),o=a(7),d=(a(14),a(0)),m=a(16).encode,p=a(17),h=a(24).default,u=function(e){Object(D.a)(a,e);var t=Object(o.a)(a);function a(e){var i;return Object(c.a)(this,a),(i=t.call(this,e)).changeTitle=function(e){var t=i.convertSRTtoXML("awdawd.srt",e.target.value);i.setState({xml:t})},i.downloadTxtFile=function(){var e=document.createElement("a"),t=new Blob([i.state.xml],{type:"text/xml"});e.href=URL.createObjectURL(t),e.download=i.state.name+".xml",document.body.appendChild(e),e.click()},i.state={name:"none",status:!0,loading:!0},i.uploadFile=i.uploadFile.bind(Object(C.a)(i)),i.clearAll=i.clearAll.bind(Object(C.a)(i)),i}return Object(l.a)(a,[{key:"addZeroInHex",value:function(e){return"00"+e.match(/.{1,2}/g).join("00")}},{key:"encodeContent",value:function(e){var t=m(e),a="0F0F0000000000007B0022006D0053006800610064006F00770046006F006E0074004D0061007000480061007300680022003A006E0075006C006C002C0022006D00540065007800740050006100720061006D0022003A007B0022006D0041006C00690067006E006D0065006E00740022003A0032002E0030002C0022006D004200610063006B00460069006C006C0043006F006C006F00720022003A0030002E0030002C0022006D004200610063006B00460069006C006C004F0070006100630069007400790022003A0030002E0030002C0022006D004200610063006B00460069006C006C00530069007A00650022003A0030002E0030002C0022006D004200610063006B00460069006C006C00560069007300690062006C00650022003A00660061006C00730065002C0022006D00440065006600610075006C007400520075006E0022003A005B005D002C0022006D0048006500690067006800740022003A0030002E0030002C0022006D00480069006E006400690044006900670069007400730022003A00660061006C00730065002C0022006D0049006E0064006900630022003A00660061006C00730065002C0022006D00490073004D00610073006B0022003A00660061006C00730065002C0022006D00490073004D00610073006B0049006E0076006500720074006500640022003A00660061006C00730065002C0022006D004900730056006500720074006900630061006C00540065007800740022003A00660061006C00730065002C0022006D004C0065006100640069006E00670022003A0030002E0030002C0022006D004C006900670061007400750072006500730022003A00660061006C00730065002C0022006D004C0069006E006500430061007000540079007000650022003A0030002E0030002C0022006D004C0069006E0065004A006F0069006E00540079007000650022003A0030002E0030002C0022006D004D0069007400650072004C0069006D006900740022003A0030002E0030002C0022006D004E0075006D005300740072006F006B006500730022003A0031002E0030002C0022006D00520054004C0022003A00660061006C00730065002C0022006D0053006800610064006F00770041006E0067006C00650022003A003100330035002E0030002C0022006D0053006800610064006F00770042006C007500720022003A00340030002E0030002C0022006D0053006800610064006F00770043006F006C006F00720022003A0034003100340034003900350039002E0030002C0022006D0053006800610064006F0077004F006600660073006500740022003A0037002E0030002C0022006D0053006800610064006F0077004F0070006100630069007400790022003A00370035002E0030002C0022006D0053006800610064006F007700530069007A00650022003A0030002E0030002C0022006D0053006800610064006F007700560069007300690062006C00650022003A00660061006C00730065002C0022006D005300740079006C0065005300680065006500740022003A007B0022006D004100640064006900740069006F006E0061006C005300740072006F006B00650043006F006C006F00720022003A005B005D002C0022006D004100640064006900740069006F006E0061006C005300740072006F006B006500560069007300690062006C00650022003A005B005D002C0022006D004100640064006900740069006F006E0061006C005300740072006F006B0065005700690064007400680022003A005B005D002C0022006D0042006100730065006C0069006E0065004F007000740069006F006E0022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D0042006100730065006C0069006E0065005300680069006600740022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D0043006100700073004F007000740069006F006E0022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D00460061007500780042006F006C00640022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C00660061006C00730065005D005D007D002C0022006D0046006100750078004900740061006C006900630022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C00660061006C00730065005D005D007D002C0022006D00460069006C006C0043006F006C006F00720022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C00310036003700370037003200310035002E0030005D005D007D002C0022006D00460069006C006C004F007600650072005300740072006F006B00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C0074007200750065005D005D007D002C0022006D00460069006C006C00560069007300690062006C00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C0074007200750065005D005D007D002C0022006D0046006F006E0074004E0061006D00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C00220041007200690061006C004D00540022005D005D007D002C0022006D0046006F006E007400530069007A00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C00360030002E0030005D005D007D002C0022006D004B00650072006E0069006E00670022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D005300740072006F006B00650043006F006C006F00720022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D005300740072006F006B006500560069007300690062006C00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C0074007200750065005D005D007D002C0022006D005300740072006F006B0065005700690064007400680022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C00310030002E0030005D005D007D002C0022006D00540065007800740022003A0022005C0072"+this.addZeroInHex(t)+"0022002C0022006D0054007200610063006B0069006E00670022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D005400730075006D00690022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D0055006E006400650072006C0069006E00650022003A006E0075006C006C007D002C0022006D005400610062005700690064007400680022003A003400300030002E0030002C0022006D0056006500720074006900630061006C0041006C00690067006E006D0065006E00740022003A0030002E0030002C0022006D005700690064007400680022003A0030002E0030007D002C0022006D005500730065004C0065006700610063007900540065007800740042006F00780022003A00660061006C00730065002C0022006D00560065007200730069006F006E0022003A0031002E0030007D00";return p.encode(a)}},{key:"processTime",value:function(e){var t=e.split(":"),a=36e5*Number(t[0])+6e4*Number(t[1])+Number(String(t[2]).replace(",",""));return Math.round(a/40)}},{key:"convertSRTtoXML",value:function(e,t){var a=(new h).fromSrt(t),i="";e=e.replace(".srt","");for(var s=0;smasterclip-'+s+"Graphictrue25false"+this.processTime(n)+""+this.processTime(c)+'nonesquarefalseGraphicGraphicAndType'+l+'GraphicAndTypegraphicfilterfalse1Source Text'+this.encodeContent(l)+'3Positionfalse0,0.5:0.8240740740740741,0,0,0,0,0,0,0,0,0,0,0,0'}return('2085225false'+e+"").replace("\t","")}},{key:"sleep",value:function(e){return new Promise((function(t){return setTimeout(t,e)}))}},{key:"uploadFile",value:function(e){var t=this,a=new FileReader;a.readAsText(e.target.files[0]),a.onload=function(a){var i=t.convertSRTtoXML(e.target.files[0].name,a.target.result);t.setState({xml:i}),t.setState({name:e.target.files[0].name.replace(".srt","")}),t.setState({loading:!1}),setTimeout((function(){t.setState({loading:!0}),t.setState({status:!1})}),2e3),e.target.value=null}}},{key:"clearAll",value:function(){this.setState({loading:!0}),this.setState({status:!0})}},{key:"render",value:function(){return Object(d.jsxs)("div",{className:"App",children:[Object(d.jsxs)("div",{className:"acss-header",children:[Object(d.jsx)("div",{className:"acss_banner"}),Object(d.jsx)("div",{className:"verify-form",children:Object(d.jsxs)("form",{className:"clearfix",children:[Object(d.jsx)("div",{className:"avatar",children:Object(d.jsx)("div",{className:"theme-share-head",children:Object(d.jsxs)("span",{className:"radius-3",children:[Object(d.jsx)("img",{src:"https://chdo.xyz/srt2prxml/title.png",width:"370"}),Object(d.jsx)("span",{className:"cert-info"})]})})}),Object(d.jsxs)("div",{className:"verify-input",children:[Object(d.jsx)("p",{children:Object(d.jsxs)("label",{className:"a_demo_three",href:"#",children:[Object(d.jsx)("a",{children:"Upload SRT file"}),Object(d.jsx)("input",{type:"file",name:"myFile",onChange:this.uploadFile,onClick:this.clearAll,accept:".srt"})]})}),Object(d.jsx)("br",{}),Object(d.jsx)("div",{hidden:this.state.loading,children:Object(d.jsxs)("div",{className:"lds-ripple",children:[Object(d.jsx)("div",{}),Object(d.jsx)("div",{})]})}),Object(d.jsxs)("p",{hidden:this.state.status,children:[Object(d.jsxs)("a",{children:[this.state.name,".xml"]}),Object(d.jsx)("br",{}),Object(d.jsx)("br",{}),Object(d.jsx)("a",{className:"b_demo_three",onClick:this.downloadTxtFile,children:"Download XML"})]})]}),"* The tool is supporting English subtitles only *",Object(d.jsx)("br",{}),"If you feel this tool is helpful, you can ",Object(d.jsx)("a",{href:"https://buy.stripe.com/bIY4iTcUu59hf4scMM",children:"donate"})," to the author."]})})]}),Object(d.jsxs)("div",{className:"cloud-bg",children:[Object(d.jsx)("div",{className:"bg1"}),Object(d.jsx)("div",{className:"bg2"}),Object(d.jsx)("div",{className:"bg3"})]})]})}}]),a}(i.Component),A=function(e){e&&e instanceof Function&&a.e(3).then(a.bind(null,26)).then((function(t){var a=t.getCLS,i=t.getFID,s=t.getFCP,r=t.getLCP,n=t.getTTFB;a(e),i(e),s(e),r(e),n(e)}))};n.a.render(Object(d.jsx)(s.a.StrictMode,{children:Object(d.jsx)(u,{})}),document.getElementById("root")),A()}},[[25,1,2]]]); 2 | //# sourceMappingURL=main.45a25e82.chunk.js.map -------------------------------------------------------------------------------- /static/js/main.9b59b7a0.chunk.js: -------------------------------------------------------------------------------- 1 | (this.webpackJsonpsub2prxml=this.webpackJsonpsub2prxml||[]).push([[0],{13:function(e,t,a){},14:function(e,t,a){},25:function(e,t,a){"use strict";a.r(t);var i=a(1),s=a.n(i),r=a(4),n=a.n(r),c=(a(13),a(5)),l=a(6),C=a(2),D=a(8),o=a(7),d=(a(14),a(0)),m=a(16).encode,p=a(17),h=a(24).default,u=function(e){Object(D.a)(a,e);var t=Object(o.a)(a);function a(e){var i;return Object(c.a)(this,a),(i=t.call(this,e)).changeTitle=function(e){var t=i.convertSRTtoXML("awdawd.srt",e.target.value);i.setState({xml:t})},i.downloadTxtFile=function(){var e=document.createElement("a"),t=new Blob([i.state.xml],{type:"text/xml"});e.href=URL.createObjectURL(t),e.download=i.state.name+".xml",document.body.appendChild(e),e.click()},i.state={name:"none",status:!0,loading:!0},i.uploadFile=i.uploadFile.bind(Object(C.a)(i)),i.clearAll=i.clearAll.bind(Object(C.a)(i)),i}return Object(l.a)(a,[{key:"addZeroInHex",value:function(e){return"00"+e.match(/.{1,2}/g).join("00")}},{key:"encodeContent",value:function(e){var t=m(e),a="0F0F0000000000007B0022006D0053006800610064006F00770046006F006E0074004D0061007000480061007300680022003A006E0075006C006C002C0022006D00540065007800740050006100720061006D0022003A007B0022006D0041006C00690067006E006D0065006E00740022003A0032002E0030002C0022006D004200610063006B00460069006C006C0043006F006C006F00720022003A0030002E0030002C0022006D004200610063006B00460069006C006C004F0070006100630069007400790022003A0030002E0030002C0022006D004200610063006B00460069006C006C00530069007A00650022003A0030002E0030002C0022006D004200610063006B00460069006C006C00560069007300690062006C00650022003A00660061006C00730065002C0022006D00440065006600610075006C007400520075006E0022003A005B005D002C0022006D0048006500690067006800740022003A0030002E0030002C0022006D00480069006E006400690044006900670069007400730022003A00660061006C00730065002C0022006D0049006E0064006900630022003A00660061006C00730065002C0022006D00490073004D00610073006B0022003A00660061006C00730065002C0022006D00490073004D00610073006B0049006E0076006500720074006500640022003A00660061006C00730065002C0022006D004900730056006500720074006900630061006C00540065007800740022003A00660061006C00730065002C0022006D004C0065006100640069006E00670022003A0030002E0030002C0022006D004C006900670061007400750072006500730022003A00660061006C00730065002C0022006D004C0069006E006500430061007000540079007000650022003A0030002E0030002C0022006D004C0069006E0065004A006F0069006E00540079007000650022003A0030002E0030002C0022006D004D0069007400650072004C0069006D006900740022003A0030002E0030002C0022006D004E0075006D005300740072006F006B006500730022003A0031002E0030002C0022006D00520054004C0022003A00660061006C00730065002C0022006D0053006800610064006F00770041006E0067006C00650022003A003100330035002E0030002C0022006D0053006800610064006F00770042006C007500720022003A00340030002E0030002C0022006D0053006800610064006F00770043006F006C006F00720022003A0034003100340034003900350039002E0030002C0022006D0053006800610064006F0077004F006600660073006500740022003A0037002E0030002C0022006D0053006800610064006F0077004F0070006100630069007400790022003A00370035002E0030002C0022006D0053006800610064006F007700530069007A00650022003A0030002E0030002C0022006D0053006800610064006F007700560069007300690062006C00650022003A00660061006C00730065002C0022006D005300740079006C0065005300680065006500740022003A007B0022006D004100640064006900740069006F006E0061006C005300740072006F006B00650043006F006C006F00720022003A005B005D002C0022006D004100640064006900740069006F006E0061006C005300740072006F006B006500560069007300690062006C00650022003A005B005D002C0022006D004100640064006900740069006F006E0061006C005300740072006F006B0065005700690064007400680022003A005B005D002C0022006D0042006100730065006C0069006E0065004F007000740069006F006E0022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D0042006100730065006C0069006E0065005300680069006600740022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D0043006100700073004F007000740069006F006E0022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D00460061007500780042006F006C00640022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C00660061006C00730065005D005D007D002C0022006D0046006100750078004900740061006C006900630022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C00660061006C00730065005D005D007D002C0022006D00460069006C006C0043006F006C006F00720022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C00310036003700370037003200310035002E0030005D005D007D002C0022006D00460069006C006C004F007600650072005300740072006F006B00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C0074007200750065005D005D007D002C0022006D00460069006C006C00560069007300690062006C00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C0074007200750065005D005D007D002C0022006D0046006F006E0074004E0061006D00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C00220041007200690061006C004D00540022005D005D007D002C0022006D0046006F006E007400530069007A00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C00360030002E0030005D005D007D002C0022006D004B00650072006E0069006E00670022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D005300740072006F006B00650043006F006C006F00720022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D005300740072006F006B006500560069007300690062006C00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C0074007200750065005D005D007D002C0022006D005300740072006F006B0065005700690064007400680022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C00310030002E0030005D005D007D002C0022006D00540065007800740022003A0022005C0072"+this.addZeroInHex(t)+"0022002C0022006D0054007200610063006B0069006E00670022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D005400730075006D00690022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D0055006E006400650072006C0069006E00650022003A006E0075006C006C007D002C0022006D005400610062005700690064007400680022003A003400300030002E0030002C0022006D0056006500720074006900630061006C0041006C00690067006E006D0065006E00740022003A0030002E0030002C0022006D005700690064007400680022003A0030002E0030007D002C0022006D005500730065004C0065006700610063007900540065007800740042006F00780022003A00660061006C00730065002C0022006D00560065007200730069006F006E0022003A0031002E0030007D00";return p.encode(a)}},{key:"processTime",value:function(e){var t=e.split(":"),a=36e5*Number(t[0])+6e4*Number(t[1])+Number(String(t[2]).replace(",",""));return Math.round(a/40)}},{key:"convertSRTtoXML",value:function(e,t){var a=(new h).fromSrt(t),i="";e=e.replace(".srt","");for(var s=0;smasterclip-'+s+"Graphictrue25false"+this.processTime(n)+""+this.processTime(c)+'nonesquarefalseGraphicGraphicAndType'+l+'GraphicAndTypegraphicfilterfalse1Source Text'+this.encodeContent(l)+'3Positionfalse0,0.5:0.8240740740740741,0,0,0,0,0,0,0,0,0,0,0,0'}return('2085225false'+e+"").replace("\t","")}},{key:"sleep",value:function(e){return new Promise((function(t){return setTimeout(t,e)}))}},{key:"uploadFile",value:function(e){var t=this,a=new FileReader;a.readAsText(e.target.files[0]),a.onload=function(a){var i=t.convertSRTtoXML(e.target.files[0].name,a.target.result);t.setState({xml:i}),t.setState({name:e.target.files[0].name.replace(".srt","")}),t.setState({loading:!1}),setTimeout((function(){t.setState({loading:!0}),t.setState({status:!1})}),2e3),e.target.value=null}}},{key:"clearAll",value:function(){this.setState({loading:!0}),this.setState({status:!0})}},{key:"render",value:function(){return Object(d.jsxs)("div",{className:"App",children:[Object(d.jsxs)("div",{className:"acss-header",children:[Object(d.jsx)("div",{className:"acss_banner"}),Object(d.jsx)("div",{className:"verify-form",children:Object(d.jsxs)("form",{className:"clearfix",children:[Object(d.jsx)("div",{className:"avatar",children:Object(d.jsx)("div",{className:"theme-share-head",children:Object(d.jsxs)("span",{className:"radius-3",children:[Object(d.jsx)("img",{src:"https://srt2prxml.chdo.xyz/title.png",width:"370"}),Object(d.jsx)("span",{className:"cert-info"})]})})}),Object(d.jsxs)("div",{className:"verify-input",children:[Object(d.jsx)("p",{children:Object(d.jsxs)("label",{className:"a_demo_three",href:"#",children:[Object(d.jsx)("a",{children:"Upload SRT file"}),Object(d.jsx)("input",{type:"file",name:"myFile",onChange:this.uploadFile,onClick:this.clearAll,accept:".srt"})]})}),Object(d.jsx)("br",{}),Object(d.jsx)("div",{hidden:this.state.loading,children:Object(d.jsxs)("div",{className:"lds-ripple",children:[Object(d.jsx)("div",{}),Object(d.jsx)("div",{})]})}),Object(d.jsxs)("p",{hidden:this.state.status,children:[Object(d.jsxs)("a",{children:[this.state.name,".xml"]}),Object(d.jsx)("br",{}),Object(d.jsx)("br",{}),Object(d.jsx)("a",{className:"b_demo_three",onClick:this.downloadTxtFile,children:"Download XML"})]})]}),"* The tool is supporting English subtitles only *",Object(d.jsx)("br",{}),"If you feel this tool is helpful, you can ",Object(d.jsx)("a",{href:"https://buy.stripe.com/bIY4iTcUu59hf4scMM",children:"donate"})," to the author."]})})]}),Object(d.jsxs)("div",{className:"cloud-bg",children:[Object(d.jsx)("div",{className:"bg1"}),Object(d.jsx)("div",{className:"bg2"}),Object(d.jsx)("div",{className:"bg3"})]})]})}}]),a}(i.Component),A=function(e){e&&e instanceof Function&&a.e(3).then(a.bind(null,26)).then((function(t){var a=t.getCLS,i=t.getFID,s=t.getFCP,r=t.getLCP,n=t.getTTFB;a(e),i(e),s(e),r(e),n(e)}))};n.a.render(Object(d.jsx)(s.a.StrictMode,{children:Object(d.jsx)(u,{})}),document.getElementById("root")),A()}},[[25,1,2]]]); 2 | //# sourceMappingURL=main.9b59b7a0.chunk.js.map -------------------------------------------------------------------------------- /static/js/runtime-main.8f5d72ae.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["../webpack/bootstrap"],"names":["webpackJsonpCallback","data","moduleId","chunkId","chunkIds","moreModules","executeModules","i","resolves","length","Object","prototype","hasOwnProperty","call","installedChunks","push","modules","parentJsonpFunction","shift","deferredModules","apply","checkDeferredModules","result","deferredModule","fulfilled","j","depId","splice","__webpack_require__","s","installedModules","exports","module","l","e","promises","installedChunkData","promise","Promise","resolve","reject","onScriptComplete","script","document","createElement","charset","timeout","nc","setAttribute","src","p","jsonpScriptSrc","error","Error","event","onerror","onload","clearTimeout","chunk","errorType","type","realSrc","target","message","name","request","undefined","setTimeout","head","appendChild","all","m","c","d","getter","o","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","oe","err","console","jsonpArray","this","oldJsonpFunction","slice"],"mappings":"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","file":"static/js/runtime-main.8f5d72ae.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t1: 0\n \t};\n\n \tvar deferredModules = [];\n\n \t// script path function\n \tfunction jsonpScriptSrc(chunkId) {\n \t\treturn __webpack_require__.p + \"static/js/\" + ({}[chunkId]||chunkId) + \".\" + {\"3\":\"24dee0ef\"}[chunkId] + \".chunk.js\"\n \t}\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n \t// This file contains only the entry chunk.\n \t// The chunk loading function for additional chunks\n \t__webpack_require__.e = function requireEnsure(chunkId) {\n \t\tvar promises = [];\n\n\n \t\t// JSONP chunk loading for javascript\n\n \t\tvar installedChunkData = installedChunks[chunkId];\n \t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n \t\t\t// a Promise means \"currently loading\".\n \t\t\tif(installedChunkData) {\n \t\t\t\tpromises.push(installedChunkData[2]);\n \t\t\t} else {\n \t\t\t\t// setup Promise in chunk cache\n \t\t\t\tvar promise = new Promise(function(resolve, reject) {\n \t\t\t\t\tinstalledChunkData = installedChunks[chunkId] = [resolve, reject];\n \t\t\t\t});\n \t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n \t\t\t\t// start chunk loading\n \t\t\t\tvar script = document.createElement('script');\n \t\t\t\tvar onScriptComplete;\n\n \t\t\t\tscript.charset = 'utf-8';\n \t\t\t\tscript.timeout = 120;\n \t\t\t\tif (__webpack_require__.nc) {\n \t\t\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n \t\t\t\t}\n \t\t\t\tscript.src = jsonpScriptSrc(chunkId);\n\n \t\t\t\t// create error before stack unwound to get useful stacktrace later\n \t\t\t\tvar error = new Error();\n \t\t\t\tonScriptComplete = function (event) {\n \t\t\t\t\t// avoid mem leaks in IE.\n \t\t\t\t\tscript.onerror = script.onload = null;\n \t\t\t\t\tclearTimeout(timeout);\n \t\t\t\t\tvar chunk = installedChunks[chunkId];\n \t\t\t\t\tif(chunk !== 0) {\n \t\t\t\t\t\tif(chunk) {\n \t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n \t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n \t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n \t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n \t\t\t\t\t\t\terror.type = errorType;\n \t\t\t\t\t\t\terror.request = realSrc;\n \t\t\t\t\t\t\tchunk[1](error);\n \t\t\t\t\t\t}\n \t\t\t\t\t\tinstalledChunks[chunkId] = undefined;\n \t\t\t\t\t}\n \t\t\t\t};\n \t\t\t\tvar timeout = setTimeout(function(){\n \t\t\t\t\tonScriptComplete({ type: 'timeout', target: script });\n \t\t\t\t}, 120000);\n \t\t\t\tscript.onerror = script.onload = onScriptComplete;\n \t\t\t\tdocument.head.appendChild(script);\n \t\t\t}\n \t\t}\n \t\treturn Promise.all(promises);\n \t};\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/\";\n\n \t// on error function for async loading\n \t__webpack_require__.oe = function(err) { console.error(err); throw err; };\n\n \tvar jsonpArray = this[\"webpackJsonpsub2prxml\"] = this[\"webpackJsonpsub2prxml\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// run deferred modules from other chunks\n \tcheckDeferredModules();\n"],"sourceRoot":""} -------------------------------------------------------------------------------- /static/js/runtime-main.3478a80a.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["../webpack/bootstrap"],"names":["webpackJsonpCallback","data","moduleId","chunkId","chunkIds","moreModules","executeModules","i","resolves","length","Object","prototype","hasOwnProperty","call","installedChunks","push","modules","parentJsonpFunction","shift","deferredModules","apply","checkDeferredModules","result","deferredModule","fulfilled","j","depId","splice","__webpack_require__","s","installedModules","exports","module","l","e","promises","installedChunkData","promise","Promise","resolve","reject","onScriptComplete","script","document","createElement","charset","timeout","nc","setAttribute","src","p","jsonpScriptSrc","error","Error","event","onerror","onload","clearTimeout","chunk","errorType","type","realSrc","target","message","name","request","undefined","setTimeout","head","appendChild","all","m","c","d","getter","o","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","oe","err","console","jsonpArray","this","oldJsonpFunction","slice"],"mappings":"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","file":"static/js/runtime-main.3478a80a.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t1: 0\n \t};\n\n \tvar deferredModules = [];\n\n \t// script path function\n \tfunction jsonpScriptSrc(chunkId) {\n \t\treturn __webpack_require__.p + \"static/js/\" + ({}[chunkId]||chunkId) + \".\" + {\"3\":\"24dee0ef\"}[chunkId] + \".chunk.js\"\n \t}\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n \t// This file contains only the entry chunk.\n \t// The chunk loading function for additional chunks\n \t__webpack_require__.e = function requireEnsure(chunkId) {\n \t\tvar promises = [];\n\n\n \t\t// JSONP chunk loading for javascript\n\n \t\tvar installedChunkData = installedChunks[chunkId];\n \t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n \t\t\t// a Promise means \"currently loading\".\n \t\t\tif(installedChunkData) {\n \t\t\t\tpromises.push(installedChunkData[2]);\n \t\t\t} else {\n \t\t\t\t// setup Promise in chunk cache\n \t\t\t\tvar promise = new Promise(function(resolve, reject) {\n \t\t\t\t\tinstalledChunkData = installedChunks[chunkId] = [resolve, reject];\n \t\t\t\t});\n \t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n \t\t\t\t// start chunk loading\n \t\t\t\tvar script = document.createElement('script');\n \t\t\t\tvar onScriptComplete;\n\n \t\t\t\tscript.charset = 'utf-8';\n \t\t\t\tscript.timeout = 120;\n \t\t\t\tif (__webpack_require__.nc) {\n \t\t\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n \t\t\t\t}\n \t\t\t\tscript.src = jsonpScriptSrc(chunkId);\n\n \t\t\t\t// create error before stack unwound to get useful stacktrace later\n \t\t\t\tvar error = new Error();\n \t\t\t\tonScriptComplete = function (event) {\n \t\t\t\t\t// avoid mem leaks in IE.\n \t\t\t\t\tscript.onerror = script.onload = null;\n \t\t\t\t\tclearTimeout(timeout);\n \t\t\t\t\tvar chunk = installedChunks[chunkId];\n \t\t\t\t\tif(chunk !== 0) {\n \t\t\t\t\t\tif(chunk) {\n \t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n \t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n \t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n \t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n \t\t\t\t\t\t\terror.type = errorType;\n \t\t\t\t\t\t\terror.request = realSrc;\n \t\t\t\t\t\t\tchunk[1](error);\n \t\t\t\t\t\t}\n \t\t\t\t\t\tinstalledChunks[chunkId] = undefined;\n \t\t\t\t\t}\n \t\t\t\t};\n \t\t\t\tvar timeout = setTimeout(function(){\n \t\t\t\t\tonScriptComplete({ type: 'timeout', target: script });\n \t\t\t\t}, 120000);\n \t\t\t\tscript.onerror = script.onload = onScriptComplete;\n \t\t\t\tdocument.head.appendChild(script);\n \t\t\t}\n \t\t}\n \t\treturn Promise.all(promises);\n \t};\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/srt2prxml/\";\n\n \t// on error function for async loading\n \t__webpack_require__.oe = function(err) { console.error(err); throw err; };\n\n \tvar jsonpArray = this[\"webpackJsonpsub2prxml\"] = this[\"webpackJsonpsub2prxml\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// run deferred modules from other chunks\n \tcheckDeferredModules();\n"],"sourceRoot":""} -------------------------------------------------------------------------------- /static/css/main.a2822302.chunk.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["webpack://src/index.css","webpack://src/App.css"],"names":[],"mappings":"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","file":"main.a2822302.chunk.css","sourcesContent":["body {\n margin: 0;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\ncode {\n}\n",".App {\n text-align: center;\n padding: 290px 0 200px;\n line-height: 28px;\n font-size: 16px;\n height: 100%;\n font-family: \"Roboto\", sans-serif;\n font-weight: 400;\n color: #6b707f;\n letter-spacing: 0.15px;\n background: #ccefff;\n}\n\nbody{\n background: #fff;\n}\n\n.App-logo {\n height: 40vmin;\n pointer-events: none;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n .App-logo {\n animation: App-logo-spin infinite 20s linear;\n }\n}\n\n.App-header {\n background-color: #282c34;\n min-height: 100vh;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n font-size: calc(10px + 2vmin);\n background: #f7f7f7;\n}\n\n.App-link {\n color: #61dafb;\n}\n\n@keyframes App-logo-spin {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n\n.nav_btn:not(.not-round-btn) {\n color: #4c4cf1;\n border-radius: 45px;\n}\n.right-nav .nav_btn {\n font-size: 14px;\n font-weight: 500;\n padding: 8px 27px;\n text-align: center;\n border-radius: 4px;\n border: 2px solid #fff;\n transition: all 0.3s linear;\n background: #fff;\n color: #4c4cf1;\n}\n\n.cloud-bg .bg1 {\n position: absolute;\n width: 100%;\n height: 400px;\n background: url(\"http://localhost:3000/footer-cloud.png\");\n background-repeat: repeat-x;\n background-position: 0 bottom;\n bottom: 39%;\n}\n\n.theme-share-head{\n width: 44px;\n height: 44px;\n overflow: hidden;\n padding: 3px;\n}\n.acss-header {\n display: block;\n position: absolute;\n top: 50%;\n left: 50%;\n margin: -240px 0 0 -230px;\n z-index: 1;\n}\n.acss_banner {\n width: 333px;\n height: 69px;\n background-image: url(http://localhost:3000/logo.png);\n background-repeat: no-repeat;\n background-size: 100% 100%;\n margin: 0 auto 70px;\n}\n.verify-form {\n margin: 0 auto;\n text-align: center;\n font-size: 14px;\n position: relative;\n background: #fff;\n background-color: rgba(255,255,255,0.5);\n border-radius: 4px;\n box-shadow: 0 0 10px rgb(171 198 235 / 30%);\n}\n.avatar {\n display: inline-block;\n vertical-align: middle;\n padding: 15px 0px 15px 0px;\n}\n\n.theme-share-head span {\n line-height: 1;\n display: table-cell;\n vertical-align: middle;\n text-align: center;\n}\n.theme-share-head, .theme-share-head>span {\n width: 370px;\n height: 44px;\n overflow: hidden;\n}\n\n.theme-share-head img {\n width: 100%;\n vertical-align: middle;\n}\n\n.verify-input {\n padding: 20px 30px 48px;\n}\n\n.verify-input .pickpw {\n padding: 0 0 15px;\n}\n\n.a_demo_three input{\n display:none;\n}\n\n.a_demo_three {\n\tbackground-color:#3bb3e0;\n\tfont-family: 'Open Sans', sans-serif;\n\tfont-size:20px;\n\ttext-decoration:none;\n\tcolor:#fff;\n\tposition:relative;\n\tpadding:26px 70px;\n\tborder-left:solid 1px #2ab7ec;\n\tmargin-left:45px;\n height:50px;\n\tbackground-image: linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(44,160,202)),\n\tcolor-stop(1, rgb(62,184,229))\n\t);\n\t-webkit-border-top-right-radius: 5px;\n\t-webkit-border-bottom-right-radius: 5px;\n\t-moz-border-radius-topright: 5px;\n\t-moz-border-radius-bottomright: 5px;\n\tborder-top-right-radius: 5px;\n\tborder-bottom-right-radius: 5px;\n\t-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\t-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\t-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\tbox-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n}\n\n.a_demo_three:active {\n\ttop:3px;\n\tbackground-image: linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(62,184,229)),\n\tcolor-stop(1, rgb(44,160,202))\n\t);\n\t-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\t-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\t-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\tbox-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n}\n\n.a_demo_three::before {\n text-align: center;\n\tbackground-color:#2561b4;\n\tcontent:\"1\";\n\twidth:80px;\n\theight:50px;\n\tposition:absolute;\n\tdisplay:block;\n\tpadding-top:25px;\n\ttop:0px;\n\tfont-size:26px;\n\tfont-weight:bold;\n\tcolor:#8fd1ea;\n\ttext-shadow:1px 1px 0px #07526e;\n\tborder-right:solid 1px #07526e;\n\tbackground-image: linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(10,94,125)),\n\tcolor-stop(1, rgb(14,139,184))\n\t);\n\t-webkit-border-top-left-radius: 5px;\n\t-webkit-border-bottom-left-radius: 5px;\n\t-moz-border-radius-topleft: 5px;\n\t-moz-border-radius-bottomleft: 5px;\n\tborder-top-left-radius: 5px;\n\tborder-bottom-left-radius: 5px;\n\t-webkit-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\t-moz-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\t-o-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\tbox-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n}\n\n.a_demo_three:active::before {\n\ttop:-3px;\n\t-webkit-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\t-moz-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\t-o-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\tbox-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n}\n\n.b_demo_three {\n\tbackground-color:#3bb3e0;\n\tfont-family: 'Open Sans', sans-serif;\n\tfont-size:20px;\n\ttext-decoration:none;\n\tcolor:#fff;\n\tposition:relative;\n\tpadding:26px 72px;\n\tborder-left:solid 1px #2ab7ec;\n\tmargin-left:45px;\n height:50px;\n\tbackground-image: linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(44,160,202)),\n\tcolor-stop(1, rgb(62,184,229))\n\t);\n\t-webkit-border-top-right-radius: 5px;\n\t-webkit-border-bottom-right-radius: 5px;\n\t-moz-border-radius-topright: 5px;\n\t-moz-border-radius-bottomright: 5px;\n\tborder-top-right-radius: 5px;\n\tborder-bottom-right-radius: 5px;\n\t-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\t-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\t-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\tbox-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n}\n\n.b_demo_three:active {\n\ttop:3px;\n\tbackground-image: linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(62,184,229)),\n\tcolor-stop(1, rgb(44,160,202))\n\t);\n\t-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\t-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\t-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\tbox-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n}\n\n.b_demo_three::before {\n text-align: center;\n\tbackground-color:#2561b4;\n\tcontent:\"2\";\n\twidth:80px;\n\theight:50px;\n\tposition:absolute;\n\tdisplay:block;\n\tpadding-top:25px;\n\ttop:0px;\n\tfont-size:26px;\n\tfont-weight:bold;\n\tcolor:#8fd1ea;\n\ttext-shadow:1px 1px 0px #07526e;\n\tborder-right:solid 1px #07526e;\n\tbackground-image: linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(10,94,125)),\n\tcolor-stop(1, rgb(14,139,184))\n\t);\n\t-webkit-border-top-left-radius: 5px;\n\t-webkit-border-bottom-left-radius: 5px;\n\t-moz-border-radius-topleft: 5px;\n\t-moz-border-radius-bottomleft: 5px;\n\tborder-top-left-radius: 5px;\n\tborder-bottom-left-radius: 5px;\n\t-webkit-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\t-moz-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\t-o-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\tbox-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n}\n\n.b_demo_three:active::before {\n\ttop:-3px;\n\t-webkit-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\t-moz-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\t-o-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\tbox-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n}\n\n.lds-ripple {\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n}\n.lds-ripple div {\n position: absolute;\n border: 4px solid #2ab7ec;\n opacity: 1;\n border-radius: 50%;\n animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;\n}\n.lds-ripple div:nth-child(2) {\n animation-delay: -0.5s;\n}\n@keyframes lds-ripple {\n 0% {\n top: 36px;\n left: 36px;\n width: 0;\n height: 0;\n opacity: 1;\n }\n 100% {\n top: 0px;\n left: 0px;\n width: 72px;\n height: 72px;\n opacity: 0;\n }\n}\n"]} -------------------------------------------------------------------------------- /static/css/main.62618932.chunk.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["webpack://src/index.css","webpack://src/App.css"],"names":[],"mappings":"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","file":"main.62618932.chunk.css","sourcesContent":["body {\n margin: 0;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\ncode {\n}\n",".App {\n text-align: center;\n padding: 290px 0 200px;\n line-height: 28px;\n font-size: 16px;\n height: 100%;\n font-family: \"Roboto\", sans-serif;\n font-weight: 400;\n color: #6b707f;\n letter-spacing: 0.15px;\n background: #ccefff;\n}\n\nbody{\n background: #fff;\n}\n\n.App-logo {\n height: 40vmin;\n pointer-events: none;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n .App-logo {\n animation: App-logo-spin infinite 20s linear;\n }\n}\n\n.App-header {\n background-color: #282c34;\n min-height: 100vh;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n font-size: calc(10px + 2vmin);\n background: #f7f7f7;\n}\n\n.App-link {\n color: #61dafb;\n}\n\n@keyframes App-logo-spin {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n\n.nav_btn:not(.not-round-btn) {\n color: #4c4cf1;\n border-radius: 45px;\n}\n.right-nav .nav_btn {\n font-size: 14px;\n font-weight: 500;\n padding: 8px 27px;\n text-align: center;\n border-radius: 4px;\n border: 2px solid #fff;\n transition: all 0.3s linear;\n background: #fff;\n color: #4c4cf1;\n}\n\n.cloud-bg .bg1 {\n position: absolute;\n width: 100%;\n height: 400px;\n background: url(\"https://srt2prxml.chdo.xyz/footer-cloud.png\");\n background-repeat: repeat-x;\n background-position: 0 bottom;\n bottom: 39%;\n}\n\n.theme-share-head{\n width: 44px;\n height: 44px;\n overflow: hidden;\n padding: 3px;\n}\n.acss-header {\n display: block;\n position: absolute;\n top: 50%;\n left: 50%;\n margin: -240px 0 0 -230px;\n z-index: 1;\n}\n.acss_banner {\n width: 333px;\n height: 69px;\n background-image: url(https://srt2prxml.chdo.xyz/logo.png);\n background-repeat: no-repeat;\n background-size: 100% 100%;\n margin: 0 auto 70px;\n}\n.verify-form {\n margin: 0 auto;\n text-align: center;\n font-size: 14px;\n position: relative;\n background: #fff;\n background-color: rgba(255,255,255,0.5);\n border-radius: 4px;\n box-shadow: 0 0 10px rgb(171 198 235 / 30%);\n}\n.avatar {\n display: inline-block;\n vertical-align: middle;\n padding: 15px 0px 15px 0px;\n}\n\n.theme-share-head span {\n line-height: 1;\n display: table-cell;\n vertical-align: middle;\n text-align: center;\n}\n.theme-share-head, .theme-share-head>span {\n width: 370px;\n height: 44px;\n overflow: hidden;\n}\n\n.theme-share-head img {\n width: 100%;\n vertical-align: middle;\n}\n\n.verify-input {\n padding: 20px 30px 48px;\n}\n\n.verify-input .pickpw {\n padding: 0 0 15px;\n}\n\n.a_demo_three input{\n display:none;\n}\n\n.a_demo_three {\n\tbackground-color:#3bb3e0;\n\tfont-family: 'Open Sans', sans-serif;\n\tfont-size:20px;\n\ttext-decoration:none;\n\tcolor:#fff;\n\tposition:relative;\n\tpadding:26px 70px;\n\tborder-left:solid 1px #2ab7ec;\n\tmargin-left:45px;\n height:50px;\n\tbackground-image: linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(44,160,202)),\n\tcolor-stop(1, rgb(62,184,229))\n\t);\n\t-webkit-border-top-right-radius: 5px;\n\t-webkit-border-bottom-right-radius: 5px;\n\t-moz-border-radius-topright: 5px;\n\t-moz-border-radius-bottomright: 5px;\n\tborder-top-right-radius: 5px;\n\tborder-bottom-right-radius: 5px;\n\t-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\t-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\t-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\tbox-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n}\n\n.a_demo_three:active {\n\ttop:3px;\n\tbackground-image: linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(62,184,229)),\n\tcolor-stop(1, rgb(44,160,202))\n\t);\n\t-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\t-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\t-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\tbox-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n}\n\n.a_demo_three::before {\n text-align: center;\n\tbackground-color:#2561b4;\n\tcontent:\"1\";\n\twidth:80px;\n\theight:50px;\n\tposition:absolute;\n\tdisplay:block;\n\tpadding-top:25px;\n\ttop:0px;\n\tfont-size:26px;\n\tfont-weight:bold;\n\tcolor:#8fd1ea;\n\ttext-shadow:1px 1px 0px #07526e;\n\tborder-right:solid 1px #07526e;\n\tbackground-image: linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(10,94,125)),\n\tcolor-stop(1, rgb(14,139,184))\n\t);\n\t-webkit-border-top-left-radius: 5px;\n\t-webkit-border-bottom-left-radius: 5px;\n\t-moz-border-radius-topleft: 5px;\n\t-moz-border-radius-bottomleft: 5px;\n\tborder-top-left-radius: 5px;\n\tborder-bottom-left-radius: 5px;\n\t-webkit-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\t-moz-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\t-o-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\tbox-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n}\n\n.a_demo_three:active::before {\n\ttop:-3px;\n\t-webkit-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\t-moz-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\t-o-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\tbox-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n}\n\n.b_demo_three {\n\tbackground-color:#3bb3e0;\n\tfont-family: 'Open Sans', sans-serif;\n\tfont-size:20px;\n\ttext-decoration:none;\n\tcolor:#fff;\n\tposition:relative;\n\tpadding:26px 72px;\n\tborder-left:solid 1px #2ab7ec;\n\tmargin-left:45px;\n height:50px;\n\tbackground-image: linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(44,160,202)),\n\tcolor-stop(1, rgb(62,184,229))\n\t);\n\t-webkit-border-top-right-radius: 5px;\n\t-webkit-border-bottom-right-radius: 5px;\n\t-moz-border-radius-topright: 5px;\n\t-moz-border-radius-bottomright: 5px;\n\tborder-top-right-radius: 5px;\n\tborder-bottom-right-radius: 5px;\n\t-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\t-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\t-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\tbox-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n}\n\n.b_demo_three:active {\n\ttop:3px;\n\tbackground-image: linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(62,184,229)),\n\tcolor-stop(1, rgb(44,160,202))\n\t);\n\t-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\t-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\t-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\tbox-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n}\n\n.b_demo_three::before {\n text-align: center;\n\tbackground-color:#2561b4;\n\tcontent:\"2\";\n\twidth:80px;\n\theight:50px;\n\tposition:absolute;\n\tdisplay:block;\n\tpadding-top:25px;\n\ttop:0px;\n\tfont-size:26px;\n\tfont-weight:bold;\n\tcolor:#8fd1ea;\n\ttext-shadow:1px 1px 0px #07526e;\n\tborder-right:solid 1px #07526e;\n\tbackground-image: linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(10,94,125)),\n\tcolor-stop(1, rgb(14,139,184))\n\t);\n\t-webkit-border-top-left-radius: 5px;\n\t-webkit-border-bottom-left-radius: 5px;\n\t-moz-border-radius-topleft: 5px;\n\t-moz-border-radius-bottomleft: 5px;\n\tborder-top-left-radius: 5px;\n\tborder-bottom-left-radius: 5px;\n\t-webkit-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\t-moz-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\t-o-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\tbox-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n}\n\n.b_demo_three:active::before {\n\ttop:-3px;\n\t-webkit-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\t-moz-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\t-o-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\tbox-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n}\n\n.lds-ripple {\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n}\n.lds-ripple div {\n position: absolute;\n border: 4px solid #2ab7ec;\n opacity: 1;\n border-radius: 50%;\n animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;\n}\n.lds-ripple div:nth-child(2) {\n animation-delay: -0.5s;\n}\n@keyframes lds-ripple {\n 0% {\n top: 36px;\n left: 36px;\n width: 0;\n height: 0;\n opacity: 1;\n }\n 100% {\n top: 0px;\n left: 0px;\n width: 72px;\n height: 72px;\n opacity: 0;\n }\n}\n"]} -------------------------------------------------------------------------------- /static/css/main.ea80181a.chunk.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["webpack://src/index.css","webpack://src/App.css"],"names":[],"mappings":"AAAA,KACE,QAAS,CACT,kCAAmC,CACnC,iCACF,CCJA,KACI,iBAAkB,CAClB,qBAAsB,CACtB,gBAAiB,CACjB,cAAe,CACf,WAAY,CACZ,+BAAiC,CACjC,eAAgB,CAChB,aAAc,CACd,oBAAsB,CACtB,kBACJ,CAEA,KACE,eACF,CAEA,UACE,aAAc,CACd,mBACF,CAEA,8CACE,UACE,mDAA4C,CAA5C,2CACF,CACF,CAEA,YACE,wBAAyB,CACzB,gBAAiB,CACjB,YAAa,CACb,qBAAsB,CACtB,kBAAmB,CACnB,sBAAuB,CACvB,4BAA6B,CAC7B,kBACF,CAEA,UACE,aACF,CAEA,iCACE,GACE,8BAAuB,CAAvB,sBACF,CACA,GACE,+BAAyB,CAAzB,uBACF,CACF,CAPA,yBACE,GACE,8BAAuB,CAAvB,sBACF,CACA,GACE,+BAAyB,CAAzB,uBACF,CACF,CAEA,6BACE,aAAc,CACd,kBACF,CACA,oBACE,cAAe,CACf,eAAgB,CAChB,gBAAiB,CACjB,iBAAkB,CAClB,iBAAkB,CAClB,qBAAsB,CACtB,yBAA2B,CAC3B,eAAgB,CAChB,aACF,CAEA,eACE,iBAAkB,CAClB,UAAW,CACX,YAAa,CACb,2DAA8D,CAC9D,0BAA2B,CAC3B,4BAA6B,CAC7B,UACF,CAEA,kBACE,UAAW,CACT,WAAY,CACZ,eAAgB,CAChB,WACJ,CACA,aACE,aAAc,CACd,iBAAkB,CAClB,OAAQ,CACR,QAAS,CACT,wBAAyB,CACzB,SACF,CACA,aACE,WAAY,CACZ,WAAY,CACZ,yDAA0D,CAC1D,2BAA4B,CAC5B,yBAA0B,CAC1B,kBACF,CACA,aACE,aAAc,CACd,iBAAkB,CAClB,cAAe,CACf,iBAAkB,CAClB,eAAgB,CAChB,mCAAuC,CACvC,iBAAkB,CAClB,wCACF,CACA,QACE,oBAAqB,CACrB,qBAAsB,CACtB,cACF,CAEA,uBACE,aAAc,CACd,kBAAmB,CACnB,qBAAsB,CACtB,iBACF,CACA,yCACE,WAAY,CACZ,WAAY,CACZ,eACF,CAEA,sBACE,UAAW,CACX,qBACF,CAEA,cACE,sBACF,CAEA,sBACE,gBACF,CAEA,oBACE,YACF,CAEA,cACC,wBAAwB,CACxB,kCAAoC,CACpC,cAAc,CACd,oBAAoB,CACpB,UAAU,CACV,iBAAiB,CACjB,iBAAiB,CACjB,6BAA6B,CAC7B,gBAAgB,CACf,WAAW,CACZ,wDAAmF,CAInF,mEAAuF,CACvF,0GAMC,CACD,mCAAoC,CACpC,sCAAuC,CACvC,+BAAgC,CAChC,kCAAmC,CACnC,2BAA4B,CAC5B,8BAA+B,CAG/B,qEAAoF,CACpF,kEACD,CAEA,qBACC,OAAO,CACP,wDAAmF,CAInF,mEAAuF,CACvF,0GAMC,CAGD,oEAAmF,CACnF,iEACD,CAEA,qBACE,iBAAkB,CACnB,wBAAwB,CACxB,WAAW,CACX,UAAU,CACV,WAAW,CACX,iBAAiB,CACjB,aAAa,CACb,gBAAgB,CAChB,KAAO,CACP,cAAc,CACd,eAAgB,CAChB,aAAa,CACb,6BAA+B,CAC/B,8BAA8B,CAC9B,wDAAkF,CAIlF,mEAAsF,CACtF,0GAMC,CACD,kCAAmC,CACnC,qCAAsC,CACtC,8BAA+B,CAC/B,iCAAkC,CAClC,0BAA2B,CAC3B,6BAA8B,CAG9B,qEAAoF,CACpF,kEACD,CAEA,4BACC,QAAQ,CAGR,qJAAoL,CACpL,kJACD,CAEA,cACC,wBAAwB,CACxB,kCAAoC,CACpC,cAAc,CACd,oBAAoB,CACpB,UAAU,CACV,iBAAiB,CACjB,iBAAiB,CACjB,6BAA6B,CAC7B,gBAAgB,CACf,WAAW,CACZ,wDAAmF,CAInF,mEAAuF,CACvF,0GAMC,CACD,mCAAoC,CACpC,sCAAuC,CACvC,+BAAgC,CAChC,kCAAmC,CACnC,2BAA4B,CAC5B,8BAA+B,CAG/B,qEAAoF,CACpF,kEACD,CAEA,qBACC,OAAO,CACP,wDAAmF,CAInF,mEAAuF,CACvF,0GAMC,CAGD,oEAAmF,CACnF,iEACD,CAEA,qBACE,iBAAkB,CACnB,wBAAwB,CACxB,WAAW,CACX,UAAU,CACV,WAAW,CACX,iBAAiB,CACjB,aAAa,CACb,gBAAgB,CAChB,KAAO,CACP,cAAc,CACd,eAAgB,CAChB,aAAa,CACb,6BAA+B,CAC/B,8BAA8B,CAC9B,wDAAkF,CAIlF,mEAAsF,CACtF,0GAMC,CACD,kCAAmC,CACnC,qCAAsC,CACtC,8BAA+B,CAC/B,iCAAkC,CAClC,0BAA2B,CAC3B,6BAA8B,CAG9B,qEAAoF,CACpF,kEACD,CAEA,4BACC,QAAQ,CAGR,qJAAoL,CACpL,kJACD,CAEA,YACE,oBAAqB,CACrB,iBAAkB,CAClB,UAAW,CACX,WACF,CACA,gBACE,iBAAkB,CAClB,wBAAyB,CACzB,SAAU,CACV,iBAAkB,CAClB,gEAA8D,CAA9D,wDACF,CACA,6BACE,4BAAsB,CAAtB,oBACF,CACA,8BACE,GACE,QAAS,CACT,SAAU,CACV,OAAQ,CACR,QAAS,CACT,SACF,CACA,GACE,KAAQ,CACR,MAAS,CACT,UAAW,CACX,WAAY,CACZ,SACF,CACF,CAfA,sBACE,GACE,QAAS,CACT,SAAU,CACV,OAAQ,CACR,QAAS,CACT,SACF,CACA,GACE,KAAQ,CACR,MAAS,CACT,UAAW,CACX,WAAY,CACZ,SACF,CACF","file":"main.ea80181a.chunk.css","sourcesContent":["body {\n margin: 0;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\ncode {\n}\n",".App {\n text-align: center;\n padding: 290px 0 200px;\n line-height: 28px;\n font-size: 16px;\n height: 100%;\n font-family: \"Roboto\", sans-serif;\n font-weight: 400;\n color: #6b707f;\n letter-spacing: 0.15px;\n background: #ccefff;\n}\n\nbody{\n background: #fff;\n}\n\n.App-logo {\n height: 40vmin;\n pointer-events: none;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n .App-logo {\n animation: App-logo-spin infinite 20s linear;\n }\n}\n\n.App-header {\n background-color: #282c34;\n min-height: 100vh;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n font-size: calc(10px + 2vmin);\n background: #f7f7f7;\n}\n\n.App-link {\n color: #61dafb;\n}\n\n@keyframes App-logo-spin {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n\n.nav_btn:not(.not-round-btn) {\n color: #4c4cf1;\n border-radius: 45px;\n}\n.right-nav .nav_btn {\n font-size: 14px;\n font-weight: 500;\n padding: 8px 27px;\n text-align: center;\n border-radius: 4px;\n border: 2px solid #fff;\n transition: all 0.3s linear;\n background: #fff;\n color: #4c4cf1;\n}\n\n.cloud-bg .bg1 {\n position: absolute;\n width: 100%;\n height: 400px;\n background: url(\"https://chdo.xyz/srt2prxml/footer-cloud.png\");\n background-repeat: repeat-x;\n background-position: 0 bottom;\n bottom: 39%;\n}\n\n.theme-share-head{\n width: 44px;\n height: 44px;\n overflow: hidden;\n padding: 3px;\n}\n.acss-header {\n display: block;\n position: absolute;\n top: 50%;\n left: 50%;\n margin: -240px 0 0 -230px;\n z-index: 1;\n}\n.acss_banner {\n width: 333px;\n height: 69px;\n background-image: url(https://chdo.xyz/srt2prxml/logo.png);\n background-repeat: no-repeat;\n background-size: 100% 100%;\n margin: 0 auto 70px;\n}\n.verify-form {\n margin: 0 auto;\n text-align: center;\n font-size: 14px;\n position: relative;\n background: #fff;\n background-color: rgba(255,255,255,0.5);\n border-radius: 4px;\n box-shadow: 0 0 10px rgb(171 198 235 / 30%);\n}\n.avatar {\n display: inline-block;\n vertical-align: middle;\n padding: 15px 0px 15px 0px;\n}\n\n.theme-share-head span {\n line-height: 1;\n display: table-cell;\n vertical-align: middle;\n text-align: center;\n}\n.theme-share-head, .theme-share-head>span {\n width: 370px;\n height: 44px;\n overflow: hidden;\n}\n\n.theme-share-head img {\n width: 100%;\n vertical-align: middle;\n}\n\n.verify-input {\n padding: 20px 30px 48px;\n}\n\n.verify-input .pickpw {\n padding: 0 0 15px;\n}\n\n.a_demo_three input{\n display:none;\n}\n\n.a_demo_three {\n\tbackground-color:#3bb3e0;\n\tfont-family: 'Open Sans', sans-serif;\n\tfont-size:20px;\n\ttext-decoration:none;\n\tcolor:#fff;\n\tposition:relative;\n\tpadding:26px 70px;\n\tborder-left:solid 1px #2ab7ec;\n\tmargin-left:45px;\n height:50px;\n\tbackground-image: linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(44,160,202)),\n\tcolor-stop(1, rgb(62,184,229))\n\t);\n\t-webkit-border-top-right-radius: 5px;\n\t-webkit-border-bottom-right-radius: 5px;\n\t-moz-border-radius-topright: 5px;\n\t-moz-border-radius-bottomright: 5px;\n\tborder-top-right-radius: 5px;\n\tborder-bottom-right-radius: 5px;\n\t-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\t-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\t-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\tbox-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n}\n\n.a_demo_three:active {\n\ttop:3px;\n\tbackground-image: linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(62,184,229)),\n\tcolor-stop(1, rgb(44,160,202))\n\t);\n\t-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\t-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\t-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\tbox-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n}\n\n.a_demo_three::before {\n text-align: center;\n\tbackground-color:#2561b4;\n\tcontent:\"1\";\n\twidth:80px;\n\theight:50px;\n\tposition:absolute;\n\tdisplay:block;\n\tpadding-top:25px;\n\ttop:0px;\n\tfont-size:26px;\n\tfont-weight:bold;\n\tcolor:#8fd1ea;\n\ttext-shadow:1px 1px 0px #07526e;\n\tborder-right:solid 1px #07526e;\n\tbackground-image: linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(10,94,125)),\n\tcolor-stop(1, rgb(14,139,184))\n\t);\n\t-webkit-border-top-left-radius: 5px;\n\t-webkit-border-bottom-left-radius: 5px;\n\t-moz-border-radius-topleft: 5px;\n\t-moz-border-radius-bottomleft: 5px;\n\tborder-top-left-radius: 5px;\n\tborder-bottom-left-radius: 5px;\n\t-webkit-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\t-moz-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\t-o-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\tbox-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n}\n\n.a_demo_three:active::before {\n\ttop:-3px;\n\t-webkit-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\t-moz-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\t-o-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\tbox-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n}\n\n.b_demo_three {\n\tbackground-color:#3bb3e0;\n\tfont-family: 'Open Sans', sans-serif;\n\tfont-size:20px;\n\ttext-decoration:none;\n\tcolor:#fff;\n\tposition:relative;\n\tpadding:26px 72px;\n\tborder-left:solid 1px #2ab7ec;\n\tmargin-left:45px;\n height:50px;\n\tbackground-image: linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(44,160,202)),\n\tcolor-stop(1, rgb(62,184,229))\n\t);\n\t-webkit-border-top-right-radius: 5px;\n\t-webkit-border-bottom-right-radius: 5px;\n\t-moz-border-radius-topright: 5px;\n\t-moz-border-radius-bottomright: 5px;\n\tborder-top-right-radius: 5px;\n\tborder-bottom-right-radius: 5px;\n\t-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\t-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\t-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n\tbox-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;\n}\n\n.b_demo_three:active {\n\ttop:3px;\n\tbackground-image: linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(62,184,229)),\n\tcolor-stop(1, rgb(44,160,202))\n\t);\n\t-webkit-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\t-moz-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\t-o-box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n\tbox-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;\n}\n\n.b_demo_three::before {\n text-align: center;\n\tbackground-color:#2561b4;\n\tcontent:\"2\";\n\twidth:80px;\n\theight:50px;\n\tposition:absolute;\n\tdisplay:block;\n\tpadding-top:25px;\n\ttop:0px;\n\tfont-size:26px;\n\tfont-weight:bold;\n\tcolor:#8fd1ea;\n\ttext-shadow:1px 1px 0px #07526e;\n\tborder-right:solid 1px #07526e;\n\tbackground-image: linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -o-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -moz-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -webkit-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -ms-linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);\n\tbackground-image: -webkit-gradient(\n\tlinear,\n\tleft bottom,\n\tleft top,\n\tcolor-stop(0, rgb(10,94,125)),\n\tcolor-stop(1, rgb(14,139,184))\n\t);\n\t-webkit-border-top-left-radius: 5px;\n\t-webkit-border-bottom-left-radius: 5px;\n\t-moz-border-radius-topleft: 5px;\n\t-moz-border-radius-bottomleft: 5px;\n\tborder-top-left-radius: 5px;\n\tborder-bottom-left-radius: 5px;\n\t-webkit-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\t-moz-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\t-o-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n\tbox-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;\n}\n\n.b_demo_three:active::before {\n\ttop:-3px;\n\t-webkit-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\t-moz-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\t-o-box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n\tbox-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;\n}\n\n.lds-ripple {\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n}\n.lds-ripple div {\n position: absolute;\n border: 4px solid #2ab7ec;\n opacity: 1;\n border-radius: 50%;\n animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;\n}\n.lds-ripple div:nth-child(2) {\n animation-delay: -0.5s;\n}\n@keyframes lds-ripple {\n 0% {\n top: 36px;\n left: 36px;\n width: 0;\n height: 0;\n opacity: 1;\n }\n 100% {\n top: 0px;\n left: 0px;\n width: 72px;\n height: 72px;\n opacity: 0;\n }\n}\n"]} -------------------------------------------------------------------------------- /static/js/main.6c3b32f2.chunk.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["App.js","reportWebVitals.js","index.js"],"names":["encode","require","hex64","srtParser2","default","App","props","changeTitle","e","result","convertSRTtoXML","target","value","setState","xml","downloadTxtFile","element","document","createElement","file","Blob","state","type","href","URL","createObjectURL","download","name","body","appendChild","click","status","loading","uploadFile","bind","clearAll","str","match","join","hexa","hexFinal","this","addZeroInHex","time","split","sum","Number","String","replace","Math","round","filename","content","subtitles","fromSrt","xmlContent","i","length","obj","startTime","endTime","text","key","processTime","encodeContent","Promise","resolve","setTimeout","event","fileReader","FileReader","readAsText","files","onload","className","src","width","onChange","onClick","accept","hidden","Component","reportWebVitals","onPerfEntry","Function","then","getCLS","getFID","getFCP","getLCP","getTTFB","ReactDOM","render","StrictMode","getElementById"],"mappings":"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","file":"static/js/main.6c3b32f2.chunk.js","sourcesContent":["import './App.css';\nimport React, { Component } from 'react';\nconst { encode } = require('hex-encode-decode')\nvar hex64 = require('hex64');\nvar { default: srtParser2 } = require(\"srt-parser-2\");\n\nexport default class App extends Component {\n\n addZeroInHex(str){\n let joy = str.match(/.{1,2}/g);\n return '00' + joy.join('00');\n }\n \n encodeContent (str) {\n let hexPrefix = '0F0F0000000000007B0022006D0053006800610064006F00770046006F006E0074004D0061007000480061007300680022003A006E0075006C006C002C0022006D00540065007800740050006100720061006D0022003A007B0022006D0041006C00690067006E006D0065006E00740022003A0032002E0030002C0022006D004200610063006B00460069006C006C0043006F006C006F00720022003A0030002E0030002C0022006D004200610063006B00460069006C006C004F0070006100630069007400790022003A0030002E0030002C0022006D004200610063006B00460069006C006C00530069007A00650022003A0030002E0030002C0022006D004200610063006B00460069006C006C00560069007300690062006C00650022003A00660061006C00730065002C0022006D00440065006600610075006C007400520075006E0022003A005B005D002C0022006D0048006500690067006800740022003A0030002E0030002C0022006D00480069006E006400690044006900670069007400730022003A00660061006C00730065002C0022006D0049006E0064006900630022003A00660061006C00730065002C0022006D00490073004D00610073006B0022003A00660061006C00730065002C0022006D00490073004D00610073006B0049006E0076006500720074006500640022003A00660061006C00730065002C0022006D004900730056006500720074006900630061006C00540065007800740022003A00660061006C00730065002C0022006D004C0065006100640069006E00670022003A0030002E0030002C0022006D004C006900670061007400750072006500730022003A00660061006C00730065002C0022006D004C0069006E006500430061007000540079007000650022003A0030002E0030002C0022006D004C0069006E0065004A006F0069006E00540079007000650022003A0030002E0030002C0022006D004D0069007400650072004C0069006D006900740022003A0030002E0030002C0022006D004E0075006D005300740072006F006B006500730022003A0031002E0030002C0022006D00520054004C0022003A00660061006C00730065002C0022006D0053006800610064006F00770041006E0067006C00650022003A003100330035002E0030002C0022006D0053006800610064006F00770042006C007500720022003A00340030002E0030002C0022006D0053006800610064006F00770043006F006C006F00720022003A0034003100340034003900350039002E0030002C0022006D0053006800610064006F0077004F006600660073006500740022003A0037002E0030002C0022006D0053006800610064006F0077004F0070006100630069007400790022003A00370035002E0030002C0022006D0053006800610064006F007700530069007A00650022003A0030002E0030002C0022006D0053006800610064006F007700560069007300690062006C00650022003A00660061006C00730065002C0022006D005300740079006C0065005300680065006500740022003A007B0022006D004100640064006900740069006F006E0061006C005300740072006F006B00650043006F006C006F00720022003A005B005D002C0022006D004100640064006900740069006F006E0061006C005300740072006F006B006500560069007300690062006C00650022003A005B005D002C0022006D004100640064006900740069006F006E0061006C005300740072006F006B0065005700690064007400680022003A005B005D002C0022006D0042006100730065006C0069006E0065004F007000740069006F006E0022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D0042006100730065006C0069006E0065005300680069006600740022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D0043006100700073004F007000740069006F006E0022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D00460061007500780042006F006C00640022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C00660061006C00730065005D005D007D002C0022006D0046006100750078004900740061006C006900630022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C00660061006C00730065005D005D007D002C0022006D00460069006C006C0043006F006C006F00720022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C00310036003700370037003200310035002E0030005D005D007D002C0022006D00460069006C006C004F007600650072005300740072006F006B00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C0074007200750065005D005D007D002C0022006D00460069006C006C00560069007300690062006C00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C0074007200750065005D005D007D002C0022006D0046006F006E0074004E0061006D00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C00220041007200690061006C004D00540022005D005D007D002C0022006D0046006F006E007400530069007A00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C00360030002E0030005D005D007D002C0022006D004B00650072006E0069006E00670022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D005300740072006F006B00650043006F006C006F00720022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D005300740072006F006B006500560069007300690062006C00650022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002C0074007200750065005D005D007D002C0022006D005300740072006F006B0065005700690064007400680022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C00310030002E0030005D005D007D002C0022006D00540065007800740022003A0022005C0072';\n let hexAddon = '0022002C0022006D0054007200610063006B0069006E00670022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D005400730075006D00690022003A007B0022006D0050006100720061006D00560061006C0075006500730022003A005B005B0030002E0030002C0030002E0030005D005D007D002C0022006D0055006E006400650072006C0069006E00650022003A006E0075006C006C007D002C0022006D005400610062005700690064007400680022003A003400300030002E0030002C0022006D0056006500720074006900630061006C0041006C00690067006E006D0065006E00740022003A0030002E0030002C0022006D005700690064007400680022003A0030002E0030007D002C0022006D005500730065004C0065006700610063007900540065007800740042006F00780022003A00660061006C00730065002C0022006D00560065007200730069006F006E0022003A0031002E0030007D00';\n let hexa = encode(str);\n //console.log(hexa);\n let hexWithZero = this.addZeroInHex(hexa);\n let hexFinal = hexPrefix + hexWithZero + hexAddon;\n \n return hex64.encode(hexFinal);\n }\n\n processTime(str){\n const time = str.split(\":\");\n let hour = Number(time[0]) * 3600000;\n let minute = Number(time[1]) * 60000;\n let second = Number(String(time[2]).replace(',',''));\n let sum = hour + minute + second;\n return Math.round(sum/40);\n }\n\n convertSRTtoXML(filename,content){\n var parser = new srtParser2();\n let subtitles = parser.fromSrt(content);\n let xmlContent = '';\n filename = filename.replace('.srt','');\n for (var i = 0; i < subtitles.length; i++){\n var obj = subtitles[i];\n let startTime = '0';\n let endTime = '0';\n let text = '';\n for (var key in obj){\n var value = obj[key];\n if (key === 'startTime'){\n startTime = value;\n } else if (key === 'endTime'){\n endTime = value;\n } else if (key === 'text') {\n text = value;\n }\n }\n let xmlSubPrefix1 = `masterclip-`;\n let xmlSubPrefix3 = `Graphictrue25false`;\n let xmlSubPrefix4 = ``;\n let xmlSubPrefix5 = `nonesquarefalseGraphicGraphicAndType`;\n let xmlSubPrefix7 = `GraphicAndTypegraphicfilterfalse1Source Text`;\n let xmlSubPrefix8 = `3Positionfalse0,0.5:0.8240740740740741,0,0,0,0,0,0,0,0,0,0,0,0`;\n let xmlSubFinal = xmlSubPrefix1 + i + xmlSubPrefix2 + i + xmlSubPrefix3 + this.processTime(startTime) + xmlSubPrefix4 + this.processTime(endTime) + \n xmlSubPrefix5 + i + xmlSubPrefix6 + text + xmlSubPrefix7 + this.encodeContent(text) + xmlSubPrefix8;\n xmlContent = xmlContent + xmlSubFinal;\n }\n\n let xmlPrefix1 = `2085225false`;\n let xmlPrefix2 =``;\n let finalXML = xmlPrefix1 + filename + xmlPrefix2 + xmlContent + xmlPrefix3;\n return finalXML.replace('\\t','');\n }\n\n constructor(props) {\n super(props);\n this.state = {name: \"none\", status: true, loading: true};\n this.uploadFile = this.uploadFile.bind(this);\n this.clearAll = this.clearAll.bind(this);\n }\n\n changeTitle = (e) =>{\n let result = this.convertSRTtoXML('awdawd.srt',e.target.value);\n this.setState({xml: result});\n }\n\n sleep (time) {\n return new Promise((resolve) => setTimeout(resolve, time));\n }\n\n uploadFile(event) {\n const fileReader = new FileReader();\n fileReader.readAsText(event.target.files[0]);\n fileReader.onload = e => {\n let result = this.convertSRTtoXML(event.target.files[0].name, e.target.result);\n this.setState({xml: result});\n this.setState({name: event.target.files[0].name.replace('.srt','')});\n this.setState({loading: false});\n setTimeout(() => {\n this.setState({loading: true});\n this.setState({status: false});\n }, 2000);\n event.target.value = null;\n };\n }\n\n clearAll(){\n this.setState({loading: true});\n this.setState({status: true});\n }\n\n downloadTxtFile = () => {\n let element = document.createElement(\"a\");\n const file = new Blob([this.state.xml], {type: 'text/xml'});\n element.href = URL.createObjectURL(file);\n element.download = this.state.name + '.xml';\n document.body.appendChild(element); // Required for this to work in FireFox\n element.click();\n }\n\n render() {\n return (\n
\n {/*\n

\n Type here to change name.
\n

\n