├── .gitignore ├── README.md ├── handouts ├── slides-gitforgrownups-oscon-webinar-notes.pdf ├── slides-gitforgrownups-oscon.pdf ├── slides-gitforteams-lonestarphp.pdf └── slides-gitforteams-oscon.pdf ├── lessons ├── 00-intro │ ├── README.md │ └── overview-script.md ├── 01-getting-started │ └── README.md ├── 02-clone-remote │ └── README.md ├── 03-config │ └── README.md ├── 04-init-local │ └── README.md ├── 05-connect-remote │ └── README.md ├── 06-branches │ └── README.md ├── 07-tags │ └── README.md ├── 08-find-and-fix │ └── README.md ├── 09-rollback-reset │ └── README.md ├── 10-rebase │ └── README.md ├── 11-github │ └── README.md ├── 12-bitbucket │ └── README.md ├── Makefile ├── README.md ├── README.pdf └── title.md ├── resources ├── bzr-log-graphical.png ├── git-log-graphical.png ├── sample-bash_profile.md ├── sample-gitconfig.md ├── strategy-branching-cd.png ├── strategy-branching-gitflow.png ├── strategy-permissions-branching.png ├── strategy-permissions-centralized.png ├── strategy-permissions-forking.png ├── strategy-permissions-patching.png ├── workflow-centralized.png ├── workflow-gatekeeper-automated.png ├── workflow-gatekeeper-human.png ├── workflow-peerreview.png ├── workflow-sample-diagram.png ├── workflow-sample-starwars.md ├── workflow-sample-whisperingpines-code.md ├── workflow-sample-whisperingpines-deployment.md ├── workflow-sample-whisperingpines-releasecycle.md ├── workflow-single-branch.png ├── workflow-starwars.png ├── workflow-undoing-changes.bmml ├── workflow-undoing-changes.png ├── workflow-undoing-merge.bmml ├── workflow-undoing-merge.png └── workflow-whisperingpines.png └── slides ├── README.md ├── lib ├── .DS_Store ├── reveal.js │ ├── .gitignore │ ├── .travis.yml │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.min.css │ │ └── theme │ │ │ ├── README.md │ │ │ ├── beige.css │ │ │ ├── blood.css │ │ │ ├── default.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── blood.scss │ │ │ ├── default.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ └── solarized.scss │ │ │ └── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ ├── index.html │ ├── js │ │ ├── reveal.js │ │ └── reveal.min.js │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league_gothic-webfont.eot │ │ │ ├── league_gothic-webfont.svg │ │ │ ├── league_gothic-webfont.ttf │ │ │ ├── league_gothic-webfont.woff │ │ │ └── league_gothic_license │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ ├── package.json │ ├── plugin │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── leap │ │ │ └── leap.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── master.js │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── postmessage │ │ │ ├── example.html │ │ │ └── postmessage.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── remotes │ │ │ └── remotes.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ └── test │ │ ├── examples │ │ ├── assets │ │ │ ├── image1.png │ │ │ └── image2.png │ │ ├── barebones.html │ │ ├── embedded-media.html │ │ ├── math.html │ │ └── slide-backgrounds.html │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test.html │ │ └── test.js └── themes │ ├── .DS_Store │ ├── drupalize.me │ ├── background.png │ ├── drupalize.me.css │ ├── images │ │ ├── d8logo.svg │ │ ├── drupalizeme-logo.png │ │ └── lullabot-logo.png │ └── logo.png │ └── gitforteams │ └── oreilly-pink.css ├── session-proposals.md └── slides ├── 00-exit-evals.md ├── 00-instructor-intro.md ├── README.md ├── TEMPLATE.html ├── assets ├── beesuit.jpg ├── bloom-taxonomy.jpg ├── fonts │ ├── .DS_Store │ └── theleagueof-league-gothic │ │ ├── .gitignore │ │ ├── LeagueGothic-CondensedItalic.otf │ │ ├── LeagueGothic-CondensedRegular.otf │ │ ├── LeagueGothic-Italic.otf │ │ ├── LeagueGothic-Regular.otf │ │ ├── Open Font License FAQ.markdown │ │ ├── Open Font License.markdown │ │ ├── images │ │ ├── league-gothic-1.png │ │ ├── league-gothic-2.png │ │ ├── league-gothic-3.png │ │ ├── league-gothic-4.png │ │ ├── league-gothic-5.jpg │ │ └── league-gothic-6.png │ │ ├── readme.markdown │ │ ├── source │ │ ├── League Gothic Condensed Italic.glyphs │ │ ├── League Gothic Condensed Italic.ufo │ │ │ ├── features.fea │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs │ │ │ │ ├── AE_.glif │ │ │ │ ├── A_.glif │ │ │ │ ├── Aacute_.glif │ │ │ │ ├── Abreve_.glif │ │ │ │ ├── Acircumflex_.glif │ │ │ │ ├── Adieresis_.glif │ │ │ │ ├── Agrave_.glif │ │ │ │ ├── Amacron_.glif │ │ │ │ ├── Aogonek_.glif │ │ │ │ ├── Aring_.glif │ │ │ │ ├── Atilde_.glif │ │ │ │ ├── B_.glif │ │ │ │ ├── CR_.glif │ │ │ │ ├── C_.glif │ │ │ │ ├── Cacute_.glif │ │ │ │ ├── Ccaron_.glif │ │ │ │ ├── Ccedilla_.glif │ │ │ │ ├── Ccircumflex_.glif │ │ │ │ ├── Cdotaccent_.glif │ │ │ │ ├── D_.glif │ │ │ │ ├── Dcaron_.glif │ │ │ │ ├── Dcroat_.glif │ │ │ │ ├── E_.glif │ │ │ │ ├── Eacute_.glif │ │ │ │ ├── Ebreve_.glif │ │ │ │ ├── Ecaron_.glif │ │ │ │ ├── Ecircumflex_.glif │ │ │ │ ├── Edieresis_.glif │ │ │ │ ├── Edotaccent_.glif │ │ │ │ ├── Egrave_.glif │ │ │ │ ├── Emacron_.glif │ │ │ │ ├── Eng_.glif │ │ │ │ ├── Eogonek_.glif │ │ │ │ ├── Eth_.glif │ │ │ │ ├── Euro_.glif │ │ │ │ ├── F_.glif │ │ │ │ ├── G_.glif │ │ │ │ ├── Gbreve_.glif │ │ │ │ ├── Gcircumflex_.glif │ │ │ │ ├── Gcommaaccent_.glif │ │ │ │ ├── Gdotaccent_.glif │ │ │ │ ├── H_.glif │ │ │ │ ├── Hbar_.glif │ │ │ │ ├── Hcircumflex_.glif │ │ │ │ ├── IJ_.glif │ │ │ │ ├── I_.glif │ │ │ │ ├── Iacute_.glif │ │ │ │ ├── Ibreve_.glif │ │ │ │ ├── Icircumflex_.glif │ │ │ │ ├── Idieresis_.glif │ │ │ │ ├── Idotaccent_.glif │ │ │ │ ├── Igrave_.glif │ │ │ │ ├── Imacron_.glif │ │ │ │ ├── Iogonek_.glif │ │ │ │ ├── Itilde_.glif │ │ │ │ ├── J_.glif │ │ │ │ ├── Jcircumflex_.glif │ │ │ │ ├── K_.glif │ │ │ │ ├── Kcommaaccent_.glif │ │ │ │ ├── L_.glif │ │ │ │ ├── Lacute_.glif │ │ │ │ ├── Lcaron_.glif │ │ │ │ ├── Lcommaaccent_.glif │ │ │ │ ├── Ldot_.glif │ │ │ │ ├── Lslash_.glif │ │ │ │ ├── M_.glif │ │ │ │ ├── N_.glif │ │ │ │ ├── Nacute_.glif │ │ │ │ ├── Ncaron_.glif │ │ │ │ ├── Ncommaaccent_.glif │ │ │ │ ├── Ntilde_.glif │ │ │ │ ├── OE_.glif │ │ │ │ ├── O_.glif │ │ │ │ ├── Oacute_.glif │ │ │ │ ├── Obreve_.glif │ │ │ │ ├── Ocircumflex_.glif │ │ │ │ ├── Odieresis_.glif │ │ │ │ ├── Ograve_.glif │ │ │ │ ├── Ohungarumlaut_.glif │ │ │ │ ├── Omacron_.glif │ │ │ │ ├── Oslash_.glif │ │ │ │ ├── Otilde_.glif │ │ │ │ ├── P_.glif │ │ │ │ ├── Q_.glif │ │ │ │ ├── R_.glif │ │ │ │ ├── Racute_.glif │ │ │ │ ├── Rcaron_.glif │ │ │ │ ├── Rcommaaccent_.glif │ │ │ │ ├── S_.glif │ │ │ │ ├── Sacute_.glif │ │ │ │ ├── Scaron_.glif │ │ │ │ ├── Scedilla_.glif │ │ │ │ ├── Scircumflex_.glif │ │ │ │ ├── T_.glif │ │ │ │ ├── Tbar_.glif │ │ │ │ ├── Tcaron_.glif │ │ │ │ ├── Thorn_.glif │ │ │ │ ├── U_.glif │ │ │ │ ├── Uacute_.glif │ │ │ │ ├── Ubreve_.glif │ │ │ │ ├── Ucircumflex_.glif │ │ │ │ ├── Udieresis_.glif │ │ │ │ ├── Ugrave_.glif │ │ │ │ ├── Uhungarumlaut_.glif │ │ │ │ ├── Umacron_.glif │ │ │ │ ├── Uogonek_.glif │ │ │ │ ├── Uring_.glif │ │ │ │ ├── Utilde_.glif │ │ │ │ ├── V_.glif │ │ │ │ ├── W_.glif │ │ │ │ ├── Wcircumflex_.glif │ │ │ │ ├── X_.glif │ │ │ │ ├── Y_.glif │ │ │ │ ├── Yacute_.glif │ │ │ │ ├── Ycircumflex_.glif │ │ │ │ ├── Ydieresis_.glif │ │ │ │ ├── Z_.glif │ │ │ │ ├── Zacute_.glif │ │ │ │ ├── Zcaron_.glif │ │ │ │ ├── Zdotaccent_.glif │ │ │ │ ├── _notdef.glif │ │ │ │ ├── a.glif │ │ │ │ ├── aacute.glif │ │ │ │ ├── abreve.glif │ │ │ │ ├── acircumflex.glif │ │ │ │ ├── acute.glif │ │ │ │ ├── adieresis.glif │ │ │ │ ├── ae.glif │ │ │ │ ├── agrave.glif │ │ │ │ ├── amacron.glif │ │ │ │ ├── ampersand.glif │ │ │ │ ├── aogonek.glif │ │ │ │ ├── aring.glif │ │ │ │ ├── asciicircum.glif │ │ │ │ ├── asciitilde.glif │ │ │ │ ├── asterisk.glif │ │ │ │ ├── at.glif │ │ │ │ ├── atilde.glif │ │ │ │ ├── b.glif │ │ │ │ ├── backslash.glif │ │ │ │ ├── bar.glif │ │ │ │ ├── braceleft.glif │ │ │ │ ├── braceright.glif │ │ │ │ ├── bracketleft.glif │ │ │ │ ├── bracketright.glif │ │ │ │ ├── breve.glif │ │ │ │ ├── bullet.glif │ │ │ │ ├── c.glif │ │ │ │ ├── cacute.glif │ │ │ │ ├── caron.glif │ │ │ │ ├── ccaron.glif │ │ │ │ ├── ccedilla.glif │ │ │ │ ├── ccircumflex.glif │ │ │ │ ├── cdotaccent.glif │ │ │ │ ├── cedilla.glif │ │ │ │ ├── cent.glif │ │ │ │ ├── circumflex.glif │ │ │ │ ├── colon.glif │ │ │ │ ├── comma.glif │ │ │ │ ├── contents.plist │ │ │ │ ├── copyright.glif │ │ │ │ ├── d.glif │ │ │ │ ├── dcaron.glif │ │ │ │ ├── dcroat.glif │ │ │ │ ├── dieresis.glif │ │ │ │ ├── dollar.glif │ │ │ │ ├── dotaccent.glif │ │ │ │ ├── dotlessi.glif │ │ │ │ ├── e.glif │ │ │ │ ├── eacute.glif │ │ │ │ ├── ebreve.glif │ │ │ │ ├── ecaron.glif │ │ │ │ ├── ecircumflex.glif │ │ │ │ ├── edieresis.glif │ │ │ │ ├── edotaccent.glif │ │ │ │ ├── egrave.glif │ │ │ │ ├── eight.glif │ │ │ │ ├── ellipsis.glif │ │ │ │ ├── emacron.glif │ │ │ │ ├── emdash.glif │ │ │ │ ├── endash.glif │ │ │ │ ├── eng.glif │ │ │ │ ├── eogonek.glif │ │ │ │ ├── equal.glif │ │ │ │ ├── eth.glif │ │ │ │ ├── exclam.glif │ │ │ │ ├── exclamdown.glif │ │ │ │ ├── f.glif │ │ │ │ ├── fi.glif │ │ │ │ ├── five.glif │ │ │ │ ├── fl.glif │ │ │ │ ├── four.glif │ │ │ │ ├── g.glif │ │ │ │ ├── gbreve.glif │ │ │ │ ├── gcircumflex.glif │ │ │ │ ├── gcommaaccent.glif │ │ │ │ ├── gdotaccent.glif │ │ │ │ ├── germandbls.glif │ │ │ │ ├── grave.glif │ │ │ │ ├── greater.glif │ │ │ │ ├── h.glif │ │ │ │ ├── hbar.glif │ │ │ │ ├── hcircumflex.glif │ │ │ │ ├── hungarumlaut.glif │ │ │ │ ├── hyphen.glif │ │ │ │ ├── i.glif │ │ │ │ ├── iacute.glif │ │ │ │ ├── ibreve.glif │ │ │ │ ├── icircumflex.glif │ │ │ │ ├── idieresis.glif │ │ │ │ ├── igrave.glif │ │ │ │ ├── ij.glif │ │ │ │ ├── imacron.glif │ │ │ │ ├── iogonek.glif │ │ │ │ ├── itilde.glif │ │ │ │ ├── j.glif │ │ │ │ ├── jcircumflex.glif │ │ │ │ ├── k.glif │ │ │ │ ├── kcommaaccent.glif │ │ │ │ ├── kgreenlandic.glif │ │ │ │ ├── l.glif │ │ │ │ ├── lacute.glif │ │ │ │ ├── lcaron.glif │ │ │ │ ├── lcommaaccent.glif │ │ │ │ ├── ldot.glif │ │ │ │ ├── less.glif │ │ │ │ ├── longs.glif │ │ │ │ ├── lslash.glif │ │ │ │ ├── m.glif │ │ │ │ ├── macron.glif │ │ │ │ ├── minus.glif │ │ │ │ ├── n.glif │ │ │ │ ├── nacute.glif │ │ │ │ ├── napostrophe.glif │ │ │ │ ├── ncaron.glif │ │ │ │ ├── ncommaaccent.glif │ │ │ │ ├── nine.glif │ │ │ │ ├── ntilde.glif │ │ │ │ ├── numbersign.glif │ │ │ │ ├── o.glif │ │ │ │ ├── oacute.glif │ │ │ │ ├── obreve.glif │ │ │ │ ├── ocircumflex.glif │ │ │ │ ├── odieresis.glif │ │ │ │ ├── oe.glif │ │ │ │ ├── ogonek.glif │ │ │ │ ├── ograve.glif │ │ │ │ ├── ohungarumlaut.glif │ │ │ │ ├── omacron.glif │ │ │ │ ├── one.glif │ │ │ │ ├── oslash.glif │ │ │ │ ├── otilde.glif │ │ │ │ ├── p.glif │ │ │ │ ├── parenleft.glif │ │ │ │ ├── parenright.glif │ │ │ │ ├── percent.glif │ │ │ │ ├── period.glif │ │ │ │ ├── periodcentered.glif │ │ │ │ ├── perthousand.glif │ │ │ │ ├── plus.glif │ │ │ │ ├── q.glif │ │ │ │ ├── question.glif │ │ │ │ ├── questiondown.glif │ │ │ │ ├── quotedbl.glif │ │ │ │ ├── quotedblbase.glif │ │ │ │ ├── quotedblleft.glif │ │ │ │ ├── quotedblright.glif │ │ │ │ ├── quoteleft.glif │ │ │ │ ├── quoteright.glif │ │ │ │ ├── quotesinglbase.glif │ │ │ │ ├── quotesingle.glif │ │ │ │ ├── r.glif │ │ │ │ ├── racute.glif │ │ │ │ ├── rcaron.glif │ │ │ │ ├── rcommaaccent.glif │ │ │ │ ├── registered.glif │ │ │ │ ├── ring.glif │ │ │ │ ├── s.glif │ │ │ │ ├── sacute.glif │ │ │ │ ├── scaron.glif │ │ │ │ ├── scedilla.glif │ │ │ │ ├── scircumflex.glif │ │ │ │ ├── semicolon.glif │ │ │ │ ├── seven.glif │ │ │ │ ├── six.glif │ │ │ │ ├── slash.glif │ │ │ │ ├── space.glif │ │ │ │ ├── sterling.glif │ │ │ │ ├── t.glif │ │ │ │ ├── tbar.glif │ │ │ │ ├── tcaron.glif │ │ │ │ ├── thorn.glif │ │ │ │ ├── three.glif │ │ │ │ ├── tilde.glif │ │ │ │ ├── trademark.glif │ │ │ │ ├── two.glif │ │ │ │ ├── u.glif │ │ │ │ ├── uacute.glif │ │ │ │ ├── ubreve.glif │ │ │ │ ├── ucircumflex.glif │ │ │ │ ├── udieresis.glif │ │ │ │ ├── ugrave.glif │ │ │ │ ├── uhungarumlaut.glif │ │ │ │ ├── umacron.glif │ │ │ │ ├── underscore.glif │ │ │ │ ├── uni0093.glif │ │ │ │ ├── uni0094.glif │ │ │ │ ├── uni021A_.glif │ │ │ │ ├── uni021B_.glif │ │ │ │ ├── uni201F_.glif │ │ │ │ ├── uogonek.glif │ │ │ │ ├── uring.glif │ │ │ │ ├── utilde.glif │ │ │ │ ├── v.glif │ │ │ │ ├── w.glif │ │ │ │ ├── wcircumflex.glif │ │ │ │ ├── x.glif │ │ │ │ ├── y.glif │ │ │ │ ├── yacute.glif │ │ │ │ ├── ycircumflex.glif │ │ │ │ ├── ydieresis.glif │ │ │ │ ├── yen.glif │ │ │ │ ├── z.glif │ │ │ │ ├── zacute.glif │ │ │ │ ├── zcaron.glif │ │ │ │ ├── zdotaccent.glif │ │ │ │ └── zero.glif │ │ │ ├── groups.plist │ │ │ ├── kerning.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── League Gothic Condensed Regular.glyphs │ │ ├── League Gothic Condensed Regular.ufo │ │ │ ├── features.fea │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs │ │ │ │ ├── AE_.glif │ │ │ │ ├── A_.glif │ │ │ │ ├── Aacute_.glif │ │ │ │ ├── Abreve_.glif │ │ │ │ ├── Acircumflex_.glif │ │ │ │ ├── Adieresis_.glif │ │ │ │ ├── Agrave_.glif │ │ │ │ ├── Amacron_.glif │ │ │ │ ├── Aogonek_.glif │ │ │ │ ├── Aring_.glif │ │ │ │ ├── Atilde_.glif │ │ │ │ ├── B_.glif │ │ │ │ ├── CR_.glif │ │ │ │ ├── C_.glif │ │ │ │ ├── Cacute_.glif │ │ │ │ ├── Ccaron_.glif │ │ │ │ ├── Ccedilla_.glif │ │ │ │ ├── Ccircumflex_.glif │ │ │ │ ├── Cdotaccent_.glif │ │ │ │ ├── D_.glif │ │ │ │ ├── Dcaron_.glif │ │ │ │ ├── Dcroat_.glif │ │ │ │ ├── E_.glif │ │ │ │ ├── Eacute_.glif │ │ │ │ ├── Ebreve_.glif │ │ │ │ ├── Ecaron_.glif │ │ │ │ ├── Ecircumflex_.glif │ │ │ │ ├── Edieresis_.glif │ │ │ │ ├── Edotaccent_.glif │ │ │ │ ├── Egrave_.glif │ │ │ │ ├── Emacron_.glif │ │ │ │ ├── Eng_.glif │ │ │ │ ├── Eogonek_.glif │ │ │ │ ├── Eth_.glif │ │ │ │ ├── Euro_.glif │ │ │ │ ├── F_.glif │ │ │ │ ├── G_.glif │ │ │ │ ├── Gbreve_.glif │ │ │ │ ├── Gcircumflex_.glif │ │ │ │ ├── Gcommaaccent_.glif │ │ │ │ ├── Gdotaccent_.glif │ │ │ │ ├── H_.glif │ │ │ │ ├── Hbar_.glif │ │ │ │ ├── Hcircumflex_.glif │ │ │ │ ├── IJ_.glif │ │ │ │ ├── I_.glif │ │ │ │ ├── Iacute_.glif │ │ │ │ ├── Ibreve_.glif │ │ │ │ ├── Icircumflex_.glif │ │ │ │ ├── Idieresis_.glif │ │ │ │ ├── Idotaccent_.glif │ │ │ │ ├── Igrave_.glif │ │ │ │ ├── Imacron_.glif │ │ │ │ ├── Iogonek_.glif │ │ │ │ ├── Itilde_.glif │ │ │ │ ├── J_.glif │ │ │ │ ├── Jcircumflex_.glif │ │ │ │ ├── K_.glif │ │ │ │ ├── Kcommaaccent_.glif │ │ │ │ ├── L_.glif │ │ │ │ ├── Lacute_.glif │ │ │ │ ├── Lcaron_.glif │ │ │ │ ├── Lcommaaccent_.glif │ │ │ │ ├── Ldot_.glif │ │ │ │ ├── Lslash_.glif │ │ │ │ ├── M_.glif │ │ │ │ ├── N_.glif │ │ │ │ ├── Nacute_.glif │ │ │ │ ├── Ncaron_.glif │ │ │ │ ├── Ncommaaccent_.glif │ │ │ │ ├── Ntilde_.glif │ │ │ │ ├── OE_.glif │ │ │ │ ├── O_.glif │ │ │ │ ├── Oacute_.glif │ │ │ │ ├── Obreve_.glif │ │ │ │ ├── Ocircumflex_.glif │ │ │ │ ├── Odieresis_.glif │ │ │ │ ├── Ograve_.glif │ │ │ │ ├── Ohungarumlaut_.glif │ │ │ │ ├── Omacron_.glif │ │ │ │ ├── Oslash_.glif │ │ │ │ ├── Otilde_.glif │ │ │ │ ├── P_.glif │ │ │ │ ├── Q_.glif │ │ │ │ ├── R_.glif │ │ │ │ ├── Racute_.glif │ │ │ │ ├── Rcaron_.glif │ │ │ │ ├── Rcommaaccent_.glif │ │ │ │ ├── S_.glif │ │ │ │ ├── Sacute_.glif │ │ │ │ ├── Scaron_.glif │ │ │ │ ├── Scedilla_.glif │ │ │ │ ├── Scircumflex_.glif │ │ │ │ ├── T_.glif │ │ │ │ ├── Tbar_.glif │ │ │ │ ├── Tcaron_.glif │ │ │ │ ├── Thorn_.glif │ │ │ │ ├── U_.glif │ │ │ │ ├── Uacute_.glif │ │ │ │ ├── Ubreve_.glif │ │ │ │ ├── Ucircumflex_.glif │ │ │ │ ├── Udieresis_.glif │ │ │ │ ├── Ugrave_.glif │ │ │ │ ├── Uhungarumlaut_.glif │ │ │ │ ├── Umacron_.glif │ │ │ │ ├── Uogonek_.glif │ │ │ │ ├── Uring_.glif │ │ │ │ ├── Utilde_.glif │ │ │ │ ├── V_.glif │ │ │ │ ├── W_.glif │ │ │ │ ├── Wcircumflex_.glif │ │ │ │ ├── X_.glif │ │ │ │ ├── Y_.glif │ │ │ │ ├── Yacute_.glif │ │ │ │ ├── Ycircumflex_.glif │ │ │ │ ├── Ydieresis_.glif │ │ │ │ ├── Z_.glif │ │ │ │ ├── Zacute_.glif │ │ │ │ ├── Zcaron_.glif │ │ │ │ ├── Zdotaccent_.glif │ │ │ │ ├── _notdef.glif │ │ │ │ ├── a.glif │ │ │ │ ├── aacute.glif │ │ │ │ ├── abreve.glif │ │ │ │ ├── acircumflex.glif │ │ │ │ ├── acute.glif │ │ │ │ ├── adieresis.glif │ │ │ │ ├── ae.glif │ │ │ │ ├── agrave.glif │ │ │ │ ├── amacron.glif │ │ │ │ ├── ampersand.glif │ │ │ │ ├── aogonek.glif │ │ │ │ ├── aring.glif │ │ │ │ ├── asciicircum.glif │ │ │ │ ├── asciitilde.glif │ │ │ │ ├── asterisk.glif │ │ │ │ ├── at.glif │ │ │ │ ├── atilde.glif │ │ │ │ ├── b.glif │ │ │ │ ├── backslash.glif │ │ │ │ ├── bar.glif │ │ │ │ ├── braceleft.glif │ │ │ │ ├── braceright.glif │ │ │ │ ├── bracketleft.glif │ │ │ │ ├── bracketright.glif │ │ │ │ ├── breve.glif │ │ │ │ ├── bullet.glif │ │ │ │ ├── c.glif │ │ │ │ ├── cacute.glif │ │ │ │ ├── caron.glif │ │ │ │ ├── ccaron.glif │ │ │ │ ├── ccedilla.glif │ │ │ │ ├── ccircumflex.glif │ │ │ │ ├── cdotaccent.glif │ │ │ │ ├── cedilla.glif │ │ │ │ ├── cent.glif │ │ │ │ ├── circumflex.glif │ │ │ │ ├── colon.glif │ │ │ │ ├── comma.glif │ │ │ │ ├── contents.plist │ │ │ │ ├── copyright.glif │ │ │ │ ├── d.glif │ │ │ │ ├── dcaron.glif │ │ │ │ ├── dcroat.glif │ │ │ │ ├── dieresis.glif │ │ │ │ ├── dollar.glif │ │ │ │ ├── dotaccent.glif │ │ │ │ ├── dotlessi.glif │ │ │ │ ├── e.glif │ │ │ │ ├── eacute.glif │ │ │ │ ├── ebreve.glif │ │ │ │ ├── ecaron.glif │ │ │ │ ├── ecircumflex.glif │ │ │ │ ├── edieresis.glif │ │ │ │ ├── edotaccent.glif │ │ │ │ ├── egrave.glif │ │ │ │ ├── eight.glif │ │ │ │ ├── ellipsis.glif │ │ │ │ ├── emacron.glif │ │ │ │ ├── emdash.glif │ │ │ │ ├── endash.glif │ │ │ │ ├── eng.glif │ │ │ │ ├── eogonek.glif │ │ │ │ ├── equal.glif │ │ │ │ ├── eth.glif │ │ │ │ ├── exclam.glif │ │ │ │ ├── exclamdown.glif │ │ │ │ ├── f.glif │ │ │ │ ├── fi.glif │ │ │ │ ├── five.glif │ │ │ │ ├── fl.glif │ │ │ │ ├── four.glif │ │ │ │ ├── g.glif │ │ │ │ ├── gbreve.glif │ │ │ │ ├── gcircumflex.glif │ │ │ │ ├── gcommaaccent.glif │ │ │ │ ├── gdotaccent.glif │ │ │ │ ├── germandbls.glif │ │ │ │ ├── grave.glif │ │ │ │ ├── greater.glif │ │ │ │ ├── h.glif │ │ │ │ ├── hbar.glif │ │ │ │ ├── hcircumflex.glif │ │ │ │ ├── hungarumlaut.glif │ │ │ │ ├── hyphen.glif │ │ │ │ ├── i.glif │ │ │ │ ├── iacute.glif │ │ │ │ ├── ibreve.glif │ │ │ │ ├── icircumflex.glif │ │ │ │ ├── idieresis.glif │ │ │ │ ├── igrave.glif │ │ │ │ ├── ij.glif │ │ │ │ ├── imacron.glif │ │ │ │ ├── iogonek.glif │ │ │ │ ├── itilde.glif │ │ │ │ ├── j.glif │ │ │ │ ├── jcircumflex.glif │ │ │ │ ├── k.glif │ │ │ │ ├── kcommaaccent.glif │ │ │ │ ├── kgreenlandic.glif │ │ │ │ ├── l.glif │ │ │ │ ├── lacute.glif │ │ │ │ ├── lcaron.glif │ │ │ │ ├── lcommaaccent.glif │ │ │ │ ├── ldot.glif │ │ │ │ ├── less.glif │ │ │ │ ├── longs.glif │ │ │ │ ├── lslash.glif │ │ │ │ ├── m.glif │ │ │ │ ├── macron.glif │ │ │ │ ├── minus.glif │ │ │ │ ├── n.glif │ │ │ │ ├── nacute.glif │ │ │ │ ├── napostrophe.glif │ │ │ │ ├── ncaron.glif │ │ │ │ ├── ncommaaccent.glif │ │ │ │ ├── nine.glif │ │ │ │ ├── ntilde.glif │ │ │ │ ├── numbersign.glif │ │ │ │ ├── o.glif │ │ │ │ ├── oacute.glif │ │ │ │ ├── obreve.glif │ │ │ │ ├── ocircumflex.glif │ │ │ │ ├── odieresis.glif │ │ │ │ ├── oe.glif │ │ │ │ ├── ogonek.glif │ │ │ │ ├── ograve.glif │ │ │ │ ├── ohungarumlaut.glif │ │ │ │ ├── omacron.glif │ │ │ │ ├── one.glif │ │ │ │ ├── oslash.glif │ │ │ │ ├── otilde.glif │ │ │ │ ├── p.glif │ │ │ │ ├── parenleft.glif │ │ │ │ ├── parenright.glif │ │ │ │ ├── percent.glif │ │ │ │ ├── period.glif │ │ │ │ ├── periodcentered.glif │ │ │ │ ├── perthousand.glif │ │ │ │ ├── plus.glif │ │ │ │ ├── q.glif │ │ │ │ ├── question.glif │ │ │ │ ├── questiondown.glif │ │ │ │ ├── quotedbl.glif │ │ │ │ ├── quotedblbase.glif │ │ │ │ ├── quotedblleft.glif │ │ │ │ ├── quotedblright.glif │ │ │ │ ├── quoteleft.glif │ │ │ │ ├── quoteright.glif │ │ │ │ ├── quotesinglbase.glif │ │ │ │ ├── quotesingle.glif │ │ │ │ ├── r.glif │ │ │ │ ├── racute.glif │ │ │ │ ├── rcaron.glif │ │ │ │ ├── rcommaaccent.glif │ │ │ │ ├── registered.glif │ │ │ │ ├── ring.glif │ │ │ │ ├── s.glif │ │ │ │ ├── sacute.glif │ │ │ │ ├── scaron.glif │ │ │ │ ├── scedilla.glif │ │ │ │ ├── scircumflex.glif │ │ │ │ ├── semicolon.glif │ │ │ │ ├── seven.glif │ │ │ │ ├── six.glif │ │ │ │ ├── slash.glif │ │ │ │ ├── space.glif │ │ │ │ ├── sterling.glif │ │ │ │ ├── t.glif │ │ │ │ ├── tbar.glif │ │ │ │ ├── tcaron.glif │ │ │ │ ├── thorn.glif │ │ │ │ ├── three.glif │ │ │ │ ├── tilde.glif │ │ │ │ ├── trademark.glif │ │ │ │ ├── two.glif │ │ │ │ ├── u.glif │ │ │ │ ├── uacute.glif │ │ │ │ ├── ubreve.glif │ │ │ │ ├── ucircumflex.glif │ │ │ │ ├── udieresis.glif │ │ │ │ ├── ugrave.glif │ │ │ │ ├── uhungarumlaut.glif │ │ │ │ ├── umacron.glif │ │ │ │ ├── underscore.glif │ │ │ │ ├── uni0093.glif │ │ │ │ ├── uni0094.glif │ │ │ │ ├── uni021A_.glif │ │ │ │ ├── uni021B_.glif │ │ │ │ ├── uni201F_.glif │ │ │ │ ├── uogonek.glif │ │ │ │ ├── uring.glif │ │ │ │ ├── utilde.glif │ │ │ │ ├── v.glif │ │ │ │ ├── w.glif │ │ │ │ ├── wcircumflex.glif │ │ │ │ ├── x.glif │ │ │ │ ├── y.glif │ │ │ │ ├── yacute.glif │ │ │ │ ├── ycircumflex.glif │ │ │ │ ├── ydieresis.glif │ │ │ │ ├── yen.glif │ │ │ │ ├── z.glif │ │ │ │ ├── zacute.glif │ │ │ │ ├── zcaron.glif │ │ │ │ ├── zdotaccent.glif │ │ │ │ └── zero.glif │ │ │ ├── groups.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── League Gothic Italic.glyphs │ │ ├── League Gothic Italic.ufo │ │ │ ├── features.fea │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs │ │ │ │ ├── AE_.glif │ │ │ │ ├── A_.glif │ │ │ │ ├── Aacute_.glif │ │ │ │ ├── Abreve_.glif │ │ │ │ ├── Acircumflex_.glif │ │ │ │ ├── Adieresis_.glif │ │ │ │ ├── Agrave_.glif │ │ │ │ ├── Amacron_.glif │ │ │ │ ├── Aogonek_.glif │ │ │ │ ├── Aring_.glif │ │ │ │ ├── Atilde_.glif │ │ │ │ ├── B_.glif │ │ │ │ ├── C_.glif │ │ │ │ ├── Cacute_.glif │ │ │ │ ├── Ccaron_.glif │ │ │ │ ├── Ccedilla_.glif │ │ │ │ ├── Ccircumflex_.glif │ │ │ │ ├── Cdotaccent_.glif │ │ │ │ ├── D_.glif │ │ │ │ ├── Dcaron_.glif │ │ │ │ ├── Dcroat_.glif │ │ │ │ ├── E_.glif │ │ │ │ ├── Eacute_.glif │ │ │ │ ├── Ebreve_.glif │ │ │ │ ├── Ecaron_.glif │ │ │ │ ├── Ecircumflex_.glif │ │ │ │ ├── Edieresis_.glif │ │ │ │ ├── Edotaccent_.glif │ │ │ │ ├── Egrave_.glif │ │ │ │ ├── Emacron_.glif │ │ │ │ ├── Eng_.glif │ │ │ │ ├── Eogonek_.glif │ │ │ │ ├── Eth_.glif │ │ │ │ ├── Euro_.glif │ │ │ │ ├── F_.glif │ │ │ │ ├── G_.glif │ │ │ │ ├── Gbreve_.glif │ │ │ │ ├── Gcircumflex_.glif │ │ │ │ ├── Gcommaaccent_.glif │ │ │ │ ├── Gdotaccent_.glif │ │ │ │ ├── H_.glif │ │ │ │ ├── Hbar_.glif │ │ │ │ ├── Hcircumflex_.glif │ │ │ │ ├── IJ_.glif │ │ │ │ ├── I_.glif │ │ │ │ ├── Iacute_.glif │ │ │ │ ├── Ibreve_.glif │ │ │ │ ├── Icircumflex_.glif │ │ │ │ ├── Idieresis_.glif │ │ │ │ ├── Idotaccent_.glif │ │ │ │ ├── Igrave_.glif │ │ │ │ ├── Imacron_.glif │ │ │ │ ├── Iogonek_.glif │ │ │ │ ├── Itilde_.glif │ │ │ │ ├── J_.glif │ │ │ │ ├── Jcircumflex_.glif │ │ │ │ ├── K_.glif │ │ │ │ ├── Kcommaaccent_.glif │ │ │ │ ├── L_.glif │ │ │ │ ├── Lacute_.glif │ │ │ │ ├── Lcaron_.glif │ │ │ │ ├── Lcommaaccent_.glif │ │ │ │ ├── Ldot_.glif │ │ │ │ ├── Lslash_.glif │ │ │ │ ├── M_.glif │ │ │ │ ├── NULL_.glif │ │ │ │ ├── N_.glif │ │ │ │ ├── Nacute_.glif │ │ │ │ ├── Ncaron_.glif │ │ │ │ ├── Ncommaaccent_.glif │ │ │ │ ├── Ntilde_.glif │ │ │ │ ├── OE_.glif │ │ │ │ ├── O_.glif │ │ │ │ ├── Oacute_.glif │ │ │ │ ├── Obreve_.glif │ │ │ │ ├── Ocircumflex_.glif │ │ │ │ ├── Odieresis_.glif │ │ │ │ ├── Ograve_.glif │ │ │ │ ├── Ohungarumlaut_.glif │ │ │ │ ├── Omacron_.glif │ │ │ │ ├── Oslash_.glif │ │ │ │ ├── Otilde_.glif │ │ │ │ ├── P_.glif │ │ │ │ ├── Q_.glif │ │ │ │ ├── R_.glif │ │ │ │ ├── Racute_.glif │ │ │ │ ├── Rcaron_.glif │ │ │ │ ├── Rcommaaccent_.glif │ │ │ │ ├── S_.glif │ │ │ │ ├── Sacute_.glif │ │ │ │ ├── Scaron_.glif │ │ │ │ ├── Scedilla_.glif │ │ │ │ ├── Scircumflex_.glif │ │ │ │ ├── T_.glif │ │ │ │ ├── Tbar_.glif │ │ │ │ ├── Tcaron_.glif │ │ │ │ ├── Thorn_.glif │ │ │ │ ├── U_.glif │ │ │ │ ├── Uacute_.glif │ │ │ │ ├── Ubreve_.glif │ │ │ │ ├── Ucircumflex_.glif │ │ │ │ ├── Udieresis_.glif │ │ │ │ ├── Ugrave_.glif │ │ │ │ ├── Uhungarumlaut_.glif │ │ │ │ ├── Umacron_.glif │ │ │ │ ├── Uogonek_.glif │ │ │ │ ├── Uring_.glif │ │ │ │ ├── Utilde_.glif │ │ │ │ ├── V_.glif │ │ │ │ ├── W_.glif │ │ │ │ ├── Wcircumflex_.glif │ │ │ │ ├── X_.glif │ │ │ │ ├── Y_.glif │ │ │ │ ├── Yacute_.glif │ │ │ │ ├── Ycircumflex_.glif │ │ │ │ ├── Ydieresis_.glif │ │ │ │ ├── Z_.glif │ │ │ │ ├── Zacute_.glif │ │ │ │ ├── Zcaron_.glif │ │ │ │ ├── Zdotaccent_.glif │ │ │ │ ├── _notdef.glif │ │ │ │ ├── a.glif │ │ │ │ ├── aacute.glif │ │ │ │ ├── abreve.glif │ │ │ │ ├── acircumflex.glif │ │ │ │ ├── acute.glif │ │ │ │ ├── adieresis.glif │ │ │ │ ├── ae.glif │ │ │ │ ├── agrave.glif │ │ │ │ ├── amacron.glif │ │ │ │ ├── ampersand.glif │ │ │ │ ├── aogonek.glif │ │ │ │ ├── aring.glif │ │ │ │ ├── asciicircum.glif │ │ │ │ ├── asciitilde.glif │ │ │ │ ├── asterisk.glif │ │ │ │ ├── at.glif │ │ │ │ ├── atilde.glif │ │ │ │ ├── b.glif │ │ │ │ ├── backslash.glif │ │ │ │ ├── bar.glif │ │ │ │ ├── braceleft.glif │ │ │ │ ├── braceright.glif │ │ │ │ ├── bracketleft.glif │ │ │ │ ├── bracketright.glif │ │ │ │ ├── breve.glif │ │ │ │ ├── bullet.glif │ │ │ │ ├── c.glif │ │ │ │ ├── cacute.glif │ │ │ │ ├── caron.glif │ │ │ │ ├── ccaron.glif │ │ │ │ ├── ccedilla.glif │ │ │ │ ├── ccircumflex.glif │ │ │ │ ├── cdotaccent.glif │ │ │ │ ├── cedilla.glif │ │ │ │ ├── cent.glif │ │ │ │ ├── circumflex.glif │ │ │ │ ├── colon.glif │ │ │ │ ├── comma.glif │ │ │ │ ├── contents.plist │ │ │ │ ├── copyright.glif │ │ │ │ ├── d.glif │ │ │ │ ├── dcaron.glif │ │ │ │ ├── dcroat.glif │ │ │ │ ├── dieresis.glif │ │ │ │ ├── dollar.glif │ │ │ │ ├── dotaccent.glif │ │ │ │ ├── dotlessi.glif │ │ │ │ ├── e.glif │ │ │ │ ├── eacute.glif │ │ │ │ ├── ebreve.glif │ │ │ │ ├── ecaron.glif │ │ │ │ ├── ecircumflex.glif │ │ │ │ ├── edieresis.glif │ │ │ │ ├── edotaccent.glif │ │ │ │ ├── egrave.glif │ │ │ │ ├── eight.glif │ │ │ │ ├── ellipsis.glif │ │ │ │ ├── emacron.glif │ │ │ │ ├── emdash.glif │ │ │ │ ├── endash.glif │ │ │ │ ├── eng.glif │ │ │ │ ├── eogonek.glif │ │ │ │ ├── equal.glif │ │ │ │ ├── eth.glif │ │ │ │ ├── exclam.glif │ │ │ │ ├── exclamdown.glif │ │ │ │ ├── f.glif │ │ │ │ ├── fi.glif │ │ │ │ ├── five.glif │ │ │ │ ├── fl.glif │ │ │ │ ├── four.glif │ │ │ │ ├── g.glif │ │ │ │ ├── gbreve.glif │ │ │ │ ├── gcircumflex.glif │ │ │ │ ├── gcommaaccent.glif │ │ │ │ ├── gdotaccent.glif │ │ │ │ ├── germandbls.glif │ │ │ │ ├── grave.glif │ │ │ │ ├── greater.glif │ │ │ │ ├── h.glif │ │ │ │ ├── hbar.glif │ │ │ │ ├── hcircumflex.glif │ │ │ │ ├── hungarumlaut.glif │ │ │ │ ├── hyphen.glif │ │ │ │ ├── i.glif │ │ │ │ ├── iacute.glif │ │ │ │ ├── ibreve.glif │ │ │ │ ├── icircumflex.glif │ │ │ │ ├── idieresis.glif │ │ │ │ ├── igrave.glif │ │ │ │ ├── ij.glif │ │ │ │ ├── imacron.glif │ │ │ │ ├── iogonek.glif │ │ │ │ ├── itilde.glif │ │ │ │ ├── j.glif │ │ │ │ ├── jcircumflex.glif │ │ │ │ ├── k.glif │ │ │ │ ├── kcommaaccent.glif │ │ │ │ ├── kgreenlandic.glif │ │ │ │ ├── l.glif │ │ │ │ ├── lacute.glif │ │ │ │ ├── lcaron.glif │ │ │ │ ├── lcommaaccent.glif │ │ │ │ ├── ldot.glif │ │ │ │ ├── less.glif │ │ │ │ ├── longs.glif │ │ │ │ ├── lslash.glif │ │ │ │ ├── m.glif │ │ │ │ ├── macron.glif │ │ │ │ ├── minus.glif │ │ │ │ ├── n.glif │ │ │ │ ├── nacute.glif │ │ │ │ ├── napostrophe.glif │ │ │ │ ├── ncaron.glif │ │ │ │ ├── ncommaaccent.glif │ │ │ │ ├── nine.glif │ │ │ │ ├── ntilde.glif │ │ │ │ ├── numbersign.glif │ │ │ │ ├── o.glif │ │ │ │ ├── oacute.glif │ │ │ │ ├── obreve.glif │ │ │ │ ├── ocircumflex.glif │ │ │ │ ├── odieresis.glif │ │ │ │ ├── oe.glif │ │ │ │ ├── ogonek.glif │ │ │ │ ├── ograve.glif │ │ │ │ ├── ohungarumlaut.glif │ │ │ │ ├── omacron.glif │ │ │ │ ├── one.glif │ │ │ │ ├── oslash.glif │ │ │ │ ├── otilde.glif │ │ │ │ ├── p.glif │ │ │ │ ├── parenleft.glif │ │ │ │ ├── parenright.glif │ │ │ │ ├── percent.glif │ │ │ │ ├── period.glif │ │ │ │ ├── periodcentered.glif │ │ │ │ ├── plus.glif │ │ │ │ ├── q.glif │ │ │ │ ├── question.glif │ │ │ │ ├── questiondown.glif │ │ │ │ ├── quotedbl.glif │ │ │ │ ├── quotedblbase.glif │ │ │ │ ├── quotedblleft.glif │ │ │ │ ├── quotedblright.glif │ │ │ │ ├── quoteleft.glif │ │ │ │ ├── quoteright.glif │ │ │ │ ├── quotesinglbase.glif │ │ │ │ ├── quotesingle.glif │ │ │ │ ├── r.glif │ │ │ │ ├── racute.glif │ │ │ │ ├── rcaron.glif │ │ │ │ ├── rcommaaccent.glif │ │ │ │ ├── registered.glif │ │ │ │ ├── ring.glif │ │ │ │ ├── s.glif │ │ │ │ ├── sacute.glif │ │ │ │ ├── scaron.glif │ │ │ │ ├── scedilla.glif │ │ │ │ ├── scircumflex.glif │ │ │ │ ├── semicolon.glif │ │ │ │ ├── seven.glif │ │ │ │ ├── six.glif │ │ │ │ ├── slash.glif │ │ │ │ ├── space.glif │ │ │ │ ├── sterling.glif │ │ │ │ ├── t.glif │ │ │ │ ├── tbar.glif │ │ │ │ ├── tcaron.glif │ │ │ │ ├── thorn.glif │ │ │ │ ├── three.glif │ │ │ │ ├── tilde.glif │ │ │ │ ├── trademark.glif │ │ │ │ ├── two.glif │ │ │ │ ├── u.glif │ │ │ │ ├── uacute.glif │ │ │ │ ├── ubreve.glif │ │ │ │ ├── ucircumflex.glif │ │ │ │ ├── udieresis.glif │ │ │ │ ├── ugrave.glif │ │ │ │ ├── uhungarumlaut.glif │ │ │ │ ├── umacron.glif │ │ │ │ ├── underscore.glif │ │ │ │ ├── uni000D_.glif │ │ │ │ ├── uni0093.glif │ │ │ │ ├── uni0094.glif │ │ │ │ ├── uni021A_.glif │ │ │ │ ├── uni021B_.glif │ │ │ │ ├── uni201F_.glif │ │ │ │ ├── uogonek.glif │ │ │ │ ├── uring.glif │ │ │ │ ├── utilde.glif │ │ │ │ ├── v.glif │ │ │ │ ├── w.glif │ │ │ │ ├── wcircumflex.glif │ │ │ │ ├── x.glif │ │ │ │ ├── y.glif │ │ │ │ ├── yacute.glif │ │ │ │ ├── ycircumflex.glif │ │ │ │ ├── ydieresis.glif │ │ │ │ ├── yen.glif │ │ │ │ ├── z.glif │ │ │ │ ├── zacute.glif │ │ │ │ ├── zcaron.glif │ │ │ │ ├── zdotaccent.glif │ │ │ │ └── zero.glif │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── League Gothic Regular.glyphs │ │ └── League Gothic Regular.ufo │ │ │ ├── features.fea │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs │ │ │ ├── AE_.glif │ │ │ ├── A_.glif │ │ │ ├── Aacute_.glif │ │ │ ├── Abreve_.glif │ │ │ ├── Acircumflex_.glif │ │ │ ├── Adieresis_.glif │ │ │ ├── Agrave_.glif │ │ │ ├── Amacron_.glif │ │ │ ├── Aogonek_.glif │ │ │ ├── Aring_.glif │ │ │ ├── Atilde_.glif │ │ │ ├── B_.glif │ │ │ ├── C_.glif │ │ │ ├── Cacute_.glif │ │ │ ├── Ccaron_.glif │ │ │ ├── Ccedilla_.glif │ │ │ ├── Ccircumflex_.glif │ │ │ ├── Cdotaccent_.glif │ │ │ ├── D_.glif │ │ │ ├── Dcaron_.glif │ │ │ ├── Dcroat_.glif │ │ │ ├── E_.glif │ │ │ ├── Eacute_.glif │ │ │ ├── Ebreve_.glif │ │ │ ├── Ecaron_.glif │ │ │ ├── Ecircumflex_.glif │ │ │ ├── Edieresis_.glif │ │ │ ├── Edotaccent_.glif │ │ │ ├── Egrave_.glif │ │ │ ├── Emacron_.glif │ │ │ ├── Eng_.glif │ │ │ ├── Eogonek_.glif │ │ │ ├── Eth_.glif │ │ │ ├── F_.glif │ │ │ ├── G_.glif │ │ │ ├── Gbreve_.glif │ │ │ ├── Gcircumflex_.glif │ │ │ ├── Gcommaaccent_.glif │ │ │ ├── Gdotaccent_.glif │ │ │ ├── H_.glif │ │ │ ├── Hbar_.glif │ │ │ ├── Hcircumflex_.glif │ │ │ ├── IJ_.glif │ │ │ ├── I_.glif │ │ │ ├── Iacute_.glif │ │ │ ├── Ibreve_.glif │ │ │ ├── Icircumflex_.glif │ │ │ ├── Idieresis_.glif │ │ │ ├── Idotaccent_.glif │ │ │ ├── Igrave_.glif │ │ │ ├── Imacron_.glif │ │ │ ├── Iogonek_.glif │ │ │ ├── Itilde_.glif │ │ │ ├── J_.glif │ │ │ ├── Jcircumflex_.glif │ │ │ ├── K_.glif │ │ │ ├── Kcommaaccent_.glif │ │ │ ├── L_.glif │ │ │ ├── Lacute_.glif │ │ │ ├── Lcaron_.glif │ │ │ ├── Lcommaaccent_.glif │ │ │ ├── Ldot_.glif │ │ │ ├── Lslash_.glif │ │ │ ├── M_.glif │ │ │ ├── N_.glif │ │ │ ├── Nacute_.glif │ │ │ ├── Ncaron_.glif │ │ │ ├── Ncommaaccent_.glif │ │ │ ├── Ntilde_.glif │ │ │ ├── OE_.glif │ │ │ ├── O_.glif │ │ │ ├── Oacute_.glif │ │ │ ├── Obreve_.glif │ │ │ ├── Ocircumflex_.glif │ │ │ ├── Odieresis_.glif │ │ │ ├── Ograve_.glif │ │ │ ├── Ohungarumlaut_.glif │ │ │ ├── Omacron_.glif │ │ │ ├── Oslash_.glif │ │ │ ├── Otilde_.glif │ │ │ ├── P_.glif │ │ │ ├── Q_.glif │ │ │ ├── R_.glif │ │ │ ├── Racute_.glif │ │ │ ├── Rcaron_.glif │ │ │ ├── Rcommaaccent_.glif │ │ │ ├── S_.glif │ │ │ ├── Sacute_.glif │ │ │ ├── Scaron_.glif │ │ │ ├── Scedilla_.glif │ │ │ ├── Scircumflex_.glif │ │ │ ├── T_.glif │ │ │ ├── Tbar_.glif │ │ │ ├── Tcaron_.glif │ │ │ ├── Tcommaaccent_.glif │ │ │ ├── Thorn_.glif │ │ │ ├── U_.glif │ │ │ ├── Uacute_.glif │ │ │ ├── Ubreve_.glif │ │ │ ├── Ucircumflex_.glif │ │ │ ├── Udieresis_.glif │ │ │ ├── Ugrave_.glif │ │ │ ├── Uhungarumlaut_.glif │ │ │ ├── Umacron_.glif │ │ │ ├── Uogonek_.glif │ │ │ ├── Uring_.glif │ │ │ ├── Utilde_.glif │ │ │ ├── V_.glif │ │ │ ├── W_.glif │ │ │ ├── Wcircumflex_.glif │ │ │ ├── X_.glif │ │ │ ├── Y_.glif │ │ │ ├── Yacute_.glif │ │ │ ├── Ycircumflex_.glif │ │ │ ├── Ydieresis_.glif │ │ │ ├── Z_.glif │ │ │ ├── Zacute_.glif │ │ │ ├── Zcaron_.glif │ │ │ ├── Zdotaccent_.glif │ │ │ ├── _notdef.glif │ │ │ ├── a.glif │ │ │ ├── aacute.glif │ │ │ ├── abreve.glif │ │ │ ├── acircumflex.glif │ │ │ ├── acute.glif │ │ │ ├── adieresis.glif │ │ │ ├── ae.glif │ │ │ ├── agrave.glif │ │ │ ├── amacron.glif │ │ │ ├── ampersand.glif │ │ │ ├── aogonek.glif │ │ │ ├── aring.glif │ │ │ ├── asciicircum.glif │ │ │ ├── asciitilde.glif │ │ │ ├── asterisk.glif │ │ │ ├── at.glif │ │ │ ├── atilde.glif │ │ │ ├── b.glif │ │ │ ├── backslash.glif │ │ │ ├── bar.glif │ │ │ ├── braceleft.glif │ │ │ ├── braceright.glif │ │ │ ├── bracketleft.glif │ │ │ ├── bracketright.glif │ │ │ ├── breve.glif │ │ │ ├── bullet.glif │ │ │ ├── c.glif │ │ │ ├── cacute.glif │ │ │ ├── caron.glif │ │ │ ├── ccaron.glif │ │ │ ├── ccedilla.glif │ │ │ ├── ccircumflex.glif │ │ │ ├── cdotaccent.glif │ │ │ ├── cedilla.glif │ │ │ ├── cent.glif │ │ │ ├── circumflex.glif │ │ │ ├── colon.glif │ │ │ ├── comma.glif │ │ │ ├── contents.plist │ │ │ ├── copyright.glif │ │ │ ├── d.glif │ │ │ ├── dcaron.glif │ │ │ ├── dcroat.glif │ │ │ ├── dieresis.glif │ │ │ ├── dollar.glif │ │ │ ├── dotaccent.glif │ │ │ ├── dotlessi.glif │ │ │ ├── e.glif │ │ │ ├── eacute.glif │ │ │ ├── ebreve.glif │ │ │ ├── ecaron.glif │ │ │ ├── ecircumflex.glif │ │ │ ├── edieresis.glif │ │ │ ├── edotaccent.glif │ │ │ ├── egrave.glif │ │ │ ├── eight.glif │ │ │ ├── ellipsis.glif │ │ │ ├── emacron.glif │ │ │ ├── emdash.glif │ │ │ ├── endash.glif │ │ │ ├── eng.glif │ │ │ ├── eogonek.glif │ │ │ ├── equal.glif │ │ │ ├── eth.glif │ │ │ ├── euro.glif │ │ │ ├── exclam.glif │ │ │ ├── exclamdown.glif │ │ │ ├── f.glif │ │ │ ├── fi.glif │ │ │ ├── five.glif │ │ │ ├── fl.glif │ │ │ ├── four.glif │ │ │ ├── g.glif │ │ │ ├── gbreve.glif │ │ │ ├── gcircumflex.glif │ │ │ ├── gcommaaccent.glif │ │ │ ├── gdotaccent.glif │ │ │ ├── germandbls.glif │ │ │ ├── grave.glif │ │ │ ├── greater.glif │ │ │ ├── h.glif │ │ │ ├── hbar.glif │ │ │ ├── hcircumflex.glif │ │ │ ├── hungarumlaut.glif │ │ │ ├── hyphen.glif │ │ │ ├── i.glif │ │ │ ├── iacute.glif │ │ │ ├── ibreve.glif │ │ │ ├── icircumflex.glif │ │ │ ├── idieresis.glif │ │ │ ├── igrave.glif │ │ │ ├── ij.glif │ │ │ ├── imacron.glif │ │ │ ├── iogonek.glif │ │ │ ├── itilde.glif │ │ │ ├── j.glif │ │ │ ├── jcircumflex.glif │ │ │ ├── k.glif │ │ │ ├── kcommaaccent.glif │ │ │ ├── kgreenlandic.glif │ │ │ ├── l.glif │ │ │ ├── lacute.glif │ │ │ ├── lcaron.glif │ │ │ ├── lcommaaccent.glif │ │ │ ├── ldot.glif │ │ │ ├── less.glif │ │ │ ├── longs.glif │ │ │ ├── lslash.glif │ │ │ ├── m.glif │ │ │ ├── macron.glif │ │ │ ├── minus.glif │ │ │ ├── n.glif │ │ │ ├── nacute.glif │ │ │ ├── napostrophe.glif │ │ │ ├── ncaron.glif │ │ │ ├── ncommaaccent.glif │ │ │ ├── nine.glif │ │ │ ├── ntilde.glif │ │ │ ├── numbersign.glif │ │ │ ├── o.glif │ │ │ ├── oacute.glif │ │ │ ├── obreve.glif │ │ │ ├── ocircumflex.glif │ │ │ ├── odieresis.glif │ │ │ ├── oe.glif │ │ │ ├── ogonek.glif │ │ │ ├── ograve.glif │ │ │ ├── ohungarumlaut.glif │ │ │ ├── omacron.glif │ │ │ ├── one.glif │ │ │ ├── oslash.glif │ │ │ ├── otilde.glif │ │ │ ├── p.glif │ │ │ ├── parenleft.glif │ │ │ ├── parenright.glif │ │ │ ├── percent.glif │ │ │ ├── period.glif │ │ │ ├── periodcentered.glif │ │ │ ├── plus.glif │ │ │ ├── q.glif │ │ │ ├── question.glif │ │ │ ├── questiondown.glif │ │ │ ├── quotedbl.glif │ │ │ ├── quotedblbase.glif │ │ │ ├── quotedblleft.glif │ │ │ ├── quotedblright.glif │ │ │ ├── quoteleft.glif │ │ │ ├── quoteright.glif │ │ │ ├── quotesinglbase.glif │ │ │ ├── quotesingle.glif │ │ │ ├── r.glif │ │ │ ├── racute.glif │ │ │ ├── rcaron.glif │ │ │ ├── rcommaaccent.glif │ │ │ ├── registered.glif │ │ │ ├── ring.glif │ │ │ ├── s.glif │ │ │ ├── sacute.glif │ │ │ ├── scaron.glif │ │ │ ├── scedilla.glif │ │ │ ├── scircumflex.glif │ │ │ ├── semicolon.glif │ │ │ ├── seven.glif │ │ │ ├── six.glif │ │ │ ├── slash.glif │ │ │ ├── space.glif │ │ │ ├── sterling.glif │ │ │ ├── t.glif │ │ │ ├── tbar.glif │ │ │ ├── tcaron.glif │ │ │ ├── tcommaaccent.glif │ │ │ ├── thorn.glif │ │ │ ├── three.glif │ │ │ ├── tilde.glif │ │ │ ├── trademark.glif │ │ │ ├── two.glif │ │ │ ├── u.glif │ │ │ ├── uacute.glif │ │ │ ├── ubreve.glif │ │ │ ├── ucircumflex.glif │ │ │ ├── udieresis.glif │ │ │ ├── ugrave.glif │ │ │ ├── uhungarumlaut.glif │ │ │ ├── umacron.glif │ │ │ ├── underscore.glif │ │ │ ├── uni0093.glif │ │ │ ├── uni0094.glif │ │ │ ├── uni201F_.glif │ │ │ ├── uogonek.glif │ │ │ ├── uring.glif │ │ │ ├── utilde.glif │ │ │ ├── v.glif │ │ │ ├── w.glif │ │ │ ├── wcircumflex.glif │ │ │ ├── x.glif │ │ │ ├── y.glif │ │ │ ├── yacute.glif │ │ │ ├── ycircumflex.glif │ │ │ ├── ydieresis.glif │ │ │ ├── yen.glif │ │ │ ├── z.glif │ │ │ ├── zacute.glif │ │ │ ├── zcaron.glif │ │ │ ├── zdotaccent.glif │ │ │ └── zero.glif │ │ │ ├── groups.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ └── webfonts │ │ ├── leaguegothic-condensed-italic-webfont.eot │ │ ├── leaguegothic-condensed-italic-webfont.svg │ │ ├── leaguegothic-condensed-italic-webfont.ttf │ │ ├── leaguegothic-condensed-italic-webfont.woff │ │ ├── leaguegothic-condensed-regular-webfont.eot │ │ ├── leaguegothic-condensed-regular-webfont.svg │ │ ├── leaguegothic-condensed-regular-webfont.ttf │ │ ├── leaguegothic-condensed-regular-webfont.woff │ │ ├── leaguegothic-italic-webfont.eot │ │ ├── leaguegothic-italic-webfont.svg │ │ ├── leaguegothic-italic-webfont.ttf │ │ ├── leaguegothic-italic-webfont.woff │ │ ├── leaguegothic-regular-webfont.eot │ │ ├── leaguegothic-regular-webfont.svg │ │ ├── leaguegothic-regular-webfont.ttf │ │ ├── leaguegothic-regular-webfont.woff │ │ └── stylesheet.css ├── git-guis.png ├── gitflow-for-pm.png ├── gitflow.png ├── workflow-gitdontcare.jpg ├── workflow-lots.png ├── workflow-people.png └── workflow-tasks.png ├── multiplex.txt ├── session-lonestarphp-strategy.md ├── session-lonestarphp.html ├── session-oscon-gitforgrownups.md ├── session-oscon.html ├── session-scratchnotes.md ├── webinar-oscon-gitforgrownups.md ├── webinar-oscon.html ├── workshop-devwinter.html ├── workshop-devwinter.md ├── workshop-oscon-gitforteams.md └── workshop-oscon.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/README.md -------------------------------------------------------------------------------- /handouts/slides-gitforgrownups-oscon-webinar-notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/handouts/slides-gitforgrownups-oscon-webinar-notes.pdf -------------------------------------------------------------------------------- /handouts/slides-gitforgrownups-oscon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/handouts/slides-gitforgrownups-oscon.pdf -------------------------------------------------------------------------------- /handouts/slides-gitforteams-lonestarphp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/handouts/slides-gitforteams-lonestarphp.pdf -------------------------------------------------------------------------------- /handouts/slides-gitforteams-oscon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/handouts/slides-gitforteams-oscon.pdf -------------------------------------------------------------------------------- /lessons/00-intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/00-intro/README.md -------------------------------------------------------------------------------- /lessons/00-intro/overview-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/00-intro/overview-script.md -------------------------------------------------------------------------------- /lessons/01-getting-started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/01-getting-started/README.md -------------------------------------------------------------------------------- /lessons/02-clone-remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/02-clone-remote/README.md -------------------------------------------------------------------------------- /lessons/03-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/03-config/README.md -------------------------------------------------------------------------------- /lessons/04-init-local/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/04-init-local/README.md -------------------------------------------------------------------------------- /lessons/05-connect-remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/05-connect-remote/README.md -------------------------------------------------------------------------------- /lessons/06-branches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/06-branches/README.md -------------------------------------------------------------------------------- /lessons/07-tags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/07-tags/README.md -------------------------------------------------------------------------------- /lessons/08-find-and-fix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/08-find-and-fix/README.md -------------------------------------------------------------------------------- /lessons/09-rollback-reset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/09-rollback-reset/README.md -------------------------------------------------------------------------------- /lessons/10-rebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/10-rebase/README.md -------------------------------------------------------------------------------- /lessons/11-github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/11-github/README.md -------------------------------------------------------------------------------- /lessons/12-bitbucket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/12-bitbucket/README.md -------------------------------------------------------------------------------- /lessons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/Makefile -------------------------------------------------------------------------------- /lessons/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lessons/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/README.pdf -------------------------------------------------------------------------------- /lessons/title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/lessons/title.md -------------------------------------------------------------------------------- /resources/bzr-log-graphical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/bzr-log-graphical.png -------------------------------------------------------------------------------- /resources/git-log-graphical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/git-log-graphical.png -------------------------------------------------------------------------------- /resources/sample-bash_profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/sample-bash_profile.md -------------------------------------------------------------------------------- /resources/sample-gitconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/sample-gitconfig.md -------------------------------------------------------------------------------- /resources/strategy-branching-cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/strategy-branching-cd.png -------------------------------------------------------------------------------- /resources/strategy-branching-gitflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/strategy-branching-gitflow.png -------------------------------------------------------------------------------- /resources/strategy-permissions-branching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/strategy-permissions-branching.png -------------------------------------------------------------------------------- /resources/strategy-permissions-centralized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/strategy-permissions-centralized.png -------------------------------------------------------------------------------- /resources/strategy-permissions-forking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/strategy-permissions-forking.png -------------------------------------------------------------------------------- /resources/strategy-permissions-patching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/strategy-permissions-patching.png -------------------------------------------------------------------------------- /resources/workflow-centralized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-centralized.png -------------------------------------------------------------------------------- /resources/workflow-gatekeeper-automated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-gatekeeper-automated.png -------------------------------------------------------------------------------- /resources/workflow-gatekeeper-human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-gatekeeper-human.png -------------------------------------------------------------------------------- /resources/workflow-peerreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-peerreview.png -------------------------------------------------------------------------------- /resources/workflow-sample-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-sample-diagram.png -------------------------------------------------------------------------------- /resources/workflow-sample-starwars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-sample-starwars.md -------------------------------------------------------------------------------- /resources/workflow-sample-whisperingpines-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-sample-whisperingpines-code.md -------------------------------------------------------------------------------- /resources/workflow-sample-whisperingpines-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-sample-whisperingpines-deployment.md -------------------------------------------------------------------------------- /resources/workflow-sample-whisperingpines-releasecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-sample-whisperingpines-releasecycle.md -------------------------------------------------------------------------------- /resources/workflow-single-branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-single-branch.png -------------------------------------------------------------------------------- /resources/workflow-starwars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-starwars.png -------------------------------------------------------------------------------- /resources/workflow-undoing-changes.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-undoing-changes.bmml -------------------------------------------------------------------------------- /resources/workflow-undoing-changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-undoing-changes.png -------------------------------------------------------------------------------- /resources/workflow-undoing-merge.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-undoing-merge.bmml -------------------------------------------------------------------------------- /resources/workflow-undoing-merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-undoing-merge.png -------------------------------------------------------------------------------- /resources/workflow-whisperingpines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/resources/workflow-whisperingpines.png -------------------------------------------------------------------------------- /slides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/README.md -------------------------------------------------------------------------------- /slides/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/.DS_Store -------------------------------------------------------------------------------- /slides/lib/reveal.js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/.gitignore -------------------------------------------------------------------------------- /slides/lib/reveal.js/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/.travis.yml -------------------------------------------------------------------------------- /slides/lib/reveal.js/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/Gruntfile.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/LICENSE -------------------------------------------------------------------------------- /slides/lib/reveal.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/README.md -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/print/paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/print/paper.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/print/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/print/pdf.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/reveal.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/reveal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/reveal.min.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/README.md -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/beige.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/beige.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/blood.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/blood.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/default.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/moon.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/night.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/serif.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/serif.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/simple.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/sky.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/solarized.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/source/beige.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/source/beige.scss -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/source/blood.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/source/blood.scss -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/source/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/source/default.scss -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/source/moon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/source/moon.scss -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/source/night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/source/night.scss -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/source/serif.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/source/serif.scss -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/source/simple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/source/simple.scss -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/source/sky.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/source/sky.scss -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/source/solarized.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/source/solarized.scss -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/template/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/template/mixins.scss -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/template/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/template/settings.scss -------------------------------------------------------------------------------- /slides/lib/reveal.js/css/theme/template/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/css/theme/template/theme.scss -------------------------------------------------------------------------------- /slides/lib/reveal.js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/index.html -------------------------------------------------------------------------------- /slides/lib/reveal.js/js/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/js/reveal.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/js/reveal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/js/reveal.min.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/lib/css/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/lib/css/zenburn.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/lib/font/league_gothic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/lib/font/league_gothic-webfont.eot -------------------------------------------------------------------------------- /slides/lib/reveal.js/lib/font/league_gothic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/lib/font/league_gothic-webfont.svg -------------------------------------------------------------------------------- /slides/lib/reveal.js/lib/font/league_gothic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/lib/font/league_gothic-webfont.ttf -------------------------------------------------------------------------------- /slides/lib/reveal.js/lib/font/league_gothic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/lib/font/league_gothic-webfont.woff -------------------------------------------------------------------------------- /slides/lib/reveal.js/lib/font/league_gothic_license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/lib/font/league_gothic_license -------------------------------------------------------------------------------- /slides/lib/reveal.js/lib/js/classList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/lib/js/classList.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/lib/js/head.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/lib/js/head.min.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/lib/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/lib/js/html5shiv.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/package.json -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/leap/leap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/leap/leap.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/markdown/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/markdown/example.html -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/markdown/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/markdown/example.md -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/markdown/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/markdown/marked.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/math/math.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/multiplex/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/multiplex/client.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/multiplex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/multiplex/index.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/multiplex/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/multiplex/master.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/notes-server/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/notes-server/client.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/notes-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/notes-server/index.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/notes-server/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/notes-server/notes.html -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/notes/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/notes/notes.html -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/notes/notes.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/postmessage/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/postmessage/example.html -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/postmessage/postmessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/postmessage/postmessage.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/print-pdf/print-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/print-pdf/print-pdf.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/remotes/remotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/remotes/remotes.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/search/search.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/plugin/zoom-js/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/plugin/zoom-js/zoom.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/examples/assets/image1.png -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/examples/assets/image2.png -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/examples/barebones.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/examples/barebones.html -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/examples/embedded-media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/examples/embedded-media.html -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/examples/math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/examples/math.html -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/examples/slide-backgrounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/examples/slide-backgrounds.html -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/qunit-1.12.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/qunit-1.12.0.css -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/qunit-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/qunit-1.12.0.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/test-markdown-element-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/test-markdown-element-attributes.html -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/test-markdown-element-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/test-markdown-element-attributes.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/test-markdown-slide-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/test-markdown-slide-attributes.html -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/test-markdown-slide-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/test-markdown-slide-attributes.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/test-markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/test-markdown.html -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/test-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/test-markdown.js -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/test.html -------------------------------------------------------------------------------- /slides/lib/reveal.js/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/reveal.js/test/test.js -------------------------------------------------------------------------------- /slides/lib/themes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/themes/.DS_Store -------------------------------------------------------------------------------- /slides/lib/themes/drupalize.me/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/themes/drupalize.me/background.png -------------------------------------------------------------------------------- /slides/lib/themes/drupalize.me/drupalize.me.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/themes/drupalize.me/drupalize.me.css -------------------------------------------------------------------------------- /slides/lib/themes/drupalize.me/images/d8logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/themes/drupalize.me/images/d8logo.svg -------------------------------------------------------------------------------- /slides/lib/themes/drupalize.me/images/drupalizeme-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/themes/drupalize.me/images/drupalizeme-logo.png -------------------------------------------------------------------------------- /slides/lib/themes/drupalize.me/images/lullabot-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/themes/drupalize.me/images/lullabot-logo.png -------------------------------------------------------------------------------- /slides/lib/themes/drupalize.me/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/themes/drupalize.me/logo.png -------------------------------------------------------------------------------- /slides/lib/themes/gitforteams/oreilly-pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/lib/themes/gitforteams/oreilly-pink.css -------------------------------------------------------------------------------- /slides/session-proposals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/session-proposals.md -------------------------------------------------------------------------------- /slides/slides/00-exit-evals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/00-exit-evals.md -------------------------------------------------------------------------------- /slides/slides/00-instructor-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/00-instructor-intro.md -------------------------------------------------------------------------------- /slides/slides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/README.md -------------------------------------------------------------------------------- /slides/slides/TEMPLATE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/TEMPLATE.html -------------------------------------------------------------------------------- /slides/slides/assets/beesuit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/beesuit.jpg -------------------------------------------------------------------------------- /slides/slides/assets/bloom-taxonomy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/bloom-taxonomy.jpg -------------------------------------------------------------------------------- /slides/slides/assets/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/.DS_Store -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/LeagueGothic-CondensedItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/LeagueGothic-CondensedItalic.otf -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/LeagueGothic-CondensedRegular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/LeagueGothic-CondensedRegular.otf -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/LeagueGothic-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/LeagueGothic-Italic.otf -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/LeagueGothic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/LeagueGothic-Regular.otf -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/Open Font License FAQ.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/Open Font License FAQ.markdown -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/Open Font License.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/Open Font License.markdown -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/images/league-gothic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/images/league-gothic-1.png -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/images/league-gothic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/images/league-gothic-2.png -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/images/league-gothic-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/images/league-gothic-3.png -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/images/league-gothic-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/images/league-gothic-4.png -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/images/league-gothic-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/images/league-gothic-5.jpg -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/images/league-gothic-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/images/league-gothic-6.png -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/readme.markdown -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Condensed Italic.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Condensed Italic.glyphs -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Condensed Italic.ufo/features.fea: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Condensed Italic.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Condensed Italic.ufo/lib.plist -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Condensed Regular.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Condensed Regular.glyphs -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Condensed Regular.ufo/features.fea: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Condensed Regular.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Condensed Regular.ufo/lib.plist -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.glyphs -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/features.fea: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/fontinfo.plist -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/AE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/AE_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Aacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Aacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Abreve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Abreve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Agrave_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Agrave_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Amacron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Amacron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Aogonek_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Aogonek_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Aring_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Aring_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Atilde_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Atilde_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/B_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/C_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/C_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Cacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Cacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ccaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ccaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ccedilla_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ccedilla_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/D_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/D_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Dcaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Dcaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Dcroat_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Dcroat_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/E_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/E_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Eacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Eacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ebreve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ebreve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ecaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ecaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Egrave_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Egrave_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Emacron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Emacron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Eng_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Eng_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Eogonek_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Eogonek_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Eth_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Eth_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Euro_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Euro_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/F_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/F_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/G_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/G_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Gbreve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Gbreve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/H_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/H_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Hbar_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Hbar_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/IJ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/IJ_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/I_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/I_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Iacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Iacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ibreve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ibreve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Igrave_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Igrave_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Imacron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Imacron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Iogonek_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Iogonek_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Itilde_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Itilde_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/J_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/J_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/K_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/K_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/L_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/L_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Lacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Lacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Lcaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Lcaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ldot_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ldot_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Lslash_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Lslash_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/M_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/M_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/NULL_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/NULL_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/N_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/N_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Nacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Nacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ncaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ncaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ntilde_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ntilde_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/OE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/OE_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/O_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/O_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Oacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Oacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Obreve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Obreve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ograve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ograve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Omacron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Omacron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Oslash_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Oslash_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Otilde_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Otilde_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/P_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/P_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Q_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Q_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/R_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/R_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Racute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Racute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Rcaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Rcaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/S_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/S_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Sacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Sacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Scaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Scaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Scedilla_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Scedilla_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/T_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/T_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Tbar_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Tbar_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Tcaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Tcaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Thorn_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Thorn_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/U_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/U_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Uacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Uacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ubreve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ubreve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ugrave_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Ugrave_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Umacron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Umacron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Uogonek_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Uogonek_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Uring_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Uring_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Utilde_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Utilde_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/V_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/V_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/W_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/W_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/X_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/X_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Y_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Y_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Yacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Yacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Z_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Z_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Zacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Zacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Zcaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/Zcaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/a.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/a.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/aacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/aacute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/abreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/abreve.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/acute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/adieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/adieresis.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ae.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ae.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/agrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/agrave.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/amacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/amacron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ampersand.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ampersand.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/aogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/aogonek.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/aring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/aring.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/asterisk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/asterisk.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/at.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/at.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/atilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/atilde.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/b.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/b.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/backslash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/backslash.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/bar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/bar.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/braceleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/braceleft.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/breve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/breve.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/bullet.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/bullet.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/c.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/c.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/cacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/cacute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/caron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ccaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ccaron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ccedilla.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ccedilla.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/cedilla.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/cedilla.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/cent.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/cent.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/colon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/colon.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/comma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/comma.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/copyright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/copyright.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/d.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/d.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/dcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/dcaron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/dcroat.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/dcroat.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/dieresis.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/dollar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/dollar.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/dotaccent.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/dotaccent.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/dotlessi.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/dotlessi.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/e.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/e.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/eacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/eacute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ebreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ebreve.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ecaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ecaron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/edieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/edieresis.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/egrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/egrave.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/eight.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/eight.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ellipsis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ellipsis.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/emacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/emacron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/emdash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/emdash.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/endash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/endash.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/eng.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/eng.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/eogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/eogonek.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/equal.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/equal.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/eth.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/eth.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/exclam.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/exclam.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/f.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/f.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/fi.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/fi.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/five.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/five.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/fl.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/fl.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/four.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/four.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/g.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/g.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/gbreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/gbreve.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/grave.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/greater.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/greater.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/h.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/h.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/hbar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/hbar.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/hyphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/hyphen.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/i.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/iacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/iacute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ibreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ibreve.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/idieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/idieresis.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/igrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/igrave.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ij.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ij.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/imacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/imacron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/iogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/iogonek.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/itilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/itilde.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/j.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/j.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/k.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/k.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/l.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/l.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/lacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/lacute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/lcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/lcaron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ldot.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ldot.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/less.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/less.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/longs.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/longs.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/lslash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/lslash.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/m.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/m.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/macron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/macron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/minus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/minus.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/n.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/n.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/nacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/nacute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ncaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ncaron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/nine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/nine.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ntilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ntilde.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/o.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/o.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/oacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/oacute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/obreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/obreve.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/odieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/odieresis.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/oe.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/oe.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ogonek.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ograve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ograve.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/omacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/omacron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/one.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/one.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/oslash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/oslash.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/otilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/otilde.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/p.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/p.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/parenleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/parenleft.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/percent.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/percent.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/period.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/period.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/plus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/plus.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/q.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/q.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/question.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/question.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/quotedbl.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/quotedbl.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/quoteleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/quoteleft.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/r.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/r.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/racute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/racute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/rcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/rcaron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ring.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/s.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/s.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/sacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/sacute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/scaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/scaron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/scedilla.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/scedilla.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/semicolon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/semicolon.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/seven.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/seven.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/six.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/six.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/slash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/slash.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/sterling.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/sterling.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/t.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/t.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/tbar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/tbar.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/tcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/tcaron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/thorn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/thorn.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/three.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/three.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/tilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/tilde.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/trademark.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/trademark.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/two.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/two.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/u.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/u.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uacute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ubreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ubreve.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/udieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/udieresis.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ugrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ugrave.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/umacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/umacron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uni000D_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uni000D_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uni0093.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uni0093.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uni0094.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uni0094.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uni021A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uni021A_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uni021B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uni021B_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uni201F_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uni201F_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uogonek.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/uring.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/utilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/utilde.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/v.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/v.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/w.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/w.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/x.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/x.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/y.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/y.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/yacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/yacute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ydieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/ydieresis.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/yen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/yen.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/z.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/z.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/zacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/zacute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/zcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/zcaron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/zero.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/glyphs/zero.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/lib.plist -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Italic.ufo/metainfo.plist -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.glyphs -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/features.fea: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/fontinfo.plist -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/AE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/AE_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Aacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Aacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Abreve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Abreve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Agrave_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Agrave_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Amacron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Amacron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Aogonek_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Aogonek_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Aring_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Aring_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Atilde_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Atilde_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/B_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/C_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/C_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Cacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Cacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ccaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ccaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/D_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/D_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Dcaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Dcaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Dcroat_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Dcroat_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/E_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/E_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Eacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Eacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ebreve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ebreve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ecaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ecaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Egrave_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Egrave_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Emacron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Emacron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Eng_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Eng_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Eogonek_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Eogonek_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Eth_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Eth_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/F_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/F_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/G_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/G_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Gbreve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Gbreve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/H_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/H_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Hbar_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Hbar_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/IJ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/IJ_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/I_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/I_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Iacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Iacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ibreve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ibreve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Igrave_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Igrave_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Imacron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Imacron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Iogonek_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Iogonek_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Itilde_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Itilde_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/J_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/J_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/K_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/K_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/L_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/L_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Lacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Lacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Lcaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Lcaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ldot_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ldot_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Lslash_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Lslash_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/M_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/M_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/N_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/N_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Nacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Nacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ncaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ncaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ntilde_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ntilde_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/OE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/OE_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/O_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/O_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Oacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Oacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Obreve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Obreve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ograve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ograve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Omacron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Omacron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Oslash_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Oslash_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Otilde_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Otilde_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/P_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/P_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Q_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Q_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/R_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/R_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Racute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Racute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Rcaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Rcaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/S_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/S_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Sacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Sacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Scaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Scaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/T_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/T_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Tbar_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Tbar_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Tcaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Tcaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Thorn_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Thorn_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/U_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/U_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Uacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Uacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ubreve_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ubreve_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ugrave_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Ugrave_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Umacron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Umacron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Uogonek_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Uogonek_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Uring_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Uring_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Utilde_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Utilde_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/V_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/V_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/W_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/W_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/X_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/X_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Y_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Y_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Yacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Yacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Z_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Z_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Zacute_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Zacute_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Zcaron_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/Zcaron_.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/a.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/a.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/aacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/aacute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/abreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/abreve.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/acute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/ae.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/ae.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/agrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/agrave.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/amacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/amacron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/aogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/aogonek.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/aring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/aring.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/asterisk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/asterisk.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/at.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/at.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/atilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/atilde.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/b.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/b.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/bar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/bar.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/breve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/breve.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/bullet.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/bullet.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/c.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/c.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/cacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/cacute.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/caron.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/cent.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/cent.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/colon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/colon.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/comma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/comma.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/d.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/d.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/e.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/e.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/eight.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/eight.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/eng.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/eng.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/equal.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/equal.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/eth.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/eth.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/euro.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/euro.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/f.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/f.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/fi.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/fi.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/five.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/five.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/fl.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/fl.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/four.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/four.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/g.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/g.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/grave.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/h.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/h.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/hbar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/hbar.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/i.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/ij.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/ij.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/j.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/j.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/k.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/k.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/l.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/l.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/ldot.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/ldot.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/less.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/less.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/longs.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/longs.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/m.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/m.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/minus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/minus.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/n.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/n.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/nine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/nine.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/o.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/o.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/oe.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/oe.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/one.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/one.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/p.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/p.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/plus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/plus.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/q.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/q.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/r.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/r.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/ring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/ring.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/s.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/s.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/seven.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/seven.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/six.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/six.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/slash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/slash.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/t.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/t.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/tbar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/tbar.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/thorn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/thorn.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/three.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/three.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/tilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/tilde.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/two.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/two.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/u.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/u.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/uring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/uring.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/v.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/v.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/w.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/w.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/x.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/x.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/y.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/y.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/yen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/yen.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/z.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/z.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/zero.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/glyphs/zero.glif -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/groups.plist -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/lib.plist -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/source/League Gothic Regular.ufo/metainfo.plist -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-condensed-italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-condensed-italic-webfont.eot -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-condensed-italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-condensed-italic-webfont.svg -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-condensed-italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-condensed-italic-webfont.ttf -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-italic-webfont.eot -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-italic-webfont.svg -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-italic-webfont.ttf -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-italic-webfont.woff -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-regular-webfont.eot -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-regular-webfont.svg -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-regular-webfont.ttf -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/leaguegothic-regular-webfont.woff -------------------------------------------------------------------------------- /slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/fonts/theleagueof-league-gothic/webfonts/stylesheet.css -------------------------------------------------------------------------------- /slides/slides/assets/git-guis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/git-guis.png -------------------------------------------------------------------------------- /slides/slides/assets/gitflow-for-pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/gitflow-for-pm.png -------------------------------------------------------------------------------- /slides/slides/assets/gitflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/gitflow.png -------------------------------------------------------------------------------- /slides/slides/assets/workflow-gitdontcare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/workflow-gitdontcare.jpg -------------------------------------------------------------------------------- /slides/slides/assets/workflow-lots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/workflow-lots.png -------------------------------------------------------------------------------- /slides/slides/assets/workflow-people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/workflow-people.png -------------------------------------------------------------------------------- /slides/slides/assets/workflow-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/assets/workflow-tasks.png -------------------------------------------------------------------------------- /slides/slides/multiplex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/multiplex.txt -------------------------------------------------------------------------------- /slides/slides/session-lonestarphp-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/session-lonestarphp-strategy.md -------------------------------------------------------------------------------- /slides/slides/session-lonestarphp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/session-lonestarphp.html -------------------------------------------------------------------------------- /slides/slides/session-oscon-gitforgrownups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/session-oscon-gitforgrownups.md -------------------------------------------------------------------------------- /slides/slides/session-oscon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/session-oscon.html -------------------------------------------------------------------------------- /slides/slides/session-scratchnotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/session-scratchnotes.md -------------------------------------------------------------------------------- /slides/slides/webinar-oscon-gitforgrownups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/webinar-oscon-gitforgrownups.md -------------------------------------------------------------------------------- /slides/slides/webinar-oscon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/webinar-oscon.html -------------------------------------------------------------------------------- /slides/slides/workshop-devwinter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/workshop-devwinter.html -------------------------------------------------------------------------------- /slides/slides/workshop-devwinter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/workshop-devwinter.md -------------------------------------------------------------------------------- /slides/slides/workshop-oscon-gitforteams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/workshop-oscon-gitforteams.md -------------------------------------------------------------------------------- /slides/slides/workshop-oscon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmajane/gitforteams/HEAD/slides/slides/workshop-oscon.html --------------------------------------------------------------------------------