Ini adalah detail projek beserta database-nya

parent 424b0f39
<!--ini adalah source code untuk memasukkan pembelian ke gerobak-->
<?php
require_once("koneksi.php");
if (!isset($_SESSION)) {
session_start();
}
if (isset($_GET['act']) && isset($_GET['ref'])) {
$act = $_GET['act'];
$ref = $_GET['ref'];
if ($act == "add") {
if (isset($_GET['barang_id'])) {
$barang_id = $_GET['barang_id'];
if (isset($_SESSION['items'][$barang_id])) {
$_SESSION['items'][$barang_id] += 1;
} else {
$_SESSION['items'][$barang_id] = 1;
}
}
} elseif ($act == "plus") {
if (isset($_GET['barang_id'])) {
$barang_id = $_GET['barang_id'];
if (isset($_SESSION['items'][$barang_id])) {
$_SESSION['items'][$barang_id] += 1;
}
}
} elseif ($act == "min") {
if (isset($_GET['barang_id'])) {
$barang_id = $_GET['barang_id'];
if (isset($_SESSION['items'][$barang_id])) {
$_SESSION['items'][$barang_id] -= 1;
}
}
} elseif ($act == "del") {
if (isset($_GET['barang_id'])) {
$barang_id = $_GET['barang_id'];
if (isset($_SESSION['items'][$barang_id])) {
unset($_SESSION['items'][$barang_id]);
}
}
} elseif ($act == "clear") {
if (isset($_SESSION['items'])) {
foreach ($_SESSION['items'] as $key => $val) {
unset($_SESSION['items'][$key]);
}
unset($_SESSION['items']);
}
}
header ("location:" . $ref);
}
?>
This diff is collapsed. Click to expand it.
This source diff could not be displayed because it is too large. You can view the blob instead.
____________________________________________________________________________________________________
_____ _ _ __ ____ _ _ __ ______ _ _ ____ _____
/ ) / / / | / ) / /| / | / | / / ) / '
---/----/----/___ /-----/__|----/___ /----/| /-|----/__|--------/--------|---/-----/____/----/__----
/ / / / / | / | / |/ | / | / | / / /
_/____/____/____/_____/____|__/_____|___/__/___|__/____|______/__________|_/_____/_________/____ ___
/
(_ / DHARMA TYPE FREE FONTs
EULA ( the End User License Agreement )
This document is a legal agreement between you the end user, and Dharma Type.
By using or installing Dharma Type font(s), you agree to be bound by the terms of this Agreement.
1. You may use this font for both commercial and non-commercial works at no charge.
2. You may use this font to create images on the website or printed matter on papre, logomark.....up to you.
3. You may not sell this font without permission.
4. You may not redistribute this font without permission.
5. You may not modify, adapt, translate, reverse engineer, decompile, disassemble, or create derivative works based on this font.
6. This font are Copyrighted by Ryoichi Tsunekawa. All rights reserved. You may not claim copyrgiht rights for this font.
7. DISCLAIMER
This font is provided to you free of charge.
Dharma Type give no warranty in relation to this font, and you use this at your own risk.
Dharma Type will not be liable for any damage to your system, any loss or corruption of any data or software,
or any other loss or damage that you may suffer as a result of downloading or using this font, whether it results from our negligence or in any other way.
Here is a list of things you could do, Only if you want to:
* Link http://dharmatype.com/ or credit "Dharma Type"
* Tell me what did you use this font for.
FAQ
Q_ Can I use this for a commercial product?
A_ Yes, You can!
Q_ Can I use this on a web page via css @font-face?
A_ Yes, You can!
Q_ Can I donate $ to you?
A_ Yes, You can! ( Paypal: info@flat-it.com )
Contact_______________________________
info@dharmatype.com
Dharma Type (http://dharmatype.com)
|
|___ Flat it type foundry
|
|___ Prop-a-ganda
|
|___ Holiday Type
______________________________________
\ No newline at end of file
/* Portfolio Page */
.view {
width: 98%;
float: left;
border: 5px solid #fff;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
-webkit-box-shadow: 0px 1px 1px rgba(0,0,0,.25);
box-shadow: 0px 1px 1px rgba(0,0,0,.25);
}
.view .mask,.view .content {
width: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
}
.view img {
display: block;
position: relative;
}
.view h2 {
font-family: "Boogaloo" !important;
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
padding: 10px;
background: #99cc66;
margin: 20px 0 0 0;
-webkit-box-shadow: 0px 1px 1px rgba(0,0,0,.25);
-moz-box-shadow: 0px 1px 1px rgba(0,0,0,.25);
box-shadow: 0px 1px 1px rgba(0,0,0,.25);
}
.view p {
font-family: 'Droid Sans';
font-size: 12px;
position: relative;
color: #fff;
padding: 10px 20px 20px;
text-align: center;
}
.view a.info {
font-family: "Boogaloo" !important;
display: inline-block;
text-decoration: none;
padding: 7px 14px;
background: #99cc66;
color: #fff;
text-transform: uppercase;
-webkit-box-shadow: 0px 1px 1px rgba(0,0,0,.25);
-moz-box-shadow: 0px 1px 1px rgba(0,0,0,.25);
box-shadow: 0px 1px 1px rgba(0,0,0,.25);
bottom: 20px;
position: relative;
}
.view a.info:hover {
-webkit-box-shadow: 0 0 5px #000;
-moz-box-shadow: 0 0 5px #000;
box-shadow: 0 0 5px #000;
}
.view-portfolio img {
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
transition: all 0.2s linear;
}
.view-portfolio .mask {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
background: rgba(153,204,102, 0.7) url(../images/pattern.png) repeat;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.view-portfolio h2 {
-webkit-transform: translateY(-100px);
-moz-transform: translateY(-100px);
-o-transform: translateY(-100px);
-ms-transform: translateY(-100px);
transform: translateY(-100px);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.view-portfolio p {
-webkit-transform: translateY(100px);
-moz-transform: translateY(100px);
-o-transform: translateY(100px);
-ms-transform: translateY(100px);
transform: translateY(100px);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
transition: all 0.2s linear;
}
.view-portfolio:hover img {
-webkit-transform: scale(1.1,1.1);
-moz-transform: scale(1.1,1.1);
-o-transform: scale(1.1,1.1);
-ms-transform: scale(1.1,1.1);
transform: scale(1.1,1.1);
filter: blur(3px);
-webkit-filter: blur(3px);
-moz-filter: blur(3px);
-o-filter: blur(3px);
-ms-filter: blur(3px);
}
.view-portfolio a.info {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.view-portfolio:hover .mask {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.view-portfolio:hover h2,
.view-portfolio:hover p,
.view-portfolio:hover a.info {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-o-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
}
.view-portfolio:hover p {
-webkit-transition-delay: 0.1s;
-moz-transition-delay: 0.1s;
-o-transition-delay: 0.1s;
-ms-transition-delay: 0.1s;
transition-delay: 0.1s;
}
.view-portfolio:hover a.info {
-webkit-transition-delay: 0.2s;
-moz-transition-delay: 0.2s;
-o-transition-delay: 0.2s;
-ms-transition-delay: 0.2s;
transition-delay: 0.2s;
}
/* Team Page */
.avatar {
width: 98%;
float: left;
border: 5px solid #fff;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
-webkit-box-shadow: 0px 1px 1px rgba(0,0,0,.25);
-moz-box-shadow: 0px 1px 1px rgba(0,0,0,.25);
box-shadow: 0px 1px 1px rgba(0,0,0,.25);
}
.avatar .mask,.avatar .content {
position: absolute;
overflow: hidden;
top: 0;
left: 0;
}
.avatar img {
display: block;
position: relative;
}
.avatar h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
padding: 10px;
background: rgba(0, 0, 0, 0.8);
margin: 10px 0 0 0;
}
.avatar p {
font-family: Georgia, serif;
font-style: italic;
font-size: 12px;
position: relative;
color: #fff;
padding: 10px 20px 20px;
text-align: center;
}
.avatar a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
background: #000;
color: #fff;
text-transform: uppercase;
-webkit-box-shadow: 0 0 1px #000;
-moz-box-shadow: 0 0 1px #000;
box-shadow: 0 0 1px #000;
}
.avatar a.info: hover {
-webkit-box-shadow: 0 0 5px #000;
-moz-box-shadow: 0 0 5px #000;
box-shadow: 0 0 5px #000;
}
.view-team img {
-webkit-transform: scaleY(1);
-moz-transform: scaleY(1);
-o-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
-ms-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;
}
.view-team .mask {
background-color: rgba(153,204,102, 1);
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.view-team h2 {
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
background: transparent;
margin: 5px 40px 0px 40px;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
color: #333;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.view-team p {
color: #333;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
}
.view-team a.info {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
margin-bottom: 20px;
}
.view-team:hover img {
-webkit-transform: scale(10);
-moz-transform: scale(10);
-o-transform: scale(10);
-ms-transform: scale(10);
transform: scale(10);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.view-team:hover .mask {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.view-team:hover h2,.view-team:hover p,.view-team:hover a.info {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
\ No newline at end of file
/* List styles
=================================================================== */
.check_list li {background: url(../../img/icons/list/green/list_check.png) no-repeat 0% 50%; padding: 0 0 0 18px;}
.plus_list li {background: url(../../img/icons/list/green/list_plus.png) no-repeat 0% 50%; padding: 0 0 0 18px;}
.minus_list li {background: url(../../img/icons/list/green/list_minus.png) no-repeat 0% 50%; padding: 0 0 0 18px;}
.star_list li {background: url(../../img/icons/list/green/list_star.png) no-repeat 0% 50%; padding: 0 0 0 16px;}
.arrow_list li {background: url(../../img/icons/list/green/list_arrow.png) no-repeat 0% 50%; padding: 0 0 0 16px;}
.square_list li {background: url(../../img/icons/list/green/list_square.png) no-repeat 0% 50%; padding: 0 0 0 16px;}
.circle_list li {background: url(../../img/icons/list/green/list_circle.png) no-repeat 0% 50%; padding: 0 0 0 16px;}
.cross_list li {background: url(../../img/icons/list/green/list_cross.png) no-repeat 0% 50%; padding: 0 0 0 16px;}
.project-info strong {
color: #89c236;
}
/* Icons Box
=================================================================== */
.ico-color {
background-image: url("../../img/icons/green/glyphicons.png");
opacity: 1;
}
.mini-color {
background-image: url("../../img/icons/green/glyphicons-mini.png");
opacity: 1;
}
\ No newline at end of file
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
/*
SQLyog Community v12.2.1 (64 bit)
MySQL - 10.1.16-MariaDB : Database - cv_db
*********************************************************************
*/
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
CREATE DATABASE /*!32312 IF NOT EXISTS*/`cv_db` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `cv_db`;
/*Table structure for table `admin` */
DROP TABLE IF EXISTS `admin`;
CREATE TABLE `admin` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(30) NOT NULL,
`password` varchar(30) NOT NULL,
`fullname` varchar(30) NOT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*Data for the table `admin` */
insert into `admin`(`user_id`,`username`,`password`,`fullname`) values
(1,'fujiatma','fujiatma123','fujiatma pratama napitupulu');
/*Table structure for table `barang` */
DROP TABLE IF EXISTS `barang`;
CREATE TABLE `barang` (
`br_id` int(6) NOT NULL AUTO_INCREMENT,
`br_nm` varchar(50) NOT NULL,
`br_item` int(4) NOT NULL,
`br_hrg` int(10) NOT NULL,
`br_stok` int(9) NOT NULL,
`br_satuan` varchar(20) NOT NULL,
`br_gbr` varchar(100) NOT NULL,
`ket` varchar(250) NOT NULL,
`br_sts` varchar(1) NOT NULL,
PRIMARY KEY (`br_id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*Data for the table `barang` */
insert into `barang`(`br_id`,`br_nm`,`br_item`,`br_hrg`,`br_stok`,`br_satuan`,`br_gbr`,`ket`,`br_sts`) values
(1,'Kelapa Gula Merah',1,3000,100,'Buah','gambar/gulmer.jpg','Merupakan rasa original dari ombusombus, dibuat dari pemaduan kelapa dan gula merah ','Y'),
(2,'Kelapa Gula Putih',1,3000,100,'Buah','gambar/gulput.jpg','Merupakan rasa original dari ombusombus, dibuat dari pemaduan kelapa dan gula putih ','Y'),
(3,'Pandan',1,3500,100,'Buah','gambar/pandan.jpg','Merupakan rasa inovasi dari ombusombus, dibuat dari ekstrak sari daun pandan','Y'),
(4,'Cokelat',1,3500,100,'Buah','gambar/coklat.jpg','Merupakan rasa inovasi dari ombusombus, dibuat dari coklat pilihan dengan rasa yang sangat manis','Y'),
(5,'Strawberry',1,3500,50,'Buah','gambar/straw.jpg','Merupakan rasa inovasi dari ombusombus, dibuat dari slay strawberry pilihan dengan rasa yang sangat manis','Y');
/*Table structure for table `no_pem` */
DROP TABLE IF EXISTS `no_pem`;
CREATE TABLE `no_pem` (
`nopem` varchar(4) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*Data for the table `no_pem` */
insert into `no_pem`(`nopem`) values
('79');
/*Table structure for table `pembelian` */
DROP TABLE IF EXISTS `pembelian`;
CREATE TABLE `pembelian` (
`no_hdpem` varchar(10) NOT NULL,
`tgl_hdpem` date NOT NULL,
`usr_hdpem` int(11) NOT NULL,
`crkir_hdpem` tinyint(4) NOT NULL,
`crpem_hdpem` tinyint(4) NOT NULL,
`penerima_hdpem` varchar(50) NOT NULL,
`almt_pem` text NOT NULL,
`kp_pem` varchar(6) NOT NULL,
`kota_pem` varchar(30) NOT NULL,
`tlp` varchar(16) NOT NULL,
`rek_pem` varchar(50) NOT NULL,
`nmrek_pem` varchar(20) NOT NULL,
`bank_pem` varchar(25) NOT NULL,
`ct_pem` text NOT NULL,
`tot_hdpem` int(11) NOT NULL,
`sts_pem` varchar(1) NOT NULL,
PRIMARY KEY (`no_hdpem`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*Data for the table `pembelian` */
/*Table structure for table `transaksi` */
DROP TABLE IF EXISTS `transaksi`;
CREATE TABLE `transaksi` (
`hd_trpem` varchar(10) NOT NULL,
`br_trpem` varchar(6) NOT NULL,
`qty_trpem` int(11) NOT NULL,
`hrg_trpem` int(11) NOT NULL,
`sts_trpem` varchar(1) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*Data for the table `transaksi` */
/*Table structure for table `user` */
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id_usr` int(11) NOT NULL AUTO_INCREMENT,
`nm_usr` varchar(50) NOT NULL,
`log_usr` varchar(20) NOT NULL,
`pas_usr` varchar(100) NOT NULL,
`email_usr` varchar(50) NOT NULL,
`almt_usr` text NOT NULL,
`kp_usr` varchar(6) NOT NULL,
`kota_usr` varchar(25) NOT NULL,
`tlp` varchar(20) NOT NULL,
`rek` varchar(30) NOT NULL,
`nmrek` varchar(30) NOT NULL,
`bank` varchar(30) NOT NULL,
`sts_usr` varchar(1) NOT NULL,
PRIMARY KEY (`id_usr`)
) ENGINE=MyISAM AUTO_INCREMENT=30 DEFAULT CHARSET=latin1;
/*Data for the table `user` */
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
This diff is collapsed. Click to expand it.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Sabtu|13/12/2014|Hakko Bio Richard|accho_blues@yahoo.co.id|Sudah lumayan tampilannya.. ^_^
Sabtu|13/12/2014|Niqo Bio Haqqul Yaqin|niqoromance@yahoo.co.id|Keren.. Lanjutkan..
Sabtu|13/12/2014|NiqoWeb Cikarang|hakko@niqoweb.com|Wah sudah hampir selesai yaa, lanjutkan.. semangat.. ganbatte.. kudasai..
Sabtu|13/12/2014|Erni Suherni|blabla@example.com|Wah sudah jadi ya.. lanjutkan..
img/bg-k.png

151 Bytes

img/bg-k10.png

136 Bytes

img/bg-k20.png

136 Bytes

This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment