SlideShare a Scribd company logo
1 of 50
Download to read offline
1
Slide 1
2
Slide 2
2
•base
r[0, r-1]
−10)379(
−2)01011101(
−8)372(
−16F)9D23(
•


3
Slide 3
3

−
m-A1m+-… A2-A1-. A0A1… A2-nA1-nA
iA09i10
4
Slide 4
4
The value of
m-A1m+-… A2-A1-. A0A1… A2-nA1-nA
is calculated by
)i10i(A1-m..-i=) +i10i(A0..1-i=n
(126.53)10
= 1*102 + 2*101 + 6* 100 +
5*10-1 + 3*10-2
5
Slide 5
5
• “base” r (radix r)
• N = An-1 r n-1 + An-2r n-2 +… + A1r + A0 +
A-1 r -1 + A-2r -2 +… + A-m r -m
Most
Significant
Digit (MSD)
Least
Significant
Digit (LSD)
6
Slide 6
6
•r = 6
(312.4)6 = 362 + 161 + 260 + 46-1
= (116.66)10
r10
7
Slide 7
7
2

−01
201
•
(101101.10)2 = 125 + 024 + 123 + 122 + 021 +
120 + 12-1 + 02-2
(in decimal) = 32 + 0 + 8 + 4 + 0 + 1 + ½ + 0
= (45.5)10
8
Slide 8
8
2
•
(1001.011)2 = 123 + 022 + 021 + 120 +
02-1 + 12-2 + 12-3
(in decimal) = 8 + 1 + 0.25 + 0.125
= (9.375)10
9
Slide 9
9
32 16 8 4 2 1 .5 .25 .125 .0625
( 1 1 0 1 0 1 . 1 0 1 1 ) = ( 53.6875 )
B D
11
Slide 10
10
2
Memorize at least through 212
11
Slide 11
11
8
•8
07
•
(762)8 = 782 + 681 + 280
(in decimal) = 448 + 48 + 2
= (498)10
12
Slide 12
12
16
•16
0, …, 9, A, B, C, D, E, F
A=10, B=11, … , F = 15
•
(3FB)16 = 3162 + 15161 + 11160
(in decimal) = 768 + 240 + 11
= (1019)10
13
Slide 13
13
r
r



14
Slide 14
14
r
0.78125 x 16 = 12.5 int = 12 = C
0.5 x 16 = 8.0 int = 8
Read
down
0.7812510 = 0.C816
•
•r
•
0.7812510 = (?)16
15
Slide 15
15
r
0.1 x 2 = 0.2 int = 0
0.2 x 2 = 0.4 int = 0
0.4 x 2 = 0.8 int = 0
0.8 x 2 = 1.6 int = 1
0.6 x 2 = 1.2 int = 1
0.2 x 2 = 0.4 int = 0
0.4 x 2 = 0.8 int = 0
Read
down
0.110 = 0.000112
•
0.110 = (?)2
16
Slide 16
16
Memorize at least Binary and Hex
17
Slide 17
17

•N
.1
1N
.2MSB
.31N


18
Slide 18
18

•
• N = (717)10
717 – 512 = 205 = N1 512 = 29
205 –128 = 77 = N2 128 = 27
77 – 64 = 13 = N3 64 = 26
13 – 8 = 5 = N4 8 = 23
5 – 4 = 1 = N5 4 = 22
1 – 1 = 0 = N6 1 = 20
 (717)10 = 29 + 27 + 26 + 23 + 22 + 20
= ( 1 0 1 1 0 0 1 1 0 1)2
19
Slide 19
19
•
32=8

•
42=16

21
Slide 20
20
Binary  Octal
(011 010 101 000 . 111 101 011 100)2
( 3 2 5 0 . 7 5 3 4 )8
(11010101000.1111010111)2
21
Slide 21
21
Binary  Hex
( 6 A 8 . F 5 C )16
( 0110 1010 1000 . 1111 0101 1100 )2
(110 1010 1000 . 1111 0101 11 )2
22
Slide 22
22
Octal  Hex
•
Hex  Binary  Octal
Octal  Binary  Hex
23
Slide 23
23
•
Decimal Binary Octal Hex
329.3935 ? ? ?
? 10101101.011 ? ?
? ? 336.5 ?
? ? ? F9C7.A
24
Slide 24
24
•
•1+1 = 10
0+0 = 0(c0) (sum 0 with carry 0)
0+1 = 1+0 = 1(c0)
1+1 = 0(c1)
1+1+1 = 1(c1)Carry 1 1 1 1 1 0
Augend 0 0 1 0 0 1
Addend 0 1 1 1 1 1
Result 1 0 1 0 0 0
1 0 0 0 1 1 0
1 0 1 1 0 1
+ 0 1 1 0 0 1
+1+1+1
25
Slide 25
25
Overflow
=nn+1
−
26
Slide 26
26
•
0-0 = 1-1 = 0 (b0) (result 0 with borrow 0)
1-0 = 1 (b0)
0-1 = 1 (b1)
…
Borrow 1 1 0 0
Minuend 1 1 0 1 1
Subtrahend 0 1 1 0 1
Result 0 1 1 1 0
27
Slide 27
27


.
−1+1=10
28
Slide 28
28
•

•
Sign magnitude
1’s complement
2’s complement
−
•

−
−
29
Slide 29
29
0000
0111
0011
1011
1111
1110
1101
1100
1010
1001
1000
0110
0101
0100
0010
0001
+0
+1
+2
+3
+4
+5
+6
+7-0
-1
-2
-3
-4
-5
-6
-7
0 100 = + 4
1 100 = - 4
+
-
High order bit is sign: 0 = positive (or zero), 1 = negative
Three low order bits show the magnitude: 0 (000) thru 7 (111)
Number range for n bits = -(2 n-1 - 1) to (2 n-1 -1)
Two representations for 0
Cumbersome addition/subtraction
Must compare magnitudes to determine the sign of result
31
Slide 30
30
If N is a positive number, then its 1's complement, N, is defined as:
N = (2 - 1) - N
n
Example: 1's complement of 7
Shortcut method:
Simply perform bit-wise complement
0111 -> 1000
2 = 10000
-
1 = 00001
1111
-
7 = 0111
1000 = -7 in 1's comp.
4
31
Slide 31
31
0000
0111
0011
1011
1111
1110
1101
1100
1010
1001
1000
0110
0101
0100
0010
0001
+0
+1
+2
+3
+4
+5
+6
+7-7
-6
-5
-4
-3
-2
-1
-0
0 100 = + 4
1 011 = - 4
+
-
Subtraction implemented by addition & 1's complement
Still two representations of 0! This causes some problems
Some complexities in addition
32
Slide 32
32
N* = 2 - N
n 4
Example: 2’s complement of 7
2 = 10000
7 = 0111
1001 = repr. of -7
sub
Example: 2’s complement of -7 2 = 10000
-7 = 1001
0111 = repr. of 7
4
sub
Shortcut method:
2’s complement = bit-wise complement + 1
0111 -> 1000 + 1 -> 1001 (representation of -7)
1001 -> 0110 + 1 -> 0111 (representation of 7)
If N is a positive number, then its 2's complement, N*, is defined as:
33
Slide 33
33
Only one representation for 0
One more negative number than positive number (-8)
Number range for n bits = -(2 n-1) to (2 n-1 -1)
0000
0111
0011
1011
1111
1110
1101
1100
1010
1001
1000
0110
0101
0100
0010
0001
+0
+1
+2
+3
+4
+5
+6
+7-8
-7
-6
-5
-4
-3
-2
-1
0 100 = + 4
1 100 = - 4
+
-
Like 1's comp
except shifted
one position
clockwise
34
Slide 34
•
•
34
35
Slide 35
35
Binary-Coded Decimal (BCD)
 A decimal code:
Decimal numbers (0..9)
are coded using 4-bit
distinct binary words
 Observe that the codes
1010 .. 1111 (decimal
10..15) are NOT
represented (invalid
BCD codes)
36
Slide 36
36
Binary-Coded Decimal
• To code a number with n decimal digits,
we need 4n bits in BCD
e.g. (365)10 = (0011 0110 0101)BCD
• This is different from converting to
binary, which is (365)10 = (101101101)2
• Clearly, BCD requires more bits. BUT, it
is easier to understand/interpret
37
Slide 37
37
BCD Addition
Case 1: 0001 1
0101 5
(0) 0110 (0) 6
Case 2: 0110 6
0101 5
(0) 1011 (1) 1
Case 3: 1000 8
1001 9
(1) 0001 (1) 7
WRONG!
Note that for cases 2 and 3,
adding number 6 (0110)
gives us the correct result.
How can we identify the wrong cases?
38
Slide 38
38
BCD Addition (cont.)
• BCD addition is therefore
performed as follows:
1) Add the two BCD digits together using
normal binary addition
2) Check if correction is needed
a) 4-bit sum is in range of 1010 to 1111
OR
b) carry out of MSB = 1
3) If correction is required, add 0110 to 4-bit
sum to get the correct result
 BCD carry out = 1
39
Slide 39
39
BCD Addition (cont.)
• Example: Add 448 and 489 in BCD.
0100 0100 1000 (448 in BCD)
0100 1000 1001 (489 in BCD)
10001 (carry out of MSB=1, add 6)
10111 (carry 1 into middle digit)
1101 (between 10 and 15, add 6)
10011 (carry 1 into leftmost digit)
1001 0011 0111 (BCD coding of 93710)
0110
0110
41
Slide 40
40
ASCII character code
We also need to represent letters and other
symbols  alphanumeric codes
ASCII = American Standard Code for
Information Interchange. Also known as
Western European
It contains 128 characters:
− 94 printable (26 uppercase and 26 lowercase
letters, 10 digits, 32 special symbols)
− 34 non-printable (for control functions)
Uses 7-bit binary codes to represent each of
the 128 characters
41
Slide 41
41
ASCII Table
Bell
Tab
Line Fd
Crg Ret
Null
BkSpc
Space
Escape
42
Slide 42
42
ASCII Control Codes
43
Slide 43
43
Unicode
 Established standard (16-bit alphanumeric
code) for international character sets
 Since it is 16-bit, it has 65,536 codes
 Represented by 4 Hex digits
 ASCII is between 000016 .. 007B16
44
Slide 44
44
Unicode
062B 1579 062C 1580 062D 1581 062E 1582
0633 1587 0634 1588 0635 1589 0636 1590
063B 1595 ‫ػ‬ 063C 1596 ‫ػ‬ 063D 1597 ‫ػ‬ 063E 1598 ‫ػ‬
0643 1603 0644 1604 0645 1605 0646 1606
064B 1611 064C 1612 064D 1613 064E 1614
0653 1619 0654 1620 0655 1621 0656 1622
065B 1627 065C 1628 065D 1629 065E 1630
0663 1635 3 0664 1636 4 0665 1637 5 0666 1638 6
066B 1643 066C 1644 066D 1645 066E 1646
0673 1651 0674 1652 0675 1653 0676 1654
067B 1659 067C 1660 067D 1661 067E 1662
0683 1667 0684 1668 0685 1669 0686 1670
068B 1675 068C 1676 068D 1677 068E 1678
45
Slide 45
45
ASCII Parity Bit
Parity coding is used to detect errors in
data communication and processing
−An 8th bit is added to the 7-bit ASCII code
Even (Odd) parity: set the parity bit so as
to make the # of 1’s in the 8-bit code even
(odd)
46
Slide 46
46
Gray Codes
• Gray codes are minimum change
codes
From one numeric representation to the
next, only one bit changes
Applications:
− Later.
47
Slide 47
47
Gray Codes (cont.)
Binary
0000
0001
0010
0011
0100
0101
0110
0111
1000
1001
1010
1011
1100
1101
1110
1111
Gray
0000
0001
0011
0010
0110
0111
0101
0100
1100
1101
1111
1110
1010
1011
1001
1000
Binary
00
01
10
11
Gray
00
01
11
10
Binary
000
001
010
011
100
101
110
111
Gray
000
001
011
010
110
111
101
100
48
Slide 48
48
Excess-3
•BCD+3

