master
Sharkiller 10 years ago
parent ab54a220a8
commit 6f8724fa78

@ -1,4 +1,4 @@
RewriteEngine On RewriteEngine On
RewriteRule ^faq$ faq.html [L] RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^tos$ tos.html [L] RewriteCond %{REQUEST_FILENAME} !\.php$
RewriteRule ^([a-z]{2})/faq$ $1/faq.html [L] RewriteRule ^(.*)$ $1.php [L]

@ -1,8 +0,0 @@
<?php
$releases = Array(
"mac" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.8.2-Mac.tar.gz",
"win32" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.8.2-Win32.zip",
"linux32" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.8.2-Linux-32.tar.gz",
"linux64" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.8.2-Linux-64.tar.gz"
);

@ -3195,6 +3195,11 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
content: "\e605"; content: "\e605";
} }
.icon-ghost:before {
background: url(../images/blog.png) no-repeat;
content: "\00a0\00a0\00a0\00a0";
}
.icon-twitter:before { .icon-twitter:before {
content: "\e606"; content: "\e606";
} }
@ -3308,8 +3313,8 @@ h5 {
display: block; display: block;
} }
.width-50 { .width-70 {
width: 50%; width: 70%;
text-align: center; text-align: center;
} }
@ -3323,7 +3328,7 @@ span.code {
} }
@media screen and (max-width: 500px) { @media screen and (max-width: 500px) {
.width-50 { .width-70 {
width: 100%; width: 100%;
} }
} }
@ -3359,6 +3364,19 @@ span.code {
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0), inset 0px 1px rgba(255, 255, 255, 0.2); box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0), inset 0px 1px rgba(255, 255, 255, 0.2);
} }
.icon-ghost {
background: #E5850A;
}
.icon-ghost:before {
font-size: 16px;
}
.icon-ghost:hover {
background: #E79338;
}
.icon-twitter:active {
background: #E5850A;
}
.icon-twitter { .icon-twitter {
background: #36bff4; background: #36bff4;
} }
@ -3415,6 +3433,7 @@ span.code {
} }
#header nav { #header nav {
position: relative; position: relative;
z-index:1000;
} }
#header nav .align-left { #header nav .align-left {
position: absolute; position: absolute;
@ -3460,6 +3479,12 @@ span.code {
top: 5px; top: 5px;
left: 9px; left: 9px;
} }
#header nav ul li.social a.icon-ghost:before {
font-size: 15px;
position: absolute;
top: 5px;
left: 6px;
}
#header nav ul li.social a.icon-twitter:before { #header nav ul li.social a.icon-twitter:before {
font-size: 12px; font-size: 12px;
position: absolute; position: absolute;
@ -3474,6 +3499,7 @@ span.code {
} }
#header .text { #header .text {
padding: 0 0 40px; padding: 0 0 40px;
z-index: 100;
} }
#header h1 { #header h1 {
margin-bottom: 5px; margin-bottom: 5px;
@ -4150,3 +4176,361 @@ body.lin-32 .dl-lin-32,
body.lin-64 .dl-lin-64 { body.lin-64 .dl-lin-64 {
display: inline-block !important; display: inline-block !important;
} }
.tos {
background: #111;
margin:20px 0;
}
.tos header {
text-align: center;
}
.tos-container {
width:600px;
margin:0 auto;
line-height: 1.3em
}
/* ---------------------------------------------------------------------- */
/* "Polyglot" Language Switcher
/* ----------------------------------------------------------------------
Version: 1.4
Author: Ixtendo
Author URI: http://www.ixtendo.com
License: MIT License
License URI: http://www.opensource.org/licenses/mit-license.php
------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* Generic
/* ---------------------------------------------------------------------- */
#langswitch, #langswitch * {
margin: 0;
padding: 0;
outline: none;
}
#langswitch ul {
list-style: none;
}
#langswitch {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
color: #444;
line-height: normal;
position: relative; /* sets the initial position for the drop-down menu */
z-index: 100;
display: inline-block;
}
#langswitch form {
display: none;
}
/* ---------------------------------------------------------------------- */
/* JS-created Code
/* ---------------------------------------------------------------------- */
#langswitch a {
text-decoration: none;
display: block;
padding: 0.5em 0px 0.5em 0px; /* 6px 6px 6px 28px */
color: #444;
width: 36px;
background-repeat: no-repeat;
background-position: 6px center;
}
#langswitch a:hover {
color: #000;
}
#langswitch a.current:link, #langswitch a.current:visited, #langswitch a.current:active {
position: relative; /* sets the initial position for the trigger arrow */
background-color: #FFF;
border: 1px solid #E5E5E5;
border-radius: 3px;
height: 1.25em; /* 15px */
width: 44px;
}
#langswitch ul.dropdown li {
padding-left: 8px;
}
#langswitch a.current:hover,
#langswitch ul.dropdown li:hover {
background-color: #F7F7F7;
}
#langswitch a.active {
border-bottom: none !important;
border-radius: 3px 3px 0 0 !important;
}
#langswitch span.trigger {
display: block;
position: absolute;
width: 9px;
height: 5px;
text-indent: -10000em;
top: 12px;
right: 6px;
}
#langswitch a.current:link span.trigger, #langswitch a.current:visited span.trigger {
background: url(../images/arrow-down.gif) no-repeat left top;
}
#langswitch a.current:hover span.trigger, #langswitch a.current:active span.trigger, #langswitch a.active span.trigger {
background-position: left bottom !important;
}
/* Drop-Down Menu */
#langswitch ul.dropdown {
display: none;
position: absolute;
top: 23px;
left: 0;
background-color: #FFF;
border: 1px solid #E5E5E5;
border-top: none !important;
border-radius: 0 0 3px 3px;
z-index: 200;
}
#langswitch ul.dropdown li {
border-top: 1px dotted #D4D4D4;
margin: 0;
}
#langswitch ul.dropdown li:last-child {
border-radius: 0 0 3px 3px;
}
/* Flags */
#ad {background-image: url(../images/flags/ad.png)}
#ae {background-image: url(../images/flags/ae.png)}
#af {background-image: url(../images/flags/af.png)}
#ag {background-image: url(../images/flags/ag.png)}
#ai {background-image: url(../images/flags/ai.png)}
#al {background-image: url(../images/flags/al.png)}
#am {background-image: url(../images/flags/am.png)}
#an {background-image: url(../images/flags/an.png)}
#ao {background-image: url(../images/flags/ao.png)}
#aq {background-image: url(../images/flags/aq.png)}
#ar {background-image: url(../images/flags/ar.png)}
#as {background-image: url(../images/flags/as.png)}
#at {background-image: url(../images/flags/at.png)}
#au {background-image: url(../images/flags/au.png)}
#aw {background-image: url(../images/flags/aw.png)}
#az {background-image: url(../images/flags/az.png)}
#ba {background-image: url(../images/flags/ba.png)}
#bb {background-image: url(../images/flags/bb.png)}
#bd {background-image: url(../images/flags/bd.png)}
#be {background-image: url(../images/flags/be.png)}
#bf {background-image: url(../images/flags/bf.png)}
#bg {background-image: url(../images/flags/bg.png)}
#bh {background-image: url(../images/flags/bh.png)}
#bi {background-image: url(../images/flags/bi.png)}
#bj {background-image: url(../images/flags/bj.png)}
#bm {background-image: url(../images/flags/bm.png)}
#bn {background-image: url(../images/flags/bn.png)}
#bo {background-image: url(../images/flags/bo.png)}
#bs {background-image: url(../images/flags/bs.png)}
#bt {background-image: url(../images/flags/bt.png)}
#bw {background-image: url(../images/flags/bw.png)}
#by {background-image: url(../images/flags/by.png)}
#bz {background-image: url(../images/flags/bz.png)}
#ca {background-image: url(../images/flags/ca.png)}
#cd {background-image: url(../images/flags/cd.png)}
#cf {background-image: url(../images/flags/cf.png)}
#cg {background-image: url(../images/flags/cg.png)}
#ch {background-image: url(../images/flags/ch.png)}
#ci {background-image: url(../images/flags/ci.png)}
#ck {background-image: url(../images/flags/ck.png)}
#cl {background-image: url(../images/flags/cl.png)}
#cm {background-image: url(../images/flags/cm.png)}
#co {background-image: url(../images/flags/co.png)}
#cr {background-image: url(../images/flags/cr.png)}
#cu {background-image: url(../images/flags/cu.png)}
#cv {background-image: url(../images/flags/cv.png)}
#cy {background-image: url(../images/flags/cy.png)}
#cz {background-image: url(../images/flags/cz.png)}
#de {background-image: url(../images/flags/de.png)}
#dj {background-image: url(../images/flags/dj.png)}
#dk {background-image: url(../images/flags/dk.png)}
#dm {background-image: url(../images/flags/dm.png)}
#do {background-image: url(../images/flags/do.png)}
#dz {background-image: url(../images/flags/dz.png)}
#ec {background-image: url(../images/flags/ec.png)}
#ee {background-image: url(../images/flags/ee.png)}
#eg {background-image: url(../images/flags/eg.png)}
#eh {background-image: url(../images/flags/eh.png)}
#en {background-image: url(../images/flags/en.png)}
#er {background-image: url(../images/flags/er.png)}
#es {background-image: url(../images/flags/es.png)}
#et {background-image: url(../images/flags/et.png)}
#fi {background-image: url(../images/flags/fi.png)}
#fj {background-image: url(../images/flags/fj.png)}
#fm {background-image: url(../images/flags/fm.png)}
#fo {background-image: url(../images/flags/fo.png)}
#fr {background-image: url(../images/flags/fr.png)}
#ga {background-image: url(../images/flags/ga.png)}
#gb {background-image: url(../images/flags/gb.png)}
#gd {background-image: url(../images/flags/gd.png)}
#ge {background-image: url(../images/flags/ge.png)}
#gg {background-image: url(../images/flags/gg.png)}
#gh {background-image: url(../images/flags/gh.png)}
#gi {background-image: url(../images/flags/gi.png)}
#gl {background-image: url(../images/flags/gl.png)}
#gm {background-image: url(../images/flags/gm.png)}
#gn {background-image: url(../images/flags/gn.png)}
#gp {background-image: url(../images/flags/gp.png)}
#gq {background-image: url(../images/flags/gq.png)}
#gr {background-image: url(../images/flags/gr.png)}
#gt {background-image: url(../images/flags/gt.png)}
#gu {background-image: url(../images/flags/gu.png)}
#gw {background-image: url(../images/flags/gw.png)}
#gy {background-image: url(../images/flags/gy.png)}
#hk {background-image: url(../images/flags/hk.png)}
#hn {background-image: url(../images/flags/hn.png)}
#hr {background-image: url(../images/flags/hr.png)}
#ht {background-image: url(../images/flags/ht.png)}
#hu {background-image: url(../images/flags/hu.png)}
#id {background-image: url(../images/flags/id.png)}
#ie {background-image: url(../images/flags/ie.png)}
#il {background-image: url(../images/flags/il.png)}
#im {background-image: url(../images/flags/im.png)}
#in {background-image: url(../images/flags/in.png)}
#iq {background-image: url(../images/flags/iq.png)}
#ir {background-image: url(../images/flags/ir.png)}
#is {background-image: url(../images/flags/is.png)}
#it {background-image: url(../images/flags/it.png)}
#je {background-image: url(../images/flags/je.png)}
#jm {background-image: url(../images/flags/jm.png)}
#jo {background-image: url(../images/flags/jo.png)}
#jp {background-image: url(../images/flags/jp.png)}
#ke {background-image: url(../images/flags/ke.png)}
#kg {background-image: url(../images/flags/kg.png)}
#kh {background-image: url(../images/flags/kh.png)}
#ki {background-image: url(../images/flags/ki.png)}
#km {background-image: url(../images/flags/km.png)}
#kn {background-image: url(../images/flags/kn.png)}
#kp {background-image: url(../images/flags/kp.png)}
#kr {background-image: url(../images/flags/kr.png)}
#kw {background-image: url(../images/flags/kw.png)}
#ky {background-image: url(../images/flags/ky.png)}
#kz {background-image: url(../images/flags/kz.png)}
#la {background-image: url(../images/flags/la.png)}
#lb {background-image: url(../images/flags/lb.png)}
#lc {background-image: url(../images/flags/lc.png)}
#li {background-image: url(../images/flags/li.png)}
#lk {background-image: url(../images/flags/lk.png)}
#lr {background-image: url(../images/flags/lr.png)}
#ls {background-image: url(../images/flags/ls.png)}
#lt {background-image: url(../images/flags/lt.png)}
#lu {background-image: url(../images/flags/lu.png)}
#lv {background-image: url(../images/flags/lv.png)}
#ly {background-image: url(../images/flags/ly.png)}
#ma {background-image: url(../images/flags/ma.png)}
#mc {background-image: url(../images/flags/mc.png)}
#md {background-image: url(../images/flags/md.png)}
#me {background-image: url(../images/flags/me.png)}
#mg {background-image: url(../images/flags/mg.png)}
#mh {background-image: url(../images/flags/mh.png)}
#mk {background-image: url(../images/flags/mk.png)}
#ml {background-image: url(../images/flags/ml.png)}
#mm {background-image: url(../images/flags/mm.png)}
#mn {background-image: url(../images/flags/mn.png)}
#mo {background-image: url(../images/flags/mo.png)}
#mq {background-image: url(../images/flags/mq.png)}
#mr {background-image: url(../images/flags/mr.png)}
#ms {background-image: url(../images/flags/ms.png)}
#mt {background-image: url(../images/flags/mt.png)}
#mu {background-image: url(../images/flags/mu.png)}
#mv {background-image: url(../images/flags/mv.png)}
#mw {background-image: url(../images/flags/mw.png)}
#mx {background-image: url(../images/flags/mx.png)}
#my {background-image: url(../images/flags/my.png)}
#mz {background-image: url(../images/flags/mz.png)}
#na {background-image: url(../images/flags/na.png)}
#nc {background-image: url(../images/flags/nc.png)}
#ne {background-image: url(../images/flags/ne.png)}
#ng {background-image: url(../images/flags/ng.png)}
#ni {background-image: url(../images/flags/ni.png)}
#nl {background-image: url(../images/flags/nl.png)}
#no {background-image: url(../images/flags/no.png)}
#np {background-image: url(../images/flags/np.png)}
#nr {background-image: url(../images/flags/nr.png)}
#nz {background-image: url(../images/flags/nz.png)}
#om {background-image: url(../images/flags/om.png)}
#pa {background-image: url(../images/flags/pa.png)}
#pe {background-image: url(../images/flags/pe.png)}
#pf {background-image: url(../images/flags/pf.png)}
#pg {background-image: url(../images/flags/pg.png)}
#ph {background-image: url(../images/flags/ph.png)}
#pk {background-image: url(../images/flags/pk.png)}
#pl {background-image: url(../images/flags/pl.png)}
#pr {background-image: url(../images/flags/pr.png)}
#ps {background-image: url(../images/flags/ps.png)}
#pt-br {background-image: url(../images/flags/pt-br.png)}
#pt {background-image: url(../images/flags/pt.png)}
#pw {background-image: url(../images/flags/pw.png)}
#py {background-image: url(../images/flags/py.png)}
#qa {background-image: url(../images/flags/qa.png)}
#re {background-image: url(../images/flags/re.png)}
#ro {background-image: url(../images/flags/ro.png)}
#rs {background-image: url(../images/flags/rs.png)}
#ru {background-image: url(../images/flags/ru.png)}
#rw {background-image: url(../images/flags/rw.png)}
#sa {background-image: url(../images/flags/sa.png)}
#sb {background-image: url(../images/flags/sb.png)}
#sc {background-image: url(../images/flags/sc.png)}
#sd {background-image: url(../images/flags/sd.png)}
#se {background-image: url(../images/flags/se.png)}
#sg {background-image: url(../images/flags/sg.png)}
#si {background-image: url(../images/flags/si.png)}
#sk {background-image: url(../images/flags/sk.png)}
#sl {background-image: url(../images/flags/sl.png)}
#sm {background-image: url(../images/flags/sm.png)}
#sn {background-image: url(../images/flags/sn.png)}
#so {background-image: url(../images/flags/so.png)}
#sr {background-image: url(../images/flags/sr.png)}
#st {background-image: url(../images/flags/st.png)}
#sv {background-image: url(../images/flags/sv.png)}
#sy {background-image: url(../images/flags/sy.png)}
#sz {background-image: url(../images/flags/sz.png)}
#tc {background-image: url(../images/flags/tc.png)}
#td {background-image: url(../images/flags/td.png)}
#tg {background-image: url(../images/flags/tg.png)}
#th {background-image: url(../images/flags/th.png)}
#tj {background-image: url(../images/flags/tj.png)}
#tl {background-image: url(../images/flags/tl.png)}
#tm {background-image: url(../images/flags/tm.png)}
#tn {background-image: url(../images/flags/tn.png)}
#to {background-image: url(../images/flags/to.png)}
#tr {background-image: url(../images/flags/tr.png)}
#tt {background-image: url(../images/flags/tt.png)}
#tv {background-image: url(../images/flags/tv.png)}
#tz {background-image: url(../images/flags/tz.png)}
#ua {background-image: url(../images/flags/ua.png)}
#ug {background-image: url(../images/flags/ug.png)}
#uy {background-image: url(../images/flags/uy.png)}
#uz {background-image: url(../images/flags/uz.png)}
#va {background-image: url(../images/flags/va.png)}
#vc {background-image: url(../images/flags/vc.png)}
#ve {background-image: url(../images/flags/ve.png)}
#vg {background-image: url(../images/flags/vg.png)}
#vi {background-image: url(../images/flags/vi.png)}
#vn {background-image: url(../images/flags/vn.png)}
#vu {background-image: url(../images/flags/vu.png)}
#ws {background-image: url(../images/flags/ws.png)}
#ye {background-image: url(../images/flags/ye.png)}
#za {background-image: url(../images/flags/za.png)}
#zh-cn {background-image: url(../images/flags/zh-cn.png)}
#zh-tw {background-image: url(../images/flags/zh-tw.png)}
#zm {background-image: url(../images/flags/zm.png)}
#zw {background-image: url(../images/flags/zw.png)}

