Вы находитесь на странице: 1из 51
aps2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip Mwyekrip Web Tutorial Indonesia Beranda / Skrip / Glosarium / Tentang / Nyekrip Yuk Cari Tutorial di Nyekrip ... Q CARI & Cara Membuat Form Login Berlangganan Dengan PHP MySQL Silahikan masukkan Nyekrip » PHP » Tips Trik PHP » Cara Membuat Form Login Email Anda Dengan PHP MySQL untuk Berlangganan © Updated on Mei 16,2015 & Admin We Tips TrikPHP gm 155 Tutorial Comments terbaru dari blog. sederhana ini :) Happy Fa Nyekrip! eee do Membuat Form Login Berlangganan Dalam tutorial cara membuat form login dengan PHP. dan MySQL, kita akan belajar membuat halaman login Tutorial untuk website dengan menggunakan PHP Session. Populer Tutorial ini merupakan tutorial tingkat dasar, sederhana B cre dan mudah untuk diikuti. Membuat Halaman Secara Umum, form login akan sangat dibutuhkan pada Web situs web jika kita hanya ingin orang-orang tertentu yang Sederhana bisa melihat bahkan merubah konten pada website. Ini B ar thane ip.comcare-menat-formlogin-dengan-pho-mysql vst as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip merupakan cara yang baik untuk menjaga data kita aman Membuat dari orang-orang yang tidak dikehendaki. Website Sederhana dengan Tutorial cara membuat form login dengan PHP dan HTML MySQL ini dilengkapi dengan session. Pada saat proses login berhasil, secara otomatis akan tercipta sebuah B cra session yang berfungsi sebagai informasi pribadi klien Membuat yang tersimpan di web server untuk digunakan sebagai ve ‘ ropdown Proses login. Sederhana B cara Eneermine x Membuat € > Bless Blog di Blogspot Lengkap Pere E TTS Gamber = B cara : Membuat Blog di WordPress Gratis Lengkap Tutorial Form Login Kategori Silahkan klik tombol download untuk mengunduh form Blog login dengan PHP dan MySQL. css. HTML Download Skrip Internet Nyekrip PHP Langkah Cara Membuat Form Webste Login Menggunakan PHP dan MySQL Tutorial ySQ Terbaru Konsep dalam cara membuat form login dengan php dan B cara mysql adalah membuat halaman form login dengan Mempercepat -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 2st as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip HTML terlebih dahulu dan selanjutnya akan dilengkapi Loading dengan skrip php untuk memeriksa data pengguna di Website database MySQL. Jika pengguna terdapat dalam pee database MySQL, maka PHP akan membuat session en gkop untuk pengguna tersebut dan sekaligus akan B) Persamaan mengarahkan pada halaman web yang telah diproteksi. dan Perbedaan Ikuti Langkah-langkah dibawah ini untuk cara membuat Blog form login sederhana dengan PHP dan database MySQL wae lebsite yang dilengkapi session sesuai konsep diatas. B cara Membuat Langkah 1: Membuat Tabel MySQL Website User/Pengguna Terbaru dan , Lengk: Untuk membuat database dan tabel, jalankan kode enesse berikut di software MySQL Anda, bisa menggunakan B cara phpMyAdmin atau software kesukaan saya HeidiSQL. Membuat Untuk lebih jelas tentang membuat database dan tabel Konten MySQL dengan skrip PHP, silahkan kunjungi tutorial Post SEO d “ Cara Membuat Tabel dan Database MySQL di PHP “. cman Skrip MySQL B cre Membuat =~ Dumping database structure for tes_db system CREATE DATABASE IF NOT EXISTS ‘tes_db* /*!40100 DEFAU dengan USE “tes_db* Object Oriented =~ Dumping structure for table tes_db.karyawan CREATE TABLE IF NOT EXISTS *karyawan* ( *id_karyawan* int(1@) NOT NULL AUTO_INCREMENT, “pe yawan* varchar(5@) NOT NULL DEFAULT ‘o", user_karyawan* varchar(5@) NOT NULL DEFAULT '0", *nama_karyawan* varchar(5@) DEFAULT NULL, *alm_karyawan® varchar(5@) DEFAULT NULL, i_karyawan* int(10) DEFAULT NULL, ~tgl_gabung’ date DEFAULT NULL, PRIMARY KEY C-id_karyawan*) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=Lat s C -- Dumping data for table tes_db.karyawan: ~10 INSERT IGNORE INTO *karyawan’ C’id_karya pass_k 1, "1234", "admin", ‘Admin Nyekrip’, 'Website', (2, '4321', 'staf', 'Staf Nyekrip', ‘Server Web’, thane ip.comcare-menat-formlogin-dengan-pho-mysql 351 eoszu8 Cara Marbut FrmLogin Dengan PHP MYSOL- Nein Langkah 2: Membuat Form Login HTML Dalam skrip ini kita akan membuat form tempat untuk memasuk-kan username dan password. Ketik-kan skrip berikut untuk membuat Form login dengan skrip HTML yang terdiri dari kolom username, kolom password dan tombol submit. Simpan skrip berikut dalam file dengan nama index.php . Dalam tutorial ini kita menggunakan metode POST, untuk lebih memahami metode form HTML, ikuti tutorial” Membuat Form HTML dg POST dan GET di PHP“. Skrip HTML <2php include('Login.php'); // Memasuk-kan skrip Login ifCisset($_SESSION[" Login_user'])){ header("Location: profile.php"); + ?> Nyekrip Form Login

NYEKRIP COM FORM LOGIN DENGAN PHP-

Username_: Password :
‘submit" name="submit" id="su /itharyseip.comicare-menat-forrlogin-dengar-pho-mysql 451 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip Langkah 3: Membuat Skrip Login Dalam skrip ini kita akan membuat skrip PHP yang bertugas untuk memulai sesi (session) dan memeriksa apakah username dan password yang diberikan terdapat dalam tabel karyawan, jika data tidak ditemukan akan menampilkan pesan” Username atau Password belum terdaftar “. Ketik-kan skrip berikut dan simpan dalam file dengan nama login. php . Skrip PHP <2php session_start); // Memulai Session Serror="'; // Variabel untuk menyimpan pesan error if Cisset($_POSTE' submit'])) { f Cempty($_POSTE'username']) || empty($_POSTL'pa $error = "Username or Password is invalid 3 else f // Nariabel username dan password $username=$_POST[ username] ; $password=$_POST[' password"); // Menbangun koneksi ke database $connection = mysql_connect("Localhost”, "roo // Mencegah MySQL injection $username = stripslashes(Susername); $passnord = stripslashes(Spassword); $username = mysql_real_escape_string($usernam $password = mysql_real_escape_string($passwor // Seleksi Database $db = mysql_select_db("tes_db", $connection); // SQL query untuk memeriksa apakah karyawan $query = mysql_query("select * from karyawan $rows = mysql if CSrows $_SESSION[' Login_user']=$username; // header("location: profile.php"); // M } else { Serror = "Username atau Password belu + mysql_close($connection); // Menutup } + 2> Langkah 4 : Membuat Halaman Profil thane ip.comcare-menat-formlogin-dengan-pho-mysql 51 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip El ryergaaesr ae €. > G [Dlocahonnekrp-formloginproie php Halaman Profil Jika login telah berhasil, maka pengguna akan diarahkan langsung ke halaman profile yang berisi data pribadi user (lihat gambar halaman profil diatas). Dalam halaman ini juga dilengkapi dengan link logout untuk keluar dari halaman sekaligus menghapus session. Ketik-kan skrip berikut dan simpan dalam file dengan nama profile.ph Pp. Skrip PHP Nyekrip Halaman Khusus</tit <link href="style.css" rel="stylesheet" type="t </head> <body> <div id="profile"> <b id="welcome">Selamat Datang : <i><?php echo <b id="Logout"><a href="Logout..php">Log Out</a> </div> </body> </html> Langkah 5: Membuat Skrip Fungsi thane ip.comcare-menat-formlogin-dengan-pho-mysql ast as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip Session PHP Skrip ini bertugas untuk mengambil data tentang user dan menampilkan-nya pada halaman profil. Ketik-kan skrip berikut dan simpan dalam file dengan nama sessio n.php . Skrip PHP <?php // Membangun Koneksi dengan Server denga $connection = mysql_connect("localhost", // Seleksi Database $db = mysgl_select_db("tes_db", $connection); session_start();// Memulai Session // Menyimpan Session Suser_check=$_SESSION[' Login_user']; // &mbil nama karyawan berdasarkan username karyawan $ses_sql=mysql_query("'select nama_karyawan fron karya Srow = mysql_fetch_assoc($ses_sql); Slogin_session =$row['nama_karyawan"]; ifClisset($login_session)){ mysql_close($connection); // Menutup koneksi header('Location: index.php"); // Mengarahkan ke nama server root", ""); Langkah 6: Membuat Skrip Fungsi Logout PHP Skrip ini bertugas untuk menghapus semua sesi dan langsung mengarahkan ke halaman utama (index.php) tempat form login berada. Ketik-kan skrip berikut dan simpan dalam file dengan nama logout. php . Skrip PHP <2php session_startQ); if(session_destroy()) // Menghapus Sessions { + ?> header("Location: index.php"); // Langsung mengar -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 7151 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip Langkah 7: Membuat Skrip CSS Untuk Style Form Login Skrip CSS ini untuk memberikan dan mengatur style HTML pada halaman form login dan halaman profil. Ketik-kan skrip berikut dan simpan dalam file dengan nama style.css. Skrip CSS container { width: 50%; margin: @ auto; padding margin text-alil color } @px -50px; enter; span{ display: block; margin-bottom: 20px; success{ display: block, margin-top: 20px; @; 14px; bf color:green; } hrf margin: 1@px -S@px; border: 0; border-top: 1px solid #ccc; margin-bottom: 25px; } div.main{ width: 3@6px; padding: 10px S@px 30px; border: 2px solid gray; font-far raleway; Float margin= } eft; 15px; tptaawaryseip.comicara-menbuatformlogin-dengar-phe-msql aps2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip ‘input [type=text] { width: 96%; height: 25px; padding: 5px; margin-bottom: 25px; margin-top: Spx; border: 2px solid #ccc; color: #53bd84; font-size: 16px; } ‘input [type=password] { width: 96%; height: 25px; padding: Spx; margin-bottom: 25px; margin-top: Spx; border: 2px solid #ccc; color: #53bd84; font-size: 16px; 3 label { color: #53bd84; text-shadow: 0 Ipx @ #FFF; font-size: 14px; font-weight: bold; ‘input [type=submit]}{ font-size: 16px; background: Linear-gradient(#53bd84 5%, #FFF 100%); color: #4E4D4B; font-weight: bold; cursor: pointer; width: 100%; padding: 10px 0; outline:none; } #profile { padding: 50px; border: px solid grey; e: 20x; background-color : #AZDEDO; i #logout { Float: right; padding: 5px; border:dashed 1px gray 3 af text-decoration:none; color:#6495ed } if color:#6495ed t ——————————————————— bitphwwuryseip.comicare-merat-formlogindengar-pho-mysqli 22016 Cara Merbust FormLogin Dengan PHP MySQL - Nytcip Simpan semua file HTML, PHP dan CSS dalam satu folder bernama” nyekrip-form-login” dan letakkan folder tersebut dalam folder htdocs. Folder htdocs terletak dalam folder XAMPP, dalam tutorial ini kami menggunakan XAMPP sebagai web server. Jika anda juga ingin memakai XAMPP, ikuti tutorial ” Cara Install XAMPP Web Server di Windows “. Setelah melakukan semua langkah cara membuat form login diatas, sekarang saatnya kita untuk mencoba form login dengan PHP dan MySQL yang dilengkapi session dengan mengetik-kan alamat” http://localhost/nyekrip- form-login/index.php ” pada halaman browser. Demikian tutorial cara membuat form login dengan PHP. dan MySQL, jika terdapat langkah yang kurang dimengerti, silahkan kirim pertanyaan melalui kolom komentar dibawah ini. Terimakasih. Happy Nyekrip! mS Cetak — f Facebook | WTwitter G* Google iin Linkedin Tagged: ¢ torn borin € phe € prpmpal shah « About The Author Admin NV Suka ingin berbagi pengetahuan dan pengalaman nyekrip program yang dituangkan dalam web ini dan sekarang sedang fokus mengembangkan Web Tutorial berbahasa Indonesia. Nyekrip - Web Tutorial Indonesia Artikel Terkait -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 10st as20i6 B Cara Koneksi Database MySQL dengan PHP. ® Cara Membuat CAPTCHA Menggunakan PHP Comments Cara Merbust Form Login Dengan PHP MySQL - Nyetip B Cara Membuat Form HTML POST dan GET PHP. B Cara Export Tabel HTML ke Excel dengan PHP Haris Reply Mei 28, 2015 at 12:56 am Terimakasih banyak tutorialnya. Sangat berguna sekali buat saya. Ada hal yang ingin saya tanyakan, saya masih newbie tentang menulis PHP script, hanya sedikit mengetahui html code dan membuat website melalui Wordspress. Jika saya ingin menampilkan Download file di halaman “profile.php", kira-kira scriptnya seperti apa. Misalkan saya punya satu sub folder “download” di dalam folder “nyekrip-form-login’, mohon bantuannya kira-kira script yang harus saya tambahkan di dalam “profile.php” seperti apa. Terimakasih banyak. nv Admin arice Aut 4 Reply Juni 4, 2015 at 1:14 am skrip-nya sama seperti kita menampilkan link, cura link yang kita tuju ya langsung ke arah file. User Reply Juni 20, 2015 at 9:23 am thane ip.comcare-menat-formlogin-dengan-pho-mysql 1051 22016 Cara Merbust FormLogin Dengan PHP MySQL - Nytcip Artikel ini ckup membantu sya dim mempelajari php (y) tp kira2 bagaimana caranya jika saya ingin memindahkan file2 tsb sehingga dpt tampil di komp lain ya? * Fajar Dwi Rianto Reply Juni 29, 2016 at 5:45 am Biar bisa ditampilin di komputer lain databse local pertama wajib banget kita export setelah itu nanti di import ke komputer lain begitu gan Haloo Reply Juni 20, 2015 at 9:25 am ckup membantu sya dim mempelajari php (y) tp kira2 bagaimana caranya jika saya ingin memindahkan file2 tsb sehingga dpt tampil di komp lain ya? Tamania > Reply Juni 29, 2015 at 2:20 am Terimakasih sharing tutorialnya. kevin Reply Juli 5, 2015 at 4:22 am ane masih binggung gan ane maunya pas masuk web ane” www[dot}vippidot]zz{dot]mu " itu awal awal masuk ke login terus pas uda masuk langsung ke beranda -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 1261 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip www{dot}vippldot]zzidotymu gitu gan Rio © Reply * Maret 11, 2016 at 7:01 am kasih nama halaman login mu dengan nama “index” tanpa tanda kutip Instant Website > Reply Juli 8, 2015 at 10:20. am Min kalo yang dari copy HTML itu bisa juga yah buat kotak loginnya?? Admin arco Aurt Reply * Ww ‘Agustus 1, 2015 at 10:07 am maksudnya? ari 9 Reply Juli 18, 2015 at 4:09. am ijin download project form login dengan PHP dan MySQL mas... termikasih salam kenal ari emil Reply ‘Agustus 13, 2015 at 7:03 pm Min saya mengalami seperti ini .. -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 1361 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\login1 \ogin.php on line 24 maksudnya apa ya a yy AMmin auth + Reply November 24, 2015 at 2:27 am. itu karena belum ada data dalam databasenya, coba perhatikan lagi databasenya vicky ‘© Reply Agustus 20, 2015 at 10:55 am gan kenapa tidak PDO.... T_T ry Aamin sce 4 Reply November 24, 2015 at 2:28 am nanti ane buat gan, ditunggu ya. Tareh ‘© Reply Agustus 22, 2015 at 12:58 am ‘Admin cara buat databasenya gimana iyah ? Dan apa nama file yg akan kita kasih pada databse tersebut ? mohon balassannya Admin ticle Authé Reply * Ww September 12, 2015 at 12:45 pm -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql wt as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip http://www.nyekrip.com/category/php/tips- trik-php/ cari artikel saya disitu... Jack S Reply ‘Agustus 25, 2015 at 5:09 pm dear admin, ane pemula, malah gak punya MySQL. biasanya ane buat script di wordpad/notepad atau langsung di full-text editor blog. gini gan, ane mau buat semacam kotak pop-up (ukuran 570 x 450) yg menutupi sebahagian dari tampilan blog. kotak pop-up nya ada kata2 user name, password, login. nah, kalau user name & password yg di isi cocok maka kotak pou-up nya hilang & pengunjung bisa melihat isi blog yg tertutupi tadi. jadi ngak perlu redirect ke halaman lain oh ya, user name & password berbeda-beda untuk setiap pengunjung, bisa mencapai 200 org / lebih. pengunjung ngak perlu mendaftar, saya buatkan utk mereka. jadi kalau pengunjung yg tidak terdata tentunya tidak bisa melihat “isi penting” tsb. bisa agan tolongin saya, please... juga dimana & bagaimana saya buatkan data user name & password...? many thank's in advance * Jack $ 4 Reply ‘Agustus 25, 2015 at 5:24 pm oh admin, ada kelupaan tadi. kalau ane menggunakan laptop ane sebagai server data user name & password, berarti laptopnya harus online terus ya...? -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 1951 ansae Cara Mertat Form Login Dengan PHP MySQL Nyrip gimnana ini, apa gak bakalan meledak nantinya...? * Jack S 4 Reply Agustus 25, 2015 at 6:19 pm nambah lagi pertanyaan nya gan karena ngembet bgt mau proteksi segera laman ane, file yg ane tahu sekedar index.html, css & js. koq sekarang ada lagi MySQL...? kalau bisa kotak pop-up nya yg bisa dipajang foto back-ground (biar lebih keren), ma ksh banyak ni gan love you all, love IT. Jacks + Reply Agustus 25, 2015 at 6:19 pm nambah lagi pertanyaan nya gan karena ngembet bgt mau proteksi segera laman ane, file yg ane tahu sekedar index.html, css &js. koq sekarang ada lagi MySQL...? kalau bisa kotak pop-up nya yg bisa dipajang foto back-ground (biar lebih keren). ma ksh banyak ni gan love you all, love IT. ” nv Admin ticle Auth Reply September 12, 2015 at 12:43 pm -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 1951 ansae Cara Mertat Form Login Dengan PHP MySQL Nyrip ini blognya apa dulu? wordpress atau apa? self host? maaf baru bisa balas, lagi sibuk kerja.. * Jacks ‘ Reply September 23, 2015 at 8:26 pm trim's mas atas responnya saya buat di free-site weebly.com dan sebagai tambahan sharing, saya telah upload dan install wampserver tapi karena memang pemula saya malah gak tahu pun cara menjalankan wampserver. * nw Admin anise Reply September 24, 2015 at 1:38 am wampserver itu mirip dengan xampp, coba pakai xampp disini tutorialnya... http://www.nyekrip.com/cara- install-xampp-web-server- di-windows/ danu adji % Reply September 13, 2015 at 10:58 am mau nanya mas, kan saya udah punya format loginnya, yang pengen saya lakukan sekarang gmana cara membuat from login dulu sebelum masuk ke web. dan gak tau caranya hehe, saya pake thane ip.comcare-menat-formlogin-dengan-pho-mysql 751 ansae Cara Mertat Form Login Dengan PHP MySQL Nyrip wordpress, mohon bantuannya mas admin. Trimakasih dr ‘9 Reply September 20, 2015 at 7:25 am mas admin mau tanya, pada saat login kenapa seperti script session nya tidak bekerja ya, tidak menampilan informasi user dari database nya hanya bisa login saja. sebelumnya terimakasih banyak, sangat membantu. andy © Reply September 28, 2015 at 6:22am Gan. Blog bs dpasng form daftar ,login gak ya... ” nv Admin \ticle Author Reply September 28, 2015 at 12:38 pm bisa gan. kalau wordpress, mending pakai plugin. safacolection Reply Oktober 5, 2015 at 8:28 pm hallo selamat malam.. saya ingin bertanya... penerapan untuk blogspot apakah bisa metode diatas,, dikarenakan kami menggunakan blogspot, saya bermaksud blog saya safacolection bisa layaknya web2 besar yang mempunyai member, user, dan user bisa login dan logut... kalo memang bisa mohon berikan petnjuk cara penerapan kode -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql swt ansae Cara Mertat Form Login Dengan PHP MySQL Nyrip diatas.. maklum saya masih newby benar2 gak paham konsep kode2an.. terima kasih admin nyekrip... a yy Aamin sce + Reply Oktober 6, 2015 at 10:54am untuk blogspot, kami belum tahu. kalau wordpress bisa. terimakasih sudahh berkunjung. ardi ‘ Reply Oktober 7, 2015 at 6:50am kita masukkan username dan pasword, lalu kita enter, hasilnya begini ‘Warning: mysqlnum_rows() expects parameter 1 to be resource, boolean given in C\xampp\htdocs\login\login.php on line 24" apa masalahnya ya min?. terima kasih a iy Aamin sce + Reply Oktober 7, 2015 at 11:30 am coba ane periksa.. g ada masalah kok... Lina + Reply Oktober 19, 2015 at 4:23 am makasih ya berguna sekali tutorial dan penjelasannya -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 1951 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip greencode Reply Oktober 22, 2015 at 1:55 pm Wah, ini dia yang ane cari-cari. Kebetulan lagi belajar tentang PHP. Sangat membantu! Ansori + Reply November 1, 2015 at 2:51 am Klo user udh berhasil login, user akan di arahkan ke halaman profile. Gmn y cranya agar user nggk bisa kembali ke halaman login setelah tanpa logout terlebih dahulu 77? ri Aamin econ 4 Reply November 1, 2015 at 3:11 am pas halaman profil, kasih kode untuk cek apakah user mempunyai session? jika iya, maka akan diredirect ke profile lagi. “1 zaka © Reply November 17, 2015 at 3:10 am Min mau tanya, itu di keterangan nya kalo salah / belum diisi ada pemberitahuan gitu, tapi ini saya coba ko ga muncul ya peringatannya. tp kalo user pass nya bener fungsinya jalan, bisa pindah ke halaman profile.. jd yg peringatan ga muncul kenapa ya 7? nv Admin tic hor ‘ Reply November 17, 2015 at 4:42 pm -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 2st as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip pada baris kode $error = “Username atau Password belum terdaftar"; coba tambahkan echo $error; Cici Wirachmat Reply November 17, 2015 at 5:21 pm Bagus dan jelas . praktis lagi, gak bertele-tele. trims banyak . cepet nambah ilmu indra Reply November 21, 2015 at 12:44am gan ko eror di session dan login ny? * nw Admin avicte surt > Reply November 24, 2015 at 2:23 am error dimananya? indra ‘© Reply November 21, 2015 at 12:47 am login di syntax line 24, kalau session di syntax line 11 dan 15, mohon perbaikannya.trimakasih yy Aarmin pcceave Reply November 24, 2015 at 2:22 am $_SESSION [login_user’] = $username; // Membuat Sesi/ session, maksudnya yang, ini? tidak ada yang perlu diperbaiki, karena thane ip.comcare-menat-formlogin-dengan-pho-mysql 2151 ansae Cara Mertat Form Login Dengan PHP MySQL Nyrip sudah benar. Kalau memang ada coba tunjukkan kodenya? syntax line 11 dan 15 dan 24 itu yang pada kode apa? bisa diperjelas? terimakasih. Ade Alan 4 Reply November 22, 2015 at 6:53 am gan, dimana nyari username dan password nya? (maaf masih belajr dan belum terlalu mengerti) ” nv Admin ticle Auth ‘ Reply November 24, 2015 at 2:24 am. perhatikan tabel karyawan gan, pas di field user dan pass. syahrudin 4 Reply November 24, 2015 at 9:34 am ga klo koneksi database di rubah menjadi koneksi.php gimana gan sudah utak atik ga bisa gan maaf masih pemula * nw Admin avicte Aust Reply November 24, 2015 at 1:03 pm agan harus paham dulu istilah include, coba download dulu source codenya dan habis itu pisah dan pelajari include, bisa search di google dulu. -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 2151 azs018 Cara Merbunt Form Login Dengan PHP MySQL - Nein hario bayu Reply November 27, 2015 at 1:41 am min mau tanya, $ses_sql=mysq|_query(‘select nama_karyawan from karyawan where user_karyawan='$user_check", $connection); itu maksudnya row user_karyawan apa? lalu isinya apaan ya? makasih ” nv Admin \ uth Reply November 27, 2015 at 4:03 am. perhatikan tabel karyawan gan. © disitu ada fields-nya... Rendra ‘© Reply November 27, 2015 at 3:30 am Gan mau nanya kalau untuk menampilkan data selain user_name gimana?? mis untuk : nama_karyawan,gaji_karyawan, yang lainnnya??7? ” nv Admin ticle Authé Reply November 27, 2015 at 4:06 am tinggal di select dan distore ke variable string, abis itu tinggal echo string; Rendra Reply November 27, 2015 at 3:32 am -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 2st ansae Cara Mertat Form Login Dengan PHP MySQL Nyrip Gan kalau untuk menampilkan data yang pada profile, untuk nama, gaji, dll gmn gan?? soalny yg tampil kan cm nama user? a yy Aamin sce + Reply November 27, 2015 at 4:07 am udah saya jawab ya... Rendra Reply November 28, 2015 at 1:32 am Gan nanya lagi @ Kok pas ane pilih ‘profile.php’ kok ga langsung ge redirect ke index ya gan?? gmn cr ny nnt agr user g login g bs akses itu?? mksi gan@ a riyy Aamin ces + Reply November 28, 2015 at 2:03 am pelajari dulu catch session gan, cari dulu di google... logikanya kalau session user belum create, tinggal dilempar ke index... jagob ‘© Reply Desember 10, 2015 at 9:34 am Pak admin saya mau tanya, jika saya menggunakan wordpress saya harus meletakan dimana skrip tersebut atau adakah plugin dari login tersebut, sebab saya mau membuat member dari pengunjung di website -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 2st aps2016 * Cara Membust Form Login Dengan PHP MySQL. - Nyetip terima kasih nv Admin arice auch Reply Desember 10, 2015 at 1:33 pm silahkan anda aktifkan fungsi member pada wordpress anda, jadi tidak usah memakai form login lagi... silahkan cari dulu di google. Indra Aditia Reply Desember 10, 2015 at 10:31 am Gan.. Scrip koneksi.php nya saya pakai ini : $mysqli = new mysqli(localhost, ‘root, ", login’) or die (‘Gagal Mengkoneksikan ke Database”); karena kalau pakai ini $connection = mysql_connect(‘localhost’, “root’, “; $db = mysql_select_db('tes_db", $connection); katanya sudah tidak available lagi di PHP 5.5 Masalahnya waktu saya buat script querynya malah error. respon errornya : Warning: mysq|_num_rows() expects parameter 1 to be resource, boolean given in C:xampphtdocstest- appestcek_login.php on line 14 Tolg bantu dulu gan, kira2 script apa yg bisa saya gunakan untuk pencarian query nama dan passwordnya.. -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 251 aps2016 Cara Membust Form Login Dengan PHP MySQL. - Nyetip Admin anciesu 4 Reply Desember 10, 2015 at 1:44 pm oh, ada pembaruan ya... maaf belum sempat update.. untuk pencarian query nama $sql = “select nama_karyawan from karyawan where user_karyawan='$user_check”; $result = $mysqli->query($sql); if (Sresult->nurn_rows > 0) { while($row = $result->fetch_assoc() { echo “nama: . $row["nama_karyawan'). ” } pelse{ echo “0 results"; y $mysqli->closed; Indra Aditia ‘© Reply Desember 11, 2015 at 2:16 pm Gan.. Code script nya sudah berjalan di XAMPP. Muncul masalah baru. Webnya saya upload ke hosting, kenapa tidak berjalan. Padahal di XAMPP sudah berjalan dan tidak ada masalah. Web yang saya buat di http:// adm gamamen. xyz Dibantuin lagi ya gan.. Thanks.. -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 2st as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip i Article) Repl * nw Admin ‘eply Desember 17, 2015 at 4:06 pm pelajari pesan error yang muncul, bisa tolong tulisan error yang muncul? Pradana Reply Desember 11, 2015 at 6:16 pm Min Kalo tutorial form register ada gak min 2? Kalo gak ada tolong di kasih dong totornya thanks min... ini form loginnya keren banget sangat membantu a yy Bamin oe + Reply Desember 17, 2015 at 4:07 pm form register belum buat, OBEN Reply Desember 23, 2015 at 6:12 pm min aksi register nya mana? a ry Admin Ie Aut 4 Reply Desember 24, 2015 at 2:55 am tidak dibuat, di judul artikel masih mengacu pada form login -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql ast as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip FR13NDS, 4 Reply Desember 24, 2015 at 1:49 pm Gan, bikin yang MySQLi dong... *” nv Admin = avice sur Reply Desember 24, 2015 at 2:06 pr ditunggu ya gan, lagi sibuk dunia offline nih... Habib 4 Reply Desember 24, 2015 at 7:40 pm Gan ane install di WamppServer. di index sih aman. pas berhasil login kok ada tulisan gini ya G) Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C\wamp\wwwisession.php on line 3 Call Stack # Time Memory Function Location 1 0.0052 133224 {main}() ..\profile.php:0 2.00081 136600 include( ‘CAwamp\wwwi\session. php’) ..\profile.php:2 3 0.0082 136784 mysql_connect () ..\session.php:3 ” nv Admin ticle Auth Reply Desember 25, 2015 at 2:06 arn deprecated = usang atau kode telah -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql ast ansae Cara Mertat Form Login Dengan PHP MySQL Nyrip kedaluarsa... kode pada script ini tidak cocok dengan wampserver terbaru, anda harus dwngrade versi phpnya atau upgrade kode dengan menggunakan mysqli atau pdo, saya lagi berencana membuat tutorial dengan mysqli atau pdo, ditunggu ya. | Yayan 4 Reply Desember 28, 2015 at 2:48 am Mantap banget gan, makasih banget udah ngeshare ilmu bermanfaat. thanks * nw Admin le Aut Reply Januari 16, 2016 at 6:21 am sama-sama semoga bermanfaat Habib Reply Desember 28, 2015 at 9:57 am Mau tanya gan.. itu di halaman profile kan cuma ada data diri nama saja. Bagaimana cara menambah identitas semua input di database bisa di tampilkan di profile.php Minta skipnya dong. * nv Admin ticle Auth Reply Januari 16, 2016 at 6:26 am coba belajar otodidak dulu gan, intinya isian data diri itu bisa dimunculin dengan -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 2051 aps2016 Cara Membust Form Login Dengan PHP MySQL. - Nyetip menangkap hasil query ke string dan setelah itu tinggal echo... | * fe + if Habib Maret 9, 2016 at 6:04 pm. Reply ane udah coba otodidak di bagian ini gan >>>>// Ambil nama karyawan berdasarkan username karyawan dengan mysql_fetch_assoc $ses_sql=mysql_query("select nama_karyawan from karyawan where user_karyawan="$user_check", $connection); $row = mysq|_fetch_assoc($ses_sql); $login_session =$row[’nama_karyawan']; iffisset($login_session) mysql_close($connection); // Menutup koneksi udah ane edi buat cara sendiri tp di echo profil error mulu bantuan gaann... Habib Maret 9, 2016 at 6:10 pm 4 Reply maksudnya ane tambahin skrip di situ., ane edit.. ane panggil dg echo di profil malah error... -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 30051 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip Galang ‘© Reply Desember 30, 2015 at 3:30 am makasi banyak tutornya ya min, membantu banget hehe. Azmi Nur Nst Reply Januari 4, 2016 at 2:26 pm Thanks admin. It's works Arief © Reply Januari 16, 2016 at 1:09 am Gan ini kenapa ya? Warning: rysq|_num_rows() expects parameter 1 to be resource, boolean given in /home/u328764368/public_html/lat/login.php on line 24 Admin avs Aus 4 Reply * Ww Januari 16, 2016 at 7:03 am coba isi tabelnya gan... alfian ananda putra 4 Reply Januari 17, 2016 at 5:27 am Galat Pencarian SQL: -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 3151 aps2016 Cara Membust Form Login Dengan PHP MySQL. - Nyetip — Dumping database structure for tes_db CREATE DATABASE IF NOT EXISTS tes_db /*!40100 DEFAULT CHARACTER SET latin1 */; MySQL menyatakan: Dokumentasi #1044 - Access denied for user ‘u448140081_xycod'@'localhost’ to database ‘tes_db’ itu kenapa ya gan? Admin ick a Ww 4 Reply Januari 17, 2016 at 6:25 am #1044 — Access denied for user ‘u448140081_xycod’@'localhost' to database ‘tes_db’ itu artinya salah password atau user, mendingan hapus dulu query yang itu dan buat manual dbnya Alfian Ananda Putra 4 Reply Januari 18, 2016 at 11:10 pm Kan Saya Udah Nyoba Bikin Manual ,Tapi Gak Ke Konek Gitu ,Semua Script Padahal Sama * Nw -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql Admin til Reply Maret 9, 2016 at 4:11 am saya sudah mencoba ulang dan berhasil di pc saya, apakah sudah coba 3251 ansae Cara Mertat Form Login Dengan PHP MySQL Nyrip test koneksi db, caranya bisa dicari dalam tutorial php lengkap di web ini adhitya + Reply Januari 22, 2016 at 6:49 pr Min mau tanya, penggunaan placeholder buat tag input itu sama kaya default value dari textbox nya ya? Admin Repl a Ww y Maret 9, 2016 at 3:58 am anda benar, begitulah kerjanya putin ‘© Reply Januari 25, 2016 at 4:41 am gan bagi database login form untuk tutorial ini dong ory Aamin ce 4 Reply Maret 9, 2016 at 3:54 am tha itu sudah jelas, tinggal dumping ke mysql query Agus ‘© Reply Januari 26,2016 at 12:16 am Asli, kudu du ctrl+D nih nyekrip -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql ast as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip Admin asics au % Repl * Ww yy Maret 9, 2016 at 3:47 am silahkan gan... thanks Muhammad Yana Mulyana % Reply Januari 27, 2016 at 2:40 am min. bagaimana kalo saya ingin membandingkan data inputan pada form dengan data pada table di my sql? jadi contoh gini. inputanya . masukkan nama domain, dikasih variable $nama keudiam pilih ekstensi domain misal .com, dikasih variable $eks. nah pada table di database saya udah bikin list harganya untuk ekstensi domain. jadi saya ingin membandingkan ekstensi domain yang ada pada form dengan table di mysql. terima kasih yy Aaimin scene 4 Reply Maret 9, 2016 at 3:45 arn pakai metode select pada database dan where sesuai dengan kriteria isian form Gweenz Reply Februari 3, 2016 at 3:20 am Makasih Min Infonya , sangat Membantu -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 3451 ansc016 Cara Merbust Form Login Dengan PHP MySQL - Nyetip Angga Reply Februari 9, 2016 at 2:54pm Gan mau nanyak cara buat category untuk setiap posting website dengan php gimana ya ” nv Admin \r \uthor Reply Februari 28, 2016 at 5:16 am tinggal buat aja categorynya.. simple kan.. (1 pakai wordpress atau blogger. kalau php ya buat kolom category... DeadO Reply Februari 16, 2016 at 1:00 pm gan. di page profil kan ada yg tulisan biru, itu artinya berdasarkan nama user yg log in kan ? gimana cara buat row baru untuk menampilkan alamat dari si user yg log in ? trmksh * nw Admin avicte Aust Reply Februari 28, 2016 at 5:06 am tinggal tambah row alamat dan echo kan... Fajar) ‘© Reply Februari 16, 2016 at 251 pm min minta pin bb atau no hp dong.. biar enak nih tanya jawabnya hihihi.. boleh gx nih min? -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 3951 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip ayy Aémin secon + Reply Februari 28, 2016 at 5:04 am nyekripweb@gmail.com email aja.. gop kok ® Rizqi Setia Reply Februari 20, 2016 at 2:42 pm cara mengintegrasikan login form ke database mysqinya giamana yak? iy Amin scene 4 Reply Februari 28, 2016 at 4:41 am integrasi pada saat post atau get form Iman Maulana ‘© Reply Maret 8, 2016 at 11:34am min awalnya saya bikin udah berhasil, tapi sewaktu- waktu saya merestore laptop saya. Ga taunya databasenya pada kehapus. Akhirnya saya bikin lagi tapi malah jadi gaberhasil ;; Ini script yang saya pake window.alert(‘Data yang Anda Masukkan Salah!\nAtau ID Anda Belum Terdaftar.") im Article Aut % Repl * nw Admin le Auth ply Maret 9, 2016 at 2:45 am tha itu ada tulisan ID belum terdaftar, coba -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql ast Cara Membust Form Login Dengan PHP MySQL. - Nyetip cek databasenya... apaka ID ada? Iman Maulana ‘© Reply Maret 9, 2016 at 1:10 pm Loh ko script nya ga ke copy semua :3 Ini script yang saya pake : Apa yang salah dengan script yang saya pake ini min ? if nya gamau true mulu ;; window.alert(‘Data yang Anda Masukkan Salah!\nAtau ID Anda Belum Terdaftar.”) Iman Maulana © Reply Maret 9, 2016 at 1:12 pm maap jadi spam min :3 Loh ko script nya ga ke copy semua :3 error_reporting(0); include “koneksi.php"; session_start(); $username = $_POST[username'], $password = $_POSTI’password']; $user_check=$_SESSION['login_user’]; $query = mysq|_query("select * from t_login where pass="$password’ AND -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql mist aps2016 * ada Maret 9, 2016 at 4:30 am Cara Membust Form Login Dengan PHP MySQL. - Nyetip username="$username” $rows = mysq|_num_rows($query); if (Grows==1){ $_SESSION[login_user’]-$username; header("location: index.php"; pelse{ window.alert("Data yang ‘Anda Masukkan Salahi\nAtau ID Anda Belum Terdaftar.”) mysql_close($connection); } A / Admin + tho Maret 17, 2016 at 1255 pm, pada $query itu blum ada kurung tutupnya Reply tutorial buat login php yang multi user dong gan * Nw Admin Reply Maret 9, 2016 at 11:52 am ini sudah multi user gan -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 3051 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip Rizkie + Reply Maret 15,2016 at 12:01 pm Gan mau tanya error gini salahnya dimana ya? Fatal error: Uncaught Error: Call to undefined function mysql_connect) in C:\xampp\htdocs\Belajar\login.php:14 Stack trace: #0 C:\xampp\htdocs\Belajar\index.php(2): included) #1 {main} thrown in C:\xampp\htdocs\Belajar\login.php on line 14 im Aricle Author % Repl * Aw Admin th ‘eply Maret 17, 2016 at 12:59 pm. coba turunin versi php agan... function mysql_connect() sudah tidak dikenali pada php terbaru Malik Abimanyu + Reply Maret 17, 2016 at 730 am kalau bikinnya pakai Xampp bisa gak min? a yy Aamin cen + Reply Maret 17, 2016 at 1:05 pm bisa kok, jangan lupa di run apache nya a Malik Abimanyu Reply Maret 19, 2016 at 9:01 am -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 3051 aps2016 Cara Membust Form Login Dengan PHP MySQL. - Nyetip Oke min terima kasin @ syahal © Reply Maret 19, 2016 at 10:54am Nice share, sangat bermanfaat min:) Btw, ada yang ingin saya tanyakan min. Di script kan ditulis notif berupa kalimat jika salah memasukkan pass/username, dsb. Sehingga apabila salah memasukkan pass/username ada notif seperti pop- up, lalu ulangi login. Tp knp pas sy coba tulis username/pass secara acak alias asal :D, kok notif bahwa kita salah memasukkan pass/username nya itu ngga muncul ya? Thx min te Aut 4 Reply nv Admin Maret 19, 2016 at 3:57 pm. pesan error dalam skrip diatas belum dimunculin, nanti akan saya edit. tinggal di tambahi echo $error; pada baris yelse{ $error = “Username atau Password belum terdaftar’; echo $error + Devis Reply Maret 23, 2016 at 1:04 pm gan mau tanya nih, itu dalam agan membuat skripnya menggunakan php versi berapa ya? soalnya saya sekarang pake versi 5.5.33 udah gak bisa atau gak cocok sama skrip agan nih -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 40051 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip a yy Aamin auth + Reply Maret 24, 2016 at 2:59 pm saya memakai PHP Version 5.3.1 pada xampp versi 1.7.3 *” Devis Reply Maret 24, 2016 at 3:42 pm oke, terima kasih min. oh iya saya mau tanya lagi nih min, kalo mau beda tampilan pada setiap user itu bagaimana ya? mainnya dibagian mana ya min? mohon bantuannya ya, saya pemula hehehe i Article) Repl * nw Admin ‘eply Maret 25, 2016 at 3:37 am pernah coba tampilin kode htm! lewat skrip php? contohnya skrip html selalu berubah sesuai kondisi if dalarn php. 3 Devis * Mei 8, 2016 at 6:56 am saya masih bingung min kalo rhmryrpcomcoramanbuatorsogindengansro-rya! 51 ansae Cara Mertat Form Login Dengan PHP MySQL Nyrip penerapannya dalam skrip yang agan buat Ahmad ‘ Reply April, 2016 at 2:48 pm Terimakasih gan, sudah saya praktekkan dan berhasil.. semoga selalu maju nyekrip.com ” nv Admin ticle Auth Reply Mei 8, 2016 at 2:31 pm ul list menu if (admin) ¢ li semua list } else if (petugas) { li untuk petugas yelse{ li untuk selain keduanya > ini case pada tampilan menu semoga membantu Titi Reply April7, 2016 at 2:08 pm bang, saya sudah copy dan cek codingnya, namun ketika di klik Login, kok ga direct ke profile.php ya? Admin ticle Auth Reply s Ww April 10, 2016 at 3:59 pm -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 42151 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip coba langsung download aja, mungkin pas copy ada yang keselip _| eri Reply April 11, 2016 at 2:19 pm mas, saya kan uda buat login nya tp ga bisa masuk krna lupa passwordnya.. cara nya dapatin passwordnya gmn mas... help me please. ry Aamin cs 4 Reply April 13, 2016 at 2:23 pm lihat di tabel karyawan dan perhatikan pada kolom pass_karyawan 2 lendsham % Reply April 12, 2016 at 7:36 am gan yg script database nya itu dicopy ke notepad atau gimana?, saya pakai apache. scriptnya saya copy ke ke apache tapi pas login ga nampil ke profile.php * nw Admin avicte Aust Reply April 13, 2016 at 2:20 pm itu untuk membuat database dan tabel, jalankan di query © Reply btouhmwnysei.comcara-meniuat-frrlogin-dengar-ohp-mal 4351 22016 Cara Merbust FormLogin Dengan PHP MySQL - Nytcip 3 ubmansion April 18, 2016 at 2:04 pm Gan kok malahan gini ya pas masuk ke profile,php? Object of class mysqli_result could not be converted to string, itu errornya ada di session.php yg ini $ses_sql=mysq|_query("select nama_karyawan from karyawan where user_karyawan='$user_check", $connection); Admin yecie sur 4 Reply * Ww April 29, 2016 at 2:07 pm turunin versi xampp yang dipakai © edjun 4 Reply April 25, 2016 at 12:58 pm Mohon ijin admin, mau sedikit nanya nih... Ane |gi dapet tugas kuliah yaitu membuat website pengajuan cuti online, berarti kan ada 3 login yah,, Contoh nya, login untuk admin itu bisa akses semua nya, yg kedua login untuk petugas yg memberi ijin itu berarti kan akses nya tidak semua seperti login admin, yg ketiga login user, klo user berarti fasilitas nya hanya untuk pengajuan cuti doang,, Nah itu gimana min coding nya, mohon bantuan nya kepada admin Terima kasih * nw Admin le Aut Reply April 29, 2016 at 1:07 pm ul list menu if (admin) { -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 4451 ansae Cara Mertat Form Login Dengan PHP MySQL Nyrip li semua list } else if (petugas) { li untuk petugas yelse{ li untuk selain keduanya } semoga membantu dima Reply April 30, 2016 at 11:21 am Mau Nanya Min Fungsi Dari (‘login_user'] apa yaa? Terima Kasih a, + Reply Mei 1, 2016 at 2:32 am $_SESSION['login_user’] ? mohon yang lengkap.. | itu menangkap variabel session Widiya 4 Reply Mei 5, 2016 at 8:41 am Min, mau nanya. Aku ‘kan udah download script yang udah admin sediakan. Tapi kenapa ketika login, tidak bisa di arahkan ke halaman profile? ry Amin pcre 4 Reply Mei 6, 2016 at 2:48 am saya sudah mencoba, dan berhasil Iho thane ip.comcare-menat-formlogin-dengan-pho-mysql 4951 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip adi Reply Mei 7, 2016 at 6:15 pm klo yg tampil curna nama, kenapa didatabase ada gaji dan alm karyawan om? ” nv Admin ticle Auth Reply Mei 8, 2016 at 3:53 am karena yang ditampilkan cura nama :), anda bisa menambahkan untuk gaji dll said ‘ Reply Juni 3, 2016 at 3:32 am bagi sqinya donk gan... biar tinggal import databasenya... makasih a nw Admin Avicie Auth ‘© Reply Juni 14, 2016 at 1:51 pm baca dengan teliti gan, tuh ada diatas. chang ‘© Reply Juni 3, 2016 at 6:00 am mas, Fatal error: Uncaught Error: Call to undefined function mysql_connecti) in C:A\xampp\htdocs\login\login.php:14 Stack trace: #0 C:\xampp\htdocs\login\index.php(2): included #1 {main} thrown in C:\xampp\htdocs\login\login. php -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 4051 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip online 14\ ini kenapa ya ? tolong jawabannya mas yy Aamin accesve Reply Juni 14, 2016 at 1:50 pm turunin versi apachenya fatrin © Reply Juni 4, 2016 at 5:09 am ngisi pasword dan userny dimana mas ? scrip yang mana ya yg mau diganti 7? trims. Admin aricic auth Reply * Ww . Juni 11, 2016 at 1:48 pm pass dan user bisa langsung diisi di databas jehan suhana 4 Reply Juni 6, 2016 at 252 am min mau minta bantuan dong aku masih pemula banget. gini min, aku tu mau bikin kolom komentar gt min di website yg aku kerjain, terus aku mau nya pas org udah ngetik komen nya mereka klik tombol “Komentar” terus komen nya muncul. itu cara nya gimana mimin. mau mnta tolong bantuin jelasin dong min. -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql aris as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip thanks before a yy AMmin aut + Reply Juni 7, 2016 at 9:14 am buat komentar? buat webnya pakai cms aja.. DivAlex 4 Reply Juni 7, 2016 at 2:52 pm gan saya sudah coba dan halaman login sudah terbuka. tapi ketika login dengan akun yg didatabase malah kembali lagi ke halaman login. itu salah dimana nya? thanks gan yy Aamin ace ave Reply Juni 14, 2016 at 1:42 pm password sudah benar? fahmy abdul aziz 4 Reply Juni 12, 2016 at 10:24 pm. Mimin mau nanya nih, setelah logout tapi masih bisa di back. gimana caranya agar seakan2 disaat tombol back yang tampil hanya halamn login saja tidak masuk ke halaman aplikasi?? mohon pencerahannya. © Reply btouhmwnysei.comcara-meniuat-frrlogin-dengar-ohp-mal ast as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip * nv Admin ave aur Juni 17, 2016 at 12:53 pm catch session, jadi jika session sudah di hapus maka suruh login lagi... dani 4 Reply Juni 16, 2016 at &:08 am mas gimana caranya encripsi web kita biar gak bisa di copas orang lain?? sama gimana cara menyembunyikan file index.php dll. kyak di wordpress itu kan file index nya gak kelihatan di url x. btw saya buat sendiri webx dari html + css + php * nv Admin ticle Author ‘> Reply Juni 17, 2016 at 12:26 pm pakai routing mas Arif Firman N © Reply Juni 19, 2016 at 4:02 am Squery = mysq|_query((‘select * from karyawan where pass_karyawan="$password! AND user_karyawan='$username", $connection); $rows = mysql_num_rows($query); if ($row: 1) Kalau Error Dibagian Ini. Bagaimana Penyelesaiannya? thane ip.comcare-menat-formlogin-dengan-pho-mysql 49951 sox ContarsstFemlasndmeFHP aN Admin arice auch Reph * nw Juni 25, 2016 at 11:16 am. pesan eror di php seperti apa? kan ada tuh pesannya Aleksandr + Reply Juni 23, 2016 at 12:22 am gk bisa login gan a yy Bamin os + Reply Juni 25, 2016 at 11:10am. sudah saya coba bisa loh gan... baca dengan teliti yang diatas gan... Tinggalkan Balasan ‘Alamat surel Anda tidak akan dipublikasikan. Ruas yang wajib ditandai * Imnota robot FeCAPTCHA, Privacy Tes -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 50051 as2016 Cara Merbuat Form Login Dengan PHP MySQL - Nyetip Nama* Surel Situs Web Kirim Komentar ) Beritahu saya akan tindak lanjut komentar melalui sure. | Beritahu saya akan tulisan baru melalui surel. Kontak Kami / Disclaimer / Kebijakan Privasi / DMCA. © Copyright 2015, Nyekrip - Web Tutorial Indonesia -ttaawaryseip.comicara-menuaYormlogin-dengar-pre-mysql 5051</div><div class="after_doc_wrapper is_bot"><section class="_1ifY6L"><div class="wrapper__doc_page_shared_recommender_list" data-e2e="recommender-list"><h2 class="list_title" data-e2e="list-title">Вам также может понравиться</h2><ul class="list_content_wrapper" data-e2e="list-content-wrapper"><li class="wrapper__mono_document_list_item" data-e2e="document-list-item"><div class="view_wrapper"><div data-e2e="list-item-info" class="list_item_container"><a data-e2e="list-item-link" class="link" href="https://id.scribd.com/document/333386003/Laporan-Kunjungan-Industri-Pada-PT-Gunung-Slamat" target="_blank"><span class="visually_hidden">Laporan Kunjungan Industri Pada PT. Gunung Slamat</span></a><div class="thumbnail_and_info"><img src="https://imgv2-1-f.scribdassets.com/img/document/333386003/149x198/958e7af73f/1545194665?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/333386003/298x396/5323a5d24a/1545194665?v=1 2x" alt="Laporan Kunjungan Industri Pada PT. Gunung Slamat" aria-label="PDF Документ" class="thumbnail_img"/><div class="doc_info"><div class="_1E-hw3" data-testid="meta-data">Документ<span class="SvgIcon-module_wrapper__1fPqw _2v3DGp"><svg width="8" height="8" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><circle cx="4" cy="4" r="2" fill="currentColor"></circle></svg></span>19 страниц</div><div class="title" data-e2e="doc-info-title">Laporan Kunjungan Industri Pada PT. Gunung Slamat</div><div class="_38nure" data-e2e="doc-info-author">Haranobu Fujikage</div><div class="_16H48L">Оценок пока нет</div></div></div></div></div></li><li class="wrapper__mono_document_list_item" data-e2e="document-list-item"><div class="view_wrapper"><div data-e2e="list-item-info" class="list_item_container"><a data-e2e="list-item-link" class="link" href="https://id.scribd.com/doc/313492598/Siklus-Produksi-Perusahaan" target="_blank"><span class="visually_hidden"> Siklus Produksi Perusahaan</span></a><div class="thumbnail_and_info"><img src="https://imgv2-2-f.scribdassets.com/img/document/313492598/149x198/ea3f2c24e7/1544277924?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/313492598/298x396/81a595779c/1544277924?v=1 2x" alt=" Siklus Produksi Perusahaan" aria-label="PDF Документ" class="thumbnail_img"/><div class="doc_info"><div class="_1E-hw3" data-testid="meta-data">Документ<span class="SvgIcon-module_wrapper__1fPqw _2v3DGp"><svg width="8" height="8" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><circle cx="4" cy="4" r="2" fill="currentColor"></circle></svg></span>21 страница</div><div class="title" data-e2e="doc-info-title"> Siklus Produksi Perusahaan</div><div class="_38nure" data-e2e="doc-info-author">Ghulam Faqih Hasibuan</div><div class="_16H48L">Оценок пока нет</div></div></div></div></div></li><li class="wrapper__mono_document_list_item" data-e2e="document-list-item"><div class="view_wrapper"><div data-e2e="list-item-info" class="list_item_container"><a data-e2e="list-item-link" class="link" href="https://id.scribd.com/doc/71000924/VB-Net" target="_blank"><span class="visually_hidden">VB.Net</span></a><div class="thumbnail_and_info"><img src="https://imgv2-2-f.scribdassets.com/img/document/71000924/149x198/e697a31016/1542797652?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/71000924/298x396/a026c6dd3f/1542797652?v=1 2x" alt="VB.Net" aria-label="PDF Документ" class="thumbnail_img"/><div class="doc_info"><div class="_1E-hw3" data-testid="meta-data">Документ<span class="SvgIcon-module_wrapper__1fPqw _2v3DGp"><svg width="8" height="8" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><circle cx="4" cy="4" r="2" fill="currentColor"></circle></svg></span>276 страниц</div><div class="title" data-e2e="doc-info-title">VB.Net</div><div class="_38nure" data-e2e="doc-info-author">v4r1</div><div class="_16H48L">Оценок пока нет</div></div></div></div></div></li><li class="pills"><div class="wrapper__pill_list content_pills"><ul class="pill_list_row unstyled_list"><li class="pill_list_item"><a class="wrapper__text_button wrapper__pill_button" href="/magazines"><div class="pill_button_visible">Журналы</div></a></li><li class="pill_list_item"><a class="wrapper__text_button wrapper__pill_button" href="https://ru.scribd.com/podcasts"><div class="pill_button_visible">Подкасты</div></a></li><li class="pill_list_item"><a class="wrapper__text_button wrapper__pill_button" href="/sheetmusic"><div class="pill_button_visible">Нотное издание</div></a></li></ul></div></li><li class="wrapper__mono_document_list_item" data-e2e="document-list-item"><div class="view_wrapper"><div data-e2e="list-item-info" class="list_item_container"><a data-e2e="list-item-link" class="link" href="https://id.scribd.com/document/331251656/as-txt" target="_blank"><span class="visually_hidden">Davis, Gordon, 1991, Kerangka Dasar Sistem Informasi Manajemen Bagian I Pengantar, PT. Pustaka Binaman Pressindo, Jakarta</span></a><div class="thumbnail_and_info"><img src="https://imgv2-1-f.scribdassets.com/img/document/331251656/149x198/b69f57ef00/1479276260?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/331251656/298x396/8b70b92591/1479276260?v=1 2x" alt="Davis, Gordon, 1991, Kerangka Dasar Sistem Informasi Manajemen Bagian I Pengantar, PT. Pustaka Binaman Pressindo, Jakarta" aria-label="PDF Документ" class="thumbnail_img"/><div class="doc_info"><div class="_1E-hw3" data-testid="meta-data">Документ<span class="SvgIcon-module_wrapper__1fPqw _2v3DGp"><svg width="8" height="8" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><circle cx="4" cy="4" r="2" fill="currentColor"></circle></svg></span>1 страница</div><div class="title" data-e2e="doc-info-title">Davis, Gordon, 1991, Kerangka Dasar Sistem Informasi Manajemen Bagian I Pengantar, PT. Pustaka Binaman Pressindo, Jakarta</div><div class="_38nure" data-e2e="doc-info-author">Haranobu Fujikage</div><div class="_16H48L">Оценок пока нет</div></div></div></div></div></li><li class="wrapper__mono_document_list_item" data-e2e="document-list-item"><div class="view_wrapper"><div data-e2e="list-item-info" class="list_item_container"><a data-e2e="list-item-link" class="link" href="https://id.scribd.com/document/328117055/Modul-Pemrograman-Lanjut-2012" target="_blank"><span class="visually_hidden">Modul Pemrograman Lanjut 2012</span></a><div class="thumbnail_and_info"><img src="https://imgv2-2-f.scribdassets.com/img/document/328117055/149x198/78b9549825/1544784166?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/328117055/298x396/adbd8b5ace/1544784166?v=1 2x" alt="Modul Pemrograman Lanjut 2012" aria-label="PDF Документ" class="thumbnail_img"/><div class="doc_info"><div class="_1E-hw3" data-testid="meta-data">Документ<span class="SvgIcon-module_wrapper__1fPqw _2v3DGp"><svg width="8" height="8" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><circle cx="4" cy="4" r="2" fill="currentColor"></circle></svg></span>51 страница</div><div class="title" data-e2e="doc-info-title">Modul Pemrograman Lanjut 2012</div><div class="_38nure" data-e2e="doc-info-author">Haranobu Fujikage</div><div class="_16H48L">Оценок пока нет</div></div></div></div></div></li><li class="wrapper__mono_document_list_item" data-e2e="document-list-item"><div class="view_wrapper"><div data-e2e="list-item-info" class="list_item_container"><a data-e2e="list-item-link" class="link" href="https://id.scribd.com/document/258487336/soal-un-matematika-smk-kelompok-teknologi-kesehatan-dan-pertanian-tahun-2013-kode-mtk-tkp-sk-34" target="_blank"><span class="visually_hidden">Soal Un Matematika SMK Kelompok Teknologi Kesehatan Dan Pertanian Tahun 2013 Kode MTK - TKP - SK - 34</span></a><div class="thumbnail_and_info"><img src="https://imgv2-1-f.scribdassets.com/img/document/258487336/149x198/ec2da67349/1542957595?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/258487336/298x396/871fa833d8/1542957595?v=1 2x" alt="Soal Un Matematika SMK Kelompok Teknologi Kesehatan Dan Pertanian Tahun 2013 Kode MTK - TKP - SK - 34" aria-label="PDF Документ" class="thumbnail_img"/><div class="doc_info"><div class="_1E-hw3" data-testid="meta-data">Документ<span class="SvgIcon-module_wrapper__1fPqw _2v3DGp"><svg width="8" height="8" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><circle cx="4" cy="4" r="2" fill="currentColor"></circle></svg></span>10 страниц</div><div class="title" data-e2e="doc-info-title">Soal Un Matematika SMK Kelompok Teknologi Kesehatan Dan Pertanian Tahun 2013 Kode MTK - TKP - SK - 34</div><div class="_38nure" data-e2e="doc-info-author">Haranobu Fujikage</div><div class="_16H48L">Оценок пока нет</div></div></div></div></div></li><li class="wrapper__mono_document_list_item" data-e2e="document-list-item"><div class="view_wrapper"><div data-e2e="list-item-info" class="list_item_container"><a data-e2e="list-item-link" class="link" href="https://id.scribd.com/document/258487335/soal-un-matematika-smk-kelompok-teknologi-kesehatan-dan-pertanian-tahun-2013-kode-mtk-tkp-sk-33" target="_blank"><span class="visually_hidden">Soal Un Matematika SMK Kelompok Teknologi Kesehatan Dan Pertanian Tahun 2013 Kode MTK - TKP - SK - 33</span></a><div class="thumbnail_and_info"><img src="https://imgv2-1-f.scribdassets.com/img/document/258487335/149x198/d90cc1dbe1/1542375993?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/258487335/298x396/53506968c9/1542375993?v=1 2x" alt="Soal Un Matematika SMK Kelompok Teknologi Kesehatan Dan Pertanian Tahun 2013 Kode MTK - TKP - SK - 33" aria-label="PDF Документ" class="thumbnail_img"/><div class="doc_info"><div class="_1E-hw3" data-testid="meta-data">Документ<span class="SvgIcon-module_wrapper__1fPqw _2v3DGp"><svg width="8" height="8" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><circle cx="4" cy="4" r="2" fill="currentColor"></circle></svg></span>9 страниц</div><div class="title" data-e2e="doc-info-title">Soal Un Matematika SMK Kelompok Teknologi Kesehatan Dan Pertanian Tahun 2013 Kode MTK - TKP - SK - 33</div><div class="_38nure" data-e2e="doc-info-author">Haranobu Fujikage</div><div class="_16H48L">Оценок пока нет</div></div></div></div></div></li></ul></div></section></div></div><div class="GridColumn-module_wrapper_soqyu- GridColumn-module_hide_below_xl4_bYNFRN GridColumn-module_extended_xl5_1_497ANP GridColumn-module_extended_xl4_1_aVCUXY GridColumn-module_extended_xl3_1_OyhfPD GridColumn-module_extended_xl2_1_zU58Qn GridColumn-module_extended_xl_1_w5JR10 GridColumn-module_extended_l_1_SLXmKl GridColumn-module_extended_m_1_6KsVnI GridColumn-module_extended_s_1_bvd-99 GridColumn-module_extended_xs_1_EEhUJk GridColumn-module_extended_xxs_1_1D2-MB _2muN75"></div><div class="GridColumn-module_wrapper_soqyu- GridColumn-module_hide_below_xl_bqFPJU GridColumn-module_extended_xl5_4_-JK-Nz GridColumn-module_extended_xl4_3_YfaGhk GridColumn-module_extended_xl3_4_NvhBIh GridColumn-module_extended_xl2_4_BKs70y GridColumn-module_extended_xl_4_G5hgca GridColumn-module_extended_l_4_XlSdoH GridColumn-module_extended_m_4_i0jL2h GridColumn-module_extended_s_4_ZU5JoR GridColumn-module_extended_xs_4_NH6tlg GridColumn-module_extended_xxs_4_dHKOII _3LpDjY"></div></div><div class="GridRow-module_wrapper_Uub42x GridRow-module_extended_Bvagp4"><div class="GridColumn-module_wrapper_soqyu- GridColumn-module_extended_xl5_16_cffZGL GridColumn-module_extended_xl4_12_UeyicL GridColumn-module_extended_xl3_12_TsrxQ- GridColumn-module_extended_xl2_12_ceos-a GridColumn-module_extended_xl_12_7vx87Y GridColumn-module_extended_l_12_gCRsqg GridColumn-module_extended_m_8_bDZzOd GridColumn-module_extended_s_4_ZU5JoR GridColumn-module_extended_xs_4_NH6tlg GridColumn-module_extended_xxs_4_dHKOII"></div></div></div><div class="GridContainer-module_wrapper_7Rx6L- _3-Y4VY GridContainer-module_extended_fiqt9l"><section aria-hidden="true" class="scrolling_component exited collapsed" style="transform:translateY(100px)"></section><div class="GridRow-module_wrapper_Uub42x GridRow-module_extended_Bvagp4"><div class="GridColumn-module_wrapper_soqyu- GridColumn-module_extended_xl5_11_JJnpkV GridColumn-module_extended_xl4_9_GigIAQ GridColumn-module_extended_xl3_8_frUn0z GridColumn-module_extended_xl2_8_P9dscY GridColumn-module_extended_xl_12_7vx87Y GridColumn-module_extended_l_12_gCRsqg GridColumn-module_extended_m_8_bDZzOd GridColumn-module_extended_s_4_ZU5JoR GridColumn-module_extended_xs_4_NH6tlg GridColumn-module_extended_xxs_4_dHKOII _1sDUp7"><div class="_1GApkd"></div></div></div></div></section><footer class="Footer-module_wrapper__7jj0T _35Otjh" id="global_footer"><h2 class="visually_hidden">Нижнее меню</h2><div class="GridContainer-module_wrapper__7Rx6L GridContainer-module_extended__fiqt9"><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_extended_xl5_16__cffZG GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="BackToTopLink-module_wrapper__HTQnD visually_hidden"><a data-e2e="back-to-top-link" href="#global_header" class="BackToTopLink-module_link__EOy-v">Вернуться наверх</a></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_s__Lbw11 GridColumn-module_extended_xl5_3__xvxiH GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><div class="Footer-module_horizontalColumn__vuSBJ"><p class="Footer-module_columnHeader__gcdjp">Сведения</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="О Scribd" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_about_scribd_link" href="https://www.scribd.com/about"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">О Scribd</span></span></a></li><li><a aria-disabled="false" aria-label="Everand: электронные книги и аудиокниги" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_everand_books_audiobooks_link" href="https://www.everand.com" target="_blank"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Everand: электронные книги и аудиокниги</span></span></a></li><li><a aria-disabled="false" aria-label="SlideShare" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="shared.footer.slideshare" href="https://www.slideshare.net/" target="_blank"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">SlideShare</span></span></a></li><li><a aria-disabled="false" aria-label="Печатные издания" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_press_link" href="https://www.scribd.com/media" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Печатные издания</span></span></a></li><li><a aria-disabled="false" aria-label="Присоединяйтесь к нашей команде!" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_join_our_team_link" href="https://www.scribd.com/careers" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Присоединяйтесь к нашей команде!</span></span></a></li><li><a aria-disabled="false" aria-label="Свяжитесь с нами" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_contact_us_link" href="https://www.scribd.com/contact" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Свяжитесь с нами</span></span></a></li><li><a aria-disabled="false" aria-label="Пригласить друзей" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_invite_friends_link" href="https://ru.scribd.com/referrals"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Пригласить друзей</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd для предприятия" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_scribd_for_enterprise_link" href="https://www.scribd.com/enterprise"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Scribd для предприятия</span></span></a></li></ul></div></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_s__Lbw11 GridColumn-module_extended_xl5_3__xvxiH GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><p class="Footer-module_columnHeader__gcdjp">Поддержка</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Справка / Вопросы и ответы" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_help_faq_link" href="http://support.scribd.com/hc/ru"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Справка / Вопросы и ответы</span></span></a></li><li><a aria-disabled="false" aria-label="Доступность" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_accessibility_link" href="https://support.scribd.com/hc/ru/articles/210129586-Accessibility-Notice"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Доступность</span></span></a></li><li><a aria-disabled="false" aria-label="Помощь при покупке" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_purchase_help_link" href="https://support.scribd.com/hc/en-us/sections/202246306"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Помощь при покупке</span></span></a></li><li><a aria-disabled="false" aria-label="AdChoices" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_adchoices_link" href="https://support.scribd.com/hc/en-us/articles/210129366"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">AdChoices</span></span></a></li></ul></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_s__Lbw11 GridColumn-module_extended_xl5_3__xvxiH GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><p class="Footer-module_columnHeader__gcdjp">Юридическая информация</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Условия" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_terms_link" href="https://support.scribd.com/hc/en-us/articles/210129326-General-Terms-of-Use"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Условия</span></span></a></li><li><a aria-disabled="false" aria-label="Конфиденциальность" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_privacy_link" href="https://www.scribd.com/privacy" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Конфиденциальность</span></span></a></li><li><a aria-disabled="false" aria-label="Авторское право" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_copyright_link" href="https://support.scribd.com/hc/en-us/sections/202246086"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Авторское право</span></span></a></li><li><a aria-disabled="false" aria-label="Не продавать и не передавать мою личную информацию" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_privacy_request_form_link" href="https://support.scribd.com/hc/articles/360038016931-Privacy-Rights-Request-Form"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Не продавать и не передавать мою личную информацию</span></span></a></li></ul></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_s__Lbw11 GridColumn-module_extended_xl5_3__xvxiH GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><p class="Footer-module_columnHeader__gcdjp">Социальные сети</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Scribd в Instagram" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_instagram_link" href="https://www.instagram.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 3.081c1.602 0 1.792.006 2.425.035.584.027.902.124 1.114.207.26.096.497.249.69.448.2.194.353.43.45.691.082.212.18.53.206 1.114.029.633.035.823.035 2.425 0 1.602-.006 1.792-.035 2.425-.027.585-.124.902-.207 1.114a1.99 1.99 0 01-1.138 1.138c-.212.082-.53.18-1.114.207-.633.029-.823.035-2.425.035-1.602 0-1.792-.006-2.425-.035-.585-.027-.902-.124-1.114-.207a1.858 1.858 0 01-.69-.449c-.2-.193-.353-.43-.45-.69-.082-.212-.18-.53-.206-1.114-.029-.633-.035-.823-.035-2.425 0-1.602.006-1.792.035-2.425.027-.585.124-.902.207-1.114.096-.26.25-.497.449-.69.193-.2.43-.353.69-.45.212-.082.53-.18 1.114-.206.633-.029.823-.035 2.425-.035L8 3.081zm0-1.082c-1.629 0-1.833.007-2.473.036-.64.03-1.076.132-1.457.28-.4.15-.763.387-1.063.692-.305.3-.541.663-.692 1.063-.148.381-.25.818-.279 1.457C2.007 6.165 2 6.37 2 8s.007 1.834.036 2.474c.03.64.13 1.075.279 1.456.15.4.387.763.692 1.063.3.305.663.541 1.063.692.381.148.818.25 1.457.279.638.029.844.036 2.473.036 1.63 0 1.834-.007 2.474-.036.64-.03 1.075-.13 1.456-.28a3.068 3.068 0 001.755-1.754c.148-.381.25-.818.279-1.457C13.993 9.835 14 9.63 14 8c0-1.63-.007-1.833-.036-2.473-.03-.64-.13-1.075-.28-1.456-.15-.4-.386-.763-.691-1.063a2.946 2.946 0 00-1.063-.692c-.381-.148-.818-.25-1.457-.279C9.835 2.007 9.63 2 8 2v-.001zm0 2.92a3.081 3.081 0 100 6.162A3.081 3.081 0 008 4.92zm0 5.082A2 2 0 118 6 2 2 0 018 10zm3.923-5.204a.72.72 0 11-1.44 0 .72.72 0 011.44 0z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Instagram</span></span> <!-- -->Instagram</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd в Twitter" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_twitter_link" href="https://twitter.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path d="M5.774 12.79c4.528 0 7.005-4.152 7.005-7.752 0-.118 0-.235-.007-.352A5.338 5.338 0 0014 3.276a4.55 4.55 0 01-1.414.428c.514-.34.899-.876 1.082-1.507a4.657 4.657 0 01-1.563.662 2.401 2.401 0 00-1.397-.823 2.26 2.26 0 00-1.561.287A2.636 2.636 0 008.065 3.6a2.995 2.995 0 00-.156 1.742 6.47 6.47 0 01-2.81-.826 7.175 7.175 0 01-2.264-2.02 2.98 2.98 0 00-.27 1.985c.142.676.511 1.266 1.032 1.652a2.267 2.267 0 01-1.117-.341v.034c0 .63.197 1.239.557 1.725.36.487.861.821 1.418.946-.362.109-.743.125-1.111.046.157.542.463 1.015.876 1.354.412.34.91.528 1.424.538-.872.758-1.95 1.17-3.058 1.169-.196 0-.391-.014-.586-.04a6.49 6.49 0 003.774 1.222" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Twitter</span></span> <!-- -->Twitter</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd на Facebook" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_facebook_link" href="https://www.facebook.com/Scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 2a6 6 0 01.938 11.927V9.734h1.397L10.602 8H8.937V6.875c0-.474.233-.938.978-.938h.757V4.462s-.08-.014-.21-.032a9.524 9.524 0 00-.887-.08 6.278 6.278 0 00-.246-.005c-1.37 0-2.267.83-2.267 2.334V8H5.54v1.734h1.524v4.193A6.002 6.002 0 018 2z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Facebook</span></span> <!-- -->Facebook</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd в Pinterest" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_pinterest_link" href="https://www.pinterest.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.217 12.268A5.98 5.98 0 018 14c-.62 0-1.218-.094-1.78-.269.246-.4.606-1.045.738-1.563l.375-1.427c.193.375.766.691 1.373.691 1.808 0 3.111-1.664 3.111-3.733 0-1.985-1.62-3.467-3.698-3.467-2.593 0-3.966 1.738-3.966 3.63 0 .884.47 1.975 1.22 2.326.113.054.178.03.202-.08l.058-.233.11-.448a.179.179 0 00-.04-.173c-.246-.3-.444-.854-.444-1.368 0-1.323 1.003-2.602 2.711-2.602 1.477 0 2.509 1.002 2.509 2.44 0 1.62-.82 2.745-1.886 2.745-.588 0-1.033-.489-.89-1.086.062-.255.143-.517.222-.772.142-.46.277-.898.277-1.228 0-.46-.246-.845-.76-.845-.602 0-1.086.622-1.086 1.457 0 .528.177.889.177.889s-.592 2.514-.7 2.983c-.12.518-.075 1.247-.02 1.722A6.003 6.003 0 012 8a6 6 0 016.653-5.965A5.988 5.988 0 0113.99 8.01a5.981 5.981 0 01-1.773 4.258z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Pinterest</span></span> <!-- -->Pinterest</span></span></a></li></ul></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_m__-PoVO GridColumn-module_extended_xl5_2__aqjlc GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_m__-PoVO GridColumn-module_extended_xl5_2__aqjlc GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><p class="Footer-module_columnHeader__gcdjp">Получите наши бесплатные приложения</p><ul class="mobile_icons wrapper__app_store_buttons"><li class="wrapper__store_button" data-e2e="app_store_btn"><a aria-label="Scribd — скачайте из App Store" class="app_link ios_btn" data-e2e="ios_btn" href="https://apps.apple.com/us/app/6448807714?mt=8&pt=298534"><div class="app_store_img"><img class="LazyImage-module_image__uh0sq" alt="Scribd — скачайте из App Store"/></div></a></li><li class="wrapper__store_button" data-e2e="app_store_btn"><a aria-label="Scribd — скачайте из Google Play" class="app_link google_play_btn" data-e2e="google_play_btn" href="https://play.google.com/store/apps/details?id=com.scribd.app.reader0.docs"><div class="app_store_img play_store_link"><img class="LazyImage-module_image__uh0sq" alt="Scribd — скачайте из Google Play"/></div></a></li></ul></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_s__NbVNC GridColumn-module_extended_xl5_16__cffZG GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><div class="Footer-module_verticalColumn__-CR6f"><p class="Footer-module_columnHeader__gcdjp">Сведения</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="О Scribd" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_about_scribd_link" href="https://www.scribd.com/about"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">О Scribd</span></span></a></li><li><a aria-disabled="false" aria-label="Everand: электронные книги и аудиокниги" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_everand_books_audiobooks_link" href="https://www.everand.com" target="_blank"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Everand: электронные книги и аудиокниги</span></span></a></li><li><a aria-disabled="false" aria-label="SlideShare" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="shared.footer.slideshare" href="https://www.slideshare.net/" target="_blank"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">SlideShare</span></span></a></li><li><a aria-disabled="false" aria-label="Печатные издания" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_press_link" href="https://www.scribd.com/media" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Печатные издания</span></span></a></li><li><a aria-disabled="false" aria-label="Присоединяйтесь к нашей команде!" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_join_our_team_link" href="https://www.scribd.com/careers" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Присоединяйтесь к нашей команде!</span></span></a></li><li><a aria-disabled="false" aria-label="Свяжитесь с нами" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_contact_us_link" href="https://www.scribd.com/contact" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Свяжитесь с нами</span></span></a></li><li><a aria-disabled="false" aria-label="Пригласить друзей" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_invite_friends_link" href="https://ru.scribd.com/referrals"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Пригласить друзей</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd для предприятия" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_scribd_for_enterprise_link" href="https://www.scribd.com/enterprise"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Scribd для предприятия</span></span></a></li></ul></div><div class="Footer-module_verticalColumn__-CR6f"><p class="Footer-module_columnHeader__gcdjp">Юридическая информация</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Условия" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_terms_link" href="https://support.scribd.com/hc/en-us/articles/210129326-General-Terms-of-Use"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Условия</span></span></a></li><li><a aria-disabled="false" aria-label="Конфиденциальность" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_privacy_link" href="https://www.scribd.com/privacy" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Конфиденциальность</span></span></a></li><li><a aria-disabled="false" aria-label="Авторское право" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_copyright_link" href="https://support.scribd.com/hc/en-us/sections/202246086"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Авторское право</span></span></a></li><li><a aria-disabled="false" aria-label="Не продавать и не передавать мою личную информацию" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_privacy_request_form_link" href="https://support.scribd.com/hc/articles/360038016931-Privacy-Rights-Request-Form"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Не продавать и не передавать мою личную информацию</span></span></a></li></ul></div></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_s__NbVNC GridColumn-module_extended_xl5_16__cffZG GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><div class="Footer-module_verticalColumn__-CR6f"><p class="Footer-module_columnHeader__gcdjp">Поддержка</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Справка / Вопросы и ответы" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_help_faq_link" href="http://support.scribd.com/hc/ru"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Справка / Вопросы и ответы</span></span></a></li><li><a aria-disabled="false" aria-label="Доступность" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_accessibility_link" href="https://support.scribd.com/hc/ru/articles/210129586-Accessibility-Notice"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Доступность</span></span></a></li><li><a aria-disabled="false" aria-label="Помощь при покупке" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_purchase_help_link" href="https://support.scribd.com/hc/en-us/sections/202246306"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Помощь при покупке</span></span></a></li><li><a aria-disabled="false" aria-label="AdChoices" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_adchoices_link" href="https://support.scribd.com/hc/en-us/articles/210129366"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">AdChoices</span></span></a></li></ul></div><div><p class="Footer-module_columnHeader__gcdjp">Социальные сети</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Scribd в Instagram" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_instagram_link" href="https://www.instagram.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 3.081c1.602 0 1.792.006 2.425.035.584.027.902.124 1.114.207.26.096.497.249.69.448.2.194.353.43.45.691.082.212.18.53.206 1.114.029.633.035.823.035 2.425 0 1.602-.006 1.792-.035 2.425-.027.585-.124.902-.207 1.114a1.99 1.99 0 01-1.138 1.138c-.212.082-.53.18-1.114.207-.633.029-.823.035-2.425.035-1.602 0-1.792-.006-2.425-.035-.585-.027-.902-.124-1.114-.207a1.858 1.858 0 01-.69-.449c-.2-.193-.353-.43-.45-.69-.082-.212-.18-.53-.206-1.114-.029-.633-.035-.823-.035-2.425 0-1.602.006-1.792.035-2.425.027-.585.124-.902.207-1.114.096-.26.25-.497.449-.69.193-.2.43-.353.69-.45.212-.082.53-.18 1.114-.206.633-.029.823-.035 2.425-.035L8 3.081zm0-1.082c-1.629 0-1.833.007-2.473.036-.64.03-1.076.132-1.457.28-.4.15-.763.387-1.063.692-.305.3-.541.663-.692 1.063-.148.381-.25.818-.279 1.457C2.007 6.165 2 6.37 2 8s.007 1.834.036 2.474c.03.64.13 1.075.279 1.456.15.4.387.763.692 1.063.3.305.663.541 1.063.692.381.148.818.25 1.457.279.638.029.844.036 2.473.036 1.63 0 1.834-.007 2.474-.036.64-.03 1.075-.13 1.456-.28a3.068 3.068 0 001.755-1.754c.148-.381.25-.818.279-1.457C13.993 9.835 14 9.63 14 8c0-1.63-.007-1.833-.036-2.473-.03-.64-.13-1.075-.28-1.456-.15-.4-.386-.763-.691-1.063a2.946 2.946 0 00-1.063-.692c-.381-.148-.818-.25-1.457-.279C9.835 2.007 9.63 2 8 2v-.001zm0 2.92a3.081 3.081 0 100 6.162A3.081 3.081 0 008 4.92zm0 5.082A2 2 0 118 6 2 2 0 018 10zm3.923-5.204a.72.72 0 11-1.44 0 .72.72 0 011.44 0z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Instagram</span></span> <!-- -->Instagram</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd в Twitter" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_twitter_link" href="https://twitter.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path d="M5.774 12.79c4.528 0 7.005-4.152 7.005-7.752 0-.118 0-.235-.007-.352A5.338 5.338 0 0014 3.276a4.55 4.55 0 01-1.414.428c.514-.34.899-.876 1.082-1.507a4.657 4.657 0 01-1.563.662 2.401 2.401 0 00-1.397-.823 2.26 2.26 0 00-1.561.287A2.636 2.636 0 008.065 3.6a2.995 2.995 0 00-.156 1.742 6.47 6.47 0 01-2.81-.826 7.175 7.175 0 01-2.264-2.02 2.98 2.98 0 00-.27 1.985c.142.676.511 1.266 1.032 1.652a2.267 2.267 0 01-1.117-.341v.034c0 .63.197 1.239.557 1.725.36.487.861.821 1.418.946-.362.109-.743.125-1.111.046.157.542.463 1.015.876 1.354.412.34.91.528 1.424.538-.872.758-1.95 1.17-3.058 1.169-.196 0-.391-.014-.586-.04a6.49 6.49 0 003.774 1.222" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Twitter</span></span> <!-- -->Twitter</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd на Facebook" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_facebook_link" href="https://www.facebook.com/Scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 2a6 6 0 01.938 11.927V9.734h1.397L10.602 8H8.937V6.875c0-.474.233-.938.978-.938h.757V4.462s-.08-.014-.21-.032a9.524 9.524 0 00-.887-.08 6.278 6.278 0 00-.246-.005c-1.37 0-2.267.83-2.267 2.334V8H5.54v1.734h1.524v4.193A6.002 6.002 0 018 2z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Facebook</span></span> <!-- -->Facebook</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd в Pinterest" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_pinterest_link" href="https://www.pinterest.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.217 12.268A5.98 5.98 0 018 14c-.62 0-1.218-.094-1.78-.269.246-.4.606-1.045.738-1.563l.375-1.427c.193.375.766.691 1.373.691 1.808 0 3.111-1.664 3.111-3.733 0-1.985-1.62-3.467-3.698-3.467-2.593 0-3.966 1.738-3.966 3.63 0 .884.47 1.975 1.22 2.326.113.054.178.03.202-.08l.058-.233.11-.448a.179.179 0 00-.04-.173c-.246-.3-.444-.854-.444-1.368 0-1.323 1.003-2.602 2.711-2.602 1.477 0 2.509 1.002 2.509 2.44 0 1.62-.82 2.745-1.886 2.745-.588 0-1.033-.489-.89-1.086.062-.255.143-.517.222-.772.142-.46.277-.898.277-1.228 0-.46-.246-.845-.76-.845-.602 0-1.086.622-1.086 1.457 0 .528.177.889.177.889s-.592 2.514-.7 2.983c-.12.518-.075 1.247-.02 1.722A6.003 6.003 0 012 8a6 6 0 016.653-5.965A5.988 5.988 0 0113.99 8.01a5.981 5.981 0 01-1.773 4.258z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Pinterest</span></span> <!-- -->Pinterest</span></span></a></li></ul></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_m__zwIrv GridColumn-module_extended_xl5_16__cffZG GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><p class="Footer-module_columnHeader__gcdjp">Получите наши бесплатные приложения</p><ul class="mobile_icons wrapper__app_store_buttons"><li class="wrapper__store_button" data-e2e="app_store_btn"><a aria-label="Scribd — скачайте из App Store" class="app_link ios_btn" data-e2e="ios_btn" href="https://apps.apple.com/us/app/6448807714?mt=8&pt=298534"><div class="app_store_img"><img class="LazyImage-module_image__uh0sq" alt="Scribd — скачайте из App Store"/></div></a></li><li class="wrapper__store_button" data-e2e="app_store_btn"><a aria-label="Scribd — скачайте из Google Play" class="app_link google_play_btn" data-e2e="google_play_btn" href="https://play.google.com/store/apps/details?id=com.scribd.app.reader0.docs"><div class="app_store_img play_store_link"><img class="LazyImage-module_image__uh0sq" alt="Scribd — скачайте из Google Play"/></div></a></li></ul></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_extended_xl5_16__cffZG GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="Footer-module_horizontalDivider__Z6XJu"></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_extended_xl5_9__UmJvm GridColumn-module_extended_xl4_7__-9AEI GridColumn-module_extended_xl3_7__B6ct2 GridColumn-module_extended_xl2_7__Nztja GridColumn-module_extended_xl_7__OFVFv GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><ul class="ContentTypeColumn-module_contentTypesList__WIKOq"><li><a aria-disabled="false" aria-label="Документы" class="TextButton-module_wrapper__ZwW-w ContentTypeColumn-module_contentTypeLink__K3M9d" data-e2e="footer_content_type_column_documents_link" href="/docs"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Документы</span></span></a></li></ul></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_l__7M0-X GridColumn-module_extended_xl5_7__HqFBW GridColumn-module_extended_xl4_5__PuEUy GridColumn-module_extended_xl3_5__aTZFP GridColumn-module_extended_xl2_5__UvHIq GridColumn-module_extended_xl_5__qmwN8 GridColumn-module_extended_l_5__VLQLS GridColumn-module_extended_m_5__HSrx- GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="Footer-module_bottomRightContainer__5MVkq"><div class="Footer-module_bottomLanguage__ZSHe1"><div class="Footer-module_bottomLanguageText__S7opW">Язык<!-- -->:</div><div class="DropdownMenu-module_wrapper__-3wi4" data-e2e="footer_language_picker_link"><a aria-disabled="false" aria-expanded="false" class="TextButton-module_wrapper__ZwW-w menu_handle Footer-module_menuHandle__A-Ub8" href="#"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><div class="Footer-module_languageDropdownContent__Ps0E4">Русский<!-- --> <span class="SvgIcon-module_wrapper__1fPqw"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path d="M8.24 11.66L4 7.41 5.41 6l2.83 2.83L11.07 6l1.42 1.41-4.25 4.25z" fill="currentColor"></path></svg></span></div></span></span></a><div class="MenuItems-module_wrapper__y6cjo MenuItems-module_top__2bxjj Footer-module_menuItems__6usGF" data-e2e="menu-items"><span class="breakpoint_hide s atAndAbove"><button aria-disabled="false" class="TextButton-module_wrapper__ZwW-w TextButton-module_default__ekglb MenuItems-module_closeButton__ZAyQt" data-e2e="close-button" type="button"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw"><svg width="18" height="18" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.414 9l7.293-7.293L16.293.293 9 7.586 1.707.293.293 1.707 7.586 9 .293 16.293l1.414 1.414L9 10.414l7.293 7.293 1.414-1.414L10.414 9z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">close menu</span></span></span></span></button></span><div><ul class="LanguageLinks-module_list__Vs9Gq" role="menu"><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=en" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="en">English</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=es" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="es">Español</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=pt-br" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="pt-br">Português</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=de" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="de">Deutsch</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=fr" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="fr">Français</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9 LanguageLink-module_linkSelected__SuxJ3" href="/language?id=ru" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ LanguageLink-module_iconSelected__DAMML"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 8A6 6 0 112 8a6 6 0 0112 0zm2 0A8 8 0 110 8a8 8 0 0116 0zm-8 4a4 4 0 100-8 4 4 0 000 8z" fill="currentColor"></path></svg></span><span lang="ru">Русский</span><span class="visually_hidden">(выбрано)</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=it" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="it">Italiano</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=ro" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="ro">Română</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=id" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="id">Bahasa Indonesia</span></a></li></ul><a href="#" class="LanguageLinks-module_learnMoreLink__SpBO4" data-e2e="learn_more_link">Узнать больше</a></div></div></div></div><div class="Footer-module_bottomCopyright__WjBga" data-e2e="footer_copyright_text"><span>Авторское право © 2024 Scribd Inc.</span></div></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_l__UT1-z GridColumn-module_extended_xl5_16__cffZG GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="Footer-module_bottomLanguage__ZSHe1 Footer-module_bottomLanguageMargin__e40ar Footer-module_topLanguageMargin__psISJ"><div class="Footer-module_bottomLanguageText__S7opW">Язык<!-- -->:</div><div class="DropdownMenu-module_wrapper__-3wi4" data-e2e="footer_language_picker_link"><a aria-disabled="false" aria-expanded="false" class="TextButton-module_wrapper__ZwW-w menu_handle Footer-module_menuHandle__A-Ub8" href="#"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><div class="Footer-module_languageDropdownContent__Ps0E4">Русский<!-- --> <span class="SvgIcon-module_wrapper__1fPqw"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path d="M8.24 11.66L4 7.41 5.41 6l2.83 2.83L11.07 6l1.42 1.41-4.25 4.25z" fill="currentColor"></path></svg></span></div></span></span></a><div class="MenuItems-module_wrapper__y6cjo MenuItems-module_top__2bxjj Footer-module_menuItems__6usGF" data-e2e="menu-items"><span class="breakpoint_hide s atAndAbove"><button aria-disabled="false" class="TextButton-module_wrapper__ZwW-w TextButton-module_default__ekglb MenuItems-module_closeButton__ZAyQt" data-e2e="close-button" type="button"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw"><svg width="18" height="18" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.414 9l7.293-7.293L16.293.293 9 7.586 1.707.293.293 1.707 7.586 9 .293 16.293l1.414 1.414L9 10.414l7.293 7.293 1.414-1.414L10.414 9z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">close menu</span></span></span></span></button></span><div><ul class="LanguageLinks-module_list__Vs9Gq" role="menu"><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=en" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="en">English</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=es" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="es">Español</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=pt-br" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="pt-br">Português</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=de" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="de">Deutsch</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=fr" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="fr">Français</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9 LanguageLink-module_linkSelected__SuxJ3" href="/language?id=ru" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ LanguageLink-module_iconSelected__DAMML"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 8A6 6 0 112 8a6 6 0 0112 0zm2 0A8 8 0 110 8a8 8 0 0116 0zm-8 4a4 4 0 100-8 4 4 0 000 8z" fill="currentColor"></path></svg></span><span lang="ru">Русский</span><span class="visually_hidden">(выбрано)</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=it" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="it">Italiano</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=ro" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="ro">Română</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/language?id=id" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="id">Bahasa Indonesia</span></a></li></ul><a href="#" class="LanguageLinks-module_learnMoreLink__SpBO4" data-e2e="learn_more_link">Узнать больше</a></div></div></div></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_l__UT1-z GridColumn-module_extended_xl5_16__cffZG GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="Footer-module_bottomCopyright__WjBga" data-e2e="footer_copyright_text"><span>Авторское право © 2024 Scribd Inc.</span></div></div></div></div></footer></div></div></div> <script type="application/json" data-hypernova-key="doc_page" data-hypernova-id="3de483f9-17d3-4748-956f-71a2d4742994"><!--{"assetEnvironment":"production","bodyProps":{"admin_panel_props":null,"breadcrumbs":[],"sharing_buttons_props":{"description":"Form dengan PHP","id":326491101,"message":null,"private":false,"secretPassword":"vVziPz3TDzDun2eHnlm0","thumbnailUrl":"https://imgv2-1-f.scribdassets.com/img/document/326491101/original/9167f99427/1715142634?v=1","title":"Cara Membuat Form Login Dengan PHP MySQL","twitterHashtag":null,"url":"https://www.scribd.com/document/326491101/Cara-Membuat-Form-Login-Dengan-PHP-MySQL"},"show_bot_text":true,"bot_text":"###BOT_TEXT###","view_restricted_cta_test_enabled":false},"currentPage":{"isHamburgerMenuOpen":false,"isMegamenuTopBarVisible":true,"isMegamenuPrimaryNavVisible":true,"navigationCategories":{"academic":{"totalCategoryCount":12,"categoryLinks":[{"dataName":"foreign-language-studies","name":"Изучение иностранных языков","url":"https://ru.scribd.com/docs/Foreign-Language-Studies","children":[{"dataName":"chinese","name":"Китайский","url":"https://ru.scribd.com/docs/Foreign-Language-Studies/Chinese"},{"dataName":"esl","name":"Английский – как второй язык","url":"https://ru.scribd.com/docs/Foreign-Language-Studies/ESL"}]},{"dataName":"science-mathematics","name":"Наука и математика","url":"https://ru.scribd.com/docs/Science-Mathematics","children":[{"dataName":"astronomy-space-sciences","name":"Astronomy & Space Sciences","url":"https://ru.scribd.com/docs/Science-Mathematics/Astronomy-Space-Sciences"},{"dataName":"biology","name":"Биология","url":"https://ru.scribd.com/docs/Science-Mathematics/Biology"}]},{"dataName":"study-aids-test-prep","name":"Учебные пособия и подготовка к экзаменам","url":"https://ru.scribd.com/docs/Study-Aids-Test-Prep","children":[{"dataName":"book-notes","name":"Примечания к книге","url":"https://ru.scribd.com/docs/Study-Aids-Test-Prep/Book-Notes"},{"dataName":"college-entrance-exams","name":"Вступительные экзамены в колледж","url":"https://ru.scribd.com/docs/Study-Aids-Test-Prep/College-Entrance-Exams"}]},{"dataName":"teaching-methods-materials","name":"Методы преподавания и материалы","url":"https://ru.scribd.com/docs/Teaching-Methods-Materials","children":[{"dataName":"early-childhood-education","name":"Early Childhood Education","url":"https://ru.scribd.com/docs/Teaching-Methods-Materials/Early-Childhood-Education"},{"dataName":"education-philosophy-theory","name":"Education Philosophy & Theory","url":"https://ru.scribd.com/docs/Teaching-Methods-Materials/Education-Philosophy-Theory"}]}]},"professional":{"totalCategoryCount":21,"categoryLinks":[{"dataName":"business","name":"Бизнес","url":"https://ru.scribd.com/docs/Business","children":[{"dataName":"business-analytics","name":"Бизнес-аналитика","url":"https://ru.scribd.com/docs/Business/Business-Analytics"},{"dataName":"human-resources-personnel-management","name":"Кадровый потенциал и управление персоналом","url":"https://ru.scribd.com/docs/Business/Human-Resources-Personnel-Management"}]},{"dataName":"career-growth","name":"Карьера и рост","url":"https://ru.scribd.com/docs/Career-Growth","children":[{"dataName":"careers","name":"Карьеры","url":"https://ru.scribd.com/docs/Career-Growth/Careers"},{"dataName":"job-hunting","name":"Поиск работы","url":"https://ru.scribd.com/docs/Career-Growth/Job-Hunting"}]},{"dataName":"computers","name":"Компьютеры","url":"https://ru.scribd.com/docs/Computers","children":[{"dataName":"applications-software","name":"Приложения и программное обеспечение","url":"https://ru.scribd.com/docs/Computers/Applications-Software"},{"dataName":"cad-cam","name":"CAD-CAM","url":"https://ru.scribd.com/docs/Computers/CAD-CAM"}]},{"dataName":"finance-money-management","name":"Управление финансами и деньгами","url":"https://ru.scribd.com/docs/Finance-Money-Management","children":[{"dataName":"accounting-bookkeeping","name":"Бухгалтерский учет и бухгалтерия","url":"https://ru.scribd.com/docs/Finance-Money-Management/Accounting-Bookkeeping"},{"dataName":"auditing","name":"Аудит","url":"https://ru.scribd.com/docs/Finance-Money-Management/Auditing"}]},{"dataName":"law","name":"Закон","url":"https://ru.scribd.com/docs/Law","children":[{"dataName":"business-financial","name":"Бизнес и финансы","url":"https://ru.scribd.com/docs/Law/Business-Financial"},{"dataName":"contracts-agreements","name":"Договора и соглашения","url":"https://ru.scribd.com/docs/Law/Contracts-Agreements"}]},{"dataName":"politics","name":"Политика","url":"https://ru.scribd.com/docs/Politics","children":[{"dataName":"american-government","name":"Американское правительство","url":"https://ru.scribd.com/docs/Politics/American-Government"},{"dataName":"international-relations","name":"Международные отношения","url":"https://ru.scribd.com/docs/Politics/International-Relations"}]},{"dataName":"technology-engineering","name":"Технологии и инженерия","url":"https://ru.scribd.com/docs/Technology-Engineering","children":[{"dataName":"automotive","name":"Automotive","url":"https://ru.scribd.com/docs/Technology-Engineering/Automotive"},{"dataName":"aviation-aeronautics","name":"Aviation & Aeronautics","url":"https://ru.scribd.com/docs/Technology-Engineering/Aviation-Aeronautics"}]}]},"culture":{"totalCategoryCount":19,"categoryLinks":[{"dataName":"art","name":"Искусство","url":"https://ru.scribd.com/docs/Art","children":[{"dataName":"antiques-collectibles","name":"Антиквариат и коллекционирование","url":"https://ru.scribd.com/docs/Art/Antiques-Collectibles"},{"dataName":"architecture","name":"Архитектура","url":"https://ru.scribd.com/docs/Art/Architecture"}]},{"dataName":"biography-memoir","name":"Биографии и мемуары","url":"https://ru.scribd.com/docs/Biography-Memoir","children":[{"dataName":"artists-and-musicians","name":"Художники и музыканты","url":"https://ru.scribd.com/docs/Biography-Memoir/Artists-and-Musicians"},{"dataName":"entertainers-and-the-rich-famous","name":"Эстрадные артисты и богатые и знаменитые","url":"https://ru.scribd.com/docs/Biography-Memoir/Entertainers-and-the-Rich-Famous"}]},{"dataName":"comics-graphic-novels","name":"Комиксы и графические романы","url":"https://ru.scribd.com/docs/Comics-Graphic-Novels"},{"dataName":"history","name":"История","url":"https://ru.scribd.com/docs/History","children":[{"dataName":"ancient","name":"Древность","url":"https://ru.scribd.com/docs/History/Ancient"},{"dataName":"modern","name":"Современная","url":"https://ru.scribd.com/docs/History/Modern"}]},{"dataName":"philosophy","name":"Философия","url":"https://ru.scribd.com/docs/Philosophy"},{"dataName":"language-arts-discipline","name":"Языковые искусства и дисциплина","url":"https://ru.scribd.com/docs/Language-Arts-Discipline","children":[{"dataName":"composition-creative-writing","name":"Сочинение и творческое письмо","url":"https://ru.scribd.com/docs/Language-Arts-Discipline/Composition-Creative-Writing"},{"dataName":"linguistics","name":"Лингвистика","url":"https://ru.scribd.com/docs/Language-Arts-Discipline/Linguistics"}]},{"dataName":"literary-criticism","name":"Литературная критика","url":"https://ru.scribd.com/docs/Literary-Criticism"},{"dataName":"social-science","name":"Социальная наука","url":"https://ru.scribd.com/docs/Social-Science","children":[{"dataName":"anthropology","name":"Антропология","url":"https://ru.scribd.com/docs/Social-Science/Anthropology"},{"dataName":"archaeology","name":"Археология","url":"https://ru.scribd.com/docs/Social-Science/Archaeology"}]},{"dataName":"true-crime","name":"Настоящие преступления","url":"https://ru.scribd.com/docs/True-Crime"}]},"hobbies_and_crafts":{"totalCategoryCount":12,"categoryLinks":[{"dataName":"cooking-food-wine","name":"Кулинария, еда и вино","url":"https://ru.scribd.com/docs/Cooking-Food-Wine","children":[{"dataName":"beverages","name":"Напитки","url":"https://ru.scribd.com/docs/Cooking-Food-Wine/Beverages"},{"dataName":"courses-dishes","name":"Блюда","url":"https://ru.scribd.com/docs/Cooking-Food-Wine/Courses-Dishes"}]},{"dataName":"games-activities","name":"Игры и развлечения","url":"https://ru.scribd.com/docs/Games-Activities","children":[{"dataName":"card-games","name":"Карточные игры","url":"https://ru.scribd.com/docs/Games-Activities/Card-Games"},{"dataName":"fantasy-sports","name":"Fantasy Sports","url":"https://ru.scribd.com/docs/Games-Activities/Fantasy-Sports"}]},{"dataName":"home-garden","name":"Дом и сад","url":"https://ru.scribd.com/docs/Home-Garden","children":[{"dataName":"crafts-hobbies","name":"Ремесла и хобби","url":"https://ru.scribd.com/docs/Home-Garden/Crafts-Hobbies"},{"dataName":"gardening","name":"Садоводство","url":"https://ru.scribd.com/docs/Home-Garden/Gardening"}]},{"dataName":"sports-recreation","name":"Спорт и отдых","url":"https://ru.scribd.com/docs/Sports-Recreation","children":[{"dataName":"baseball","name":"Бейсбол","url":"https://ru.scribd.com/docs/Sports-Recreation/Baseball"},{"dataName":"basketball","name":"Баскетбол","url":"https://ru.scribd.com/docs/Sports-Recreation/Basketball"}]}]},"personal_growth":{"totalCategoryCount":12,"categoryLinks":[{"dataName":"lifestyle","name":"Lifestyle","url":"https://ru.scribd.com/docs/Lifestyle","children":[{"dataName":"beauty-grooming","name":"Beauty & Grooming","url":"https://ru.scribd.com/docs/Lifestyle/Beauty-Grooming"},{"dataName":"fashion","name":"Fashion","url":"https://ru.scribd.com/docs/Lifestyle/Fashion"}]},{"dataName":"religion-spirituality","name":"Религия и духовность","url":"https://ru.scribd.com/docs/Religion-Spirituality","children":[{"dataName":"buddhism","name":"Буддизм","url":"https://ru.scribd.com/docs/Religion-Spirituality/Buddhism"},{"dataName":"christianity","name":"Христианство","url":"https://ru.scribd.com/docs/Religion-Spirituality/Christianity"}]},{"dataName":"self-improvement","name":"Самосовершенствование","url":"https://ru.scribd.com/docs/Self-Improvement","children":[{"dataName":"addiction","name":"Зависимость","url":"https://ru.scribd.com/docs/Self-Improvement/Addiction"},{"dataName":"mental-health","name":"Душевное здоровье","url":"https://ru.scribd.com/docs/Self-Improvement/Mental-Health"}]},{"dataName":"wellness","name":"Здоровый образ жизни","url":"https://ru.scribd.com/docs/Wellness","children":[{"dataName":"body-mind-spirit","name":"Тело, разум и дух","url":"https://ru.scribd.com/docs/Wellness/Body-Mind-Spirit"},{"dataName":"diet-nutrition","name":"Диета и питание","url":"https://ru.scribd.com/docs/Wellness/Diet-Nutrition"}]}]}},"selectedMobileBottomTab":"document"},"enablePseudolocalization":false,"flashes":[],"global":{"client":{"mobile":{"getMobileAppProps":{"androidStoreUrl":"https://play.google.com/store/apps/details?id=com.scribd.app.reader0&hl=en","iosStoreUrl":"https://itunes.apple.com/us/app/scribd-worlds-largest-online/id542557212?mt=8&uo=4&at=11lGEE","app_download_link":"https://www.scribd.com/send_download_link","close_promo_url":"https://www.scribd.com/home/close_promo","doc_id":326491101,"email_address":null,"extra_classes":"app_download_promo","promo_id":null,"twilio_enabled":false,"track_page":"doc_page","success":true,"__locale":"ru_RU"}}},"config":{"facebook":{"app_id":"136494494209"}},"testAssignments":{"backupPaymentMethodsRollout":null,"customOsanoDialog":{"testName":"custom_osano_dialog","variant":"control"},"docPageThirdColumn":{"variant":null},"independentScrolling":{"testName":"doc_page_independent_scrolling_v1","variant":"control"},"personalized_archive_offer":"control"},"paths":{"assetPath":"aHR0cHM6Ly9zLWYuc2NyaWJkYXNzZXRzLmNvbS8=\n","actions":{"add_to_library":"L3NhdmVkL2FkZA==\n","archive_plans_url":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL2FyY2hpdmUvcGxhbnM/ZG9jPTMyNjQ5\nMTEwMSZtZXRhZGF0YT0lN0IlMjJjb250ZXh0JTIyJTNBJTIyYXJjaGl2ZV92\naWV3X3Jlc3RyaWN0ZWQlMjIlMkMlMjJwYWdlJTIyJTNBJTIycmVhZCUyMiUy\nQyUyMmFjdGlvbiUyMiUzQSUyMmRvd25sb2FkJTIyJTJDJTIybG9nZ2VkX2lu\nJTIyJTNBZmFsc2UlMkMlMjJwbGF0Zm9ybSUyMiUzQSUyMndlYiUyMiU3RA==\n","audiobooksLink":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL2F1ZGlvYm9va3M=\n","bestsellers_url":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL2Jlc3RzZWxsZXJz\n","book_annotations":"L2Jvb2tfYW5ub3RhdGlvbnMvMzI2NDkxMTAx\n","booksLink":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL2Jvb2tz\n","documentsLink":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL2RvY3M=\n","faqUrl":"aHR0cDovL3N1cHBvcnQuc2NyaWJkLmNvbS9oYy8=\n","homeLink":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tLw==\n","library_url":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL3NhdmVk\n","load_recommenders":"L2RvYy1wYWdlL3JlY29tbWVuZGVycy8zMjY0OTExMDE=\n","payment_fix":"L2FjY291bnQvcGF5bWVudF9wcm9maWxlX3VwZGF0ZQ==\n","payment_fix_url":null,"personalization_path":"L2RvYy1wYWdlL3BlcnNvbmFsaXphdGlvbg==\n","pingback":["aA==\n","dA==\n","dA==\n","cA==\n","cw==\n","Og==\n","Lw==\n","Lw==\n","cg==\n","dQ==\n","Lg==\n","cw==\n","Yw==\n","cg==\n","aQ==\n","Yg==\n","ZA==\n","Lg==\n","Yw==\n","bw==\n","bQ==\n","Lw==\n","ZA==\n","bw==\n","Yw==\n","dQ==\n","bQ==\n","ZQ==\n","bg==\n","dA==\n","cw==\n","Lw==\n","Mw==\n","Mg==\n","Ng==\n","NA==\n","OQ==\n","MQ==\n","MQ==\n","MA==\n","MQ==\n","Lw==\n","cA==\n","aQ==\n","bg==\n","Zw==\n","Yg==\n","YQ==\n","Yw==\n","aw==\n"],"register_download_attempt":"L2RvY3VtZW50X2Rvd25sb2Fkcy9yZWdpc3Rlcl9kb3dubG9hZF9hdHRlbXB0\n","remove_from_library":"L3NhdmVkL3JlbW92ZQ==\n","upload_url":"L3VwbG9hZC1kb2N1bWVudD9hcmNoaXZlX2RvYz0zMjY0OTExMDE=\n"},"props":{"download_receipt_modal":"L2RvYy1wYWdlL2Rvd25sb2FkLXJlY2VpcHQtbW9kYWwtcHJvcHMvMzI2NDkx\nMTAx\n","paused_user_download_modal":"L2RvYy1wYWdlL3BhdXNlZC11c2VyLWRvd25sb2FkLW1vZGFsLXByb3Bz\n","pmp_login_join_modal":"L2RvYy1wYWdlL3BtcC1sb2dpbi1qb2luLW1vZGFsLXByb3BzLzMyNjQ5MTEw\nMQ==\n"}},"features":{"desktopAdsExperience":null,"highlights":true,"isEligibleForDesktopAds":false,"isEligibleForMobileAds":false,"isEligibleForProgressiveProfileModal":false,"isRightrailAdhesionAdEnabled":true,"showDocChatExperience":false,"taxonomyV4UgcBrowsing":true}},"i18n":{"currentLanguage":{"prefix":"ru","lcid":"ru","href":"/language?id=ru","lang":"ru_RU","name":"Русский"},"languages":[{"prefix":"en","lcid":"en","href":"/language?id=en","lang":"en_US","name":"English"},{"prefix":"es","lcid":"es","href":"/language?id=es","lang":"es-419","name":"Español"},{"prefix":"pt","lcid":"pt-br","href":"/language?id=pt-br","lang":"pt_BR","name":"Português"},{"prefix":"de","lcid":"de","href":"/language?id=de","lang":"de","name":"Deutsch"},{"prefix":"fr","lcid":"fr","href":"/language?id=fr","lang":"fr","name":"Français"},{"prefix":"ru","lcid":"ru","href":"/language?id=ru","lang":"ru_RU","name":"Русский"},{"prefix":"it","lcid":"it","href":"/language?id=it","lang":"it","name":"Italiano"},{"prefix":"ro","lcid":"ro","href":"/language?id=ro","lang":"ro_RO","name":"Română"},{"prefix":"id","lcid":"id","href":"/language?id=id","lang":"id_ID","name":"Bahasa Indonesia"}],"locale":"ru-RU"},"page":{"savedItems":{"326491101":false}},"personalization":{"trialDuration":null},"ratings":{"326491101":{"averageRating":0,"documentId":326491101,"downvoteCount":0,"ratingCount":0,"upvoteCount":0,"userRating":0}},"recommenders":{"viewport_bottom_recs":{"items":[{"id":333386003,"doc_uuid":"sbd/AtUq9qZVwz4wNuCI8EoZ5TM="},{"id":313492598,"doc_uuid":"sbd/alc5wvFCtNVgEU09NBgSiNo="},{"id":71000924,"doc_uuid":"sbd/n/qyvY9FTjS33afUgoCibLM="},{"id":331251656,"doc_uuid":"sbd/qOOYn4X7EVuI9zmeYS8FKc0="},{"id":328117055,"doc_uuid":"sbd/QqOrWPeY640GObkiVJ4omEo="},{"id":258487336,"doc_uuid":"sbd/KwMreHOpv19UBUUgtLUn8jo="},{"id":258487335,"doc_uuid":"sbd/ucQl0E8s6XadU7XtzCSQwRE="}],"ids":[333386003,313492598,71000924,331251656,328117055,258487336,258487335],"title_link":null,"title":null,"track_opts":{"compilation_id":"sbd/CrTbpEMWxP4LhgraAi9yUqo=","module_id":"sbd/HmD4aA0W3H4MvyLG3OMo09w=","widget_name":"viewport_bottom","track_id":"scroll_recs"}},"list_recommenders":{"items":[{"id":333386003,"doc_uuid":"sbd/xUdID5ek8fGeOvzSQrZa6IM="},{"id":313492598,"doc_uuid":"sbd/JJJ81sYDSRlwcHaWO3z3dh4="},{"id":71000924,"doc_uuid":"sbd//f0tJOI/e8E95NwtjH28v1Y="},{"id":331251656,"doc_uuid":"sbd/0tn95vRacTr136mvKWTei2g="},{"id":328117055,"doc_uuid":"sbd/ge4J1u68HNwK2uFw6/SK2pk="},{"id":258487336,"doc_uuid":"sbd/2KHbwO/Y0VvKlvl2ZqOX35U="},{"id":258487335,"doc_uuid":"sbd/kmVe0EnpDhU4V5Mz9v9XXaY="}],"ids":[333386003,313492598,71000924,331251656,328117055,258487336,258487335],"title_link":null,"title":null,"track_opts":{"compilation_id":"sbd/CrTbpEMWxP4LhgraAi9yUqo=","module_id":"sbd//vuDs0QlMjhoJCAb5271yYw=","widget_name":"recommender_list","track_id":"doc_page_user_experience_top"}},"documents":{"71000924":{"author":"v4r1","author_url":"https://www.scribd.com/user/15609429/v4r1","categories":[],"description":null,"id":71000924,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":276,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/71000924/298x396/a026c6dd3f/1542797652?v=1","run_time":0,"short_title":"VB.Net","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/71000924/149x198/e697a31016/1542797652?v=1","title":"VB.Net","type":"document","url":"https://id.scribd.com/doc/71000924/VB-Net","views":"4.0K"},"258487335":{"author":"Haranobu Fujikage","author_url":"https://www.scribd.com/user/178368542/Haranobu-Fujikage","categories":[],"description":"Soal UN smk mtk","id":258487335,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":9,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/258487335/298x396/53506968c9/1542375993?v=1","run_time":0,"short_title":"Soal Un Matematika SMK Kelompok Teknologi Kesehatan Dan Pertanian Tahun 2013 Kode MTK - TKP - SK - 33","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/258487335/149x198/d90cc1dbe1/1542375993?v=1","title":"Soal Un Matematika SMK Kelompok Teknologi Kesehatan Dan Pertanian Tahun 2013 Kode MTK - TKP - SK - 33","type":"document","url":"https://id.scribd.com/document/258487335/soal-un-matematika-smk-kelompok-teknologi-kesehatan-dan-pertanian-tahun-2013-kode-mtk-tkp-sk-33","views":"98"},"258487336":{"author":"Haranobu Fujikage","author_url":"https://www.scribd.com/user/178368542/Haranobu-Fujikage","categories":[],"description":"soal UN smk mtk","id":258487336,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":10,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/258487336/298x396/871fa833d8/1542957595?v=1","run_time":0,"short_title":"Soal Un Matematika SMK Kelompok Teknologi Kesehatan Dan Pertanian Tahun 2013 Kode MTK - TKP - SK - 34","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/258487336/149x198/ec2da67349/1542957595?v=1","title":"Soal Un Matematika SMK Kelompok Teknologi Kesehatan Dan Pertanian Tahun 2013 Kode MTK - TKP - SK - 34","type":"document","url":"https://id.scribd.com/document/258487336/soal-un-matematika-smk-kelompok-teknologi-kesehatan-dan-pertanian-tahun-2013-kode-mtk-tkp-sk-34","views":"42"},"313492598":{"author":"Ghulam Faqih Hasibuan","author_url":"https://www.scribd.com/user/32059203/Ghulam-Faqih-Hasibuan","categories":[],"description":"-","id":313492598,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":21,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/313492598/298x396/81a595779c/1544277924?v=1","run_time":0,"short_title":" Siklus Produksi Perusahaan","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/313492598/149x198/ea3f2c24e7/1544277924?v=1","title":" Siklus Produksi Perusahaan","type":"document","url":"https://id.scribd.com/doc/313492598/Siklus-Produksi-Perusahaan","views":"16"},"328117055":{"author":"Haranobu Fujikage","author_url":"https://www.scribd.com/user/178368542/Haranobu-Fujikage","categories":[],"description":"modul","id":328117055,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":51,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/328117055/298x396/adbd8b5ace/1544784166?v=1","run_time":0,"short_title":"Modul Pemrograman Lanjut 2012","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/328117055/149x198/78b9549825/1544784166?v=1","title":"Modul Pemrograman Lanjut 2012","type":"document","url":"https://id.scribd.com/document/328117055/Modul-Pemrograman-Lanjut-2012","views":"46"},"331251656":{"author":"Haranobu Fujikage","author_url":"https://www.scribd.com/user/178368542/Haranobu-Fujikage","categories":[],"description":null,"id":331251656,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":1,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/331251656/298x396/8b70b92591/1479276260?v=1","run_time":0,"short_title":"Davis, Gordon, 1991, Kerangka Dasar Sistem Informasi Manajemen Bagian I Pengantar, PT. Pustaka Binaman Pressindo, Jakarta","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/331251656/149x198/b69f57ef00/1479276260?v=1","title":"Davis, Gordon, 1991, Kerangka Dasar Sistem Informasi Manajemen Bagian I Pengantar, PT. Pustaka Binaman Pressindo, Jakarta","type":"document","url":"https://id.scribd.com/document/331251656/as-txt","views":"12"},"333386003":{"author":"Haranobu Fujikage","author_url":"https://www.scribd.com/user/178368542/Haranobu-Fujikage","categories":[],"description":"laporan kunjungan industri","id":333386003,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":19,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/333386003/298x396/5323a5d24a/1545194665?v=1","run_time":0,"short_title":"Laporan Kunjungan Industri Pada PT. Gunung Slamat","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/333386003/149x198/958e7af73f/1545194665?v=1","title":"Laporan Kunjungan Industri Pada PT. Gunung Slamat","type":"document","url":"https://id.scribd.com/document/333386003/Laporan-Kunjungan-Industri-Pada-PT-Gunung-Slamat","views":"476"}}},"renewalNagProps":null,"signupContext":null,"static":{"config":{"brand":"scribd","google":{"clientId":"491264573595-hs5hu9ijbfl9g6khnkn2retrfr6lcua7.apps.googleusercontent.com","sessionPath":"/open_id_connect/login"},"thirdPartyTags":{"googleAnalytics":{"account_id":"UA-443684-2","current_user":"false","facebook_user_context":"none"},"includeGoogleTagManager":true,"siftScience":{"user_id":null,"unique_browser_tracking_uuid":"f4710fb5-575b-49b4-9012-0f59f7a1a8c0","sift_science_js_key":"cbcb9f556a"}}},"routes":{"accountPath":"L2FjY291bnQtc2V0dGluZ3M=\n","accountSettingsPath":"L2FjY291bnQtc2V0dGluZ3M=\n","androidStoreUrl":"aHR0cHM6Ly9wbGF5Lmdvb2dsZS5jb20vc3RvcmUvYXBwcy9kZXRhaWxzP2lk\nPWNvbS5zY3JpYmQuYXBwLnJlYWRlcjAuZG9jcw==\n","appPromoDeepLink":"aHR0cHM6Ly9zY3JpYmQucGFnZS5saW5rLz9hbXY9MTMuMTYmYXBuPWNvbS5z\nY3JpYmQuYXBwLnJlYWRlcjAuZG9jcyZpYmk9Y29tLnNjcmliZC5kb2NzJmlt\ndj0xMy4xNiZpc2k9NjQ0ODgwNzcxNCZsaW5rPWh0dHBzJTNBJTJGJTJGcnUu\nc2NyaWJkLmNvbSUyRmRvY3VtZW50JTJGMzI2NDkxMTAxJTJGQ2FyYS1NZW1i\ndWF0LUZvcm0tTG9naW4tRGVuZ2FuLVBIUC1NeVNRTCUzRnJlZmVycmVyJTNE\ndXRtX2NhbXBhaWduJTNEZG9jX3BhZ2UlMjZ1dG1fc291cmNlJTNEZG9jX3Bh\nZ2UlMjZ1dG1fbWVkaXVtJTNEd2ViJnN0PUNhcmElMjBNZW1idWF0JTIwRm9y\nbSUyMExvZ2luJTIwRGVuZ2FuJTIwUEhQJTIwTXlTUUwmc2k9aHR0cHM6Ly9p\nbWd2Mi0xLWYuc2NyaWJkYXNzZXRzLmNvbS9pbWcvZG9jdW1lbnQvMzI2NDkx\nMTAxL29yaWdpbmFsLzIxNngyODcvYjM3NzI4MDNlZi8xNzE1MTQyNjM0P3Y9\nMQ==\n","audiobooksAllCategoriesPath":"L2F1ZGlvYm9va3MvY2F0ZWdvcmllcw==\n","audiobooksPath":"L2F1ZGlvYm9va3M=\n","archivePlansUrl":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL2FyY2hpdmUvcGxhbnM/ZG9jPTMyNjQ5\nMTEwMSZtZXRhZGF0YT0lN0IlMjJjb250ZXh0JTIyJTNBJTIyYXJjaGl2ZV92\naWV3X3Jlc3RyaWN0ZWQlMjIlMkMlMjJwYWdlJTIyJTNBJTIycmVhZCUyMiUy\nQyUyMmFjdGlvbiUyMiUzQSUyMmRvd25sb2FkJTIyJTJDJTIybG9nZ2VkX2lu\nJTIyJTNBZmFsc2UlMkMlMjJwbGF0Zm9ybSUyMiUzQSUyMndlYiUyMiU3RA==\n","bestsellersPath":"L2Jlc3RzZWxsZXJz\n","booksAllCategoriesPath":"L2Jvb2tzL2NhdGVnb3JpZXM=\n","booksPath":"L2Jvb2tz\n","documentsAllCategoriesPath":"L2RvY3MvY2F0ZWdvcmllcw==\n","documentsPath":"L2RvY3M=\n","facebookUrl":"aHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL1NjcmliZC8=\n","homePath":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tLw==\n","instagramUrl":"aHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS9zY3JpYmQv\n","iosStoreUrl":"aHR0cHM6Ly9hcHBzLmFwcGxlLmNvbS91cy9hcHAvNjQ0ODgwNzcxND9tdD04\nJnB0PTI5ODUzNA==\n","languageModalPropsPath":"L2xhbmd1YWdlX21vZGFsX3Byb3Bz\n","logoutPath":"L2xvZ291dA==\n","magazinesAllCategoriesPath":"L21hZ2F6aW5lcy9jYXRlZ29yaWVz\n","magazinesPath":"L21hZ2F6aW5lcw==\n","myUploadsPath":"L3VwbG9hZHM=\n","oauthLoginUrl":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL29hdXRoL2xvZ2lu\n","oauthSignupUrl":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL29hdXRoL3NpZ251cA==\n","oauthStartTrialUrl":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL29hdXRoL3NpZ251cD9kb2NfaWQ9MzI2\nNDkxMTAx\n","paymentFixUrl":null,"pinterestUrl":"aHR0cHM6Ly93d3cucGludGVyZXN0LmNvbS9zY3JpYmQv\n","podcastsAllCategories":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL3BvZGNhc3RzL2NhdGVnb3JpZXM=\n","podcastsPath":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL3BvZGNhc3Rz\n","profilePath":"","progressiveProfileModalPropsPath":"L2RvYy1wYWdlL3Byb2dyZXNzaXZlLXByb2ZpbGUtbW9kYWwvMzI2NDkxMTAx\n","progressiveProfileModalDismissPath":"L3Byb2dyZXNzaXZlX3Byb2ZpbGVfbW9kYWwvZGlzbWlzc19tb2RhbA==\n","rate":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL3JhdGluZ3MuanNvbg==\n","readingHistoryDataPath":"L3lvdXItYWNjb3VudC9yZWFkaW5nX2hpc3RvcnlfZGF0YQ==\n","referralsUrl":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL3JlZmVycmFscw==\n","rootPath":"Lw==\n","savedPath":"L3NhdmVk\n","searchPath":"L3NlYXJjaA==\n","sheetMusicPath":"L3NoZWV0bXVzaWM=\n","statsPath":null,"subscribeNowLandingPath":"L3N1YnNjcmliZS1ub3c=\n","subscribeUrl":"L2FyY2hpdmUvcG1wX2NoZWNrb3V0P2RvYz0zMjY0OTExMDEmZG9jX2lkPTMy\nNjQ5MTEwMSZtZXRhZGF0YT0lN0IlMjJjb250ZXh0JTIyJTNBJTIycG1wJTIy\nJTJDJTIyYWN0aW9uJTIyJTNBJTIyc3RhcnRfdHJpYWwlMjIlMkMlMjJsb2dn\nZWRfaW4lMjIlM0FmYWxzZSUyQyUyMnBsYXRmb3JtJTIyJTNBJTIyd2ViJTIy\nJTdE\n","supportPath":"aHR0cDovL3N1cHBvcnQuc2NyaWJkLmNvbS9sb2dpbg==\n","twitterUrl":"aHR0cHM6Ly90d2l0dGVyLmNvbS9zY3JpYmQv\n","unpauseAccountUrl":"aHR0cHM6Ly9ydS5zY3JpYmQuY29tL2FjY291bnQvdW5wYXVzZT9mcm9tPWh0\ndHBzJTNBJTJGJTJGcnUuc2NyaWJkLmNvbSUyRmRvY3VtZW50JTJGMzI2NDkx\nMTAxJTJGQ2FyYS1NZW1idWF0LUZvcm0tTG9naW4tRGVuZ2FuLVBIUC1NeVNR\nTA==\n","uploadPath":"L3VwbG9hZC1kb2N1bWVudD9hcmNoaXZlX2RvYz0zMjY0OTExMDE=\n","webAnalyticsUrl":"aHR0cHM6Ly93YS5zY3JpYmQuY29t\n","whatIsScribdLandingPath":"L3doYXQtaXMtc2NyaWJk\n","whatIsEverandLandingPath":"L3doYXQtaXMtZXZlcmFuZA==\n","footerContentTypeRoutes":{"documents":"L2RvY3M=\n"},"aboutUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hYm91dA==\n","accessibilityUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvcnUvYXJ0aWNsZXMvMjEw\nMTI5NTg2LUFjY2Vzc2liaWxpdHktTm90aWNl\n","adChoicesUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvYXJ0aWNsZXMv\nMjEwMTI5MzY2\n","blogUrl":"aHR0cHM6Ly9ibG9nLnNjcmliZC5jb20v\n","careersUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9jYXJlZXJz\n","contactUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9jb250YWN0\n","copyrightUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvc2VjdGlvbnMv\nMjAyMjQ2MDg2\n","everandBlogUrl":"aHR0cHM6Ly93d3cuZXZlcmFuZC5jb20vYmxvZw==\n","everandHostPath":"aHR0cHM6Ly93d3cuZXZlcmFuZC5jb20=\n","faqUrl":"aHR0cDovL3N1cHBvcnQuc2NyaWJkLmNvbS9oYy9ydQ==\n","giftUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9naWZ0\n","pressUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9tZWRpYQ==\n","privacyUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9wcml2YWN5\n","privacyRequestFormUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvYXJ0aWNsZXMvMzYwMDM4\nMDE2OTMxLVByaXZhY3ktUmlnaHRzLVJlcXVlc3QtRm9ybQ==\n","publishersUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9wdWJsaXNoZXJz\n","purchaseHelpUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvc2VjdGlvbnMv\nMjAyMjQ2MzA2\n","redeemUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9yZWRlZW0=\n","scribdForEnterpriseUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9lbnRlcnByaXNl\n","simpleCancelUrl":"L3lvdXItYWNjb3VudC9jYW5jZWwtbm93\n","termsUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvYXJ0aWNsZXMv\nMjEwMTI5MzI2LUdlbmVyYWwtVGVybXMtb2YtVXNl\n"}},"toolbar":{"search_path":"L2RvY3VtZW50cy9zZWFyY2g/YWxsb3dlZF9wYWdlcz0xJTJDMiUyQzMlMkM0\nJTJDNSUyQzYlMkM3JTJDOCUyQzklMkMxMCUyQzExJTJDMTIlMkMxMyUyQzE0\nJTJDMTUlMkMxNiUyQzE3JTJDMTglMkMxOSUyQzIwJTJDMjElMkMyMiUyQzIz\nJTJDMjQlMkMyNSUyQzI2JTJDMjclMkMyOCUyQzI5JTJDMzAlMkMzMSUyQzMy\nJTJDMzMlMkMzNCUyQzM1JTJDMzYlMkMzNyUyQzM4JTJDMzklMkM0MCUyQzQx\nJTJDNDIlMkM0MyUyQzQ0JTJDNDUlMkM0NiUyQzQ3JTJDNDglMkM0OSUyQzUw\nJTJDNTEmYXV0aF90b2tlbj1wR1J1ZWsxWWYlMkZkblh5dTdFcmNiTHNkMnRy\ncyUzRCZhdXRoZW50aWNpdHlfdG9rZW49N3E2bHlRNXIwUG1KSVVyOEJLSFZI\nbVlielFrMngwaGlqbEEzeTFMRXZjOUd5aGJSZTlXaW1aM1pYcVEtUllRdHJ5\nOS1JUEFFQTdYZTNFQkZXT2hQdEEmZXhwaXJlcz0xNzE1NzQ3NDM1JndvcmRE\nb2N1bWVudElkPTMyNjQ5MTEwMSZ3b3JkVXBsb2FkSWQ9MzMyMjUzNDM4\n"},"user":{"browserUuid":"f4710fb5-575b-49b4-9012-0f59f7a1a8c0","canExtendSubscription":null,"country":null,"emailHash":null,"hasPublishedDocuments":false,"id":null,"initials":"","isAborted":null,"isAdmin":null,"isBot":true,"isDunning":false,"isEligibleForFreeTrial":true,"isLoggedIn":false,"isMobile":false,"isPaused":false,"isSubscriber":false,"isTrialing":false,"isUnderDunningLock":false,"name":null,"personaIconRetinaUrl":null,"personaIconUrl":null,"showSimpleCancelOption":false},"wordDocument":{"ads_disabled":false,"archived":true,"author_name":"Haranobu Fujikage","copyright_name":"© All Rights Reserved","description":"Form dengan PHP","edit_path":null,"embed_modal_props_path":"/doc-page/embed-modal-props/326491101","extensions":["pdf"],"extracted_title":null,"flag_document_modal_props_path":"/doc-page/flag-document-modal-props/326491101","generatedDescription":null,"id":326491101,"image_url":"https://imgv2-2-f.scribdassets.com/img/document/326491101/149x198/5c6be38f14/1544388309?v=1","in_library":false,"is_archive":true,"is_credit_restricted":false,"isDocumentOwner":false,"is_downloadable":true,"is_sheet_music":false,"is_view_restricted_archive":true,"isbn":null,"library_xhr_pending":false,"page_count":51,"page_dimensions":{"width":595,"height":841},"page_orientation":"portrait","publisher_info":{"is_author":false,"name":"Haranobu Fujikage","url":"https://ru.scribd.com/user/178368542/Haranobu-Fujikage"},"retina_image_url":"https://imgv2-2-f.scribdassets.com/img/document/326491101/298x396/685b314673/1544388309?v=1","secret_password":null,"signup_context":null,"short_title":"Cara Membuat Form Login Dengan PHP MySQL","show_archive_paywall":true,"showFullDoc":false,"title":"Cara Membuat Form Login Dengan PHP MySQL","translation":{"original":null,"translations":[]},"type":"view_restricted","url":"https://ru.scribd.com/document/326491101/Cara-Membuat-Form-Login-Dengan-PHP-MySQL","views":"7"},"X_Request_ID":"bd6b41397908af6214235c5d41e33e023c71cc27f0016523e072fec7313cc5bc"}--></script></div></div><script type="text/javascript" src="/options/exposed_to_client.js"></script><script type="application/javascript">window._translations = JSON.parse("{\"ru-RU\":{\"translation\":{\"account_settings\":{\"facebook_connect\":{\"facebook\":\"facebook\"},\"plans\":{\"plan_module\":{\"slash_month\":\"/месяц\",\"slash_year\":\"/месяц\"}},\"show\":{\"restart_membership\":\"Перезапустить подписку\"},\"subscription_card\":{\"unlocks_available_0\":\"Доступен {{count}} открытие\",\"unlocks_available_1\":\"Доступно {{count}} открытия\",\"unlocks_available_2\":\"Доступно {{count}} открытий\"}},\"bestsellers\":{\"promo\":{\"enjoy_bestselling_titles_when_subscribed\":\"Получайте удовольствие от бестселлеров по подписке\"}},\"books\":{\"epub\":{\"banners\":{\"enjoying_preview_update_payment\":\"Следующая открытие будет доступна после обновления платежной информации.\",\"enjoying_preview_update_payment_upgrade\":\"Обновите платежную информацию, чтобы перейти на версию Plus\"}}},\"browse\":{\"promo\":{\"cancel_anytime\":\"Отмена в любое время.\",\"everand_also_available_on_mobile_devices\":\"Everand также доступен на ваших мобильных устройствах.\",\"scribd_also_available_on_mobile_devices\":\"Scribd также доступен для мобильных устройств.\"}},\"browse_page\":{\"promo\":{\"instant_access\":\"Получите мгновенный доступ к миллионам электронных книг, аудиокниг, журналов и многому другому всего за {{price}}/месяц.\"}},\"category\":{\"documents\":\"{{category}} Документы\"},\"chrome\":{\"flash\":{\"close_notification\":\"Закрыть уведомление\",\"error\":\"Ошибка\",\"notice\":\"Уведомление\",\"success\":\"Готово\"},\"renewal_nag\":{\"click_here_to_become_a_member\":\"Нажмите здесь, чтобы оформить подписку\",\"click_here_to_renew_it\":\"Нажмите здесь, чтобы продлить\",\"click_here_to_resume_it\":\"Нажмите здесь, чтобы возобновить\",\"click_here_to_update_it\":\"Нажмите здесь, чтобы обновить\",\"resume_membership\":\"Возобновить подписку\",\"update_now\":\"Обновить сейчас\",\"update_payment\":\"Обновить платежные сведения\",\"you_canceled_your_free_trial\":\"Вы отменили бесплатный пробный период\",\"your_account_is_at_risk\":\"Ваша учетная запись подвергается риску. Обновите платежные данные, чтобы не потерять доступ к своей подписке.\",\"your_credit_card_information_is_invalid_\":\"Информация о вашей кредитной карте недействительна.\",\"your_membership_is_on_hold\":\"Ваша подписка приостановлена из-за проблемы с последним платежом.\",\"your_membership_is_paused_until_paused_until_date\":\"Ваша подписка приостановлена до {{paused_until_date}}.\",\"your_payment_is_overdue\":\"Ваш платеж просрочен. Исправьте платежную информацию, чтобы исключить прерывания в обслуживании.\",\"your_paypal_information_is_invalid\":\"Информация о вашем счете Paypal недействительна.\",\"your_scribd_gift_membership_has_ended\":\"Ваша подписка Scribd по подарочной карте окончена.\",\"your_scribd_membership_has_expired\":\"Истек срок вашей подписки Scribd.\",\"your_scribd_membership_was_canceled\":\"Ваша подписка Scribd отменена.\"}},\"common\":{\"later\":\"Позже\",\"update_payment\":\"Обновить платежные данные\"},\"content_lengths\":{\"listening_minutes\":\"{{minutes}} мин. слушания\",\"reading_minutes\":\"{{minutes}} мин. чтения\"},\"content_preview\":{\"available_on\":\"Доступно с {{date}}\",\"flags\":{\"expiring_soon\":\"Скоро истечет срок действия\",\"geo_restricted\":\"Недоступно\",\"not_available\":\"Недоступно\",\"throttled\":\"Скоро будет доступно\"},\"geo_restricted\":\"Недоступно в вашей стране\",\"reviews\":{\"delete_rating_and_review\":\"Удалить эту оценку и отзыв?\",\"delete_warning\":\"Это действие нельзя отменить.\",\"rating_and_review_deleted\":\"Оценка и отзыв удалены\"},\"save\":{\"add\":\"Сохранить на потом\",\"remove\":\"Удалить из сохраненных\"},\"share\":\"Поделиться\",\"social_media_share\":{\"email\":\"Эл. почта\",\"pinterest\":\"Pinterest\",\"twitter\":\"Twitter\"},\"social_media_share_modal\":{\"linked_copied\":\"Ссылка скопирована\"},\"unavailable\":\"Сейчас недоступно\",\"view_titles_in_series\":\"Посмотреть книги из серии\"},\"content_types\":{\"article\":\"Статья\",\"audiobook\":\"Аудиокнига\",\"audiobook_series\":\"Серия аудиокниг\",\"audiobooks\":\"Аудиокниги\",\"books\":\"Книги\",\"document\":\"Документ\",\"documents\":\"Документы\",\"ebook\":\"Электронная книга\",\"ebook_series\":\"Серия электронных книг\",\"ebooks\":\"Электронные книги\",\"magazine\":\"Журнал\",\"magazines\":\"Журналы\",\"podcast\":\"Подкаст\",\"podcast_episode\":\"Эпизод подкаста\",\"podcasts\":\"Подкасты\",\"sheet_music\":\"Нотное издание\",\"song\":\"Песня\"},\"doc_page\":{\"account_creation\":{\"get_instant_access_with_free_account\":\"Получите мгновенный доступ к этому документу и миллионам других в бесплатном аккаунте.\",\"to_continue_reading_please_sign_in\":\"Чтобы продолжить чтение, пожалуйста, войдите в систему\"},\"ai_enhanced_tag\":{\"ai_enhanced_document\":\"Документ, улучшенный с помощью ИИ\",\"ai_translated_document\":\"Документ, переведенный с помощью ИИ\",\"description\":\"Описание с поддержкой ИИ\",\"description_tooltip\":\"Используя технологию ИИ, мы оптимизировали описание для большей наглядности.\",\"title\":\"Издание с поддержкой ИИ\",\"title_and_description\":\"Издание и описание с поддержкой ИИ\",\"title_and_description_tooltip\":\"Используя технологию ИИ, мы оптимизировали издание и описание для большей наглядности.\",\"title_tooltip\":\"Используя технологию ИИ, мы оптимизировали издание для большей наглядности.\"},\"app_promo\":{\"millions_of_documents\":\"Миллионы документов у вас под рукой\"},\"app_promo_interstitial\":{\"continue_for_free\":\"Продолжить бесплатно\",\"trial_duration\":{\"unlock_full_access_to_the\":\"Откройте для себя полный доступ к крупнейшей в мире цифровой библиотеке с {{trialDuration}}-дневной бесплатной пробной версией.\"},\"upload_your_documents_or_subscribe\":\"Загрузите свои документы или станьте участником Scribd, чтобы получить полный доступ.\"},\"between_page_interstitial\":{\"title_copy_subscribe_only_trial_duration\":\"Разблокируйте полный доступ (страницы {{startPage}} - {{endPage}} ) с помощью {{trialDuration}}-дневной бесплатной пробной версии\",\"unlock_full_access\":{\"page_number_trial_duration\":\"Разблокируйте полный доступ (страница {{props_currentrange}}), загрузив документы или воспользовавшись {{trialDuration}}-дневной бесплатной пробной версией\"},\"upload_or_subscribe_pages\":\"Загрузите свои документы или станьте участником Scribd, чтобы разблокировать полный доступ (страницы {{startPage}}–{{endPage}}).\"},\"blur_promo\":{\"become_member_for_full_access\":\"Станьте участником Scribd и откройте полный доступ.\",\"read_and_download_full_documents\":\"Прочтите и загрузите полные версии документов.\",\"skip_ad\":\"Пропустить рекламу\",\"subscribe_with_a_free_trial\":\"Подпишитесь на бесплатную пробную версию\",\"trial_duration\":{\"start_your_trial\":\"Начните пользоваться {{trialDuration}}-дневной бесплатной пробной версией\"},\"unlock_next_pages_after_an_ad_0\":\"Разблокировать следующую {{count}} страницу после рекламы\",\"unlock_next_pages_after_an_ad_1\":\"Разблокировать следующие {{count}} страницы после рекламы\",\"unlock_next_pages_after_an_ad_2\":\"Разблокировать следующие {{count}} страниц после рекламы\",\"unlock_this_document\":\"Разблокируйте этот документ\",\"unlock_this_document_after_an_ad\":\"Разблокировать этот документ после рекламы\",\"unlock_this_page_after_an_ad\":\"Разблокировать эту страницу после рекламы\",\"upload_a_doc_to_download_or_sub\":\"Загрузите документ, чтобы скачать этот документ или подпишитесь, чтобы читать и скачивать.\",\"upload_to_download\":\"Загрузите, чтобы скачать\"},\"description_modal\":{\"description\":\"Описание\",\"flag_for\":\"Отметить как неприемлемый контент\"},\"doc_chat_additional_feedback\":{\"heading\":\"Оставьте дополнительный отзыв\",\"placeholder\":\"Что вы думаете об ответе? Как его можно улучшить?\"},\"doc_chat_default_response\":{\"with_suggestions\":\"Извините, но мне не удалось найти никакой информации об этом.\"},\"doc_chat_disclaimer\":{\"beta\":\"DocChat работает при поддержке OpenAI и иногда может отображать неверную информацию.\\u003cbr\\u003eМы рекомендуем проверять точность ответов.\"},\"doc_chat_down_vote_feedback\":{\"not_factually_correct\":\"Не соответствует действительности\",\"offensive_unsafe\":\"Оскорбительный/небезопасный\",\"other\":\"Другое\",\"submit\":\"Отправить отзыв\"},\"doc_chat_feedback\":{\"down_vote_question_heading\":\"Почему вы выбрали эту оценку?\",\"thank_you_response\":\"Ваши отзывы очень ценны и помогают нам совершенствовать наши ответы ИИ.\",\"thank_you_response_heading\":\"Большое спасибо за ваш отзыв\"},\"doc_chat_greeting\":{\"heading\":\"Добро пожаловать в DocChat\",\"sub_heading\":\"Я здесь, чтобы ответить на ваши вопросы об этом документе. Спросите меня о чем угодно или выберите предложение ниже, чтобы начать работу.\"},\"doc_chat_input\":{\"placeholder\":\"Выберите предложение или введите вопрос\"},\"doc_chat_popover\":{\"feature_available_bold\":\"Работайте быстрее с DocChat.\",\"feature_available_regular\":\"Пообщайтесь в чате с этим документом, чтобы получить нужную информацию.\",\"feature_not_available_bold\":\"Doc Chat в настоящее время недоступен\",\"feature_not_available_regular\":\"для этого документа. Ознакомьтесь с другими документами, чтобы использовать эту функцию.\"},\"doc_chat_settings\":{\"clear_history\":\"Очистить историю\",\"faq\":\"Вопросы-Ответы\"},\"doc_chat_suggestions\":{\"heading\":\"Вот несколько вопросов, на которые я могу ответить:\"},\"doc_chat_usage\":{},\"download_to_read_ad_free\":\"Скачайте, чтобы читать без рекламы.\",\"fixed_viewport_bottom_components\":{\"check_out_these_free_titles\":\"Вас могут заинтересовать эти бесплатные издания\"},\"flag_document\":{\"flag_for_inappropriate_content\":\"Пометить как неприемлемый контент\"},\"flash\":{\"rating_not_saved_try_again\":\"Оценка не сохранена, попробуйте еще раз\"},\"get_scribd_without_ads\":\"Получите Scribd без рекламы.\",\"incentivized_upload\":{\"to_access_this_document_trial_duration_0\":\"Чтобы получить доступ к этому документу, загрузите один из своих документов или подпишитесь на {{trialDuration}} бесплатную пробную версию. Отменить подписку можно в любое время.\",\"to_access_this_document_trial_duration_1\":\"Чтобы получить доступ к этому документу, загрузите {{count}} своих документа или подпишитесь на {{trialDuration}} бесплатную пробную версию. Отменить подписку можно в любое время.\",\"to_access_this_document_trial_duration_2\":\"Чтобы получить доступ к этому документу, загрузите {{count}} своих документов или подпишитесь на {{trialDuration}} бесплатную пробную версию. Отменить подписку можно в любое время.\"},\"metadata\":{\"description\":{\"original_description\":\"Исходное описание\"}},\"mobile_metadata\":{\"collapse_full_title\":\"Скрыть полное название\",\"expand_full_title\":\"Показать полное название\"},\"page\":{\"preferred_language_set_to_url_params_language_settings_changed\":\"Предпочитаемый язык: {{url_params_language_settings_changed}}\"},\"rate_drawer\":{\"not_useful\":\"Не полезно\",\"useful\":\"Полезно\"},\"ratings\":{\"mark_as_not_useful\":\"Отметить этот документ как бесполезный\",\"mark_as_useful\":\"Отметить этот документ как полезный\",\"no_ratings\":\"0 оценок\",\"no_ratings_yet\":\"Оценок пока нет\",\"num_votes_0\":\"({{count, locale}} голос)\",\"num_votes_1\":\"({{count, locale}} голоса)\",\"num_votes_2\":\"({{count, locale}} голосов)\",\"page_count_0\":\"{{count, locale}} страница\",\"page_count_1\":\"{{count, locale}} страницы\",\"page_count_2\":\"{{count, locale}} страниц\",\"percent_found_document_not_useful\":\"{{percentage}}% сочли этот документ бесполезным\",\"percent_found_document_useful\":\"{{percentage}}% нашли этот документ полезным\",\"press_again_undo\":\"Нажмите еще раз для отмены.\",\"sign_up_to_rate_this_title\":\"Зарегистрируйтесь, чтобы оценить это издание\",\"you_marked_as_useful\":\"Вы отметили этот документ как полезный\",\"you_marked_not_useful\":\"Вы отметили этот документ как бесполезный\"},\"read_this_document_in_other_languages\":\"Прочесть этот документ на других языках\",\"recommender_list\":{\"audiobook\":\"аудиокнига\",\"book\":\"книга\",\"might_also_like\":\"Вам также может понравиться\",\"show_more\":\"Показать еще\"},\"scroll_for_next_page\":\"Прокрутите до следующей страницы\",\"share\":{\"copy_link\":\"Скопировать ссылку\",\"link_copied\":\"Ссылка скопирована!\",\"share_on_facebook\":\"Поделиться в Facebook\",\"share_on_linkedin\":\"Поделиться в LinkedIn\",\"share_on_twitter\":\"Поделиться в Twitter\",\"share_via_email\":\"Поделиться по электронной почте\"},\"share_drawer\":{\"copy_link\":\"Копировать ссылку\"},\"sharing_buttons\":{\"link_copied_private_document\":\"Ссылка скопирована! \\u003cspan class=\\\"link_copied_private_doc\\\"\\u003eПримечание: совместное использование открытой ссылки на документ, помеченный как частный, позволит другим пользователям просматривать его.\\u003c/span\\u003e\",\"not_supported_for_private_documents\":\"Эта функция не поддерживается для частных документов. Если вы хотите поделиться, выберите «Скопировать ссылку» и отправьте ссылку другим.\"},\"this_document_available_in_languages\":\"Этот документ доступен на следующих языках:\",\"toolbar\":{\"download\":\"Скачать\",\"download_now\":\"Скачать сейчас\"},\"translate\":\"Перевести\",\"translate_document\":\"Перевод документа\",\"truncate_promo\":{\"read_and_download_full_documents\":\"Подписчики могут читать и скачивать полные документы.\",\"restart_membership\":\"Восстановить членство\",\"trial_duration\":{\"scribd_members_can_read\":\"Члены Scribd могут читать и загружать полные документы. Ваши первые {{trialDuration}} дней бесплатно!\"},\"unlock_full_access_when_subscribe\":\"Оформите подписку и получите полный доступ\"},\"upload_banner\":{\"copy_0\":\"Скачайте бесплатно, загрузив файл. Более подробная информация ниже.\",\"copy_1\":\"Скачайте бесплатно, загрузив {{count}} файла. Более подробная информация ниже.\",\"copy_2\":\"Скачайте бесплатно, загрузив {{count}} файлов. Более подробная информация ниже.\"},\"upsell_popup\":{\"description\":\"Наслаждайтесь чтением и загрузкой без рекламы на Scribd.\",\"title\":\"Больше чтения. Без рекламы.\"},\"view_original_document_in_language\":\"Посмотреть исходный документ на {{language}}\"},\"everand\":{\"bestsellers\":{\"promo\":{\"enjoy_bestselling_audiobook_titles_when_subscribed\":\"Получайте удовольствие от самых продаваемых аудиокниг по подписке\",\"enjoy_bestselling_titles_when_subscribed\":\"Получайте удовольствие от бестселлеров электронных книг по подписке\"}},\"browse_page\":{\"promo\":{\"books_audiobooks_cancel_anytime\":\"Откройте для себя миллионы электронных книг, аудиокниг и многое другое — от {{price}} в месяц. Отмена подписки доступна в любое время.\",\"instant_access_and_cancel_anytime\":\"Откройте для себя миллионы электронных книг, аудиокниг и многого другого — всего за {{price}} в месяц. Отмена подписки доступна в любое время.\"}},\"lists\":{\"faq_message_html\":\"Мы внесли важные изменения в интерфейс списков. Чтобы узнать больше, \\u003ca href={{faqUrl}} target=\\\"_blank\\\"\\u003eпосетите раздел FAQ\\u003c/a\\u003e.\"},\"megamenu\":{\"what_is_scribd_btn\":{\"what_is_scribd\":\"Что такое Everand?\"}},\"modal\":{\"opt_in\":{\"continue_to_everand\":\"Продолжить в Everand\",\"upcoming_releases_curated_lists_to_your_inbox\":\"Узнавайте о предстоящих выпусках и эксклюзивных оригиналах, а также получайте списки рекомендаций и специальные предложения прямо в свой почтовый ящик.\"},\"progressive_profile\":{\"send_me_email_updates\":\"Отправлять мне по электронной почте обновления от Everand\",\"welcome_to_everand\":\"Добро пожаловать в Everand!\"},\"upsell\":{\"get_the_most_out_of_everand\":\"Используйте Everand по максимуму\",\"unlock_full_access_discover_millions\":\"Разблокируйте полный доступ к самой увлекательной цифровой библиотеке в мире. Откройте для себя миллионы электронных книг, аудиокниг, журналов и многого другого.\"}},\"shared\":{\"cross_link_message\":\"От Everand\",\"footer\":{\"about_scribd\":\"О Everand\",\"everand_-_download_on_the_app_store\":\"Everand — скачайте из App Store\",\"everand_-_get_it_on_google_play\":\"Everand — скачайте из Google Play\",\"everand_-_get_it_on_kindle_fire\":\"Everand для Kindle Fire\"},\"navigation\":{\"enterprise_page\":\"Предприятие\"},\"social_buttons\":{\"scribd_on_facebook_aria_label\":\"Everand на Facebook\",\"scribd_on_instagram_aria_label\":\"Everand в Instagram\",\"scribd_on_pinterest_aria_label\":\"Everand в Pinterest\",\"scribd_on_twitter_aria_label\":\"Everand в Twitter\"}}},\"explore\":{\"banner\":{\"after_trial\":\"Только {{price}} в месяц после пробной версии. \\u003cstrong\\u003eМожно отменить в любое время.\\u003c/strong\\u003e\",\"subtitle\":\"Получите доступ к более, чем 1 000 000 полных изданий онлайн или офлайн с нашими приложениями для \\u003ca href=\\\"{{ios_store_url}}\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\\u003eiOS\\u003c/a\\u003e и \\u003ca href=\\\"{{android_store_url}}\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\\u003eAndroid\\u003c/a\\u003e.\"}},\"get_app_modal\":{\"link_sent_email\":\"Ссылка отправлена! Проверьте электронную почту.\"},\"helpers\":{\"document_meta_tags\":{\"scribd_is_the_world_s_largest_social\":\"Scribd — это крупнейший в мире социальный сайт для чтения и публикаций.\"}},\"home\":{\"logged_in\":{\"content_quickview\":{\"also_available_as_an_audiobook\":\"Также доступно в виде аудиокниги\",\"also_available_as_an_ebook\":\"Также доступно в виде электронной книги\",\"byline\":{\"narrated_by\":\"oзвучено\"},\"close\":\"Закрыть\",\"count_titles_0\":\"{{count}} книга\",\"count_titles_1\":\"{{count}} книги\",\"count_titles_2\":\"{{count}} книг\",\"go_to_content_type_version\":\"Перейти к версии {{content_type}}\",\"loading\":\"Загрузка...\",\"more_about_this_episode\":\"Больше об этом эпизоде\",\"more_about_this_issue\":\"Подробнее об этом выпуске\",\"more_about_this_series\":\"Больше об этой серии\",\"more_about_this_summary\":\"Подробнее об этом кратком содержании\",\"oops_something_went_wrong\":\"Ой! Что-то пошло не так\",\"view_all_articles\":\"Просмотреть все статьи\",\"view_all_episodes\":\"Посмотреть все эпизоды\",\"view_the_full_title_details\":\"Просмотреть полную информацию об издании\"}}},\"landing\":{\"hero\":{\"read_listen_anywhere_anytime\":\"Читайте или слушайте в любое время и в любом месте.\"}},\"lib\":{\"lightbox\":{\"close_dialog\":\"Закрыть диалог\"}},\"megamenu\":{\"documents\":{\"all_documents\":\"Все документы\"},\"hambur_menu\":{\"get_our_free_apps\":\"Получите наши бесплатные приложения\"},\"hamburger_menu\":{\"close_menu\":\"Закрыть меню\",\"sign_in_to_your_everand_account\":\"Войти в аккаунт Everand\",\"sign_in_to_your_scribd_account\":\"Войти в аккаунт Scribd\",\"welcome\":\"Добро пожаловать!\"},\"language\":{\"cancel\":\"Отменить\",\"change_language\":\"Изменить язык\"},\"language_links\":{\"learn_more\":\"Узнать больше\"},\"language_picker_dropdown\":{\"language\":\"Язык\"},\"logged_out\":{\"user_menu\":{\"welcome_to_everand\":\"Добро пожаловать в Everand!\",\"welcome_to_scribd\":\"Добро пожаловать в Scribd!\"}},\"navigation\":{\"categories\":\"Категории\",\"explore_content_type\":\"Открыть {{content_type}}\",\"opens_navigation_menu\":\"Открыть меню навигации\"},\"search_bar\":{\"clear_search\":\"Очистить поиск\",\"close_suggestions\":\"Закрыть список предложений\",\"no_results_found\":\"Результаты поиска отсутствуют.\",\"num_results_are_available\":\"Доступно {{num_results}} результата/ов, для навигации используйте кнопки со стрелками «Вверх» и «Вниз».\",\"recent_searches\":\"Недавние запросы\",\"search\":\"Поиск\"},\"top_bar\":{\"upload\":\"Загрузить\"},\"upload\":{\"upload_header\":\"Загрузить\"},\"user_menu\":{\"document_stats\":\"Статистика документов\",\"document_uploads\":\"Загрузки документов\",\"faq_and_support\":\"Часто задаваемые вопросы и поддержка\",\"hi_name\":\"Здравствуйте, {{name}}!\",\"invite_friends\":\"Пригласить друзей\",\"language\":\"Язык ({{current_language}})\",\"public_profile\":\"Общий профиль\",\"read_for_free\":\"Читать бесплатно\",\"visually_hidden_user_settings\":\"Пользовательские настройки\",\"your_account\":\"Ваш аккаунт\"},\"what_is_scribd_btn\":{\"what_is_scribd\":\"Что такое Scribd?\"}},\"modals\":{\"add_to_list\":{\"save\":\"Сохранить в список\",\"title\":\"Добавить в список\"},\"confirm_delete_review\":{\"title\":\"Удалить ваш отзыв и оценку?\"},\"confirm_unsave_item\":{\"title\":\"Удалить издание из сохраненной библиотеки и всех сохраненных списков?\"},\"confirm_unsave_item_in_list\":{\"remove_from_your_lists\":\"Удалить из ваших списков?\",\"removing_from_saved\":\"Удаление из списка «Сохранено» также удалит наименование из ваших списков.\",\"removing_this_title_from_saved\":\"Удаление этого наименования из раздела «Сохраненные» также удалит его из ваших списков.\",\"title\":\"Это наименование также есть в списке.\"},\"create_list\":{\"create_list\":\"Создать список\",\"failed_to_create_try_again\":\"Не удалось создать список, попробуйте еще раз\",\"input_description\":{\"privacy_type\":\"Никто, кроме вас, не может просматривать этот список. Совместное использование будет отключено.\"},\"input_label\":{\"name\":\"Как бы вы назвали этот список?\",\"privacy_type\":\"Сделать список частным\"},\"title\":\"Новый список\",\"validation_errors\":{\"name\":\"Пожалуйста, введите название списка\"}},\"language_picker\":{\"language_options\":\"Варианты языка\",\"select_preferred_language\":\"Выберите желаемый язык\",\"translate_and_tailor\":\"Мы переведем средства для навигации по сайту и адаптируем ваши личные рекомендации, в случае, если это возможно, в соответствии с выбранным вами языком.\",\"translate_to_match\":\"Мы переведем средства для навигации по сайту в соответствии с выбранным вами языком.\"},\"lockshockroadblock\":{\"problem_with_your_last_payment\":\"Проблема с вашим последним платежом\",\"update_your_payment_to_continue\":\"Обновите платежные данные, чтобы продолжить\",\"we_had_an_issue_with_your_last_payment\":\"С вашим последним платежом возникла проблема. Обновите платежную информацию, чтобы продолжить.\",\"your_membership_is_on_hold\":\"Ваша подписка приостановлена из-за проблемы с вашим последним платежом.\"}},\"page_gate_modal\":{\"check_you_email\":{\"check_your_email\":\"Проверьте свою электронную почту\"},\"check_your_email\":{\"change_email\":\"Неправильный адрес электронной почты?\",\"didnt_receive\":\"Не получили электронное письмо? Проверьте папку со спамом или\",\"email_not_verified_verify_to_continue\":\"Электронная почта не подтверждена. Пожалуйста, подтвердите свой адрес электронной почты, чтобы продолжить.\",\"i_have_verified_my_email\":\"Я подтвердил(-а) свой адрес электронной почты\",\"logout_login_url\":\"Используйте другой адрес электронной почты\",\"send_again\":\"отправьте еще раз.\",\"to_protect_your_account_html\":\"Чтобы защитить ваш аккаунт, мы отправили электронное письмо для подтверждения на адрес \\u003cstrong\\u003e{{email}}\\u003c/strong\\u003e. Щелкните по ссылке в этом письме, чтобы подтвердить свою личность. Чтобы узнать больше, посетите наши \\u003ca href=\\\"{{support_url}}\\\" class=\\\"faq_link\\\" target=\\\"_blank\\\"\\u003eВопросы и ответы\\u003c/a\\u003e.\",\"verify_email_before_continuing\":\"Пожалуйста, подтвердите свой адрес электронной почты, прежде чем продолжить.\"}},\"pdfs\":{\"doc_search\":{\"close_search\":\"закрыть поиск\",\"page\":\"стр.\"},\"lightboxes\":{\"download_lightbox\":{\"download_document\":\"Скачать документ\",\"resume_membership\":\"Возобновить подписку\",\"resuming\":\"Возобновление\",\"your_membership_is_currently_paused_until\":\"В настоящее время ваша подписка приостановлена до {{state_nag_next_payment_due}}. Возобновить подписку, чтобы скачать\"},\"embed_lightbox\":{\"autosize\":\"Авторазмер\",\"beginning_of_document\":\"Начало документа\",\"copy_link\":\"Скопировать ссылку\",\"current_page\":\"Текущая страница\",\"custom\":\"Настраиваемый\",\"customization_options_available_below\":\"Параметры настройки находятся ниже\",\"embed\":\"Вставить\",\"embed_this_in_your_website\":\"Встройте этот код на свой веб-сайт\",\"format\":\"Формат\",\"fullscreen\":\"Полноэкранный режим\",\"generate_a_link\":\"Создать ссылку\",\"height\":\"Высота: \",\"html\":\"HTML\",\"link_options\":\"Параметры ссылки\",\"link_to_the\":\"Ссылка на\",\"options\":\"Действия\",\"preview\":\"Отрывок\",\"scroll\":\"Прокрутка\",\"size\":\"Размер\",\"slideshow\":\"Слайд-шоу\",\"start_at_page\":\"Начать со страницы:\",\"style\":\"Стиль:\",\"sup_sup_the_code_will_be_updated\":\"\\u003csup\\u003e*\\u003c/sup\\u003e Код обновится в соответствии с вашими изменениями.\",\"width\":\"Ширина: \",\"wordpress\":\"Wordpress\"},\"flag_doc_lightbox\":{\"cancel\":\"Отмена\",\"if_you_are_the_copyright_owner_html\":\"Если вы являетесь владельцем авторских прав на этот документ и хотите заявить об этом, перейдите на страницу \\u003ca href=\'{{faq_urls_copyright_infringement}}\'\\u003eуведомления о нарушении авторских прав\\u003c/a\\u003e и отправьте сообщение.\",\"please_tell_us_reason_s_for_reporting\":\"Сообщите причины жалобы на этот документ\",\"submit\":\"Отправить\"},\"print_lightbox\":{\"cancel\":\"Отмена\",\"download_and_print\":\"Скачать и распечатать\",\"in_order_to_print_this_document_\":\"Перед распечаткой документа со Scribd его сначала необходимо скачать.\",\"print_document\":\"Распечатать документ\"}},\"redesign_elements\":{\"actions\":{\"embed\":\"Вставить\",\"print\":\"Печать\",\"share\":\"Поделиться\"},\"metadata_section\":{\"full_description\":\"Полное описание\",\"related_titles\":\"Похожие издания\"},\"more_info_module\":{\"document_information\":\"Сведения о документе\"}},\"show\":{\"sign_in_to_flag_this_title\":\"Войдите, чтобы отметить это издание\",\"you_re_reading_a_preview\":\"Вы читаете отрывок\"},\"sidebar\":{\"available_formats\":\"Доступные форматы\",\"click_to_collapse_document_information\":\"нажмите, чтобы свернуть сведения о документе\",\"click_to_expand_document_information\":\"нажмите, чтобы развернуть сведения о документе\",\"copyright\":\"Авторское право:\",\"copyright_no_colon\":\"Авторское право\",\"document_useful_message\":\"Этот документ был вам полезен?\",\"download_or_read_formats\":\"{{extensions}} или читайте онлайн в Scribd\",\"is_this_inappropriate_content\":\"Это неприемлемый материал?\",\"isbn\":\"ISBN:\",\"isbn_no_colon\":\"ISBN\",\"report_this_document\":\"Пожаловаться на этот документ\",\"share_or_embed_document\":\"Поделиться или встроить документ\",\"strong_download_strong_as_available_extensions_map_upcase_join_or_read_online\":\"\\u003cstrong\\u003eСкачайте\\u003c/strong\\u003e в формате {{available_extensions_map_upcase_join}} или читайте онлайн в Scribd\",\"uploaded_by\":\"Загружено:\",\"view_more\":\"Показать больше\",\"written_by\":\"Автор:\"},\"toolbar\":{\"exit_fullscreen\":\"Выйти из полноэкранного режима\",\"fullscreen\":\"Полноэкранный режим\",\"of_numberformat_props_document_total_pages\":\"из {{numberformat_props_document_total_pages}}\",\"search_document\":\"Поиск документа\",\"showing_strong_1_strong_result_for_query\":\"Показан \\u003cstrong\\u003e1\\u003c/strong\\u003e результат для\",\"showing_strong_num_results_strong_results_for_query\":\"Показано \\u003cstrong\\u003e{{num_results}}\\u003c/strong\\u003e результатов для\",\"you_are_on_page_props_current_page\":\"Вы находитесь на странице: {{props_current_page}}\",\"zoom_in\":\"Увеличить\",\"zoom_out\":\"Уменьшить\"},\"upvote\":{\"not_useful\":\"Бесполезно\",\"this_document_is\":\"Этот документ…\",\"useful\":\"Полезно\"}},\"plan_selection_page\":{\"plan_card\":{\"a_selection\":\"Более 200 000 электронных книг и аудиокниг, включая подборку самых популярных изданий\",\"billed_monthly\":\"Счет выставляется ежемесячно после пробного периода.\",\"docs_presentations\":\"Более 170 миллионов документов и презентаций на Scribd и SlideShare без рекламы\",\"magazines_etc\":\"Журналы, подкасты и нотные издания\",\"plus\":\"Plus:\",\"titles_per_month\":\"{{titles}} изданий в месяц из нашего каталога Plus, включающего еще больше бестселлеров и новинок\",\"unlimited\":\"Неограниченный доступ:\"}},\"plans\":{\"unlock_dropdown\":{\"subscription_ends_date\":\"Подписка заканчивается {{date}}\",\"unlocks_0\":\"{{count}} открытие\",\"unlocks_1\":\"{{count}} открытия\",\"unlocks_2\":\"{{count}} открытий\",\"unlocks_renew\":\"Кредиты возобновятся {{refresh_date}}\",\"unlocks_renew_after_payment_information\":\"Oткрытий обновляются после обновления информации о платеже.\",\"view_unlock_history\":\"Просмотреть историю открытие\"},\"unlock_modal\":{\"after_unlocking_this_title_0\":\"После открытие этого издания у вас останется {{count}} кредит до {{refresh_date}}.\",\"after_unlocking_this_title_1\":\"После открытия этого издания у вас останется {{count}} кредита до {{refresh_date}}.\",\"after_unlocking_this_title_2\":\"После открытий этого издания у вас останется {{count}} кредитов до {{refresh_date}}.\",\"unlock_this_title\":\"Oткрытие это издание\",\"you_have_unlocks_available_0\":\"У вас есть доступно {{count}} открытие.\",\"you_have_unlocks_available_1\":\"У вас есть доступно {{count}} открытия.\",\"you_have_unlocks_available_2\":\"У вас есть доступно {{count}} открытий.\"}},\"privacy_policy_modal\":{\"accept\":\"Принять и продолжить\",\"details_below\":\"Подробнее об этом вы можете прочитать ниже. Принимая, вы соглашаетесь с обновленной политикой конфиденциальности.\",\"thank_you\":\"Спасибо!\",\"title\":\"Мы обновили политику конфиденциальности.\",\"try_again\":\"Возникла проблема, пожалуйста, попробуйте еще раз.\",\"updated_privacy_policy\":\"Мы обновили нашу политику конфиденциальности, чтобы соответствовать изменяющимся глобальным правовым нормам конфиденциальности и предоставить вам информацию об ограниченных способах использования ваших данных.\",\"view_policy\":\"Просмотреть обновленную политику конфиденциальности\"},\"promos\":{\"annual_offer\":{\"current_plan\":\"Текущий план\",\"immerse\":\"Погружайтесь круглый год\",\"read_more_html\":\"Читать далее.\\u003cspan class=\'save_text\'\\u003eСэкономьте больше.\\u003c/span\\u003e\",\"save_percent\":\"Экономия {{value}}%\",\"switch_plan\":\"Изменить план\",\"terms_footer_html\":\"Когда вы нажмете «Изменить план», {{date}} с вас будет снята ежегодная оплата в размере {{price}}. Смотрите наши \\u003ca class=\'terms_link\' target=\\\"_blank\\\" href={{href}}\\u003eусловия обслуживания\\u003c/a\\u003e.\"}},\"receipt\":{\"download\":{\"document\":\"Документ\",\"download_iframe\":\"Скачать: iframe\",\"downloading\":\"Скачивается\"}},\"saved\":{\"list_item_controls\":{\"create_list\":\"Создать список\"}},\"scribd\":{\"modal\":{\"opt_in\":{\"continue_to_scribd\":\"Продолжить в Scribd\",\"special_offers_new_content_to_your_inbox\":\"Узнавайте о специальных предложениях, новых материалах, а также о рекомендациях наших премиальных продуктов прямо в свой почтовый ящик.\"},\"progressive_profile\":{\"send_me_email_updates\":\"Отправлять мне по электронной почте обновления от Scribd\",\"welcome_to_scribd\":\"Добро пожаловать в Scribd!\"},\"upsell\":{\"get_the_most_out_of_scribd\":\"Используйте Scribd по максимуму\",\"unlock_full_access_read_offline\":\"Разблокируйте полный доступ к самой увлекательной электронной библиотеке в мире. Получите неограниченное количество бесплатных загрузок и читайте в автономном режиме в приложении.\"}},\"navigation_category\":{\"academic\":\"Академический\",\"culture\":\"Культура\",\"hobbies_and_crafts\":\"Хобби и ремесла\",\"personal_growth\":\"Личностный рост\",\"professional\":\"Профессиональный\"},\"shared\":{\"cross_link_message\":\"От Scribd\"}},\"search\":{\"filters\":{\"filters\":\"Фильтры\"},\"pagination\":{\"next\":\"следующая\",\"previous\":\"предыдущая\"},\"results\":{\"reading_list\":\"Список для чтения\",\"top_result\":\"Лучший результат\"}},\"shared\":{\"account_creation\":{\"add_note_sign_in\":\"Чтобы добавить заметку, войдите в систему\",\"add_note_sign_up\":\"Чтобы добавить заметку, зарегистрируйтесь\",\"already_have_an_account\":\"Уже есть учетная запись?\",\"annotate_document_sign_in\":\"Чтобы комментировать этот документ, войдите в систему\",\"annotate_document_sign_up\":\"Чтобы комментировать этот документ, зарегистрируйтесь\",\"annotate_sign_in\":\"Чтобы комментировать, войдите в систему\",\"back_to_sign_in\":\"Назад на страницу входа\",\"continue_reading_sign_in\":\"Чтобы продолжить чтение, войдите в систему\",\"continue_reading_sign_up\":\"Чтобы продолжить чтение, зарегистрируйтесь\",\"create_bookmark_sign_in\":\"Чтобы создать закладку, войдите в систему\",\"create_bookmark_sign_up\":\"Чтобы создать закладку, зарегистрируйтесь\",\"creating_your_account\":\"Создание вашего аккаунта...\",\"disclaimer\":\"Регистрируясь в Scribd, вы принимаете наши \\u003ca href=\\\"{{terms_href}}\\\" target=\\\"_blank\\\" tabIndex=\\\"0\\\"\\u003eПравила обслуживания {{opens_in_new_window}}\\u003c/a\\u003e и \\u003ca href=\\\"{{privacy_href}}\\\" target=\\\"_blank\\\" tabIndex=\\\"0\\\"\\u003eПолитику конфиденциальности {{opens_in_new_window}}\\u003c/a\\u003e\",\"download_document_sign_in\":\"Чтобы скачать этот документ, войдите в систему\",\"download_document_sign_up\":\"Чтобы скачать этот документ, зарегистрируйтесь\",\"errors\":{\"email_invalid\":\"Этот адрес электронной почты недействителен или заблокирован. Введите другой адрес электронной почты.\",\"email_registered\":\"Этот адрес эл. почты уже зарегистрирован в Scribd. Введите свой пароль, чтобы войти.\",\"email_taken\":\"Этот адрес эл. почты занят другим пользователем, повторите попытку\",\"invalid_character_in_name_please_remove\":\"Имя содержит недопустимый символ. Удалите любые спецсимволы.\",\"no_valid_email_modal_desc\":\"Ваш адрес электронной почты отсутствует или недействителен. Для обеспечения безопасности вашего аккаунта укажите действительный адрес электронной почты.\",\"no_valid_email_modal_title\":\"Обновить свой адрес электронной почты\",\"password_10_chars\":\"Введите пароль длиной не менее 10 символов\",\"please_enter_a_name\":\"Введите имя\",\"please_enter_a_valid_email\":\"Введите действующий адрес эл. почты\",\"that_doesn_t_appear_to_be_a\":\"Вы указали недопустимый адрес эл. почты. Повторите попытку.\"},\"facebook\":{\"error\":\"Извините, не удалось выполнить вход через Facebook. Попробуйте снова позже.\",\"sign_in\":\"Вход через Facebook\",\"sign_up\":\"Регистрация через Facebook\"},\"fail\":\"Ошибка.\",\"flag_document_sign_in\":\"Чтобы отметить этот документ, войдите в систему\",\"flag_document_sign_up\":\"Чтобы отметить этот документ, зарегистрируйтесь\",\"forgot\":{\"enter_email\":\"Укажите свой адрес эл. почты и мы отправим вам ссылку для сброса пароля.\",\"weve_sent_email_html\":\"Мы отправили эл. письмо на \\u003cstrong\\u003e{{escape_validated_email}}\\u003c/strong\\u003e с инструкциями по сбросу пароля. Если в ближайшее время письмо не придет, то проверьте папку со спамом и прочтите информацию в \\u003ca href=\\\"https://support.scribd.com/hc/articles/210134406-What-do-I-do-if-I-ve-lost-or-forgotten-my-password-\\\"\\u003eстатье справки\\u003c/a\\u003e.\"},\"forgot_password\":\"Забыли пароль?\",\"give_gift_sign_in\":\"Чтобы вручить подарок, войдите в систему\",\"give_gift_sign_up\":\"Чтобы вручить подарок, зарегистрируйтесь\",\"google\":{\"error\":\"Не удалось войти в Google\"},\"highlight_document_sign_in\":\"Чтобы выделить этот документ, войдите в систему\",\"highlight_document_sign_up\":\"Чтобы выделить этот документ, зарегистрируйтесь\",\"join_today_to_start_reading\":\"Присоединяйтесь сегодня, чтобы начать читать\",\"logging_you_in\":\"Вход в систему...\",\"not_you\":\"Это не вы?\",\"now_bringing_you_back\":\"Переход на исходную страницу…\",\"pass\":\"Проходить.\",\"password_must_be_at_least_ten_characters\":\"Не менее 10 символов\",\"password_not_been_breached\":\"Пароль не был взломан\",\"password_strength\":\"Надежность пароля\",\"password_strength_colon\":\"Надежность пароля: \",\"password_strength_good\":\"Надежный\",\"password_strength_moderate\":\"Средняя\",\"password_strength_strong\":\"Очень надежный\",\"password_strength_weak\":\"Ненадежный\",\"people_browsing_scribd_html_0\":\"\\u003cspan\\u003e{{count, locale}} человек\\u003c/span\\u003e просматривает Scribd прямо сейчас\",\"people_browsing_scribd_html_1\":\"\\u003cspan\\u003e{{count, locale}} человека\\u003c/span\\u003e просматривают Scribd прямо сейчас\",\"people_browsing_scribd_html_2\":\"\\u003cspan\\u003e{{count, locale}} человек\\u003c/span\\u003e просматривают Scribd прямо сейчас\",\"rate_document_sign_in\":\"Чтобы оценить этот документ, войдите в систему\",\"rate_document_sign_up\":\"Чтобы оценить этот документ, зарегистрируйтесь\",\"recaptcha_disclaimer\":\"Этот сайт защищен технологией reCAPTCHA, действуют \\u003ca href=\\\"{{privacy_href}}\\\" target=\\\"_blank\\\"\\u003eПолитика конфиденциальности {{opens_in_new_window}}\\u003c/a\\u003e и \\u003ca href=\\\"{{policy_href}}\\\" target=\\\"_blank\\\"\\u003eПравила обслуживания {{opens_in_new_window}}\\u003c/a\\u003e Google.\",\"redeem_offer_sign_in\":\"Чтобы активировать это предложение, войдите в систему\",\"redeem_offer_sign_up\":\"Чтобы активировать это предложение, зарегистрируйтесь\",\"remember_me\":\"Запомнить меня\",\"reset_password\":\"Сброс пароля\",\"save_document_sign_in\":\"Чтобы сохранить этот документ, войдите в систему\",\"save_document_sign_up\":\"Чтобы сохранить этот документ, зарегистрируйтесь\",\"send_me_updates_from_scribd\":\"Получать новости от Scribd\",\"share_quote_sign_in\":\"Чтобы поделиться этой цитатой, войдите в систему\",\"share_quote_sign_up\":\"Чтобы поделиться этой цитатой, зарегистрируйтесь\",\"sign_in\":\"Войти\",\"sign_in_add_note\":\"Чтобы добавить заметку, войдите в систему\",\"sign_in_bookmark\":\"Чтобы создать закладку, войдите в систему\",\"sign_in_create_list\":\"Чтобы создать список, войдите в систему\",\"sign_in_download\":\"Чтобы скачать, войдите в систему\",\"sign_in_follow\":\"Чтобы подписаться, войдите в систему\",\"sign_in_give_gift\":\"Чтобы вручить подарок, войдите в систему\",\"sign_in_highlight\":\"Чтобы выделить, войдите в систему\",\"sign_in_rate\":\"Чтобы оценить, войдите в систему\",\"sign_in_redeem\":\"Чтобы активировать, войдите в систему\",\"sign_in_review\":\"Чтобы просмотреть, войдите в систему\",\"sign_in_save\":\"Чтобы сохранить, войдите\",\"sign_in_share_quote\":\"Чтобы поделиться цитатой, войдите в систему\",\"sign_in_start_months_0\":\"Чтобы начать {{count}} бесплатный месяц, войдите в систему\",\"sign_in_start_months_1\":\"Чтобы начать {{count}} бесплатных месяца, войдите в систему\",\"sign_in_start_months_2\":\"Чтобы начать {{count}} бесплатных месяцев, войдите в систему\",\"sign_in_successful\":\"Вход выполнен\",\"sign_in_to_scribd\":\"Вход в Scribd\",\"sign_in_upload\":\"Чтобы загрузить, войдите в систему\",\"sign_in_with_email\":\"Войти с помощью адреса эл. почты\",\"sign_up\":\"Зарегистрируйтесь\",\"sign_up_add_note_this_title\":\"Зарегистрируйтесь, чтобы добавить примечание к этому изданию.\",\"sign_up_annotate\":\"Зарегистрируйтесь, чтобы комментировать.\",\"sign_up_continue_reading_this_title\":\"Зарегистрируйтесь, чтобы продолжить читать это издание.\",\"sign_up_create_bookmark_this_title\":\"Зарегистрируйтесь, чтобы создать закладку.\",\"sign_up_create_list_this_title\":\"Зарегистрируйтесь, чтобы создать список\",\"sign_up_download_this_title\":\"Зарегистрируйтесь, чтобы скачать это издание.\",\"sign_up_follow_magazine_this_title\":\"Зарегистрируйтесь, чтобы подписаться на этот журнал.\",\"sign_up_free_months_this_title_0\":\"Зарегистрируйтесь, чтобы {{count}} месяц пользоваться бесплатно.\",\"sign_up_free_months_this_title_1\":\"Зарегистрируйтесь, чтобы {{count}} месяца пользоваться бесплатно.\",\"sign_up_free_months_this_title_2\":\"Зарегистрируйтесь, чтобы {{count}} месяцев пользоваться бесплатно.\",\"sign_up_give_gift_this_title\":\"Зарегистрируйтесь, чтобы сделать этот подарок.\",\"sign_up_highlight_this_title\":\"Зарегистрируйтесь, чтобы выделить.\",\"sign_up_or_sign_in\":\"Зарегистрируйтесь или выполните вход\",\"sign_up_save\":\"Чтобы сохранить, создайте аккаунт Scribd\",\"sign_up_save_this_title\":\"Зарегистрируйтесь, чтобы сохранить это издание.\",\"sign_up_share_quote_this_title\":\"Зарегистрируйтесь, чтобы поделиться цитатой из этого издания.\",\"sign_up_successful\":\"Регистрация выполнена\",\"sign_up_to_rate_title\":\"Зарегистрируйтесь, чтобы оценить это издание\",\"sign_up_to_review_title\":\"Зарегистрируйтесь, чтобы просмотреть это издание\",\"sign_up_with_email\":\"Регистрация с помощью адреса эл. почты\",\"signup_to_redeem_offer\":\"Зарегистрируйтесь, чтобы воспользоваться предложением\",\"start_free_months_sign_in_0\":\"Чтобы начать {{count}} бесплатный месяц, войдите в систему\",\"start_free_months_sign_in_1\":\"Чтобы начать {{count}} бесплатных месяца, войдите в систему\",\"start_free_months_sign_in_2\":\"Чтобы начать {{count}} бесплатных месяцев, войдите в систему\",\"start_free_months_sign_up_0\":\"Чтобы начать {{count}} бесплатный месяц, зарегистрируйтесь\",\"start_free_months_sign_up_1\":\"Чтобы начать {{count}} бесплатных месяца, зарегистрируйтесь\",\"start_free_months_sign_up_2\":\"Чтобы начать {{count}} бесплатных месяцев, зарегистрируйтесь\",\"upload_document_sign_in\":\"Чтобы загрузить документ, войдите в систему\",\"upload_document_sign_up\":\"Чтобы загрузить документ, зарегистрируйтесь\",\"use_another_email_address\":\"Попробуйте другой адрес эл. почты\"},\"actions\":{\"read_continue\":\"Продолжить чтение\",\"read_preview\":\"Читать отрывок\"},\"ad_blocker_modal\":{\"i_disabled_my_ad_blocker\":\"Я отключил свой блокировщик рекламы\",\"it_looks_like_youre_using_and_ad_blocker\":\"Похоже, вы используете блокировщик рекламы.\",\"show_me_how\":\"Показать мне как\",\"to_listen_to_titels_on_everand_disble_ad_blocker_or_use_mobile_app\":\"Чтобы слушать аудиокниги на Everand, отключите свой блокировщик рекламы или воспользуйтесь нашим мобильным приложением.\",\"to_read_titles_on_everand_disable_ad_blocker_or_use_mobile_app\":\"Чтобы читать книги на Everand, отключите свой блокировщик рекламы или воспользуйтесь нашим мобильным приложением.\"},\"byline\":{\"and\":\"и\",\"by\":\"Автор\",\"published_by\":\"Опубликовано\",\"written_by\":\"Написано\"},\"carousels\":{\"carousel_next\":\"Следующее в карусели\",\"carousel_previous\":\"Карусель назад\",\"skip_carousel\":\"Пропустить карусель\"},\"common\":{\"ad\":\"рек.\",\"add_a_new_payment_method\":\"Добавить новый способ оплаты\",\"added_by\":\"Добавлено\",\"back\":\"Назад\",\"back_to_top\":\"Вернуться наверх\",\"cancel\":\"Отменить\",\"close\":\"Закрыть\",\"close_dialog\":\"Закрыть диалог\",\"delete\":\"Удалить\",\"description\":\"Описание\",\"do_not_ask_me_again\":\"Не спрашивать меня снова\",\"download\":\"Скачать\",\"email_address\":\"Адрес эл. почты\",\"error\":\"Ошибка\",\"errors\":{\"could_not_complete_request\":\"Не удалось выполнить ваш запрос\",\"failed_to_delete_review\":\"Отзыв не удален. Пожалуйста, попробуйте еще раз.\",\"failed_to_load\":\"Не удалось загрузить, попробуйте еще раз\",\"failed_to_remove_title\":\"Не удалось удалить наименование\",\"failed_to_save_review\":\"Ваш отзыв не был сохранен. Пожалуйста, попробуйте еще раз.\",\"failed_to_save_review_vote\":\"Ваш голос не был сохранен. Пожалуйста, попробуйте еще раз.\",\"failed_to_save_title\":\"Не удалось сохранить наименование\",\"please_try_again_later\":\"Повторите попытку позже.\"},\"forms\":{\"at_least_10_characters\":\"(минимум 10 символов)\",\"email\":\"Эл. почта\",\"error\":\"Ошибка\",\"invalid\":\"Недействительный\",\"invalid_email\":\"Введите действующий адрес эл\",\"name\":\"Имя\",\"optional\":\"(необязательно)\",\"password\":\"Пароль\",\"please_enter_a_password\":\"Введите пароль\",\"please_enter_an_email\":\"Введите адрес эл. почты\",\"required\":\"(обязательно)\"},\"hide\":\"Скрыть\",\"info\":\"Информация\",\"issue\":\"Выпуск публикации\",\"key_insights\":\"Ключевые идеи из\",\"learn_more\":\"Узнать больше\",\"length\":\"Длина\",\"library\":{\"add_to_list\":{\"success_message\":\"Добавлено в {{collection_name}}\"},\"add_with_title\":\"Сохранить {{title}} на потом\",\"remove_with_title\":\"Удалить {{title}} из сохраненных\",\"sign_up_to_save\":\"Зарегистрируйтесь, чтобы сохранить это название\"},\"listen_free\":\"Слушать бесплатно\",\"listen_free_for_30_days\":\"Слушать бесплатно в течение {{trialDuration}} дней\",\"listen_now\":\"Слушать сейчас\",\"listen_on_everand\":\"Слушать на Everand\",\"load_more\":\"Загрузить больше\",\"more_about_this_title\":\"Больше об этом издании\",\"new_to_scribd\":\"Недавно в Scribd?\",\"notice\":\"Уведомление\",\"opens_in_a_new_window\":\"откроется в новом окне\",\"or\":\"Или…\",\"play_preview\":\"Слушать отрывок\",\"preferred_language_set_to_language\":\"Предпочитаемый язык: {{language}}\",\"progress\":{\"listened\":\"прослушано\",\"read\":\"читать\"},\"read_count_0\":\"{{count}} раз прочитано\",\"read_count_1\":\"{{count}} раза прочитано\",\"read_count_2\":\"{{count}} раз прочитано\",\"read_free\":\"Читать бесплатно\",\"read_more\":\"Читать больше\",\"read_now\":\"Прочитать сейчас\",\"read_on_everand\":\"Читать на Everand\",\"read_on_scribd\":\"Читать на Scribd\",\"read_preview\":\"Читать отрывок\",\"related_categories\":\"Связанные категории\",\"remove\":\"Удалить\",\"remove_from_saved\":\"Удалить из сохраненных\",\"removed_from_saved\":\"Удалено из сохраненного\",\"removed_from_your_saved_list\":\"Удалено из вашего списка сохраненных.\",\"restart_subscription\":\"Перезапустить подписку\",\"resume_subscription\":\"Возобновить подписку\",\"save\":\"Сохранить\",\"save_for_later\":\"Сохранить на потом\",\"saved\":\"Сохранено\",\"selected\":\"(выбрано)\",\"send_email\":\"Отправить письмо\",\"share_on\":{\"email\":\"Поделиться по электронной почте\",\"email_mail_client\":\"Поделиться по электронной почте, открывается в почтовом клиенте\",\"facebook\":\"Поделиться в Facebook\",\"facebook_new_window\":\"Поделиться в Facebook, открывается в новом окне\",\"linkedin\":\"Поделиться в LinkedIn\",\"linkedin_new_window\":\"Поделиться в LinkedIn, открывается в новом окне\",\"pinterest\":\"Поделиться в Pinterest\",\"pinterest_new_window\":\"Поделиться в Pinterest, открывается в новом окне\",\"twitter\":\"Поделиться в Twitter\",\"twitter_new_window\":\"Поделиться в Twitter, открывается в новом окне\"},\"show\":\"Показать\",\"sign_in\":\"Вход\",\"sign_out\":\"Выйти\",\"songbook\":\"Песенник\",\"start_your_subscription\":\"Оформите свою подписку\",\"success\":\"Готово\",\"success_exclamation\":\"Готово!\",\"title_author_separator\":\"автора\",\"undo\":\"Отменить\",\"undo_title_removed_from_saved\":\"Отменить {{title}} удалено из сохраненного\",\"uploaded_by\":\"Загружено\",\"welcome_back\":\"С возвращением\",\"welcome_back_exclamation\":\"С возвращением!\",\"worlds_fascinating_library\":\"Самая захватывающая библиотека в мире\"},\"competitor_matrix\":{\"last_updated_aug\":\"Последнее обновление 5 августа 2021 г.\",\"million_ebooks\":\"1 000 000+ электронных книг\",\"million_magazine_news_articles\":\"1 000 000+ журнальных и новостных статей\",\"no\":\"Нет\",\"thousands_audiobooks\":\"200 000+ аудиокниг\",\"title\":\"Узнайте, почему читатели выбирают Scribd\",\"yes\":\"Да\"},\"content_lengths\":{\"articles_with_count_0\":\"{{count, locale}} статья\",\"articles_with_count_1\":\"{{count, locale}} статьи\",\"articles_with_count_2\":\"{{count, locale}} статей\",\"hour_with_count_0\":\"{{count, locale}} час\",\"hour_with_count_1\":\"{{count, locale}} часа\",\"hour_with_count_2\":\"{{count, locale}} часов\",\"minute_with_count_0\":\"{{count, locale}} минута\",\"minute_with_count_1\":\"{{count, locale}} минуты\",\"minute_with_count_2\":\"{{count, locale}} минут\",\"page_with_count_0\":\"{{count, locale}} страница\",\"page_with_count_1\":\"{{count, locale}} страницы\",\"page_with_count_2\":\"{{count, locale}} страниц\",\"songs_with_count_0\":\"{{count, locale}} песня\",\"songs_with_count_1\":\"{{count, locale}} песни\",\"songs_with_count_2\":\"{{count, locale}} песен\"},\"content_preview\":{\"leaving_everand\":\"Будет удалено с Everand {{date}}\"},\"content_types\":{\"series\":\"Серии\"},\"doc_download_modal\":{\"check_out_these\":\"Ознакомьтесь с другими изданиями\",\"download_as\":\"Скачать как:\",\"download_document\":\"Скачать документ\",\"download_iframe\":\"Загрузить iframe\",\"download_started\":\"Скачивание началось\",\"membership_paused_html\":\"Ваша подписка в настоящее время приостановлена до {{resumeMembershipDate}}. Хотите возобновить подписку сейчас, чтобы загрузить \\u003cem\\u003e{{title}}\\u003c/em\\u003e?\",\"not_available\":\"Этот документ недоступен для загрузки\",\"uploaded\":\"Загружено пользователем\"},\"doc_preview\":{\"views\":\"{{formatted_views}} просмотров\"},\"errors\":{\"action_incomplete_heading\":\"Действие не завершено\",\"action_incomplete_message\":\"Ой! К сожалению, в данный момент мы не можем выполнить запрошенное вами действие. Мы благодарны вам за терпение, пока мы ищем решение.\",\"something_went_wrong\":\"Что-то пошло не так, попробуйте еще раз.\"},\"everand\":{\"cta\":{\"download_free_days\":\"Скачать бесплатно на {{trialDuration}} дней\",\"read_free_for_30_days\":\"Читайте бесплатно в течение 30 дней\"}},\"everand_banner\":{\"visit_everand\":\"Зайти в Everand.\"},\"footer\":{\"about\":\"Сведения\",\"about_scribd\":\"О Scribd\",\"accessibility\":\"Доступность\",\"cancel_contract\":\"Отмените договора здесь\",\"contact_us\":\"Свяжитесь с нами\",\"cookie_preferences\":\"Настройки файлов cookie\",\"copyright\":\"Авторское право\",\"copyright_copy_current_year_scribd\":\"Авторское право \\u0026copy; {{currentYear}} Scribd Inc.\",\"do_not_sell_share_info\":\"Не продавать и не передавать мою личную информацию\",\"everand_books_audiobooks\":\"Everand: электронные книги и аудиокниги\",\"footer_menu\":\"Нижнее меню\",\"gifts\":\"Подарки\",\"help_faq\":\"Справка / Вопросы и ответы\",\"invite_friends\":\"Пригласить друзей\",\"join_our_team_exclamation\":\"Присоединяйтесь к нашей команде!\",\"legal\":\"Юридическая информация\",\"our_blog\":\"Наш блог\",\"press\":\"Печатные издания\",\"privacy\":\"Конфиденциальность\",\"publishers\":\"Издатели\",\"purchase_help\":\"Помощь при покупке\",\"redeem_gift_card\":\"Применить подарочную карту\",\"scribd_-_download_on_the_app_store\":\"Scribd — скачайте из App Store\",\"scribd_-_get_it_on_google_play\":\"Scribd — скачайте из Google Play\",\"scribd_-_get_it_on_kindle_fire\":\"Scribd для Kindle Fire\",\"scribd_for_enterprise\":\"Scribd для предприятия\",\"social\":\"Социальные сети\",\"support\":\"Поддержка\",\"terms\":\"Условия\"},\"get_app_modal\":{\"an_error_occurred_please_try_again\":\"Произошла ошибка. Повторите попытку.\",\"an_error_occurred_please_try_an\":\"Произошла ошибка. Пожалуйста, попробуйте использовать эл. почту\",\"enter_your_email\":\"Введите свой адрес эл. почты\",\"enter_your_phone_or_email\":\"Введите свой телефон или электронную почту\",\"get_the_app_to_read_and_listen\":\"Получите приложение для чтения и прослушивания в любое время и в любом месте.\",\"link_sent_please_check_your_mobile\":\"Ссылка отправлена! Проверьте свое мобильное устройство\",\"listen_offline_with_app\":\"Слушайте офлайн в приложении\",\"phone_or_email\":\"Телефон или эл. почта\",\"please_enter_a_valid_email\":\"Введите действующий адрес эл. почты\",\"please_enter_a_valid_phone_number\":\"Введите действующий номер телефона\",\"please_enter_a_valid_phone_number_or_email\":\"Пожалуйста, введите действительный номер телефона или адрес эл. почты\",\"read_offline_with_app\":\"Читайте офлайн в приложении\",\"send\":\"Отправить\"},\"holiday_banner\":{\"days_left_title_0\":\"Остался всего {{count}} день нашей праздничной распродажи подарков!\",\"days_left_title_1\":\"Осталось всего {{count}} дней(-я) нашей праздничной распродажи подарков!\",\"days_left_title_2\":\"Осталось всего {{count}} дней(-я) нашей праздничной распродажи подарков!\",\"everyday_title\":\"Scribd: сделайте подарок, который открывают каждый день\",\"shop_subscriptions\":\"Подписки на магазины\"},\"listen_button\":{\"listen_continue\":\"Продолжить прослушивание\",\"listen_start\":\"Начать прослушивание\"},\"lists\":{\"curated_by\":\"Отобрано\",\"curated_by_everand_editors\":\"Под кураторством редакторов Everand\",\"curated_by_scribd_editors\":\"Отобрано редакторами Scribd\",\"view_total_titles_0\":\"Смотреть {{count}} издание\",\"view_total_titles_1\":\"Смотреть {{count}} издания\",\"view_total_titles_2\":\"Смотреть {{count}} изданий\"},\"loading_button\":{\"tooltip_content\":{\"loading\":\"Загрузка...\"}},\"login\":{\"join_lightbox\":{\"email\":\"Эл. почта\",\"we_couldn_t_complete_your_request\":\"Не удалось выполнить ваш запрос\"}},\"mobile_bottom_navigation_tabs\":{\"active\":\", активный\",\"home\":\"Главная\",\"quick_navigation\":\"Быстрая навигация\"},\"modal\":{\"opt_in\":{\"stay_in_the_loop\":\"Будьте в курсе\"},\"upsell\":{\"cancel_anytime\":\"Отмена в любое время\",\"continue_with_free_trial\":\"Продолжить с {{trialDuration}} бесплатной пробной версией\",\"continue_with_limited_access\":\"Продолжить с ограниченным доступом\",\"or\":\"или\"}},\"navigation\":{\"open_menu\":\"Открыть меню навигации\",\"sidebar\":{\"selected\":\", выбрано\"},\"upload\":\"Загрузить\"},\"plan_card\":{\"per_month\":\"/месяц\"},\"plan_type\":{\"plus_monthly\":\"Месячный Plus\",\"standard_monthly\":\"Месячный Standard\"},\"plans\":{\"moving_to_plus\":\"Будет перемещено на Plus {{date}}\",\"next_unlock_available\":\"Вы сможете открытие издание {{refresh_date}}\",\"no_unlocks_available\":\"Доступно 0 открытий\",\"num_unlocks_available_0\":\"Доступна {{count}} открытие.\",\"num_unlocks_available_1\":\"Доступно {{count}} открытия.\",\"num_unlocks_available_2\":\"Доступно {{count}} открытий.\",\"num_unlocks_available_renew_monthly_0\":\"Доступен {{count}} открытие. Oткрытий обновляются ежемесячно {{refresh_date}} и не переносятся.\",\"num_unlocks_available_renew_monthly_1\":\"Доступно {{count}} открытия. Oткрытий обновляются ежемесячно {{refresh_date}} и не переносятся.\",\"num_unlocks_available_renew_monthly_2\":\"Доступно {{count}} открытий. Oткрытий обновляются ежемесячно {{refresh_date}} и не переносятся.\",\"renew_and_upgrade\":\"Восстановите подписку и перейдите на версию Plus, чтобы открытие это издание.\",\"renew_get_next_unlock\":\"Восстановите подписку, чтобы получить новую открытие {{refresh_date}}.\",\"unlock_plus_title\":\"Открыть с Plus\",\"unlocked\":\"Открыто\",\"upgrade_to_unlock\":\"Перейдите на Plus, и каждый месяц вам будут доступны\",\"youve_unlocked_this_title\":\"Вы oткрыто это издание.\"},\"play_sample_button\":{\"pause\":\"Пауза\",\"play_sample\":\"Воспроизвести образец\"},\"podcast_episode\":{\"from\":\"Из\"},\"podcast_series\":{\"num_episodes_0\":\"{{ count }} эпизод\",\"num_episodes_1\":\"{{ count }} эпизода\",\"num_episodes_2\":\"{{ count }} эпизодов\",\"num_podcast_episodes_0\":\"{{count, locale}} эпизод подкаста\",\"num_podcast_episodes_1\":\"{{count, locale}} эпизода подкаста\",\"num_podcast_episodes_2\":\"{{count, locale}} эпизодов подкаста\"},\"promos\":{\"annual_offer\":{\"annual\":\"Премиум годовой\",\"monthly\":\"Премиум Ежемесячно\",\"youre_all_set_html\":\"Все готово! Вы обновили свой план. \\u003ca href={{account_settings_url}}\\u003eПросмотрите план\\u003c/a\\u003e в своем аккаунте.\"}},\"react\":{\"button_menu\":{\"close_menu\":\"Закрыть меню\"},\"modals\":{\"delete_item_in_list\":{\"cancel\":\"Отмена\",\"delete\":\"Удалить\",\"do_not_ask_me_again\":\"Больше не спрашивать\",\"removing_from_saved_will_also_delete\":\"Удаление из списка «Сохраненные» также удаляет издание из ваших подборок.\",\"this_title_is_also_in_a\":\"Это издание также находится в подборке.\"}},\"save_button\":{\"failed_to_remove_title\":\"Не удалось удалить издание\",\"failed_to_save_title\":\"Не удалось сохранить издание\",\"remove_short_title_from_saved\":\"Удалить «{{short_title}}» из сохраненных\",\"save_short_title_for_later\":\"Сохранить «{{short_title}}» для последующего чтения\",\"sign_up_to_save\":\"Зарегистрируйтесь, чтобы сохранить это издание\"},\"sharing_buttons\":{\"check_out_props_share_title_on_scribd\":\"Возможно, вас заинтересует «{{props_share_title}}» в Scribd\",\"i_m_reading_props_document_collection_name_on_scribd_props_document_collection_url\":\"Я читаю «{{props_document_collection_name}}» на Scribd: {{props_document_collection_url}}\",\"read_props_document_collection_name_on_scribd\":\"Читать «{{props_document_collection_name}}» на Scribd\",\"share_on_facebook\":\"Опубликовать в Facebook\",\"share_on_facebook_opens_a_new\":\"Опубликовать в Facebook, откроется новое окно\",\"share_on_linkedin\":\"Опубликовать в LinkedIn\",\"share_on_linkedin_opens_a_new\":\"Опубликовать в LinkedIn, откроется новое окно\",\"share_on_twitter\":\"Опубликовать в Twitter\",\"share_on_twitter_opens_a_new\":\"Опубликовать в Twitter, откроется новое окно\",\"share_with_email\":\"Отправить эл. почтой\",\"share_with_email_opens_mail_client\":\"Отправить эл. почтой, откроется почтовый клиент\",\"sharing_options\":\"Параметры публикации\"}},\"reading_progress\":{\"base\":{\"we_ve_moved_you_to_where_you\":\"Мы переместили вас на то место, где вы остановили чтение на устройстве {{progress_device_name}}\"}},\"renew_upgrade_modal\":{\"please_renew_your_subscription_first_in\":\"Сначала восстановите свою подписку, чтобы перейти на версию Plus и открытие это издание.\",\"renew_and_upgrade_to_unlock\":\"Восстановите подписку, чтобы открытие это издание.\",\"renew_subscription\":\"Восстановите подписку\"},\"resume_membership\":\"Возобновить подписку\",\"save_button\":{\"save\":\"Сохранить\",\"saved\":\"Сохранено\"},\"sharing_buttons\":{\"hi_there_document_action_and_thought_you\":\"Здравствуйте! {{document_action}}. Думаю, Вам может понравится это издание. «{{document_title}}», автор (издатель): {{document_author_or_publisher_name_or_login}}, {{doc_url}} Scribd предоставляет ежемесячный доступ к книгам, аудиокнигам и другим изданиям — все это дешевле книги в мягком переплете. Зарегистрируйтесь сегодня и {{trial_cta_downcase}}. Подробнее: http://www.scribd.com/\",\"i_m_reading_document_title_on_suffix\":\"Я читаю {{document_title}} в {{suffix}}\"},\"skip_link\":{\"skip_content\":\"Пропустить контент\"},\"social_buttons\":{\"scribd_on_facebook_aria_label\":\"Scribd на Facebook\",\"scribd_on_instagram_aria_label\":\"Scribd в Instagram\",\"scribd_on_pinterest_aria_label\":\"Scribd в Pinterest\",\"scribd_on_twitter_aria_label\":\"Scribd в Twitter\"},\"star_ratings\":{\"clear_rating\":\"Удалить оценку\",\"i_didnt_like_it_at_all\":\"Совсем не понравилось\",\"i_didnt_like_it_that_much\":\"Мне не очень понравилось\",\"i_liked_it\":\"Мне понравилось\",\"i_loved_it\":\"Мне очень понравилось\",\"i_thought_it_was_ok\":\"Думаю, ничего\",\"rate_as_rating_out_of_5\":\"Оценить как {{value}} из 5\",\"rating_rating_to_display_out_of_5_stars\":\"Рейтинг: {{ratingToDisplay}} из 5 звезд\",\"ratings_0\":\"оценка\",\"ratings_1\":\"оценки\",\"ratings_2\":\"оценок\",\"saved\":\"Сохранено!\",\"selected\":\"(выбрано)\",\"user_rating_star_rating_saved\":\"{{userRating}} звездный рейтинг сохранен\"},\"start_exploring\":\"Начать просмотр\",\"text_links\":{\"all_categories\":\"Все категории\",\"related_authors\":\"Похожие авторы\",\"view_all_categories_in_category\":\"Показать все категории в {{category}}\",\"view_fewer\":\"Показать меньше\",\"view_more\":\"Показать больше\"},\"time_remaining\":{\"hours_0\":\"Остался {{count}} час\",\"hours_1\":\"Осталось {{count}} часа\",\"hours_2\":\"Осталось {{count}} часов\",\"minutes_0\":\"Осталась {{count}} мин\",\"minutes_1\":\"Осталось {{count}} мин\",\"minutes_2\":\"Осталось {{count}} мин\",\"pages_0\":\"Осталась {{count}} страница\",\"pages_1\":\"Осталось {{count}} страницы\",\"pages_2\":\"Осталось {{count}} страниц\"},\"trial\":{\"cancel_anytime\":\"Отмена в любое время.\"},\"trial_duration\":{\"first_days_free\":\"Первые {{trialDuration}} дней бесплатно.\",\"read_free_days\":\"Читайте бесплатно в течение {{trialDuration}} дней\",\"start_trial_days\":\"Начните свои бесплатные {{trialDuration}} дней\",\"upload_for_free_days\":\"Разблокируйте полный доступ (страницы {{startPage}}-{{endPage}}), загрузив документы или используя {{trialDuration}}-дневную бесплатную пробную версию\"}},\"slideshare\":{\"accessibility\":{\"logo\":\"SlideShare, компания Scribd\"},\"checkout\":{\"hero_banner_title\":\"Ваш документ SlideShare\"},\"join\":{\"ad_free_sign_up_sub_title\":\"Вы получите мгновенный доступ к миллионам презентаций, документов, электронных книг, аудиокниг, журналов, подкастов и многого другого. Перед окончанием пробного периода мы пришлем напоминание.\",\"ad_free_sign_up_title\":\"Чтобы наслаждаться SlideShare без рекламы, зарегистрируйтесь на бесплатную {{trialDuration}}-дневную пробную версию Scribd\",\"already_have_scribd_account\":\"Уже есть аккаунт Scribd?\",\"create_account\":\"Создайте аккаунт в Scribd, чтобы продолжить\",\"get_instant_access\":\"Получите мгновенный доступ к миллионам документов, электронных книг, аудиокниг, журналов, подкастов и многому другому. Все в одной подписке.\",\"need_account_sign_in_slideshare\":\"Вы можете использовать этот аккаунт для доступа к SlideShare и Scribd.\",\"to_continue_reading\":\"Чтобы продолжить чтение в SlideShare, подпишитесь на {{trialDuration}}-дневную бесплатную пробную версию Scribd\",\"trial_duration\":\"Чтобы загружать содержимое на SlideShare, зарегистрируйтесь в {{trialDuration}}-дневной бесплатной пробной версии Scribd\"},\"login\":{\"sign_in\":\"Войдите со своим аккаунтом Scribd, чтобы продолжить\"}},\"subscribe_now\":{\"modal\":{\"continue_to_scribd\":\"Перейти в Scribd\",\"looking_for_our_ebooks_audiobooks\":\"Ищете наши электронные книги и аудиокниги?\",\"scribd_recently_launched_everand\":\"Scribd недавно запустил \\u003cem\\u003eEverand\\u003c/em\\u003e в качестве вашего нового дома для электронных книг, аудиокниг, журналов, нотных листов и подкастов. Scribd по-прежнему хранит документы, загруженные сообществом.\",\"visit_everand\":\"Посетить Everand\",\"welcome_to_scribd\":\"Добро пожаловать в Scribd!\"}},\"webpack\":{\"doc_page\":{\"src\":{\"App\":{\"Page\":{\"BetweenPageInterstitial\":{\"BetweenPageInterstitial\":{\"continue_for_free\":\"Продолжить бесплатно\",\"you_re_reading_a_preview\":\"Вы читаете отрывок\"}},\"BetweenPageUserRating\":{\"BetweenPageUserRating\":{\"dismiss_user_rating_prompt\":\"Отклонить запрос на оценку от пользователя\",\"improve_your_experience\":\"Повысьте удобство\",\"rating_will_help_us_to_suggest\":\"Оценка поможет нам рекомендовать нашим читателям еще более подходящие документы.\"}},\"BlurPromo\":{\"BlurPromo\":{\"become_a_scribd_member_to_read\":\"Чтобы читать и скачивать документы полностью, оформите подписку на Scribd.\",\"cancel_anytime\":\"Отменить можно в любой момент\",\"continue_for_free\":\"Продолжить бесплатно\",\"continue_reading_with_trial\":\"Продолжить чтение с пробным периодом\",\"or\":\"Или…\",\"update_payment\":\"Обновить платежные сведения\",\"update_payment_for_full_access\":\"Обновите платеж для получения полного доступа.\",\"upload_to_download\":\"Загружайте свои документы, чтобы скачивать другие документы\",\"upload_your_documents_to_download\":\"Загружайте свои документы, чтобы скачивать другие документы.\"}},\"Body\":{\"Body\":{\"share_this_document\":\"Поделиться этим документом\"},\"Document\":{\"mappings\":{\"thank_you_for_your_rating\":\"Спасибо за оценку!\"}},\"FixedViewportBottomComponents\":{\"CollapseButton\":{\"CollapseButton\":{\"click_to_collapse_related_titles\":\"Нажмите, чтобы свернуть похожие издания\",\"click_to_expand_related_titles\":\"Нажмите, чтобы развернуть похожие издания\"}},\"ViewInStorePromo\":{\"ViewInStorePromo\":{\"get_our_free_app\":\"Скачайте наше бесплатное приложение\",\"get_scribd_for_your_mobile_device\":\"Установите Scribd на свое мобильное устройство.\"}}},\"Metadata\":{\"Extra\":{\"Extra\":{\"original_title\":\"Оригинальное название:\",\"original_title_no_colon\":\"Оригинальное название\"}}},\"StaticPromoStudy\":{\"StaticPromoStudy\":{\"anytime_anywhere_any_device\":\"Когда угодно. Где угодно. На любом устройстве.\",\"cancel_anytime\":\"Отменить можно в любой момент\",\"everything_you_want_to_read\":\"Все, что вы хотели прочитать.\",\"no_commitment_cancel_anytime\":\"Без обязательств. Отменить можно в любой момент.\",\"read_for_free\":\"Читать бесплатно\",\"reward_your_curiosity\":\"Вознаградите свое любопытство\"}},\"Toolbar\":{\"Toolbar\":{\"jump_to_page\":\"Перейти к странице\"}},\"TruncatePromo\":{\"TruncatePromo\":{\"continue_reading_with_trial\":\"Продолжить чтение с пробным периодом\"},\"helpers\":{\"constants\":{\"unlock_the_full_document_with_a\":\"Получите весь документ во бесплатного пробного периода!\"}}}},\"annotations\":{\"AnnotationPopover\":{\"AnnotationPopover\":{\"add_note\":\"Добавить заметку\",\"annotation_text_page_annotation_page_nread_more\":\"«{{annotation_text}}…» (стр. {{annotation_page}})\\\\nЧитать больше:\",\"delete\":\"Удалить\",\"highlight\":\"Выделить\",\"share_quote\":\"Поделится цитатой\"}},\"NoteEditor\":{\"NoteEditor\":{\"add_note\":\"Добавить заметку\",\"cancel\":\"Отмена\",\"delete_note\":\"Удалить заметку\",\"note\":\"Заметка\",\"note_note_group_notes_indexof_active_note_id_1_of_note_group_notes_length\":\"Заметка {{note_group_notes_indexof_active_note_id_1}} из {{note_group_notes_length}}\",\"save\":\"Сохранить\",\"write_a_note\":\"Сделать заметку\"}}},\"modals\":{\"AppPromoInterstitial\":{\"AppPromoInterstitial\":{\"continue_reading_with_free_trial\":\"Продолжить чтение с бесплатным пробным периодом\",\"get_instant_access_to_this_document\":\"Получить мгновенный доступ к этому документу\",\"opens_scribd_app\":\", откроется приложение Scribd\",\"or\":\"ИЛИ\",\"read_free_in_the_app\":\"Читать бесплатно в приложении\",\"sign_up_to_download\":\", зарегистрируйтесь, чтобы скачать\"}},\"Description\":{\"Description\":{\"document_information\":\"Сведения о документе\"}},\"LanguagePicker\":{\"LanguagePicker\":{\"cancel\":\"Отмена\",\"language_options\":\"Языковые параметры\",\"save\":\"Сохранить\",\"select_your_preferred_language\":\"Выберите предпочитаемый язык\",\"we_ll_translate_site_navigation_and_tailor\":\"Мы изменим язык навигации сайта и подготовим персональные рекомендации, когда это возможно, в соответствии с выбранным языком.\",\"we_ll_translate_site_navigation_to_match\":\"Мы изменим язык навигации сайта в соответствии с выбранным предпочитаемым языком.\"}},\"LockShockRoadblockModal\":{\"LockShockRoadblockModal\":{\"later\":\"Позже\",\"problem_with_your_last_payment\":\"Возникла проблема с вашим последним платежом\",\"update_payment\":\"Обновить платежные сведения\",\"your_membership_is_on_hold_please\":\"Ваша подписка приостановлена из-за проблемы с последним платежом.\"}},\"ShareQuote\":{\"ShareQuote\":{\"loved_this_quote_i_read_on\":\"Нравится эта цитата, прочитанная в @Scribd\",\"page_page\":\"(стр. {{page}})\",\"share_quote\":\"Поделиться цитатой\"}}}}},\"body\":{\"sidebar\":{\"date_uploaded\":\"Дата загрузки\",\"on_created_at\":\"{{created_at}}\"},\"toolbar\":{\"search_inside_document\":\"Поиск в документе\"}},\"modals\":{\"flag_document\":{\"hateful_or_offensive\":\"Агрессивное или оскорбительное\",\"please_select_an_option\":\"Выберите вариант\",\"porn_adult_content\":\"Порнографическое содержимое для взрослых\",\"spam_or_junk\":\"Спам или нежелательное содержимое\"}},\"shared\":{\"actions\":{\"modals\":{\"redirecting\":\"Перенаправление…\",\"unable_to_unpause_account_please_try\":\"Не удалось возобновить учетную запись. Повторите попытку\"}},\"base_page\":{\"an_error_occurred_please_try_again\":\"Произошла ошибка. Повторите попытку.\"},\"carousels\":{\"recommender_carousel\":{\"skip_carousel\":\"Пропустить карусель\"}},\"components\":{\"flashes\":{\"Flash\":{\"Flash\":{\"information\":\"сведения\"}}},\"modals\":{\"Download\":{\"Receipt\":{\"Receipt\":{\"uploaded_by_this_props_document_author_name\":\"Загрузил(а): {{this_props_document_author_name}}\"}}}}},\"download_button\":{\"button\":{\"download\":\"Скачать\"}},\"store\":{\"actions\":{\"modals\":{\"subscribe_to_continue_reading\":\"Чтобы продолжить чтение, войдите\"}}}}}}}}},\"en-US\":{\"translation\":{\"account_settings\":{\"facebook_connect\":{\"facebook\":\"Facebook\"},\"plans\":{\"plan_module\":{\"slash_month\":\"/month\",\"slash_year\":\"/year\"}},\"show\":{\"restart_membership\":\"Restart subscription\"},\"subscription_card\":{\"unlocks_available\":\"{{count}} unlock available\",\"unlocks_available_plural\":\"{{count}} unlocks available\"}},\"bestsellers\":{\"promo\":{\"enjoy_bestselling_titles_when_subscribed\":\"Enjoy bestselling titles when you subscribe\"}},\"books\":{\"epub\":{\"banners\":{\"enjoying_preview_update_payment\":\"Your next unlock will be available after you update your payment information.\",\"enjoying_preview_update_payment_upgrade\":\"Update payment information to upgrade to Plus\"}}},\"browse\":{\"promo\":{\"cancel_anytime\":\"Cancel anytime.\",\"everand_also_available_on_mobile_devices\":\"Everand is also available for your mobile devices.\",\"scribd_also_available_on_mobile_devices\":\"Scribd is also available for your mobile devices.\"}},\"browse_page\":{\"promo\":{\"instant_access\":\"Get instant access to millions of ebooks, audiobooks, magazines, and more for only {{price}}/month.\"}},\"category\":{\"documents\":\"{{category}} Documents\"},\"chrome\":{\"flash\":{\"close_notification\":\"Close notification\",\"error\":\"Error\",\"notice\":\"Notice\",\"success\":\"Success\"},\"renewal_nag\":{\"click_here_to_become_a_member\":\"Click here to become a member\",\"click_here_to_renew_it\":\"Click here to renew it\",\"click_here_to_resume_it\":\"Click here to resume it\",\"click_here_to_update_it\":\"Click here to update it\",\"resume_membership\":\"Resume membership\",\"update_now\":\"Update Now\",\"update_payment\":\"Update Payment\",\"you_canceled_your_free_trial\":\"You canceled your free trial.\",\"your_account_is_at_risk\":\"Your account is at risk. Update your payment information immediately to avoid losing access to your subscription.\",\"your_credit_card_information_is_invalid_\":\"Your credit card information is invalid.\",\"your_membership_is_on_hold\":\"Your membership is on hold because of a problem with your last payment.\",\"your_membership_is_paused_until_paused_until_date\":\"Your membership is paused until {{paused_until_date}}.\",\"your_payment_is_overdue\":\"Your payment is overdue. Fix your billing information to ensure continuous service.\",\"your_paypal_information_is_invalid\":\"Your Paypal information is invalid.\",\"your_scribd_gift_membership_has_ended\":\"Your Scribd gift membership has ended.\",\"your_scribd_membership_has_expired\":\"Your Scribd membership has expired.\",\"your_scribd_membership_was_canceled\":\"Your Scribd membership was canceled.\"}},\"common\":{\"later\":\"Later\",\"update_payment\":\"Update payment\"},\"content_lengths\":{\"listening_minutes\":\"{{minutes}} min listen\",\"reading_minutes\":\"{{minutes}} min read\"},\"content_preview\":{\"available_on\":\"Available on {{date}}\",\"flags\":{\"expiring_soon\":\"Leaving soon\",\"geo_restricted\":\"Unavailable\",\"not_available\":\"Unavailable\",\"throttled\":\"Available soon\"},\"geo_restricted\":\"Unavailable in your country\",\"reviews\":{\"delete_rating_and_review\":\"Delete this rating and review?\",\"delete_warning\":\"This action cannot be undone.\",\"rating_and_review_deleted\":\"Rating and review deleted\"},\"save\":{\"add\":\"Save for later\",\"remove\":\"Remove from Saved\"},\"share\":\"Share\",\"social_media_share\":{\"email\":\"Email\",\"pinterest\":\"Pinterest\",\"twitter\":\"Twitter\"},\"social_media_share_modal\":{\"linked_copied\":\"Link copied\"},\"unavailable\":\"Currently unavailable\",\"view_titles_in_series\":\"View titles in series\"},\"content_types\":{\"article\":\"Article\",\"audiobook\":\"Audiobook\",\"audiobook_series\":\"Audiobook series\",\"audiobooks\":\"Audiobooks\",\"books\":\"Books\",\"document\":\"Document\",\"documents\":\"Documents\",\"ebook\":\"Ebook\",\"ebook_series\":\"Ebook series\",\"ebooks\":\"Ebooks\",\"magazine\":\"Magazine\",\"magazines\":\"Magazines\",\"podcast\":\"Podcast\",\"podcast_episode\":\"Podcast episode\",\"podcasts\":\"Podcasts\",\"sheet_music\":\"Sheet music\",\"song\":\"Song\"},\"doc_page\":{\"account_creation\":{\"get_instant_access_with_free_account\":\"Get instant access to this document and millions more with a free account.\",\"to_continue_reading_please_sign_in\":\"To continue reading, please sign in\"},\"ai_enhanced_tag\":{\"ai_enhanced_document\":\"AI-enhanced document\",\"ai_translated_document\":\"AI-translated document\",\"description\":\"AI-enhanced description\",\"description_tooltip\":\"Leveraging AI technology, we\'ve optimized the description for improved clarity.\",\"title\":\"AI-enhanced title\",\"title_and_description\":\"AI-enhanced title and description\",\"title_and_description_tooltip\":\"Leveraging AI technology, we\'ve optimized the title and description for improved clarity.\",\"title_tooltip\":\"Leveraging AI technology, we\'ve optimized the title for improved clarity.\"},\"app_promo\":{\"millions_of_documents\":\"Millions of documents at your fingertips\"},\"app_promo_interstitial\":{\"continue_for_free\":\"Continue for free\",\"trial_duration\":{\"unlock_full_access_to_the\":\"Unlock full access to the world’s largest digital library with a {{trialDuration}} day free trial.\"},\"upload_your_documents_or_subscribe\":\"Upload your documents or become a Scribd member to unlock full access.\"},\"between_page_interstitial\":{\"title_copy_subscribe_only_trial_duration\":\"Unlock full access (pages {{startPage}}-{{endPage}}) with a {{trialDuration}} Day Free Trial\",\"unlock_full_access\":{\"page_number_trial_duration\":\"Unlock full access (page {{props_currentrange}}) by uploading documents or with a {{trialDuration}} Day Free Trial\"},\"upload_or_subscribe_pages\":\"Upload your documents or become a Scribd member to unlock full access (pages {{startPage}}-{{endPage}}).\"},\"blur_promo\":{\"become_member_for_full_access\":\"Become a Scribd member for full access.\",\"read_and_download_full_documents\":\"Read and download full documents.\",\"skip_ad\":\"Skip ad\",\"subscribe_with_a_free_trial\":\"Subscribe with a free trial\",\"trial_duration\":{\"start_your_trial\":\"Start your {{trialDuration}} day free trial\"},\"unlock_next_pages_after_an_ad\":\"Unlock the next {{count}} page after an ad\",\"unlock_next_pages_after_an_ad_plural\":\"Unlock the next {{count}} pages after an ad\",\"unlock_this_document\":\"Unlock this document\",\"unlock_this_document_after_an_ad\":\"Unlock this document after an ad\",\"unlock_this_page_after_an_ad\":\"Unlock this page after an ad\",\"upload_a_doc_to_download_or_sub\":\"Upload a document to download this document or subscribe to read and download.\",\"upload_to_download\":\"Upload to download\"},\"description_modal\":{\"description\":\"Description\",\"flag_for\":\"Flag for inappropriate content\"},\"doc_chat_additional_feedback\":{\"heading\":\"Provide additional feedback\",\"placeholder\":\"What are your thoughts on the response? How could it be improved?\"},\"doc_chat_default_response\":{\"with_suggestions\":\"I’m sorry, I wasn’t able to find any information on that.\"},\"doc_chat_disclaimer\":{\"beta\":\"DocChat is powered by OpenAI, and may occasionally display incorrect information.\\u003cbr\\u003eWe recommend checking the accuracy of responses.\"},\"doc_chat_down_vote_feedback\":{\"not_factually_correct\":\"Not factually correct\",\"offensive_unsafe\":\"Offensive/Unsafe\",\"other\":\"Other\",\"submit\":\"Submit Feedback\"},\"doc_chat_feedback\":{\"down_vote_question_heading\":\"Why did you choose this rating?\",\"thank_you_response\":\"Your feedback is valuable and helps us improve our AI responses.\",\"thank_you_response_heading\":\"Thanks so much for your feedback\"},\"doc_chat_greeting\":{\"heading\":\"Welcome to DocChat\",\"sub_heading\":\"I’m here to answer your questions about this document. Ask me anything, or choose a suggestion below to get started.\"},\"doc_chat_input\":{\"placeholder\":\"Select a suggestion or type a question\"},\"doc_chat_popover\":{\"feature_available_bold\":\"Work faster with DocChat.\",\"feature_available_regular\":\"Chat with this document to get the information you want.\",\"feature_not_available_bold\":\"Doc Chat is currently not available\",\"feature_not_available_regular\":\"for this document. Check out other documents to use this feature.\"},\"doc_chat_settings\":{\"clear_history\":\"Clear History\",\"faq\":\"FAQ\"},\"doc_chat_suggestions\":{\"heading\":\"Here are some questions I can answer:\"},\"doc_chat_usage\":{\"exceed_warning\":\"You’ve reached your monthly limit of {{count}} prompts. Thank you for being so actively engaged with DocTalk beta. Your prompt limit will reset next month!\",\"limit_reminder\":\"Wow, you’ve reached {{count}} prompts! As part of our DocTalk beta program, you have {{left}} prompts left. Your feedback is appreciated as we refine this feature.\"},\"download_to_read_ad_free\":\"Download to read ad-free.\",\"fixed_viewport_bottom_components\":{\"check_out_these_free_titles\":\"Check out these free titles\"},\"flag_document\":{\"flag_for_inappropriate_content\":\"Flag for Inappropriate Content\"},\"flash\":{\"rating_not_saved_try_again\":\"Rating not saved, please try again\"},\"get_scribd_without_ads\":\"Get Scribd without ads.\",\"incentivized_upload\":{\"to_access_this_document_trial_duration\":\"To access this document, upload one of yours, or subscribe with a {{trialDuration}} day free trial. Cancel anytime.\",\"to_access_this_document_trial_duration_plural\":\"To access this document, upload {{count}} of yours, or subscribe with a {{trialDuration}} day free trial. Cancel anytime.\"},\"metadata\":{\"description\":{\"original_description\":\"Original Description\"}},\"mobile_metadata\":{\"collapse_full_title\":\"Hide full title\",\"expand_full_title\":\"Show full title\"},\"page\":{\"preferred_language_set_to_url_params_language_settings_changed\":\"Preferred language set to {{url_params_language_settings_changed}}\"},\"rate_drawer\":{\"not_useful\":\"Not useful\",\"useful\":\"Useful\"},\"ratings\":{\"mark_as_not_useful\":\"Mark this document as not useful\",\"mark_as_useful\":\"Mark this document as useful\",\"no_ratings\":\"0 ratings\",\"no_ratings_yet\":\"No ratings yet\",\"num_votes\":\"({{count, locale}} vote)\",\"num_votes_plural\":\"({{count, locale}} votes)\",\"page_count\":\"{{count, locale}} page\",\"page_count_plural\":\"{{count, locale}} pages\",\"percent_found_document_not_useful\":\"{{percentage}}% found this document not useful\",\"percent_found_document_useful\":\"{{percentage}}% found this document useful\",\"press_again_undo\":\"Press again to undo.\",\"sign_up_to_rate_this_title\":\"Sign up to rate this title\",\"you_marked_as_useful\":\"You marked this document as useful\",\"you_marked_not_useful\":\"You marked this document as not useful\"},\"read_this_document_in_other_languages\":\"Read this document in other languages\",\"recommender_list\":{\"audiobook\":\"audiobook\",\"book\":\"book\",\"might_also_like\":\"You might also like\",\"show_more\":\"Show more\"},\"scroll_for_next_page\":\"Scroll for next page\",\"share\":{\"copy_link\":\"Copy link\",\"link_copied\":\"Link copied!\",\"share_on_facebook\":\"Share on Facebook\",\"share_on_linkedin\":\"Share on LinkedIn\",\"share_on_twitter\":\"Share on Twitter\",\"share_via_email\":\"Share via email\"},\"share_drawer\":{\"copy_link\":\"Copy Link\"},\"sharing_buttons\":{\"link_copied_private_document\":\"Link Copied! \\u003cspan class=\\\"link_copied_private_doc\\\"\\u003eNote: Sharing a public link to a document marked private will allow others to view it.\\u003c/span\\u003e\",\"not_supported_for_private_documents\":\"This feature is not supported for private documents. If you want to share, select Copy Link, and send the link to others.\"},\"this_document_available_in_languages\":\"This document is available in the following languages:\",\"toolbar\":{\"download\":\"Download\",\"download_now\":\"Download now\"},\"translate\":\"Translate\",\"translate_document\":\"Translate Document\",\"truncate_promo\":{\"read_and_download_full_documents\":\"Subscribers can read and download full documents.\",\"restart_membership\":\"Restart membership\",\"trial_duration\":{\"scribd_members_can_read\":\"Scribd members can read and download full documents. Your first {{trialDuration}} days are free!\"},\"unlock_full_access_when_subscribe\":\"Unlock full access when you subscribe\"},\"upload_banner\":{\"copy\":\"Get this download for free with an upload. Learn more below.\",\"copy_plural\":\"Get this download for free with {{count}} uploads. Learn more below.\"},\"upsell_popup\":{\"description\":\"Enjoy ad-free reading and downloads on Scribd.\",\"title\":\"More Reading. No Ads.\"},\"view_original_document_in_language\":\"View original document in {{language}}\"},\"everand\":{\"bestsellers\":{\"promo\":{\"enjoy_bestselling_audiobook_titles_when_subscribed\":\"Enjoy bestselling audiobooks when you subscribe\",\"enjoy_bestselling_titles_when_subscribed\":\"Enjoy bestselling ebooks when you subscribe\"}},\"browse_page\":{\"promo\":{\"books_audiobooks_cancel_anytime\":\"Discover millions of ebooks, audiobooks, and so much more, from {{price}}/month. Cancel anytime.\",\"instant_access_and_cancel_anytime\":\"Discover millions of ebooks, audiobooks, and so much more for just {{price}}/month. Cancel anytime.\"}},\"lists\":{\"faq_message_html\":\"We\'ve made important changes to the list experience. To learn more, \\u003ca href={{faqUrl}} target=\\\"_blank\\\"\\u003evisit the FAQs\\u003c/a\\u003e.\"},\"megamenu\":{\"what_is_scribd_btn\":{\"what_is_scribd\":\"What is Everand?\"}},\"modal\":{\"opt_in\":{\"continue_to_everand\":\"Continue to Everand\",\"upcoming_releases_curated_lists_to_your_inbox\":\"Find out about upcoming releases and exclusive originals, plus get curated lists and special offers sent directly to your inbox.\"},\"progressive_profile\":{\"send_me_email_updates\":\"Send me email updates from Everand\",\"welcome_to_everand\":\"Welcome to Everand!\"},\"upsell\":{\"get_the_most_out_of_everand\":\"Get the most out of Everand\",\"unlock_full_access_discover_millions\":\"Unlock full access to the world\'s most fascinating digital library. Discover millions of ebooks, audiobooks, magazines, and more.\"}},\"shared\":{\"cross_link_message\":\"From Everand\",\"footer\":{\"about_scribd\":\"About Everand\",\"everand_-_download_on_the_app_store\":\"Everand - Download on the App Store\",\"everand_-_get_it_on_google_play\":\"Everand - Get it on Google Play\",\"everand_-_get_it_on_kindle_fire\":\"Everand for Kindle Fire\"},\"navigation\":{\"enterprise_page\":\"Enterprise\"},\"social_buttons\":{\"scribd_on_facebook_aria_label\":\"Everand on Facebook\",\"scribd_on_instagram_aria_label\":\"Everand on Instagram\",\"scribd_on_pinterest_aria_label\":\"Everand on Pinterest\",\"scribd_on_twitter_aria_label\":\"Everand on Twitter\"}}},\"explore\":{\"banner\":{\"after_trial\":\"Only {{price}}/month after trial. \\u003cstrong\\u003eCancel anytime.\\u003c/strong\\u003e\",\"subtitle\":\"Access 1,000,000+ full-length titles online or offline with our \\u003ca href=\\\"{{ios_store_url}}\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\\u003eiOS\\u003c/a\\u003e and \\u003ca href=\\\"{{android_store_url}}\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\\u003eAndroid\\u003c/a\\u003e apps.\"}},\"get_app_modal\":{\"link_sent_email\":\"Link sent! Please check your email.\"},\"helpers\":{\"document_meta_tags\":{\"scribd_is_the_world_s_largest_social\":\"Scribd is the world\'s largest social reading and publishing site.\"}},\"home\":{\"logged_in\":{\"content_quickview\":{\"also_available_as_an_audiobook\":\"Also available as an audiobook\",\"also_available_as_an_ebook\":\"Also available as an ebook\",\"byline\":{\"narrated_by\":\"narrated by\"},\"close\":\"Close\",\"count_titles\":\"{{count}} title\",\"count_titles_plural\":\"{{count}} titles\",\"go_to_content_type_version\":\"Go to {{content_type}} version\",\"loading\":\"Loading...\",\"more_about_this_episode\":\"More about this episode\",\"more_about_this_issue\":\"More about this issue\",\"more_about_this_series\":\"More about this series\",\"more_about_this_summary\":\"More about this summary\",\"oops_something_went_wrong\":\"Oops, something went wrong\",\"view_all_articles\":\"View all articles\",\"view_all_episodes\":\"View all episodes\",\"view_the_full_title_details\":\"View the full title details\"}}},\"landing\":{\"hero\":{\"read_listen_anywhere_anytime\":\"Read or listen anytime, anywhere.\"}},\"lib\":{\"lightbox\":{\"close_dialog\":\"Close Dialog\"}},\"megamenu\":{\"documents\":{\"all_documents\":\"All Documents\"},\"hambur_menu\":{\"get_our_free_apps\":\"Get our free apps\"},\"hamburger_menu\":{\"close_menu\":\"Close menu\",\"sign_in_to_your_everand_account\":\"Sign in to your Everand account\",\"sign_in_to_your_scribd_account\":\"Sign in to your Scribd account\",\"welcome\":\"Welcome!\"},\"language\":{\"cancel\":\"Cancel\",\"change_language\":\"Change Language\"},\"language_links\":{\"learn_more\":\"Learn more\"},\"language_picker_dropdown\":{\"language\":\"Language\"},\"logged_out\":{\"user_menu\":{\"welcome_to_everand\":\"Welcome to Everand!\",\"welcome_to_scribd\":\"Welcome to Scribd!\"}},\"navigation\":{\"categories\":\"Categories\",\"explore_content_type\":\"Explore {{content_type}}\",\"opens_navigation_menu\":\"Open navigation menu\"},\"search_bar\":{\"clear_search\":\"Clear search\",\"close_suggestions\":\"Close suggestions\",\"no_results_found\":\"No search results.\",\"num_results_are_available\":\"{{num_results}} result(s) are available, use up and down arrow keys to navigate.\",\"recent_searches\":\"Recent searches\",\"search\":\"Search\"},\"top_bar\":{\"upload\":\"Upload\"},\"upload\":{\"upload_header\":\"Upload\"},\"user_menu\":{\"document_stats\":\"Document stats\",\"document_uploads\":\"Document uploads\",\"faq_and_support\":\"FAQ and support\",\"hi_name\":\"Hi {{name}}!\",\"invite_friends\":\"Invite friends\",\"language\":\"Language ({{current_language}})\",\"public_profile\":\"Public profile\",\"read_for_free\":\"Read for free\",\"visually_hidden_user_settings\":\"User Settings\",\"your_account\":\"Your account\"},\"what_is_scribd_btn\":{\"what_is_scribd\":\"What is Scribd?\"}},\"modals\":{\"add_to_list\":{\"save\":\"Save to list\",\"title\":\"Add to list\"},\"confirm_delete_review\":{\"title\":\"Delete your review and rating?\"},\"confirm_unsave_item\":{\"title\":\"Remove title from Saved Library and any saved lists?\"},\"confirm_unsave_item_in_list\":{\"remove_from_your_lists\":\"Remove from your lists?\",\"removing_from_saved\":\"Removing from Saved will also delete the title from your lists.\",\"removing_this_title_from_saved\":\"Removing this title from Saved will also remove it from your lists.\",\"title\":\"This title is also in a list.\"},\"create_list\":{\"create_list\":\"Create list\",\"failed_to_create_try_again\":\"Failed to create list, please try again\",\"input_description\":{\"privacy_type\":\"No one except you can view this list. Sharing will be disabled.\"},\"input_label\":{\"name\":\"What would you like to name this list?\",\"privacy_type\":\"Make list private\"},\"title\":\"New List\",\"validation_errors\":{\"name\":\"Please enter a list name\"}},\"language_picker\":{\"language_options\":\"Language Options\",\"select_preferred_language\":\"Select your preferred language\",\"translate_and_tailor\":\"We’ll translate site navigation and tailor your personal recommendations where possible to match your preferred language selection.\",\"translate_to_match\":\"We’ll translate site navigation to match your preferred language selection.\"},\"lockshockroadblock\":{\"problem_with_your_last_payment\":\"Problem with your last payment\",\"update_your_payment_to_continue\":\"Update your payment to continue\",\"we_had_an_issue_with_your_last_payment\":\"We had an issue with your last payment. Update your payment info to continue.\",\"your_membership_is_on_hold\":\"Your membership is on hold because of a problem with your last payment.\"}},\"page_gate_modal\":{\"check_you_email\":{\"check_your_email\":\"Check your email\"},\"check_your_email\":{\"change_email\":\"Not the correct email?\",\"didnt_receive\":\"Didn\'t receive an email? Check your spam folder, or\",\"email_not_verified_verify_to_continue\":\"Email not verified. Please verify your email to continue.\",\"i_have_verified_my_email\":\"I\'ve verified my email\",\"logout_login_url\":\"Use a different email address\",\"send_again\":\"send again.\",\"to_protect_your_account_html\":\"To protect your account, we\'ve sent a verification email to \\u003cstrong\\u003e{{email}}\\u003c/strong\\u003e. Please click the link in that email to verify your identity. To learn more, please visit our \\u003ca href=\\\"{{support_url}}\\\" class=\\\"faq_link\\\" target=\\\"_blank\\\"\\u003eFAQs\\u003c/a\\u003e.\",\"verify_email_before_continuing\":\"Please verify your email before continuing.\"}},\"pdfs\":{\"doc_search\":{\"close_search\":\"close search\",\"page\":\"page\"},\"lightboxes\":{\"download_lightbox\":{\"download_document\":\"Download document\",\"resume_membership\":\"Resume Membership\",\"resuming\":\"Resuming\",\"your_membership_is_currently_paused_until\":\"Your membership is currently paused until {{state_nag_next_payment_due}}. Would you like to resume your membership now to download\"},\"embed_lightbox\":{\"autosize\":\"Autosize\",\"beginning_of_document\":\"Beginning of document\",\"copy_link\":\"Copy Link\",\"current_page\":\"Current page\",\"custom\":\"Custom\",\"customization_options_available_below\":\"Customization options available below\",\"embed\":\"Embed\",\"embed_this_in_your_website\":\"Embed this in your website\",\"format\":\"Format\",\"fullscreen\":\"Fullscreen\",\"generate_a_link\":\"Generate a Link\",\"height\":\"Height: \",\"html\":\"HTML\",\"link_options\":\"Link Options\",\"link_to_the\":\"Link to the\",\"options\":\"Options\",\"preview\":\"Preview\",\"scroll\":\"Scroll\",\"size\":\"Size\",\"slideshow\":\"Slideshow\",\"start_at_page\":\"Start at page:\",\"style\":\"Style:\",\"sup_sup_the_code_will_be_updated\":\"\\u003csup\\u003e*\\u003c/sup\\u003e The code will be updated based on your changes.\",\"width\":\"Width: \",\"wordpress\":\"Wordpress\"},\"flag_doc_lightbox\":{\"cancel\":\"Cancel\",\"if_you_are_the_copyright_owner_html\":\"If you are the copyright owner of this document and want to report it, please visit the \\u003ca href=\'{{faq_urls_copyright_infringement}}\'\\u003ecopyright infringement notice\\u003c/a\\u003e page to submit a report.\",\"please_tell_us_reason_s_for_reporting\":\"Please tell us reason(s) for reporting this document\",\"submit\":\"Submit\"},\"print_lightbox\":{\"cancel\":\"Cancel\",\"download_and_print\":\"Download and print\",\"in_order_to_print_this_document_\":\"In order to print this document from Scribd, you\'ll first need to download it.\",\"print_document\":\"Print document\"}},\"redesign_elements\":{\"actions\":{\"embed\":\"Embed\",\"print\":\"Print\",\"share\":\"Share\"},\"metadata_section\":{\"full_description\":\"Full description\",\"related_titles\":\"Related titles\"},\"more_info_module\":{\"document_information\":\"Document Information\"}},\"show\":{\"sign_in_to_flag_this_title\":\"Sign in to flag this title\",\"you_re_reading_a_preview\":\"You\'re Reading a Preview\"},\"sidebar\":{\"available_formats\":\"Available Formats\",\"click_to_collapse_document_information\":\"click to collapse document information\",\"click_to_expand_document_information\":\"click to expand document information\",\"copyright\":\"Copyright:\",\"copyright_no_colon\":\"Copyright\",\"document_useful_message\":\"Did you find this document useful?\",\"download_or_read_formats\":\"{{extensions}} or read online from Scribd\",\"is_this_inappropriate_content\":\"Is this content inappropriate?\",\"isbn\":\"ISBN:\",\"isbn_no_colon\":\"ISBN\",\"report_this_document\":\"Report this Document\",\"share_or_embed_document\":\"Share or Embed Document\",\"strong_download_strong_as_available_extensions_map_upcase_join_or_read_online\":\"\\u003cstrong\\u003eDownload\\u003c/strong\\u003e as {{available_extensions_map_upcase_join}} or read online from Scribd\",\"uploaded_by\":\"Uploaded by\",\"view_more\":\"View More\",\"written_by\":\"Written by\"},\"toolbar\":{\"exit_fullscreen\":\"Exit fullscreen\",\"fullscreen\":\"Fullscreen\",\"of_numberformat_props_document_total_pages\":\"of {{numberformat_props_document_total_pages}}\",\"search_document\":\"Search document\",\"showing_strong_1_strong_result_for_query\":\"Showing \\u003cstrong\\u003e1\\u003c/strong\\u003e result for\",\"showing_strong_num_results_strong_results_for_query\":\"Showing \\u003cstrong\\u003e{{num_results}}\\u003c/strong\\u003e results for\",\"you_are_on_page_props_current_page\":\"You are on page {{props_current_page}}\",\"zoom_in\":\"Zoom in\",\"zoom_out\":\"Zoom out\"},\"upvote\":{\"not_useful\":\"Not useful\",\"this_document_is\":\"This document is...\",\"useful\":\"Useful\"}},\"plan_selection_page\":{\"plan_card\":{\"a_selection\":\"200,000+ ebooks and audiobooks, including a selection of our most popular titles\",\"billed_monthly\":\"Billed monthly after trial.\",\"docs_presentations\":\"170M+ documents and presentations on Scribd and SlideShare ad-free\",\"magazines_etc\":\"Magazines, podcasts and sheet music\",\"plus\":\"Plus:\",\"titles_per_month\":\"{{titles}} titles per month from our Plus catalog that includes even more bestsellers and new releases\",\"unlimited\":\"Unlimited access to:\"}},\"plans\":{\"unlock_dropdown\":{\"subscription_ends_date\":\"Subscription ends {{date}}\",\"unlocks\":\"{{count}} unlock\",\"unlocks_plural\":\"{{count}} unlocks\",\"unlocks_renew\":\"Unlocks renew {{refresh_date}}\",\"unlocks_renew_after_payment_information\":\"Unlocks renew after payment information is updated.\",\"view_unlock_history\":\"View unlock history\"},\"unlock_modal\":{\"after_unlocking_this_title\":\"After unlocking this title, you\'ll have {{count}} unlock left until {{refresh_date}}.\",\"after_unlocking_this_title_plural\":\"After unlocking this title, you\'ll have {{count}} unlocks left until {{refresh_date}}.\",\"unlock_this_title\":\"Unlock this title\",\"you_have_unlocks_available\":\"You have {{count}} unlock available.\",\"you_have_unlocks_available_plural\":\"You have {{count}} unlocks available.\"}},\"privacy_policy_modal\":{\"accept\":\"Accept and continue\",\"details_below\":\"You can read the details below. By accepting, you agree to the updated privacy policy.\",\"thank_you\":\"Thank you!\",\"title\":\"We\'ve updated our privacy policy.\",\"try_again\":\"We’ve encountered a problem, please try again.\",\"updated_privacy_policy\":\"We’ve updated our privacy policy so that we are compliant with changing global privacy regulations and to provide you with insight into the limited ways in which we use your data. \",\"view_policy\":\"View updated privacy policy\"},\"promos\":{\"annual_offer\":{\"current_plan\":\"Current plan\",\"immerse\":\"Immerse yourself all year round\",\"read_more_html\":\"Read more.\\u003cspan class=\'save_text\'\\u003eSave more.\\u003c/span\\u003e\",\"save_percent\":\"Save {{value}}%\",\"switch_plan\":\"Switch plan\",\"terms_footer_html\":\"You will be charged the annual fee of {{price}} on {{date}} when you click \\\"Switch plan.\\\" View our \\u003ca class=\'terms_link\' target=\\\"_blank\\\" href={{href}}\\u003eterms of service\\u003c/a\\u003e.\"}},\"receipt\":{\"download\":{\"document\":\"Document\",\"download_iframe\":\"Download iframe\",\"downloading\":\"Downloading\"}},\"saved\":{\"list_item_controls\":{\"create_list\":\"Create List\"}},\"scribd\":{\"modal\":{\"opt_in\":{\"continue_to_scribd\":\"Continue to Scribd\",\"special_offers_new_content_to_your_inbox\":\"Find out about special offers, new content, plus recommendations from our premium products sent directly to your inbox.\"},\"progressive_profile\":{\"send_me_email_updates\":\"Send me email updates from Scribd\",\"welcome_to_scribd\":\"Welcome to Scribd!\"},\"upsell\":{\"get_the_most_out_of_scribd\":\"Get the most out of Scribd\",\"unlock_full_access_read_offline\":\"Unlock full access to the world’s most fascinating digital library. Get unlimited free downloads and read offline on the app.\"}},\"navigation_category\":{\"academic\":\"Academic\",\"culture\":\"Culture\",\"hobbies_and_crafts\":\"Hobbies \\u0026 Crafts\",\"personal_growth\":\"Personal Growth\",\"professional\":\"Professional\"},\"shared\":{\"cross_link_message\":\"From Scribd\"}},\"search\":{\"filters\":{\"filters\":\"Filters\"},\"pagination\":{\"next\":\"next\",\"previous\":\"previous\"},\"results\":{\"reading_list\":\"Reading List\",\"top_result\":\"Top Result\"}},\"shared\":{\"account_creation\":{\"add_note_sign_in\":\"To add a note, please sign in\",\"add_note_sign_up\":\"To add a note, please sign up\",\"already_have_an_account\":\"Already have an account?\",\"annotate_document_sign_in\":\"To annotate this document, please sign in\",\"annotate_document_sign_up\":\"To annotate this document, please sign up\",\"annotate_sign_in\":\"To annotate, please sign in\",\"back_to_sign_in\":\"Back to sign in\",\"continue_reading_sign_in\":\"To continue reading, please sign in\",\"continue_reading_sign_up\":\"To continue reading, please sign up\",\"create_bookmark_sign_in\":\"To create a bookmark, please sign in\",\"create_bookmark_sign_up\":\"To create a bookmark, please sign up\",\"creating_your_account\":\"Creating your account...\",\"disclaimer\":\"By signing up with Scribd, you agree to our \\u003ca href=\\\"{{terms_href}}\\\" target=\\\"_blank\\\" tabIndex=\\\"0\\\"\\u003eTerms of Service {{opens_in_new_window}}\\u003c/a\\u003e and \\u003ca href=\\\"{{privacy_href}}\\\" target=\\\"_blank\\\" tabIndex=\\\"0\\\"\\u003ePrivacy Policy {{opens_in_new_window}}\\u003c/a\\u003e\",\"download_document_sign_in\":\"To download this document, please sign in\",\"download_document_sign_up\":\"To download this document, please sign up\",\"errors\":{\"email_invalid\":\"This email address is invalid or blocked. Please enter another email.\",\"email_registered\":\"This email address is already registered with Scribd. Please enter your password to sign in.\",\"email_taken\":\"That email is taken by another user, please try again.\",\"invalid_character_in_name_please_remove\":\"Invalid character in name. Please remove any special characters\",\"no_valid_email_modal_desc\":\"Your email address is missing or invalid. To keep your account secure, please provide a valid email address.\",\"no_valid_email_modal_title\":\"Update your email\",\"password_10_chars\":\"Please enter a password that is at least 10 characters\",\"please_enter_a_name\":\"Please enter a name\",\"please_enter_a_valid_email\":\"Please enter a valid email\",\"that_doesn_t_appear_to_be_a\":\"That doesn\'t appear to be a valid email address. Please try again.\"},\"facebook\":{\"error\":\"Sorry, we are unable to log you in via Facebook at this time.\",\"sign_in\":\"Continue with Facebook\",\"sign_up\":\"Sign up with Facebook\"},\"fail\":\"Fail.\",\"flag_document_sign_in\":\"To flag this document, please sign in\",\"flag_document_sign_up\":\"To flag this document, please sign up\",\"forgot\":{\"enter_email\":\"Enter your email address and we\'ll send you an email with a link to reset your password.\",\"weve_sent_email_html\":\"We\'ve sent an email to \\u003cstrong\\u003e{{escape_validated_email}}\\u003c/strong\\u003e with instructions to reset your password. If it doesn\'t show up soon, check your spam folder and then read this \\u003ca href=\\\"https://support.scribd.com/hc/articles/210134406-What-do-I-do-if-I-ve-lost-or-forgotten-my-password-\\\"\\u003eHelp Center article\\u003c/a\\u003e.\"},\"forgot_password\":\"Forgot password?\",\"give_gift_sign_in\":\"To give this gift, please sign in\",\"give_gift_sign_up\":\"To give this gift, please sign up\",\"google\":{\"error\":\"Google sign in failed\"},\"highlight_document_sign_in\":\"To highlight this document, please sign in\",\"highlight_document_sign_up\":\"To highlight this document, please sign up\",\"join_today_to_start_reading\":\"Join today to start reading\",\"logging_you_in\":\"Logging you in...\",\"not_you\":\"Not you?\",\"now_bringing_you_back\":\"Now bringing you back...\",\"pass\":\"Pass.\",\"password_must_be_at_least_ten_characters\":\"At least 10 characters\",\"password_not_been_breached\":\"Password has not been breached\",\"password_strength\":\"Password strength\",\"password_strength_colon\":\"Password strength: \",\"password_strength_good\":\"Good\",\"password_strength_moderate\":\"Moderate\",\"password_strength_strong\":\"Strong\",\"password_strength_weak\":\"Weak\",\"people_browsing_scribd_html\":\"\\u003cspan\\u003e{{count, locale}} person\\u003c/span\\u003e browsing Scribd right now\",\"people_browsing_scribd_html_plural\":\"\\u003cspan\\u003e{{count, locale}} people\\u003c/span\\u003e browsing Scribd right now\",\"rate_document_sign_in\":\"To rate this document, please sign in\",\"rate_document_sign_up\":\"To rate this document, please sign up\",\"recaptcha_disclaimer\":\"This site is protected by reCAPTCHA and the Google \\u003ca href=\\\"{{privacy_href}}\\\" target=\\\"_blank\\\"\\u003ePrivacy Policy {{opens_in_new_window}}\\u003c/a\\u003e and \\u003ca href=\\\"{{policy_href}}\\\" target=\\\"_blank\\\"\\u003eTerms of Service {{opens_in_new_window}}\\u003c/a\\u003e apply.\",\"redeem_offer_sign_in\":\"To redeem this offer, please sign in\",\"redeem_offer_sign_up\":\"To redeem this offer, please sign up\",\"remember_me\":\"Remember me\",\"reset_password\":\"Reset password\",\"save_document_sign_in\":\"To save this document, please sign in\",\"save_document_sign_up\":\"To save this document, please sign up\",\"send_me_updates_from_scribd\":\"Send me updates from Scribd\",\"share_quote_sign_in\":\"To share this quote, please sign in\",\"share_quote_sign_up\":\"To share this quote, please sign up\",\"sign_in\":\"Sign in\",\"sign_in_add_note\":\"To add a note, please sign in\",\"sign_in_bookmark\":\"To create a bookmark, please sign in\",\"sign_in_create_list\":\"To create a list, please sign in\",\"sign_in_download\":\"To download, please sign in\",\"sign_in_follow\":\"To follow, please sign in\",\"sign_in_give_gift\":\"To give this gift, please sign in\",\"sign_in_highlight\":\"To highlight, please sign in\",\"sign_in_rate\":\"To rate, please sign in\",\"sign_in_redeem\":\"To redeem, please sign in\",\"sign_in_review\":\"To review, please sign in\",\"sign_in_save\":\"To save, please sign in\",\"sign_in_share_quote\":\"To share this quote, please sign in\",\"sign_in_start_months\":\"To start your free {{count}} month, please sign in\",\"sign_in_start_months_plural\":\"To start your free {{count}} months, please sign in\",\"sign_in_successful\":\"Sign in successful\",\"sign_in_to_scribd\":\"Sign in to Scribd\",\"sign_in_upload\":\"To upload, please sign in\",\"sign_in_with_email\":\"Sign in with email\",\"sign_up\":\"Sign up\",\"sign_up_add_note_this_title\":\"Sign up to add a note to this title.\",\"sign_up_annotate\":\"Sign up to annotate.\",\"sign_up_continue_reading_this_title\":\"Sign up to continue reading this title.\",\"sign_up_create_bookmark_this_title\":\"Sign up to create a bookmark.\",\"sign_up_create_list_this_title\":\"Sign up to create a list.\",\"sign_up_download_this_title\":\"Sign up to download this title.\",\"sign_up_follow_magazine_this_title\":\"Sign up to follow this magazine.\",\"sign_up_free_months_this_title\":\"Sign up to start your free {{count}} month.\",\"sign_up_free_months_this_title_plural\":\"Sign up to start your free {{count}} months.\",\"sign_up_give_gift_this_title\":\"Sign up to give this gift.\",\"sign_up_highlight_this_title\":\"Sign up to highlight.\",\"sign_up_or_sign_in\":\"Sign up or sign in\",\"sign_up_save\":\"To save, please create a Scribd account\",\"sign_up_save_this_title\":\"Sign up to save this title.\",\"sign_up_share_quote_this_title\":\"Sign up to share a quote from this title.\",\"sign_up_successful\":\"Sign up successful\",\"sign_up_to_rate_title\":\"Sign up to rate this title\",\"sign_up_to_review_title\":\"Sign up to review this title\",\"sign_up_with_email\":\"Sign up with email\",\"signup_to_redeem_offer\":\"Sign up to redeem offer\",\"start_free_months_sign_in\":\"To start your free {{count}} month, please sign in\",\"start_free_months_sign_in_plural\":\"To start your free {{count}} months, please sign in\",\"start_free_months_sign_up\":\"To start your free {{count}} month, please sign up\",\"start_free_months_sign_up_plural\":\"To start your free {{count}} months, please sign up\",\"upload_document_sign_in\":\"To upload a document, please sign in\",\"upload_document_sign_up\":\"To upload a document, please sign up\",\"use_another_email_address\":\"Use another email address\"},\"actions\":{\"read_continue\":\"Continue reading\",\"read_preview\":\"Read preview\"},\"ad_blocker_modal\":{\"i_disabled_my_ad_blocker\":\"I disabled my ad-blocker\",\"it_looks_like_youre_using_and_ad_blocker\":\"It looks like you\'re using an ad-blocker.\",\"show_me_how\":\"Show me how\",\"to_listen_to_titels_on_everand_disble_ad_blocker_or_use_mobile_app\":\"To listen to titles on Everand, please disable your ad-blocker or use our mobile app.\",\"to_read_titles_on_everand_disable_ad_blocker_or_use_mobile_app\":\"To read titles on Everand, please disable your ad-blocker or use our mobile app.\"},\"byline\":{\"and\":\"and\",\"by\":\"By\",\"published_by\":\"Published by\",\"written_by\":\"Written by\"},\"carousels\":{\"carousel_next\":\"Carousel Next\",\"carousel_previous\":\"Carousel Previous\",\"skip_carousel\":\"Skip carousel\"},\"common\":{\"ad\":\"ad\",\"add_a_new_payment_method\":\"Add a new payment method\",\"added_by\":\"Added by\",\"back\":\"Back\",\"back_to_top\":\"Back to top\",\"cancel\":\"Cancel\",\"close\":\"Close\",\"close_dialog\":\"Close dialog\",\"delete\":\"Delete\",\"description\":\"Description\",\"do_not_ask_me_again\":\"Do not ask me again\",\"download\":\"Download\",\"email_address\":\"Email address\",\"error\":\"Error\",\"errors\":{\"could_not_complete_request\":\"We couldn\'t complete your request\",\"failed_to_delete_review\":\"Review was not deleted. Please try again.\",\"failed_to_load\":\"Failed to load, try again\",\"failed_to_remove_title\":\"Failed to remove title\",\"failed_to_save_review\":\"Your review was not saved. Please try again.\",\"failed_to_save_review_vote\":\"Your vote was not saved. Please try again.\",\"failed_to_save_title\":\"Failed to save title\",\"please_try_again_later\":\"Please try again later.\"},\"forms\":{\"at_least_10_characters\":\"(at least 10 characters)\",\"email\":\"Email\",\"error\":\"Error\",\"invalid\":\"Invalid\",\"invalid_email\":\"Please enter a valid email\",\"name\":\"Name\",\"optional\":\"(optional)\",\"password\":\"Password\",\"please_enter_a_password\":\"Please enter a password\",\"please_enter_an_email\":\"Please enter an email\",\"required\":\"(required)\"},\"hide\":\"Hide\",\"info\":\"Information\",\"issue\":\"Issue\",\"key_insights\":\"Key insights from\",\"learn_more\":\"Learn more\",\"length\":\"Length\",\"library\":{\"add_to_list\":{\"success_message\":\"Added to {{collection_name}}\"},\"add_with_title\":\"Save {{title}} for later\",\"remove_with_title\":\"Remove {{title}} from saved\",\"sign_up_to_save\":\"Sign up to save this title\"},\"listen_free\":\"Listen free\",\"listen_free_for_30_days\":\"Listen free for {{trialDuration}} days\",\"listen_now\":\"Listen now\",\"listen_on_everand\":\"Listen on Everand\",\"load_more\":\"Load more\",\"more_about_this_title\":\"More about this title\",\"new_to_scribd\":\"New to Scribd?\",\"notice\":\"Notice\",\"opens_in_a_new_window\":\"opens in a new window\",\"or\":\"or\",\"play_preview\":\"Play preview\",\"preferred_language_set_to_language\":\"Preferred language set to {{language}}\",\"progress\":{\"listened\":\"listened\",\"read\":\"read\"},\"read_count\":\"{{count}} read\",\"read_count_plural\":\"{{count}} reads\",\"read_free\":\"Read free\",\"read_more\":\"Read more\",\"read_now\":\"Read now\",\"read_on_everand\":\"Read on Everand\",\"read_on_scribd\":\"Read on Scribd\",\"read_preview\":\"Read preview\",\"related_categories\":\"Related categories\",\"remove\":\"Remove\",\"remove_from_saved\":\"Remove from Saved\",\"removed_from_saved\":\"Removed from Saved\",\"removed_from_your_saved_list\":\"Removed from your saved list.\",\"restart_subscription\":\"Restart subscription\",\"resume_subscription\":\"Resume subscription\",\"save\":\"Save\",\"save_for_later\":\"Save for later\",\"saved\":\"Saved\",\"selected\":\"(selected)\",\"send_email\":\"Send email\",\"share_on\":{\"email\":\"Share via email\",\"email_mail_client\":\"Share with email, opens mail client\",\"facebook\":\"Share on Facebook\",\"facebook_new_window\":\"Share on Facebook, opens a new window\",\"linkedin\":\"Share on LinkedIn\",\"linkedin_new_window\":\"Share on LinkedIn, opens a new window\",\"pinterest\":\"Share on Pinterest\",\"pinterest_new_window\":\"Share on Pinterest, opens a new window\",\"twitter\":\"Share on Twitter\",\"twitter_new_window\":\"Share on Twitter, opens a new window\"},\"show\":\"Show\",\"sign_in\":\"Sign in\",\"sign_out\":\"Sign out\",\"songbook\":\"Songbook\",\"start_your_subscription\":\"Start your subscription\",\"success\":\"Success\",\"success_exclamation\":\"Success!\",\"title_author_separator\":\"by\",\"undo\":\"Undo\",\"undo_title_removed_from_saved\":\"Undo {{title}} removed from Saved\",\"uploaded_by\":\"Uploaded by\",\"welcome_back\":\"Welcome back\",\"welcome_back_exclamation\":\"Welcome back!\",\"worlds_fascinating_library\":\"The world\'s most fascinating library\"},\"competitor_matrix\":{\"last_updated_aug\":\"Last updated on August 5, 2021\",\"million_ebooks\":\"1,000,000+ ebooks\",\"million_magazine_news_articles\":\"1,000,000+ magazine \\u0026 news articles\",\"no\":\"No\",\"thousands_audiobooks\":\"200,000+ audiobooks\",\"title\":\"See why readers choose Scribd\",\"yes\":\"Yes\"},\"content_lengths\":{\"articles_with_count\":\"{{count, locale}} article\",\"articles_with_count_plural\":\"{{count, locale}} articles\",\"hour_with_count\":\"{{count, locale}} hour\",\"hour_with_count_plural\":\"{{count, locale}} hours\",\"minute_with_count\":\"{{count, locale}} minute\",\"minute_with_count_plural\":\"{{count, locale}} minutes\",\"page_with_count\":\"{{count, locale}} page\",\"page_with_count_plural\":\"{{count, locale}} pages\",\"songs_with_count\":\"{{count, locale}} song\",\"songs_with_count_plural\":\"{{count, locale}} songs\"},\"content_preview\":{\"leaving_everand\":\"Leaving Everand on {{date}}\"},\"content_types\":{\"series\":\"Series\"},\"doc_download_modal\":{\"check_out_these\":\"Check out these other great titles\",\"download_as\":\"Download as:\",\"download_document\":\"Download document\",\"download_iframe\":\"Download iframe\",\"download_started\":\"Your download has started\",\"membership_paused_html\":\"Your membership is currently paused until {{resumeMembershipDate}}. Would you like to resume your membership now to download \\u003cem\\u003e{{title}}\\u003c/em\\u003e?\",\"not_available\":\"This document is not available for download\",\"uploaded\":\"Uploaded By\"},\"doc_preview\":{\"views\":\"{{formatted_views}} views\"},\"errors\":{\"action_incomplete_heading\":\"Action Incomplete\",\"action_incomplete_message\":\"Oops! We\'re sorry, but we couldn\'t complete the action you requested at this time. We appreciate your patience as we come up with a solution.\",\"something_went_wrong\":\"Something went wrong, please try again.\"},\"everand\":{\"cta\":{\"download_free_days\":\"Download free for {{trialDuration}} days\",\"read_free_for_30_days\":\"Read free for 30 days\"}},\"everand_banner\":{\"visit_everand\":\"Visit Everand.\"},\"footer\":{\"about\":\"About\",\"about_scribd\":\"About Scribd\",\"accessibility\":\"Accessibility\",\"cancel_contract\":\"Cancel contracts here\",\"contact_us\":\"Contact us\",\"cookie_preferences\":\"Cookie Preferences\",\"copyright\":\"Copyright\",\"copyright_copy_current_year_scribd\":\"Copyright \\u0026copy; {{currentYear}} Scribd Inc.\",\"do_not_sell_share_info\":\"Do not sell or share my personal information\",\"everand_books_audiobooks\":\"Everand: Ebooks \\u0026 Audiobooks\",\"footer_menu\":\"Footer menu\",\"gifts\":\"Gifts\",\"help_faq\":\"Help / FAQ\",\"invite_friends\":\"Invite friends\",\"join_our_team_exclamation\":\"Join our team!\",\"legal\":\"Legal\",\"our_blog\":\"Our blog\",\"press\":\"Press\",\"privacy\":\"Privacy\",\"publishers\":\"Publishers\",\"purchase_help\":\"Purchase help\",\"redeem_gift_card\":\"Redeem gift card\",\"scribd_-_download_on_the_app_store\":\"Scribd - Download on the App Store\",\"scribd_-_get_it_on_google_play\":\"Scribd - Get it on Google Play\",\"scribd_-_get_it_on_kindle_fire\":\"Scribd for Kindle Fire\",\"scribd_for_enterprise\":\"Scribd for enterprise\",\"social\":\"Social\",\"support\":\"Support\",\"terms\":\"Terms\"},\"get_app_modal\":{\"an_error_occurred_please_try_again\":\"An error occurred please try again\",\"an_error_occurred_please_try_an\":\"An error occurred please try an email\",\"enter_your_email\":\"Enter your email\",\"enter_your_phone_or_email\":\"Enter your phone or email\",\"get_the_app_to_read_and_listen\":\"Get the app to read and listen anytime, anywhere.\",\"link_sent_please_check_your_mobile\":\"Link sent! Please check your mobile device\",\"listen_offline_with_app\":\"Listen offline with the app\",\"phone_or_email\":\"Phone or email\",\"please_enter_a_valid_email\":\"Please enter a valid email\",\"please_enter_a_valid_phone_number\":\"Please enter a valid phone number\",\"please_enter_a_valid_phone_number_or_email\":\"Please enter a valid phone number or email\",\"read_offline_with_app\":\"Read offline with the app\",\"send\":\"Send\"},\"holiday_banner\":{\"days_left_title\":\"Only {{count}} day left in our holiday gift sale!\",\"days_left_title_plural\":\"Only {{count}} days left in our holiday gift sale!\",\"everyday_title\":\"Scribd: give the gift they\'ll open every day\",\"shop_subscriptions\":\"Shop subscriptions\"},\"listen_button\":{\"listen_continue\":\"Continue listening\",\"listen_start\":\"Start listening\"},\"lists\":{\"curated_by\":\"Curated by\",\"curated_by_everand_editors\":\"Curated by Everand Editors\",\"curated_by_scribd_editors\":\"Curated by Scribd Editors\",\"view_total_titles\":\"View {{count}} title\",\"view_total_titles_plural\":\"View {{count}} titles\"},\"loading_button\":{\"tooltip_content\":{\"loading\":\"Loading...\"}},\"login\":{\"join_lightbox\":{\"email\":\"Email\",\"we_couldn_t_complete_your_request\":\"We couldn\'t complete your request\"}},\"mobile_bottom_navigation_tabs\":{\"active\":\", active\",\"home\":\"Home\",\"quick_navigation\":\"Quick navigation\"},\"modal\":{\"opt_in\":{\"stay_in_the_loop\":\"Stay in the loop\"},\"upsell\":{\"cancel_anytime\":\"Cancel anytime\",\"continue_with_free_trial\":\"Continue with {{trialDuration}}-day free trial\",\"continue_with_limited_access\":\"Continue with limited access\",\"or\":\"or\"}},\"navigation\":{\"open_menu\":\"Open navigation menu\",\"sidebar\":{\"selected\":\", selected\"},\"upload\":\"Upload\"},\"plan_card\":{\"per_month\":\"/month\"},\"plan_type\":{\"plus_monthly\":\"Plus Monthly\",\"standard_monthly\":\"Standard Monthly\"},\"plans\":{\"moving_to_plus\":\"Moving to Plus on {{date}}\",\"next_unlock_available\":\"Your next unlock will be available on {{refresh_date}}\",\"no_unlocks_available\":\"0 unlocks available\",\"num_unlocks_available\":\"{{count}} unlock available.\",\"num_unlocks_available_plural\":\"{{count}} unlocks available.\",\"num_unlocks_available_renew_monthly\":\"{{count}} unlock available. Unlocks renew monthly on {{refresh_date}} and do not carry over.\",\"num_unlocks_available_renew_monthly_plural\":\"{{count}} unlocks available. Unlocks renew monthly on {{refresh_date}} and do not carry over.\",\"renew_and_upgrade\":\"Renew and upgrade to Plus to unlock this title.\",\"renew_get_next_unlock\":\"Renew your subscription to get your next unlock on {{refresh_date}}.\",\"unlock_plus_title\":\"Unlock Plus title\",\"unlocked\":\"Unlocked\",\"upgrade_to_unlock\":\"Upgrade to Plus to unlock\",\"youve_unlocked_this_title\":\"You’ve unlocked this title.\"},\"play_sample_button\":{\"pause\":\"Pause\",\"play_sample\":\"Play sample\"},\"podcast_episode\":{\"from\":\"From\"},\"podcast_series\":{\"num_episodes\":\"{{ count }} episode\",\"num_episodes_plural\":\"{{ count }} episodes\",\"num_podcast_episodes\":\"{{count, locale}} podcast episode\",\"num_podcast_episodes_plural\":\"{{count, locale}} podcast episodes\"},\"promos\":{\"annual_offer\":{\"annual\":\"Premium Annual\",\"monthly\":\"Premium Monthly\",\"youre_all_set_html\":\"You\'re all set! You’ve updated your plan. \\u003ca href={{account_settings_url}}\\u003eView your plan\\u003c/a\\u003e in your account.\"}},\"react\":{\"button_menu\":{\"close_menu\":\"Close menu\"},\"modals\":{\"delete_item_in_list\":{\"cancel\":\"Cancel\",\"delete\":\"Delete\",\"do_not_ask_me_again\":\"Do not ask me again\",\"removing_from_saved_will_also_delete\":\"Removing from Saved will also delete the title from your lists.\",\"this_title_is_also_in_a\":\"This title is also in a list.\"}},\"save_button\":{\"failed_to_remove_title\":\"Failed to remove title\",\"failed_to_save_title\":\"Failed to save title\",\"remove_short_title_from_saved\":\"Remove {{short_title}} from Saved\",\"save_short_title_for_later\":\"Save {{short_title}} For Later\",\"sign_up_to_save\":\"Sign up to save this title\"},\"sharing_buttons\":{\"check_out_props_share_title_on_scribd\":\"Check out {{props_share_title}} on Scribd\",\"i_m_reading_props_document_collection_name_on_scribd_props_document_collection_url\":\"I’m reading {{props_document_collection_name}} on Scribd: {{props_document_collection_url}}\",\"read_props_document_collection_name_on_scribd\":\"Read {{props_document_collection_name}} on Scribd\",\"share_on_facebook\":\"Share on Facebook\",\"share_on_facebook_opens_a_new\":\"Share on Facebook, opens a new window\",\"share_on_linkedin\":\"Share on LinkedIn\",\"share_on_linkedin_opens_a_new\":\"Share on LinkedIn, opens a new window\",\"share_on_twitter\":\"Share on Twitter\",\"share_on_twitter_opens_a_new\":\"Share on Twitter, opens a new window\",\"share_with_email\":\"Share with Email\",\"share_with_email_opens_mail_client\":\"Share with Email, opens mail client\",\"sharing_options\":\"Sharing Options\"}},\"reading_progress\":{\"base\":{\"we_ve_moved_you_to_where_you\":\"We\'ve moved you to where you read on your {{progress_device_name}}\"}},\"renew_upgrade_modal\":{\"please_renew_your_subscription_first_in\":\"Please renew your subscription first in order to upgrade to Plus to unlock this title.\",\"renew_and_upgrade_to_unlock\":\"Renew and upgrade to unlock this title\",\"renew_subscription\":\"Renew subscription\"},\"resume_membership\":\"Resume subscription\",\"save_button\":{\"save\":\"Save\",\"saved\":\"Saved\"},\"sharing_buttons\":{\"hi_there_document_action_and_thought_you\":\"Hi there, {{document_action}} and thought you might like it. {{document_title}} by {{document_author_or_publisher_name_or_login}} {{doc_url}} Scribd gives you monthly access to books, audiobooks, and more - for less than the cost of a paperback. Join today and {{trial_cta_downcase}}. Find out more at: http://www.scribd.com/\",\"i_m_reading_document_title_on_suffix\":\"I’m reading {{document_title}} on {{suffix}}\"},\"skip_link\":{\"skip_content\":\"Skip content\"},\"social_buttons\":{\"scribd_on_facebook_aria_label\":\"Scribd on Facebook\",\"scribd_on_instagram_aria_label\":\"Scribd on Instagram\",\"scribd_on_pinterest_aria_label\":\"Scribd on Pinterest\",\"scribd_on_twitter_aria_label\":\"Scribd on Twitter\"},\"star_ratings\":{\"clear_rating\":\"Clear rating\",\"i_didnt_like_it_at_all\":\"I didn\'t like it at all\",\"i_didnt_like_it_that_much\":\"I didn\'t like it that much\",\"i_liked_it\":\"I liked it\",\"i_loved_it\":\"I loved it\",\"i_thought_it_was_ok\":\"I thought it was OK\",\"rate_as_rating_out_of_5\":\"Rate as {{value}} out of 5\",\"rating_rating_to_display_out_of_5_stars\":\"Rating: {{ratingToDisplay}} out of 5 stars\",\"ratings\":\"rating\",\"ratings_plural\":\"ratings\",\"saved\":\"Saved!\",\"selected\":\"(selected)\",\"user_rating_star_rating_saved\":\"{{userRating}} star rating saved\"},\"start_exploring\":\"Start exploring\",\"text_links\":{\"all_categories\":\"All categories\",\"related_authors\":\"Related authors\",\"view_all_categories_in_category\":\"View all categories in {{category}}\",\"view_fewer\":\"View fewer\",\"view_more\":\"View More\"},\"time_remaining\":{\"hours\":\"{{count}} hr left\",\"hours_plural\":\"{{count}} hrs left\",\"minutes\":\"{{count}} min left\",\"minutes_plural\":\"{{count}} mins left\",\"pages\":\"{{count}} page left\",\"pages_plural\":\"{{count}} pages left\"},\"trial\":{\"cancel_anytime\":\"Cancel anytime.\"},\"trial_duration\":{\"first_days_free\":\"Your first {{trialDuration}} days are free.\",\"read_free_days\":\"Read free for {{trialDuration}} days\",\"start_trial_days\":\"Start your free {{trialDuration}} days\",\"upload_for_free_days\":\"Unlock full access (pages {{startPage}}-{{endPage}}) by uploading documents or with a {{trialDuration}} day free trial\"}},\"slideshare\":{\"accessibility\":{\"logo\":\"SlideShare, a Scribd company\"},\"checkout\":{\"hero_banner_title\":\"Your SlideShare document\"},\"join\":{\"ad_free_sign_up_sub_title\":\"You’ll get instant access to millions of presentations, documents, ebooks, audiobooks, magazines, podcasts and more. We’ll remind you before your trial ends.\",\"ad_free_sign_up_title\":\"To enjoy SlideShare ad-free, sign up for a free {{trialDuration}}-day Scribd trial\",\"already_have_scribd_account\":\"Already have a Scribd account?\",\"create_account\":\"Create a Scribd account to continue\",\"get_instant_access\":\"Get instant access to millions of documents, ebooks, audiobooks, magazines, podcasts, and more. All in one subscription.\",\"need_account_sign_in_slideshare\":\"You can use this account to access SlideShare and Scribd.\",\"to_continue_reading\":\"To continue reading on SlideShare, sign up for a {{trialDuration}} day free Scribd trial\",\"trial_duration\":\"To download on SlideShare, sign up for a {{trialDuration}} day free Scribd trial\"},\"login\":{\"sign_in\":\"Sign in with your Scribd account to continue\"}},\"subscribe_now\":{\"modal\":{\"continue_to_scribd\":\"Continue to Scribd\",\"looking_for_our_ebooks_audiobooks\":\"Looking for our ebooks and audiobooks?\",\"scribd_recently_launched_everand\":\"Scribd recently launched \\u003cem\\u003eEverand\\u003c/em\\u003e as your new home for ebooks, audiobooks, magazines, sheet music, and podcasts. Scribd is still your home for community-uploaded documents.\",\"visit_everand\":\"Visit Everand\",\"welcome_to_scribd\":\"Welcome to Scribd!\"}},\"webpack\":{\"doc_page\":{\"src\":{\"App\":{\"Page\":{\"BetweenPageInterstitial\":{\"BetweenPageInterstitial\":{\"continue_for_free\":\"Continue for Free\",\"you_re_reading_a_preview\":\"You\'re reading a preview\"}},\"BetweenPageUserRating\":{\"BetweenPageUserRating\":{\"dismiss_user_rating_prompt\":\"Dismiss user rating prompt\",\"improve_your_experience\":\"Improve Your Experience\",\"rating_will_help_us_to_suggest\":\"Rating will help us to suggest even better related documents to all of our readers!\"}},\"BlurPromo\":{\"BlurPromo\":{\"become_a_scribd_member_to_read\":\"Become a Scribd member to read and download full documents.\",\"cancel_anytime\":\"Cancel anytime\",\"continue_for_free\":\"Continue for Free\",\"continue_reading_with_trial\":\"Continue Reading with Trial\",\"or\":\"Or\",\"update_payment\":\"Update Payment\",\"update_payment_for_full_access\":\"Update payment for full access.\",\"upload_to_download\":\"Upload to Download\",\"upload_your_documents_to_download\":\"Upload your documents to download.\"}},\"Body\":{\"Body\":{\"share_this_document\":\"Share this document\"},\"Document\":{\"mappings\":{\"thank_you_for_your_rating\":\"Thank you for your rating!\"}},\"FixedViewportBottomComponents\":{\"CollapseButton\":{\"CollapseButton\":{\"click_to_collapse_related_titles\":\"Click to collapse Related Titles\",\"click_to_expand_related_titles\":\"Click to expand Related Titles\"}},\"ViewInStorePromo\":{\"ViewInStorePromo\":{\"get_our_free_app\":\"Get our free app\",\"get_scribd_for_your_mobile_device\":\"Get Scribd for your mobile device.\"}}},\"Metadata\":{\"Extra\":{\"Extra\":{\"original_title\":\"Original Title:\",\"original_title_no_colon\":\"Original Title\"}}},\"StaticPromoStudy\":{\"StaticPromoStudy\":{\"anytime_anywhere_any_device\":\"Anytime. Anywhere. Any device.\",\"cancel_anytime\":\"Cancel Anytime\",\"everything_you_want_to_read\":\"Everything you want to read.\",\"no_commitment_cancel_anytime\":\"No Commitment. Cancel anytime.\",\"read_for_free\":\"Read For Free\",\"reward_your_curiosity\":\"Reward Your Curiosity\"}},\"Toolbar\":{\"Toolbar\":{\"jump_to_page\":\"Jump to Page\"}},\"TruncatePromo\":{\"TruncatePromo\":{\"continue_reading_with_trial\":\"Continue Reading with Trial\"},\"helpers\":{\"constants\":{\"unlock_the_full_document_with_a\":\"Unlock the full document with a free trial!\"}}}},\"annotations\":{\"AnnotationPopover\":{\"AnnotationPopover\":{\"add_note\":\"Add Note\",\"annotation_text_page_annotation_page_nread_more\":\"\\\"{{annotation_text}}…\\\" (page {{annotation_page}})\\\\nRead more:\",\"delete\":\"Delete\",\"highlight\":\"Highlight\",\"share_quote\":\"Share Quote\"}},\"NoteEditor\":{\"NoteEditor\":{\"add_note\":\"Add Note\",\"cancel\":\"Cancel\",\"delete_note\":\"Delete note\",\"note\":\"Note\",\"note_note_group_notes_indexof_active_note_id_1_of_note_group_notes_length\":\"Note {{note_group_notes_indexof_active_note_id_1}} of {{note_group_notes_length}}\",\"save\":\"Save\",\"write_a_note\":\"Write a note…\"}}},\"modals\":{\"AppPromoInterstitial\":{\"AppPromoInterstitial\":{\"continue_reading_with_free_trial\":\"Continue Reading with Free Trial\",\"get_instant_access_to_this_document\":\"Get instant access to this document\",\"opens_scribd_app\":\", opens Scribd app\",\"or\":\"OR\",\"read_free_in_the_app\":\"Read Free in the App\",\"sign_up_to_download\":\", sign up to download\"}},\"Description\":{\"Description\":{\"document_information\":\"Document Information\"}},\"LanguagePicker\":{\"LanguagePicker\":{\"cancel\":\"Cancel\",\"language_options\":\"Language Options\",\"save\":\"Save\",\"select_your_preferred_language\":\"Select your preferred language\",\"we_ll_translate_site_navigation_and_tailor\":\"We’ll translate site navigation and tailor your personal recommendations where possible to match your preferred language selection.\",\"we_ll_translate_site_navigation_to_match\":\"We’ll translate site navigation to match your preferred language selection.\"}},\"LockShockRoadblockModal\":{\"LockShockRoadblockModal\":{\"later\":\"Later\",\"problem_with_your_last_payment\":\"Problem with your last payment\",\"update_payment\":\"Update Payment\",\"your_membership_is_on_hold_please\":\"Your membership is on hold because of a problem with your last payment.\"}},\"ShareQuote\":{\"ShareQuote\":{\"loved_this_quote_i_read_on\":\"Loved this quote I read on @Scribd\",\"page_page\":\"(page {{page}})\",\"share_quote\":\"Share Quote\"}}}}},\"body\":{\"sidebar\":{\"date_uploaded\":\"Date uploaded\",\"on_created_at\":\"on {{created_at}}\"},\"toolbar\":{\"search_inside_document\":\"Search inside document\"}},\"modals\":{\"flag_document\":{\"hateful_or_offensive\":\"Hateful or offensive\",\"please_select_an_option\":\"Please select an option\",\"porn_adult_content\":\"Porn adult content\",\"spam_or_junk\":\"Spam or junk\"}},\"shared\":{\"actions\":{\"modals\":{\"redirecting\":\"Redirecting...\",\"unable_to_unpause_account_please_try\":\"Unable to unpause account. Please try again\"}},\"base_page\":{\"an_error_occurred_please_try_again\":\"An error occurred please try again\"},\"carousels\":{\"recommender_carousel\":{\"skip_carousel\":\"Skip carousel\"}},\"components\":{\"flashes\":{\"Flash\":{\"Flash\":{\"information\":\"information\"}}},\"modals\":{\"Download\":{\"Receipt\":{\"Receipt\":{\"uploaded_by_this_props_document_author_name\":\"Uploaded by {{this_props_document_author_name}}\"}}}}},\"download_button\":{\"button\":{\"download\":\"Download\"}},\"store\":{\"actions\":{\"modals\":{\"subscribe_to_continue_reading\":\"Subscribe to Continue Reading\"}}}}}}}}}}");Scribd.e2e_enabled = false;</script><script type="application/javascript">function prefetchResource(u){var x = new XMLHttpRequest();x.open("GET", u, true);x.send()};</script></body></html>