self-comlpement code
−=
49
Slide 49
• Excess-
• Excess-
49
51
Slide 50
•
50

More Related Content

What's hot

Pertemuan 2 - Sistem Bilangan
Pertemuan 2 - Sistem BilanganPertemuan 2 - Sistem Bilangan
Pertemuan 2 - Sistem Bilanganahmad haidaroh
 
Introduction to digital electornics
Introduction to digital electornicsIntroduction to digital electornics
Introduction to digital electornicsharman kaur
 
Notes unit 2
Notes   unit 2Notes   unit 2
Notes unit 2KamarajA5
 
Binary Mathematics Classwork and Hw
Binary Mathematics Classwork and HwBinary Mathematics Classwork and Hw
Binary Mathematics Classwork and HwJoji Thompson
 
comp.org Chapter 2
comp.org Chapter 2comp.org Chapter 2
comp.org Chapter 2Rajat Sharma
 
Binary Number into Decimal Numbers
Binary Number into Decimal NumbersBinary Number into Decimal Numbers
Binary Number into Decimal NumbersGaditek
 
The solution of problem
The solution of problemThe solution of problem
The solution of problemnoviannurf
 
Kuncisoal mtk-un-smk-prwsta
Kuncisoal mtk-un-smk-prwstaKuncisoal mtk-un-smk-prwsta
Kuncisoal mtk-un-smk-prwstamardiyanto83
 
