├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── admin ├── admin.php └── index.php ├── apps ├── admin_background.php ├── admin_getway.php ├── admin_init.php ├── admin_reset.php ├── admin_server.php ├── daemon.php ├── daemon_cek.php ├── daemon_init.php ├── daemon_try.php ├── daemon_try_cek.php ├── get_loket.php ├── last_stage.php ├── monitoring-daemon-result.php ├── monitoring-daemon.php ├── mysql_close.php ├── mysql_connect.php └── set_loket.php ├── assert ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── jumbotron-narrow-monitoring.css │ └── jumbotron-narrow.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── admin.png │ ├── client.png │ ├── logo.png │ └── monitoring.png └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery.min.js │ └── npm.js ├── audio └── new │ ├── 1.MP3 │ ├── 2.MP3 │ ├── 3.MP3 │ ├── 4.MP3 │ ├── 5.MP3 │ ├── 6.MP3 │ ├── 7.MP3 │ ├── 8.MP3 │ ├── 9.MP3 │ ├── Airport_Bell.mp3 │ ├── belas.MP3 │ ├── in.wav │ ├── konter.MP3 │ ├── loket.MP3 │ ├── loket.wav │ ├── nomor-urut.MP3 │ ├── nomor-urut.wav │ ├── out.wav │ ├── puluh.MP3 │ ├── ratus.MP3 │ ├── ribu.MP3 │ ├── sebelas.MP3 │ ├── sepuluh.MP3 │ └── seratus.MP3 ├── client └── index.php ├── db ├── antrian.db └── antrian.sql ├── puluh.zip ├── puluh_stable_fix_release_final_ok_sib_banget.zip ├── release └── puluh_fix_3_final_release.zip └── server └── index.php /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: [push] 4 | 5 | jobs: 6 | build: 7 | 8 | runs-on: ubuntu-latest 9 | 10 | steps: 11 | - uses: actions/checkout@v1 12 | - name: Run a one-line script 13 | run: echo Hello, world! 14 | - name: Run a multi-line script 15 | run: | 16 | echo Add other actions to build, 17 | echo test, and deploy your project. 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | db/antrian.db -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Aplikasi Antrian 2 | Aplikasi ini hanya sederhana yang dibuat untuk proses registrasi mahasiswa baru di Institut Teknologi Sumatra. Teridiri dari 3 interface yaitu : 3 | * Client 4 | ![Client](assert/img/client.png) 5 | * Monitoring 6 | ![Monitoring](assert/img/monitoring.png) 7 | * Admin 8 | ![Admin](assert/img/admin.png) 9 | 10 | ## Requirement 11 | Install 12 | * apache 2.x.x 13 | * PHP 5.x.x (with pdo_sqlite,json) 14 | * Mysql 5.x.x > 15 | * Jquery -------------------------------------------------------------------------------- /admin/admin.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | Admin : Queue 16 | 17 | 18 | 19 | 20 | 21 |
22 |
23 |
24 |

25 | 26 |

27 |
28 | 29 | 33 | 34 |
35 | 36 |
37 |
38 | 39 |
40 |
41 |
42 | 45 |
46 | 47 | 48 | 93 | 94 | 95 | -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | Admin : Queue 16 | 17 | 18 | 19 | 20 | 21 |
22 |
23 |
24 |

25 | 26 |

27 | 28 |
29 |
30 |
31 | 34 |
35 | 36 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /apps/admin_background.php: -------------------------------------------------------------------------------- 1 | query('UPDATE data_antrian SET status=2 WHERE status=1'); // wait 7 | if (!$result) { 8 | echo json_encode(array('status'=>0)); 9 | }else{ 10 | echo json_encode(array('status'=>1)); 11 | } 12 | }else{ 13 | include "mysql_connect.php"; 14 | $result = $mysqli->query('UPDATE data_antrian SET status=2 WHERE status=1'); // wait 15 | if (!$result) { 16 | echo json_encode(array('status'=>0)); 17 | }else{ 18 | echo json_encode(array('status'=>1)); 19 | } 20 | include 'mysql_close.php'; 21 | } 22 | -------------------------------------------------------------------------------- /apps/admin_getway.php: -------------------------------------------------------------------------------- 1 | query('SELECT count(*) as count FROM client_antrian'); 5 | $rowClient = $rstClient->fetch_array(); 6 | if($rowClient['count']>0){ 7 | $jmlClient = $rowClient['count']; 8 | }else{ 9 | $jmlClient = 0; 10 | } 11 | echo json_encode( array('client'=> $jmlClient) ); 12 | }else{ 13 | include "mysql_connect.php"; 14 | if(isset($_POST['next_current']) and ($_POST['next_current'] != NULL)){ 15 | $cek_request_counter = $mysqli->query("SELECT count(*) as count FROM data_antrian WHERE status=4"); 16 | $cek_request_counter_row = $cek_request_counter->fetch_array(); 17 | if ($cek_request_counter_row['count']) { 18 | $rstC = $mysqli->query('SELECT id FROM data_antrian WHERE status=4 LIMIT 1'); 19 | $rowC = $rstC->fetch_array(); 20 | $id = $rowC['id']; 21 | $results = $mysqli->query('UPDATE data_antrian SET status=0 WHERE status=4 LIMIT 1'); 22 | echo json_encode( array('next'=> $id) ); 23 | }else{ 24 | //insert 25 | $results = $mysqli->query('INSERT INTO data_antrian (waktu,status) VALUES ("'.date("Y-m-d H:i:s").'",3)'); 26 | $id = $mysqli->insert_id; 27 | echo json_encode( array('next'=> $id) ); 28 | } 29 | }else{ 30 | $rstClient = $mysqli->query('SELECT count(*) as count FROM data_antrian WHERE status != 4'); 31 | $rowClient = $rstClient->fetch_array(); 32 | if($rowClient['count']>0){ 33 | $jmlClient = $rowClient['count']; 34 | }else{ 35 | $jmlClient = 0; 36 | } 37 | echo json_encode( array('next'=> $jmlClient) ); 38 | } 39 | include 'mysql_close.php'; 40 | } -------------------------------------------------------------------------------- /apps/admin_init.php: -------------------------------------------------------------------------------- 1 | query('SELECT count(*) as count FROM client_antrian'); 5 | $rowClient = $rstClient->fetch_array(); 6 | if($rowClient['count']>0){ 7 | $jmlClient = $rowClient['count']; 8 | }else{ 9 | $jmlClient = 0; 10 | } 11 | echo json_encode( array('client'=> $jmlClient) ); 12 | }else{ 13 | include "mysql_connect.php"; 14 | $rstClient = $mysqli->query('SELECT count(*) as count FROM client_antrian'); 15 | $rowClient = $rstClient->fetch_array(); 16 | if($rowClient['count']>0){ 17 | $jmlClient = $rowClient['count']; 18 | }else{ 19 | $jmlClient = 0; 20 | } 21 | echo json_encode( array('client'=> $jmlClient) ); 22 | include 'mysql_close.php'; 23 | } -------------------------------------------------------------------------------- /apps/admin_reset.php: -------------------------------------------------------------------------------- 1 | query('DELETE FROM data_antrian'); 5 | $rstClient = $db->query('Update sqlite_sequence set seq="0" where name="data_antrian"'); 6 | echo json_encode( array('status'=> "Data Berhasil di Reset") ); 7 | }else{ 8 | include "mysql_connect.php"; 9 | $rstClient = $mysqli->query('TRUNCATE TABLE data_antrian'); 10 | echo json_encode( array('status'=> "Data Berhasil di Reset") ); 11 | include 'mysql_close.php'; 12 | } -------------------------------------------------------------------------------- /apps/admin_server.php: -------------------------------------------------------------------------------- 1 | 0){ 6 | if (isset($_POST['db']) and $_POST['db']=="queue") { 7 | $results = $db->query('SELECT * FROM data_antrian ORDER BY id ASC LIMIT 1'); 8 | while ($row = $results->fetch_array()) { 9 | $data['id'] = $row['id']; 10 | $data['counter'] = $row['counter']; 11 | $data['waktu'] = $row['waktu']; 12 | $data['status'] = $row['status']; 13 | } 14 | echo json_encode($data); 15 | }else{ 16 | $jmlloket = $_POST['jmlloket']; 17 | $results = $db->query('DELETE FROM client_antrian;'); 18 | for ($i=1; $i <= $jmlloket ; $i++) { 19 | $results = $db->query('INSERT INTO client_antrian (client) VALUES ('.$i.')'); 20 | } 21 | echo json_encode(array("status"=>TRUE)); 22 | } 23 | } else { 24 | $results = $db->query('SELECT count(*) as jumlah_loket FROM client_antrian'); 25 | if ( $results->numColumns()) { 26 | while ($row = $results->fetch_array()) { 27 | $data['jumlah_loket'] = $row['jumlah_loket']; 28 | } 29 | } else { 30 | $data['jumlah_loket'] = $row['jumlah_loket']; 31 | } 32 | echo json_encode($data); 33 | } 34 | }else{ 35 | include "mysql_connect.php"; 36 | $data = array(); 37 | if (isset($_POST) and count($_POST) > 0){ 38 | if (isset($_POST['db']) and $_POST['db']=="queue") { 39 | $results = $mysqli->query('SELECT * FROM data_antrian ORDER BY id ASC LIMIT 1'); 40 | while ($row = $results->fetch_array()) { 41 | $data['id'] = $row['id']; 42 | $data['counter'] = $row['counter']; 43 | $data['waktu'] = $row['waktu']; 44 | $data['status'] = $row['status']; 45 | } 46 | echo json_encode($data); 47 | }else{ 48 | $jmlloket = $_POST['jmlloket']; 49 | $results = $mysqli->query('DELETE FROM client_antrian;'); 50 | for ($i=1; $i <= $jmlloket ; $i++) { 51 | $results = $mysqli->query('INSERT INTO client_antrian (client) VALUES ('.$i.')'); 52 | } 53 | echo json_encode(array("status"=>TRUE)); 54 | } 55 | } else { 56 | $results = $mysqli->query('SELECT count(*) as jumlah_loket FROM client_antrian'); 57 | while ($row = $results->fetch_array()) { 58 | $data['jumlah_loket'] = $row['jumlah_loket']; 59 | } 60 | echo json_encode($data); 61 | } 62 | include 'mysql_close.php'; 63 | } -------------------------------------------------------------------------------- /apps/daemon.php: -------------------------------------------------------------------------------- 1 | query('INSERT INTO data_antrian (counter,waktu,status) VALUES ('.$loket.',"'.date("Y-m-d H:i:s").'",0)'); 6 | $next_counter = $db->lastInsertRowID(); 7 | $data = array('next' => $next_counter); 8 | echo json_encode($data); 9 | }else{ 10 | include "mysql_connect.php"; 11 | $rstClient = $mysqli->query("SELECT * FROM data_antrian WHERE counter='' AND status=3 LIMIT 1"); 12 | $rowClient = $rstClient->fetch_array(); 13 | if(count($rowClient)>0){ 14 | $id = $rowClient['id']; 15 | $results = $mysqli->query('UPDATE data_antrian SET counter='.$loket.', status=0 WHERE id='.$id.''); 16 | $next_counter = $id; 17 | //update 18 | }else{ 19 | //insert 20 | $results = $mysqli->query('INSERT INTO data_antrian (waktu,counter,status) VALUES ("'.date("Y-m-d H:i:s").'",'.$loket.',4)'); 21 | $next_counter = $mysqli->insert_id; 22 | $data['idle'] = "TRUE"; 23 | } 24 | //$results = $mysqli->query('INSERT INTO data_antrian (counter,waktu,status) VALUES ('.$loket.',"'.date("Y-m-d H:i:s").'",0)'); 25 | $data['next'] = $next_counter; 26 | echo json_encode($data); 27 | include 'mysql_close.php'; 28 | } 29 | ?> -------------------------------------------------------------------------------- /apps/daemon_cek.php: -------------------------------------------------------------------------------- 1 | query('UPDATE data_antrian SET waktu="'.date("Y-m-d H:i:s").'",status=0 WHERE id='.$id.' and counter='.$loket.''); 7 | }else{ 8 | include "mysql_connect.php"; 9 | $hasil = $mysqli->query('select * from data_antrian where id='.$id.' and counter='.$loket.''); 10 | $data = $hasil->fetch_array(); 11 | echo json_encode(array('huft' => $data['status'])); 12 | include 'mysql_close.php'; 13 | } 14 | ?> -------------------------------------------------------------------------------- /apps/daemon_init.php: -------------------------------------------------------------------------------- 1 | query('SELECT client From client_antrian'); // execution 6 | while ($rows = $result->fetch_array()) { 7 | $rst = $db->query('SELECT max(id) as id FROM data_antrian WHERE counter ='. $rows['client'] .' and status=2;'); // execution 8 | $row = $rst->fetch_array(); 9 | if ($row['id']==NULL) { 10 | $id=0; 11 | } else { 12 | $id=$row['id']; 13 | } 14 | $_SESSION["next_server"][$rows['client']] = $id; 15 | $_SESSION["counter_server"][$rows['client']] = $rows['client']; 16 | } 17 | }else{ 18 | include "mysql_connect.php"; 19 | $result = $mysqli->query('SELECT client From client_antrian'); // execution 20 | while ($rows = $result->fetch_array()) { 21 | $rst = $mysqli->query('SELECT max(id) as id FROM data_antrian WHERE counter ='. $rows['client'] .' and status=2;'); // execution 22 | $row = $rst->fetch_array(); 23 | if ($row['id']==NULL) 24 | $id=0; 25 | else 26 | $id=$row['id']; 27 | $_SESSION["next_server"][$rows['client']] = $id; 28 | $_SESSION["counter_server"][$rows['client']] = $rows['client']; 29 | } 30 | include 'mysql_close.php'; 31 | } 32 | ?> -------------------------------------------------------------------------------- /apps/daemon_try.php: -------------------------------------------------------------------------------- 1 | query('UPDATE data_antrian SET waktu="'.date("Y-m-d H:i:s").'",status=0 WHERE id='.$id.' and counter='.$loket.''); 7 | }else{ 8 | include "mysql_connect.php"; 9 | $results = $mysqli->query('UPDATE data_antrian SET waktu="'.date("Y-m-d H:i:s").'",status=0 WHERE id='.$id.' and counter='.$loket.''); 10 | 11 | $hasil = $mysqli->query('select * from data_antrian where id='.$id.' and counter='.$loket.''); 12 | //echo 'select * from data_antrian where id='.$id.' and counter='.$loket.''; 13 | 14 | $data = $hasil->fetch_array(); 15 | echo json_encode(array('huft' => $data['status'])); 16 | include 'mysql_close.php'; 17 | } 18 | ?> -------------------------------------------------------------------------------- /apps/daemon_try_cek.php: -------------------------------------------------------------------------------- 1 | query('UPDATE data_antrian SET waktu="'.date("Y-m-d H:i:s").'",status=0 WHERE id='.$id.' and counter='.$loket.''); 7 | }else{ 8 | include "mysql_connect.php"; 9 | $hasil = $mysqli->query('select * from data_antrian where id='.$id.' and counter='.$loket.''); 10 | $data = $hasil->fetch_array(); 11 | echo json_encode(array('huft' => $data['status'])); 12 | include 'mysql_close.php'; 13 | } 14 | ?> -------------------------------------------------------------------------------- /apps/get_loket.php: -------------------------------------------------------------------------------- 1 | query('SELECT DISTINCT(counter) as counter FROM data_antrian'); 6 | if ( $results->numColumns()) { 7 | while ($row = $results->fetch_array()) { 8 | $data[] = $row['counter']; 9 | } 10 | } 11 | echo json_encode($data); 12 | }else{ 13 | include "mysql_connect.php"; 14 | $results = $mysqli->query('SELECT DISTINCT(counter) as counter FROM data_antrian'); 15 | if ( $results->numColumns()) { 16 | while ($row = $results->fetch_array()) { 17 | $data[] = $row['counter']; 18 | } 19 | } 20 | echo json_encode($data); 21 | include 'mysql_close.php'; 22 | } -------------------------------------------------------------------------------- /apps/last_stage.php: -------------------------------------------------------------------------------- 1 | query('SELECT Max(id) as id FROM data_antrian WHERE counter='.$loket.''); 7 | $row = $results->fetch_array(); 8 | if ($row['id'] == NULL) { 9 | $data = array('next' => 0); 10 | } else { 11 | $data = array('next' => $row['id']); 12 | } 13 | echo json_encode($data); 14 | }else{ 15 | include "mysql_connect.php"; 16 | $date = date("Y-m-d"); 17 | $results = $mysqli->query('SELECT Max(id) as id FROM data_antrian WHERE counter='.$loket.''); 18 | $row = $results->fetch_array(); 19 | if ($row['id'] == NULL) { 20 | $data = array('next' => 0); 21 | } else { 22 | $data = array('next' => $row['id']); 23 | } 24 | echo json_encode($data); 25 | include 'mysql_close.php'; 26 | } 27 | ?> -------------------------------------------------------------------------------- /apps/monitoring-daemon-result.php: -------------------------------------------------------------------------------- 1 | query('UPDATE data_antrian SET status= 2 WHERE id='.$id.''); // wait 7 | if (!$result) 8 | echo json_encode(array('status'=>0)); 9 | else 10 | echo json_encode(array('status'=>1)); 11 | }else{ 12 | include "mysql_connect.php"; 13 | $result = $mysqli->query('UPDATE data_antrian SET status= 2 WHERE id='.$id.''); // wait 14 | if (!$result) 15 | echo json_encode(array('status'=>0)); 16 | else 17 | echo json_encode(array('status'=>1)); 18 | include 'mysql_close.php'; 19 | } 20 | -------------------------------------------------------------------------------- /apps/monitoring-daemon.php: -------------------------------------------------------------------------------- 1 | query('SELECT count(*) as jumlah_loket FROM client_antrian'); 9 | $loket = $results->fetch_array(); 10 | $data['jumlah_loket'] = $loket['jumlah_loket']; // set jumlah loket 11 | 12 | $client = $db->query('SELECT client From client_antrian'); // execution 13 | while ($cl = $client->fetch_array()) { 14 | //echo 'SELECT max(id) as id FROM data_antrian WHERE counter ='. $cl['client'] .' and status=2 and waktu like "'. $date.'%"'; 15 | 16 | $rst = $db->query('SELECT max(id) as id FROM data_antrian WHERE counter ='. $cl['client'] .' and status=2'); // execution 17 | $row = $rst->fetch_array(); 18 | if ($row['id']==NULL) { 19 | $id=0; 20 | } else { 21 | $id=$row['id']; 22 | } 23 | $data["init_counter"][$cl['client']] = $id; // inisial setiap loket 24 | } 25 | 26 | //2 done 27 | //1 wait 28 | //0 execution 29 | $result_wait = $db->query('SELECT count(*) as count FROM data_antrian WHERE status=1'); // wait 1 30 | $wait = $result_wait->fetch_array(); 31 | $count = $wait['count']; 32 | 33 | if ($count){ 34 | //echo $count; 35 | }else{ 36 | $result = $db->query('SELECT id, counter FROM data_antrian WHERE status=0 ORDER BY waktu ASC LIMIT 1'); // execution 37 | $rows = $result->fetch_array(); 38 | if($rows['id']!=NULL) 39 | { 40 | $data['next'] = $rows['id']; 41 | $data['counter'] = $rows['counter']; 42 | // set wait 43 | $_SESSION["next_server"][$rows['counter']] = $rows['id']; 44 | $_SESSION["counter_server"][$rows['counter']] = $rows['counter']; 45 | $db->query('UPDATE data_antrian SET status= 1 WHERE id='. $rows['id'] .''); // update to wait 1 46 | } 47 | 48 | } 49 | echo json_encode($data); 50 | }else{ 51 | include "mysql_connect.php"; 52 | $data = array(); 53 | $date = date("Y-m-d"); 54 | // Jumlah Loket 55 | $results = $mysqli->query('SELECT count(*) as jumlah_loket FROM client_antrian'); 56 | $loket = $results->fetch_array(); 57 | $data['jumlah_loket'] = $loket['jumlah_loket']; // set jumlah loket 58 | $client = $mysqli->query('SELECT client From client_antrian'); // execution 59 | while ($cl = $client->fetch_array()) { 60 | $rst = $mysqli->query('SELECT max(id) as id FROM data_antrian WHERE counter ='. $cl['client'] .' and status=2'); // execution 61 | $row = $rst->fetch_array(); 62 | if ($row['id']==NULL) { 63 | $id=0; 64 | } else { 65 | $id=$row['id']; 66 | } 67 | $data["init_counter"][$cl['client']] = $id; // inisial setiap loket 68 | } 69 | 70 | //STATUS 71 | //====== 72 | //2 done 73 | //1 wait 74 | //0 execution 75 | $result_wait = $mysqli->query('SELECT count(*) as count FROM data_antrian WHERE status=1'); // wait 1 76 | $wait = $result_wait->fetch_array(); 77 | $count = $wait['count']; 78 | if ($count){ 79 | //echo $count; 80 | }else{ 81 | $result = $mysqli->query('SELECT id, counter FROM data_antrian WHERE status=0 ORDER BY waktu ASC LIMIT 1'); // execution 82 | $rows = $result->fetch_array(); 83 | if($rows['id']!=NULL) 84 | { 85 | $data['next'] = $rows['id']; 86 | $data['counter'] = $rows['counter']; 87 | // set wait 88 | $_SESSION["next_server"][$rows['counter']] = $rows['id']; 89 | $_SESSION["counter_server"][$rows['counter']] = $rows['counter']; 90 | $mysqli->query('UPDATE data_antrian SET status= 1 WHERE id='. $rows['id'] .''); // update to wait 1 91 | } 92 | } 93 | echo json_encode($data); 94 | include 'mysql_close.php'; 95 | } 96 | ?> -------------------------------------------------------------------------------- /apps/mysql_close.php: -------------------------------------------------------------------------------- 1 | close(); -------------------------------------------------------------------------------- /apps/mysql_connect.php: -------------------------------------------------------------------------------- 1 | connect_errno) { 4 | die('Connect Error: ' . $mysqli->connect_errno); 5 | } -------------------------------------------------------------------------------- /apps/set_loket.php: -------------------------------------------------------------------------------- 1 | li > a:hover, 318 | .dropdown-menu > li > a:focus { 319 | background-color: #e8e8e8; 320 | background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); 321 | background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); 322 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); 323 | background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); 324 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); 325 | background-repeat: repeat-x; 326 | } 327 | .dropdown-menu > .active > a, 328 | .dropdown-menu > .active > a:hover, 329 | .dropdown-menu > .active > a:focus { 330 | background-color: #2e6da4; 331 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); 332 | background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); 333 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); 334 | background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); 335 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); 336 | background-repeat: repeat-x; 337 | } 338 | .navbar-default { 339 | background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%); 340 | background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%); 341 | background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8)); 342 | background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%); 343 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); 344 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 345 | background-repeat: repeat-x; 346 | border-radius: 4px; 347 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); 348 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); 349 | } 350 | .navbar-default .navbar-nav > .open > a, 351 | .navbar-default .navbar-nav > .active > a { 352 | background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); 353 | background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); 354 | background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2)); 355 | background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%); 356 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0); 357 | background-repeat: repeat-x; 358 | -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); 359 | box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); 360 | } 361 | .navbar-brand, 362 | .navbar-nav > li > a { 363 | text-shadow: 0 1px 0 rgba(255, 255, 255, .25); 364 | } 365 | .navbar-inverse { 366 | background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%); 367 | background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%); 368 | background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222)); 369 | background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%); 370 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0); 371 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 372 | background-repeat: repeat-x; 373 | border-radius: 4px; 374 | } 375 | .navbar-inverse .navbar-nav > .open > a, 376 | .navbar-inverse .navbar-nav > .active > a { 377 | background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%); 378 | background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%); 379 | background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f)); 380 | background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%); 381 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0); 382 | background-repeat: repeat-x; 383 | -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); 384 | box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); 385 | } 386 | .navbar-inverse .navbar-brand, 387 | .navbar-inverse .navbar-nav > li > a { 388 | text-shadow: 0 -1px 0 rgba(0, 0, 0, .25); 389 | } 390 | .navbar-static-top, 391 | .navbar-fixed-top, 392 | .navbar-fixed-bottom { 393 | border-radius: 0; 394 | } 395 | @media (max-width: 767px) { 396 | .navbar .navbar-nav .open .dropdown-menu > .active > a, 397 | .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, 398 | .navbar .navbar-nav .open .dropdown-menu > .active > a:focus { 399 | color: #fff; 400 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); 401 | background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); 402 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); 403 | background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); 404 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); 405 | background-repeat: repeat-x; 406 | } 407 | } 408 | .alert { 409 | text-shadow: 0 1px 0 rgba(255, 255, 255, .2); 410 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); 411 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); 412 | } 413 | .alert-success { 414 | background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); 415 | background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); 416 | background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc)); 417 | background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); 418 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); 419 | background-repeat: repeat-x; 420 | border-color: #b2dba1; 421 | } 422 | .alert-info { 423 | background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); 424 | background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%); 425 | background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0)); 426 | background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); 427 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); 428 | background-repeat: repeat-x; 429 | border-color: #9acfea; 430 | } 431 | .alert-warning { 432 | background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); 433 | background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); 434 | background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0)); 435 | background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); 436 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); 437 | background-repeat: repeat-x; 438 | border-color: #f5e79e; 439 | } 440 | .alert-danger { 441 | background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); 442 | background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); 443 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3)); 444 | background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); 445 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); 446 | background-repeat: repeat-x; 447 | border-color: #dca7a7; 448 | } 449 | .progress { 450 | background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); 451 | background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); 452 | background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5)); 453 | background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); 454 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); 455 | background-repeat: repeat-x; 456 | } 457 | .progress-bar { 458 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%); 459 | background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%); 460 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090)); 461 | background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%); 462 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0); 463 | background-repeat: repeat-x; 464 | } 465 | .progress-bar-success { 466 | background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); 467 | background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%); 468 | background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44)); 469 | background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); 470 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); 471 | background-repeat: repeat-x; 472 | } 473 | .progress-bar-info { 474 | background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); 475 | background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); 476 | background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5)); 477 | background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); 478 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); 479 | background-repeat: repeat-x; 480 | } 481 | .progress-bar-warning { 482 | background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); 483 | background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); 484 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f)); 485 | background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); 486 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); 487 | background-repeat: repeat-x; 488 | } 489 | .progress-bar-danger { 490 | background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); 491 | background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%); 492 | background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c)); 493 | background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); 494 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); 495 | background-repeat: repeat-x; 496 | } 497 | .progress-bar-striped { 498 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 499 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 500 | background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); 501 | } 502 | .list-group { 503 | border-radius: 4px; 504 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); 505 | box-shadow: 0 1px 2px rgba(0, 0, 0, .075); 506 | } 507 | .list-group-item.active, 508 | .list-group-item.active:hover, 509 | .list-group-item.active:focus { 510 | text-shadow: 0 -1px 0 #286090; 511 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%); 512 | background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%); 513 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a)); 514 | background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%); 515 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0); 516 | background-repeat: repeat-x; 517 | border-color: #2b669a; 518 | } 519 | .list-group-item.active .badge, 520 | .list-group-item.active:hover .badge, 521 | .list-group-item.active:focus .badge { 522 | text-shadow: none; 523 | } 524 | .panel { 525 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05); 526 | box-shadow: 0 1px 2px rgba(0, 0, 0, .05); 527 | } 528 | .panel-default > .panel-heading { 529 | background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); 530 | background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); 531 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); 532 | background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); 533 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); 534 | background-repeat: repeat-x; 535 | } 536 | .panel-primary > .panel-heading { 537 | background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); 538 | background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); 539 | background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); 540 | background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); 541 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); 542 | background-repeat: repeat-x; 543 | } 544 | .panel-success > .panel-heading { 545 | background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); 546 | background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); 547 | background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6)); 548 | background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); 549 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); 550 | background-repeat: repeat-x; 551 | } 552 | .panel-info > .panel-heading { 553 | background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); 554 | background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); 555 | background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3)); 556 | background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); 557 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); 558 | background-repeat: repeat-x; 559 | } 560 | .panel-warning > .panel-heading { 561 | background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); 562 | background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); 563 | background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc)); 564 | background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); 565 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); 566 | background-repeat: repeat-x; 567 | } 568 | .panel-danger > .panel-heading { 569 | background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); 570 | background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%); 571 | background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc)); 572 | background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); 573 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); 574 | background-repeat: repeat-x; 575 | } 576 | .well { 577 | background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); 578 | background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); 579 | background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5)); 580 | background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); 581 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); 582 | background-repeat: repeat-x; 583 | border-color: #dcdcdc; 584 | -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); 585 | box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); 586 | } 587 | /*# sourceMappingURL=bootstrap-theme.css.map */ 588 | -------------------------------------------------------------------------------- /assert/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.6 (http://getbootstrap.com) 3 | * Copyright 2011-2015 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)} 6 | /*# sourceMappingURL=bootstrap-theme.min.css.map */ -------------------------------------------------------------------------------- /assert/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":";;;;AAmBA,YAAA,aAAA,UAAA,aAAA,aAAA,aAME,YAAA,EAAA,KAAA,EAAA,eC2CA,mBAAA,MAAA,EAAA,IAAA,EAAA,sBAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,EAAA,sBAAA,EAAA,IAAA,IAAA,iBDvCR,mBAAA,mBAAA,oBAAA,oBAAA,iBAAA,iBAAA,oBAAA,oBAAA,oBAAA,oBAAA,oBAAA,oBCsCA,mBAAA,MAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,iBDlCR,qBAAA,sBAAA,sBAAA,uBAAA,mBAAA,oBAAA,sBAAA,uBAAA,sBAAA,uBAAA,sBAAA,uBAAA,+BAAA,gCAAA,6BAAA,gCAAA,gCAAA,gCCiCA,mBAAA,KACQ,WAAA,KDlDV,mBAAA,oBAAA,iBAAA,oBAAA,oBAAA,oBAuBI,YAAA,KAyCF,YAAA,YAEE,iBAAA,KAKJ,aErEI,YAAA,EAAA,IAAA,EAAA,KACA,iBAAA,iDACA,iBAAA,4CAAA,iBAAA,qEAEA,iBAAA,+CCnBF,OAAA,+GH4CA,OAAA,0DACA,kBAAA,SAuC2C,aAAA,QAA2B,aAAA,KArCtE,mBAAA,mBAEE,iBAAA,QACA,oBAAA,EAAA,MAGF,oBAAA,oBAEE,iBAAA,QACA,aAAA,QAMA,sBAAA,6BAAA,4BAAA,6BAAA,4BAAA,4BAAA,uBAAA,8BAAA,6BAAA,8BAAA,6BAAA,6BAAA,gCAAA,uCAAA,sCAAA,uCAAA,sCAAA,sCAME,iBAAA,QACA,iBAAA,KAgBN,aEtEI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDAEA,OAAA,+GCnBF,OAAA,0DH4CA,kBAAA,SACA,aAAA,QAEA,mBAAA,mBAEE,iBAAA,QACA,oBAAA,EAAA,MAGF,oBAAA,oBAEE,iBAAA,QACA,aAAA,QAMA,sBAAA,6BAAA,4BAAA,6BAAA,4BAAA,4BAAA,uBAAA,8BAAA,6BAAA,8BAAA,6BAAA,6BAAA,gCAAA,uCAAA,sCAAA,uCAAA,sCAAA,sCAME,iBAAA,QACA,iBAAA,KAiBN,aEvEI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDAEA,OAAA,+GCnBF,OAAA,0DH4CA,kBAAA,SACA,aAAA,QAEA,mBAAA,mBAEE,iBAAA,QACA,oBAAA,EAAA,MAGF,oBAAA,oBAEE,iBAAA,QACA,aAAA,QAMA,sBAAA,6BAAA,4BAAA,6BAAA,4BAAA,4BAAA,uBAAA,8BAAA,6BAAA,8BAAA,6BAAA,6BAAA,gCAAA,uCAAA,sCAAA,uCAAA,sCAAA,sCAME,iBAAA,QACA,iBAAA,KAkBN,UExEI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDAEA,OAAA,+GCnBF,OAAA,0DH4CA,kBAAA,SACA,aAAA,QAEA,gBAAA,gBAEE,iBAAA,QACA,oBAAA,EAAA,MAGF,iBAAA,iBAEE,iBAAA,QACA,aAAA,QAMA,mBAAA,0BAAA,yBAAA,0BAAA,yBAAA,yBAAA,oBAAA,2BAAA,0BAAA,2BAAA,0BAAA,0BAAA,6BAAA,oCAAA,mCAAA,oCAAA,mCAAA,mCAME,iBAAA,QACA,iBAAA,KAmBN,aEzEI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDAEA,OAAA,+GCnBF,OAAA,0DH4CA,kBAAA,SACA,aAAA,QAEA,mBAAA,mBAEE,iBAAA,QACA,oBAAA,EAAA,MAGF,oBAAA,oBAEE,iBAAA,QACA,aAAA,QAMA,sBAAA,6BAAA,4BAAA,6BAAA,4BAAA,4BAAA,uBAAA,8BAAA,6BAAA,8BAAA,6BAAA,6BAAA,gCAAA,uCAAA,sCAAA,uCAAA,sCAAA,sCAME,iBAAA,QACA,iBAAA,KAoBN,YE1EI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDAEA,OAAA,+GCnBF,OAAA,0DH4CA,kBAAA,SACA,aAAA,QAEA,kBAAA,kBAEE,iBAAA,QACA,oBAAA,EAAA,MAGF,mBAAA,mBAEE,iBAAA,QACA,aAAA,QAMA,qBAAA,4BAAA,2BAAA,4BAAA,2BAAA,2BAAA,sBAAA,6BAAA,4BAAA,6BAAA,4BAAA,4BAAA,+BAAA,sCAAA,qCAAA,sCAAA,qCAAA,qCAME,iBAAA,QACA,iBAAA,KA2BN,eAAA,WClCE,mBAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,EAAA,IAAA,IAAA,iBD2CV,0BAAA,0BE3FI,iBAAA,QACA,iBAAA,oDACA,iBAAA,+CAAA,iBAAA,wEACA,iBAAA,kDACA,OAAA,+GF0FF,kBAAA,SAEF,yBAAA,+BAAA,+BEhGI,iBAAA,QACA,iBAAA,oDACA,iBAAA,+CAAA,iBAAA,wEACA,iBAAA,kDACA,OAAA,+GFgGF,kBAAA,SASF,gBE7GI,iBAAA,iDACA,iBAAA,4CACA,iBAAA,qEAAA,iBAAA,+CACA,OAAA,+GACA,OAAA,0DCnBF,kBAAA,SH+HA,cAAA,ICjEA,mBAAA,MAAA,EAAA,IAAA,EAAA,sBAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,EAAA,sBAAA,EAAA,IAAA,IAAA,iBD6DV,sCAAA,oCE7GI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SD2CF,mBAAA,MAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,iBD0EV,cAAA,iBAEE,YAAA,EAAA,IAAA,EAAA,sBAIF,gBEhII,iBAAA,iDACA,iBAAA,4CACA,iBAAA,qEAAA,iBAAA,+CACA,OAAA,+GACA,OAAA,0DCnBF,kBAAA,SHkJA,cAAA,IAHF,sCAAA,oCEhII,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SD2CF,mBAAA,MAAA,EAAA,IAAA,IAAA,gBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,gBDgFV,8BAAA,iCAYI,YAAA,EAAA,KAAA,EAAA,gBAKJ,qBAAA,kBAAA,mBAGE,cAAA,EAqBF,yBAfI,mDAAA,yDAAA,yDAGE,MAAA,KE7JF,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,UFqKJ,OACE,YAAA,EAAA,IAAA,EAAA,qBC3HA,mBAAA,MAAA,EAAA,IAAA,EAAA,sBAAA,EAAA,IAAA,IAAA,gBACQ,WAAA,MAAA,EAAA,IAAA,EAAA,sBAAA,EAAA,IAAA,IAAA,gBDsIV,eEtLI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF8KF,aAAA,QAKF,YEvLI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF8KF,aAAA,QAMF,eExLI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF8KF,aAAA,QAOF,cEzLI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF8KF,aAAA,QAeF,UEjMI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFuMJ,cE3MI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFwMJ,sBE5MI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFyMJ,mBE7MI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF0MJ,sBE9MI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF2MJ,qBE/MI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF+MJ,sBElLI,iBAAA,yKACA,iBAAA,oKACA,iBAAA,iKFyLJ,YACE,cAAA,IC9KA,mBAAA,EAAA,IAAA,IAAA,iBACQ,WAAA,EAAA,IAAA,IAAA,iBDgLV,wBAAA,8BAAA,8BAGE,YAAA,EAAA,KAAA,EAAA,QEnOE,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFiOF,aAAA,QALF,+BAAA,qCAAA,qCAQI,YAAA,KAUJ,OCnME,mBAAA,EAAA,IAAA,IAAA,gBACQ,WAAA,EAAA,IAAA,IAAA,gBD4MV,8BE5PI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFyPJ,8BE7PI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF0PJ,8BE9PI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF2PJ,2BE/PI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF4PJ,8BEhQI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SF6PJ,6BEjQI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFoQJ,MExQI,iBAAA,oDACA,iBAAA,+CACA,iBAAA,wEAAA,iBAAA,kDACA,OAAA,+GACA,kBAAA,SFsQF,aAAA,QC3NA,mBAAA,MAAA,EAAA,IAAA,IAAA,gBAAA,EAAA,IAAA,EAAA,qBACQ,WAAA,MAAA,EAAA,IAAA,IAAA,gBAAA,EAAA,IAAA,EAAA"} -------------------------------------------------------------------------------- /assert/css/jumbotron-narrow-monitoring.css: -------------------------------------------------------------------------------- 1 | /* Space out content a bit */ 2 | body { 3 | /*padding-top: 20px;*/ 4 | padding-bottom: 20px; 5 | } 6 | 7 | /* Everything but the jumbotron gets side spacing for mobile first views */ 8 | .header, 9 | .marketing, 10 | .footer { 11 | padding-right: 15px; 12 | padding-left: 15px; 13 | } 14 | 15 | /* Custom page header */ 16 | .header { 17 | padding-bottom: 20px; 18 | border-bottom: 1px solid #e5e5e5; 19 | } 20 | /* Make the masthead heading the same height as the navigation */ 21 | .header h3 { 22 | margin-top: 0; 23 | margin-bottom: 0; 24 | line-height: 40px; 25 | } 26 | 27 | /* Custom page footer */ 28 | .footer { 29 | /*padding-top: 5px;*/ 30 | color: #777; 31 | /*border-top: 1px solid #e5e5e5;*/ 32 | } 33 | 34 | /* Customize container */ 35 | @media (min-width: @screen-lg-min) { 36 | .container { 37 | max-width: 100%; 38 | } 39 | } 40 | .container-narrow > hr { 41 | margin: 30px 0; 42 | } 43 | 44 | /* Main marketing message and sign up button */ 45 | .jumbotron { 46 | text-align: center; 47 | border-bottom: 1px solid #e5e5e5; 48 | } 49 | .jumbotron .btn { 50 | padding: 14px 24px; 51 | font-size: 30px; 52 | } 53 | .jumbotron h1{ 54 | font-size: 150px; 55 | font-weight: bold; 56 | } 57 | 58 | /* Supporting marketing content */ 59 | .marketing { 60 | margin: 40px 0; 61 | } 62 | .marketing p + h4 { 63 | margin-top: 28px; 64 | } 65 | 66 | /* Responsive: Portrait tablets and up */ 67 | @media screen and (min-width: 768px) { 68 | /* Remove the padding we set earlier */ 69 | .header, 70 | .marketing, 71 | .footer { 72 | padding-right: 0; 73 | padding-left: 0; 74 | } 75 | /* Space out the masthead */ 76 | .header { 77 | margin-bottom: 30px; 78 | } 79 | /* Remove the bottom border on the jumbotron for visual effect */ 80 | .jumbotron { 81 | border-bottom: 0; 82 | } 83 | } 84 | 85 | /* 86 | * description Dashboard 87 | */ 88 | .blog-header { 89 | /*padding-top: 20px;*/ 90 | padding-bottom: 10px; 91 | } 92 | .blog-title { 93 | /*margin-top: 30px;*/ 94 | margin-bottom: 0; 95 | font-size: 60px; 96 | font-weight: normal; 97 | } 98 | .blog-description { 99 | font-size: 20px; 100 | color: #999; 101 | } -------------------------------------------------------------------------------- /assert/css/jumbotron-narrow.css: -------------------------------------------------------------------------------- 1 | /* Space out content a bit */ 2 | body { 3 | padding-top: 20px; 4 | padding-bottom: 20px; 5 | } 6 | 7 | /* Everything but the jumbotron gets side spacing for mobile first views */ 8 | .header, 9 | .marketing, 10 | .footer { 11 | padding-right: 15px; 12 | padding-left: 15px; 13 | } 14 | 15 | /* Custom page header */ 16 | .header { 17 | padding-bottom: 20px; 18 | border-bottom: 1px solid #e5e5e5; 19 | } 20 | /* Make the masthead heading the same height as the navigation */ 21 | .header h3 { 22 | margin-top: 0; 23 | margin-bottom: 0; 24 | line-height: 40px; 25 | } 26 | 27 | /* Custom page footer */ 28 | .footer { 29 | padding-top: 19px; 30 | color: #777; 31 | border-top: 1px solid #e5e5e5; 32 | } 33 | 34 | /* Customize container */ 35 | @media (min-width: 768px) { 36 | .container { 37 | max-width: 730px; 38 | } 39 | } 40 | .container-narrow > hr { 41 | margin: 30px 0; 42 | } 43 | 44 | /* Main marketing message and sign up button */ 45 | .jumbotron { 46 | /*margin-top: 70px;*/ 47 | text-align: center; 48 | border-bottom: 1px solid #000; 49 | } 50 | .jumbotron .btn { 51 | padding: 14px 24px; 52 | font-size: 21px; 53 | } 54 | .jumbotron h1{ 55 | font-size: 200px; 56 | } 57 | 58 | /* Supporting marketing content */ 59 | .marketing { 60 | margin: 40px 0; 61 | } 62 | .marketing p + h4 { 63 | margin-top: 28px; 64 | } 65 | 66 | /* Responsive: Portrait tablets and up */ 67 | @media screen and (min-width: 768px) { 68 | /* Remove the padding we set earlier */ 69 | .header, 70 | .marketing, 71 | .footer { 72 | padding-right: 0; 73 | padding-left: 0; 74 | } 75 | /* Space out the masthead */ 76 | .header { 77 | margin-bottom: 30px; 78 | } 79 | /* Remove the bottom border on the jumbotron for visual effect */ 80 | .jumbotron { 81 | border-bottom: 0; 82 | } 83 | } -------------------------------------------------------------------------------- /assert/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/assert/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assert/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/assert/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assert/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/assert/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assert/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/assert/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assert/img/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/assert/img/admin.png -------------------------------------------------------------------------------- /assert/img/client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/assert/img/client.png -------------------------------------------------------------------------------- /assert/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/assert/img/logo.png -------------------------------------------------------------------------------- /assert/img/monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/assert/img/monitoring.png -------------------------------------------------------------------------------- /assert/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.6 (http://getbootstrap.com) 3 | * Copyright 2011-2015 Twitter, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>2)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.6",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.6",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.6",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.6",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.6",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.6",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.6",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); -------------------------------------------------------------------------------- /assert/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /audio/new/1.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/1.MP3 -------------------------------------------------------------------------------- /audio/new/2.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/2.MP3 -------------------------------------------------------------------------------- /audio/new/3.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/3.MP3 -------------------------------------------------------------------------------- /audio/new/4.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/4.MP3 -------------------------------------------------------------------------------- /audio/new/5.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/5.MP3 -------------------------------------------------------------------------------- /audio/new/6.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/6.MP3 -------------------------------------------------------------------------------- /audio/new/7.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/7.MP3 -------------------------------------------------------------------------------- /audio/new/8.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/8.MP3 -------------------------------------------------------------------------------- /audio/new/9.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/9.MP3 -------------------------------------------------------------------------------- /audio/new/Airport_Bell.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/Airport_Bell.mp3 -------------------------------------------------------------------------------- /audio/new/belas.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/belas.MP3 -------------------------------------------------------------------------------- /audio/new/in.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/in.wav -------------------------------------------------------------------------------- /audio/new/konter.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/konter.MP3 -------------------------------------------------------------------------------- /audio/new/loket.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/loket.MP3 -------------------------------------------------------------------------------- /audio/new/loket.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/loket.wav -------------------------------------------------------------------------------- /audio/new/nomor-urut.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/nomor-urut.MP3 -------------------------------------------------------------------------------- /audio/new/nomor-urut.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/nomor-urut.wav -------------------------------------------------------------------------------- /audio/new/out.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/out.wav -------------------------------------------------------------------------------- /audio/new/puluh.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/puluh.MP3 -------------------------------------------------------------------------------- /audio/new/ratus.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/ratus.MP3 -------------------------------------------------------------------------------- /audio/new/ribu.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/ribu.MP3 -------------------------------------------------------------------------------- /audio/new/sebelas.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/sebelas.MP3 -------------------------------------------------------------------------------- /audio/new/sepuluh.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/sepuluh.MP3 -------------------------------------------------------------------------------- /audio/new/seratus.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/audio/new/seratus.MP3 -------------------------------------------------------------------------------- /client/index.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | Client : Queue 17 | 18 | 19 | 20 | 21 | 22 |
23 | 26 |
27 |

