SlideShare a Scribd company logo
1 of 84
Download to read offline
Next generation graphics
SVG
by David Corbacho
Scalable Vector
Graphics
Representing graphics
with mathematical
expressions in XML
like is 1998
David Corbacho Román
Senior Drupal developer - Frontend
Drupal core contributor, module maintainer
(d.o. user: corbacho)
We are hiring
London
Twitter
@dcorbacho
Disclaimer: I’m not a designer
1. Brief introduction to SVG
2. The past
3. The present. Using SVG
4. SVG and Drupal
5. SVG 2: The future
Structure
SVG basic concepts
<line>
SVG basic concepts
<rect>
SVG basic concepts
<circle>
SVG basic concepts
<ellipsis>
SVG basic concepts
<polyline>
SVG basic concepts
<polygon>
SVG basic concepts
Uppercase: absolute
Lowercase: relative
L Lineto
M Moveto
C Curveto
z close path
<path fill="#004975"
d="M510,144.75c-39-24.75-77.25-34.5-11
4.75-59.25-23.25-15-55.5-53.25-82.5-85.5-
5.25,51.75-20.25,73.5-39,87.75-38.25,30-6
2.25,39-95.25,57-27.75,15-178.5,104.25-1
78.5,297.75,0,61.78,16.593,118.36,45.063
,166.77,60.697,103.2,175.4,169.23,298.44
,169.23,180.75,0,337.5-131.25,337.5-330,
0-109.15-44.33-185.49-88.28-234.63-36.0
8-40.34-71.9-62.36-82.72-69.12z"/>
Handcoded Twitter bird
https://twitter.com/danklammer/status/628866264153194496
Inkscape.(Open source)
Adobe Illustrator. (Best UI)
Sketch (the new guy)
For the rest of us mere mortals…
use SVG Editors
Optimize it
jakearchibald.github.io/svgomg/
Automate it
SVGO
Bloated SVG code?
Why SVG ?
Why SVG? Always Crisp
https://en.wikipedia.org/wiki/Vector_graphics
Why SVG? Scriptable
http://codepen.io/githiro/pen/xABCi
SVG DOM
Why SVG? Animatable
with:
CSS
JavaScript
SMIL *
Why SVG? Styleable with CSS
<path fill="#004975"
d="M510,144.75c-39-24.75-77.25-34.5-11
4.75-59.25-23.25-15-55.5-53.25-82.5-85.5-
5.25,51.75-20.25,73.5-39,87.75-38.25,30-6
2.25,39-95.25,57-27.75,15-178.5,104.25-1
78.5,297.75,0,61.78,16.593,118.36,45.063
,166.77,60.697,103.2,175.4,169.23,298.44
.druplicon {
fill:#004975; <path class=“druplicon” …
}
Why SVG?
Accessibility
http://www.paciellogroup.com/blog/2013/12/using-aria-
enhance-svg-accessibility/
Why SVG? Small size
For example, new google logo, 305 bytes
SVG DOM
http://gizmodo.com/how-could-googles-new-
logo-be-only-305-bytes-while-its-1728793790
1. Brief introduction to SVG
2. The past
3. The present. Using SVG
4. SVG and Drupal
5. SVG 2: The future
Structure
SVG 1.0 begins in 1998
http://www.w3.org/Talks/2014/schepers-accessible_graphics/rise-and-fall.svg
http://www.w3.org/Graphics/SVG/WG/wiki/Secret_Origin_of_SVG

SVG 1.0 = XML + SVG + DOM +
CSS + Animations +
Filters + XLINKS + …
2001.
SVG 1.0 released
Adobe releases SVG
Viewer 3
2003.
SVG 1.1 and SVG
Mobile:

Tiny and Basic
2005. Adobe
adopts Flash
2008
Apple blocks
Flash in
iPhone & iPad
2010
IE 9 release.
Implements 60% of
SVG spec
2011
SVG 1.1 2nd Edition
Apple Retina
2012
Android 3.x
implements
part of SVG
We need graphics for HD screens,
that works in all modern browsers
It’s the SVG
Renaissance!
SVG is perfect !!
1. Brief introduction to SVG
2. The past
3. The present. Using SVG
4. SVG and Drupal
5. SVG 2: The future
Structure
SVG Basic Support