Chapter 6 base_number
Chapter 6 base_numberChapter 6 base_number
Chapter 6 base_numberNazrul Shah
 
Introduction of Equation of pair of straight lines
Introduction of Equation of pair of straight lines Introduction of Equation of pair of straight lines
Introduction of Equation of pair of straight lines Janak Singh saud
 
PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)Fizaril Amzari Omar
 
PST SC015 Chapter 2 Computer System 2017/2018
PST SC015 Chapter 2 Computer System 2017/2018PST SC015 Chapter 2 Computer System 2017/2018
PST SC015 Chapter 2 Computer System 2017/2018Fizaril Amzari Omar
 
Order independent transparency
Order independent transparencyOrder independent transparency
Order independent transparencyDaosheng Mu
 
Differential equation study guide for exam (formula sheet)
Differential equation study guide for exam (formula sheet)Differential equation study guide for exam (formula sheet)
Differential equation study guide for exam (formula sheet)Dan Al
 

What's hot (20)

Pertemuan 2 - Sistem Bilangan
Pertemuan 2 - Sistem BilanganPertemuan 2 - Sistem Bilangan
Pertemuan 2 - Sistem Bilangan
 
Introduction to digital electornics
Introduction to digital electornicsIntroduction to digital electornics
Introduction to digital electornics
 
Notes unit 2
Notes   unit 2Notes   unit 2
Notes unit 2
 
Binary Mathematics Classwork and Hw
Binary Mathematics Classwork and HwBinary Mathematics Classwork and Hw
Binary Mathematics Classwork and Hw
 
comp.org Chapter 2
comp.org Chapter 2comp.org Chapter 2
comp.org Chapter 2
 