@ -1,31 +1,25 @@
<?php <?php
include("inc/config.php");
$releases = Array( $releases = Array(
"mac" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.9-Mac.tar.gz", "mac" => $link_mac,
"win32" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.9-Win-32.zip", "win" => $link_win,
"linux32" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.9-Linux-32.tar.gz", "linux32" => $link_linux32,
"linux64" => "http://cdn.get-popcorn.com/build/Popcorn-Time-0.2.9-Linux-64.tar.gz" "linux64" => $link_linux64
); );
if (isset($_GET['os'])) { if (isset($_GET['os']) && isset($releases[$_GET['os']])) {
$download_file = $releases[$_GET['os']];
if (isset($releases[$_GET['os']])) {
$download_file = $releases[$_GET['os']];
} else {
header("Location: /");
die();
}
} else { } else {
header("Location: /"); header("Location: /");
die();
} }
?> ?>
<!DOCTYPE HTML> <!DOCTYPE HTML>
<html> <html>
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="css/style.css" /> <link rel="canonical" href="<?=$domain?>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="<?=$domain?>css/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <!--
.,;+###+;:. .,;+###+;:.
.##;` .'@: .##;` .'@:
@ -76,72 +70,77 @@
:@. ;: ;''';. ';;;'',:'#@@#+';,` :@. ;: ;''';. ';;;'',:'#@@#+';,`
:@; `'++#@@##';,.` :@; `'++#@@##';,.`
;,.` --> ;,.` -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>Download - Popcorn Time</title> <title>Popcorn Time - <?=$langsite["TITLE_DLS"]?></title>
<meta name="description" content="Stream movies from torrents. Skip the downloads. Launch, click, watch." /> <meta name="description" content="<?=$langsite["SITE_DESC"]?>" />
<link rel="image_src" href="images/header-ui.png" / > <link rel="image_src" href="images/header-ui.png" / >
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.0/jquery.min.js" type="text/javascript"></script>
<script src="<?=$domain?>js/jquery.polyglot.language.switcher.js" type="text/javascript"></script>
<meta property="og:title" content="Popcorn Time" /> <meta property="og:title" content="Popcorn Time" />
<meta property="og:type" content="website" /> <meta property="og:type" content="website" />
<meta property="og:image" content="http://get-popcorn.com/images/header-ui.png" /> <meta property="og:image" content="<?=$domain?>images/header-ui.png" />
<meta property="og:url" content="http://get-popcorn.com/" /> <meta property="og:url" content="<?=$domain?>" />
<meta property="og:site_name" content="Popcorn Time" /> <meta property="og:site_name" content="Popcorn Time" />
<meta http-equiv="refresh" content="0;url=<?php echo $download_file; ?>"> <!-- <meta http-equiv="refresh" content="2;url=<?=$download_file;?>" /> -->
</head> </head>
<body id="page-faq" class="beta"> <body id="page-faq" class="beta">
<section id="header"> <section id="header">
<nav class="fixed-width fadeInDown wow"> <nav class="fixed-width fadeInDown wow">
<a href="/" id="logo">Popcorn Time</a> <a href="<?=$domain?>" id="logo">Popcorn Time</a>
<ul class="align-right"> <ul class="align-right">
<!--<li class="social"><a href="https://facebook.com/getpopcorntime" target="_blank" class="icon-facebook"></a></li>--> <!--<li class="social"><a href="<?=$link_fb?>" target="_blank" class="icon-facebook"></a></li>-->
<li class="social"><a href="https://twitter.com/popcorntimetv" target="_blank" class="icon-twitter"></a></li> <li class="social"><a href="<?=$link_bl?>" target="_blank" class="icon-ghost"></a></li>
<li class="social"><a href="http://github.com/popcorn-official" target="_blank" class="icon-github"></a></li> <li class="social"><a href="<?=$link_tt?>" target="_blank" class="icon-twitter"></a></li>
<li class="social"><a href="<?=$link_gh?>" target="_blank" class="icon-github"></a></li>
</ul> </ul>
<ul class="align-left"> <ul class="align-left">
<li class="text"><a href="faq.html">FAQ</a></li> <div id="langswitch">
<li class="text"><a href="tos.html">TOS</a></li> <form action="#" method="post">
<select name="lang">
<?=printlangs()?>
</select>
</form>
</div>
<li class="text"><a href="faq">FAQ</a></li>
<li class="text"><a href="tos">TOS</a></li>
</ul> </ul>
</nav> </nav>
</section> </section>
<div class="container fadeIn wow"> <div class="container fadeIn wow">
<section id="downloads" class="fixed-width"> <section id="downloads" class="fixed-width">
<h1>Thank you for using Popcorn Time</h1> <h1><?=$langsite["DL_THANKYOU"]?></h1>
<p> <p><?=$langsite["DL_STARTING_1"]?> <a href="<?=$download_file?>"><?=$langsite["DL_STARTING_2"]?></a> <?=$langsite["DL_STARTING_3"]?></p>
Your download is about to start. <a href="<?php echo $download_file; ?>">Click here</a> if your download didn't start
</p>
<p> <p>
<!-- Begin MailChimp Signup Form --> <!-- Begin MailChimp Signup Form -->
<link href="http://cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css"> <link href="http://cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css">
<style type="text/css"> <style type="text/css">
#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; } #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
</style> </style>
<div id="mc_embed_signup"> <div id="mc_embed_signup">
<form action="http://get-popcorn.us8.list-manage2.com/subscribe/post?u=afbd4b6f42dd2b6ddb4f34b9b&amp;id=b1d0d0a4a1" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> <form action="http://get-popcorn.us8.list-manage2.com/subscribe/post?u=afbd4b6f42dd2b6ddb4f34b9b&amp;id=b1d0d0a4a1" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<h2>Subscribe to our official mailing list</h2> <h2><?=$langsite["MAIL_SUBSCRIBE"]?></h2>
<div class="indicates-required"><span class="asterisk">*</span> indicates required</div> <div class="mc-field-group">
<div class="mc-field-group"> <label for="mce-EMAIL"><?=$langsite["MAIL_EMAIL"]?></label>
<label for="mce-EMAIL">Email Address <span class="asterisk">*</span> <input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL" autofocus>
</label> </div>
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL" autofocus> <div id="mce-responses" class="clear">
</div> <div class="response" id="mce-error-response" style="display:none"></div>
<div id="mce-responses" class="clear"> <div class="response" id="mce-success-response" style="display:none"></div>
<div class="response" id="mce-error-response" style="display:none"></div> </div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div class="response" id="mce-success-response" style="display:none"></div> <div style="position: absolute; left: -5000px;"><input type="text" name="b_afbd4b6f42dd2b6ddb4f34b9b_b1d0d0a4a1" value=""></div>
</div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups--> <div class="clear"><input type="submit" value="<?=$langsite["MAIL_SUBSCRIBE_BTN"]?>" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
<div style="position: absolute; left: -5000px;"><input type="text" name="b_afbd4b6f42dd2b6ddb4f34b9b_b1d0d0a4a1" value=""></div> </form>
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
</form>
</div> </div>
<script type="text/javascript"> <script type="text/javascript">
var fnames = new Array();var ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text'; var fnames = new Array();var ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';
@ -345,20 +344,20 @@
<nav class="clear-fix"> <nav class="clear-fix">
<a href="/" class="logo">Popcorn time</a> <a href="/" class="logo">Popcorn time</a>
<ul> <ul>
<!--<li class="social"><a href="https://facebook.com/getpopcorntime" target="_blank" class="icon-facebook"> </a></li>--> <!--<li class="social"><a href="<?=$link_fb?>" target="_blank" class="icon-facebook"> </a></li>-->
<li class="social"><a href="https://twitter.com/popcorntimetv" target="_blank" class="icon-twitter"> </a></li> <li class="social"><a href="<?=$link_tt?>" target="_blank" class="icon-twitter"> </a></li>
<li class="github"><a href="http://github.com/popcorn-official" target="_blank" class="icon-github">Github</a></li> <li class="github"><a href="<?=$link_gh?>" target="_blank" class="icon-github">Github</a></li>
</ul> </ul>
</nav> </nav>
<footer> <footer>
<hr> <hr>
<i class="film"></i> <i class="film"></i>
<p>Made with <span>&lt;3</span> by a bunch of geeks from All Around The World<br /> <small><a href="tos.html">Terms of Service</a> &mdash; <a href="faq.html">FAQ</a></small></p> <p><?=$langsite["FOOTER"]?><br /> <small><a href="<?=$domain?>tos">Terms of Service</a> <a href="<?=$domain?>faq">FAQ</a></small></p>
</footer> </footer>
</section> </section>
</div> </div>
<script type="text/javascript" src="js/wow.js"></script> <script type="text/javascript" src="<?=$domain?>js/wow.js"></script>
<script type="text/javascript" src="js/site.js"></script> <script type="text/javascript" src="<?=$domain?>js/site.js"></script>
</body> </body>
</html> </html>