95.92% of browsers (caniuse.com)
Firefox 26+
Chrome 31+
IE10+
Safari 7+
Opera 19+
iOS Safari 3.2+
IE 9 (limited feature set)
Android 3.x (no SVG filters)
SVG 1 is a new-old thing “Viejoven”
and it has “quirks”
SVG.
Markup and Image
The paradox of Schrödinger’s cat
SVG in HTML
“DEAD”
for security
“ALIVE”
SVG DOM
SVG (nowadays) is
a parallel universe,
where some rules
don’t apply
No z-index
Fixed in SVG 2
no
“structure” properties
via CSS
XML. So much fun
No problems the HTML5 way
jQuery .addClass
not working on
SVG elements
but .attr("class", "works");
.addClass fixed in jQuery 3
jQuery .append()
or .html()
not working on
SVG elements
http://stackoverflow.com/
questions/3642035/jquerys-
append-not-working-with-
svg-element
CSS transforms on
SVG
IE no support for CSS transforms
Firefox 41 fixed
SVG adds a new dimension of possibilities
5 ways of embedding SVG in your HTML
x
multiple ways of scripting SVG
x
multiple ways of adding CSS
x
multiple ways of “reusing” SVG elements xlink, def, symbol, fill, etc
x
html in your svg (foreignObject)
x
svg in your svg (nested svg)
x
svg in your CSS
x
multiple ways of animating techniques and libraries
x
multiple browsers. Fallback techniques
caniuse.com
can’t track
every single
combination
This is too much
SVG Experts
CSS
SVG community
@sarah_edo @anatudor@AmeliasBrain @rachelnabors@SaraSoueidan
Pushing forward SVG
Sharing best practices and code
W3C SVG Working Group
@svgeesus @shepazu@erikdahlstromTavmjong Bah @dirkschulze
They want SVG to succeed
Chris Coyier
css-tricks, codepen.io
If you have fun with SVG,
you will learn it faster
GSAP
http://codepen.io/chrisgannon/pen/xGwybB
snap.svg
http://snapsvg.io/demos/#coffee
SMIL
(deprecated in Chrome)
SVG Animations are neat and very
good support via JS
but.. really, add 79Kb to the page
load ?
Still… it’s a great way to learn SVG
USE case: SVG for
your logo
USE case: SVG for
icons
USE case: SVG for charts,
infographics,
"JavaScript journalism"
Think “jQuery for SVG”
min.
74.9 KB
min.
50.8 KB
d3.js predefined layouts
full
min
148 KB
Mike Bostock
building
more modular
d3.js version 4
d3.js force graph
1. Brief introduction to SVG
2. The past
3. The present. Using SVG
4. SVG and Drupal
5. SVG 2: The future
Structure
Thank you Ryan Frederick (ry5n)
Drupal 8 theme loads logo.svg by
default, not logo.png anymore
Issue: https://www.drupal.org/node/2142653
Change: https://www.drupal.org/node/2410787
feed.png to feed.svg
https://www.drupal.org/node/2427213
Drupal SVG
Guidelines (on work)
https://www.drupal.org/node/2433761
Similar project https://svgontheweb.com/
Drupal 7 has 0 SVG files in core
Drupal 8 has 79 SVG files in core
We use them as images, not taking full potential
SVG Sprite for toolbar icons

https://www.drupal.org/node/2306499
svgimg (Sandbox module)
https://www.drupal.org/sandbox/neilgardner/2505991
used in www.reallifedigital.com/
A word about security
http://www.slideshare.net/x00mario/the-image-that-called-me
1. Brief introduction to SVG
2. The past
3. The present. Using SVG
4. SVG and Drupal
5. SVG 2: The future
Structure
SVG 2 ripped appart in
core + “shared” modules
SVG 2 will bring more integration
with new web features such as
CSS, HTML5 and WOFF.
http://www.w3.org/Graphics/SVG/WG/wiki/SVG2_Requirements_Commitments
SVG 2 specs
http://www.w3.org/TR/SVG2/ (Working Draft)
https://svgwg.org/svg2-draft/ (Editors Draft)
https://github.com/w3c/svgwg
Conclusion
Conclusion
SVG is not new.. but it’s here to stay.
Now it’s the time.
and let’s bring more SVG goodness to
Drupal
Resources
Dmitry Baranovskiy - You Don't Know SVG

https://www.youtube.com/watch?v=SeLOt_BRAqc

"If you don't know svg you can't call yourself a Web Developer.
Call yourself a Web Enthusiast” — Dmitry
Tavmjong Bah - SVG 2 For the Artist and Developer

https://www.youtube.com/watch?v=UL2-ZAyvXOM 

Everything that Sarah Soueidan publishes.

http://sarasoueidan.com/articles/index.html

CSS Tricks. SVG category
2nd edition!
Vote this session
https://events.drupal.org/node/5511

More Related Content

What's hot

The Image that called me - Active Content Injection with SVG Files
The Image that called me - Active Content Injection with SVG FilesThe Image that called me - Active Content Injection with SVG Files
The Image that called me - Active Content Injection with SVG Files
Mario Heiderich
 

What's hot (20)

Html5 more than just html5 v final
Html5  more than just html5 v finalHtml5  more than just html5 v final
Html5 more than just html5 v final
 
JavaONE 2012 Using Java with HTML5 and CSS3
JavaONE 2012 Using Java with HTML5 and CSS3JavaONE 2012 Using Java with HTML5 and CSS3
JavaONE 2012 Using Java with HTML5 and CSS3
 
SVG - Scalable Vector Graphic
SVG - Scalable Vector GraphicSVG - Scalable Vector Graphic
SVG - Scalable Vector Graphic
 
Svghtml5 Meetup
Svghtml5 MeetupSvghtml5 Meetup
Svghtml5 Meetup
 
Thats Not Flash?
Thats Not Flash?Thats Not Flash?
Thats Not Flash?
 
Html5
Html5Html5
Html5
 
Rockstar Graphics with HTML5
Rockstar Graphics with HTML5Rockstar Graphics with HTML5
Rockstar Graphics with HTML5
 
The Modern Java Web Developer - JavaOne 2013
The Modern Java Web Developer - JavaOne 2013The Modern Java Web Developer - JavaOne 2013
The Modern Java Web Developer - JavaOne 2013
 
Accessibility Hacks version 2
Accessibility Hacks version 2Accessibility Hacks version 2
Accessibility Hacks version 2
 
Svg
SvgSvg
Svg
 
Html5
Html5Html5
Html5
 
Java Web Application Security - Denver JUG 2013
Java Web Application Security - Denver JUG 2013Java Web Application Security - Denver JUG 2013
Java Web Application Security - Denver JUG 2013
 
Accessibility Hacks Wordcamp Manchester October 2018
Accessibility Hacks Wordcamp Manchester October 2018Accessibility Hacks Wordcamp Manchester October 2018
Accessibility Hacks Wordcamp Manchester October 2018
 
Angular or Backbone: Go Mobile!
Angular or Backbone: Go Mobile!Angular or Backbone: Go Mobile!
Angular or Backbone: Go Mobile!
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
HTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web DevelopmentHTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web Development
 
Building an E-commerce website in MEAN stack
Building an E-commerce website in MEAN stackBuilding an E-commerce website in MEAN stack
Building an E-commerce website in MEAN stack
 
jQuery: The World's Most Popular JavaScript Library Comes to XPages
jQuery: The World's Most Popular JavaScript Library Comes to XPagesjQuery: The World's Most Popular JavaScript Library Comes to XPages
jQuery: The World's Most Popular JavaScript Library Comes to XPages
 
Html5 CSS3 jQuery Basic
Html5 CSS3 jQuery BasicHtml5 CSS3 jQuery Basic
Html5 CSS3 jQuery Basic
 
The Image that called me - Active Content Injection with SVG Files
The Image that called me - Active Content Injection with SVG FilesThe Image that called me - Active Content Injection with SVG Files
The Image that called me - Active Content Injection with SVG Files
 

Viewers also liked (6)

Dive Into SVG
Dive Into SVGDive Into SVG
Dive Into SVG
 
Whirlwind Tour of SVG (plus RaphaelJS)
Whirlwind Tour of SVG (plus RaphaelJS)Whirlwind Tour of SVG (plus RaphaelJS)
Whirlwind Tour of SVG (plus RaphaelJS)
 