Binary Number into Decimal Numbers
Binary Number into Decimal NumbersBinary Number into Decimal Numbers
Binary Number into Decimal Numbers
 
Number system
Number systemNumber system
Number system
 
The solution of problem
The solution of problemThe solution of problem
The solution of problem
 
The solution-of-problem
The solution-of-problemThe solution-of-problem
The solution-of-problem
 
drill
drilldrill
drill
 
Number System
Number SystemNumber System
Number System
 
Kuncisoal mtk-un-smk-prwsta
Kuncisoal mtk-un-smk-prwstaKuncisoal mtk-un-smk-prwsta
Kuncisoal mtk-un-smk-prwsta
 
Chapter 6 base_number
Chapter 6 base_numberChapter 6 base_number
Chapter 6 base_number
 
Squaring 1
Squaring   1Squaring   1
Squaring 1
 
Slideshare
SlideshareSlideshare
Slideshare
 
Introduction of Equation of pair of straight lines
Introduction of Equation of pair of straight lines Introduction of Equation of pair of straight lines
Introduction of Equation of pair of straight lines
 
PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)
 
PST SC015 Chapter 2 Computer System 2017/2018
PST SC015 Chapter 2 Computer System 2017/2018PST SC015 Chapter 2 Computer System 2017/2018
PST SC015 Chapter 2 Computer System 2017/2018
 
Order independent transparency
Order independent transparencyOrder independent transparency
Order independent transparency
 
Differential equation study guide for exam (formula sheet)
Differential equation study guide for exam (formula sheet)Differential equation study guide for exam (formula sheet)
Differential equation study guide for exam (formula sheet)
 

Similar to 1

ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.pptssuser52a19e
 
Review on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and HexadecimalReview on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and HexadecimalUtkirjonUbaydullaev1
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.pptRAJKUMARP63
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.pptRabiaAsif31
 
Number System 123.ppt is for binary number system
Number System 123.ppt is for binary number systemNumber System 123.ppt is for binary number system
Number System 123.ppt is for binary number systemdrpreetiwctm
 
Number system and codes
Number system and codesNumber system and codes
Number system and codesAbhiraj Bohra
 
Digital Logic Design.pptx
Digital Logic Design.pptxDigital Logic Design.pptx
Digital Logic Design.pptxAminaZahid16
 
Digital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdfDigital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdfrahul143341
 
digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptxsulekhasaxena2
 
Logic Design 2009
Logic Design 2009Logic Design 2009
Logic Design 2009lionking
 
Video lectures
Video lecturesVideo lectures
Video lecturesEdhole.com
 
2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpuWan Afirah
 
Mba admission in india
Mba admission in indiaMba admission in india
Mba admission in indiaEdhole.com
 

Similar to 1 (20)

ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
binary-numbers.ppt
binary-numbers.pptbinary-numbers.ppt
binary-numbers.ppt
 
Review on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and HexadecimalReview on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and Hexadecimal
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
Number System 123.ppt is for binary number system
Number System 123.ppt is for binary number systemNumber System 123.ppt is for binary number system
Number System 123.ppt is for binary number system
 
Number system and codes
Number system and codesNumber system and codes
Number system and codes
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
number system.ppt
number system.pptnumber system.ppt
number system.ppt
 
Digital Logic Design.pptx
Digital Logic Design.pptxDigital Logic Design.pptx
Digital Logic Design.pptx
 
Digital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdfDigital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdf
 
digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptx
 
Number system
Number systemNumber system
Number system
 
Logic Design 2009
Logic Design 2009Logic Design 2009
Logic Design 2009
 
Video lectures
Video lecturesVideo lectures
Video lectures
 
2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpu
 
L2 number
L2 numberL2 number
L2 number
 
Mba admission in india
Mba admission in indiaMba admission in india
Mba admission in india
 
08. Numeral Systems
08. Numeral Systems08. Numeral Systems
08. Numeral Systems
 

