From ffd8b5e14db9ff78f16a104c4d57659aa7a0f7db Mon Sep 17 00:00:00 2001 From: Schizzy98 Date: Fri, 19 Jan 2024 18:16:55 -0500 Subject: [PATCH 1/3] Initial commit --- README.md | 116 --------------------------------------- _layouts/default.html | 12 +--- another-page.md | 9 --- index.md | 125 ++++-------------------------------------- thumbnail.png | Bin 8740 -> 0 bytes 5 files changed, 13 insertions(+), 249 deletions(-) delete mode 100644 README.md delete mode 100644 another-page.md delete mode 100644 thumbnail.png diff --git a/README.md b/README.md deleted file mode 100644 index 4c2fac074ba..00000000000 --- a/README.md +++ /dev/null @@ -1,116 +0,0 @@ -# The Hacker theme - -[![.github/workflows/ci.yaml](https://github.com/pages-themes/hacker/actions/workflows/ci.yaml/badge.svg)](https://github.com/pages-themes/hacker/actions/workflows/ci.yaml) [![Gem Version](https://badge.fury.io/rb/jekyll-theme-hacker.svg)](https://badge.fury.io/rb/jekyll-theme-hacker) - -*Hacker is a Jekyll theme for GitHub Pages. You can [preview the theme to see what it looks like](http://pages-themes.github.io/hacker), or even [use it today](#usage).* - -![Thumbnail of Hacker](thumbnail.png) - -## Usage - -To use the Hacker theme: - -1. Add the following to your site's `_config.yml`: - - ```yml - remote_theme: pages-themes/hacker@v0.2.0 - plugins: - - jekyll-remote-theme # add this line to the plugins list if you already have one - ``` - -2. Optionally, if you'd like to preview your site on your computer, add the following to your site's `Gemfile`: - - ```ruby - gem "github-pages", group: :jekyll_plugins - ``` - -## Customizing - -### Configuration variables - -Hacker will respect the following variables, if set in your site's `_config.yml`: - -```yml -title: [The title of your site] -description: [A short description of your site's purpose] -``` - -Additionally, you may choose to set the following optional variables: - -```yml -show_downloads: ["true" or "false" (unquoted) to indicate whether to provide a download URL] -google_analytics: [Your Google Analytics tracking ID] -``` - -### Stylesheet - -If you'd like to add your own custom styles: - -1. Create a file called `/assets/css/style.scss` in your site -2. Add the following content to the top of the file, exactly as shown: - ```scss - --- - --- - - @import "{{ site.theme }}"; - ``` -3. Add any custom CSS (or Sass, including imports) you'd like immediately after the `@import` line - -*Note: If you'd like to change the theme's Sass variables, you must set new values before the `@import` line in your stylesheet.* - -### Layouts - -If you'd like to change the theme's HTML layout: - -1. For some changes such as a custom `favicon`, you can add custom files in your local `_includes` folder. The files [provided with the theme](https://github.com/pages-themes/hacker/tree/master/_includes) provide a starting point and are included by the [original layout template](https://github.com/pages-themes/hacker/blob/master/_layouts/default.html). -2. For more extensive changes, [copy the original template](https://github.com/pages-themes/hacker/blob/master/_layouts/default.html) from the theme's repository
(*Pro-tip: click "raw" to make copying easier*) -3. Create a file called `/_layouts/default.html` in your site -4. Paste the default layout content copied in the first step -5. Customize the layout as you'd like - -### Customizing Google Analytics code - -Google has released several iterations to their Google Analytics code over the years since this theme was first created. If you would like to take advantage of the latest code, paste it into `_includes/head-custom-google-analytics.html` in your Jekyll site. - -### Overriding GitHub-generated URLs - -Templates often rely on URLs supplied by GitHub such as links to your repository or links to download your project. If you'd like to override one or more default URLs: - -1. Look at [the template source](https://github.com/pages-themes/hacker/blob/master/_layouts/default.html) to determine the name of the variable. It will be in the form of `{{ site.github.zip_url }}`. -2. Specify the URL that you'd like the template to use in your site's `_config.yml`. For example, if the variable was `site.github.url`, you'd add the following: - ```yml - github: - zip_url: http://example.com/download.zip - another_url: another value - ``` -3. When your site is built, Jekyll will use the URL you specified, rather than the default one provided by GitHub. - -*Note: You must remove the `site.` prefix, and each variable name (after the `github.`) should be indent with two space below `github:`.* - -For more information, see [the Jekyll variables documentation](https://jekyllrb.com/docs/variables/). - -## Roadmap - -See the [open issues](https://github.com/pages-themes/hacker/issues) for a list of proposed features (and known issues). - -## Project philosophy - -The Hacker theme is intended to make it quick and easy for GitHub Pages users to create their first (or 100th) website. The theme should meet the vast majority of users' needs out of the box, erring on the side of simplicity rather than flexibility, and provide users the opportunity to opt-in to additional complexity if they have specific needs or wish to further customize their experience (such as adding custom CSS or modifying the default layout). It should also look great, but that goes without saying. - -## Contributing - -Interested in contributing to Hacker? We'd love your help. Hacker is an open source project, built one contribution at a time by users like you. See [the CONTRIBUTING file](docs/CONTRIBUTING.md) for instructions on how to contribute. - -### Previewing the theme locally - -If you'd like to preview the theme locally (for example, in the process of proposing a change): - -1. Clone down the theme's repository (`git clone https://github.com/pages-themes/hacker`) -2. `cd` into the theme's directory -3. Run `script/bootstrap` to install the necessary dependencies -4. Run `bundle exec jekyll serve` to start the preview server -5. Visit [`localhost:4000`](http://localhost:4000) in your browser to preview the theme - -### Running tests - -The theme contains a minimal test suite, to ensure a site with the theme would build successfully. To run the tests, simply run `script/cibuild`. You'll need to run `script/bootstrap` once before the test script will work. diff --git a/_layouts/default.html b/_layouts/default.html index 1c8c883a480..c130b96df57 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -15,20 +15,10 @@
-

{{ site.title | default: site.github.repository_name }}

+

Maldev blog - Schizzy

-

{{ site.description | default: site.github.project_tagline }}

- -
- {% if site.show_downloads %} - Download as .zip - Download as .tar.gz - {% endif %} - View on GitHub -
-
{{ content }} diff --git a/another-page.md b/another-page.md deleted file mode 100644 index 03ce0c23db4..00000000000 --- a/another-page.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -layout: default ---- - -## Welcome to another page - -_yay_ - -[back](./) diff --git a/index.md b/index.md index e039c9ac641..25ec7be6cb2 100644 --- a/index.md +++ b/index.md @@ -2,122 +2,21 @@ layout: default --- -Text can be **bold**, _italic_, ~~strikethrough~~ or `keyword`. -[Link to another page](./another-page.html). -There should be whitespace between paragraphs. -There should be whitespace between paragraphs. We recommend including a README, or a file with information about your project. +# Whoami +Welcome to the blog of your friendly neighbourhood hacker. -# Header 1 +I'm Schizzy, a mid 20 something tech enthusiast and professional button pusher. I've been poking around with computers ever since my first laptop, and I love to deep dive into topics such as Reverse Engineering, Malware Analysis, Capture the Flags, and other nerdy things! It is my hope that you learn something from me even if that's a new way to fail at something. I will be documenting my progress through CTFs, code projects, and whatever else interests me. -This is a normal paragraph following a header. GitHub is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere. +## What's next? +* HackTheBox Writeups +* Describing the method to my madness +* Rust projects (Some already completed ones are things like a port scanner) +* C++ Projects (If you have suggestions, please lmk!) +* Having fun with Lua - a really nice scripting language +* Exploit development and mitigation techniques +* More to come. -## Header 2 - -> This is a blockquote following a header. -> -> When something is important enough, you do it even if the odds are not in your favor. - -### Header 3 - -```js -// Javascript code with syntax highlighting. -var fun = function lang(l) { - dateformat.i18n = require('./lang/' + l) - return true; -} -``` - -```ruby -# Ruby code with syntax highlighting -GitHubPages::Dependencies.gems.each do |gem, version| - s.add_dependency(gem, "= #{version}") -end -``` - -#### Header 4 - -* This is an unordered list following a header. -* This is an unordered list following a header. -* This is an unordered list following a header. - -##### Header 5 - -1. This is an ordered list following a header. -2. This is an ordered list following a header. -3. This is an ordered list following a header. - -###### Header 6 - -| head1 | head two | three | -|:-------------|:------------------|:------| -| ok | good swedish fish | nice | -| out of stock | good and plenty | nice | -| ok | good `oreos` | hmm | -| ok | good `zoute` drop | yumm | - -### There's a horizontal rule below this. - -* * * - -### Here is an unordered list: - -* Item foo -* Item bar -* Item baz -* Item zip - -### And an ordered list: - -1. Item one -1. Item two -1. Item three -1. Item four - -### And a nested list: - -- level 1 item - - level 2 item - - level 2 item - - level 3 item - - level 3 item -- level 1 item - - level 2 item - - level 2 item - - level 2 item -- level 1 item - - level 2 item - - level 2 item -- level 1 item - -### Small image - -![Octocat](https://github.githubassets.com/images/icons/emoji/octocat.png) - -### Large image - -![Branching](https://guides.github.com/activities/hello-world/branching.png) - - -### Definition lists can be used with HTML syntax. - -
-
Name
-
Godzilla
-
Born
-
1952
-
Birthplace
-
Japan
-
Color
-
Green
-
- -``` -Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this. -``` - -``` -The final element. -``` +Thank you for reading! diff --git a/thumbnail.png b/thumbnail.png deleted file mode 100644 index 01bd0a8ee3c607bdbaed5113968e0c36132c9891..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8740 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 O0000 Date: Sat, 27 Jan 2024 13:06:52 -0500 Subject: [PATCH 2/3] Add sidebar Add sidebar with some categories, adjusted to make it look nicer. --- _config.yml | 9 ++++--- _layouts/default.html | 8 +++++++ _sass/jekyll-theme-hacker.scss | 37 +++++++++++++++++++++++++++++ .rubocop.yml => script/.rubocop.yml | 0 4 files changed, 49 insertions(+), 5 deletions(-) rename .rubocop.yml => script/.rubocop.yml (100%) diff --git a/_config.yml b/_config.yml index c5cf3fdc785..be425cae545 100644 --- a/_config.yml +++ b/_config.yml @@ -1,5 +1,4 @@ -title: Hacker theme -description: Hacker is a theme for GitHub Pages. -show_downloads: true -google_analytics: -theme: jekyll-theme-hacker \ No newline at end of file +title: Maldev-Blog +description: The blog of a friendly hacker. +show_downloads: true +theme: jekyll-theme-hacker diff --git a/_layouts/default.html b/_layouts/default.html index c130b96df57..a75fedc26d1 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -24,5 +24,13 @@

Maldev blog - Schizzy

{{ content }}
+ diff --git a/_sass/jekyll-theme-hacker.scss b/_sass/jekyll-theme-hacker.scss index b3123a11ce3..9ac212558c3 100644 --- a/_sass/jekyll-theme-hacker.scss +++ b/_sass/jekyll-theme-hacker.scss @@ -266,3 +266,40 @@ a { #a-title { text-decoration: none; } + +// Variables +$sidebar-width: 300px; +$sidebar-bg-color: #333; +$sidebar-text-color: #9F2B68; +$sidebar-link-color: #b5e853; +$sidebar-link-hover-color: #fff; + +// Sidebar Styles +.sidebar { + position: fixed; + top: 8%; + left: 0; + height: 100%; + width: $sidebar-width; + background-color: $sidebar-bg-color; + color: $sidebar-text-color; + padding: 20px; + + ul { + list-style: none; + padding: 0; + margin: 0; + } + + li { + margin-bottom: 10px; + } + + a { + text-decoration: none; + color: $sidebar-link-color; + display: block; + padding: 8px 10px; + border-radius: 5px; + } +} diff --git a/.rubocop.yml b/script/.rubocop.yml similarity index 100% rename from .rubocop.yml rename to script/.rubocop.yml From 41c8ec4fc65d6342557b651190cb7c4a8bc6507e Mon Sep 17 00:00:00 2001 From: Schizzy98 Date: Fri, 2 Feb 2024 18:50:27 -0500 Subject: [PATCH 3/3] Sidebar stuff Use bootstrap framework to add a simple sidebar. --- _layouts/default.html | 113 +++++++++++++++++++++--------- _sass/jekyll-theme-hacker.scss | 124 +++++++++++++++------------------ assets/images/catpuccino.png | Bin 0 -> 9292 bytes docs/FAQ.md | 0 4 files changed, 140 insertions(+), 97 deletions(-) create mode 100644 assets/images/catpuccino.png create mode 100644 docs/FAQ.md diff --git a/_layouts/default.html b/_layouts/default.html index a75fedc26d1..b90b34d5e32 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,36 +1,87 @@ - - - - - - - {% include head-custom.html %} - -{% seo %} - - - - -
- -
+ + + + + + + + {% include head-custom.html %} + + + + {% seo %} + + + +
-
- {{ content }} -
+ +

Maldev blog - Schizzy

+
-
+
+
+ +
+
+ {{ content }} +
+
- +
+ + + + + + diff --git a/_sass/jekyll-theme-hacker.scss b/_sass/jekyll-theme-hacker.scss index 9ac212558c3..8ce784c6d19 100644 --- a/_sass/jekyll-theme-hacker.scss +++ b/_sass/jekyll-theme-hacker.scss @@ -7,21 +7,23 @@ $header: $conifer !default; $blockquote-color: $silver-chalice !default; $blockquote-border: $dove-grey !default; $container-max-width: 1000px; +$max-width: 4000px; @mixin media-max-width($max-width) { @media (max-width: $max-width) { - @content; + @content; } } body { margin: 0; - padding: 0; + padding: 10px; background: $body-background url("../images/bkg.png") 0 0; color: $body-foreground; font-size: 16px; line-height: 1.5; - font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace; + font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, + monospace; } /* General & 'Reset' Stuff */ @@ -37,12 +39,17 @@ section { margin: 0 0 20px 0; } -h1, h2, h3, h4, h5, h6 { +h1, +h2, +h3, +h4, +h5, +h6 { margin: 0 0 20px; } li { - line-height: 1.4 ; + line-height: 1.4; } /* Header,
@@ -62,13 +69,15 @@ header { header h1 { font-size: 30px; line-height: 1.5; - margin: 0 0 0 -40px; + margin: 5px auto; font-weight: bold; - font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace; - color: $conifer;//$header; - text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), - 0 0 5px rgba(181, 232, 83, 0.1), - 0 0 10px rgba(181, 232, 83, 0.1); + font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, + monospace; + color: $conifer; //$header; + text-shadow: + 0 1px 1px rgba(0, 0, 0, 0.1), + 0 0 5px rgba(181, 232, 83, 0.1), + 0 0 10px rgba(181, 232, 83, 0.1); letter-spacing: -1px; -webkit-font-smoothing: antialiased; @include media-max-width($container-max-width) { @@ -76,7 +85,6 @@ header h1 { } } - header h1:before { content: "./ "; font-size: 24px; @@ -85,7 +93,7 @@ header h1:before { header h2 { font-size: 18px; font-weight: 300; - color: #666; + color: #fff; } #downloads .btn { @@ -100,19 +108,27 @@ header h2 { #main_content { width: 100%; -webkit-font-smoothing: antialiased; + color: white; } section img { - max-width: 100% + max-width: 100%; } -h1, h2, h3, h4, h5, h6 { +h1, +h2, +h3, +h4, +h5, +h6 { font-weight: normal; - font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace; + font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, + monospace; color: $header; letter-spacing: -0.03em; - text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), - 0 0 5px rgba(181, 232, 83, 0.1), - 0 0 10px rgba(181, 232, 83, 0.1); + text-shadow: + 0 1px 1px rgba(0, 0, 0, 0.1), + 0 0 5px rgba(181, 232, 83, 0.1), + 0 0 10px rgba(181, 232, 83, 0.1); } #main_content h1 { @@ -140,7 +156,7 @@ h1, h2, h3, h4, h5, h6 { #main_content h6 { font-size: 12px; text-transform: uppercase; - color: #999; + color: #fff; margin: 0 0 5px 0; } @@ -150,7 +166,7 @@ dt { } ul li { - list-style-image:url('../images/bullet.png'); + list-style-image: url("../images/bullet.png"); } blockquote { @@ -172,7 +188,7 @@ pre { } code.highlighter-rouge { - background: rgba(0,0,0,0.9); + background: rgba(0, 0, 0, 0.9); border: 1px solid rgba(255, 255, 255, 0.15); padding: 0px 3px; margin: 0px -3px; @@ -207,7 +223,13 @@ hr { .btn { display: inline-block; - background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.3), rgba(35, 35, 35, 0.3) 50%, rgba(10, 10, 10, 0.3) 50%, rgba(0, 0, 0, 0.3)); + background: -webkit-linear-gradient( + top, + rgba(40, 40, 40, 0.3), + rgba(35, 35, 35, 0.3) 50%, + rgba(10, 10, 10, 0.3) 50%, + rgba(0, 0, 0, 0.3) + ); padding: 8px 18px; border-radius: 50px; border: 2px solid rgba(0, 0, 0, 0.7); @@ -223,7 +245,13 @@ hr { } .btn:hover { - background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.6), rgba(35, 35, 35, 0.6) 50%, rgba(10, 10, 10, 0.8) 50%, rgba(0, 0, 0, 0.8)); + background: -webkit-linear-gradient( + top, + rgba(40, 40, 40, 0.6), + rgba(35, 35, 35, 0.6) 50%, + rgba(10, 10, 10, 0.8) 50%, + rgba(0, 0, 0, 0.8) + ); } .btn .icon { @@ -250,56 +278,20 @@ a { /* Clearfix */ -.cf:before, .cf:after { - content:""; - display:table; +.cf:before, +.cf:after { + content: ""; + display: table; } .cf:after { - clear:both; + clear: both; } .cf { - zoom:1; + zoom: 1; } #a-title { text-decoration: none; } - -// Variables -$sidebar-width: 300px; -$sidebar-bg-color: #333; -$sidebar-text-color: #9F2B68; -$sidebar-link-color: #b5e853; -$sidebar-link-hover-color: #fff; - -// Sidebar Styles -.sidebar { - position: fixed; - top: 8%; - left: 0; - height: 100%; - width: $sidebar-width; - background-color: $sidebar-bg-color; - color: $sidebar-text-color; - padding: 20px; - - ul { - list-style: none; - padding: 0; - margin: 0; - } - - li { - margin-bottom: 10px; - } - - a { - text-decoration: none; - color: $sidebar-link-color; - display: block; - padding: 8px 10px; - border-radius: 5px; - } -} diff --git a/assets/images/catpuccino.png b/assets/images/catpuccino.png new file mode 100644 index 0000000000000000000000000000000000000000..a06474c22059cc1038b49fcf9c2e74d1290348fa GIT binary patch literal 9292 zcmV-SB(vLzP)g+d{_e~G007v-lN$g47ytkj000vJ04p665dZ)U001f*5iB1T+{c$73;-t= z3nLK#9|{2f|NPaziyZ_2|LL$I4gez(0Q2(k;^5xs=jJFH5~QG=uB)lKx3i3ggCrFW z|MAt<)6s2cWS*LrQc6V0$Hglg4}W=dl#-B1K{_`pBGAsvURF`{@#XOA+U()W>esN^ z$DX#Ne9X9uJ1{D8V@pIiF}Aa?B^Cg5Zfj&(QzQ!jG$a?}*t*})s-Tc>J1-!Nd|rHQ zP*X-TsFre9NHt46Gc_nB^X}i})Ts33yW`TbzpaOqgJxn>K67MAf_Pt3M>_1*qNJ5| z7!Cl-xtPPXg_VeQEzFGzt}( zhxP7XBArc3e0(+WQaVcue|77J&HpBtX0tlZF-C4JHaE#q&R}xmYV*HAXwBMTBgtuj z!MWL~vB}0^?H`TOY_`XurmkTYn1o;|uKt2*h~xG@mX*zRkIPEStWncIsc>R4DRSCh ztyb$V4SxXYC#^0sTS{?f?dIUc5?wZIrf|K>1SREA0{pKAXJ!of9(O7Sr=r4uo?%c;u#~hUgMkIW4w-7sf(6 zm36U?YgKnOl6o4L0RWZ$8CzK3%U?u9-PLns3*3 z{)Aear{@@%>)pP=O_cA8#ks=k?MbN@4tsMoT@?GDI2}7$PImCA<^2heSyovaqny(^ zdwYJr9^u0bzFZCQ*<>}t;C&MzCRnd_gt#!D61z;YwG-pPL)xAHk)}`n6 zq53&WyilFn4!XN%HkMfXS(5OHGe6%KY{604(jFgVUWvAbF?ye?y(>M#);QwT-X!(t zU$zfZwGs<*}Jc2&^44t+}wKJju~6Rkpc3|2)XI!0@( zcVY$!Dl<6V)nivtp+USjUfdDHGK&Gq?1m|LnxPVj40XDj$F3%`&SF93+43&#S0Wtb z#p?Pm9#a5d0HWs%4{ zbFu!5`Z2)v{DrV_?~;09CsD-mb~mb!8%fEHYb7^Sf;u>OPJ9x?X0k zjed*{B=q^ug9C~{yxHctLFkAGD!=*Vucn#}P~GgPon#;j4-S4{eUtbEh^h@Svgyyu z#lRel-6jwV4-W8D{1k`=hFFv%I&kJ#CGRMJtE~gc{BeLtNf3y8pNmIC#?)~%U%7$f zU5N=I=Om~Mccu@TyGN+lwAaJqi{ z{p9o};FT97C}twWi)8_MMshH(K_5`IkOCUmTpR>`9ORsSd~$jVeOoG%3HokIICCTm z<-m_3R5P%Mv%y{tF!zarIXQ9~Slj3)H$YcW4)+7gYMaH%!U(BQ%`>cJw0f}bf6q_@ z7eZT36G7w@uYc<48k23#VvKU3%}vIO@Q00%I)N~bkAeC?^!?bJ3!r%l zBs1Y+T}F8Zw*gZzjG@VsWuh=~MxMl9!Tq6IiaPL+;>g?0Ed_Z483q0i^~m7m6bSF} zDPZ1QGQkheU+il$Cm|35vq<9C;D*0}Cn2{cC*vi3kXS(YW6l{Dlk8srn758-;@>>a zRWbM!&deO*^pqOdDt53XOa;_3G3?QJ5gt4*;d0~g2xr1OiNVVmg!B~ZILXKaTwtu> zNhtM#D<_>=l+uGAs{t+ne)e4Xg`!@<0gRbF?AwUJOa?I&Y>1%bI5YRzAUgL<+yswO z4!ktTP@$$Fq$akCt+OCsCNgSl$jYok_ytJapI_F9sT<*!1%L-&mWFp{t7vITrUS@n zK8>82VlT{777&6#4t^X2;~|t#4@e-SA?&?PdJjcX_Ylm3PaDigN6$qch0v!BE%CPcd=K6x=zm5mHWg7{U(PM7b2|58&2CUHQPS7;mhTKP<~}A$0O;U=K39 zh$4&*!skeu6jKc=n{_&*kV7m?g-!`Tzw|jeKtKc{@YuFk*=eV6M6`N^tgUVO#wr5w z!(bbLiOd(mLZC?_FYFKwX)8ID$5YjaP#|}cL0OEb_#pkjECexg^rfo~F1q1Xnf*3O zAGYKO$;VTG@W-F);)#s}&HezeaGP~2Q$~v!*%eGQv9YHEM};o>4iG;7$asgm8I=1& z2C11uVhe!4+R->c=+7jqNO^kmePC7skUkeDxU{Bx@r-`>He8QU8NIrBPJMwg>ee&% zV?rR*abc*xIyGBTKo*`16qu06WCpjVC;0h5nI=rpqc0K4$oN-0%_ zn1|mMzOjRPBdk!Cbj>v~6`M**R*^nf;FaJjzVYE3h;&^%l;C=|6d!V47RO4r`s z*0{}~)jEWW!U(1rALp6>tg#j|2vK}p{C(u;&><4!a^4A7O|A3id>|omJ|1V50GtaJ z_tOPX!DLTNN_n-4MQ+)gxRxB<&j>R&v45TN*gbuWgfu|PScl%m0J}7q1T@N!?MsRV zAh`Q^=Q8KYU90slYt814kMjCBxmT7igbQmXbSDz{Db(QhCY<%aNqcGRzUT;x?nXTW z*NdpZU~qeT3;rcIm6wwnKQUC?!yn1TIA9vt$)9;RFuj}UV$xVpz zoQ}5So}nC$Oh+T(-hc>iPPSDxHCkTCr{%?9Lb{SX5Gk}GPf=dR zj;vx_HhwNnJc?TUV#u{aU&3N4&O?1{?zh<9=Qj9M0xfp__~PZ3GQ8&5*#a0!89YBf z4?Gxmfe?$S%jjRJ(Q=3moy-wZiGx204ZILXy}Jbw9gwdcxMSyCAjH~Kov&e_&%74# zcED(TcQ5D;et3sXU{NFOZ3V(VJ=uZdkRhQT;T{&E{qYC|PPy=fQ#w$lx3>!AS+ZW7 zhr>4t*bN|%45km*b5VNhY7VBb231#3@-kG|CrP|h|2JOc0N=nCGqy{+rv;<_SIZ;Oq@{t z_!L*Vk(%SoO&As+uJIDSq((10s%uD(eII0i6XkuUFKgWz>~uTc_gYe%8|w?HkxYm! zM>v!qK1`Vo6&mU>r5({byki9^9y!eMO zdsT3dNOoejQDP%#$<%S;Wm#H|U1K35e;rQW?$2kBlgYI#7mGy;6Zomf%h!|1}P)W_B6ha!?2PCq^pv8+m#!A=8+eZ9)y}LhuDvH8~reQ#F zA0n7FjT6CAcPo@i{_c+C>Jvh6^+#ocBL<9I0+%T;obRTQ82z* zeyDiBJl`&E04giQAAcf#Vu-p=OidsLt;_5qRTGDN^YAkYK3H4|t=wz^xaP(t0X}`O zuyt7yHoEHdz>8$yCz0b=tH?XO8KCVdT81_GIfd1w&|-L<0JjVWte0}ly$V9el%pa9 z@&t{zp%r;IUo^%j_P#yb4PP_w@BcHWKmK@EC@@JMW|N}EfLG$WO0quG^H+dz;94Z0 zkdB#GX)3`+RYt0Yg>DS?!`aB&m-WHuA*H!^S4^?S)A`#g_3nULAp7^qXnOuj7E+dr z@fJ6GRT3^hz%BvPIQQZME-)S;#-Vr#vok=o)CxMii)-^{Q9ukI?_b~l@B_9?@LTUd zzAet0v(mEc7=!|P)z&O04#Z%Ei}|!O`H(7=;!#uS$9F8|9}inCBxl3-VBkDB|M>gg zA9IkrFts7N(3p-o4Kyw@ZYxtAl@dwghyY_Z24>)7VsXEQ0eR=g%+Wc|09A$Ld`5KY zi`%at>Xk|aV+Kke!U`!9<$~3y#^N}E%X5prfQE>M&O!NpcQ<_N#hn$Y#a$Oz{RG{K zgUm&oHDmeYR>tB*vB(B8>wL5&!vA?6&X8(NJt%&LfdnuClK@!1B=aQv)uNOq#Gt#T zOl&o3v6Ht%G%jU3QL#k$J!jW7_K!k_LMhHi-3bGqfmtJ z?BVW}Qr`cV+xaDE*OfK49+Ed_U z-D&Yf0-mP9FjjB!I6Hs1zXM?t44EiQ85BuP-yUXs-HCK13Ll^%0rB>5g8#) z*Qt|fVr1=hI+6;Mg+0VJ3xn?vb`TU8esu$0OR9uEXp0Xe#jxovWreV zu^|=87&-_653w!{Z7mAWodt0mlBaLB<5mRTn#F__T8p+=$9Lno2LjNwN6%I>i7@;2 zkhK81v>weKB7|Sx@EVJ9USv}#;D}A&vPV`$4saV&^0@@h#DV4 zd-&C-E)CF3NG;Ap5H3&&d_5Er0^@Jr!9jM-^{Ldm z8-9bOrpgdW=};^h_OcVRx`=};723;ep|>UC^%(AmsGRWmQdITtuWAqjuIG{nd{<=# zEy;|XLO1qqG$h)lxTZ{+Wb|KbfMM+!&XOozaK zmCo-cQ)v6}Je^w#A41mMUPuhTr48r28I$bZmIAd~@DO}Qy!EohUkis2ZYnu3> z6;)#b|4Q=6#mW0hfEbg#*d4z4+ZkTB(Cy{m@S6@%D~eV7ew2I1B;c=%dLNVfyZc8? zg>0h~5^*sri-$-cNW#MKeI!g&vWsLB%WEohIuUPIv_^jTlsl*Ue!O@MOHZcB2c%=~ zSZEm&$~6|^qBLBkN^y8dqNeb>F!Cu!zZ^zg1McVSS++2?(c9$1W%I0a;I~f5))D2N z1%j>oCuJ*I?QuHtt-8RVu&sztkxABo;d%_tejDLCoi>r3VW&Pk7<%#=R{YVJ*tHeP z&Q6AS@yLYbjl(Z8M28F&+T7h`@ zhBwg&5!PmKH9*|DMpkh&a;o*-Qf`28(W7uFg?9a|IJN8hsFAA<3bPPrFG9DC0+dJc zMYcJ4%J{<35$-z8Ge2L!5U=Ck9`2`8X!Se*p(x_IFjz1R#ME&8O=f?gYtA37iK|Qq z%O#$MQJS5U-3z}p!v!}aT?klbSk||PyK`84_+czB2o@*9#9;I~oDNZ*W9AL5iiTlm zDXXZtOZjn~CANl9s`s&A+U+9cE$U6m_Q^p-i>y-f2Ez#-3vs+PnOs|%rWGfTkJmow zRf}Q8Yp*WV=bIcNj0@MA$mA1Qeu{SRPjlh$No#TkEW>cNz{nzb5t3hlV$nJuQj7c6 z2d6jT77X1~uoG>VO0Z3$9Ja5JP5G`nwPxWa0w8*r1YXXto_t+5TQf)LlySj9NY1fB zIA@a!-b8SL{*Tt|l{WsvHtkB{Tfk($HKUYuh44}K&DL=S(aEnN7lUV`BGgCsy$>yG zX-3gDZ#aGk1QDCl)%E*PgfxacQCEwPON2OFi#9iX&nUyY2Vf}@cO!rdrkqB|KMSx* zTtx9=V)kn#$OxJg=huTRuHjXx&Z(=Y3K`Uup=Y@?il_*i*;dYf6=J)89LQA4bV zx(KhpbB=Y;v1=;R(T_QrZ^(z!uXoQr%`{6%j6OC1BXsK6#P>y0AJ((9prYV?p?=#oK&Z)6Gy z@3n|~wl$OHG~zZ#nja%URURyEcn-|QBaAnw#D=1x6f!HLN3F=5XISal+c_%YxkEVl zpmseo7$<9%Tb_i5s0@YV5LUKZ25cFDJMpX{840O!XTUFUBTjVr-V`;6#K4$s?iWgC zaX7WAM^->W(VQ}!zTuWyAMn%t8iYj)LZT8lKGEKWLpvG<7v3C4ZR29%kZv*HeZr!< z<;gp@8R(tBOl1)aAK_i0P5GiGO#Tg>#xc}#I(u=Fs$HxZ&{=A+~?vZM` z*>)p0E=S{;r3r_#Z_xt`n{J`oJ$Es&JC{IPEb;D2%5TLGZuf@2+`++g_4#HQFV*l- z7{<1z3i@uVqk`>_-M;${(3zHL3mj7! z+n!>))H5nDz{t&KT~xp=lvv+{1@5IBvd^^-9S3MvtEWp0?4Vh(*Gk23EGW9*eK@1f>;MT!acsNHnFz(16*LFZd*zjT3H z)2}~Y;2%olTnAyp`U^Q~AJ~gZT=*ckBUUy>)R*I(W)~I6;>M&eHYxG2eX-`07o?EK*g0g@yO9o~gjB)vD}XUKWqg=PDyq2TSw1Qc zw;(fxhaIFouZ%xJ{az!VXjs@vYy2e$0+0NM+U1%0*S{J-vYVx9nwLxEax<2%ciWfaakm3;n2j-( zpJq>mmo&R+LEvPV+cPh(SwTo$nLyKA9>z-jdZpSOkK5!;Tr^aMHO|&&0WWaWkPar~ z1)PbO*0(z;CskgO;u1V@y_!r*sw%0;a;(RuV0}6*^kXGaO6Md=HH;>-#wlFAbI7DF z;T8DmWGPmoQxY%nyf%)Nl3F*`(9+;Hl9WOfTd}^VN|4xfhfU^lNJfivKs{9^heNG< zAx8oqr+Z_~00=u`TxGgljW70My_5=#P0nbbb6zz;pk=7vE*MgubZ7vlup-JleKw{w zu>{WpO{v`$!!+QD=?!GBR7S|fRk+$$r{#3K+db3P9vIrd$8fRbU;tyWt2B0h*65{v zI{r~I&3qNyw3Ga3)O5Y6@?!1cvaj;JdcA%KcLC%MYlX7Lt7ow?O%Rr7^(r=2`CJ8D z-LAw+Y}{xU%tE=XI|x(Vi=)dFT!sfPo35L>Znm}6Cy&J1*x5`6Kc|zN*Rtkhb~EYr z;HxY~u%*O@Ev~GqZL)FEqu$JX<>E|&`GE@;LKXcmmgsWR{_O>)_AhA3 zb{@f86K^% zf*I!^Oq0PGr6Z0s@x5SL{gUR`q5=>G=NW{Dc=e>6RxeAM&0xJNt=JP%=;4y3kjFaf zWbWn~{)VVbyBfUeZ4v0wv?d{h6^^Xjfq96VzJf8AYc|4?AvHQFXSq2q#^;@3OK`H< z2&-AO-pSgzYg6O>YYR7xbR`wYHhax~_LgaR;(VxbKpQsNhYbl1yvdQZCo|P$&A(N$+}shff~KC5vJ67o{N7png!E5WaGYP zi+Av07I86BKzoU;jLi8tOwA-O(PuqImBeON;(Oy>ij(jLv8x;}kJHIKKq#v`uL|Ql zzJO0@DzD1C7Q0CDss^qGo=d)$;|=*Nm6nqiWr(m&5O$y_S6NwQq_bWM+y6x>VP`E) zM>$#rP#+%_69>-NGF6x?aMUCV`83e6Qb7cY#+Da>N5->NAf-HOT=$6?D;Z2SOSkI9 zA_s?-hS#LUQmk-B!yBm_^l8$t6$woc!m@(4m<502`K;zM3(NR0=Xf@1r!sSl^|0)l z7|35X_|(}I9REc({Z$_KWig4q*c^)j-ECgbymVBXdy~LzX_w4eG70^FTD_~L$8|V+ z%uc_j_48U2xe@%8nLje|@5nFpLLu*`C@;va4Jo@t%B9BOoAAEV zd;=|b1-qs)DKY2$tw>NhN|D;wWcVtLl8}ym7QyDblQ}4*qF3V~YLYh<7eeo&J!*8f zU&dNR9Wn>`=vA>cIn9zn`hAdgxhCPIHZc=?atG;o;Dr&0SNj`rIMT0(CnH7dGq*rZ zdoF6-?N=6eL4~en&%qrnupBW2Vy?I4tlkM7^>PFtv$NsUa%9(t6vb-nn93}9-)ed* ze6%@B7es}8E@{VsEoXTJAO;+L#iVYU2WLpiMz54uh2}tG@OKfvd*s>7TpPDk!VRAZZ z%i68zf=QF2@tnM;W%xqFo{UAI{@JrJU$_0oIMdjhUDm7ie#&?{*ZEWrr;|&QCre^= zpHFV8B<=?>WAF1SHkv(W2Y>djJwMj03$pVv`#UtbYpB+DL`N3t``2>ilr1lEj%n|I zI_BF<&VH%sRC({u15}v5(s(x2-tRj#+bL&nKMv z6?*OFwjj-ByC=AIE%Hq3@b@_SWITr&GshU`)9l%0CAw3kS1x;8+I^}L^YyplLsU9r zT(4YirCG6Gief&-qTh4@S@VJ<>3Mq_^MgR*P4}!!}irvPo-HcCoNp3(p>-Iw@<%iDwG;o zMqO%!!Ap{wH5i5y;GuGuM1f-%1Fd~7eO+a;jnY3O_3T6W(v`twqn`@FXF204lA8KN zGAr#?lFdn*;Vh7pW0S4+j+};lQ~u(zmtr+FC`?J!*i`TG;vdeu170rwm(~oL;Y5+|)~mp7{&z^`8q&>t uvr;Z~s_n}