Static CMS for web professionals and their clients
Static CMS for web professionals and their clientsStatic CMS for web professionals and their clients
Static CMS for web professionals and their clients
 
Pulse cms Nagoya meetup workshop
Pulse cms Nagoya meetup workshopPulse cms Nagoya meetup workshop
Pulse cms Nagoya meetup workshop
 
reveal.js 3.0.0
reveal.js 3.0.0reveal.js 3.0.0
reveal.js 3.0.0
 
SlideShare 101
SlideShare 101SlideShare 101
SlideShare 101
 

Similar to Next generation Graphics: SVG

Canvas Based Presentation tool - First Review
Canvas Based Presentation tool - First ReviewCanvas Based Presentation tool - First Review
Canvas Based Presentation tool - First Review
Arvind Krishnaa
 
Easy charting with
Easy charting withEasy charting with
Easy charting with
Major Ye
 
SnapyX
SnapyXSnapyX
SnapyX
ekino
 

Similar to Next generation Graphics: SVG (20)

SVG Icons and Screen Reader Accessibility
SVG Icons and Screen Reader AccessibilitySVG Icons and Screen Reader Accessibility
SVG Icons and Screen Reader Accessibility
 
D3.js and SVG
D3.js and SVGD3.js and SVG
D3.js and SVG
 
SVG Certification
SVG CertificationSVG Certification
SVG Certification
 
Professional reports with SVG
Professional reports with SVGProfessional reports with SVG
Professional reports with SVG
 
SVG 101
SVG 101SVG 101
SVG 101
 
Canvas Based Presentation tool - First Review
Canvas Based Presentation tool - First ReviewCanvas Based Presentation tool - First Review
Canvas Based Presentation tool - First Review
 
Accessibility Hacks Version 2
Accessibility Hacks Version 2Accessibility Hacks Version 2
Accessibility Hacks Version 2
 
Academy PRO: HTML5 API graphics
Academy PRO: HTML5 API graphicsAcademy PRO: HTML5 API graphics
Academy PRO: HTML5 API graphics
 
CANVAS vs SVG @ FrontInRio 2011
CANVAS vs SVG @ FrontInRio 2011CANVAS vs SVG @ FrontInRio 2011
CANVAS vs SVG @ FrontInRio 2011
 
SVGD3Angular2React
SVGD3Angular2ReactSVGD3Angular2React
SVGD3Angular2React
 
Easy charting with
Easy charting withEasy charting with
Easy charting with
 
SVG introduction
SVG   introductionSVG   introduction
SVG introduction
 
Web Vector Graphics
Web Vector GraphicsWeb Vector Graphics
Web Vector Graphics
 
pastel
pastelpastel
pastel
 
pastel
pastelpastel
pastel
 
SnapyX
SnapyXSnapyX
SnapyX
 
SnapyX - ParisJS
SnapyX - ParisJSSnapyX - ParisJS
SnapyX - ParisJS
 
Intro to CSS3
Intro to CSS3Intro to CSS3
Intro to CSS3
 
Html 5 svg
Html 5 svgHtml 5 svg
Html 5 svg
 
HTML5 - A Whirlwind tour
HTML5 - A Whirlwind tourHTML5 - A Whirlwind tour
HTML5 - A Whirlwind tour
 

Recently uploaded

📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
@Chandigarh #call #Girls 9053900678 @Call #Girls in @Punjab 9053900678
 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
nirzagarg
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Chandigarh Call girls 9053900678 Call girls in Chandigarh
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
nilamkumrai
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
@Chandigarh #call #Girls 9053900678 @Call #Girls in @Punjab 9053900678
 
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
nirzagarg
 

Recently uploaded (20)

Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls Dubai
 
Microsoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck MicrosoftMicrosoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck Microsoft
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
 
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
 
Yerawada ] Independent Escorts in Pune - Book 8005736733 Call Girls Available...
Yerawada ] Independent Escorts in Pune - Book 8005736733 Call Girls Available...Yerawada ] Independent Escorts in Pune - Book 8005736733 Call Girls Available...
Yerawada ] Independent Escorts in Pune - Book 8005736733 Call Girls Available...
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
 

Next generation Graphics: SVG