Recently uploaded

Dubai Call Girls O528786472 Call Girls In Dubai Wisteria
Dubai Call Girls O528786472 Call Girls In Dubai WisteriaDubai Call Girls O528786472 Call Girls In Dubai Wisteria
Dubai Call Girls O528786472 Call Girls In Dubai WisteriaUnited Arab Emirates
 
哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样
哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样
哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样qaffana
 
9004554577, Get Adorable Call Girls service. Book call girls & escort service...
9004554577, Get Adorable Call Girls service. Book call girls & escort service...9004554577, Get Adorable Call Girls service. Book call girls & escort service...
9004554577, Get Adorable Call Girls service. Book call girls & escort service...Pooja Nehwal
 
Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...
Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...
Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...Pooja Nehwal
 
VVIP Pune Call Girls Balaji Nagar (7001035870) Pune Escorts Nearby with Compl...
VVIP Pune Call Girls Balaji Nagar (7001035870) Pune Escorts Nearby with Compl...VVIP Pune Call Girls Balaji Nagar (7001035870) Pune Escorts Nearby with Compl...
VVIP Pune Call Girls Balaji Nagar (7001035870) Pune Escorts Nearby with Compl...Call Girls in Nagpur High Profile
 
VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...
VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...
VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...Call Girls in Nagpur High Profile
 
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...Call Girls in Nagpur High Profile
 
Call Girls Dubai Slut Wife O525547819 Call Girls Dubai Gaped
Call Girls Dubai Slut Wife O525547819 Call Girls Dubai GapedCall Girls Dubai Slut Wife O525547819 Call Girls Dubai Gaped
Call Girls Dubai Slut Wife O525547819 Call Girls Dubai Gapedkojalkojal131
 
Russian Call Girls In South Delhi Delhi 9711199012 💋✔💕😘 Independent Escorts D...
Russian Call Girls In South Delhi Delhi 9711199012 💋✔💕😘 Independent Escorts D...Russian Call Girls In South Delhi Delhi 9711199012 💋✔💕😘 Independent Escorts D...
Russian Call Girls In South Delhi Delhi 9711199012 💋✔💕😘 Independent Escorts D...nagunakhan
 
如何办理萨省大学毕业证(UofS毕业证)成绩单留信学历认证原版一比一
如何办理萨省大学毕业证(UofS毕业证)成绩单留信学历认证原版一比一如何办理萨省大学毕业证(UofS毕业证)成绩单留信学历认证原版一比一
如何办理萨省大学毕业证(UofS毕业证)成绩单留信学历认证原版一比一ga6c6bdl
 
Call Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up Number
Call Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up NumberCall Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up Number
Call Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up NumberMs Riya
 
