Compare commits
56 Commits
Author | SHA1 | Date |
---|---|---|
|
02a0c4ccff | 4 years ago |
|
ee2401e393 | 4 years ago |
|
e3e1634549 | 5 years ago |
|
7547c892f8 | 5 years ago |
|
ff98dd2aa7 | 5 years ago |
|
e39ee83e0a | 5 years ago |
|
ef2511eb63 | 5 years ago |
|
fce4646446 | 5 years ago |
|
4e03e1dc3e | 5 years ago |
|
89352d3110 | 5 years ago |
|
5a3637493f | 5 years ago |
|
bc53cd3cf1 | 7 years ago |
|
0ab23da977 | 7 years ago |
|
80feb22894 | 7 years ago |
|
78956b0aae | 7 years ago |
|
d31c5e1305 | 7 years ago |
|
876085defc | 7 years ago |
|
a6fc1bfcad | 7 years ago |
|
bcf9e9b2cb | 7 years ago |
|
cc68052634 | 7 years ago |
|
051724e021 | 7 years ago |
|
876294ea00 | 7 years ago |
|
e64c56e7cb | 7 years ago |
|
560e778daf | 7 years ago |
|
66c9e9152e | 7 years ago |
|
e15e8a9143 | 7 years ago |
|
7f9a24ef4e | 7 years ago |
|
d5f5ee6090 | 7 years ago |
|
cfe5bcaf0f | 7 years ago |
|
b88c4d69a4 | 7 years ago |
|
22a2490bc9 | 7 years ago |
|
f7cc4d6720 | 7 years ago |
|
01bc12640d | 7 years ago |
|
ececb916ea | 7 years ago |
|
42625d21fa | 7 years ago |
|
f1ffd955b0 | 7 years ago |
|
d57472b403 | 7 years ago |
|
26cc9b9250 | 7 years ago |
|
62ec1191ff | 7 years ago |
|
32846a9421 | 7 years ago |
|
f24b179aa8 | 7 years ago |
|
d382454807 | 7 years ago |
|
0425b1d627 | 7 years ago |
|
d2b6a3e8f1 | 8 years ago |
|
b3512651cb | 8 years ago |
|
0ddef81b30 | 8 years ago |
|
f1837b7fba | 8 years ago |
|
3c53e13702 | 8 years ago |
|
4270214073 | 8 years ago |
|
ec257185ac | 8 years ago |
|
3c03c2a557 | 8 years ago |
|
e0ae53594d | 8 years ago |
|
de24769580 | 8 years ago |
|
ca7efd29c4 | 8 years ago |
|
a16e518aa6 | 8 years ago |
|
8ae9cf2cbe | 8 years ago |
996 changed files with 154296 additions and 123559 deletions
@ -0,0 +1,4 @@ |
|||||
|
|
||||
|
cgi-bin/conn\.conn |
||||
|
|
||||
|
node_modules/ |
@ -0,0 +1,10 @@ |
|||||
|
|
||||
|
RewriteEngine On |
||||
|
|
||||
|
Rewritebase / |
||||
|
|
||||
|
RewriteCond %{REQUEST_FILENAME} !-f |
||||
|
RewriteCond %{REQUEST_FILENAME} !-d |
||||
|
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA] |
||||
|
|
||||
|
|
@ -0,0 +1,6 @@ |
|||||
|
max_execution_time = 100 |
||||
|
max_input_time = 100 |
||||
|
max_input_nesting_level = 100 |
||||
|
memory_limit = 128M |
||||
|
upload_max_filesize = 128M |
||||
|
post_max_size = 128M |
@ -0,0 +1,17 @@ |
|||||
|
|
||||
|
RewriteEngine On |
||||
|
|
||||
|
Options -Multiviews |
||||
|
|
||||
|
Rewritebase /ADMIN/ |
||||
|
|
||||
|
RewriteCond %{HTTPS} off |
||||
|
RewriteCond %{HTTP:X-Forwarded-Proto} !https |
||||
|
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] |
||||
|
|
||||
|
|
||||
|
RewriteCond %{REQUEST_FILENAME} !-f |
||||
|
RewriteCond %{REQUEST_FILENAME} !-d |
||||
|
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA] |
||||
|
|
||||
|
|
@ -0,0 +1,6 @@ |
|||||
|
max_execution_time = 100 |
||||
|
max_input_time = 100 |
||||
|
max_input_nesting_level = 100 |
||||
|
memory_limit = 128M |
||||
|
upload_max_filesize = 128M |
||||
|
post_max_size = 128M |
@ -0,0 +1,6 @@ |
|||||
|
|
||||
|
<div id="MainContainer" class="col-12 col-md-10 px-0 pr-sm-0 px-md-2 pt-2"> |
||||
|
<?php |
||||
|
@include 'sheets/'.$getQ[1].'/'.$getQ[2].'.php'; |
||||
|
?> |
||||
|
</div> |
@ -0,0 +1,23 @@ |
|||||
|
|
||||
|
<header> |
||||
|
<div class="container main"> |
||||
|
<div class="row"> |
||||
|
<div class="col-2 col-md-4"></div> |
||||
|
<img class="logo" src="<?php echo $BASE_URLs;?>/images/header.png"> |
||||
|
|
||||
|
<div class="middle-right text-white px-5"> |
||||
|
<p class="font-16 font-bold"> |
||||
|
PANNELLO DI AMMINISTRAZIONE |
||||
|
</p> |
||||
|
|
||||
|
<?php |
||||
|
if($_SESSION['ADMAUTH']) { |
||||
|
echo "<p class=\"font-normal\">Benvenuto ".$_SESSION['ADMAUTH']['name']."</p>"; |
||||
|
echo "<a class=\"font-normal text-white font-12\" href=\"".$BASE_URL."/logout\">[Logout]</a>"; |
||||
|
} |
||||
|
?> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
</header> |
@ -0,0 +1,109 @@ |
|||||
|
<?php |
||||
|
|
||||
|
session_start(); |
||||
|
|
||||
|
@include '../cgi-bin/conn.conn'; |
||||
|
@include '../cgi-bin/functions.inc'; |
||||
|
@include '../cgi-bin/params.inc'; |
||||
|
|
||||
|
$GLOBALS['getQ'][0]="home"; |
||||
|
$GLOBALS['conn']; |
||||
|
|
||||
|
$conn=@mysqli_connect($DATAhst,$DATAusr,$DATApwd,$DATAdtb);//or die("CONNECTION ERROR"); |
||||
|
@mysqli_set_charset($conn, "utf8"); |
||||
|
|
||||
|
if(@$_GET['q']){ |
||||
|
$GLOBALS['getQ']=explode("/",$_GET['q']); |
||||
|
} |
||||
|
|
||||
|
$BASE_URL = $BASE_URL."/ADMIN"; |
||||
|
|
||||
|
|
||||
|
if($_POST['usr'] && $_POST['pwd']){ |
||||
|
$q=mysqli_query($conn, "SELECT * FROM users WHERE usr='".$_POST['usr']."' AND pwd='".md5($_POST['pwd'])."'"); |
||||
|
if(mysqli_num_rows($q)){ |
||||
|
$_SESSION['ADMAUTH']=mysqli_fetch_array($q); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
if($getQ[0]=="logout"){ |
||||
|
unset($_SESSION['ADMAUTH']); |
||||
|
session_destroy(); |
||||
|
header('Location: '.$BASE_URL); |
||||
|
} |
||||
|
|
||||
|
//$_SESSION['ADMAUTH']=0; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
// TRIM ADVERTISEMENT |
||||
|
$qa=mysqli_query($conn, "SELECT id,append FROM advertisement WHERE date < '".date("Y-m-d", strtotime("-3 months"))."'"); |
||||
|
while($ra=mysqli_fetch_array($qa)) { |
||||
|
$qtf=mysqli_query($conn, "SELECT * FROM files WHERE id=".$ra['append']); |
||||
|
while($rtf=mysqli_fetch_array($qtf)){ |
||||
|
@unlink("..".$rtf['path']."/".$rtf['filename']); |
||||
|
mysqli_query($conn, "DELETE FROM files WHERE id=".$rtf['id']); |
||||
|
} |
||||
|
mysqli_query($conn, "DELETE FROM advertisement WHERE id = ".$ra['id']); |
||||
|
} |
||||
|
|
||||
|
?> |
||||
|
|
||||
|
|
||||
|
|
||||
|
<!DOCTYPE html> |
||||
|
<html> |
||||
|
<head> |
||||
|
|
||||
|
<title>ADMIN | Ordine dei Farmacisti della Provincia di Salerno</title> |
||||
|
|
||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
||||
|
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'> |
||||
|
|
||||
|
<base href="<?php echo $BASE_URL;?>/"> |
||||
|
|
||||
|
<link href="<?php echo $BASE_URL;?>/../css/styles.css" rel="stylesheet" type="text/css"/> |
||||
|
<link href="<?php echo $BASE_URL;?>/../css/admin.css" rel="stylesheet" type="text/css"/> |
||||
|
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'> |
||||
|
|
||||
|
</head> |
||||
|
<body class="admin"> |
||||
|
|
||||
|
<?php |
||||
|
@include 'header.php'; |
||||
|
?> |
||||
|
<section> |
||||
|
<div id="MainContent" class="container px-2"> |
||||
|
<div class="row"> |
||||
|
<?php |
||||
|
|
||||
|
if($_SESSION['ADMAUTH']) { |
||||
|
@include 'menu.php'; |
||||
|
@include 'content.php'; |
||||
|
} else { |
||||
|
@include 'login.php'; |
||||
|
} |
||||
|
|
||||
|
?> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
|
||||
|
<script type="text/javascript" src="<?php echo $BASE_URL;?>/../node_modules/jquery/dist/jquery.min.js"></script> |
||||
|
<script type="text/javascript" src="<?php echo $BASE_URL;?>/../node_modules/jquery-colorbox/jquery.colorbox-min.js"></script> |
||||
|
<script type="text/javascript" src="<?php echo $BASE_URL;?>/../node_modules/tinymce/tinymce.min.js"></script> |
||||
|
<script type="text/javascript" src="<?php echo $BASE_URL;?>/../node_modules/jquery.datepicker-plus-css/jquery-datepicker.js"></script> |
||||
|
<script type="text/javascript" src="<?php echo $BASE_URL;?>/../node_modules/jquery-ui-datepicker-with-i18n/ui/i18n/jquery.ui.datepicker-it.js"></script> |
||||
|
|
||||
|
<script type="text/javascript" src="<?php echo $BASE_URL;?>/../js/scripts.js"></script> |
||||
|
<script type="text/javascript" src="<?php echo $BASE_URL;?>/js/scripts.js"></script> |
||||
|
|
||||
|
|
||||
|
</body> |
||||
|
</html> |
||||
|
|
||||
|
|
||||
|
<?php |
||||
|
@mysqli_close($conn); |
||||
|
?> |
@ -0,0 +1,67 @@ |
|||||
|
|
||||
|
$(document).ready( function(){ |
||||
|
|
||||
|
tinymce.init({ |
||||
|
selector: '.mce', |
||||
|
height: 300, |
||||
|
theme: 'modern', |
||||
|
menubar: false, |
||||
|
language: 'it', |
||||
|
forced_root_block : '', |
||||
|
force_br_newlines : true, |
||||
|
relative_urls : false, |
||||
|
remove_script_host : false, |
||||
|
plugins: [ |
||||
|
'advlist autolink lists link paste' |
||||
|
], |
||||
|
toolbar: 'bold italic underline | alignleft aligncenter alignright alignjustify | link bullist numlist| removeformat', |
||||
|
image_advtab: false, |
||||
|
content_css: [ |
||||
|
'//fonts.googleapis.com/css?family=Lato:300,300i,400,400i', |
||||
|
] |
||||
|
}); |
||||
|
|
||||
|
$( ".datepicker" ).datepicker({ |
||||
|
changeMonth: true, |
||||
|
changeYear: true, |
||||
|
dateFormat: 'dd/mm/yy', |
||||
|
yearRange: new Date().getFullYear()-90 + ':' + new Date().getFullYear(), |
||||
|
maxDate: "+1M", |
||||
|
regional:['it'] |
||||
|
}); |
||||
|
|
||||
|
|
||||
|
$('.form-mod').on('submit', function(e){ |
||||
|
e.preventDefault(); |
||||
|
var id = $(this).find('.id').val(); |
||||
|
var path = $(this).data('path') + "/" + id.trim(); |
||||
|
window.location = path; |
||||
|
}); |
||||
|
|
||||
|
|
||||
|
$('.files-list .add-file').on('click', function(e){ |
||||
|
e.preventDefault(); |
||||
|
var master = $(this).siblings('.list').find('.master:first-child').clone(); |
||||
|
$(this).siblings('.list').append($(master)); |
||||
|
|
||||
|
$(master).find('[name="files[]"]').on('change', function(){ |
||||
|
$(master).find('[name="titles[]"]').val($(this).val().split('\\').pop()); |
||||
|
}) |
||||
|
}); |
||||
|
|
||||
|
$('.files-list .row').each( function(index, elem){ |
||||
|
$(elem).find('[name="files[]"]').on('change', function(){ |
||||
|
$(elem).find('[name="titles[]"]').val($(this).val().split('\\').pop()); |
||||
|
}) |
||||
|
}); |
||||
|
|
||||
|
|
||||
|
|
||||
|
$('.emailForm').on('submit', function(event) { |
||||
|
$.colorbox({width:"600px", height:"400px", iframe:true, href:"/ADMIN/sheets/email/cbSend.php?" + $(this).serialize()}); |
||||
|
event.preventDefault(); |
||||
|
}); |
||||
|
|
||||
|
|
||||
|
|
||||
|
}); |
@ -0,0 +1,33 @@ |
|||||
|
|
||||
|
|
||||
|
<form method="post"> |
||||
|
|
||||
|
Title |
||||
|
<input type="text" name="title"> |
||||
|
<br><br> |
||||
|
|
||||
|
Text |
||||
|
<textarea class="mce" name="text"></textarea> |
||||
|
<br><br> |
||||
|
|
||||
|
section |
||||
|
<input type="text" name="section" value="<?= $_POST['section'];?>"> |
||||
|
<br><br> |
||||
|
|
||||
|
<input type="submit"> |
||||
|
|
||||
|
</form> |
||||
|
|
||||
|
|
||||
|
<?php |
||||
|
|
||||
|
if(sizeof($_POST)){ |
||||
|
|
||||
|
$query = "INSERT INTO links VALUES(0, '".addslashes($_POST['title'])."', '".addslashes($_POST['text'])."', '".$_POST['section']."')"; |
||||
|
$q = mysqli_query($conn, $query); |
||||
|
|
||||
|
echo $query; |
||||
|
|
||||
|
} |
||||
|
|
||||
|
?> |
@ -0,0 +1,16 @@ |
|||||
|
|
||||
|
<div class="col-10 col-md-5 my-5 mx-auto"> |
||||
|
<form method="post"> |
||||
|
<label class="font-10">Username</label> |
||||
|
<input type="text" name="usr" placeholder="username"> |
||||
|
|
||||
|
<label class="font-10">Password</label> |
||||
|
<input type="password" name="pwd" placeholder="password"> |
||||
|
<input type="submit" name="go" value="Accedi"> |
||||
|
</form> |
||||
|
</div> |
||||
|
|
||||
|
<?php |
||||
|
|
||||
|
//echo md5('OrdFarmSaNews'); |
||||
|
?> |
@ -0,0 +1,124 @@ |
|||||
|
|
||||
|
<?php |
||||
|
|
||||
|
function checkAdminSections($sec) { |
||||
|
|
||||
|
$s = $_SESSION['ADMAUTH']['sections']; |
||||
|
$sa = explode(',',$s); |
||||
|
$return = ''; |
||||
|
|
||||
|
if($s == 'ALL') { |
||||
|
$return = ''; |
||||
|
} else { |
||||
|
if(!in_array($sec,$sa)) { |
||||
|
$return = 'd-none'; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
|
||||
|
return $return; |
||||
|
} |
||||
|
?> |
||||
|
|
||||
|
<div id="menuLeft" class="col-12 col-md-2 p-2"> |
||||
|
|
||||
|
<div class="dropdown <?= $getQ[1]=="user" ? "active":"" ?> <?= checkAdminSections("user");?>"> |
||||
|
<div class="title">Gestione iscritti</div> |
||||
|
<ul class="items"> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/user/list">Elenco iscritti </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/user/add">Aggiungi iscritto </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/user/mod">Modifica iscritto </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/user/del">Elimina iscritto </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/user/import">Importa da file </a></li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
<div class="dropdown <?= $getQ[1]=="news" ? "active":"" ?> <?= checkAdminSections("news");?>"> |
||||
|
<div class="title">Notizie</div> |
||||
|
<ul class="items"> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/news/add">Aggiungi notizia </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/news/mod">Modifica notizia </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/news/del">Elimina notizia </a></li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
<div class="dropdown <?= $getQ[1]=="email" ? "active":"" ?> <?= checkAdminSections("email");?>"> |
||||
|
<div class="title">E-mail</div> |
||||
|
<ul class="items"> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/email/send">Invia e-mail </a></li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
<div class="dropdown <?= $getQ[1]=="files" ? "active":"" ?> <?= checkAdminSections("files");?>"> |
||||
|
<div class="title">Files</div> |
||||
|
<ul class="items"> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/files/list">Elenco files </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/files/add">Aggiungi file </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/files/del">Elimina file </a></li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
<div class="dropdown <?= $getQ[1]=="links" ? "active":"" ?> <?= checkAdminSections("links");?>"> |
||||
|
<div class="title">Links utili</div> |
||||
|
<ul class="items"> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/links/add">Aggiungi link </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/links/del">Elimina link </a></li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
<div class="dropdown <?= $getQ[1]=="advertisement" ? "active":"" ?> <?= checkAdminSections("advertisement");?>"> |
||||
|
<div class="title">Inserzioni</div> |
||||
|
<ul class="items"> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/advertisement/list">Elenco inserzioni </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/advertisement/add">Aggiungi inserzione </a></li> |
||||
|
<!-- <li><a href="<?= $BASE_URL ?>/sheets/advertisement/mod">Modifica inserzione </a></li> --> |
||||
|
<!-- <li><a href="<?= $BASE_URL ?>/sheets/advertisement/del">Elimina inserzione </a></li> --> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
<div class="dropdown <?= $getQ[1]=="pharmacy" ? "active":"" ?> <?= checkAdminSections("pharmacy");?>"> |
||||
|
<div class="title">Farmacie</div> |
||||
|
<ul class="items"> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/pharmacy/list">Elenco farmacie </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/pharmacy/add">Aggiungi farmacia </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/pharmacy/mod">Modifica farmacia </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/pharmacy/del">Elimina farmacia </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/pharmacy/import">Importa da file </a></li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
<div class="dropdown <?= $getQ[1]=="parapharmacy" ? "active":"" ?> <?= checkAdminSections("parapharmacy");?>"> |
||||
|
<div class="title">Parafarmacie</div> |
||||
|
<ul class="items"> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/parapharmacy/list">Elenco parafarmacie </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/parapharmacy/add">Aggiungi parafarmacia </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/parapharmacy/mod">Modifica parafarmacia </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/parapharmacy/del">Elimina parafarmacia </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/parapharmacy/import">Importa da file </a></li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
<div class="dropdown <?= $getQ[1]=="ftp" ? "active":"" ?> <?= checkAdminSections("ftp");?>"> |
||||
|
<div class="title">Archivio FTP</div> |
||||
|
<ul class="items"> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/ftp/list">Elenco files </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/ftp/add">Aggiungi file </a></li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
<div class="dropdown mt-4 <?= $getQ[1]=="access" ? "active":"" ?> <?= checkAdminSections("access");?>"> |
||||
|
<div class="title">Gestione accessi</div> |
||||
|
<ul class="items"> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/access/add">Aggiungi accesso </a></li> |
||||
|
<li><a href="<?= $BASE_URL ?>/sheets/access/list">Elenco accessi </a></li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue