<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-37218502</id><updated>2011-07-07T23:29:04.115-07:00</updated><title type='text'>speak up your mind..!</title><subtitle type='html'>..don't judge the book from the cover..</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>45</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-37218502.post-4162350782069892090</id><published>2009-10-30T01:43:00.000-07:00</published><updated>2009-10-30T01:58:30.059-07:00</updated><title type='text'>Pengenalan Oracle dan Database Relational</title><content type='html'>Bab 1&lt;br /&gt;&lt;br /&gt;Pengenalan Oracle dan Database Relational&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;1.1 Pengenalan Database Relational&lt;br /&gt;&lt;br /&gt;ORACLE adalah database relational. Sebuah database relational merupakan kumpulan dari tabel-tabel. Tabel sendiri sering kita jumpai dalam kehidupan sehari-hari, misalnya laporan keuangan bulanan, daftar harga menu, grafik-grafik dan lain-lain. Masing-masing tabel mempunyai hubungan antara satu dengan yang lain, misalnya antara tabel ruas jalan tol dengan tabel kantor cabang, sehingga dia disebut relational.&lt;br /&gt;&lt;br /&gt;Kumpulan kertas-kertas laporan yang menumpuk di atas meja atau yang ada di laci sebetulnya dapat disebut sebagai database juga. Namun dengan pengelolaan seperti ini, akan muncul masalah jika data yang dikelola volumenya besar, sehingga menyulitkan kita dalam mengelola data-data tersebut. Kemudian mungkin kita akan menggunakan fasilitas komputer, seperti menggunakan LOTUS atau EXCEL, tapi pada prinsipnya kesulitan pekerjaan pengelolaan kita tetap sama.&lt;br /&gt;&lt;br /&gt;Sebuah Sistem Basis Data Relational (Relational Database Management System, disingkat RDBMS) seperti ORACLE pada prinsipnya merupakan sistem yang memungkinkan kita untuk:&lt;br /&gt;&lt;br /&gt;    * Memasukkan data.&lt;br /&gt;    * Mengelola data.&lt;br /&gt;    * Mengambil data.&lt;br /&gt;&lt;br /&gt;Prinsip ini dapat dilihat pada gambar berikut.&lt;br /&gt;&lt;br /&gt;Gambar 1.1 Prinsip RDBMS&lt;br /&gt;&lt;br /&gt;Informasi yang dikelola dalam sebuah RDBMS dapat diakses dengan menggunakan SQL (Structured Query Language, diucapkan ‘sequel’).&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;1.2 Pengenalan SQL&lt;br /&gt;&lt;br /&gt;Informasi disimpan di ORACLE dalam bentuk tabel-tabel. Contoh sebuah tabel dapat dilihat di gambar berikut.&lt;br /&gt;&lt;br /&gt;Tabel Pegawai&lt;br /&gt;&lt;br /&gt;NIP&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Nama_Pegawai&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Golongan&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Umur&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Gaji&lt;br /&gt;&lt;br /&gt;1&lt;br /&gt; Mohammad Ridwan  &lt;br /&gt;&lt;br /&gt;2&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;27&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;15.000&lt;br /&gt;&lt;br /&gt;2&lt;br /&gt; Amir Hamzah  &lt;br /&gt;&lt;br /&gt;4&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;35&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;25.000&lt;br /&gt;&lt;br /&gt;Gambar 1.2 Tabel Pegawai&lt;br /&gt;&lt;br /&gt;Sebuah tabel mempunyai tiga karakteristik utama, yaitu nama, kolom, dan baris. Tabel di atas mempunyai nama Pegawai, mempunyai lima kolom (NIP, nama_pegawai, golongan, umur, dan gaji) dan dua baris data.&lt;br /&gt;&lt;br /&gt;Pengelolaan tabel (membuat tabel, mengisi data, mengambil data, dll.) dilakukan dengan memberikan perintah SQL kepada ORACLE. Contoh dari sebuah perintah SQL adalah sebagai berikut:&lt;br /&gt;&lt;br /&gt;select Nama_Pegawai from Pegawai;&lt;br /&gt;&lt;br /&gt;Hasil dari perintah di atas adalah :&lt;br /&gt;&lt;br /&gt;Nama Pegawai&lt;br /&gt;----------------------&lt;br /&gt;Mohammad Ridwan&lt;br /&gt;Amir Hamzah&lt;br /&gt;&lt;br /&gt;Contoh lain dari sebuah perintah SQL:&lt;br /&gt;&lt;br /&gt;select&lt;br /&gt;    Nama_Pegawai,&lt;br /&gt;    Umur&lt;br /&gt;from&lt;br /&gt;    Pegawai&lt;br /&gt;where&lt;br /&gt;    Gaji &gt; 20000;&lt;br /&gt;&lt;br /&gt;Hasil dari perintah di atas adalah :&lt;br /&gt;&lt;br /&gt;Nama Pegawai   Umur&lt;br /&gt;---------------------------&lt;br /&gt;Amir Hamzah    35&lt;br /&gt;&lt;br /&gt;Kata-kata kunci yang biasa diberikan dalam sebuah perintah SQL adalah select, from, where, dan order by. Kata-kata kunci ini dituliskan dalam format sebagai berikut :&lt;br /&gt;&lt;br /&gt;select&lt;br /&gt;     nama_kolom1,&lt;br /&gt;     nama_kolom2&lt;br /&gt;from&lt;br /&gt;     nama_tabel&lt;br /&gt;where&lt;br /&gt;     kondisi&lt;br /&gt;order by&lt;br /&gt;     nama_kolom1;&lt;br /&gt;&lt;br /&gt;Bagian select menunjukkan kolom-kolom apa yang hendak ditampilkan. Bagian from menunjukkan nama tabel- tabel asal. Bagian where memungkinkan kita untuk memilih data-data yang sesuai yang hendak ditampilkan. Sedangkan bagian order by menunjukkan hasil query akan diurutkan menurut kolom apa.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;1.3 Relasi antar Tabel&lt;br /&gt;&lt;br /&gt;ORACLE disebut database relational karena antara tabel-tabel yang ada di database itu pasti ada relasi satu dengan yang lain. Pada diagram berikut ini akan diberikan contoh dua tabel yang saling berelasi, yaitu tabel Pegawai dan tabel Divisi.&lt;br /&gt;&lt;br /&gt;Gambar 1.3 Tabel Pegawai dan Divisi&lt;br /&gt;&lt;br /&gt;Seperti terlihat pada diagram di atas, tabel Pegawai dan tabel Divisi mempunyai relasi satu dengan yang lain. Lebih jauh diketahui bahwa relasi antara kedua tabel tersebut terletak pada Nama_Pegawai.&lt;br /&gt;&lt;br /&gt;Dengan adanya relasi, maka kita bisa menggabungkan data-data pada kedua tabel tersebut. Contoh sebuah laporan yang merupakan gabungan antara tabel Pegawai dan tabel Divisi :&lt;br /&gt;&lt;br /&gt;Laporan Pegawai di Divisi&lt;br /&gt;&lt;br /&gt;NIP&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Nama_Pegawai&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Divisi&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Umur&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Gaji&lt;br /&gt;&lt;br /&gt;1&lt;br /&gt; Mohammad Ridwan  &lt;br /&gt;&lt;br /&gt;Manlalin&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;24&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;15.000&lt;br /&gt;&lt;br /&gt;2&lt;br /&gt; Amir Hamzah  &lt;br /&gt;&lt;br /&gt;SDM&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;21&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;7.000&lt;br /&gt;&lt;br /&gt;3&lt;br /&gt; Mamad  &lt;br /&gt;&lt;br /&gt;SDM&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;31&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;25.000&lt;br /&gt;&lt;br /&gt;4&lt;br /&gt; Iim  &lt;br /&gt;&lt;br /&gt;Manpultol&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;43&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;27.000&lt;br /&gt;&lt;br /&gt;5&lt;br /&gt; Dewi  &lt;br /&gt;&lt;br /&gt;Manpultol&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;26&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;18.000&lt;br /&gt;&lt;br /&gt;Gambar 1.4 Laporan Pegawai pada suatu Divisi&lt;br /&gt;&lt;br /&gt;Laporan di atas dihasilkan oleh perintah SQL berikut:&lt;br /&gt;&lt;br /&gt;Select&lt;br /&gt;    Pegawai.NIP,&lt;br /&gt;    Pegawai.Nama_pegawai,&lt;br /&gt;    Divisi.Nama_divisi,&lt;br /&gt;    Pegawai.Umur,&lt;br /&gt;    Pegawai.Gaji&lt;br /&gt;From&lt;br /&gt;    Pegawai,&lt;br /&gt;    Divisi&lt;br /&gt;Where&lt;br /&gt;    Pegawai.Nama_Pegawai = Divisi.Nama_Pegawai ;&lt;br /&gt;&lt;br /&gt;Seperti terlihat perintah SQL di atas akan mengambil data dari tabel Pegawai dan tabel Divisi (lihat di bagian from). Kolom-kolom yang dipilih untuk ditampilkan dapat dilihat di bagian select. Sementara bagian where menunjukkan bagaimana kedua tabel harus digabungkan, dalam hal ini maka kedua tabel digabungkan menurut kolom Nama_Pegawai.&lt;br /&gt;&lt;br /&gt;Dalam database relational, hubungan antar tabel harus dirancang dengan baik, sehingga tidak ada duplikasi maupun inkonsistensi pada data. Keterangan lengkap tentang bagaimana mendesain database yang baik tentu saja di luar skope tulisan ini.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;1.4 User&lt;br /&gt;&lt;br /&gt;Tabel-tabel dalam ORACLE akan dikelompokkan ke dalam user-user. Misalnya tabel Pegawai dan tabel Gaji akan dimiliki oleh user SDM, tabel Kecelakaan, Gangguan Lalulintas, dan Patroli akan dimiliki oleh user MLL(Manlalin), dan seterusnya.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Gambar 1.5 Hubungan User dan Tabel&lt;br /&gt;&lt;br /&gt;Pengelompokan tabel dalam user-user ini mempunyai kegunaan sebagai berikut:&lt;br /&gt;&lt;br /&gt;    * Menentukan siapa yang mempunyai otoritas atas suatu informasi.&lt;br /&gt;    * Mengatur hak-hak pengaksesan (privilege) antar skema dan antar tabel.&lt;br /&gt;    * Mengatur hak pemakaian disk space (kuota).&lt;br /&gt;&lt;br /&gt;Semua objek di ORACLE (contoh objek adalah table, view, dan index) akan diasosiasikan atau dimiliki oleh satu user. Dengan demikian, maka penerapan kebijakan otorisasi dapat diterapkan tidak hanya untuk tabel, tapi juga untuk semua objek.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;1.5 Objek-objek Database&lt;br /&gt;&lt;br /&gt;Jenis-jenis objek dalam database ORACLE yang biasa dipakai dalam pembangunan aplikasi adalah :&lt;br /&gt;&lt;br /&gt;    * Tabel&lt;br /&gt;    * Index&lt;br /&gt;    * View&lt;br /&gt;    * Snapshot&lt;br /&gt;    * Sequence&lt;br /&gt;    * Package&lt;br /&gt;    * Stored Procedure&lt;br /&gt;    * Trigger&lt;br /&gt;    * Database links&lt;br /&gt;&lt;br /&gt;Sedangkan objek-objek yang berhubungan dengan fisik database antara lain:&lt;br /&gt;&lt;br /&gt;    * Instance&lt;br /&gt;    * Database&lt;br /&gt;    * Tablespace&lt;br /&gt;    * Segment&lt;br /&gt;    * Data file&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;1.6 Otorisasi Akses&lt;br /&gt;&lt;br /&gt;Otorisasi akses mengatur tindakan apa yang boleh dilakukan oleh seorang pemakai atas suatu objek yang ada di ORACLE. Dengan mengatur otorisasi akses ini, maka kita bisa menjaga kerahasiaan dan integritas informasi, karena suatu informasi hanya dapat dilihat, dirubah, ditambah, atau dihapus hanya oleh orang-orang yang berkepentingan.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;1.7 Bagaimana ORACLE Mengelola Data&lt;br /&gt;&lt;br /&gt;Pengetahuan tentang bagaimana ORACLE mengelola data sangatlah vital bagi seorang administrator.&lt;br /&gt;&lt;br /&gt;Sebuah sistem database yang besar sekali dapat terdiri dari beberapa ORACLE server yang berjalan di server-server yang terpisah. Masing-masing server ini akan mengelola data yang sesuai dengan bagiannya saja. Misalnya server pada Divisi Akuntansi mengelola database Akuntansi, server SDM mengelola database SDM, dan seterusnya.&lt;br /&gt;&lt;br /&gt;Sistem database yang tersebar seperti di atas disebut Distributed Database.&lt;br /&gt;&lt;br /&gt;Gambar 1.6 Contoh Instalasi Database Oracle&lt;br /&gt;&lt;br /&gt;Meskipun data diletakkan di lokasi yang berbeda-beda, tapi USER akan melihat database sebagai satu kesatuan. Tersebarnya data-data akan transparan terhadap user.&lt;br /&gt;&lt;br /&gt;User akan membuat koneksi dengan salah satu database server. Pada database server tersebut, koneksi user tersebut dilayani oleh sebuah instance. Instance tersebut kemudian akan mengakses database yang sesuai yang ada di server tersebut.&lt;br /&gt;&lt;br /&gt;Gambar 1.7 Instance dan Database Oracle&lt;br /&gt;&lt;br /&gt;Instance dapat dilihat sebagai sistem yang mengelola database. Dalam satu ORACLE server, bisa terdapat lebih dari satu instance.&lt;br /&gt;&lt;br /&gt;Database adalah media penyimpanan yang berisi tabel-tabel.&lt;br /&gt;&lt;br /&gt;Instance dan database masing-masing adalah independen satu dengan yang lain. Sebuah instance dapat mengelola satu atau lebih database. Ketika sebuah instance dijalankan dan dihubungkan ke suatu database, maka instance itu dikatakan berjalan (started). Ketika instance itu di shut down, maka database yang dikelola oleh instance itu tidak akan dapat diakses lagi.&lt;br /&gt;&lt;br /&gt;Jika kita melihat lebih dalam lagi ke dalam database, maka suatu database akan diorganisasikan sebagai berikut.&lt;br /&gt;&lt;br /&gt;Gambar 1.8 Bagan suatu Database pada Oracle&lt;br /&gt;&lt;br /&gt;Masing-masing bagian dari database akan dijelaskan berikut ini.&lt;br /&gt;&lt;br /&gt;Tablespace&lt;br /&gt;&lt;br /&gt;Sebuah database dibagi satuan-satuan penyimpanan yang disebut tablespace. Sebuah databas dapat berisi satu atau lebih tablespace. Sebuah tablespace disusun dari satu atau lebih file.&lt;br /&gt;&lt;br /&gt;Karena tablespace merupakan tempat penyimpanan tabel-tabel, DBA bertugas mengatur penggunaan tablespace ini. Tugas yang harus dilakukan DBA terhadap tablespace antara lain:&lt;br /&gt;&lt;br /&gt;    * Mengontrol penggunaan tempat (storage) untuk objek-objek database, yaitu tabel, index, dan temporary segment.&lt;br /&gt;    * Menentukan kuota penggunaan tempat untuk user.&lt;br /&gt;    * Membuat tablespace online atau offline.&lt;br /&gt;    * Backup dan recovery.&lt;br /&gt;    * Mengatur media penyimpanan yang tepat bagi tablespace sehingga meningkatkan performansi database.&lt;br /&gt;&lt;br /&gt;Tablespace yang akan selalu dibuat secara otomatis oleh ORACLE adalah tablespace dengan nama SYSTEM. Tablespace ini pasti akan selalu ada di setiap database, dan akan berisi informasi-informasi mengenai keadaan database. Tablespace ini harus selalu tersedia (online) agar database dapat diakses.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Segment dan Extent&lt;br /&gt;&lt;br /&gt;Semua data dalam tablespace akan dipecah-pecah menjadi segment-segment. Ada beberapa jenis segment:&lt;br /&gt;&lt;br /&gt;    * Data segment.&lt;br /&gt;    * Index segment.&lt;br /&gt;    * Rollback segment.&lt;br /&gt;    * Temporary segment.&lt;br /&gt;    * Bootstrap segment.&lt;br /&gt;&lt;br /&gt;Parameter-parameter untuk mengatur besar segment:&lt;br /&gt;Initial extent  ukuran (dalam bytes) dari extent pertama milik segment, atau disebut juga ukutan awal dari segment.&lt;br /&gt;Next extent  ukuran (dalam bytes) dari extent selanjutnya.&lt;br /&gt;Max extent  maksimum jumlah extent dari suatu segment.&lt;br /&gt;Min extent  jumlah extent pertama yang akan dialokasikan.&lt;br /&gt;Pctincrease  berapa besar ukuran next extent dibandingkan dengan extent terakhir.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-4162350782069892090?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/4162350782069892090/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=4162350782069892090' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/4162350782069892090'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/4162350782069892090'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2009/10/pengenalan-oracle-dan-database.html' title='Pengenalan Oracle dan Database Relational'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-2826307312980395791</id><published>2009-10-29T21:35:00.000-07:00</published><updated>2009-10-30T01:14:44.457-07:00</updated><title type='text'>DESAIN DATA BASE (BAB II)</title><content type='html'>&lt;span style="font-weight: bold; font-family: trebuchet ms;font-size:85%;" &gt;Proses Desain Data Base&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;ul style="font-family: trebuchet ms; text-align: justify;"&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Analisis Persyaratan&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Desain Data Base Konseptual&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Desain Data Base Logika&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Perbaikan Skema&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Desain Data Base Fisik&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Desain Aplikasi dan Keamanan&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link style="font-family: trebuchet ms;" rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link style="font-family: trebuchet ms;" rel="themeData" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link style="font-family: trebuchet ms;" rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:259725012; 	mso-list-type:hybrid; 	mso-list-template-ids:1360173136 -1578048820 804670472 1419295196 -1666290874 -563945388 -1428547174 -1967344396 -2123825806 -1651341854;} @list l0:level1 	{mso-level-number-format:bullet; 	mso-level-text:•; 	mso-level-tab-stop:.5in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:"Times New Roman","serif";} ol 	{margin-bottom:0in;} ul 	{margin-bottom:0in;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;    &lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: trebuchet ms;font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;Entity-Relationship (E-R)&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: trebuchet ms;font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;ul style="font-family: trebuchet ms; text-align: justify;"&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;span style=""&gt;&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt; &lt;/span&gt;&lt;/span&gt;Model data Entity-Relationship (E-R) terdiri dari sekumpulan obyek-obyek, yang disebut dengan entitas dan hubungan yang terjadi diantara obyek-obyek tersebut. &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;span style=""&gt;&lt;/span&gt;Model data E-R terbagi menjadi tiga konsep dasar, yaitu : himpunan entitas, himpunan relationship, dan atribut.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link style="font-family: trebuchet ms;" rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link style="font-family: trebuchet ms;" rel="themeData" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link style="font-family: trebuchet ms;" rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:477377173; 	mso-list-type:hybrid; 	mso-list-template-ids:1625594118 -544593334 -1592216486 1546258684 -343237854 309995932 -1340204406 -1496703990 802443848 102694008;} @list l0:level1 	{mso-level-number-format:bullet; 	mso-level-text:•; 	mso-level-tab-stop:.5in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:"Times New Roman","serif";} ol 	{margin-bottom:0in;} ul 	{margin-bottom:0in;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;  &lt;p style="font-family: trebuchet ms; text-align: justify;" class="MsoNormal"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Entitas (&lt;i&gt;Entity&lt;/i&gt;) dan Himpunan Entitas (&lt;i&gt;Entity Set&lt;/i&gt;)&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="font-family: trebuchet ms;"&gt;  &lt;/div&gt;&lt;ul style="font-family: trebuchet ms; text-align: justify;"&gt;&lt;li&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style=""&gt;&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt; &lt;/span&gt;&lt;/span&gt;Suatu entitas merupakan suatu obyek dasar atau individu yang mewakili sesuatu yang nyata eksistensinya dan dapat dibedakan dari obyek-obyek yang lain.&lt;span style="font-size: 11pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 11pt; line-height: 115%;"&gt;Suatu entitas mempunyai sekumpulan sifat, dan nilai dari beberapa sifat tersebut adalah unik yang dapat mengidentifikasi entitas tersebut&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div style="text-align: justify; font-family: trebuchet ms;"&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link rel="themeData" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span style="font-size: 11pt; line-height: 115%;"&gt;Entitas&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;/span&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link rel="themeData" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 11pt; line-height: 115%;"&gt;Sebagai contoh : setiap mahasiswa pada suatu perguruan tinggi merupakan suatu entitas, dan NIM secara unik dapat menjadi identitas seorang mahasiswa&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link style="font-weight: bold;" rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link style="font-weight: bold;" rel="themeData" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link style="font-weight: bold;" rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 11pt; line-height: 115%; font-weight: bold;"&gt;Atribut dalam E-R&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link rel="themeData" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:366107961; 	mso-list-type:hybrid; 	mso-list-template-ids:1009261276 -882314726 -1835205138 1269601580 677159246 -842615290 -1491312698 -1438884296 574247000 -1877600582;} @list l0:level1 	{mso-level-number-format:bullet; 	mso-level-text:•; 	mso-level-tab-stop:.5in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:"Times New Roman","serif";} @list l0:level2 	{mso-level-start-at:797; 	mso-level-number-format:bullet; 	mso-level-text:–; 	mso-level-tab-stop:1.0in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:"Times New Roman","serif";} ol 	{margin-bottom:0in;} ul 	{margin-bottom:0in;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;  &lt;/div&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in; text-indent: -0.25in; text-align: justify; font-family: trebuchet ms;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style=""&gt;•&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;          &lt;/span&gt;&lt;/span&gt;Dikarakterisasikan dalam beberapa tipe :&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: trebuchet ms;"&gt;  &lt;/div&gt;&lt;p class="MsoNormal" style="margin-left: 1in; text-indent: -0.25in; text-align: justify; font-family: trebuchet ms;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style=""&gt;–&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;        &lt;/span&gt;&lt;/span&gt;Atribut sederhana dan komposit &lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: trebuchet ms;"&gt;  &lt;/div&gt;&lt;p class="MsoNormal" style="margin-left: 1in; text-indent: -0.25in; text-align: justify; font-family: trebuchet ms;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style=""&gt;–&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;        &lt;/span&gt;&lt;/span&gt;Atribut bernilai tunggal dan banyak &lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: trebuchet ms;"&gt;  &lt;/div&gt;&lt;p class="MsoNormal" style="margin-left: 1in; text-indent: -0.25in; text-align: justify; font-family: trebuchet ms;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style=""&gt;–&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;        &lt;/span&gt;&lt;/span&gt;Atribut null&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: trebuchet ms;"&gt;  &lt;/div&gt;&lt;p class="MsoNormal" style="margin-left: 1in; text-indent: -0.25in; text-align: justify; font-family: trebuchet ms;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style=""&gt;–&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;        &lt;/span&gt;&lt;/span&gt;Atribut turunan&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: trebuchet ms;"&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link rel="themeData" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 11pt; line-height: 115%; font-weight: bold;"&gt;Tipe – tipe Kardinalitas Relasi&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 11pt; line-height: 115%; font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 11pt; line-height: 115%; font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link rel="themeData" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:643655111; 	mso-list-type:hybrid; 	mso-list-template-ids:-1268071102 -169544798 1346671880 -297131668 -1374277344 -3511214 609402336 -1392487830 874967184 1933483986;} @list l0:level1 	{mso-level-number-format:bullet; 	mso-level-text:•; 	mso-level-tab-stop:.5in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:"Times New Roman","serif";} ol 	{margin-bottom:0in;} ul 	{margin-bottom:0in;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;  &lt;/div&gt;&lt;p class="MsoNormal" style="margin: 0in 0in 0.0001pt 0.5in; text-indent: -0.25in; line-height: normal; text-align: justify; font-family: trebuchet ms;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style=""&gt;•&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;          &lt;/span&gt;&lt;/span&gt;Satu – satu (One to One)&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: trebuchet ms;"&gt;  &lt;/div&gt;&lt;p class="MsoNormal" style="margin: 0in 0in 0.0001pt 0.5in; text-indent: -0.25in; line-height: normal; text-align: justify; font-family: trebuchet ms;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style=""&gt;•&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;          &lt;/span&gt;&lt;/span&gt;Satu – Banyak (One to Many)&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: trebuchet ms;"&gt;  &lt;/div&gt;&lt;p class="MsoNormal" style="margin: 0in 0in 0.0001pt 0.5in; text-indent: -0.25in; line-height: normal; text-align: justify; font-family: trebuchet ms;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style=""&gt;•&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;          &lt;/span&gt;&lt;/span&gt;Banyak – Satu (Many to One)&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: trebuchet ms;"&gt;  &lt;/div&gt;&lt;p class="MsoNormal" style="margin: 0in 0in 0.0001pt 0.5in; text-indent: -0.25in; line-height: normal; text-align: justify; font-family: trebuchet ms;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style=""&gt;•&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;          &lt;/span&gt;&lt;/span&gt;Banyak – Banyak (Many to Many)&lt;/span&gt;&lt;!--[endif]--&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: trebuchet ms;"&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link rel="themeData" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 11pt; line-height: 115%; font-weight: bold;"&gt;Agregasi&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 11pt; line-height: 115%; font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 11pt; line-height: 115%; font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link rel="themeData" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:643655111; 	mso-list-type:hybrid; 	mso-list-template-ids:-1268071102 -169544798 1346671880 -297131668 -1374277344 -3511214 609402336 -1392487830 874967184 1933483986;} @list l0:level1 	{mso-level-number-format:bullet; 	mso-level-text:•; 	mso-level-tab-stop:.5in; 	mso-level-number-position:left; 	text-indent:-.25in; 	font-family:"Times New Roman","serif";} ol 	{margin-bottom:0in;} ul 	{margin-bottom:0in;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;  &lt;/div&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in; text-indent: -0.25in; text-align: justify; font-family: trebuchet ms;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:85%;"&gt;&lt;span style=""&gt;•&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;      &lt;/span&gt;&lt;/span&gt;Satu keterbatasan dari model E-R adalah tidak mungkin untuk mengekspresikan suatu himpunan relasi yang secara langsung menghubungkan sebuah himpunan entitas dengan sebuah himpunan relasi. Untuk mengatasi hal tersebut, digunakan suatu notasi khusus yang dinamakan dengan agregasi.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-left: 0.5in; text-indent: -0.25in; text-align: justify; font-family: trebuchet ms;"&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link rel="themeData" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;&lt;span style="font-size: 11pt; line-height: 115%; font-family: &amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;        Contoh, relasi antara himpunan entitas mahasiswa dengan himpunan entitas mata kuliah. Terdapat beberapa mata kuliah yang mengandung kegiatan praktikum. Himpunan relasi “Kegiatan” dalam diagram ER berikut ini menunjukkan entitas mahasiswa yang mengikuti kegiatan praktikum, karena sedang mengambil mata kuliah yang ada praktikumnya&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: trebuchet ms;"&gt;  &lt;span style="font-size:85%;"&gt;&lt;span style="font-size: 11pt; line-height: 115%;"&gt;&lt;/span&gt;&lt;/span&gt;  &lt;!--[endif]--&gt;&lt;!--[if !supportLists]--&gt;&lt;!--[endif]--&gt;    &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-2826307312980395791?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/2826307312980395791/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=2826307312980395791' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/2826307312980395791'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/2826307312980395791'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2009/10/desain-data-base-bab-ii.html' title='DESAIN DATA BASE (BAB II)'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-7320320425930515645</id><published>2009-10-16T21:59:00.000-07:00</published><updated>2009-10-16T22:19:11.235-07:00</updated><title type='text'>KONSEP DASAR SISTEM BASIS DATA</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_R0Z0LERPlt8/StlP55MZRwI/AAAAAAAAABU/vvDf9V5a7Vc/s1600-h/komputer.gif"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 205px; height: 166px;" src="http://4.bp.blogspot.com/_R0Z0LERPlt8/StlP55MZRwI/AAAAAAAAABU/vvDf9V5a7Vc/s320/komputer.gif" alt="" id="BLOGGER_PHOTO_ID_5393429884776826626" border="0" /&gt;&lt;/a&gt;Kelompok :&lt;br /&gt;1. Riska W.A               G 231 08 0042&lt;br /&gt;2. Ana Rissanti           G 231 08 0043&lt;br /&gt;3. M. Ady Prasetyo   G 231 08 0041&lt;br /&gt;4. Achmad Fauzi        G 231 08 0022&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link style="font-family: trebuchet ms;" rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link style="font-family: trebuchet ms;" rel="themeData" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link style="font-family: trebuchet ms;" rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:1; 	mso-generic-font-family:roman; 	mso-font-format:other; 	mso-font-pitch:variable; 	mso-font-signature:0 0 0 0 0 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;} @font-face 	{font-family:Verdana; 	panose-1:2 11 6 4 3 5 4 4 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:536871559 0 0 0 415 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} p 	{mso-style-noshow:yes; 	mso-style-priority:99; 	mso-margin-top-alt:auto; 	margin-right:0in; 	mso-margin-bottom-alt:auto; 	margin-left:0in; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman","serif"; 	mso-fareast-font-family:"Times New Roman";} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;A. Pengertian Sistem Basis Data&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Sistem basis data merupakan sistem yang terdiri dari kumpulan file atau tabel yang saling berhubungan dan memungkinkan beberapa pemakai mengakses dan memanipulasinya.Sistem basis data juga bisa d artikan suatu sistem yang menyusun dan mengelola data, sehingga mampu menyediakan informasi yang diperlukan oleh pemakai.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;B. Komponen Sistem Basis Data&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Dalam sistem basis data terdapat beberapa komponen utama yaitu:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;1.Perangkat keras (Hardware)&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Perangkat keras yang biasanya terdapat dalam basis data adalah sistem jaringan(Network),harddisk,disk,dan perangkat komunikasi untuk sistem jaringan&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;2.Sistem Operasi&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Merupakan program yang mengaktifkan sistem komputer, mengendalikan seluruh sumbe daya dalam komputer dan melakukan operasi operasi dasar dlm komputer. Program basis data akan aktif jika sistem operasi yang dikehendaki sesuai.beberapa sistem operasi yang ada saat ini antara lain Ms-DOS,Ms-Windows,UNIX,LINUX, Novel-Netware Dll.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;3.Basis Data&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Merupakan koleksi data yang terorganisasi dengan cara sedemikian rupa sehingga data tesebut mudah di simpan dan di manipulasi,&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;4. Database Management System(DBMS)&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Merupakan kumpulan program aplikasi yang di gunakan untuk membuat dan mengelola basis data. Perangkat lunak yang termasuk DBMS antara lain: Access,MySQL,Oracle,DB2,Informix dan lainya&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;5.Pemakai(Users)&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Pemakai atau User d golongkan dalam beberapa tingkatan yaitu: Programmer Aplikasi,Casual User,Naive User,dan Specialist User&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;6.Administrator Basis Data&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Databse Administrator(DBA) adalah orang yang bertanggung jawab dan bekerja sama dengan analis sistem dan user-user yang lain guna melengkapi berbagai tugas.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;C. Abstraksi Data&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Pandangan terhadap basis data sering disebut sebagai Arsitektur basis data atau Abstraksi basis data yang kemudian terbagi menjadi beberapa level&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;1.Level Fisik(Physical Level)&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Merupakan level abstraksi yang paling rendah menjelaskan secara detail bagaimana data disimpan dalam kondisi sebenarnya atau diorganisasikan secara fisik atau aktual.Pandangan ini bersifat sangat teknis danlebih berorientasi pada mesin, yaitu berkaitan dengan organisasi berkas basis data&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;2.Level Konseptual(Conceptual Level)&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Level ini memberikan gambaran tentang data apa yang sebenarnya perlu disimpan dalam database, serta hubungan atau relasi yang terjadi diantara data dari keseluruhan database.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;3.Level Pandangan Pemakai(View Level)&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Level ini merupakan level abstraksi data tertinggi yaitu pandangan para pemakai basis data sehingga memiliki cara pandang yang berbeda beda tergantung dari data yang dapat di akses pemakai.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;D.Schema&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Schema memberika deskripsi hubungan antar data dalam basis data secara lengkap.Schema menunjukkan pandangan seorang perancang yang digunakan pada lingkup sistem atau organisasi secara keseluruhan.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;1.Subschema&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Merupakan deskripsi terpisah dari atribut,record,dan batasan nilai yang akan digunakan oleh sebuah program aplikasi. Subschema menunjukkan pandangan seorang programmer. Contoh penulisan notasi untuk Schema dan subschema dilakukan dengan format sebagai berikut:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Daftar_Barang_schema: (Kode_Barang Char(10),&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Nama_Barang Char(50),&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Harga_Barang Integer(20),&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Jumlah_Barang Num(4),&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Primary Key (Kode_Barang))&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;2.Instance Schema&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Instance Schema menunjukkan isian nilai-nilai aktual elemen data dalam sebuah relasi yang direpresentasikan dalam bentuk tabel.Contoh penulisan bentuk instance schema dilakukan dengan format berikut:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;E.Bahasa Basis Data (Batabase Language)&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Bahasa basis data adalah suatu cara berinteraksi atau berkomunikasi antara pemakai dengan basis data yang diatur dalam bahasa khusus yang telah ditetapkan.Database Language dibagi menjadi 2 yaitu; Data Definition Language(DDL) dan Data Manipulation Language(DML).&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;1. Data Definition Language(DDL)&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;Merupakan suatu paket bahasa DBMS yang berguna untuk melakukan spesifikasi terhadap skema basis data.Hasil kompilasi perintah DDL adalah kumpulan tabel yang disimpan dalam file khusus yang di sebut kamus data(&lt;i&gt;Data Dictionary)&lt;/i&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;/div&gt;&lt;p style="font-family: trebuchet ms; text-align: justify;"&gt;2. Data Manipulation Language(DML)&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;  &lt;span style="line-height: 115%;font-family:trebuchet ms;font-size:11;"  &gt;DML merupakan suatu paket DBMS yang memperbolehkan pemakai untuk mengakses atau memanipulasi data .DML dapat mengambil informasi yang tersimpan dalam basisdata, menyisipkan informasi baru atau menghapus informasi dari basis data&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-7320320425930515645?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/7320320425930515645/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=7320320425930515645' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/7320320425930515645'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/7320320425930515645'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2009/10/konsep-dasar-sistem-basis-data.html' title='KONSEP DASAR SISTEM BASIS DATA'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_R0Z0LERPlt8/StlP55MZRwI/AAAAAAAAABU/vvDf9V5a7Vc/s72-c/komputer.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-591211502276946657</id><published>2007-02-12T17:47:00.000-08:00</published><updated>2007-02-12T18:56:30.690-08:00</updated><title type='text'>keMbali kE HabiTaT!!!!</title><content type='html'>&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;biNun sangaD kapaN gw baKal baLik sMg!!hiduP taNpa kePAstiaN,terkatung2 dLm keGelapaN,,hLaah..wHy???cz insTruktur maGangKuwh mo koNsuLatasi dL ma pErsoNALia,,yaH taG laeN dan taG bUkaN boUt saLLarY!!yUpz gaJi!!sekaLi lagi GAJI!!gaJi ideNtiK deNgan uaNg!!uaNg ideNtiK deNgaN keKayaAn,,Klo kaYa bs beLi mCm2 mKanAN,,daN maKanan iTu senDiri iDentiK dengan diRikuWh yNg hoBi mKan saNgadH!!daN diRiKuwH ideNtik denGan NduTz!!so,i geT coNcLutioN tHaT "uaNg meNyebabkan keGendUtaN"he2..iTuLah huKum KEkELan nDutz..kaREnA nDut iTu kekaL taG kaN hiLang seLamaNya!!sekaLi nDutz teTap nDuTz"hu2..so sad..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;lanjuTz..mari bercerita tTg rMbuT kribokuwh lagi..&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;gw udH giVe uP daH ngUrusiN niH kRibO,,jalaN teraKhiR yG gW teMpuH aDLh mNabRaKkaN raMbuT gw dGn guNtiNg,,hiKz..buBbYe rMbuT luRus vS kRibo gw...&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;yng terSisa hnYa beBeraPa heLai rMbt saJah,,g ada lg rMbt pNjang gw..&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;saYang juGA seH,,secaRa rMbT gw udH lmyN pNjNg,pLanNinG gw bwT jD moDeL ikLan sHamPo kaNdas suDah,,hikZ..&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;tP gPP..bsK juGa bakal pNjg lg koG!!tP g tw kPn..&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;o iye,gw pTg di LUTUYE LoH,,,he3,,bergaya..&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;ga2..mana kuat gw ke SaLon LutUye,,&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;yG beneR tuh,mbAKnya yg moTong rMbt Gw Tuh keRja di saLon LUTUYE..&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;wee!!!MbAKnya udH profesional bgd bo'!!&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;buah karyanya keRen aBz!!termasuK rMBt gw yG dPtOng ma dY..hi2..narsis..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;ya sudalah...iank jeLaz bNtr lagi gw balik sMg..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;berTemu kuaNd2!!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;uWh,,,mizz u aLL!!!!!!!!!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;o iYe meT vaLentiNe juge ye,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;meT menikMi coKlat!!!klo gw mah kGk bKl ngarasain cKlt.. &lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;buKaN kRn mo diEt,,tP kRna g da yG ngasih..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;cian..&lt;a href="http://3.bp.blogspot.com/_R0Z0LERPlt8/RdEn7mbZMFI/AAAAAAAAAAk/7oMe1dewNc4/s1600-h/images.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5030846163630764114" style="CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_R0Z0LERPlt8/RdEn7mbZMFI/AAAAAAAAAAk/7oMe1dewNc4/s200/images.jpg" border="0" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;a href="http://images.google.co.id/imgres?imgurl=http://www.kompas.co.id/kesehatan/news/senior/gizi/0304/24/gizi-coklat-top2.jpg&amp;imgrefurl=http://www.kompas.co.id/kesehatan/news/senior/gizi/0304/24/gizi.htm&amp;amp;amp;amp;h=218&amp;w=283&amp;amp;sz=4&amp;hl=id&amp;amp;start=26&amp;tbnid=sK075Xi5sRNBwM:&amp;amp;amp;amp;tbnh=88&amp;tbnw=114&amp;amp;prev=/images%3Fq%3Dcoklat%26start%3D20%26ndsp%3D20%26svnum%3D10%26hl%3Did%26cr%3DcountryID%26sa%3DN"&gt;&lt;/a&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-591211502276946657?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/591211502276946657/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=591211502276946657' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/591211502276946657'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/591211502276946657'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/02/kembali-ke-habitat.html' title='keMbali kE HabiTaT!!!!'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_R0Z0LERPlt8/RdEn7mbZMFI/AAAAAAAAAAk/7oMe1dewNc4/s72-c/images.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-3687861023843144565</id><published>2007-02-07T01:55:00.000-08:00</published><updated>2007-02-07T02:00:04.377-08:00</updated><title type='text'>kRiBo!!!!</title><content type='html'>&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;raMbuT saiia kRibo kawaNd!!!&lt;br /&gt;&lt;br /&gt;gR2 isEng paKe caThok_nya mBaK ocHa iaNk terNyaTA kepaNasaN..&lt;br /&gt;daN terNyata caThoKnya uDah k9k noRmaL!!!&lt;br /&gt;oH God...heLp mE!!!!!!!!!!!!!!!!!!!!!!&lt;br /&gt;uDh 3 hR,g blik2 ni,,&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-3687861023843144565?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/3687861023843144565/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=3687861023843144565' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/3687861023843144565'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/3687861023843144565'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/02/kribo.html' title='kRiBo!!!!'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-6814506362463500405</id><published>2007-02-01T21:10:00.000-08:00</published><updated>2007-02-01T21:30:53.261-08:00</updated><title type='text'>gMn*nasiBkuwh????</title><content type='html'>&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;kauand!!!!&lt;img alt="B-)" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/16.gif" /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;sebentar lg gw blik sMg...&lt;img alt="X(" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/14.gif" /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;a liTtLe haPpY,bUt tOo muCh saD..&lt;img alt=":-S" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/17.gif" /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;gMn g?!!!secara gw Tuh dSruH pLg pTgHan feB,diMana pda WakTu terseBut gW loM dPt gaJiiiii!!!!meMaNg beTman!!!!!!!!!!!!(manusia kampret!!.red)&lt;img alt="X(" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/14.gif" /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;mana koSt juGa bYr seBuLaN lagi...aNjriiiiiiiiiiiiiiiiiiiiTTTTTTTTT!!!!!!!!!!!!!!!!!!!!&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;msa' sEtEngAh buLan disiNi cMn kerJa roDi??mLz bgD gT loh!!!!&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;kLo soaL laPoran seH gw udah nyANte,,,kn UdaH Kelar!!(beLagu neY!!)&lt;img alt="B-)" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/16.gif" /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;TaPi secara financiaL,gw ga kuuuuuuuaaaaaatttt!!!!!&lt;img alt="$-)" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/64.gif" /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;meMang &lt;s&gt;anjiiiiiNk!!!! &lt;/s&gt;&lt;img alt=":-$" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/32.gif" /&gt;kuCing neY!!!!&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;caPe deH...&lt;img alt="#:-S" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/18.gif" /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;tapi q harus bertahan!!!chayooo!!!!!!!!!!!&lt;img alt=":D/" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/69.gif" /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-6814506362463500405?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/6814506362463500405/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=6814506362463500405' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/6814506362463500405'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/6814506362463500405'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/02/gmnnasibkuwh.html' title='gMn*nasiBkuwh????'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-5033324093811727953</id><published>2007-01-30T22:35:00.000-08:00</published><updated>2007-01-31T00:04:32.806-08:00</updated><title type='text'>mY*sCraRy*beDrooM...</title><content type='html'>&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="color:#000000;"&gt;ini kisah nyatakuwh,,,&lt;br /&gt;tKp : kmar kost&lt;img alt=":(" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/2.gif" /&gt;&lt;br /&gt;pUkuL : 10 mLm&lt;br /&gt;swSAna uJan diSerTai angin kencaNg..&lt;img alt=":-SS" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/42.gif" /&gt;&lt;br /&gt;hoRrOr!!!!&lt;img alt=":-SS" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/42.gif" /&gt;&lt;br /&gt;&lt;br /&gt;LeTz &lt;s&gt;daNce&lt;/s&gt; read toGeTher!!!&lt;br /&gt;&lt;br /&gt;jadi gini ceritany..mulai tadi malem mbak didi (yg tinggal di kamr sebelah kmrq) pindah kost..&lt;br /&gt;sedih juga seh,,cz g bs nntn TV lage..&lt;img alt=":((" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/20.gif" /&gt;&lt;br /&gt;yg bikin gw lbh sedih lagi sKrg kost gw jadi sepi..&lt;br /&gt;asli sepi bgd!!!&lt;br /&gt;jadi 2 kmar didpn kmr gw kosong,truz ditambh lgi sebelah kmar gw juga kosong.. &lt;img alt=":-S" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/17.gif" /&gt;&lt;br /&gt;lengkap sudah kesendiriankuwh,,,mna suami jauh lagii..hiKz!!jadi pgn pulang!!!!!&lt;br /&gt;lanjut!!!tadi mlm pas gw mo bo2..ada swara2 aneh gitu dari kamar mba sebelah..&lt;br /&gt;pertma seh sok2 an cuek gitu..&lt;img alt="B-)" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/16.gif" /&gt; gw adalah &lt;s&gt;pemberani&lt;/s&gt;!!&lt;br /&gt;pdhal dlm ati takut juga..&lt;img alt=":" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/9.gif" /&gt;&lt;br /&gt;coz swasanya juga serem seh!!ujan deres dengen angin kencangnya seolah bekerjasama untuk membuatku gundah gulana resah gelisah,hlah..&lt;br /&gt;swara aneh pertama :"tok..tok..tok.."(persis kek org ngtok pntu!!)&lt;br /&gt;swara aneh kedua :"tok..tok..tok.."(tpi lebih keras)&lt;br /&gt;trus da swara krusek2 gitu..&lt;br /&gt;pokoknA sereM bgd!!&lt;br /&gt;asli!!!&lt;br /&gt;udah ngebayangin yg ngga2 ja tuh..&lt;br /&gt;terbayang hantunya di film the grudge2,,&lt;/span&gt;&lt;/strong&gt;&lt;a href="http://3.bp.blogspot.com/_R0Z0LERPlt8/RcBEvHAo5LI/AAAAAAAAAAY/fiBrQHZ9Nbs/s1600-h/images+1.jpg"&gt;&lt;strong&gt;&lt;span style="color:#000000;"&gt;&lt;img id="BLOGGER_PHOTO_ID_5026092760271742130" style="CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_R0Z0LERPlt8/RcBEvHAo5LI/AAAAAAAAAAY/fiBrQHZ9Nbs/s200/images+1.jpg" border="0" /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="color:#000000;"&gt;n pilm kuntilanak gitu!!!hikz!!&lt;br /&gt;tapi akirny gw tidur juga..&lt;img alt=":D" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/4.gif" /&gt; &lt;img alt="I-" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/28.gif" /&gt;&lt;br /&gt;gw ga brani kluar kamar n tetep berlindung dbwh selimut..&lt;img alt="8-X" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/59.gif" /&gt;ngantuk seh..&lt;img alt="(:" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/37.gif" /&gt;&lt;br /&gt;sMoga ntAR mLem ga ada swara aneh2 lagi..&lt;br /&gt;amiiiin..&lt;br /&gt;&lt;img alt="[-O&lt;" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/63.gif" /&gt; &lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-5033324093811727953?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/5033324093811727953/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=5033324093811727953' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/5033324093811727953'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/5033324093811727953'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/myscrarybedroom.html' title='mY*sCraRy*beDrooM...'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_R0Z0LERPlt8/RcBEvHAo5LI/AAAAAAAAAAY/fiBrQHZ9Nbs/s72-c/images+1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-1735431813528901900</id><published>2007-01-25T20:35:00.000-08:00</published><updated>2007-01-25T21:40:54.373-08:00</updated><title type='text'>mY*LiTtLe*wiShEs...</title><content type='html'>&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;- &lt;img alt=":" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/9.gif" /&gt;diEt!!!&lt;img alt=":P" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/10.gif" /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;- KtMu aYanK!!!&lt;img alt=":x" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/8.gif" /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;- NaBun9!!!&lt;img alt="$-)" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/64.gif" /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;-&lt;img alt=";;)" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/5.gif" /&gt;&lt;s&gt;sYuTiN9 ma niCHoLaz saPuTra!!!&lt;img alt="=" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/24.gif" /&gt;&lt;/s&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;&lt;img alt="[-O&lt;" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/63.gif" /&gt;WISH ME LUCK!!!!&lt;img alt="[-O&lt;" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons6/63.gif" /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-1735431813528901900?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/1735431813528901900/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=1735431813528901900' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/1735431813528901900'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/1735431813528901900'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/mylittlewish.html' title='mY*LiTtLe*wiShEs...'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-5543342371276386288</id><published>2007-01-24T17:51:00.000-08:00</published><updated>2007-01-29T23:23:34.002-08:00</updated><title type='text'>=&gt;**rYzCaLiciOus**&lt;=</title><content type='html'>&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;aLuW ...&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;SEkEdaR ngiNgeTin saJaH,iaNk poEnya ini bLog teh naMaNa eNeng risKa..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;iaNk oRngNa uCuL n dUduWL sGdH..he3...naRsis teNtunya..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;&lt;span style="font-size:100%;"&gt;begiNi nYaH peNdaPat teMen2 riSka,soK aTuH dibaca..hYuuuukkkk&lt;/span&gt;...&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;span style="color:#ff0000;"&gt;aRisaH&lt;/span&gt;:"meh reti u gmn? seng apik2 sek ya..u cantik , pinter N baik jeleknya : egois , sakkarepe dewe N keras kepala, g konsisten" &lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;span style="color:#ff0000;"&gt;tUpaiii&lt;/span&gt;:"rizka itu baek, cantik, lucu, kadang egois juga, sak kareppe dewe, trenmode cing, trus narziznya ngalahin narziz akuwh...kekekkeke....opo meneh ya???tottaly, ure a good friend girl...."&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;iPeH&lt;/span&gt; :"gadis periang yang pny banyak inovasi baru..tp dlm menghadapi masalah terkesan grusa grusu..em.. kyk ny yg aq perhati'in slama ini kui deh.. that's all&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;diaN&lt;/span&gt; :"ingin tau tapi ngk mau di ketahui"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;span style="color:#ff0000;"&gt;naNa&lt;/span&gt; :"rizka tu pkokke sosok seorang cew yg baekkkkkkkkkkkkkkk bangeeeeeeeeeeeeetttttttzzzzzzzzzzzzz....tp kadang2 nyebeellin"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;span style="color:#ff0000;"&gt;diaz&lt;/span&gt; :"basicly sih baik hati...tapi kadang-kadang kekanak-kanakan sih.."&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;span style="color:#ff0000;"&gt;deDi&lt;/span&gt; :"orangnya baik tapi agak sedikit angkuh"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;span style="color:#ff0000;"&gt;toFa&lt;/span&gt; :"riska itu baik,cantik, pintar,kejelekannya riska itu mudah terhasut,terbukti dengan kenalan dengan Mas Hafi ampir 1 bulan lebih sampai ketemuan di skull,baru tahu deh siapa tu Hafi &lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;span style="color:#ff0000;"&gt;sUpRi&lt;/span&gt; :"km tuh manis, semox, bahenol, bikin greng cowok, pinter tapi km tuh pelit, cuex, n g mo tau yg lain"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;span style="color:#ff0000;"&gt;maRdi&lt;/span&gt; :"fisik : cantik, tapi sok cantik banget,kelakuan = ya kayak cewek cantik biasanya,kalau ada cowok jelek yang ngefans pasti kayak orang di kejar setan,aku nilai sich u radak matre..mungkin nggak matre tapi memikirkan kedepan.... &lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;span style="color:#ff0000;"&gt;niNa&lt;/span&gt; :"dari yg baik dulu ya!kamu itu orgna asik kalo diajak ngomong, katanya co2 kamu itu enak disawang jarene rak mboseni...heheee.......jarene yeye lho!jeleknya:kau itu orang yg aneh!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;span style="color:#ff0000;"&gt;ye2&lt;/span&gt; :"idem ma niNa"kejelekannya:kamu itu suka mbeda2in tmn co,ketok'e kowe nek cedak sama co ada maunya,ga kaya ce yg lain mereka bisa deket ma co tanpa mengharapkan sesuatu,mereka bener2 cmn temenan, trus ga pilih2 gitu lho..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;span style="color:#ff0000;"&gt;ucOk&lt;/span&gt; :"yo kowe imut ngono wae"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#ff0000;"&gt;&lt;strong&gt;saiia bicara soaL faKta...&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#ff0000;"&gt;hu..hu.. ituLah saiia...&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#6600cc;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-5543342371276386288?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/5543342371276386288/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=5543342371276386288' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/5543342371276386288'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/5543342371276386288'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/ryzcalicious.html' title='=&gt;**rYzCaLiciOus**&lt;='/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-985368262384279851</id><published>2007-01-23T17:42:00.000-08:00</published><updated>2007-01-23T18:45:13.902-08:00</updated><title type='text'>sLaMat*pa9i*dUnia..</title><content type='html'>&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;weeee..pa9i2 udH ngeBlog ney,,&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;AbZ g da keRjaaN seY..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;da yG mO ngasiH KrJaaN?yUUUk..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;mNding bErcerita saJa nYoooK..maRi!!!&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;Bnci sGdH dNg buLan Januari!!!huwh!!!!uJaN SeHari2 bO'!!!&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;jaDi gini,kMrn plg ker..dGn hati gemBira laYaknya aBiz dPt kado gw berJaLAn meNuruni tangga kaNtor sucaco meNuju lantai 1,cz tmPt kerjaQ diLantai 3..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;pas mo kLuaR dR piNtu(ya iyalah dR piNtu.mang maRdi,kluar masuK lewaT jaMban..he3)taG Kusangka dan tag kuduga ternyata hujan mengguyur sucaco daN sekiTaRnya..Weee!!!!basaH,basah,basaH,sLuruH TUbUH...aH..aH..aH..maNdi uJan(tebAk lagU!!LAGU SIAPA ItU)&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;LnJuuut!!berHubung ujaN tag kUnjung reda,gw memutuskan bwt nekad!!tekadkan bulatmu!!!halah,,&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;dgn semangat 45,gw lari menuju haLte..wew!!senEngnya uJan2an!!dah lama bgd gw g ujaN2an..sePerti kaTAk y9 terSiram aeR ujAN bo!!baHagianya hatikuwh!!&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;saKing seNengnya,,saMpe2 gw g saDar kLO terNyata di dPn gw aDa kubangan aeR..LanGSUNG tUh,gW aMbiL juRus"meRinganKaN BAdAn"TaPi aPa daya,tenaga ku tag cukup kuat meNopang beraT badaNku y9 riN9an seKali ini..(paKe maJas iRoNi tUh!!)&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;yWdah,aKhrnya keThekliklah sebelah kakiku..hu..huu..LumaYan ndA!!&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;badaN meNggigiL keDinginan,SePaTu bsaH,kaKi nyUt2an!!lengkap sudah kebahagianku..(loH??)&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;PerJuangan masi panJang kauaNd!!gw g berHenti samPe dsiTu..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;taNpa basa-basi gw lgsung nyEgaT aNgkOt(nyegat bsa indonesianya apa ya?maklum gw lama tgl di London,jd ga keBysa pke basa iNd..jadi maap2 ajae ye..)&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;LanjUt,,gw "nyegaT" seraya berkata.."sePi oM?!!"halah..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;siNgkat cerita gw udah nYaMpe diDpn gang kos'an gw..Fyuh!!tapE deH,musti jLn lg!!taPi aq harus bertahan!!gw kluarin juRus "kaTAk meLomPAt di tEngaH uJan y9 deRas sGdh"&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;wee..dLam 1 kedipaN maTA gw udah nYampe di kOst!!!oWh..teNgs God!!!&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;lgsuNg masuP kamAR,gnTi baJU,ngaNgetin diRi dLm dKApaN seLimut aNd tHen sMs suaMikuwh..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;gNi sMsna=&gt;suaMiq,isTrimU ini aBz mnJLma mnJd pUtRi koDoK,(halah..)&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;g dink sMsny diSENSOR!!71+,,&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;HuWh..seBeL..SMs ga dibLz2!!sBg pLmpiasaN keMaraHan,maTa lentik gw mendeteksi keadaan sekitar apakah ada y9 bs diMakan?!!daN kiNi gw mNjelma mNjadi pUtri tazmania deViL!!meLahap apa sajah y9 bs diLahap!!uwh!!sadiiis!!&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;koRban keganasanku soRe itu adaLaH roTi..4 lembar roti tawar pLus selai strowbery berHasiL gw lahaP d9n iNdaH..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;KENYANG???ga juga!!itu mah ga nyenggol usus bo'!!bner2 tazmania dah..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;taPi kuteringat dGn pLanning diet ku,,yasuda,,taHan duLu,,(1 mnit lg baru blh,he3!!)&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;yoWeiz,gw berusaha menYibukkan diri gw ndiri..eNakNya ngapain yak??mandi kah??oH no!!gw masih trauma ma aer!!nehi2 yaw!!&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;te2p ndekem di bwh selimut aja..ta9 lama kMudian hP gw berBunyi..eh ternYata suaMikuwh bLz sMs..nYuruH mndi anD tHen sHoLat..aPa dayA,SbG isTri y9 baeK ku tuRuti peRintah suami...(ngMg2 dR tD suaMi2 mulu,kaPan niKaHnya?!!)ywDh kata"suami"diganti dGn"laKi gw"..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;mNdi,sHLt,tYuz laNjoeT sMsaN mPe jM sTgh 10..tYuz sLeepin9 awaY..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;tYuz banun pa912,,ta9 tawNya masi gRimis gT..yWdaH..bRgkT keRja gerimisan..bRRR!!D9IN ChOY!!&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;peSan dR gW : seDia paYung sBLm uJaN,ta9 ada pYuNg,kLuaRkan juRus kaTak uJan2an!!!&lt;a href="http://3.bp.blogspot.com/_R0Z0LERPlt8/RbbG0nAo5KI/AAAAAAAAAAM/CAJCGyTt8VU/s1600-h/images.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5023421041505526946" style="CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_R0Z0LERPlt8/RbbG0nAo5KI/AAAAAAAAAAM/CAJCGyTt8VU/s200/images.jpg" border="0" /&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;gaMbaR pUtRI koDoK!!!WEW!!So BeaUtiPuL!!cMoN guYz,,kuRAng apa gT loh!!wakakakkaka!!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;tHaT'z aLL kaUand!!&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-985368262384279851?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/985368262384279851/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=985368262384279851' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/985368262384279851'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/985368262384279851'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/slamatpa9idunia.html' title='sLaMat*pa9i*dUnia..'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_R0Z0LERPlt8/RbbG0nAo5KI/AAAAAAAAAAM/CAJCGyTt8VU/s72-c/images.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-3136743952902912283</id><published>2007-01-22T22:50:00.000-08:00</published><updated>2007-01-22T23:29:27.371-08:00</updated><title type='text'>pMp*haRam*tiDaK*iiaH??</title><content type='html'>&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;pMp???makanan aPaKah iTYu???...&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;maRi beraDu arguMen..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;=&gt; kLo 2 oRg saHabat sUka ma 1 oRg yg sama dan salah satunya suka ma oRg itu terLebih daHulu,apakaH sanG saHabAt y9 kLah cepEt iTu disebuT PmP??? &lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;=&gt; kLo 2 oRg saHabat daN saLah saTunYa daRi saHabat iTu sUka ma MntN saHabatnya,aPakah bs diseBut PmP??&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;BnYak fenomena yg terjadi di sekeliling gw..bahkan gw ndiri ngalamin hal serupa,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;daN gw berpendapat hal kY di atas tUh sbNrnya bukanlah bi9 pRobLem..tergantung ma kitanya ndiri..gMn cara kita nyikapinnya..seCara meNuruT gw "ga ada yG saLah dGn CINTA".kita ga bs nyalahin sapa2 klo dah nyangkut soal cinta,,Coz cinta itu dTg g diJemput,pLg ga diaNter(kek jeLangKung aje,,)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;perNah dGr cerita seOrg aNaK y9 ciNta ma iBu knDungnya ndiri ga??&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;kek gTu tuh ga ada iank saLah,,kita g bs nYaLahin dRi qt oR OrG laen..kaRna ciNta adLh aNugerah teriNdaH yg dikasi Tuhan ke kita..(sok tw ne..)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;ada saTu kisah NyaTa iank di aLami aNaG muda..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;bGini ceritanya..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;si A suka ma si B,,daN si B ternyata mNtan saHabatnya ndiri si A..paNGgL aJA C..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;A ma B sKrg udH jadiaN,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;aq mo tw pNdPt klian jika klian jd A,B,and C..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;Kemon guYz..gw pGn tw coMment dR kLian..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;coZ gw berada di saLAh saTunY..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;strong&gt;&lt;span style="font-size:85%;color:#cc33cc;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-3136743952902912283?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/3136743952902912283/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=3136743952902912283' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/3136743952902912283'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/3136743952902912283'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/pmpharamtidakiiah.html' title='pMp*haRam*tiDaK*iiaH??'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-6007208760231659849</id><published>2007-01-18T22:49:00.000-08:00</published><updated>2007-01-18T23:47:59.813-08:00</updated><title type='text'>cOnFuSed,,,,</title><content type='html'>&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;kaUanD2kuwH,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;taukaH kaLian,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;gw Lg biNun sangAd,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;mo gNti waRna baCkgRounD bLog ga bs2,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;beneR2 sinGkoNg di raGiin!!taPe deh,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;meNding maRi kita beRceritaH dGn sUka ria,,ha..ha..ha..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;siaP???!!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;yUk maRi yuUuuk..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;cRita ttg uMur gW yg sDh tag muda lagi..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;ga nyangka di taon 2007 ini gw udh berumur 19 abad kawan,,ck..ck..ck..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;tua bgd ya,,taPi inGd kata pepatah,,"tua2 keladi"makin tua makin ndut sekali,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;actually mkin pikun..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;buKti kePikunan gw iank menggila adlh yaitu ialah..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;kMren hR apa yah lupa,,(tu kan 1 bukti gw pikun,asli!!)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;nah ceritanya berawal dari plg kerja,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;dgn langkah tertatih2 gw telusuri sepanjang jalan kalideres,balik ndiri tuh!tanpa kawan tanpa teman,,secara fu2t udh balik duluan..Dy mah sgja cabut,aturan jam 5 pulang,dy jm 4 uda go home,,Ktnya seh lg mlz gt d,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;Lanjut,,gw plg jam stgh 6 dari kntor..bysanya seh jam 5,tapi krna gw rajin jd ya plg agak sore..he2,,(rajin nge'net grtz mksudna..)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;dgN perasaan berkecamuk (artine opo kui?) gw melangkahkan kaki gw..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;yah cape deh,,singkat cerita gw udah nyampe kost,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;n then berniat bgd bwt lgsung merebahkan diri di kasur..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;tapi taukah kaw apa yg terjadi??!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;kunci kamar kost gw ketinggalan di dlm kmr!!!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;jd ya g bs masup kmr!!hua2!!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;pada mudeng ga?!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;gw ulangi skali lg..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;jd pntu kmr kos gw tuh yg model kunci bulet gitu,jd klo mo ngunci ya tinggal di teken aja,ga pake kunci dulu,,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;nah karena gw ntu dikit duwduwlz and lill bit pikun ya walhasil gw lupa klo kunci nya masih di dlm kmr..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;ga bs mauk deh,,hikz..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;pdhl hari itu gw capek bgd,lagi not delecious body(lg ga enk bdn.red)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;lgkh pertama yg gw lakuin adlh:&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;minta bantuan seluruh penghuni kost tag terkecuali!!smoa gw pgl!termasuk pembantu kost tersayang(wekz!!)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;secara kunci cadangannya yg bawa bpk kos,bpk kos nya ndiri lagi pegi,,n g tau plg jam berApa,pembntunya blg seh mlm bgd..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;yo wes akhirnya gw berusaha dgn sisa tenaga gw yg udah terkuras bwt jalan sehat sucaco-kost PP!!ya mo gmn lg,,mksud hati mo skalian olah raga (olah raga opo ga pnya uang bwt ongkos???)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;dgn berbagai macam,finally gw bs masup juga!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;tengs God..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;penasaran gmn caranya gw bisa masuk??&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;byk kemungkinan..yaitu..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;#lwt jendela(g mgkin bdn segede ini)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;#bo2l pntu (ye,,emg pntu ne2k moyang gw!diomelin yg pnya kost kale)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;#pake pintu ajaibnya doraemon (he2..bisa jadi!!)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;silakan anda2 berpenasaran ria..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;yg jelas gw bs masup kmr n then tdr,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;fYuh,,hari yg melelahkan,,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;"andai kau disampingku.."&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-6007208760231659849?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/6007208760231659849/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=6007208760231659849' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/6007208760231659849'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/6007208760231659849'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/confused.html' title='cOnFuSed,,,,'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116902799860424312</id><published>2007-01-17T01:38:00.000-08:00</published><updated>2007-01-17T01:59:58.670-08:00</updated><title type='text'>meTamoRFosiS*seOran9*RisK4..</title><content type='html'>&lt;div style="width: 120px; text-align: center;"&gt;&lt;embed type="application/x-shockwave-flash" wmode="transparent" src="http://w118.photobucket.com/pbwidget.swf?pbwurl=http://w118.photobucket.com/albums/o117/riskaka/1169027832.pbw" height="120" width="120"&gt;&lt;/embed&gt;&lt;a href="http://photobucket.com" target="_blank"&gt;&lt;img src="http://pic.photobucket.com/getyourown.gif" style="border-width: 0;" vspace="1"&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116902799860424312?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116902799860424312/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116902799860424312' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116902799860424312'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116902799860424312'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/metamorfosisseoran9risk4.html' title='meTamoRFosiS*seOran9*RisK4..'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116885537529562908</id><published>2007-01-15T01:46:00.000-08:00</published><updated>2007-01-15T02:02:55.303-08:00</updated><title type='text'>i'M kaM bEk...</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;span style="font-weight: bold;"&gt;asSaLamUalaikUm kauaNdkuWh..&lt;br /&gt;rYz mo crita lg neH,,&lt;br /&gt; LaMA ta9 berCerita..riNdu sGd,,,&lt;br /&gt;oKEh,,leTz cHeck ThIS oUt..&lt;br /&gt;juduL:NdUt ianK Lg sediH diTingGaL keKasiH..&lt;br /&gt;hari ini gw sedih bgd..&lt;br /&gt;ga tau apakah hesedihan inih bkl bersambung di hari berikutnya..&lt;br /&gt;hopfuli ga'!!tapi kemungkinan besar iYah!!!!&lt;br /&gt;someone wHo loves meH was leave me alone..(ada yang salah dng gRammEr?harap di maklumi..maklum masi sedih..)&lt;br /&gt;yah,,skRg tag ada lagi iank memanggilku "kontainer"&lt;br /&gt;ga ada lagi iank mengolok2,mencaci maki,mencela,menghina,mengejek..dLL..&lt;br /&gt;iNgd saat dy akan menyerahkanku unTuk dijadikan kurban pas idul adha,,&lt;br /&gt;ingd cara dy memanggilku dgn sebutan sapi gelonggong..&lt;br /&gt;oH beiBh..i miz u so much!!!&lt;br /&gt;muach!!!&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116885537529562908?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116885537529562908/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116885537529562908' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116885537529562908'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116885537529562908'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/im-kam-bek.html' title='i&apos;M kaM bEk...'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116859312847411939</id><published>2007-01-11T22:44:00.000-08:00</published><updated>2007-01-12T01:12:09.160-08:00</updated><title type='text'>haRi2kuWh*iaNk*mEnYediHkan</title><content type='html'>&lt;div align="center"&gt;&lt;span style="color:#3366ff;"&gt;&lt;strong&gt;aii kaUaNd,,&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#3366ff;"&gt;&lt;strong&gt;laMa taG beRceRita,riNdu sGdH..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#3366ff;"&gt;&lt;strong&gt;OkEh,maRi berCerita d9n baiK..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#3366ff;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#3366ff;"&gt;&lt;strong&gt;taG tau kNpa aKhiR2 ni saiia jD meLankoLis bgD..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#3366ff;"&gt;&lt;strong&gt;aDakaH huBuNGanYa dGn "seSeoRang"??&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#3366ff;"&gt;&lt;strong&gt;seSeoRAn9 yG heNdak peRgi ke nEgeri eNtaH beraNtah..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#3366ff;"&gt;&lt;strong&gt;uUgH,,seDiH SgDh..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3366ff;"&gt;ya sUda,,KpN2 aJa ceRitanya yaK,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3366ff;"&gt;Lg ga MooD...&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3366ff;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3366ff;"&gt;dUwduuuw...&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116859312847411939?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116859312847411939/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116859312847411939' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116859312847411939'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116859312847411939'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/hari2kuwhiankmenyedihkan.html' title='haRi2kuWh*iaNk*mEnYediHkan'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116849200412202937</id><published>2007-01-10T21:05:00.000-08:00</published><updated>2007-01-10T22:49:17.696-08:00</updated><title type='text'>mEmOriEs**iN**dUfAn,,paRt2</title><content type='html'>&lt;div style="width: 220px; text-align: center;"&gt;&lt;embed type="application/x-shockwave-flash" wmode="transparent" src="http://w118.photobucket.com/pbwidget.swf?pbwurl=http://w118.photobucket.com/albums/o117/riskaka/1168497961.pbw" height="220" width="220"&gt;&lt;/embed&gt;&lt;a href="http://photobucket.com" target="_blank"&gt;&lt;img src="http://pic.photobucket.com/getyourown.gif" style="border-width: 0;" vspace="1"&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116849200412202937?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116849200412202937/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116849200412202937' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116849200412202937'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116849200412202937'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/memoriesindufanpart2.html' title='mEmOriEs**iN**dUfAn,,paRt2'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116842213299185125</id><published>2007-01-10T01:31:00.000-08:00</published><updated>2007-01-10T01:42:13.000-08:00</updated><title type='text'>tHe*daY*aFter*2moRroW..</title><content type='html'>&lt;strong&gt;&lt;font color="#cc33cc"&gt;i Hate fRidaY...&lt;/font&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;font color="#cc33cc"&gt;bNci sGdH haRi jUmaT...&lt;/font&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;font color="#cc33cc"&gt;If iT neVeR be HaPpEn..&lt;/font&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;font color="#cc33cc"&gt;hiKz..&lt;/font&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;font color="#cc33cc"&gt;saiiaNkuWh,,sLmD jLn..&lt;/font&gt;&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116842213299185125?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116842213299185125/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116842213299185125' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116842213299185125'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116842213299185125'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/thedayafter2morrow.html' title='tHe*daY*aFter*2moRroW..'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116841715042250757</id><published>2007-01-09T23:40:00.000-08:00</published><updated>2007-01-11T00:52:02.936-08:00</updated><title type='text'>u*R*iRrePLaCeabLe*bEib,,</title><content type='html'>&lt;embed type="application/x-shockwave-flash"  src="http://stat.radioblogclub.com/radio.blog/skins/mini/player.swf" allowScriptAccess="always" width="180px" height="23px"  bgcolor="#FF66FF"  id="radioblog_player_0"  FlashVars="id=0&amp;filepath=http%3A%2F%2Fwww.nocturnelle.net%2Fradio.blog%2Fsounds%2FBeyonce%20-%20Irreplacable.mp3.rbs&amp;colors=body:#FF66FF;border:#040404;button:#0B0B0B;player_text:#020202;playlist_text:#999999;"&gt;&lt;/embed&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;IrRepLaCeaBLe..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;To the left&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;To the left&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Mmmm.. to the left&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Everything you own in the box to the left&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;In the closet, thats my stuff&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Yes, &lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;if I bought it, then please don't touch (don't touch)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;And keep talking that mess,&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;thats fine&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Could you walk and talk, at the same time?&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;And its my name thats on that jag&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;So go move your bags, let me call you a cab&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Standing in the front yard, telling me&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;How I'm such a fool, talking 'bout&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;How I'll never ever find a man like you&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;You got me twisted&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;You must not know 'bout me&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;You must not know 'bout me&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;I could have another you in a minute&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Matter fact, he'll be here in a minute (baby)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;You must not know 'bout me&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;You must not know 'bout me&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;I can have another you by tomorrow&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;So don't you ever for a second get to thinkin'&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;You're irreplaceable&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;So go ahead and get gone&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Call up that chick, and see if shes home&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Oops I bet you thought, that I didn't know&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;What did you thinkI was putting you out for?&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Because you was untrue&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Rolling her around in the car that I bought you&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Baby, drop them keys&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Hurry up, before your taxi leaves&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Standing in the front yard, telling me&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;How I'm such a fool, talking 'bout&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;How I'll never ever find a man like you&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;since I'm not your everything&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;How about I'll be nothing? nothing at all to you &lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Baby i won't shed a tear for you &lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;I won't lose a wink of sleep&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Cause the truth of the matter is &lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Replacing you is so easY..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116841715042250757?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116841715042250757/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116841715042250757' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116841715042250757'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116841715042250757'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/urirreplaceablebeib.html' title='u*R*iRrePLaCeabLe*bEib,,'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116832307323280176</id><published>2007-01-08T22:05:00.000-08:00</published><updated>2007-01-08T22:12:56.843-08:00</updated><title type='text'>yUuuK,,,</title><content type='html'>&lt;div&gt;&lt;embed src='http://www.myfile.us/ticker/green.swf?NewMessage=   cerita suka suka kuwh..' quality='medium' width='380' height='60' name='led_scroll' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116832307323280176?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116832307323280176/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116832307323280176' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116832307323280176'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116832307323280176'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/yuuuk.html' title='yUuuK,,,'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116824302809737594</id><published>2007-01-07T23:37:00.000-08:00</published><updated>2007-01-07T23:57:08.103-08:00</updated><title type='text'>baNci_FoTo_iN_aCtiOn!!!</title><content type='html'>&lt;div style="width: 250px; text-align: center;"&gt;&lt;embed type="application/x-shockwave-flash" wmode="transparent" src="http://w118.photobucket.com/pbwidget.swf?pbwurl=http://w118.photobucket.com/albums/o117/riskaka/1168242864.pbw" height="250" width="250"&gt;&lt;/embed&gt;&lt;a href="http://photobucket.com" target="_blank"&gt;&lt;img src="http://pic.photobucket.com/getyourown.gif" style="border-width: 0;" vspace="1"&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116824302809737594?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116824302809737594/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116824302809737594' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116824302809737594'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116824302809737594'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/bancifotoinaction.html' title='baNci_FoTo_iN_aCtiOn!!!'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116824165939610836</id><published>2007-01-07T23:19:00.000-08:00</published><updated>2007-01-07T23:34:19.403-08:00</updated><title type='text'>ai_loPh_u_kaWaNd!!!</title><content type='html'>&lt;a href="http://www.123glitter.com" title="Myspace Graphics" target="_blank"&gt;&lt;img src="http://www.123glitter.com/graphics-gallery/thanks/1.gif" border="0"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116824165939610836?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116824165939610836/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116824165939610836' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116824165939610836'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116824165939610836'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/ailophukawand.html' title='ai_loPh_u_kaWaNd!!!'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116823613014592348</id><published>2007-01-07T21:56:00.000-08:00</published><updated>2007-01-07T22:35:37.686-08:00</updated><title type='text'>eUmm,,,</title><content type='html'>&lt;a href="http://www.123glitter.com" title="Myspace Graphics" target="_blank"&gt;&lt;img src="http://www.123glitter.com/graphics-gallery/stupid-quotes/3.jpg" border="0"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116823613014592348?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116823613014592348/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116823613014592348' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116823613014592348'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116823613014592348'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/eumm.html' title='eUmm,,,'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116823570984206734</id><published>2007-01-07T21:34:00.000-08:00</published><updated>2007-01-07T21:55:09.853-08:00</updated><title type='text'>.::bLo9kuWh*iaNk*maLaN9::.</title><content type='html'>&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;taG aDa sM9D Lgee tUk cRitaH,,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;BloGkuw tLah teRnoDai!!!(haLah,,)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;wHy???!!coZ ada oR9 taG diUndang iaNk baCa2 bLog saiia,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;daN sKr9 diRiKuw taG bS BeREkSpREsi LwT bLog..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;hiKz,,,T-T..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;bLo9KuWh iaNk MaLanK..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116823570984206734?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116823570984206734/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116823570984206734' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116823570984206734'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116823570984206734'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/blo9kuwhiankmalan9.html' title='.::bLo9kuWh*iaNk*maLaN9::.'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116823251512187952</id><published>2007-01-07T20:59:00.000-08:00</published><updated>2007-01-07T21:01:55.130-08:00</updated><title type='text'></title><content type='html'>&lt;a href="http://www.123glitter.com" title="Myspace Graphics" target="_blank"&gt;&lt;img src="http://www.123glitter.com/graphics-gallery/about-me/1.gif" border="0"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116823251512187952?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116823251512187952/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116823251512187952' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116823251512187952'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116823251512187952'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/myspace-graphics.html' title=''/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116779555200151601</id><published>2007-01-02T19:13:00.000-08:00</published><updated>2007-01-02T19:39:12.056-08:00</updated><title type='text'>mEmOriEs**iN**dUfAn,,</title><content type='html'>&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#ff0000;"&gt;fRieNd 4eVeR,,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#ff0000;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3366ff;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3366ff;"&gt;bEriKuT adLh fOto terSanGka kHasuS kEmaTian seJumLah baDut di dUfaN..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3366ff;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3366ff;"&gt;&lt;a href="http://photos1.blogger.com/x/blogger/3595/4176/1600/884678/DSC00328.jpg"&gt;&lt;img style="WIDTH: 188px; CURSOR: hand; HEIGHT: 152px" height="190" alt="" src="http://photos1.blogger.com/x/blogger/3595/4176/320/340963/DSC00328.jpg" width="266" border="0" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3366ff;"&gt;si jaLang berSama ke2 seLirnya..(jalang=jablay lanang..ha3)terbUkTi daRi tUlisaN diKAos_nYA.."FOR RENT"dan tanda panaH mengaRAH kE SuAtU arAh,,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#3366ff;"&gt;wakakakakaka...&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116779555200151601?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116779555200151601/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116779555200151601' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116779555200151601'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116779555200151601'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/memoriesindufan.html' title='mEmOriEs**iN**dUfAn,,'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116772753125500560</id><published>2007-01-02T00:13:00.000-08:00</published><updated>2007-01-02T00:45:31.286-08:00</updated><title type='text'>nEw_Year_NigHT**sO_sO**ajaH,,</title><content type='html'>&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;ai kaWan!!!fiRst oF aLL,i wiLL saY **HAppY NeW YeAr**&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;taOn baRuan pD kmNA NEh???&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;paSti pd sEru2-an yaK???&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;mY neW yeAr niGht was so-sO..(BiasA waE)&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;a Lill biT dissaPoiNted,,coZ tag SEperTi Yg teLah saiia reNcaNakan..&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;tadiNya seH PGn keAncoL,,SECara disoNo raMe b9d!!ada onoband,(basa indonesianya adaband),pUrpLe(basa inDonesianYa ungu)eTc(boso jowone lan liyo2ne)&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;berHubung jaLan MeNuju aNcOL padaT meRayAP..so gag jaDi deh..fiNaly gw keMonas ajaH..&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;buJug,terNyata sama aja RamE!!BUt y9 biKin peNoNton keCewa aDLh yaiTu....ga9 ada Live peRfoRmace!!gag ada bAnd2 giTu,,&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;yG ada cMn pesTa kEmbaNg apI gT..&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;yaH,,SInGKOng diragiiN!!!tapE deH..&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;daSar pEmKot jakARta tuH KEre!!&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;bUt,it's oKeh...&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;anYwaY,,pasTi kliaN p9n tw ma saPa gw ngRayaiN mLm taoN bR??YA KAN???&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;JwbnNya adaLah.....&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;mo tAUuuu ajaH!!!!&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;(hLah to nDut,pelit ik!!ma temen juga!!kasi tw donk ma sapa????ma nicholas yak???!!)&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;tadinya seh mo ama ayank nicho,buT sudenli tanpa permisi dy ada jadwal syuting gituh..ya uda akhirnya gw ma teMen meRangkap musUh gw..dY adLh bitink,,yng diduga sebagai tersangka utama kasus meninggalnya alda risma..halah!!!penjahat klas ka2p..Penjahat adalah nama tengahnya!!nama depanya adlh r_win!!&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;wes,,gag usah berpikiran macem2!!sak macem wae...&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;bagi peri gosip farah and ana..gw mo klarifikasi ttg r_win!!&lt;span style="color:#ff0000;"&gt;&lt;strong&gt;we just a friend,key&lt;/strong&gt;?!!&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;uda dulu ya kawan,,,ryz_dut lg gag enak bdn..may be enter the win(masuk angin)&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;oh yo,kmRn gw sHolat iDuL aDha di DePok bRg2 ma FahMi bo'..&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;i caN't iMagiNe,,hOw hE dO tHat..posisi dY pas dU2k diaNtara 2 sujud gmn Yak??wakakakaka!!&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;secara dY tuh bi9 siZE gT loH!!sajadahnya berapa?&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;hi.hi..hi..(ketawa ala kuntilanak)&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;noTice:sMg leBih kaYa dari Jkt!!live seMarang!!!(hidup sEmarang!!!halah)&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#cc33cc;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116772753125500560?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116772753125500560/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116772753125500560' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116772753125500560'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116772753125500560'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2007/01/newyearnightsosoajah.html' title='nEw_Year_NigHT**sO_sO**ajaH,,'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116712512879461863</id><published>2006-12-26T01:05:00.000-08:00</published><updated>2006-12-26T01:25:28.833-08:00</updated><title type='text'>deJaVu..</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;seniN soRe gW nnTon..taDinya seH mO nToN yg jM 3an..taPi apa mO dikata..nasi telah mnjadi dubur..(bu2r kale..)gr2 ujan yg tag kunjung berhenti..&lt;br /&gt;yauda akhirnya gw nnton yg jm stgh 6..&lt;br /&gt;dR koSt uda menggebu-gebu tuh,,secara hari senin gt loh!!kan bs nomat..&lt;br /&gt;eh gag tw_nya nyampe di 21-nya DM(Daan Mogot)gag ada acara nomat2an!!anjrit!!!&lt;br /&gt;yg ada malah harganya naek seribu...dasar "batman"!!!(basa indonesianya manusia kampret!!he3..)&lt;br /&gt;yo weis,akhrnya gw beli tiket and then nnton deh!!&lt;br /&gt;bujug!!yg ngntri beli tiket bnyk mmpus!!mgkin pada mikir bs nomat kalee ya..&lt;br /&gt;wakakakaka!!!ketipu lu2 pade!!!gw jg!!&lt;br /&gt;tapi gag pa2..filmnya bagus kog..&lt;br /&gt;keren!!!&lt;br /&gt;tapi khayal juga seh..&lt;br /&gt;masa' bs mutar wktu gitu..kek sinetron lorong waktu aja..&lt;br /&gt;klo ga kek doraemon dgn mesin waktunya..&lt;br /&gt;but oferol bgs kog!!!gag nyesel deh..&lt;br /&gt;&lt;br /&gt;oK,,ThaT's aLL fOLks..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116712512879461863?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116712512879461863/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116712512879461863' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116712512879461863'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116712512879461863'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/12/dejavu.html' title='deJaVu..'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116711557285697214</id><published>2006-12-25T19:30:00.000-08:00</published><updated>2006-12-25T22:46:13.173-08:00</updated><title type='text'>oNe_caSe_cLosEd,,</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;&lt;span style="color: rgb(255, 102, 0);"&gt;ai all..&lt;br /&gt;uda kgn ney pgn ng_bLo9 lg,,&lt;br /&gt;crita bout my weekend di depok yuuuk!!&lt;br /&gt;liburankuwh sgd tragis,,why??cz gag jd ke WS,,yg ada mlah gw ampir di hipnotis ma" ibu2 peminta uang seribu perak"yg disingkat "IPUSP",IPUSP disempen dulu.Soalnya ntar dy memegang peran yg sgd penting dlm post kale ini..&lt;br /&gt;Lanjut,weekend kmren ada crita sedihnya and crita senengnya..&lt;br /&gt;senengnya adlh....(jeng..jeng..jeng..)gw uda baekan ma pembokat kost gw,,hore!!!&lt;br /&gt;plok..plok..plok..!!!!(suara tepuk tgn tuh!!bkn ngaplok nymuk!!catet!)&lt;br /&gt;Jd gni kronologis critanya..&lt;br /&gt;sabtu pagi pas gw abz mndi,ada 2 ekor pembantu(rksah protes) lg nyuci di sblh kmr mndi.Yg satu namanya namanya bi salma(baek ati,suka menolong,n latah bgd) yg satu lg namanya bi andra(pmnbtu galak,judes,anjrot,yg kmren gw critain ntu).2 org pmbokat ntu lg ngumpi gt deh..Trus gw kan lewat,,(mo balik ke kamar)n tag sengaja denger pembiraan mrka gitu..&lt;br /&gt;Dan ternyata mreka tuh lg ngomongin ttg mba ririn(anak kost baru,masi sebulanan gt de..)Si bi andra ngomel2 coz mba ririn lwt di atasnya(tangga) g pake permisi or say anything..lgsg lwt aja gt..ya emg seh gag sopan.Secara yg di bawahnya kan orang tua,,&lt;br /&gt;Nah gw pura2 ikut nimbrung gt..&lt;br /&gt;gw:"ngomongin apaan seh bi?"&lt;br /&gt;bi andra:"itu si ririn,lwt di atas g permisi2 dulu,emang bisu?!"&lt;br /&gt;gw:(cm senyum dgn senyuman maniz gw..he3..narsisna)&lt;br /&gt;bi andra masi ngomel2 gt,,truz dy ngomong gini:"saya tu g suka ma ri2n,bener!!dy klo pacarnya kesini,lgsung dimasukkin kmr!"&lt;br /&gt;gw:"masak bi?"&lt;br /&gt;dy:"org saya liat sendiri kog!!ga cm sekali.Makanya pas ada temen riska dateng ke kost,saya sengaja ngmong klo ada org di luar,klo g ada org dikamar ntu mksdnya nyindir si ri2n!!&lt;br /&gt;gw:"ow..."&lt;br /&gt;yah bgus lah klo mksudnya nyindir ri2n,secara gw jg gag pernah bw temen co msk kmr..Ya emang seh kamarnya mba ririn kan deket tmpt jemuran,,tmpt yg bwt du2k2 itu..&lt;br /&gt;Fuih...akhirnya gw baekan ma mak lampir itu..&lt;br /&gt;kadang dy tuh asyik diajak ngomong,baek...tapi kdg juga nyebelin bgd!!galak,judes,de el el..but yg jls &lt;span style="color: rgb(0, 0, 0);"&gt;one case closed&lt;/span&gt; lah..tengs God..&lt;br /&gt;&lt;br /&gt;okeh,sekarang kita menuju ke depok...&lt;br /&gt;sabtu pagi yg cerah,&lt;br /&gt;(secerah hatikuwh yg abiz dgr pnjlsan dr si bi2 anjrit..)&lt;br /&gt;gw brgkt dari kost jam 11an..truz mnuju terminal kalideres,n then naek bus mayasari bhakti AC 81..Setelah melewati badai yg menghadang dan kutang2 yg berterbangan(lho?)finali gw nyampe di depok..&lt;br /&gt;singkat cerita gw asyik2 aja 3 hr di depok,maen bsket,shopping,jln2 and tag lupa hunting co ckp!!he3..&lt;br /&gt;tapi sayangnya ga smpet mmpir di WS,,saiia sedih sekalee,,&lt;br /&gt;senin siang jm 11an gw plg,pengenya seh mmpir di WS..ternyata eh ternyata WS_ny masi tu2p..yauda g jadi deh..b'hubung masi pns bgd,i tried to cooling my selp(halah,,artine opo jal?#$%^*)truz gw masup ke mal depok..Dan disinilah aksi peng"hipnotis"an terjadi..&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;tokoh utama protagonis:"saiia"&lt;/span&gt;&lt;br /&gt; &lt;span style="color: rgb(255, 0, 0);"&gt;tokoh utama antagonis aliaz tersangka peng_hipnotis_an:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;"ibu2 peminta uang seribu perak"yg disingkat "IPUSP"&lt;br /&gt;saiia:look2(liat2) around fashoin product&lt;br /&gt;IPUSP:(nyamperin gw seraya megang tngan gw,menatap tajam mata lentik gw,he2..)dan berkata "mbak2,punya uang seribu gak mbak?"&lt;br /&gt;asli gw kget bgd!!pas gw ngeliat matanya gw lgsung pusing man!!asli!!gw lgsung inget ma pesen ka2 gw=&gt;riska ati2 lho,klo mo ke ITC,Mal depok n Ramayna..kmren temenku ada yg dihipnotis!diambil dompet ma HPnya&lt;=&lt;br /&gt;ya untung aja gw lgsung inget ma psen ka2 gw,klo ga gw uda kerampokan kale..&lt;br /&gt;Lanjut.. Truz gw jwb tapi ga ngliatin matanya:"maaf bu' ga ada seribuan"&lt;br /&gt;gw lgsung menuju ke tempat penitipan barang ngmbil tas gw..eh ternyata IPUSP itu ngikutin gw!!!&lt;br /&gt;truz gw ngmg lg tanpa ngliat matanya:"maaf bu ga ada!!"&lt;br /&gt;dy:(megang tgn gw smbl berusaha biar gw natap mata dy)saya tukerin deh mbak"&lt;br /&gt;gw:(uda emosi campur takut juga tuh)"ga ada!!"&lt;br /&gt;gw lgsung cabut aja dari situ,,lgsung ke terminal secara terminal ma tu mal adep2an gt..&lt;br /&gt;yauda,bersyukur bgd...g terjadi apa2 ma dirikuwh..&lt;br /&gt;bodoh bgd gt loh klo smpe ada org yg ketipu truz ngasi duit ma ibu2 itu..secara dandanannya aja kek ibu2 gaul gt..gag mungkinlah uang 1000 aja g punya..&lt;br /&gt;gw masi inget bgd ma mata si IPUSP ntu!!&lt;br /&gt;matanya tuh horor bgd deh!!!asli!!&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;div style="text-align: left;"&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;noTicE:mo ngHipnotis gw???gmpg!!cariin nicholas saputra!!gw bkl terhipnotis dah!!asli!!&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;&lt;/span&gt;&lt;/div&gt; &lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;div style="text-align: left;"&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;&lt;/span&gt;&lt;br /&gt; &lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;&lt;/span&gt;&lt;/div&gt; &lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;&lt;span style="color: rgb(255, 102, 0);"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116711557285697214?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116711557285697214/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116711557285697214' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116711557285697214'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116711557285697214'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/12/onecaseclosed.html' title='oNe_caSe_cLosEd,,'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116677566193082959</id><published>2006-12-21T22:39:00.000-08:00</published><updated>2006-12-22T00:21:02.006-08:00</updated><title type='text'>dePoK_i'M_cOmiN9!!!!!!!!!!</title><content type='html'>&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;cihuy,,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#ff0000;"&gt;libur tLah tiBA,,LIbUr tLah tiBa..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#ff0000;"&gt;hatikUw gMbira...&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;(lagUnya tasYa tuh!!)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;maNtapH!!!LibUr 3 haRi eUy!!..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;eNakNya kMna yak??ada maSuKan???&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;ya suTra laH..gW gag bTuh pNdPt lu..(sOngONg bGd seH!!)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;Cz gW uda ada sChdLe,,mo ke rMh kaKa sePupu gW..(sePuPu basa iNdoNesia_nya satu paHa,haLah..)rMhnya di dePok!!ciAmiK DAh..bs nGecengiN anaK UI (sGkTn dR Universitas Idiot,huZ!!bs diGebUgin anaK UI lu..he3 ;p)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;HoPfuli bs jd nais holidai dh..amiN..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;secara di dePOk tu eNak bgd!!asLi!!kotAnya siMple!!mo ke mall??gMpg..t9L piLih..maLL disono jeJer2 giTu,,gag kek di JkTa,jaRak malL 1 ke laennya jauh..klo di depok mah deKet..Jd maLL gedE2 tuH keK pd saingan gt..adeP2an gT..ada 6an maLL gede yG beDkTaN..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;tuJuan pertaMa gw ke dEpoK Tag laen dan taG bukan hanYa unTuk ngiCipin "WS"cabang depok..(WS ki pakanan opo nduT??)ws adalah sejenis ubi yg diragiin!!!=TAPE DEH!!!...&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;ya eLah gini hari gag tw WS??tinggal dipLanet mana seH lu??WS ntu kePanjangan dR "waroeng sate"loh kog sate??"waroeng steak"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;i really2 wonderpul!!kog ws bs smpe depok yak??secara yg gw tw 'ws' tuh cm ada dsmg..ya bginilah daMpak orG Yg gag p'nah bc korAn,,jD gag tw duNia luar..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;baCk 2 maiN topEk..jadi si WS ntu terletak di deket(sampingnya) mall margonda city,,dan ternyata di depan WS ntu ada OBONK!!!tau obonk g lu??kl g tw sama!!halah!!obonk tuh juga warung steak gt,,di smg juga ada,klo g salah dearah gajah mada gt,,klo ga salah lho..Ck,,ck,,ck,,gag nyangka tuh waRung2 di paketin ke depok hanYa untuk eNeng risKa tercinTAh(halah!!)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;rencana_nya seh mo nyoba yg diWS ajah..doUbLe cHickeN sTeak n cHocoLate miLk sHake!!ehm..yuMmy..(tes..tes..ilere wes netes2)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;sapA mO iKut mBa' risKA???TAk TrAktiR wes..hehehehehehe.. :p&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;oH yo,,kalian tw guSur ga?yg di Lupus ntu tuh!!nama asLinya "faHmi boo"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;terNyata eH ternyata dY tetangganya mBa'ku ik..(iHir!!tetangganya aRtis bO'!!)he3,,norak bgd ik..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;kan 2 minggu yg lalu gw maen kRmH mba'ku ntuh,,tRuz anaKnya fahmi lewat depan rumah mba'q.pEmbantunya mba'ku bLg "itu lho mbak anaknya artis,si gusur2 itu".Gw:oooowww..(dGn nada sOk2an cuEk gt pdHL dLm ati faHmi bo_nya mana yak??gw kan mo bndingin ndut mana gw ma dy??he2..)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;tRuz saking peNasaRan_nya(penasar kata dasarnya nasar),gw nanya ma pmbntu ka2 gw(pmbntu lg,,,jd ingt pmbntu kost'an gw,halah!!)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;gw nanya"rumahnya fahmi mana seh mbak?"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;dy:"deket og mbak,tuh blkg rmh..org fahmi aja seRing nongkrong di lap.situ kog mbak(sambil nuding ke lap.bsket dpn rmh ka2 gw)(-&gt;nuding gag bole pake jari tgh!!.red)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;gw cm bLg "ow...mana?skRg kog ga nongkRong??"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;Si pembntu jwb:"wah ga tw mbak"(mgkin dlm ati dy blg meneketehe' emg gw bininye??)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;taG lama kemudian si pmbntu ka2 gw manggil2 gw..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;dY:"mbak riska..mbak riska.."&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;gw:(dLm ati...keknya da yg mggil gw,mo minta tnda tgn kli ya??ato ada kebakaran?kog mggilnya gw?mang gw blangwir??)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;dY:"mbak riska!!!cepet sini!!!"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;gw:"apaan?"(sok mles2an gt,,secara gw lg menikmati klezatan kue gt loh)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;dy:"cepetan sini,katanya mo liat fahmi bo?"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;gw:(lgsung ngibrit kluar rumah gt,kek mo ktm pacar yg telah terpisahkan selama bertaon2 gt..)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;ck..ck..ck..ternyata bener si gusur,,badannya gede bgd!!kek semut!!loh kog semut??gajah kaleee..he3..gag bole nghina orng ntr kena azab lu!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;kek gw,kena azab tubuh membengkak bgai di gelonggong!!(sadiiis!!)he3..ntu mah gr2 gw mkn teruuuuzzzzz!!!wakakaka!! ;)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;bnyk hal yg gw dPt aftEr I MeT wiTh guSur,antara laen:&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;-di atas langit masi ada lgt!-&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;*aRtinya:walopun gw nDut,gUsur masi lBh nDut*he3.. ;p&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;-pEpaTah woNk aYu iTuke wOng gNteng,wong eLek inTuk'e woNk eLek tu salah!-&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;*buKtinya isTrinya guSur cNtiK,LgSing,kek aRab,,sEcara gusur ntu,,ya tw ndiri kan*;p&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;-srigala berbulu domBA-&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;*ArtiNya aRtis Klo dRmH biasa aja Tuh*(halaH g nYmbung)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;n dE laSt bUt nOt leasT..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;-BI9 is bEaUtYFuL-&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;*ArtiNya riSka iMuT seKaLe!!!!*&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;(naRsis bgD!!!!.red)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;doakan gW yes??sMga sLmt smPe 7an,bs mniKmti sTeak "ws"terCinTAH&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;(Hopfuli rasanya ga beda jauh ma yg diSmg)sukur2 dPt geBetan co ckep anaK UI tRUS diTrakTir di WS(khayalan TgkT Tinggi)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt; yasuda,,,bwt klian semoa dimana pun kaw berada..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;hev a nais holiday ajah,,bwt yg nasrani met ngrayain natal ajah,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;duuuduuuuuww buByee...&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;see u on de nExt post...&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#660000;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116677566193082959?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116677566193082959/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116677566193082959' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116677566193082959'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116677566193082959'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/12/depokimcomin9.html' title='dePoK_i&apos;M_cOmiN9!!!!!!!!!!'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116676259606785022</id><published>2006-12-21T18:47:00.001-08:00</published><updated>2006-12-21T21:41:18.140-08:00</updated><title type='text'>==&gt;**moTheR's_daY**&lt;==</title><content type='html'>&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#ff99ff;"&gt;I LuV u MoM..&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#ff99ff;"&gt;&lt;/span&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;span style="font-size:130%;color:#3333ff;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;....**bangun pagi-pagi ke sekolah kuliah ke kantor kita pegi,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;tapi oH mY gOd,tRaFfic jaM LAgi,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;bUt u doN't haVe tO woRRy..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;ada dagiEnKZ daN deDi,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;y9 sLalu meneMani..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;di PUTUS!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;AyO main Y9 ba9us**...&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;nTu dia jiNgle^nya PUtUs!!&lt;span style="color:#33ff33;"&gt;(putus apaan seH nDuT??)&lt;/span&gt;ya elah,,gini ney org yg kelamaan diKamaR mandi,,jadi gag pernah deNGerin radiO..(ngMg2,lm dikmr2 mndi n9APAin yaK??***seNsor!!)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;iya,jadi PUTUS tuh acaRa di Prambors saben pagi,,peNyiarnya ari dagienkz anD desta..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#33ff33;"&gt;(oow,,klo ntu mah gw juga tau nDut!!so wHat???)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;jadi giNi,tiap pa9i abiz mNdi pkE SABuN waNgi dan tag luPa gosoK gigi tentunya..gW lgsuNG Mangkal di 102.20 FM pRaMboRs rasisonia!!!(halaH pRomosi)tw kNpa??karena,becoz oF,amARgo..peNyiaR pUtus tuH gOkiL MAmPus!!edaN BGD!!!bS oLahRAga peRuT daH..SEcarA nGaKak mULu,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;tapI tadi pa9i gw denGerin pUtus G ngaKak liKE yuSuaLLi..yG ada malAH terHaru..cZ tD paGi toPiK Yg diaNgkaT adL yaiTu iaLaaaaaHHHH(JENG..JENG..JENG..)BoUt mOtHER's daY..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;jd ingT ma nYokAp..oH moM..I Luv u N i miSS u sO muCh..(so swEEt..)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;tw rEaksi apa yg peRtama muncuL dLm benaK gw afTer i Knew tHaT toDay is mOtHER'S daY???gW lgsung kaLap nyAri HaPe gw???(bWt apa??mo lu juaL bWt ngasi kado nyoKap?aTo lu mO teLp tRus nGmg pnJg lebaR bHwa lu sYg ma emaK Lu??)ye...gag seMewaH iTu kaLe..gW kan MasI AnaK2..(soK IMUT LU!!)emanG!!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;he2,,siMpLE bUt FuLL Of LuV..(HALAH)gw cm sms nyoKap,secara pLs gW jg sekaRat..maKluM anK koSt..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;so gW smS ajaH..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;SmS Gw:"&lt;/span&gt;&lt;span style="color:#3333ff;"&gt;Pagi Mi..Slmat haRi iBu ya iBukuWh..maapiN risKa kLo ada saLah,i love U mOm"..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;asLi pas gW nuLis sMs ntu aiR maTa gw ndleweR(ndLeweR??mang umBeL??)gag tw napA,mGkn tErharu kale ya(gR2 pLsanya berKUrang??)he2..ga lah..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;gag lama kmudiaN..Hp Gw BerGetar..uH,,gEtaranNya ga KuaTT!!(HALAH)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;Eh TERnYAta nYokap Blz sMs gW..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;SmS nYokap:"&lt;/span&gt;&lt;span style="color:#3366ff;"&gt;i love u too syng,makasih ya,doain ibu sllu sht ya,amin ya robal alamin.."&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;SuMpAh,sekeTika kek da yg nyiram aer di muka gw..sTlh gw sadari ternyata ntu aer mata gw ndiri..(cengeng bgd seh lo ndut!!)ga tw napa gw bs netesin aer mata..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;oh ibukuwh..aq kgn padamuwh..i loph u foreva dah...&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;tRuz gw ngLnjutin mY habit..yaituu dengerin "putus" lagi.Dan ternyata di putus juga ada crita mengharukan gitu..ya ampyun..cRy me a river daH!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;pGn tw ceritanya gag?pengen tw aja deh!!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;gini,kan ada kaula muda yg telP ke Prambors gt..Mo nGucapin Met haRi ibu bwt nyOkapnya(ya iyalah bwt nyokapnya,msk bwt pemBokatnya)jD inget pemBokat di koSt gW!!oH sHit!!nevEr minD dah..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;y9 CRiTa tuh namanya tIka anak sMg..secara pUtus kan juga disiarin lgsung di 6 kota,jKrta bnDung,smG,sRby,mEdan,makasaR n palembang.Bgi koTA laen yg tidak terjamah radio PramBors,ciaN deH lo!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;eNiwaYs..dY crita klo dy tuh uda pisah ma nyokapnya sLm 10thn,,pas dy masi Tk..so sad kan..oRtu dY Cerai,,n skRg dy tinggal ma bokap n nyokap tirinya..dulu dy pernah surat2an gt ma nyokap kandungnya,,tp sekrg uda ga pernah lg,,cZ nyokap tirinya ga ngebolehin..secara si nyokap tirinya takut kale ye ntar si nyokap ma bokapnya ntu rujuk lagi..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;cian bgd kn...ktnya seh si nyokap kandungnya ntu skg tgl didaerah jkt selatan..tp tika gag tw alamat lgkapnya..jd ya,,gag bs ktmu or sekedar surat2n gt..cian,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;makanya bWt kLian2 yg masi pNya nyokap,ibu.mami.mama,bunda,emak,enyak,mother apapun itu,,sayangilah!!!selagi beliau ada disamping lo..qt gag bkl tw kapan ibu bkl ninggalin kita ato mlh kita dulu yg bkl ninggalin ibu kita..selamanya..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;ga ada yg bs ngalahin kasi sayang seorang ibu..walopun yg skrg uda pnya pcr..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;mgkn lu ngrasa bhwa pcr lu lbh syg ma lu,lbh perhatian ma lu drpd nyokap lu?!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;hei wake up!!lu gag ingt gmn seorang ibu mempertaruhkan nyawanya saat nglairin elu,,betapa beratnya beban yg dy tanggung saat lu ada di kandungan..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;sadar dunk!!gw,elu,dy,mereka,,mgkin blm bs ngebalas semua jasa2 seorang ibu,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;gw sering mikir,,kapan gw bs nyenengin nyokap gw,kpn gw bs bwt bangga nykp gw..yg ada,gw selalu ngerepotin nyokap..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;gw gag tw apa yg terjadi bila musti idup tanpa nyokap..gw sayang bgd ma nyokap..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;di mata gw nyokap adlh orang yg paling berharga dlm idup gw..dy adlh teman plg setia in my life,,u're the best Mom!!..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;ibu gw adlh sosok yg sgd gw kagumi..gmn cara dy ndidik anak2nya,cari dy berjuang bwt nyari uang demi sesuap nasi n sekolah anak2nya..Gw bangga pnya nyokap kek nyokap gw..yg ga pernah nyerah ma keadaan..secara dy ndiri yang jadi nyokap skaligus bokap bwt kluarga gw..my dad was die..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;nyokap selalu ngajarin ke anak2nya bwt tegar ngadepin idup,,palagi saat kita ditinggalin ma org yg paling kita sayangi sekalipun.."Ayah"..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;ayah gw uda duluan dipanggil ma Tuhan dan itu bukan berarti akhir dari segalanya..nyokap gw blg ma gw n kaka ade gw..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;"ibu bs jadi ibu sekaligus bapak bwt kalian"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;dan gw yakin she can do that..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;ibu gw nglakuin apa aja bwt nyenengin ke3 anaknya..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;dan gw g tw kpn bs nyenengin nyokap gw..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;but i promise,,,i will...&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;nyokap gw orgnya sabar,,tapi gw tw sabar itu ada batasnya..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;gw inget bgd pas gw masi SD klas 2 an lah..gw susah bgd yg namanya disuruh makan(klo sekarang mah kgk usah disuruh uda mkn teruuuz)..Gini ceritanya,gw ma kaka gw kn plg skul.Trus disuruh makan ma nyokap..diambilin piringnya,sendoknya,nasinya,lauknya..semuanya dah..lengkap..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;dan tau apa balesan gw ma kaka gw??gag mo mkn!!!asli!!g tw knp dl gw geblek bgd,secara smoanya uda siap gt loh.Tinggal mkn apa susahnya seh??y mgkin dl gw uda ga sabar pgn kencan brg ma tmn2 gw(kecil2 koq kencan??)ya maen gt deh..beneran ga mo mkn tuh..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;gw inget bgd klo uda kek gt nyokap gw mulai belajar berhitung(kurang ajar bgd ngtain ibu'nya bljr b'htung)iya secara nyokap gw ngitungin gt..Nyokap gw blg"tenan tit orak glm maem?tak itungi ping 10 angger rak maem awas"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;dasar gw ma kaka gw orgnya bandel ya te2p kekeh ga mo mkn..sampe itungan &lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;ke-9 itu berlangsung,dan anehnya abiz itungan ke-9 g lgsung 10..pake acara 9 seperempat,9setengah,9tigaperempat,baru 10(ibu yg aneh..)truz kan abz tuh itungannya,,dan ternyata gw g mo mkn juga..Nyokap gw ga nyerah gt aja!!masi dinasehatin gt,,"ayo dimaem..nek g mo maem ngko pitike do mati"(pendapat yg ga masuk akal..secara klo ga mo mkn kan nasinya pasti dikasiin ayam otomatis ayamnya jd ndut2 donk,,jd montok.halah..)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;ngliat gw n kaka gw tag bereaksi apapun..abiz sudah kesabaran nyokap gw..(taring and tanduknya kluar..loh??mang devil??)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;lgsung tuh ga pake lama n ga pake telor piring berisi nasi de'el'el melayang terbang jatuh ke lantai...pyar!!!krompyang2!!!&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;wew..keren!!!..ada piring terbang..(ntu kta2 yg kluar dr mulut gw bisik2 ma kaka gw)ya ampyuuuuunn..ampun dah klo gw punya anak kek gw mgkin uda gw kirim ke panti asuhan ja dah!!nyokap gw masi blg lg:"jek moh maem neh??!!"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;gw ma kaka gw jaga image donk,,secara gw orgnya tuh teguh pendirian(halah)..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;gw ma kaka gw kompak blg"moh"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;lgsung tuh tanpa basa basi gw ma kaka gw di tarik kluar rumah terus pintunya dikunci dari dlm,ya cape deh g bs masuk..;p&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;gw baru sadar betapa marahnya nyokap gw smpe2 gw dsruh kluar rmh secara tag terhormat sekalee...and then what did u do??(ndak bner grammernya)gw ma kaka gw masi punya senjata andalan!!!hahahahaha...yaitu nangis sekenceng2nya!!!hua...hua..hikz..sentlup(narik umbel)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;ubi diragiin!!!!tape deh...&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;lm bgd ngisnya mpe aer matakuwh kering bagai di padang basir bo'!!tp gw ga gmpg nyerah!!(nasehat yg di kasi ma nyokap gw,gw terapin tuh!!jgn mudah menyerah!!)ya uda gw nangis aja terus,sambil mohon2 gt ma nyokap gw..(basa inggrisnya ngrayu,halah)akhirnya perjuangan gw gag sia2..Tengs God..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;dR dlm rMh nYokap gw bLg"ibu gelem mbukai,asal bar iki maem n raksah dolan"&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;ya uda daripada gw tidur di luar,mnding mkn aja..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;gW ma KA2 gw komPak jWb:"nggiiiih bu'....."&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;dan akhirnya gw msuk rmh and then mkn,,&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;oh mOm,fOrGIVE Me 4 aLL misTakes tHAt i've maDe..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;gW sadar,apa yg nyokap gw lakuin semata2 hanya untuk anak2nya..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;sHe's woRk haRd jUst 4 her cHildren..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;moM,tenGs 4 everYthing u&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt; gave 2 me..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;i juSt can saY tHank's..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;u'Re tHe moSt pRecious pEopLe in tHe woRld..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;u're quEEn oF mY heARt..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;i love u moM,,,,yesTerdaY,today,tomrw,always and 4evah..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;anD onE tHing,,i'll reMMbR ThAt i'll nEver foRget U..&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;***HApPy moTher's daY..***&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#009900;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116676259606785022?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116676259606785022/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116676259606785022' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116676259606785022'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116676259606785022'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/12/mothersday.html' title='==&gt;**moTheR&apos;s_daY**&lt;=='/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116660627782035902</id><published>2006-12-19T21:58:00.000-08:00</published><updated>2006-12-21T21:11:00.926-08:00</updated><title type='text'>sTanD uP 4 LuV,,,,</title><content type='html'>&lt;div style="TEXT-ALIGN: center"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(51,51,255)"&gt;sTand uP 4 Luv,,&lt;/span&gt;&lt;br /&gt;&lt;span style="FONT-WEIGHT: bold"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;langSung inget ma i-Ring gW..y9 sKaraNg uDa disTop cZ ga da pLsa,,waKakaKA..&lt;br /&gt;i-RinGqUwh y9 nTu adaa sToryNa Loh..a Lil saD lah..seCara gW masang tuh i-ring daLam rangKa meMperiNgati harI "BUbARAn"gW ma maNtan gw..(oH so saD..)&lt;br /&gt;Jd CrITA'nya tuH I-rING gW pasang bwt nYemangatin gW biAR "sTand uP"..&lt;br /&gt;hua..ha..ha..pDhL g n9eFek juGa,sEcarA Y9 dEngERin bKn kUpiNG Gw giTu Loh..MelainKan kuPing oRg2 y9 ga jelaS..ya iTung2 AmaL Lah..n9aSI DgR LaGu yG Gw bGt!!!&lt;br /&gt;==&gt;wHy tHat mUst Be eNd??&lt;== g tw jg knapah..byk yg nanya "kog putus napa?"i dunno..maybe bcoz oF the distance,, so far gt loh..bagai langit ma bumi!!(majas hiperbola).Ya pokokna too hard lah bwt dipertahanin,,susah dah!!sama susahnya ma ngerjain ulgn mat(halah). sebenernya sayang juga seh,secara hub.yg uda gw "pupuk" slama 9 bln sia2,,pdhl "pupuk"nya uda pake pu2k terbaik loh!!pu2k kandang!!dari kotoran kebo ijo yang lagi anget2nya dikeluarin ma si kebo(halah kog mlh mpe kotoran2,ih jijai d) dari ntuh lagu,gw bs bgkt lagi!!dari keterpurukankuwh..(terpuruk kata dasarnya puruk,halah..) sedih juga seh,klo inget masa2 bahagia bersama dgnnya..saat2 be2,bersama mengasuh anak kami..halah.. yasudalah,life goes on.. it'z time 4 find a new luv.. letz talk bout luv.. lgsung inget ma kata2 anakna pak topek..dy blg ''love's suck!!''i dunno why she said like that..may be cz lum bole pcaran kale ya(cian..) berdasarkan survey yg dilakukan oleh mba' ryzndut ternyata pacaran ntuh punya dampak yang negatif bagi penggunanya(koq pengguna??)such as:jerawat kemana2,susah konsen..secara inget si doi mulu seh..*mo mkn ingt dia(jadi tambah nafsu mkn'na,otomatis tmbh ndut donk)*mo tidur ingt dia(byngin klo dy jadi bntalnya,kan bisa diiler'in..wekz!! ;p)ya pokokna mo ngapa2in ingt dy mulu deh..sampe2 boker aja ingt dy..(kpikiran klo qt jadi closet,dy jadi e'ek nya..ck..ck..ck..tragis bgd!!) so, i get conclusion..that "pacaran itu punya efek positif"(loh??)gag nyambung!!tanya knapa?? &lt;/span&gt;&lt;/span&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;oh ye,ga tw knapa saiia lgsung inget ma kjadian yg tadinya awam di mata qt,tapi skarang uda kek biasa ajah!!next sTop is bOut PDA(public display affaction) basa inggris tuh!!tau ape artinya ga lu??ga tau?!!!wah...sama!(halah).Jadi pda ntu kaya notebook mini gtu deh(loh??)beda dink!!pda yg ini tuh ttg pacaran yg dipertontonkan dikhalayak rame(halah bahasanya berat bgd!!)...&lt;br /&gt;=&gt;&gt;gw ingt kejadian yg menimpa mata gw..jadi gni ceritanya..ga tau berapa minggu yg lalu gw kan nonton casino royale disebuah bioskop yang asyik bgd(dilarang nyebut merk!!)ya pokokna bioskop ntu terletak di grogol lah disebuah mall citraland,lantai 6.apa lagi klo bukan citra21..(Loh kog malah nyebut merk??)sensor ah..tiiiiiiit!!!&lt;br /&gt;eniwei,,pas lagi nunggu filmnya maen gt,gw kan du2k2 di sofa 21 yang bentuknya melingkar gt kan..(sama kek sofa di citra 21 smg)nah pas gw lg du2k dgn posisi sopan sekaliii,ga taunya sebelah gw ada sepasang pria wanita yg sedang asyiknya franch kiz gitu...aduh2..jadi pgn(halah)&lt;br /&gt;mulut mreka tuh uda mangap2 gitu ky lele kehabisan aer!!bujubusyet!!!amit2 dah anak turun gw jgn mpe ada yg ky gityu..Jadi posisi si ce tuh di atas pangkuan si co..edan!!!!!mantabh!!!!!!!!&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;ck..ck..ck..gw pura2 gag liat ajah,,tapi agak penasaran jg seh..wakkakkakaka..liat pelm secara live gtoe..&lt;br /&gt;===============================&lt;br /&gt;and then waktu berlalu,,mereka sgd menikmati setiap menitnya(mereka=si co&amp;amp;ce tadi)dan tibalah saat bwt ntn pelm casino royale..coz uda ada suara=&gt;&lt;br /&gt;"mohon perhatian,pintu teater 3 telah dibuka,bagi anda yg telah mempunyai tiket dipersilakan masuk"&lt;br /&gt;yauda nunggu apa lagi,gw lgsung masuk dan menempati kursi panas gw(dingin dink,secara ac gt loh!!)&lt;br /&gt;blum ad 5 menit didlm ruang teater..eh..ternyata ada pertunjukan secara live lageee..oh God,,,tht was so good(halah)&lt;br /&gt;ya gtyu lah..kek gitu di sini mah uda biasa..&lt;br /&gt;istilahnya tuh "wes pating tlecek" koyo mbelek...&lt;br /&gt;&lt;br /&gt;nOtiCe:doNt trY tHis aT hoMe(selaen di home bole!!!!..)&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-WEIGHT: bold"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-WEIGHT: bold"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="FONT-WEIGHT: bold"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="FONT-WEIGHT: bold"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="FONT-WEIGHT: bold"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style="FONT-WEIGHT: bold"&gt;&lt;span style="COLOR: rgb(51,51,255)"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116660627782035902?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116660627782035902/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116660627782035902' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116660627782035902'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116660627782035902'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/12/stand-up-4-luv.html' title='sTanD uP 4 LuV,,,,'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116651765543837326</id><published>2006-12-19T00:30:00.000-08:00</published><updated>2006-12-19T00:40:55.853-08:00</updated><title type='text'>miZ hiM s0 muCh...</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="font-weight: bold;"&gt;kangen sangad neh ma ayank,,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;oh my luv..dimana kaw berada..&lt;br /&gt;masi sibukkah dirimuwh????&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116651765543837326?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116651765543837326/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116651765543837326' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116651765543837326'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116651765543837326'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/12/miz-him-s0-much.html' title='miZ hiM s0 muCh...'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116651478015527699</id><published>2006-12-18T19:02:00.000-08:00</published><updated>2006-12-18T23:53:00.196-08:00</updated><title type='text'>nEw_YeaR,nEw boYfReN...(halah)</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;span style="font-family: courier new;"&gt;&lt;span style="font-family: lucida grande;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 0, 204);"&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;hi..whaDuP gUys..&lt;br /&gt;taoN barU uDa dikiT lagee neH..da pLaning keManakaH??&lt;br /&gt;sEdiH neh g bS pLg SMG terCintaH..&lt;br /&gt;mO pLg,,nanG9ung,cz liBuR 3 haRi doAnk..PaliNG capE' diPerJalaNan doaNk..&lt;br /&gt;sLaen ntU j9 lg boKek..huE..he..he..&lt;br /&gt;ya sKaLi2 taOn baRuan diBATAVIA boLe doNk..&lt;br /&gt;kaTanya seH kLo taoN barUan,dSni paliNg ramE tuH di MonaS 'n AnCoL..&lt;br /&gt;KaYanya asYik ju9a tUh taOn baRuan diAncOL..&lt;br /&gt;ya..sapA yG bermiNat taOn bAruAn diJakArtA,,silakan huBungi diRikuWh..(sO wHat?!!)&lt;br /&gt;he..he..maksuDna kaN bs taOn barUan bRg aquWh..&lt;br /&gt;ah ga seru bahas soal taon baru...ganti topek aje ye..&lt;br /&gt;gini,gw tuh lg binun mo beli spatu..secara gw mikir klo beli sptu item,ketz,ntar ga bole dipake keskul,kan sia2 dunk..klo mo beli sptu yg model2 pantofel gt kan males bgd!!masak magang pakenya sptu jadul gt?!!!tht's why,saiia binun sangad..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116651478015527699?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116651478015527699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116651478015527699' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116651478015527699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116651478015527699'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/12/newyearnew-boyfrenhalah.html' title='nEw_YeaR,nEw boYfReN...(halah)'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116649482890337208</id><published>2006-12-18T16:50:00.000-08:00</published><updated>2006-12-18T18:44:33.760-08:00</updated><title type='text'>pEmBanTu oH pEmBaNtu....</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="color: rgb(204, 51, 204);"&gt;ai kawan..&lt;br /&gt;pengen curhat ney..(halah remaja bgt!!)iya emg gw masi remaja,walopun tampang uda nenek2 tapi jiwa gw masi kek anak "abg"(plis deh..pnting ga seh?)back 2 main topic(jadi inget pak topik,kmren kapan gitu gw sempet chating gt ma anakny pak topek..anaknya ce klas 2 smp.Lmyn cantek euy..dy nanya2 ttg reza aliaz mbahe gityuu)kog malah ngomongin ttg anakny pak topek ye???tanya knapa???&lt;br /&gt;ok deh,ga pake lama ga pake basa basi,ga pake telor(loh??)dengerin ye,gw mo crita neh(loh kog dengerin,mang radio???)hasyah byk protes&lt;br /&gt;lu!!!jadi gini critanya....jadi critanya begiini...halah!!!&lt;br /&gt;(uda deh byk omg lu!!kapan critanya??)&lt;br /&gt;iye2,,,ni gw mo crita..sabar dunk..org sabar disayang risK..halah..&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;color text_ny ganti dulu ah..kan nyesuain ma tema crita(temanya kan lg "blue"aliaz sedih..hikz..)&lt;br /&gt;are u ready?????read de text kerpuli..&lt;br /&gt;gini kawan,,kmren minggu tuh gw uda pgn bgt pindah dari kost'an gw yg laknat itu..bkn gr2 yg punya kost jahat,not bcoz ga ada aer,jg bukan gr2 kostny mahal..di kost itu (yg skarang gw tempatin) termasuk kost termurah dengan fasilitas yg memadai lah..secara aer ga pernah kering,kostnya juga lmyn enak lah untuk ukuran 150rb..Tapi yg bikin gw ga betah di ntu kost juz bcoz "PEMBANTU"anj*** itu!!jadi gini,,kan kamar gw ada di lantai 2,ya emang mostly yg kost di situ di lantai 2,coz lantai 1 tuh bwt yg punya kost.Ada seh 2 kmr yang di kost'in tapi yg 1 kosong,yg 1 lg ditempatin ma si gila dari goa hantu(ashenk.red)&lt;br /&gt;nah pas hari minggu itu,gw kan abiz mandi..ya lg dandan gt deh di kmar(mo hangout ke Blok M)&lt;br /&gt;nah si pembantu ntuh tiba2 ngetok2 kaca jendela kmr gw..Ya biasa lah kdg dy tuh sk iseng gt.&lt;span style="color: rgb(255, 0, 0);"&gt;Truz gw nanya&lt;/span&gt;"apa Bi'?!!"&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Dy&lt;/span&gt; jwb dgn nyolot"klo nyapu jgn cm di pinggirin di tangga!!"&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;gw&lt;/span&gt;:(uda agak emosi)"ye..siapa yg nyapu dipinggirin ditangga?!!!"&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;dy&lt;/span&gt;:"iya,org yg rambutnya panjang kan cm riska!!!"(cz sampahnya ntu rambut2 gt deh)&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;gw&lt;/span&gt;:(dlm ati,geblek bgt sih ne pembantu,matanya ga normal kale..jelas2 yg rmbtnya pnjg tuh bkn gw doank!!!mba didi &amp; mb tuti)"emang yg rambutnya pnjg riska doank?!!!!"&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;dy&lt;/span&gt;:"iya!!"&lt;br /&gt;truz gw diemin aja,although dlm ati gw emosi campur heran,kog ada ya pembantu yg suck n geblek kek dy?!!matanya blind kale ya,,org yg rmbtnya pnjg bkn gw doank!!&lt;br /&gt;ya mgkin gr2 kamar gw yg paling deket ma tangga..Padahal smoa anak kost klo nyapu jg pada di pingggirin di tangga doank.Ga disapu mpe bawah.E.. yang kena omelan gw doank!!!anjrit!!!!&lt;br /&gt;ntu bukan pertama kale gw di bikin emosi + dongkol ma tuh pembokat!!uda sering!!!tapi gw cuekin aja,dan berdoa semoga Tuhan mengampuni dosanya,kalo perlu kontraklah dia agar disisi-Mu saja ya Tuhan..(halah,doa_ne elek bgt ik!!)&lt;br /&gt;wes pokoke byk bgt deh ulah ntu pembokat yg bikin gw meneteskan aer mata(halah)klo soal nyapu ntu mah masi bysa,,,dl ada kjadian yg bikin gw nangis..pengen pindah kost..Tapi ya gw bth2in lah..gw mikirnya kan paling disini ga lama..&lt;br /&gt;Tragedi hari minggu ga berakhir mpe disitu doank..pas gw balik dari Blok M aksi si pembokat ntuh berlanjut!!!!!...&lt;br /&gt;Skitar jam 5an lah,ada temen gw(cowok)yg maen ke kost.Truz kan duduk2 lantai 2.Emg anak2 kos klo pada nongkrong disitu,dideket jemuran.Nah pas gw lg speak2 ma tmn gw,si pembokat gila ntuh nyamperin.Pura2 njemur pakaian gt..Dgn nada tanpa berdosanya dia bilang "&lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;klo ada orang di luar,klo ga ada org di kamar!!&lt;/span&gt;"elu2 mudeng maksud dy kan?!!!dy tuh nyindir gw!!&lt;br /&gt;trus gw bilang gini(nada tinggi)"sapa yang bawa temen kekamar?!!!aq tu ga pernah bw2 tmn co msk kamar!!!!&lt;br /&gt;dy:"ah yg bener?!!"&lt;br /&gt;gw:"ya bener!!!"&lt;br /&gt;dy:"ya udah klo ga pernah ga usah nyolot gitu"&lt;br /&gt;gw:"sapa yang nyolot?!!!"&lt;br /&gt;trus tuh pembokat lgsung turun..&lt;br /&gt;gw rasanya uda pengen nangis aja tuh..secara ga langsung gw difitnah donk!!!sapa tau tuh pembantu nglaporin ma bpak kost yg ga2 ttg gw?bs aja kan?!!&lt;br /&gt;tau tuh si pembokat keknya sentimen bgt ma gw!!&lt;br /&gt;gathel!!!&lt;br /&gt;ya uda,abz gitu tmn gw lgsg plg..&lt;br /&gt;sumpe,gw tuh ga pernah yg namanya bawa temen co masuk kamar!!gw bw temen masuk kamar tuh cm si jevi.Ce gt loh!!&lt;br /&gt;ya gt lah "KISAH SEDIH DI HARI MINGGU"gw&lt;br /&gt;Bwt smoa yg baca blog gw ini,gw minta doa lu2 pade ye..smoga gw bisa nrima cobaan ini,di beri ketabahan,dan jangan lupa doakan juga bwt pembokat anj*** itu spy kena azab..amin...&lt;br /&gt;ho..ho..ho...&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116649482890337208?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116649482890337208/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116649482890337208' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116649482890337208'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116649482890337208'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/12/pembantu-oh-pembantu.html' title='pEmBanTu oH pEmBaNtu....'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116642157172132936</id><published>2006-12-17T21:54:00.000-08:00</published><updated>2006-12-17T21:59:31.730-08:00</updated><title type='text'>kEeP hOLdin9 oN...</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;div class="post-body"&gt;     &lt;div&gt;          &lt;p style="font-weight: bold;"&gt;Keep Holding&lt;br /&gt;&lt;/p&gt;  &lt;p style="font-weight: bold;"&gt;You’re not alone&lt;br /&gt;Together we stand&lt;br /&gt;I’ll be by your side&lt;br /&gt;You know I’ll take your hand&lt;br /&gt;When it gets cold&lt;br /&gt;And it feels like the end&lt;br /&gt;There’s no place to go&lt;br /&gt;You know I won’t give in&lt;br /&gt;No, I won’t give in &lt;/p&gt;  &lt;p style="font-weight: bold;"&gt;Keep holding on&lt;br /&gt;Cause you know we’ll make it through&lt;br /&gt;We’ll make it through&lt;br /&gt;Just stay strong&lt;br /&gt;Cause you know I’m here for you&lt;br /&gt;I’m here for you&lt;br /&gt;There’s nothing you can say&lt;br /&gt;Nothing you can do&lt;br /&gt;There’s no other way when it comes to the truth&lt;br /&gt;So, keep holding on&lt;br /&gt;Cause you know we’ll make it through&lt;br /&gt;We’ll make it through &lt;/p&gt;  &lt;p style="font-weight: bold;"&gt;So far away&lt;br /&gt;I wish you were here&lt;br /&gt;Before it’s too late&lt;br /&gt;This could all disappear&lt;br /&gt;Before the door’s closed&lt;br /&gt;And it comes to an end&lt;br /&gt;With you by my side&lt;br /&gt;I will fight and defend&lt;br /&gt;I’ll fight and defend, yeah, yeah &lt;/p&gt;  &lt;p style="font-weight: bold;"&gt;Keep holding on&lt;br /&gt;Cause you know we’ll make it through&lt;br /&gt;We’ll make it through&lt;br /&gt;Just stay strong&lt;br /&gt;Cause you know I’m here for you&lt;br /&gt;I’m here for you&lt;br /&gt;There’s nothing you can say&lt;br /&gt;Nothing you can do&lt;br /&gt;There’s no other way when it comes to the truth&lt;br /&gt;So, keep holding on&lt;br /&gt;Cause you know we’ll make it through&lt;br /&gt;We’ll make it through &lt;/p&gt;  &lt;p style="font-weight: bold;"&gt;Hear me when I say&lt;br /&gt;When I say I believe.&lt;br /&gt;Nothing’s gonna change&lt;br /&gt;Nothing’s gonna change destiny&lt;br /&gt;Whatever’s meant to be&lt;br /&gt;Will work out perfectly&lt;br /&gt;Yeah, yeah, yeah, yeah&lt;br /&gt;La da da da, la da da da&lt;br /&gt;La da da da da da da da da &lt;/p&gt;  &lt;p style="font-weight: bold;"&gt;Keep holding on&lt;br /&gt;Cause you know we’ll make it through&lt;br /&gt;We’ll make it through&lt;br /&gt;Just stay strong&lt;br /&gt;Cause you know I’m here for you&lt;br /&gt;I’m here for you&lt;br /&gt;There’s nothing you can say&lt;br /&gt;Nothing you can do&lt;br /&gt;There’s no other way when it comes to the truth&lt;br /&gt;So, keep holding on&lt;br /&gt;Cause you know we’ll make it through&lt;br /&gt;We’ll make it through &lt;/p&gt;  &lt;p&gt;&lt;span style="font-weight: bold;"&gt;Ahh, ahh &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Keep holding on &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Ahh, ahh &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Keep holding on &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;There’s nothing you can say &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Nothing you can do &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;There’s no other way when it comes to the truth &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;So, keep holding on &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Cause you know we’ll make it through &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;We’ll make it through&lt;/span&gt; &lt;/p&gt;    &lt;/div&gt;    &lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116642157172132936?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116642157172132936/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116642157172132936' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116642157172132936'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116642157172132936'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/12/keep-holdin9-on.html' title='kEeP hOLdin9 oN...'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116607946987121782</id><published>2006-12-13T22:48:00.000-08:00</published><updated>2006-12-13T22:57:49.893-08:00</updated><title type='text'>i'M noT faT,I'm jUsT bi9 boNe...</title><content type='html'>&lt;div align="center"&gt;&lt;a name="msg_e6741fa292776fb7"&gt;&lt;/a&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;alow kaWan...&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;ni gW pUnYA tiPs amPuh giLa,,,kHsus bWt y9 "faT"ajaH..&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#cc33cc;"&gt;&lt;strong&gt;y9 uDa nGrasa kUyus,,,&gt;doN't tRy tHis aT hOme!!!!&lt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;(ga boLe di HomE brRti sLAen di hOme boLEh dunk..yUUUk!!!)&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;span style="color:#cc33cc;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div align="center"&gt;&lt;span style="color:#3333ff;"&gt;&lt;strong&gt;CABAI MELANGSINGKAN TUBUH&lt;/strong&gt; &lt;/span&gt;&lt;/div&gt;&lt;span style="color:#3333ff;"&gt;&lt;div align="justify"&gt;&lt;br /&gt;Makanlah cabai dan serat yang terlarut, ditambah olahraga teratur. Ini tiga langkah cepat menurunkan berat badan.&lt;br /&gt;Bagi banyak orang, menurunkan berat badan itu susahnya minta ampun. Sementara orang lain punya persoalan, berat badannya kok susah naik- naik kendati gaya hidup dan kebiasaan makannya seimbang. Kedua golongan orang ini memang punya perbedaan individual, yakni laju metabolisme masing-masing.&lt;br /&gt;Namun Anda jangan putus asa sebab ada banyak jenis makanan yang betul- betul dapat meningkatkan laju metabolisme serta membantu menurunkan berat badan. Sementara bagi yang ingin bertubuh montok padat berisi, ada makanan yang dapat memperlambat laju metabolisme dan menaikkan berat badan. Kalau Anda merasa kegemukan, makanlah makanan yang pedas- pedas. Begitu anjurannya.&lt;br /&gt;Makan makanan pedas&lt;br /&gt;Menurut beberapa studi mutakhir, bumbu-bumbu pedas macam cabai, mostar, merica, dapat membantu menurunkan berat badan sebanyak 25% kalau rempah-rempah tersebut ditambahkan dalam diet Anda.&lt;br /&gt;Cabai rawit yang sudah dikenal selama ratusan tahun sebagai obat kolik usus (masuk angin), pencernaan yang buruk, dan meningkatkan sirkulasi darah, sampai kini masih dikonsumsi banyak orang untuk mendapatkan keuntungan-keuntungan tersebut.&lt;br /&gt; Namun, cabai rawit yang antara lain mengandung capsaicin dan capsacutin itu kini diyakini para ilmuwan dapat menurunkan berat badan karena pengaruhnya terhadap produksi hormon hasil kelenjar tiroid yang berpengaruh terhadap laju metabolisme. Sebuah penelitian yang dilakukan di Universitas Tasmania di Australia membuktikan, laju metabolisme 4 dari 6 orang kelinci percobaan meningkat setelah menyantap makanan yang mengandung 1 sendok makan Tabasco yang tak lain ekstrak cabai juga.&lt;br /&gt;Karena itu kalau Anda mengalami kegemukan, cobalah tambahkan dalam santapan Anda bumbu-bumbu pedas tadi, entah dibubuhkan atau diramu sewaktu memasaknya. Cabai rawit memang pedas menggigit. Apalagi kalau dalam bentuk Tabasco yang dikonsumsi sebanyak 1 sendok makan yang bisa bikin orang merah padam kepedasan seperti dalam penelitian tadi. Karena itu bila Anda baru pertama kali memakai cabai rawit, makanlah sedikit saja dulu, kemudian ditingkatkan seperempat sendok makan setiap kali menyantap makanan.&lt;br /&gt;Kalau Anda tidak tahan pedas, ada akal-akalannya. Ambillah kapsul kosong dan masukkan bubuk cabai rawit atau Tabasco sampai separuh kapsul. Sebaiknya Anda menenggak satu kapsul setiap kali makan. Kalau perut Anda merasa tidak enak, kurangi jumlah cabai rawitnya atau stop makan cabai sama sekali.&lt;br /&gt;Tetapi ingat, jika Anda sungguh-sungguh punya niat menurunkan berat badan, sebaiknya hindari makan junk food, juga camilan. Makanan yang tinggi kadar lemak dan atau gulanya akan menambah berat badan biarpun Anda makan cabai sampai megap-megap kepedasan. Dalam setiap gramnya lemak mengandung jumlah kalori dua kali lebih banyak daripada karbohidrat ataupun protein. Jumlah total lemak dalam menu Anda sebaiknya sekitar 20% dari jumlah energi total dalam asupan.&lt;br /&gt;Selain itu perbanyak konsumsi sayur-sayuran, kecuali kubis. Kubis ini justru mempunyai pengaruh meningkatkan berat badan. Makanlah buah- buahan segar, bukan yang dikeringkan atau dijus karena yang demikian itu selalu tinggi kadar gulanya. Air putih merupakan keharusan, karena itu minumlah 6 - 8 gelas per hari. Hendaknya selalu sarapan pagi dan kurangi porsi makan malam. Sarapan dapat menghindarkan Anda dari memakan junk food dan camilan sepanjang hari itu.&lt;br /&gt;Serat menyerap lemak Sayangnya, kebanyakan orang tidak dapat mengurangi lemak dalam menu mereka. Kalau Anda termasuk kelompok ini, mengkonsumsi serat yang mengikat lemak dan serat yang larut dalam air dapat menolong. Serat yang larut dalam air penting untuk kesehatan. Banyak studi klinis menemukan bahwa serat-serat ini juga membantu mengurangi lemak darah tertentu seperti kolesterol. Serat-serat itu antara lain bekatul, havermout, kacang hijau, dan pektin.&lt;br /&gt;Serat juga dapat membantu menurunkan berat badan dengan dua cara. Pertama, karena serat yang larut dalam air itu mengembang dan menyumpal perut sehingga membantu mengurangi nafsu makan. Kedua, serat tersebut juga memerangkap asam empedu sehingga mencegah penyerapan asam ini, dan sampai batas tertentu juga lemak dalam makanan. Ini menyebabkan penyerapan berbagai lemak dalam makanan berkurang, dan menjelaskan bagaimana serat mengurangi lemak darah dan membantu menurunkan berat badan.&lt;br /&gt;Olahraga secara teratur setiap hari, 20 menit setiap pagi sebelum sarapan itu paling baik, karena ini akan meningkatkan metabolisme tubuh, tidak hanya selama berolahraga tetapi juga sepanjang hari.&lt;br /&gt;Paling baik kalau Anda mencapai 80% dari denyut jantung maksimum setiap kali latihan. Namun, mulailah dengan perlahan dan kunjungi dokter atau instruktur Anda sebelum mulai program latihan untuk memastikan Anda tidak memiliki kondisi medis yang melarang olahraga (untuk sementara).&lt;br /&gt;Denyut jantung maksimum (DJM) adalah 220 dikurangi usia. Kalau Anda berusia 40, maka DJM Anda 220 - 40 = 180. Jadi, 80% dari 180 adalah 144, dan ini harus Anda capai pada saat berolahraga. Latihan yang terbaik adalah jalan cepat, berenang, dan angkat berat yang ringan. Angkat berat ini juga memperkuat tulang-tulang dan pada saat yang sama juga membakar kalori. Ternyata menurunkan berat badan tidak terlalu sulit. Hanya dengan perubahan makanan sehat, sedikit cabai, peningkatan konsumsi serat yang larut dalam air, dan olahraga secara teratur akan tercipta perubahan.&lt;/div&gt;&lt;div align="justify"&gt; &lt;/div&gt;&lt;div align="justify"&gt;=&gt;pEsaN mOraL:siApkaN diApet bila tERJadi mEncRi2&lt;=&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116607946987121782?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116607946987121782/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116607946987121782' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116607946987121782'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116607946987121782'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/12/im-not-fatim-just-bi9-bone.html' title='i&apos;M noT faT,I&apos;m jUsT bi9 boNe...'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116598051205341602</id><published>2006-12-12T18:32:00.000-08:00</published><updated>2006-12-12T19:28:32.106-08:00</updated><title type='text'>mY LoVeLy nOse...</title><content type='html'>&lt;span style="color:#ff0000;"&gt;kLiaN peRnaH gA nGrAsain paS bgN tiduR Lgsg BeRasa sEsaK naPas yG bEner2 nYeseK BGt?!!..(yG g pErnaH bERarTi bErwJaH jeLek!!huEhehe!!ga2 b'canda)&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;gW peRnah!!!td paGi bUta paS gw bGn tiDuR,gW nGrSa ada yG aNeh d9n PernApaSan gW!!uDa miKir yg mcEm2 ja tuH gw!!jGn2 kEna sErangan parU2..AtO jgN2 DisaNtet?!!!waLah?!!sEjuTA PerTanyaan meNGhmpiRi iduNg gw(loh kOg idUng?!!)lah ngomoNg soAL idUng ternyAta eh teRnyaTA iDung gW terSeraNg viRus yg gaNas mAmpUs!!aLiaS *FLU*(taPi g paKe buRung Lho)ntaR kLo pke buRung jdiNy bUruNg fLu(Lho?!!gEbLek bGt?!!)&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;aNjRoT!!jadi suSah npas gNi...kPn dErita ini B'aKhir?!!oh kejAMna dUnia!!(hlah)&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;da yG mO caiRan KenTal mEnyeRupai maYones?!!!pLis caLL Me!!!iT's fRee!!!n liMitEd ediTioN(sErIus Loh!!)sO WhT aRe u waItinG 4?!!!!!&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116598051205341602?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116598051205341602/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116598051205341602' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116598051205341602'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116598051205341602'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/12/my-lovely-nose.html' title='mY LoVeLy nOse...'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116581639799325083</id><published>2006-12-10T21:49:00.000-08:00</published><updated>2006-12-10T21:53:18.023-08:00</updated><title type='text'>i haVe nOth!ng tO do...</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;bOsEn giLa neH...&lt;br /&gt;&lt;br /&gt;seharian kagak ada kerjaan..ya ampyuuun...kapan seh magang terkutuk ini selese?!!! gw bisa mati garink di sini!!!&lt;br /&gt;boseeeeennnnnnnn!!!!!!!!!!!!&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116581639799325083?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116581639799325083/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116581639799325083' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116581639799325083'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116581639799325083'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/12/i-have-nothng-to-do.html' title='i haVe nOth!ng tO do...'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116556457328223767</id><published>2006-12-07T23:44:00.000-08:00</published><updated>2006-12-07T23:56:13.290-08:00</updated><title type='text'>desEmBeR raiN..</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="font-family: verdana;"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="font-family: courier new;"&gt;&lt;span style="font-family: arial;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-family: arial;"&gt;&lt;span style="font-family: arial;"&gt;Weew...brrrrr......diNgin b9t kaWaN!!&lt;br /&gt;anJriT..dIngiNa kAya dikutuB bOw!!(paDaHal g perNah ke kuTup!!)eDan biSa dingIn maMpus giNi yaK!! daRi si9naL nyaNg dibERikan mA IduNG seMata wayan9 gW,kaYana gW mO piLek nEy,,,,duH baHayA neH kLO Mpe gW teRseraNG viRus yG mematiKan iNdra peNciumaN gW!!biSa berKuraNG duNk keNikmAtaN menCium aYank..(ho..ho..ho..pdhaL cO ja gw kagak punya...)kaSian bgT yaH...&lt;br /&gt;ya yG beRminat biSa laNgsung daFtar!!!gratizz!!!tiDak dipunguT biaYa sepEser pun!!!!!!!!!!!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: verdana;"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116556457328223767?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116556457328223767/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116556457328223767' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116556457328223767'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116556457328223767'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/12/desember-rain.html' title='desEmBeR raiN..'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116461121139083876</id><published>2006-11-26T23:02:00.000-08:00</published><updated>2006-11-26T23:06:51.413-08:00</updated><title type='text'>aKuwH nDutz,,</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;Let'Z tHink bOuT WeighT..&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;sO scary...Hikz!!!&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;yeAh...caLL me *nDut*&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;i'LL pRoUd wiTh tHis..&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;eVen a liTTLe bIt sTupiD,bUT....hahahahaha!!!it's a FacT..&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;YEaH,,aha-aha..&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;nduT is iN dA hoZ yooo...&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116461121139083876?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116461121139083876/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116461121139083876' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116461121139083876'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116461121139083876'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/11/akuwh-ndutz.html' title='aKuwH nDutz,,'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116459945167420050</id><published>2006-11-26T19:45:00.000-08:00</published><updated>2006-11-26T19:50:51.686-08:00</updated><title type='text'>bE biuTiPul!!!</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;div style="padding-left: 3px; padding-right: 3px;"&gt;&lt;div style="font-size: 16px; font-weight: bold;"&gt;&lt;p&gt;Mengatasi Dan Merawat Kulit Berminyak&lt;/p&gt;&lt;/div&gt;&lt;a href="http://www.kapanlagi.com/p/face.jpg" style="text-decoration: none;"&gt;&lt;img src="http://www.kapanlagi.com/p/face.jpg" style="border-style: none; float: left; padding-right: 10px; vertical-align: middle;" alt="Lihat Gambar" width="200" /&gt;&lt;/a&gt;&lt;p&gt;- Kulit berminyak seringkali jadi masalah dari jutaan orang dan meski ada sejumlah perawatan yang dapat dilakukan, kondisi semacam ini mungkin akan terus berulang selama bertahun-tahun. Kulit berminyak ditandai dengan penampilan yang mengkilat dan kusam. Jika keadaan semacam ini berlangsung selama bertahun-tahun pori-pori di kulit wajah Anda dapat tertutup oleh minyak yang berlebihan dan bisa menimbulkan masalah jerawat. Pilihan perawatan yang bisa digunakan adalah mengurangi keluarnya minyak secara berlebihan dengan bahan kimia atau sabun yang keras. Akan tetapi, jika ini berlangsung secara berlebihan dan terlalu banyak akan dapat mengurangi minyak pada titik tertentu justru akan membuat kulit jadi kering. Sedang merawat kulit berminyak dengan cara yang benar merupakan proses yang sulit, dimana membutuhkan keseimbangan antara mengurangi keluarnya minyak tanpa harus menyebabkan masalah baru, dengan membuat kulit jadi kering. Sebenarnya, pemahaman akan penyebab kulit berminyak itu adalah hal supaya dapat menemukan solusi yang benar untuk mengatasinya.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Penyebab Utama Kulit Berminya&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Kabar buruknya, gen merupakan penyebab masalah kulit berminyak - setidahknya pada kebanyakan kasus. Faktor utama lain yang menyebabkan kulit berminyak adalah pola makan kita. Terlalu banyak proses gula, cairan dan masuknya garam bisa jadi kontribusi dalam masalah kulit berminyak. Meski faktor keturunan diduga sebagai penyebab kulit berminyak, dokter kulit akan tetap merekomendasikan pilihan diet dengan maksud mengatasi masalahnya.&lt;/p&gt;&lt;p&gt;Hormon kita merupakan masalah lain yang jadi faktor besar untuk sementara waktu (dalam beberapa kasus dalam waktu lama)dengan masalah kulit berminyak. kasus ini terutama terjadi dalam masa puber ketika tingkat hormon amat tidak seimbang. Faktor biasa dalam masa remaja dimana terlalu banyak produksi &lt;i&gt;sebum&lt;/i&gt; (minyak di bawah kulit) sebagai hasil tingkat hormon yang tak menentu.&lt;/p&gt;&lt;p&gt;Hormon juga cenderung tidak seimbang selama masa hamil dimana kulit berminyak seringkali jadi sebuah masalah bagi para wanita sebelum melahirkan. Pil KB juga dapat jadi masalah yang memperburuk keadaan ini. Faktor lain yang diketahui sebagai penyabab masalah kulit berminyak adalah kosmetik dan kelembaban atau udara yang amat panas.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Perawatan Kulit Berminyak&lt;/b&gt;&lt;/p&gt;&lt;p&gt;- Sementara diet merupakan faktor paling besar dalam masalah kulit berminyak, kebanyakan orang akan memilih untuk melawan kondisi semacam ini secara langsung. Dan biasanya dengan berupaya menghilangkan minyak sama sekali, dengan menggunakan sabun keras yang konsentrasi larutan alkalinya tinggi. Sayangnya, cara ini seringkali justru menyebabkan masalah yang kurang sehat lalu malah menyebabkan kulit lebih berminyak.&lt;/p&gt;&lt;p&gt;- Minyak yang diproduksi oleh kelenjar &lt;i&gt;sebaceous&lt;/i&gt; bermanfaat untuk membantu melicinkan kulit kita dan membantu memelihara kelembaban kulit. Jika seseorang mencuci wajah secara berlebihan dan menghilangkan sebum, kulit akan berubah jadi kering, bersisik, dan malahan menyebabkan gatal. Plus, penghilangan minyak tersebut akan merangsang kelenjar &lt;i&gt;sebaceous&lt;/i&gt; menghasilkan lebih banyak minyak dan dapat menyebabkan kondisi yang disebut &lt;i&gt;Reactive Seborrhea&lt;/i&gt;. Hal ini akan membuat kelenjar Anda bekerja secara berlebihan dan bisa menyebabkan gagal fungsi dimasa mendatang. Berbagai sabun muka yang menyebabkan masalah, bukannya mengatasi, sebaiknya dihindari saja.&lt;/p&gt;&lt;p&gt;- Jika Anda ingin menemukan sabun muka yang tak mengandung bahan kimia, lebih baik hindari sabun yang mengandung alkohol, alangkah baiknya memilih yang berbahan dasar alamiah, seperti minyak zaitun, almond atau alpukat. Kesemuanya memiliki fungsi resapan yang dalam dimana akan membantu pergantian kulit dan menjaga kelembaban.&lt;/p&gt;&lt;p&gt;Basuh wajah dengan air hangat, bukan air panas. Memang penting menghentikan keluarnya minyak berlebihan, tapi bukannya menghilangkan minyak sama sekali. Air panas mempermudah sabun menghilangkan minyak dan kotoran dari wajah dan juga mempercepat keseluruhan proses, namun itu juga menyebabkan kulit jadi kering dan bersisik. Juga penting diperhatikan agar tak menggosok wajah secara berlebihan, hal itu juga menyebabkan minyak hilang secara berlebihan. Gerakan lembut dan perlahan saat membersihkan wajah cukup untuk mengurangi masalah kulit berminyak Anda tanpa harus menyebabkan kulit jadi kering.&lt;/p&gt;&lt;p&gt;- Jangan terlalu sering mencuci wajah. Ini mungkin cara paling mudah untuk menghilangkan minyak, namun hal ini juga dapat menyebabkan terjadinya &lt;i&gt;Reactive Seborrhea&lt;/i&gt;. Sehari sekali saja mencuci wajah dengan sabun berbusa lembut sudah cukup untuk menghilangkan minyak berlebihan, sementara tetap kelembaban yang melindungi kulit tetap terjaga.&lt;/p&gt;&lt;p&gt;- Menggunakan pelembab memang penting, tapi tipe yang Anda gunakan tak kalah pentingnya. Demi menghindari membelanjakan uang sia-sia lantaran memilih pelebab yang salah, perhatikan bahan yang terkandung dalam pelembab itu apakah sesuai dengan kulit Anda. Pelembab yang berbahan kimia atau sintetis justru dapat menyebabkan masalah termasuk reaksi alergi, dehidrasi, dan bahkan jerawat. Plus, jika keseimbangannya tak sesuai malahan akan menyebabkan keluarnya minyak berlebihan yang hendak Anda hindari. Setelah menggosok wajah dengan sabun yang lembut, sebaiknya gunakan pelembab berbahan alami seperti minyal almond, zaitun atau alpukat, dimana kesemuanya dapat melindungi, melembabkan dan membantu kulit tampak indah tanpa memberi efek samping seperti yang disebabkan bahan kimia dan sintetis.&lt;/p&gt;&lt;p&gt;Demikian tips yang kami berikan untuk mengatasi kulit berminyak. Namun, bagaimanapun juga selain perawatan, diet makanan juga berguna untuk mengatasi maslah kulit berminyak, jaga pola makan Anda dan jangan lupa olah raga. &lt;b&gt;(erl)&lt;/b&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116459945167420050?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116459945167420050/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116459945167420050' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116459945167420050'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116459945167420050'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/11/be-biutipul.html' title='bE biuTiPul!!!'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116434630915993470</id><published>2006-11-23T21:15:00.000-08:00</published><updated>2006-11-23T21:31:49.183-08:00</updated><title type='text'>i'm jusT a g!rL...</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(255, 153, 255);"&gt;mY fUtUrE...My dReaM..&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;ga tw knapa gw sekarang2 ni lg mikirin bout my future..&lt;br /&gt;dari gw bsok lu2s skul ampe ntar gw married..&lt;br /&gt;qt kgk bakal tw apa yg bakal terjadi di masa depan..dan sekarang gw lg mikirin itu..&lt;br /&gt;gw ngrasa ga punya sswatu yg bisa dibanggain dari diri gw..Nothing special!!!&lt;br /&gt;gw mulai mikir ntar lu2s dari stemba mo kemana?secara gw skill ja kgk punya.&lt;br /&gt;mo kuliah?bingung ngmbil jurusan pa?lo2 juga tw ndiri klo kuliah tu ga jaminan lgsung bisa kerja..argh...gw smakin pusing mikirin masa depan gw..Pernah kmren tuh mentor mgang gw ngmg gini.."klo cewek mah gampang,kgk usah pusing cari kerja.Tinggal dandan yg cantik dah,truz cari suami yg kaya udah pasti makmur!!"Yeah..ada benernya juga seh!!!&lt;br /&gt;but,masalahnya adlah apa ada co tajir yg mo ma gw???!!!!&lt;br /&gt;oh God,it's my big problem..&lt;br /&gt;i'm so worry bout my future..&lt;br /&gt;prenz,,give me solutions..&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116434630915993470?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116434630915993470/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116434630915993470' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116434630915993470'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116434630915993470'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/11/im-just-grl.html' title='i&apos;m jusT a g!rL...'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116425581476320132</id><published>2006-11-22T20:22:00.000-08:00</published><updated>2006-11-23T21:52:52.686-08:00</updated><title type='text'>siZe dOeSn'T maTtEr!!! ;P</title><content type='html'>&lt;span style="font-weight: bold;"&gt;biG is BeAutiPuL!!!!!&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116425581476320132?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116425581476320132/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116425581476320132' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116425581476320132'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116425581476320132'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/11/size-doesnt-matter-p.html' title='siZe dOeSn&apos;T maTtEr!!! ;P'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116425409189514235</id><published>2006-11-22T19:51:00.000-08:00</published><updated>2006-11-22T19:54:51.903-08:00</updated><title type='text'>sUnnY,,,,,</title><content type='html'>&lt;div style="text-align: center; color: rgb(51, 102, 255); font-weight: bold;"&gt;  &lt;p&gt;sunny… sunny…&lt;br /&gt;jantungku berdetak tiap ku ingat padamu&lt;br /&gt;sunny… sunny…&lt;br /&gt;mengapa ada yang kurang saat kau tak ada&lt;br /&gt;sunny… sunny…&lt;br /&gt;melihatmu menyentuhmu itu yang kumau&lt;/p&gt;  &lt;p&gt;&lt;br /&gt;kau tak sempat tanyakan aku&lt;br /&gt;cintakah aku padamu..&lt;/p&gt;  &lt;p&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p&gt;tiap kali…&lt;br /&gt;aku berlutut&lt;br /&gt;aku berdoa&lt;br /&gt;suatu saat&lt;br /&gt;kau bisa cinta padaku&lt;/p&gt;  &lt;p&gt;##&lt;br /&gt;tiap kali&lt;br /&gt;aku memanggil&lt;br /&gt;didalam hati&lt;br /&gt;mana sunny…&lt;br /&gt;mana sunny ku…&lt;br /&gt;mana sunny ku…&lt;/p&gt;    &lt;p&gt;sunny… sunny…&lt;br /&gt;apakabarmu ‘kabarku baik baik saja’&lt;br /&gt;sunny… sunny…&lt;br /&gt;begitu banyak cerita tak habis tentangmu&lt;br /&gt;sunny… sunny…&lt;br /&gt;salamku untukmu dari hati yang terdalam&lt;/p&gt;  &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116425409189514235?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116425409189514235/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116425409189514235' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116425409189514235'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116425409189514235'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/11/sunny.html' title='sUnnY,,,,,'/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-37218502.post-116280535051372337</id><published>2006-11-06T01:27:00.000-08:00</published><updated>2006-11-06T01:29:10.520-08:00</updated><title type='text'>=&gt;f!RsT_bLoG&lt;=</title><content type='html'>JuSt wAnNa saY hi aLL...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/37218502-116280535051372337?l=ceritasukasukakuwh.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ceritasukasukakuwh.blogspot.com/feeds/116280535051372337/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=37218502&amp;postID=116280535051372337' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116280535051372337'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/37218502/posts/default/116280535051372337'/><link rel='alternate' type='text/html' href='http://ceritasukasukakuwh.blogspot.com/2006/11/frstblog.html' title='=&gt;f!RsT_bLoG&lt;='/><author><name>riska</name><uri>http://www.blogger.com/profile/04058905095947898730</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://1.bp.blogspot.com/_R0Z0LERPlt8/StlPfC5FW2I/AAAAAAAAABM/1x9IFbGDUKs/S220/5609_123823013862_715783862_2424145_2786509_n.jpg'/></author><thr:total>0</thr:total></entry></feed>