@ -1,9 +1,11 @@
<?php include("inc/config.php"); ?>
<!DOCTYPE HTML> <!DOCTYPE HTML>
<html> <html>
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="css/style.css" /> <link rel="canonical" href="<?=$domain?>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="<?=$domain?>css/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <!--
.,;+###+;:. .,;+###+;:.
.##;` .'@: .##;` .'@:
@ -54,114 +56,127 @@
:@. ;: ;''';. ';;;'',:'#@@#+';,` :@. ;: ;''';. ';;;'',:'#@@#+';,`
:@; `'++#@@##';,.` :@; `'++#@@##';,.`
;,.` --> ;,.` -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>Frequently Asked Questions - Popcorn Time</title> <title>Popcorn Time - <?=$langsite["TITLE_FAQ"]?></title>
<meta name="description" content="Stream movies from torrents. Skip the downloads. Launch, click, watch." /> <meta name="description" content="<?=$langsite["SITE_DESC"]?>" />
<link rel="image_src" href="images/header-ui.png" / > <link rel="image_src" href="<?=$domain?>images/header-ui.jpg" />
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.0/jquery.min.js" type="text/javascript"></script>
<script src="<?=$domain?>js/jquery.polyglot.language.switcher.js" type="text/javascript"></script>
<meta property="og:title" content="Popcorn Time" /> <meta property="og:title" content="Popcorn Time" />
<meta property="og:type" content="website" /> <meta property="og:type" content="website" />
<meta property="og:image" content="http://get-popcorn.com/images/header-ui.png" /> <meta property="og:image" content="<?=$domain?>images/header-ui.jpg" />
<meta property="og:url" content="http://get-popcorn.com/" /> <meta property="og:url" content="<?=$domain?>" />
<meta property="og:site_name" content="Popcorn Time" /> <meta property="og:site_name" content="Popcorn Time" />
</head> </head>
<body id="page-faq" class="beta"> <body id="page-faq" class="beta">
<section id="header"> <section id="header">
<nav class="fixed-width fadeInDown wow"> <nav class="fixed-width fadeInDown wow">
<a href="/" id="logo">Popcorn Time</a> <a href="<?=$domain?>" id="logo">Popcorn Time</a>
<ul class="align-right"> <ul class="align-right">
<!--<li class="social"><a href="https://facebook.com/getpopcorntime" target="_blank" class="icon-facebook"></a></li>--> <!--<li class="social"><a href="<?=$link_fb?>" target="_blank" class="icon-facebook"></a></li>-->
<li class="social"><a href="https://twitter.com/popcorntimetv" target="_blank" class="icon-twitter"></a></li> <li class="social"><a href="<?=$link_bl?>" target="_blank" class="icon-ghost"></a></li>
<li class="social"><a href="http://github.com/popcorn-official" target="_blank" class="icon-github"></a></li> <li class="social"><a href="<?=$link_tt?>" target="_blank" class="icon-twitter"></a></li>
<li class="social"><a href="<?=$link_gh?>" target="_blank" class="icon-github"></a></li>
</ul> </ul>
<ul class="align-left"> <ul class="align-left">
<li class="text"><a href="faq.html">FAQ</a></li> <div id="langswitch">
<li class="text"><a href="tos.html">TOS</a></li> <form action="#" method="post">
<select name="lang">
<?=printlangs()?>
</select>
</form>
</div>
<li class="text"><a href="faq">FAQ</a></li>
<li class="text"><a href="tos">TOS</a></li>
</ul> </ul>
</nav> </nav>
</section> </section>
<div class="container fadeIn wow"> <div class="container fadeIn wow">
<section id="faq" class="fixed-width"> <section id="faq" class="fixed-width">
<p class="warning">To enjoy a great experience, always make sure you're running <a href="http://get-popcorn.com/" target="_blank">the latest Popcorn Time version</a>. <br/> <p class="warning"><?=$langfaq["WARNING_1"]?> <a href="<?=$domain?>"><?=$langfaq["WARNING_2"]?></a><br/>
Our only official site is <a href="/" target="_blank">get-popcorn.com</a> (for now). Do not get the app from anywhere else, as there's a few fake sites going around.</p> <?=$langfaq["WARNING_3"]?> <a href="<?=$domain?>">get-popcorn.com</a> <?=$langfaq["WARNING_4"]?></p>
<article id="what"> <article id="what">
<h1>Frequently Asked Questions</h1> <h1><?=$langfaq["TITLE"]?></h1>
<p>Popcorn Time! is the result of many developers and designers putting a bunch of APIs together to make the experience of watching torrent movies as simple as possible.</p> <p><?=$langfaq["DESC_1"]?></p>
<p>We are an open source project. We are from all over the world. We love our movies. And boy, do we love popcorn!</p> <p><?=$langfaq["DESC_2"]?></p>
</article> </article>
<article id="legal"> <article id="legal">
<h2>Is this legal?</h2> <h2><?=$langfaq["LEGAL_Q"]?></h2>
<p>Depends on where you're located, really. Once again: we're using torrents, so if you really care, you'd better google what the legal situation regarding this protocol is where you live.</p> <p><?=$langfaq["LEGAL_A"]?></p>
</article> </article>
<article id="seeding"> <article id="seeding">
<h2>Popcorn Time works using torrents, fair enough. But am I seeding while watching a movie?</h2> <h2><?=$langfaq["SEED_Q"]?></h2>
<p>Indeed, you are! You're going to be uploading bits and bytes of the movie for as long as you're watching it in Popcorn Time.</p> <p><?=$langfaq["SEED_A"]?></p>
</article> </article>
<article id="storage"> <article id="storage">
<h2>What happens to the movies after I'm done?</h2> <h2><?=$langfaq["STORAGE_Q"]?></h2>
<p>Your movies will stay buried in a secret folder somewhere in your drive until you restart your computer. Then they will be gone for good.</p> <p><?=$langfaq["STORAGE_A"]?></p>
</article> </article>
<article id="update"> <article id="update">
<h2>Will there be a new version?</h2> <h2><?=$langfaq["UPDATE_Q"]?></h2>
<p>Most definitely! You're going to have to download it manually for now, but fear not! If you're on version Beta 2.x or upwards, you'll be notified within the app. Other than that, we'll let you know through Facebook and/or Twitter.</p> <p><?=$langfaq["UPDATE_A"]?></p>
</article> </article>
<article id="movies"> <article id="movies">
<h2>How come you've got the latest movies?</h2> <h2><?=$langfaq["MOVIES_Q"]?></h2>
<p>We search for movies uploaded by YIFY. Better ask them how they are handling this!</p> <p><?=$langfaq["MOVIES_A"]?></p>
</article> </article>
<article id="languages"> <article id="languages">
<h2>Will you be adding movies in my language?</h2> <h2><?=$langfaq["LANG_Q"]?></h2>
<p>Chances are that most (if not all) of the movies available in Popcorn Time will be in English. However, languages for subtitles and the app itself are constantly being added by our lovely contributors.</p> <p><?=$langfaq["LANG_A"]?></p>
</article> </article>
<article id="cant-launch"> <article id="cant-launch">
<h2>Why can't I launch Popcorn Time?</h2> <h2><?=$langfaq["LAUNCH_Q"]?></h2>
<p class="icon-mac"><strong>Your system may prevent unsigned apps from being run</strong><br />Go to <span class="code">System Preferences > Security > Allow Apps downloaded from > Anywhere</span> and try to launch Popcorn Time! again.</p> <p class="icon-mac"><strong><?=$langfaq["LAUNCH_Q1"]?></strong><br /><?=$langfaq["LAUNCH_A1"]?></p>
<p class="icon-mac"><strong>You may have not have enough User Priviliges</strong><br /> <p class="icon-mac"><strong><?=$langfaq["LAUNCH_Q2"]?></strong><br />
Open a Terminal, and type: <?=$langfaq["LAUNCH_A2"]?>
<ul class="step-code"> <ul class="step-code">
<li><span class="code">$ chmod +x /Applications/Popcorn\ Time.app/Contents/MacOS/node-webkit</span></li> <li><span class="code">$ chmod +x /Applications/Popcorn\ Time.app/Contents/MacOS/node-webkit</span></li>
<li><span class="code">$ chmod +x /Applications/Popcorn\ Time.app/Contents/Frameworks/crash_inspector</span></li> <li><span class="code">$ chmod +x /Applications/Popcorn\ Time.app/Contents/Frameworks/crash_inspector</span></li>
<li><span class="code">$ chmod +x /Applications/Popcorn\ Time.app/Contents/Frameworks/node-webkit\ Helper.app/Contents/MacOS/node-webkit\ Helper</span></li> <li><span class="code">$ chmod +x /Applications/Popcorn\ Time.app/Contents/Frameworks/node-webkit\ Helper.app/Contents/MacOS/node-webkit\ Helper</span></li>
<li><span class="code">$ chmod +x /Applications/Popcorn\ Time.app/Contents/Frameworks/node-webkit\ Helper\ EH.app/Contents/MacOS/node-webkit\ Helper\ EH</span></li> <li><span class="code">$ chmod +x /Applications/Popcorn\ Time.app/Contents/Frameworks/node-webkit\ Helper\ EH.app/Contents/MacOS/node-webkit\ Helper\ EH</span></li>
<li><span class="code">$ chmod +x /Applications/Popcorn\ Time.app/Contents/Frameworks/node-webkit\ Helper\ NP.app/Contents/MacOS/node-webkit\ Helper\ NP</span></li> <li><span class="code">$ chmod +x /Applications/Popcorn\ Time.app/Contents/Frameworks/node-webkit\ Helper\ NP.app/Contents/MacOS/node-webkit\ Helper\ NP</span></li>
</ul></p> </ul>
</p>
</article> </article>
<article id="stuck"> <article id="stuck">
<h2>I can't get past the initial "Please wait..." screen :(</h2> <h2><?=$langfaq["STUCK_Q"]?></h2>
<p>Living on Queen Elizabeth's realm and using old version (<2.8), aren't you? There's a workaround for this issue in version 2.8 and onwards, but there's no guarantee it will work. Check out the <a href=http://en.wikipedia.org/wiki/Websites_blocked_in_the_United_Kingdom>Black list</a> for more information on website blocking in the UK.</p> <p><?=$langfaq["STUCK_A"]?></p>
</article> </article>
<article id="select-subtitles"> <article id="select-subtitles">
<h2>Why can't I select subtitles?</h2> <h2><?=$langfaq["SUBS_Q"]?></h2>
<p>You may have to wait until all of the movie data (cover, summary, length, etc...) is retrieved. Sometimes it may be something else!</p> <p><?=$langfaq["SUBS_A"]?></p>
</article> </article>
<article id="new-apps"> <article id="new-apps">
<h2>Thinking about launching for Android/iOS/Chromecast/Smart TVs/Commodore 64?</h2> <h2><?=$langfaq["BUILDS_Q"]?></h2>
<p>Our efforts are currently focussed towards making the best desktop app for watching torrent movies. So launching versions for other devices is not in our immediate roadmap.</p> <p><?=$langfaq["BUILDS_A"]?></p>
</article> </article>
<article id="devices"> <article id="devices">
<h2>Does the app work on Raspberry Pi/ChomeBook/BeagleBone?</h2> <h2><?=$langfaq["DEVICES_Q"]?></h2>
<p>Currently the app is compiled only for Win/Linux32/Linux64/Mac but if you want to try it on ARM go for it!</p> <p><?=$langfaq["DEVICES_A"]?></p>
</article> </article>
<article id="site"> <article id="site">
<h2>You're changing site/repo more often I change underwear! Where's the best place to stay up to date with the project?</h2> <h2><?=$langfaq["SITE_Q"]?></h2>
<p>Well yes, the app has had some difficult times since its inception. The best place for the latest info and updates is the IRC channel #popcorntime on freenode. </p> <p><?=$langfaq["SITE_A"]?></p>
</article> </article>
</section> </section>
@ -170,19 +185,19 @@
<nav class="clear-fix"> <nav class="clear-fix">
<a href="/" class="logo">Popcorn time</a> <a href="/" class="logo">Popcorn time</a>
<ul> <ul>
<!--<li class="social"><a href="https://facebook.com/getpopcorntime" target="_blank" class="icon-facebook"> </a></li>--> <!--<li class="social"><a href="<?=$link_fb?>" target="_blank" class="icon-facebook"> </a></li>-->
<li class="social"><a href="https://twitter.com/popcorntimetv" target="_blank" class="icon-twitter"> </a></li> <li class="social"><a href="<?=$link_tt?>" target="_blank" class="icon-twitter"> </a></li>
<li class="github"><a href="http://github.com/popcorn-official" target="_blank" class="icon-github">Github</a></li> <li class="github"><a href="<?=$link_gh?>" target="_blank" class="icon-github">Github</a></li>
</ul> </ul>
</nav> </nav>
<footer> <footer>
<hr> <hr>
<i class="film"></i> <i class="film"></i>
<p>Made with <span>&lt;3</span> by a bunch of geeks from All Around The World<br /> <small><a href="tos.html">Terms of Service</a> &mdash; <a href="faq.html">FAQ</a></small></p> <p><?=$langsite["FOOTER"]?><br /> <small><a href="<?=$domain?>tos">Terms of Service</a> <a href="<?=$domain?>faq">FAQ</a></small></p>
</footer> </footer>
</section> </section>
</div> </div>
<script type="text/javascript" src="js/wow.js"></script> <script type="text/javascript" src="<?=$domain?>js/wow.js"></script>
<script type="text/javascript" src="js/site.js"></script> <script type="text/javascript" src="<?=$domain?>js/site.js"></script>
</body> </body>
</html> </html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 533 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 540 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 446 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 534 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 622 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 609 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 535 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 414 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 477 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 535 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 586 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 439 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 661 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 614 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 472 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 627 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 573 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 577 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 452 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 352 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 529 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 740 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 606 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 654 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 461 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 607 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 425 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 441 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 615 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 570 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 514 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 674 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 428 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 630 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 424 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 502 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 387 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 513 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 456 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 391 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 514 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 416 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 668 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 432 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 532 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 380 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 408 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 536 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 645 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 493 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 566 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 405 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 575 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 565 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 446 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 400 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 707 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 683 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 509 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 501 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 516 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 521 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 398 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 509 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 536 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 433 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 549 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 532 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 465 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 686 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 611 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 432 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 553 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 392 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 369 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 432 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 B

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save