28 | 0 29 |

30 |

31 | 32 | Next   33 | 34 |

35 |
36 |
37 | 38 | 41 |
42 | 45 |
46 |
47 |

© ITERA

48 |
49 |
50 | 51 | 181 | 182 | 183 | -------------------------------------------------------------------------------- /db/antrian.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/db/antrian.db -------------------------------------------------------------------------------- /db/antrian.sql: -------------------------------------------------------------------------------- 1 | -- phpMyAdmin SQL Dump 2 | -- version 4.5.1 3 | -- http://www.phpmyadmin.net 4 | -- 5 | -- Host: 127.0.0.1 6 | -- Generation Time: 25 Mei 2016 pada 03.41 7 | -- Versi Server: 10.1.8-MariaDB 8 | -- PHP Version: 5.6.14 9 | 10 | SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 11 | SET time_zone = "+00:00"; 12 | 13 | 14 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 15 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 16 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 17 | /*!40101 SET NAMES utf8mb4 */; 18 | 19 | -- 20 | -- Database: `antrian` 21 | -- 22 | 23 | -- -------------------------------------------------------- 24 | 25 | -- 26 | -- Struktur dari tabel `client_antrian` 27 | -- 28 | 29 | CREATE TABLE `client_antrian` ( 30 | `id` int(11) NOT NULL, 31 | `client` int(11) NOT NULL 32 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 33 | 34 | -- 35 | -- Dumping data untuk tabel `client_antrian` 36 | -- 37 | 38 | INSERT INTO `client_antrian` (`id`, `client`) VALUES 39 | (11, 1), 40 | (12, 2), 41 | (13, 3), 42 | (14, 4), 43 | (15, 5), 44 | (16, 6), 45 | (17, 7), 46 | (18, 8), 47 | (19, 9), 48 | (20, 10); 49 | 50 | -- -------------------------------------------------------- 51 | 52 | -- 53 | -- Struktur dari tabel `data_antrian` 54 | -- 55 | 56 | CREATE TABLE `data_antrian` ( 57 | `id` int(11) NOT NULL, 58 | `counter` int(11) NOT NULL, 59 | `waktu` text NOT NULL, 60 | `status` int(11) NOT NULL 61 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 62 | 63 | -- 64 | -- Dumping data untuk tabel `data_antrian` 65 | -- 66 | 67 | INSERT INTO `data_antrian` (`id`, `counter`, `waktu`, `status`) VALUES 68 | (1, 3, '2016-05-24 10:44:00', 2), 69 | (2, 8, '2016-05-24 10:43:55', 2), 70 | (3, 8, '2016-05-24 10:44:10', 2), 71 | (4, 3, '2016-05-24 10:44:22', 2), 72 | (5, 2, '2016-05-24 10:44:28', 2), 73 | (6, 9, '2016-05-24 10:44:31', 2), 74 | (7, 10, '2016-05-24 10:44:34', 2), 75 | (8, 4, '2016-05-24 10:44:36', 2), 76 | (9, 3, '2016-05-24 10:44:39', 2), 77 | (10, 1, '2016-05-24 10:44:41', 2), 78 | (11, 1, '2016-05-24 10:44:48', 2), 79 | (12, 1, '2016-05-24 10:44:48', 2), 80 | (13, 1, '2016-05-24 10:44:48', 2), 81 | (14, 1, '2016-05-24 10:44:48', 2), 82 | (15, 1, '2016-05-24 10:44:49', 2), 83 | (16, 2, '2016-05-24 10:45:39', 2), 84 | (17, 1, '2016-05-24 10:46:54', 2), 85 | (18, 10, '2016-05-24 10:49:31', 2), 86 | (19, 10, '2016-05-24 10:49:36', 2), 87 | (20, 10, '2016-05-24 10:49:36', 2), 88 | (21, 10, '2016-05-24 10:49:36', 2), 89 | (22, 10, '2016-05-24 10:49:36', 2), 90 | (23, 10, '2016-05-24 10:49:37', 2), 91 | (24, 10, '2016-05-24 10:49:37', 2), 92 | (25, 10, '2016-05-24 10:49:37', 2), 93 | (26, 10, '2016-05-24 10:49:37', 2), 94 | (27, 10, '2016-05-24 10:49:37', 2), 95 | (28, 10, '2016-05-24 10:49:38', 2), 96 | (29, 10, '2016-05-24 10:49:38', 2), 97 | (30, 10, '2016-05-24 10:49:38', 2), 98 | (31, 10, '2016-05-24 10:49:38', 2), 99 | (32, 10, '2016-05-24 10:49:38', 2), 100 | (33, 10, '2016-05-24 10:49:39', 2), 101 | (34, 10, '2016-05-24 10:49:39', 2), 102 | (35, 10, '2016-05-24 10:49:39', 2), 103 | (36, 10, '2016-05-24 10:49:39', 2), 104 | (37, 10, '2016-05-24 10:49:39', 2), 105 | (38, 10, '2016-05-24 10:49:39', 2), 106 | (39, 10, '2016-05-24 10:49:39', 2), 107 | (40, 10, '2016-05-24 10:49:40', 2), 108 | (41, 10, '2016-05-24 10:49:40', 2), 109 | (42, 10, '2016-05-24 10:49:40', 2), 110 | (43, 2, '2016-05-24 10:49:40', 2), 111 | (44, 10, '2016-05-24 10:49:40', 2), 112 | (45, 10, '2016-05-24 10:49:40', 2), 113 | (46, 10, '2016-05-24 10:49:40', 2), 114 | (47, 10, '2016-05-24 10:49:41', 2), 115 | (48, 10, '2016-05-24 10:49:41', 2), 116 | (49, 10, '2016-05-24 10:49:41', 2), 117 | (50, 10, '2016-05-24 10:49:41', 2), 118 | (51, 10, '2016-05-24 10:49:41', 2), 119 | (52, 10, '2016-05-24 10:49:42', 2), 120 | (53, 10, '2016-05-24 10:49:42', 2), 121 | (54, 10, '2016-05-24 10:49:42', 2), 122 | (55, 10, '2016-05-24 10:49:42', 2), 123 | (56, 10, '2016-05-24 10:49:42', 2), 124 | (57, 10, '2016-05-24 10:49:43', 2), 125 | (58, 10, '2016-05-24 10:49:43', 2), 126 | (59, 10, '2016-05-24 10:49:43', 2), 127 | (60, 10, '2016-05-24 10:49:43', 2), 128 | (61, 10, '2016-05-24 10:49:43', 2), 129 | (62, 10, '2016-05-24 10:49:44', 2), 130 | (63, 10, '2016-05-24 10:49:44', 2), 131 | (64, 10, '2016-05-24 10:49:44', 2), 132 | (65, 10, '2016-05-24 10:49:44', 2), 133 | (66, 10, '2016-05-24 10:49:44', 2), 134 | (67, 10, '2016-05-24 10:49:44', 2), 135 | (68, 10, '2016-05-24 10:49:45', 2), 136 | (69, 10, '2016-05-24 10:49:45', 2), 137 | (70, 10, '2016-05-24 10:49:45', 2), 138 | (71, 10, '2016-05-24 10:49:45', 2), 139 | (72, 10, '2016-05-24 10:49:45', 2), 140 | (73, 10, '2016-05-24 10:49:46', 2), 141 | (74, 10, '2016-05-24 10:49:46', 2), 142 | (75, 10, '2016-05-24 10:49:46', 2), 143 | (76, 10, '2016-05-24 10:49:46', 2), 144 | (77, 10, '2016-05-24 10:49:46', 2), 145 | (78, 10, '2016-05-24 10:49:46', 2), 146 | (79, 10, '2016-05-24 10:49:47', 2), 147 | (80, 10, '2016-05-24 10:49:47', 2), 148 | (81, 10, '2016-05-24 10:49:47', 2), 149 | (82, 10, '2016-05-24 10:49:47', 2), 150 | (83, 10, '2016-05-24 10:49:47', 2), 151 | (84, 10, '2016-05-24 10:49:48', 2), 152 | (85, 10, '2016-05-24 10:49:48', 2), 153 | (86, 10, '2016-05-24 10:49:48', 2), 154 | (87, 10, '2016-05-24 10:49:48', 2), 155 | (88, 10, '2016-05-24 10:49:49', 2), 156 | (89, 10, '2016-05-24 10:49:49', 2), 157 | (90, 10, '2016-05-24 10:49:49', 2), 158 | (91, 10, '2016-05-24 10:49:49', 2), 159 | (92, 10, '2016-05-24 10:49:50', 2), 160 | (93, 10, '2016-05-24 10:49:50', 2), 161 | (94, 10, '2016-05-24 10:49:50', 2), 162 | (95, 10, '2016-05-24 10:49:50', 2), 163 | (96, 10, '2016-05-24 10:49:50', 2), 164 | (97, 10, '2016-05-24 10:49:51', 2), 165 | (98, 10, '2016-05-24 10:49:51', 2), 166 | (99, 10, '2016-05-24 10:49:51', 2), 167 | (100, 7, '2016-05-24 10:58:27', 2), 168 | (101, 7, '2016-05-24 10:58:29', 2), 169 | (102, 3, '2016-05-24 10:58:33', 2), 170 | (103, 3, '2016-05-24 11:06:32', 2), 171 | (104, 6, '2016-05-24 11:06:34', 2), 172 | (105, 1, '2016-05-24 11:06:37', 2), 173 | (106, 10, '2016-05-24 11:07:50', 2), 174 | (107, 10, '2016-05-24 11:07:50', 2), 175 | (108, 10, '2016-05-24 11:07:50', 2), 176 | (109, 10, '2016-05-24 11:07:50', 2), 177 | (110, 10, '2016-05-24 11:07:50', 2), 178 | (111, 10, '2016-05-24 11:07:51', 2), 179 | (112, 10, '2016-05-24 11:07:51', 2), 180 | (113, 10, '2016-05-24 11:07:51', 2), 181 | (114, 10, '2016-05-24 11:07:51', 2), 182 | (115, 10, '2016-05-24 11:07:51', 2), 183 | (116, 10, '2016-05-24 11:07:51', 2), 184 | (117, 10, '2016-05-24 11:07:52', 2), 185 | (118, 10, '2016-05-24 11:07:52', 2), 186 | (119, 10, '2016-05-24 11:07:52', 2), 187 | (120, 10, '2016-05-24 11:07:52', 2), 188 | (121, 10, '2016-05-24 11:07:52', 2), 189 | (122, 10, '2016-05-24 11:07:52', 2), 190 | (123, 10, '2016-05-24 11:07:53', 2), 191 | (124, 10, '2016-05-24 11:07:53', 2), 192 | (125, 10, '2016-05-24 11:07:53', 2), 193 | (126, 10, '2016-05-24 11:07:53', 2), 194 | (127, 10, '2016-05-24 11:07:53', 2), 195 | (128, 10, '2016-05-24 11:07:54', 2), 196 | (129, 10, '2016-05-24 11:07:54', 2), 197 | (130, 10, '2016-05-24 11:07:54', 2), 198 | (131, 8, '2016-05-24 11:12:30', 2), 199 | (132, 8, '2016-05-24 11:13:11', 2), 200 | (133, 4, '2016-05-24 11:13:30', 2), 201 | (134, 8, '2016-05-24 11:14:31', 2), 202 | (135, 8, '2016-05-24 11:14:38', 2), 203 | (136, 8, '2016-05-24 11:14:39', 2), 204 | (137, 8, '2016-05-24 11:14:39', 2), 205 | (138, 8, '2016-05-24 11:14:39', 2), 206 | (139, 8, '2016-05-24 11:14:39', 2), 207 | (140, 8, '2016-05-24 11:14:40', 2), 208 | (141, 8, '2016-05-24 11:14:40', 2), 209 | (142, 8, '2016-05-24 11:14:40', 2), 210 | (143, 8, '2016-05-24 11:14:41', 2), 211 | (144, 8, '2016-05-24 11:14:41', 2), 212 | (145, 8, '2016-05-24 11:14:41', 2), 213 | (146, 8, '2016-05-24 11:14:42', 2), 214 | (147, 8, '2016-05-24 11:14:42', 2), 215 | (148, 8, '2016-05-24 11:14:42', 2), 216 | (149, 8, '2016-05-24 11:14:43', 2), 217 | (150, 8, '2016-05-24 11:14:43', 2), 218 | (151, 8, '2016-05-24 11:22:15', 2), 219 | (152, 10, '2016-05-24 11:20:50', 2), 220 | (153, 10, '2016-05-24 11:20:50', 2), 221 | (154, 10, '2016-05-24 11:20:51', 2), 222 | (155, 10, '2016-05-24 11:20:51', 2), 223 | (156, 10, '2016-05-24 11:20:51', 2), 224 | (157, 10, '2016-05-24 11:20:51', 2), 225 | (158, 10, '2016-05-24 11:20:51', 2), 226 | (159, 10, '2016-05-24 11:20:51', 2), 227 | (160, 10, '2016-05-24 11:20:52', 2), 228 | (161, 10, '2016-05-24 11:20:52', 2), 229 | (162, 10, '2016-05-24 11:20:52', 2), 230 | (163, 10, '2016-05-24 11:20:52', 2), 231 | (164, 10, '2016-05-24 11:20:52', 2), 232 | (165, 10, '2016-05-24 11:20:52', 2), 233 | (166, 10, '2016-05-24 11:20:53', 2), 234 | (167, 10, '2016-05-24 11:20:53', 2), 235 | (168, 10, '2016-05-24 11:20:53', 2), 236 | (169, 10, '2016-05-24 11:20:53', 2), 237 | (170, 10, '2016-05-24 11:20:53', 2), 238 | (171, 10, '2016-05-24 11:20:53', 2), 239 | (172, 10, '2016-05-24 11:20:54', 2), 240 | (173, 10, '2016-05-24 11:20:54', 2), 241 | (174, 10, '2016-05-24 11:20:54', 2), 242 | (175, 10, '2016-05-24 11:20:54', 2), 243 | (176, 10, '2016-05-24 11:20:54', 2), 244 | (177, 10, '2016-05-24 11:20:55', 2), 245 | (178, 10, '2016-05-24 11:20:55', 2), 246 | (179, 10, '2016-05-24 11:20:55', 2), 247 | (180, 10, '2016-05-24 11:20:55', 2), 248 | (181, 10, '2016-05-24 11:20:55', 2), 249 | (182, 10, '2016-05-24 11:20:55', 2), 250 | (183, 10, '2016-05-24 11:20:56', 2), 251 | (184, 10, '2016-05-24 11:20:56', 2), 252 | (185, 10, '2016-05-24 11:20:56', 2), 253 | (186, 10, '2016-05-24 11:20:56', 2), 254 | (187, 10, '2016-05-24 11:20:56', 2), 255 | (188, 10, '2016-05-24 11:20:57', 2), 256 | (189, 10, '2016-05-24 11:20:57', 2), 257 | (190, 10, '2016-05-24 11:20:57', 2), 258 | (191, 10, '2016-05-24 11:20:57', 2), 259 | (192, 10, '2016-05-24 11:20:57', 2), 260 | (193, 10, '2016-05-24 11:20:57', 2), 261 | (194, 10, '2016-05-24 11:20:58', 2), 262 | (195, 10, '2016-05-24 11:20:58', 2), 263 | (196, 10, '2016-05-24 11:20:58', 2), 264 | (197, 10, '2016-05-24 11:20:58', 2), 265 | (198, 10, '2016-05-24 11:20:58', 2), 266 | (199, 10, '2016-05-24 11:20:59', 2), 267 | (200, 10, '2016-05-24 11:20:59', 2), 268 | (201, 10, '2016-05-24 11:20:59', 2), 269 | (202, 10, '2016-05-24 11:20:59', 2), 270 | (203, 8, '2016-05-24 11:22:19', 2), 271 | (204, 8, '2016-05-24 11:26:30', 2), 272 | (205, 8, '2016-05-24 11:33:49', 2), 273 | (206, 10, '2016-05-24 11:33:52', 2), 274 | (207, 10, '2016-05-24 11:33:52', 2), 275 | (208, 10, '2016-05-24 11:33:52', 2), 276 | (209, 10, '2016-05-24 11:33:52', 2), 277 | (210, 10, '2016-05-24 11:33:52', 2), 278 | (211, 10, '2016-05-24 11:33:52', 2), 279 | (212, 10, '2016-05-24 11:33:53', 2), 280 | (213, 10, '2016-05-24 11:33:53', 2), 281 | (214, 10, '2016-05-24 11:33:53', 2), 282 | (215, 10, '2016-05-24 11:33:53', 2), 283 | (216, 10, '2016-05-24 11:33:53', 2), 284 | (217, 10, '2016-05-24 11:33:53', 2), 285 | (218, 10, '2016-05-24 11:33:54', 2), 286 | (219, 10, '2016-05-24 11:33:54', 2), 287 | (220, 10, '2016-05-24 11:33:54', 2), 288 | (221, 10, '2016-05-24 11:33:54', 2), 289 | (222, 10, '2016-05-24 11:33:54', 2), 290 | (223, 10, '2016-05-24 11:33:54', 2), 291 | (224, 10, '2016-05-24 11:33:55', 2), 292 | (225, 10, '2016-05-24 11:33:55', 2), 293 | (226, 10, '2016-05-24 11:33:55', 2), 294 | (227, 10, '2016-05-24 11:33:55', 2), 295 | (228, 10, '2016-05-24 11:33:55', 2), 296 | (229, 10, '2016-05-24 11:33:56', 2), 297 | (230, 10, '2016-05-24 11:33:56', 2), 298 | (231, 10, '2016-05-24 11:33:56', 2), 299 | (232, 10, '2016-05-24 11:33:56', 2), 300 | (233, 10, '2016-05-24 11:33:56', 2), 301 | (234, 10, '2016-05-24 11:33:56', 2), 302 | (235, 10, '2016-05-24 11:33:57', 2), 303 | (236, 10, '2016-05-24 11:33:57', 2), 304 | (237, 10, '2016-05-24 11:33:57', 2), 305 | (238, 10, '2016-05-24 11:33:57', 2), 306 | (239, 10, '2016-05-24 11:33:57', 2), 307 | (240, 10, '2016-05-24 11:33:58', 2), 308 | (241, 10, '2016-05-24 11:33:58', 2), 309 | (242, 10, '2016-05-24 11:33:58', 2), 310 | (243, 10, '2016-05-24 11:33:58', 2), 311 | (244, 10, '2016-05-24 11:33:58', 2), 312 | (245, 10, '2016-05-24 11:33:59', 2), 313 | (246, 10, '2016-05-24 11:33:59', 2), 314 | (247, 10, '2016-05-24 11:33:59', 2), 315 | (248, 10, '2016-05-24 11:33:59', 2), 316 | (249, 10, '2016-05-24 11:33:59', 2), 317 | (250, 10, '2016-05-24 11:34:00', 2), 318 | (251, 4, '2016-05-24 11:54:32', 2), 319 | (252, 4, '2016-05-24 11:54:43', 2), 320 | (253, 4, '2016-05-24 11:54:44', 2), 321 | (254, 4, '2016-05-24 11:54:44', 2), 322 | (255, 4, '2016-05-24 11:54:44', 2), 323 | (256, 4, '2016-05-24 11:54:44', 2), 324 | (257, 4, '2016-05-24 11:54:44', 2), 325 | (258, 4, '2016-05-24 11:54:44', 2), 326 | (259, 4, '2016-05-24 11:54:45', 2), 327 | (260, 4, '2016-05-24 11:54:45', 2), 328 | (261, 4, '2016-05-24 11:54:45', 2), 329 | (262, 4, '2016-05-24 11:54:45', 2), 330 | (263, 4, '2016-05-24 11:54:45', 2), 331 | (264, 4, '2016-05-24 11:54:45', 2), 332 | (265, 4, '2016-05-24 11:54:46', 2), 333 | (266, 4, '2016-05-24 11:54:46', 2), 334 | (267, 4, '2016-05-24 11:54:46', 2), 335 | (268, 4, '2016-05-24 11:54:46', 2), 336 | (269, 4, '2016-05-24 11:54:46', 2), 337 | (270, 4, '2016-05-24 11:54:46', 2), 338 | (271, 4, '2016-05-24 11:54:47', 2), 339 | (272, 4, '2016-05-24 11:54:47', 2), 340 | (273, 4, '2016-05-24 11:54:47', 2), 341 | (274, 4, '2016-05-24 11:54:47', 2), 342 | (275, 4, '2016-05-24 11:54:47', 2), 343 | (276, 4, '2016-05-24 11:54:48', 2), 344 | (277, 4, '2016-05-24 11:54:48', 2), 345 | (278, 4, '2016-05-24 11:54:48', 2), 346 | (279, 4, '2016-05-24 11:54:48', 2), 347 | (280, 4, '2016-05-24 11:54:48', 2), 348 | (281, 4, '2016-05-24 11:54:49', 2), 349 | (282, 4, '2016-05-24 11:54:49', 2), 350 | (283, 4, '2016-05-24 11:54:49', 2), 351 | (284, 4, '2016-05-24 11:54:49', 2), 352 | (285, 4, '2016-05-24 11:54:49', 2), 353 | (286, 4, '2016-05-24 11:54:49', 2), 354 | (287, 4, '2016-05-24 11:54:50', 2), 355 | (288, 4, '2016-05-24 11:54:50', 2), 356 | (289, 4, '2016-05-24 11:54:50', 2), 357 | (290, 4, '2016-05-24 11:54:50', 2), 358 | (291, 4, '2016-05-24 11:54:50', 2), 359 | (292, 4, '2016-05-24 11:54:51', 2), 360 | (293, 4, '2016-05-24 11:54:51', 2), 361 | (294, 4, '2016-05-24 11:54:51', 2), 362 | (295, 4, '2016-05-24 11:54:51', 2), 363 | (296, 4, '2016-05-24 11:54:51', 2), 364 | (297, 4, '2016-05-24 11:54:51', 2), 365 | (298, 4, '2016-05-24 11:54:52', 2), 366 | (299, 4, '2016-05-24 11:54:52', 2), 367 | (300, 4, '2016-05-24 11:54:52', 2), 368 | (301, 4, '2016-05-24 11:54:52', 2), 369 | (302, 4, '2016-05-24 11:54:52', 2), 370 | (303, 4, '2016-05-24 11:54:53', 2), 371 | (304, 4, '2016-05-24 11:54:53', 2), 372 | (305, 4, '2016-05-24 11:54:53', 2), 373 | (306, 4, '2016-05-24 11:54:53', 2), 374 | (307, 4, '2016-05-24 11:54:53', 2), 375 | (308, 4, '2016-05-24 11:54:54', 2), 376 | (309, 4, '2016-05-24 11:54:54', 2), 377 | (310, 4, '2016-05-24 11:54:54', 2), 378 | (311, 4, '2016-05-24 11:54:54', 2), 379 | (312, 4, '2016-05-24 11:54:54', 2), 380 | (313, 4, '2016-05-24 11:54:54', 2), 381 | (314, 4, '2016-05-24 11:54:55', 2), 382 | (315, 4, '2016-05-24 11:54:55', 2), 383 | (316, 4, '2016-05-24 11:54:55', 2), 384 | (317, 4, '2016-05-24 11:54:55', 2), 385 | (318, 4, '2016-05-24 11:54:55', 2), 386 | (319, 4, '2016-05-24 11:54:56', 2), 387 | (320, 4, '2016-05-24 11:54:56', 2), 388 | (321, 4, '2016-05-24 11:54:56', 2), 389 | (322, 4, '2016-05-24 11:54:56', 2), 390 | (323, 4, '2016-05-24 11:54:56', 2), 391 | (324, 4, '2016-05-24 11:54:56', 2), 392 | (325, 4, '2016-05-24 11:54:57', 2), 393 | (326, 4, '2016-05-24 11:54:57', 2), 394 | (327, 4, '2016-05-24 11:54:57', 2), 395 | (328, 4, '2016-05-24 11:54:57', 2), 396 | (329, 4, '2016-05-24 11:54:57', 2), 397 | (330, 4, '2016-05-24 11:54:58', 2), 398 | (331, 4, '2016-05-24 11:54:58', 2), 399 | (332, 4, '2016-05-24 11:54:58', 2), 400 | (333, 4, '2016-05-24 11:54:58', 2), 401 | (334, 4, '2016-05-24 11:54:58', 2), 402 | (335, 4, '2016-05-24 11:54:59', 2), 403 | (336, 4, '2016-05-24 11:54:59', 2), 404 | (337, 4, '2016-05-24 11:54:59', 2), 405 | (338, 4, '2016-05-24 11:54:59', 2), 406 | (339, 4, '2016-05-24 11:54:59', 2), 407 | (340, 4, '2016-05-24 11:54:59', 2), 408 | (341, 4, '2016-05-24 11:55:00', 2), 409 | (342, 4, '2016-05-24 11:55:00', 2), 410 | (343, 4, '2016-05-24 11:55:00', 2), 411 | (344, 4, '2016-05-24 11:55:00', 2), 412 | (345, 4, '2016-05-24 11:55:00', 2), 413 | (346, 4, '2016-05-24 11:55:01', 2), 414 | (347, 4, '2016-05-24 11:55:01', 2), 415 | (348, 4, '2016-05-24 11:55:01', 2), 416 | (349, 4, '2016-05-24 11:55:01', 2), 417 | (350, 4, '2016-05-24 11:55:01', 2), 418 | (351, 4, '2016-05-24 11:55:02', 2), 419 | (352, 4, '2016-05-24 11:55:02', 2), 420 | (353, 4, '2016-05-24 11:55:02', 2), 421 | (354, 4, '2016-05-24 11:55:02', 2), 422 | (355, 4, '2016-05-24 11:55:02', 2), 423 | (356, 4, '2016-05-24 11:55:02', 2), 424 | (357, 4, '2016-05-24 11:55:03', 2), 425 | (358, 4, '2016-05-24 11:55:05', 2), 426 | (359, 4, '2016-05-24 11:55:05', 2), 427 | (360, 4, '2016-05-24 11:55:05', 2), 428 | (361, 4, '2016-05-24 11:55:05', 2), 429 | (362, 4, '2016-05-24 11:55:05', 2), 430 | (363, 4, '2016-05-24 11:55:05', 2), 431 | (364, 4, '2016-05-24 11:55:05', 2), 432 | (365, 4, '2016-05-24 11:55:05', 2), 433 | (366, 4, '2016-05-24 11:55:05', 2), 434 | (367, 4, '2016-05-24 11:55:05', 2), 435 | (368, 4, '2016-05-24 11:55:05', 2), 436 | (369, 4, '2016-05-24 11:55:05', 2), 437 | (370, 4, '2016-05-24 11:55:05', 2), 438 | (371, 4, '2016-05-24 11:55:06', 2), 439 | (372, 4, '2016-05-24 11:55:06', 2), 440 | (373, 4, '2016-05-24 11:55:06', 2), 441 | (374, 4, '2016-05-24 11:55:06', 2), 442 | (375, 4, '2016-05-24 11:55:06', 2), 443 | (376, 4, '2016-05-24 11:55:07', 2), 444 | (377, 4, '2016-05-24 11:55:07', 2), 445 | (378, 4, '2016-05-24 11:55:07', 2), 446 | (379, 4, '2016-05-24 11:55:07', 2), 447 | (380, 4, '2016-05-24 11:55:07', 2), 448 | (381, 4, '2016-05-24 11:55:08', 2), 449 | (382, 4, '2016-05-24 11:55:08', 2), 450 | (383, 4, '2016-05-24 11:55:08', 2), 451 | (384, 4, '2016-05-24 11:55:08', 2), 452 | (385, 4, '2016-05-24 11:55:08', 2), 453 | (386, 4, '2016-05-24 11:55:09', 2), 454 | (387, 4, '2016-05-24 11:55:09', 2), 455 | (388, 4, '2016-05-24 11:55:09', 2), 456 | (389, 4, '2016-05-24 11:55:09', 2), 457 | (390, 4, '2016-05-24 11:55:09', 2), 458 | (391, 4, '2016-05-24 11:55:10', 2), 459 | (392, 4, '2016-05-24 11:55:10', 2), 460 | (393, 4, '2016-05-24 11:55:10', 2), 461 | (394, 4, '2016-05-24 11:55:10', 2), 462 | (395, 4, '2016-05-24 11:55:10', 2), 463 | (396, 4, '2016-05-24 11:55:11', 2), 464 | (397, 4, '2016-05-24 11:55:11', 2), 465 | (398, 4, '2016-05-24 11:55:11', 2), 466 | (399, 4, '2016-05-24 11:55:11', 2), 467 | (400, 4, '2016-05-24 11:55:12', 2), 468 | (401, 4, '2016-05-24 11:55:12', 2), 469 | (402, 4, '2016-05-24 11:55:12', 2), 470 | (403, 4, '2016-05-24 11:55:12', 2), 471 | (404, 4, '2016-05-24 11:55:12', 2), 472 | (405, 4, '2016-05-24 11:55:13', 2), 473 | (406, 4, '2016-05-24 11:55:13', 2), 474 | (407, 4, '2016-05-24 11:55:13', 2), 475 | (408, 4, '2016-05-24 11:55:13', 2), 476 | (409, 4, '2016-05-24 11:55:13', 2), 477 | (410, 4, '2016-05-24 11:55:14', 2), 478 | (411, 4, '2016-05-24 11:55:14', 2), 479 | (412, 4, '2016-05-24 11:55:14', 2), 480 | (413, 4, '2016-05-24 11:55:14', 2), 481 | (414, 4, '2016-05-24 11:55:14', 2), 482 | (415, 4, '2016-05-24 11:55:15', 2), 483 | (416, 4, '2016-05-24 11:55:15', 2), 484 | (417, 4, '2016-05-24 11:55:15', 2), 485 | (418, 4, '2016-05-24 11:55:15', 2), 486 | (419, 4, '2016-05-24 11:55:15', 2), 487 | (420, 4, '2016-05-24 11:55:16', 2), 488 | (421, 4, '2016-05-24 11:55:16', 2), 489 | (422, 4, '2016-05-24 11:55:16', 2), 490 | (423, 4, '2016-05-24 11:55:16', 2), 491 | (424, 4, '2016-05-24 11:55:16', 2), 492 | (425, 4, '2016-05-24 11:55:17', 2), 493 | (426, 4, '2016-05-24 11:55:17', 2), 494 | (427, 4, '2016-05-24 11:55:17', 2), 495 | (428, 4, '2016-05-24 11:55:17', 2), 496 | (429, 4, '2016-05-24 11:55:17', 2), 497 | (430, 4, '2016-05-24 11:55:18', 2), 498 | (431, 4, '2016-05-24 11:55:18', 2), 499 | (432, 4, '2016-05-24 11:55:18', 2), 500 | (433, 4, '2016-05-24 11:55:18', 2), 501 | (434, 4, '2016-05-24 11:55:18', 2), 502 | (435, 4, '2016-05-24 11:55:19', 2), 503 | (436, 4, '2016-05-24 11:55:19', 2), 504 | (437, 4, '2016-05-24 11:55:19', 2), 505 | (438, 4, '2016-05-24 11:55:19', 2), 506 | (439, 4, '2016-05-24 11:55:19', 2), 507 | (440, 4, '2016-05-24 11:55:20', 2), 508 | (441, 4, '2016-05-24 11:55:20', 2), 509 | (442, 4, '2016-05-24 11:55:20', 2), 510 | (443, 4, '2016-05-24 11:55:20', 2), 511 | (444, 4, '2016-05-24 11:55:20', 2), 512 | (445, 4, '2016-05-24 11:55:21', 2), 513 | (446, 4, '2016-05-24 11:55:21', 2), 514 | (447, 4, '2016-05-24 11:55:21', 2), 515 | (448, 4, '2016-05-24 11:55:21', 2), 516 | (449, 4, '2016-05-24 11:55:21', 2), 517 | (450, 4, '2016-05-24 11:55:22', 2), 518 | (451, 4, '2016-05-24 11:55:22', 2), 519 | (452, 4, '2016-05-24 11:55:22', 2), 520 | (453, 4, '2016-05-24 11:55:22', 2), 521 | (454, 4, '2016-05-24 11:55:22', 2), 522 | (455, 4, '2016-05-24 11:55:23', 2), 523 | (456, 4, '2016-05-24 11:55:23', 2), 524 | (457, 4, '2016-05-24 11:55:23', 2), 525 | (458, 4, '2016-05-24 11:55:23', 2), 526 | (459, 4, '2016-05-24 11:55:23', 2), 527 | (460, 4, '2016-05-24 11:55:24', 2), 528 | (461, 4, '2016-05-24 11:55:24', 2), 529 | (462, 4, '2016-05-24 11:55:24', 2), 530 | (463, 4, '2016-05-24 11:55:24', 2), 531 | (464, 4, '2016-05-24 11:55:24', 2), 532 | (465, 4, '2016-05-24 11:55:25', 2), 533 | (466, 4, '2016-05-24 11:55:25', 2), 534 | (467, 4, '2016-05-24 11:55:25', 2), 535 | (468, 4, '2016-05-24 11:55:25', 2), 536 | (469, 4, '2016-05-24 11:55:26', 2), 537 | (470, 4, '2016-05-24 11:55:26', 2), 538 | (471, 4, '2016-05-24 11:55:26', 2), 539 | (472, 4, '2016-05-24 11:55:26', 2), 540 | (473, 4, '2016-05-24 11:55:26', 2), 541 | (474, 4, '2016-05-24 11:55:27', 2), 542 | (475, 4, '2016-05-24 11:55:27', 2), 543 | (476, 4, '2016-05-24 11:55:27', 2), 544 | (477, 4, '2016-05-24 11:55:27', 2), 545 | (478, 4, '2016-05-24 11:55:27', 2), 546 | (479, 4, '2016-05-24 11:55:28', 2), 547 | (480, 4, '2016-05-24 11:55:28', 2), 548 | (481, 4, '2016-05-24 11:55:28', 2), 549 | (482, 4, '2016-05-24 11:55:28', 2), 550 | (483, 4, '2016-05-24 11:55:28', 2), 551 | (484, 4, '2016-05-24 11:55:29', 2), 552 | (485, 4, '2016-05-24 11:55:29', 2), 553 | (486, 4, '2016-05-24 11:55:29', 2), 554 | (487, 4, '2016-05-24 11:55:29', 2), 555 | (488, 4, '2016-05-24 11:55:29', 2), 556 | (489, 4, '2016-05-24 11:55:30', 2), 557 | (490, 4, '2016-05-24 11:55:30', 2), 558 | (491, 4, '2016-05-24 11:55:30', 2), 559 | (492, 4, '2016-05-24 11:55:30', 2), 560 | (493, 4, '2016-05-24 11:55:30', 2), 561 | (494, 4, '2016-05-24 11:55:31', 2), 562 | (495, 4, '2016-05-24 11:55:31', 2), 563 | (496, 4, '2016-05-24 11:55:31', 2), 564 | (497, 4, '2016-05-24 11:55:32', 2), 565 | (498, 4, '2016-05-24 11:55:32', 2), 566 | (499, 4, '2016-05-24 11:55:32', 2), 567 | (500, 4, '2016-05-24 11:55:32', 2), 568 | (501, 4, '2016-05-24 11:55:32', 2), 569 | (502, 10, '2016-05-24 12:51:55', 2), 570 | (503, 10, '2016-05-24 12:51:55', 2), 571 | (504, 10, '2016-05-24 12:51:56', 2), 572 | (505, 10, '2016-05-24 12:51:56', 2), 573 | (506, 10, '2016-05-24 12:51:56', 2), 574 | (507, 10, '2016-05-24 12:51:56', 2), 575 | (508, 10, '2016-05-24 12:51:56', 2), 576 | (509, 10, '2016-05-24 12:51:56', 2), 577 | (510, 10, '2016-05-24 12:51:57', 2), 578 | (511, 10, '2016-05-24 12:51:57', 2), 579 | (512, 10, '2016-05-24 12:51:57', 2), 580 | (513, 10, '2016-05-24 12:51:57', 2), 581 | (514, 10, '2016-05-24 12:51:57', 2), 582 | (515, 10, '2016-05-24 12:51:57', 2), 583 | (516, 10, '2016-05-24 12:51:58', 2), 584 | (517, 3, '2016-05-24 12:52:00', 2), 585 | (518, 3, '2016-05-24 12:52:00', 2), 586 | (519, 3, '2016-05-24 12:52:00', 2), 587 | (520, 3, '2016-05-24 12:52:00', 2), 588 | (521, 3, '2016-05-24 12:52:00', 2), 589 | (522, 3, '2016-05-24 12:52:01', 2), 590 | (523, 3, '2016-05-24 12:52:01', 2), 591 | (524, 3, '2016-05-24 12:52:01', 2), 592 | (525, 3, '2016-05-24 12:52:01', 2), 593 | (526, 3, '2016-05-24 12:52:01', 2), 594 | (527, 3, '2016-05-24 12:52:02', 2), 595 | (528, 3, '2016-05-24 12:52:02', 2), 596 | (529, 3, '2016-05-24 12:52:02', 2), 597 | (530, 3, '2016-05-24 12:52:02', 2), 598 | (531, 3, '2016-05-24 12:52:02', 2), 599 | (532, 3, '2016-05-24 12:52:02', 2), 600 | (533, 3, '2016-05-24 12:52:03', 2), 601 | (534, 3, '2016-05-24 12:52:03', 2), 602 | (535, 3, '2016-05-24 12:52:03', 2), 603 | (536, 3, '2016-05-24 12:52:03', 2), 604 | (537, 3, '2016-05-24 12:52:03', 2), 605 | (538, 3, '2016-05-24 12:52:04', 2), 606 | (539, 3, '2016-05-24 12:52:04', 2), 607 | (540, 3, '2016-05-24 12:52:04', 2), 608 | (541, 5, '2016-05-24 12:52:07', 2), 609 | (542, 5, '2016-05-24 12:52:07', 2), 610 | (543, 5, '2016-05-24 12:52:07', 2), 611 | (544, 5, '2016-05-24 12:52:07', 2), 612 | (545, 5, '2016-05-24 12:52:07', 2), 613 | (546, 5, '2016-05-24 12:52:08', 2), 614 | (547, 5, '2016-05-24 12:52:08', 2), 615 | (548, 5, '2016-05-24 12:52:08', 2), 616 | (549, 5, '2016-05-24 12:52:08', 2), 617 | (550, 5, '2016-05-24 12:52:08', 2), 618 | (551, 5, '2016-05-24 12:52:08', 2), 619 | (552, 5, '2016-05-24 12:52:09', 2), 620 | (553, 5, '2016-05-24 12:52:09', 2), 621 | (554, 5, '2016-05-24 12:52:09', 2), 622 | (555, 5, '2016-05-24 12:52:09', 2), 623 | (556, 5, '2016-05-24 12:52:09', 2), 624 | (557, 5, '2016-05-24 12:52:10', 2), 625 | (558, 5, '2016-05-24 12:52:10', 2), 626 | (559, 5, '2016-05-24 12:52:10', 2), 627 | (560, 5, '2016-05-24 12:52:10', 2), 628 | (561, 5, '2016-05-24 12:52:10', 2), 629 | (562, 5, '2016-05-24 12:52:10', 2), 630 | (563, 5, '2016-05-24 12:52:11', 2), 631 | (564, 5, '2016-05-24 12:52:11', 2), 632 | (565, 5, '2016-05-24 12:52:11', 2), 633 | (566, 5, '2016-05-24 12:52:11', 2), 634 | (567, 5, '2016-05-24 12:52:11', 2), 635 | (568, 5, '2016-05-24 12:52:12', 2), 636 | (569, 5, '2016-05-24 12:52:12', 2), 637 | (570, 5, '2016-05-24 12:52:12', 2), 638 | (571, 5, '2016-05-24 12:52:12', 2), 639 | (572, 5, '2016-05-24 12:52:12', 2), 640 | (573, 5, '2016-05-24 12:52:12', 2), 641 | (574, 5, '2016-05-24 12:52:13', 2), 642 | (575, 5, '2016-05-24 12:52:13', 2), 643 | (576, 5, '2016-05-24 12:52:13', 2), 644 | (577, 5, '2016-05-24 12:52:13', 2), 645 | (578, 5, '2016-05-24 12:52:13', 2), 646 | (579, 5, '2016-05-24 12:52:14', 2), 647 | (580, 5, '2016-05-24 12:52:14', 2), 648 | (581, 5, '2016-05-24 12:52:14', 2), 649 | (582, 5, '2016-05-24 12:52:14', 2), 650 | (583, 5, '2016-05-24 12:52:14', 2), 651 | (584, 5, '2016-05-24 12:52:15', 2), 652 | (585, 5, '2016-05-24 12:52:15', 2), 653 | (586, 5, '2016-05-24 12:52:15', 2), 654 | (587, 5, '2016-05-24 12:52:15', 2), 655 | (588, 5, '2016-05-24 12:52:15', 2), 656 | (589, 5, '2016-05-24 12:52:16', 2), 657 | (590, 5, '2016-05-24 12:52:16', 2), 658 | (591, 5, '2016-05-24 12:52:16', 2), 659 | (592, 5, '2016-05-24 12:52:16', 2), 660 | (593, 5, '2016-05-24 12:52:16', 2), 661 | (594, 5, '2016-05-24 12:52:16', 2), 662 | (595, 5, '2016-05-24 12:52:17', 2), 663 | (596, 5, '2016-05-24 12:52:17', 2), 664 | (597, 5, '2016-05-24 12:52:17', 2), 665 | (598, 5, '2016-05-24 12:52:17', 2), 666 | (599, 1, '2016-05-24 12:52:20', 2), 667 | (600, 1, '2016-05-24 12:52:20', 2), 668 | (601, 1, '2016-05-24 12:52:20', 2), 669 | (602, 1, '2016-05-24 12:52:20', 2), 670 | (603, 1, '2016-05-24 12:52:21', 2), 671 | (604, 1, '2016-05-24 12:52:21', 2), 672 | (605, 1, '2016-05-24 12:52:21', 2), 673 | (606, 1, '2016-05-24 12:52:21', 2), 674 | (607, 1, '2016-05-24 12:52:21', 2), 675 | (608, 1, '2016-05-24 12:52:22', 2), 676 | (609, 1, '2016-05-24 12:52:22', 2), 677 | (610, 1, '2016-05-24 12:52:22', 2), 678 | (611, 1, '2016-05-24 12:52:22', 2), 679 | (612, 1, '2016-05-24 12:52:22', 2), 680 | (613, 1, '2016-05-24 12:52:22', 2), 681 | (614, 1, '2016-05-24 12:52:23', 2), 682 | (615, 1, '2016-05-24 12:52:23', 2), 683 | (616, 1, '2016-05-24 12:52:23', 2), 684 | (617, 1, '2016-05-24 12:52:23', 2), 685 | (618, 1, '2016-05-24 12:52:23', 2), 686 | (619, 1, '2016-05-24 12:52:24', 2), 687 | (620, 1, '2016-05-24 12:52:24', 2), 688 | (621, 1, '2016-05-24 12:52:24', 2), 689 | (622, 1, '2016-05-24 12:52:24', 2), 690 | (623, 5, '2016-05-24 12:52:26', 2), 691 | (624, 5, '2016-05-24 12:52:27', 2), 692 | (625, 5, '2016-05-24 12:52:27', 2), 693 | (626, 5, '2016-05-24 12:52:27', 2), 694 | (627, 5, '2016-05-24 12:52:27', 2), 695 | (628, 5, '2016-05-24 12:52:27', 2), 696 | (629, 5, '2016-05-24 12:52:28', 2), 697 | (630, 5, '2016-05-24 12:52:28', 2), 698 | (631, 5, '2016-05-24 12:52:28', 2), 699 | (632, 5, '2016-05-24 12:52:28', 2), 700 | (633, 5, '2016-05-24 12:52:28', 2), 701 | (634, 5, '2016-05-24 12:52:28', 2), 702 | (635, 5, '2016-05-24 12:52:29', 2), 703 | (636, 5, '2016-05-24 12:52:29', 2), 704 | (637, 5, '2016-05-24 12:52:29', 2), 705 | (638, 5, '2016-05-24 12:52:29', 2), 706 | (639, 5, '2016-05-24 12:52:29', 2), 707 | (640, 5, '2016-05-24 12:52:30', 2), 708 | (641, 5, '2016-05-24 12:52:30', 2), 709 | (642, 5, '2016-05-24 12:52:30', 2), 710 | (643, 5, '2016-05-24 12:52:30', 2), 711 | (644, 5, '2016-05-24 12:52:30', 2), 712 | (645, 5, '2016-05-24 12:52:31', 2), 713 | (646, 5, '2016-05-24 12:52:31', 2), 714 | (647, 5, '2016-05-24 12:52:31', 2), 715 | (648, 5, '2016-05-24 12:52:31', 2), 716 | (649, 5, '2016-05-24 12:52:31', 2), 717 | (650, 5, '2016-05-24 12:52:32', 2), 718 | (651, 5, '2016-05-24 12:52:32', 2), 719 | (652, 5, '2016-05-24 12:52:32', 2), 720 | (653, 5, '2016-05-24 12:52:32', 2), 721 | (654, 5, '2016-05-24 12:52:32', 2), 722 | (655, 5, '2016-05-24 12:52:33', 2), 723 | (656, 5, '2016-05-24 12:52:33', 2), 724 | (657, 5, '2016-05-24 12:52:33', 2), 725 | (658, 5, '2016-05-24 12:52:33', 2), 726 | (659, 5, '2016-05-24 12:52:33', 2), 727 | (660, 5, '2016-05-24 12:52:34', 2), 728 | (661, 5, '2016-05-24 12:52:34', 2), 729 | (662, 5, '2016-05-24 12:52:34', 2), 730 | (663, 5, '2016-05-24 12:52:34', 2), 731 | (664, 5, '2016-05-24 12:52:34', 2), 732 | (665, 5, '2016-05-24 12:52:35', 2), 733 | (666, 5, '2016-05-24 12:52:35', 2), 734 | (667, 5, '2016-05-24 12:52:35', 2), 735 | (668, 5, '2016-05-24 12:52:35', 2), 736 | (669, 5, '2016-05-24 12:52:35', 2), 737 | (670, 5, '2016-05-24 12:52:36', 2), 738 | (671, 5, '2016-05-24 12:52:36', 2), 739 | (672, 5, '2016-05-24 12:52:36', 2), 740 | (673, 5, '2016-05-24 12:52:36', 2), 741 | (674, 5, '2016-05-24 12:52:36', 2), 742 | (675, 5, '2016-05-24 12:52:37', 2), 743 | (676, 5, '2016-05-24 12:52:37', 2), 744 | (677, 5, '2016-05-24 12:52:37', 2), 745 | (678, 5, '2016-05-24 12:52:37', 2), 746 | (679, 5, '2016-05-24 12:52:37', 2), 747 | (680, 5, '2016-05-24 12:52:38', 2), 748 | (681, 5, '2016-05-24 12:52:38', 2), 749 | (682, 5, '2016-05-24 12:52:38', 2), 750 | (683, 5, '2016-05-24 12:52:38', 2), 751 | (684, 5, '2016-05-24 12:52:38', 2), 752 | (685, 5, '2016-05-24 12:52:39', 2), 753 | (686, 5, '2016-05-24 12:52:39', 2), 754 | (687, 5, '2016-05-24 12:52:39', 2), 755 | (688, 5, '2016-05-24 12:52:39', 2), 756 | (689, 5, '2016-05-24 12:52:39', 2), 757 | (690, 5, '2016-05-24 12:52:40', 2), 758 | (691, 5, '2016-05-24 12:52:40', 2), 759 | (692, 5, '2016-05-24 12:52:40', 2), 760 | (693, 5, '2016-05-24 12:52:40', 2), 761 | (694, 5, '2016-05-24 12:52:40', 2), 762 | (695, 5, '2016-05-24 12:52:40', 2), 763 | (696, 5, '2016-05-24 12:52:41', 2), 764 | (697, 5, '2016-05-24 12:52:41', 2), 765 | (698, 5, '2016-05-24 12:52:41', 2), 766 | (699, 5, '2016-05-24 12:52:41', 2), 767 | (700, 8, '2016-05-24 12:52:44', 2), 768 | (701, 8, '2016-05-24 12:52:44', 2), 769 | (702, 8, '2016-05-24 12:52:45', 2), 770 | (703, 8, '2016-05-24 12:52:45', 2), 771 | (704, 8, '2016-05-24 12:52:45', 2), 772 | (705, 8, '2016-05-24 12:52:45', 2), 773 | (706, 8, '2016-05-24 12:52:45', 2), 774 | (707, 8, '2016-05-24 12:52:46', 2), 775 | (708, 8, '2016-05-24 12:52:46', 2), 776 | (709, 8, '2016-05-24 12:52:46', 2), 777 | (710, 8, '2016-05-24 12:52:46', 2), 778 | (711, 9, '2016-05-24 12:52:49', 2), 779 | (712, 9, '2016-05-24 12:52:49', 2), 780 | (713, 9, '2016-05-24 12:52:49', 2), 781 | (714, 9, '2016-05-24 12:52:49', 2), 782 | (715, 9, '2016-05-24 12:52:50', 2), 783 | (716, 9, '2016-05-24 12:52:50', 2), 784 | (717, 9, '2016-05-24 12:52:50', 2), 785 | (718, 9, '2016-05-24 12:52:50', 2), 786 | (719, 9, '2016-05-24 12:52:50', 2), 787 | (720, 9, '2016-05-24 12:52:51', 2), 788 | (721, 9, '2016-05-24 12:52:51', 2), 789 | (722, 9, '2016-05-24 12:52:51', 2), 790 | (723, 9, '2016-05-24 12:52:51', 2), 791 | (724, 9, '2016-05-24 12:52:51', 2), 792 | (725, 9, '2016-05-24 12:52:52', 2), 793 | (726, 9, '2016-05-24 12:52:52', 2), 794 | (727, 9, '2016-05-24 12:52:52', 2), 795 | (728, 9, '2016-05-24 12:52:52', 2), 796 | (729, 9, '2016-05-24 12:52:52', 2), 797 | (730, 9, '2016-05-24 12:52:52', 2), 798 | (731, 9, '2016-05-24 12:52:53', 2), 799 | (732, 9, '2016-05-24 12:52:53', 2), 800 | (733, 9, '2016-05-24 12:52:53', 2), 801 | (734, 9, '2016-05-24 12:52:53', 2), 802 | (735, 9, '2016-05-24 12:52:53', 2), 803 | (736, 9, '2016-05-24 12:52:54', 2), 804 | (737, 9, '2016-05-24 12:52:54', 2), 805 | (738, 9, '2016-05-24 12:52:54', 2), 806 | (739, 9, '2016-05-24 12:52:54', 2), 807 | (740, 9, '2016-05-24 12:52:54', 2), 808 | (741, 9, '2016-05-24 12:52:55', 2), 809 | (742, 9, '2016-05-24 12:52:55', 2), 810 | (743, 9, '2016-05-24 12:52:55', 2), 811 | (744, 9, '2016-05-24 12:52:55', 2), 812 | (745, 9, '2016-05-24 12:52:55', 2), 813 | (746, 9, '2016-05-24 12:52:56', 2), 814 | (747, 9, '2016-05-24 12:52:56', 2), 815 | (748, 9, '2016-05-24 12:52:56', 2), 816 | (749, 9, '2016-05-24 12:52:56', 2), 817 | (750, 9, '2016-05-24 12:52:56', 2), 818 | (751, 9, '2016-05-24 12:52:57', 2), 819 | (752, 9, '2016-05-24 12:52:57', 2), 820 | (753, 9, '2016-05-24 12:52:57', 2), 821 | (754, 9, '2016-05-24 12:52:57', 2), 822 | (755, 9, '2016-05-24 12:52:57', 2), 823 | (756, 9, '2016-05-24 12:52:58', 2), 824 | (757, 9, '2016-05-24 12:52:58', 2), 825 | (758, 9, '2016-05-24 12:52:58', 2), 826 | (759, 9, '2016-05-24 12:52:58', 2), 827 | (760, 9, '2016-05-24 12:52:58', 2), 828 | (761, 9, '2016-05-24 12:52:59', 2), 829 | (762, 9, '2016-05-24 12:52:59', 2), 830 | (763, 9, '2016-05-24 12:52:59', 2), 831 | (764, 9, '2016-05-24 12:52:59', 2), 832 | (765, 9, '2016-05-24 12:52:59', 2), 833 | (766, 9, '2016-05-24 12:53:00', 2), 834 | (767, 9, '2016-05-24 12:53:00', 2), 835 | (768, 9, '2016-05-24 12:53:00', 2), 836 | (769, 9, '2016-05-24 12:53:00', 2), 837 | (770, 9, '2016-05-24 12:53:00', 2), 838 | (771, 9, '2016-05-24 12:53:00', 2), 839 | (772, 9, '2016-05-24 12:53:01', 2), 840 | (773, 9, '2016-05-24 12:53:01', 2), 841 | (774, 9, '2016-05-24 12:53:01', 2), 842 | (775, 9, '2016-05-24 12:53:01', 2), 843 | (776, 9, '2016-05-24 12:53:01', 2), 844 | (777, 9, '2016-05-24 12:53:02', 2), 845 | (778, 9, '2016-05-24 12:53:02', 2), 846 | (779, 9, '2016-05-24 12:53:02', 2), 847 | (780, 9, '2016-05-24 12:53:02', 2), 848 | (781, 9, '2016-05-24 12:53:02', 2), 849 | (782, 9, '2016-05-24 12:53:03', 2), 850 | (783, 9, '2016-05-24 12:53:03', 2), 851 | (784, 9, '2016-05-24 12:53:03', 2), 852 | (785, 9, '2016-05-24 12:53:03', 2), 853 | (786, 9, '2016-05-24 12:53:03', 2), 854 | (787, 9, '2016-05-24 12:53:04', 2), 855 | (788, 9, '2016-05-24 12:53:04', 2), 856 | (789, 9, '2016-05-24 12:53:04', 2), 857 | (790, 9, '2016-05-24 12:53:04', 2), 858 | (791, 9, '2016-05-24 12:53:04', 2), 859 | (792, 9, '2016-05-24 12:53:05', 2), 860 | (793, 9, '2016-05-24 12:53:05', 2), 861 | (794, 9, '2016-05-24 12:53:05', 2), 862 | (795, 9, '2016-05-24 12:53:05', 2), 863 | (796, 9, '2016-05-24 12:53:05', 2), 864 | (797, 9, '2016-05-24 12:53:05', 2), 865 | (798, 9, '2016-05-24 12:53:06', 2), 866 | (799, 9, '2016-05-24 12:53:06', 2), 867 | (800, 9, '2016-05-24 12:53:06', 2), 868 | (801, 9, '2016-05-24 12:53:06', 2), 869 | (802, 9, '2016-05-24 12:53:06', 2), 870 | (803, 9, '2016-05-24 12:53:07', 2), 871 | (804, 9, '2016-05-24 12:53:07', 2), 872 | (805, 4, '2016-05-24 12:53:10', 2), 873 | (806, 4, '2016-05-24 12:53:10', 2), 874 | (807, 4, '2016-05-24 12:53:10', 2), 875 | (808, 4, '2016-05-24 12:53:11', 2), 876 | (809, 4, '2016-05-24 12:53:11', 2), 877 | (810, 4, '2016-05-24 12:53:11', 2), 878 | (811, 4, '2016-05-24 12:53:11', 2), 879 | (812, 4, '2016-05-24 12:53:11', 2), 880 | (813, 4, '2016-05-24 12:53:12', 2), 881 | (814, 4, '2016-05-24 12:53:12', 2), 882 | (815, 4, '2016-05-24 12:53:12', 2), 883 | (816, 4, '2016-05-24 12:53:12', 2), 884 | (817, 4, '2016-05-24 12:53:12', 2), 885 | (818, 4, '2016-05-24 12:53:13', 2), 886 | (819, 4, '2016-05-24 12:53:13', 2), 887 | (820, 4, '2016-05-24 12:53:13', 2), 888 | (821, 4, '2016-05-24 12:53:13', 2), 889 | (822, 4, '2016-05-24 12:53:13', 2), 890 | (823, 4, '2016-05-24 12:53:14', 2), 891 | (824, 4, '2016-05-24 12:53:14', 2), 892 | (825, 4, '2016-05-24 12:53:14', 2), 893 | (826, 4, '2016-05-24 12:53:14', 2), 894 | (827, 4, '2016-05-24 12:53:14', 2), 895 | (828, 4, '2016-05-24 12:53:15', 2), 896 | (829, 4, '2016-05-24 12:53:15', 2), 897 | (830, 4, '2016-05-24 12:53:15', 2), 898 | (831, 4, '2016-05-24 12:53:15', 2), 899 | (832, 4, '2016-05-24 12:53:15', 2), 900 | (833, 4, '2016-05-24 12:53:16', 2), 901 | (834, 4, '2016-05-24 12:53:16', 2), 902 | (835, 4, '2016-05-24 12:53:16', 2), 903 | (836, 4, '2016-05-24 12:53:16', 2), 904 | (837, 4, '2016-05-24 12:53:16', 2), 905 | (838, 4, '2016-05-24 12:53:17', 2), 906 | (839, 4, '2016-05-24 12:53:17', 2), 907 | (840, 4, '2016-05-24 12:53:17', 2), 908 | (841, 4, '2016-05-24 12:53:17', 2), 909 | (842, 4, '2016-05-24 12:53:17', 2), 910 | (843, 4, '2016-05-24 12:53:17', 2), 911 | (844, 4, '2016-05-24 12:53:18', 2), 912 | (845, 4, '2016-05-24 12:53:18', 2), 913 | (846, 4, '2016-05-24 12:53:18', 2), 914 | (847, 4, '2016-05-24 12:53:18', 2), 915 | (848, 4, '2016-05-24 12:53:18', 2), 916 | (849, 6, '2016-05-24 12:53:21', 2), 917 | (850, 6, '2016-05-24 12:53:21', 2), 918 | (851, 6, '2016-05-24 12:53:22', 2), 919 | (852, 6, '2016-05-24 12:53:22', 2), 920 | (853, 6, '2016-05-24 12:53:22', 2), 921 | (854, 6, '2016-05-24 12:53:22', 2), 922 | (855, 6, '2016-05-24 12:53:22', 2), 923 | (856, 6, '2016-05-24 12:53:22', 2), 924 | (857, 6, '2016-05-24 12:53:23', 2), 925 | (858, 6, '2016-05-24 12:53:23', 2), 926 | (859, 6, '2016-05-24 12:53:23', 2), 927 | (860, 7, '2016-05-24 12:53:25', 2), 928 | (861, 7, '2016-05-24 12:53:26', 2), 929 | (862, 7, '2016-05-24 12:53:26', 2), 930 | (863, 7, '2016-05-24 12:53:26', 2), 931 | (864, 7, '2016-05-24 12:53:26', 2), 932 | (865, 7, '2016-05-24 12:53:26', 2), 933 | (866, 7, '2016-05-24 12:53:27', 2), 934 | (867, 7, '2016-05-24 12:53:27', 2), 935 | (868, 7, '2016-05-24 12:53:27', 2), 936 | (869, 7, '2016-05-24 12:53:27', 2), 937 | (870, 7, '2016-05-24 12:53:27', 2), 938 | (871, 7, '2016-05-24 12:53:27', 2), 939 | (872, 7, '2016-05-24 12:53:28', 2), 940 | (873, 7, '2016-05-24 12:53:28', 2), 941 | (874, 7, '2016-05-24 12:53:28', 2), 942 | (875, 7, '2016-05-24 12:53:28', 2), 943 | (876, 7, '2016-05-24 12:53:28', 2), 944 | (877, 7, '2016-05-24 12:53:29', 2), 945 | (878, 7, '2016-05-24 12:53:29', 2), 946 | (879, 7, '2016-05-24 12:53:29', 2), 947 | (880, 7, '2016-05-24 12:53:29', 2), 948 | (881, 7, '2016-05-24 12:53:29', 2), 949 | (882, 7, '2016-05-24 12:53:30', 2), 950 | (883, 7, '2016-05-24 12:53:30', 2), 951 | (884, 7, '2016-05-24 12:53:30', 2), 952 | (885, 7, '2016-05-24 12:53:30', 2), 953 | (886, 7, '2016-05-24 12:53:30', 2), 954 | (887, 7, '2016-05-24 12:53:31', 2), 955 | (888, 7, '2016-05-24 12:53:31', 2), 956 | (889, 7, '2016-05-24 12:53:31', 2), 957 | (890, 7, '2016-05-24 12:53:31', 2), 958 | (891, 7, '2016-05-24 12:53:31', 2), 959 | (892, 7, '2016-05-24 12:53:32', 2), 960 | (893, 7, '2016-05-24 12:53:32', 2), 961 | (894, 7, '2016-05-24 12:53:32', 2), 962 | (895, 7, '2016-05-24 12:53:32', 2), 963 | (896, 7, '2016-05-24 12:53:32', 2), 964 | (897, 7, '2016-05-24 12:53:33', 2), 965 | (898, 7, '2016-05-24 12:53:33', 2), 966 | (899, 7, '2016-05-24 12:53:33', 2), 967 | (900, 7, '2016-05-24 12:53:33', 2), 968 | (901, 7, '2016-05-24 12:53:33', 2), 969 | (902, 7, '2016-05-24 12:53:34', 2), 970 | (903, 7, '2016-05-24 12:53:34', 2), 971 | (904, 7, '2016-05-24 12:53:34', 2), 972 | (905, 7, '2016-05-24 12:53:34', 2), 973 | (906, 7, '2016-05-24 12:53:34', 2), 974 | (907, 7, '2016-05-24 12:53:35', 2), 975 | (908, 7, '2016-05-24 12:53:35', 2), 976 | (909, 7, '2016-05-24 12:53:35', 2), 977 | (910, 7, '2016-05-24 12:53:35', 2), 978 | (911, 7, '2016-05-24 12:53:35', 2), 979 | (912, 7, '2016-05-24 12:53:36', 2), 980 | (913, 7, '2016-05-24 12:53:36', 2), 981 | (914, 7, '2016-05-24 12:53:36', 2), 982 | (915, 7, '2016-05-24 12:53:36', 2), 983 | (916, 7, '2016-05-24 12:53:36', 2), 984 | (917, 7, '2016-05-24 12:53:37', 2), 985 | (918, 7, '2016-05-24 12:53:37', 2), 986 | (919, 7, '2016-05-24 12:53:37', 2), 987 | (920, 7, '2016-05-24 12:53:37', 2), 988 | (921, 7, '2016-05-24 12:53:37', 2), 989 | (922, 7, '2016-05-24 12:53:38', 2), 990 | (923, 7, '2016-05-24 12:53:38', 2), 991 | (924, 7, '2016-05-24 12:53:38', 2), 992 | (925, 2, '2016-05-24 12:53:43', 2), 993 | (926, 2, '2016-05-24 12:53:43', 2), 994 | (927, 2, '2016-05-24 12:53:43', 2), 995 | (928, 2, '2016-05-24 12:53:44', 2), 996 | (929, 2, '2016-05-24 12:53:44', 2), 997 | (930, 2, '2016-05-24 12:53:44', 2), 998 | (931, 2, '2016-05-24 12:53:44', 2), 999 | (932, 2, '2016-05-24 12:53:44', 2), 1000 | (933, 2, '2016-05-24 12:53:45', 2), 1001 | (934, 2, '2016-05-24 12:53:45', 2), 1002 | (935, 2, '2016-05-24 12:53:45', 2), 1003 | (936, 2, '2016-05-24 12:53:45', 2), 1004 | (937, 2, '2016-05-24 12:53:45', 2), 1005 | (938, 2, '2016-05-24 12:53:45', 2), 1006 | (939, 2, '2016-05-24 12:53:46', 2), 1007 | (940, 2, '2016-05-24 12:53:46', 2), 1008 | (941, 2, '2016-05-24 12:53:46', 2), 1009 | (942, 2, '2016-05-24 12:53:46', 2), 1010 | (943, 2, '2016-05-24 12:53:46', 2), 1011 | (944, 2, '2016-05-24 12:53:47', 2), 1012 | (945, 2, '2016-05-24 12:53:47', 2), 1013 | (946, 2, '2016-05-24 12:53:47', 2), 1014 | (947, 2, '2016-05-24 12:53:47', 2), 1015 | (948, 2, '2016-05-24 12:53:47', 2), 1016 | (949, 2, '2016-05-24 12:53:48', 2), 1017 | (950, 2, '2016-05-24 12:53:48', 2), 1018 | (951, 2, '2016-05-24 12:53:48', 2), 1019 | (952, 2, '2016-05-24 12:53:48', 2), 1020 | (953, 2, '2016-05-24 12:53:48', 2), 1021 | (954, 2, '2016-05-24 12:53:49', 2), 1022 | (955, 2, '2016-05-24 12:53:49', 2), 1023 | (956, 2, '2016-05-24 12:53:49', 2), 1024 | (957, 2, '2016-05-24 12:53:49', 2), 1025 | (958, 2, '2016-05-24 12:53:49', 2), 1026 | (959, 2, '2016-05-24 12:53:50', 2), 1027 | (960, 2, '2016-05-24 12:53:50', 2), 1028 | (961, 2, '2016-05-24 12:53:50', 2), 1029 | (962, 2, '2016-05-24 12:53:50', 2), 1030 | (963, 2, '2016-05-24 12:53:50', 2), 1031 | (964, 2, '2016-05-24 12:53:51', 2), 1032 | (965, 2, '2016-05-24 12:53:51', 2), 1033 | (966, 2, '2016-05-24 12:53:51', 2), 1034 | (967, 2, '2016-05-24 12:53:51', 2), 1035 | (968, 2, '2016-05-24 12:53:51', 2), 1036 | (969, 2, '2016-05-24 12:53:51', 2), 1037 | (970, 2, '2016-05-24 12:53:52', 2), 1038 | (971, 2, '2016-05-24 12:53:52', 2), 1039 | (972, 2, '2016-05-24 12:53:52', 2), 1040 | (973, 2, '2016-05-24 12:53:52', 2), 1041 | (974, 2, '2016-05-24 12:53:52', 2), 1042 | (975, 2, '2016-05-24 12:53:53', 2), 1043 | (976, 2, '2016-05-24 12:53:53', 2), 1044 | (977, 2, '2016-05-24 12:53:53', 2), 1045 | (978, 2, '2016-05-24 12:53:53', 2), 1046 | (979, 2, '2016-05-24 12:53:53', 2), 1047 | (980, 2, '2016-05-24 12:53:54', 2), 1048 | (981, 2, '2016-05-24 12:53:54', 2), 1049 | (982, 2, '2016-05-24 12:53:54', 2), 1050 | (983, 2, '2016-05-24 12:53:54', 2), 1051 | (984, 2, '2016-05-24 12:53:54', 2), 1052 | (985, 2, '2016-05-24 12:53:55', 2), 1053 | (986, 2, '2016-05-24 12:53:55', 2), 1054 | (987, 2, '2016-05-24 12:53:55', 2), 1055 | (988, 2, '2016-05-24 12:53:55', 2), 1056 | (989, 9, '2016-05-24 12:53:58', 2), 1057 | (990, 9, '2016-05-24 12:53:58', 2), 1058 | (991, 9, '2016-05-24 12:53:58', 2), 1059 | (992, 9, '2016-05-24 12:53:58', 2), 1060 | (993, 9, '2016-05-24 12:53:59', 2), 1061 | (994, 9, '2016-05-24 12:53:59', 2), 1062 | (995, 9, '2016-05-24 12:53:59', 2), 1063 | (996, 9, '2016-05-24 12:54:00', 2), 1064 | (997, 9, '2016-05-24 12:54:00', 2), 1065 | (998, 9, '2016-05-24 12:54:01', 2), 1066 | (999, 9, '2016-05-25 03:39:42', 2); 1067 | 1068 | -- 1069 | -- Indexes for dumped tables 1070 | -- 1071 | 1072 | -- 1073 | -- Indexes for table `client_antrian` 1074 | -- 1075 | ALTER TABLE `client_antrian` 1076 | ADD PRIMARY KEY (`id`); 1077 | 1078 | -- 1079 | -- Indexes for table `data_antrian` 1080 | -- 1081 | ALTER TABLE `data_antrian` 1082 | ADD PRIMARY KEY (`id`); 1083 | 1084 | -- 1085 | -- AUTO_INCREMENT for dumped tables 1086 | -- 1087 | 1088 | -- 1089 | -- AUTO_INCREMENT for table `client_antrian` 1090 | -- 1091 | ALTER TABLE `client_antrian` 1092 | MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; 1093 | -- 1094 | -- AUTO_INCREMENT for table `data_antrian` 1095 | -- 1096 | ALTER TABLE `data_antrian` 1097 | MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1000; 1098 | /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; 1099 | /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; 1100 | /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; 1101 | -------------------------------------------------------------------------------- /puluh.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/puluh.zip -------------------------------------------------------------------------------- /puluh_stable_fix_release_final_ok_sib_banget.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/puluh_stable_fix_release_final_ok_sib_banget.zip -------------------------------------------------------------------------------- /release/puluh_fix_3_final_release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achluky/Aplikasi-Antrian/0f90e7f957ce7f29ec088e7532ed7735ee1571c3/release/puluh_fix_3_final_release.zip -------------------------------------------------------------------------------- /server/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Monitoring : Queue 10 | 11 | 12 | 13 | 14 | 15 |
16 |
17 |
18 | 19 |

Selamat datang di Institut Teknologi Sumatera

20 |
21 |
22 |
23 |
24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 |
48 |
49 |

© UPT TIK ITERA

50 |
51 |
52 | 53 | 687 | 688 | 689 | --------------------------------------------------------------------------------