(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service
(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service
(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
Call Girls In Andheri East Call 9892124323 Book Hot And Sexy Girls,
Call Girls In Andheri East Call 9892124323 Book Hot And Sexy Girls,Call Girls In Andheri East Call 9892124323 Book Hot And Sexy Girls,
Call Girls In Andheri East Call 9892124323 Book Hot And Sexy Girls,Pooja Nehwal
 
9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...
9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...
9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...Pooja Nehwal
 
Russian Escorts in lucknow 💗 9719455033 💥 Lovely Lasses: Radiant Beauties Shi...
Russian Escorts in lucknow 💗 9719455033 💥 Lovely Lasses: Radiant Beauties Shi...Russian Escorts in lucknow 💗 9719455033 💥 Lovely Lasses: Radiant Beauties Shi...
Russian Escorts in lucknow 💗 9719455033 💥 Lovely Lasses: Radiant Beauties Shi...nagunakhan
 
(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)
(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)
(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)kojalkojal131
 
Call Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
FULL ENJOY - 8264348440 Call Girls in Hauz Khas | Delhi
FULL ENJOY - 8264348440 Call Girls in Hauz Khas | DelhiFULL ENJOY - 8264348440 Call Girls in Hauz Khas | Delhi
FULL ENJOY - 8264348440 Call Girls in Hauz Khas | Delhisoniya singh
 

Recently uploaded (20)

Dubai Call Girls O528786472 Call Girls In Dubai Wisteria
Dubai Call Girls O528786472 Call Girls In Dubai WisteriaDubai Call Girls O528786472 Call Girls In Dubai Wisteria
Dubai Call Girls O528786472 Call Girls In Dubai Wisteria
 
哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样
哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样
哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样
 
9004554577, Get Adorable Call Girls service. Book call girls & escort service...
9004554577, Get Adorable Call Girls service. Book call girls & escort service...9004554577, Get Adorable Call Girls service. Book call girls & escort service...
9004554577, Get Adorable Call Girls service. Book call girls & escort service...
 
Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...
Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...
Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...
 
VVIP Pune Call Girls Balaji Nagar (7001035870) Pune Escorts Nearby with Compl...
VVIP Pune Call Girls Balaji Nagar (7001035870) Pune Escorts Nearby with Compl...VVIP Pune Call Girls Balaji Nagar (7001035870) Pune Escorts Nearby with Compl...
VVIP Pune Call Girls Balaji Nagar (7001035870) Pune Escorts Nearby with Compl...
 
VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...
VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...
VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...
 
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
 
Call Girls Dubai Slut Wife O525547819 Call Girls Dubai Gaped
Call Girls Dubai Slut Wife O525547819 Call Girls Dubai GapedCall Girls Dubai Slut Wife O525547819 Call Girls Dubai Gaped
Call Girls Dubai Slut Wife O525547819 Call Girls Dubai Gaped
 
Russian Call Girls In South Delhi Delhi 9711199012 💋✔💕😘 Independent Escorts D...
Russian Call Girls In South Delhi Delhi 9711199012 💋✔💕😘 Independent Escorts D...Russian Call Girls In South Delhi Delhi 9711199012 💋✔💕😘 Independent Escorts D...
Russian Call Girls In South Delhi Delhi 9711199012 💋✔💕😘 Independent Escorts D...
 
如何办理萨省大学毕业证(UofS毕业证)成绩单留信学历认证原版一比一
如何办理萨省大学毕业证(UofS毕业证)成绩单留信学历认证原版一比一如何办理萨省大学毕业证(UofS毕业证)成绩单留信学历认证原版一比一
如何办理萨省大学毕业证(UofS毕业证)成绩单留信学历认证原版一比一
 
Call Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up Number
Call Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up NumberCall Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up Number
Call Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up Number
 
(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service
(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service
(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service
 
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
Call Girls In Andheri East Call 9892124323 Book Hot And Sexy Girls,
Call Girls In Andheri East Call 9892124323 Book Hot And Sexy Girls,Call Girls In Andheri East Call 9892124323 Book Hot And Sexy Girls,
Call Girls In Andheri East Call 9892124323 Book Hot And Sexy Girls,
 
9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...
9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...
9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...
 
Russian Escorts in lucknow 💗 9719455033 💥 Lovely Lasses: Radiant Beauties Shi...
Russian Escorts in lucknow 💗 9719455033 💥 Lovely Lasses: Radiant Beauties Shi...Russian Escorts in lucknow 💗 9719455033 💥 Lovely Lasses: Radiant Beauties Shi...
Russian Escorts in lucknow 💗 9719455033 💥 Lovely Lasses: Radiant Beauties Shi...
 
(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)
(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)
(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)
 
Call Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur Escorts
 
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
FULL ENJOY - 8264348440 Call Girls in Hauz Khas | Delhi
FULL ENJOY - 8264348440 Call Girls in Hauz Khas | DelhiFULL ENJOY - 8264348440 Call Girls in Hauz Khas | Delhi
FULL ENJOY - 8264348440 Call Girls in Hauz Khas | Delhi
 

1