.git/0000775000175000017500000000000014540156041011563 5ustar jonaro00jonaro00.git/branches/0000775000175000017500000000000014540152175013354 5ustar jonaro00jonaro00.git/hooks/0000775000175000017500000000000014540152175012712 5ustar jonaro00jonaro00.git/hooks/applypatch-msg.sample0000775000175000017500000000073614540152175017057 0ustar jonaro00jonaro00#!/bin/sh # # An example hook script to check the commit log message taken by # applypatch from an e-mail message. # # The hook should exit with non-zero status after issuing an # appropriate message if it wants to stop the commit. The hook is # allowed to edit the commit message file. # # To enable this hook, rename this file to "applypatch-msg". . git-sh-setup commitmsg="$(git rev-parse --git-path hooks/commit-msg)" test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} : .git/hooks/pre-rebase.sample0000775000175000017500000001144214540152175016147 0ustar jonaro00jonaro00#!/bin/sh # # Copyright (c) 2006, 2008 Junio C Hamano # # The "pre-rebase" hook is run just before "git rebase" starts doing # its job, and can prevent the command from running by exiting with # non-zero status. # # The hook is called with the following parameters: # # $1 -- the upstream the series was forked from. # $2 -- the branch being rebased (or empty when rebasing the current branch). # # This sample shows how to prevent topic branches that are already # merged to 'next' branch from getting rebased, because allowing it # would result in rebasing already published history. publish=next basebranch="$1" if test "$#" = 2 then topic="refs/heads/$2" else topic=`git symbolic-ref HEAD` || exit 0 ;# we do not interrupt rebasing detached HEAD fi case "$topic" in refs/heads/??/*) ;; *) exit 0 ;# we do not interrupt others. ;; esac # Now we are dealing with a topic branch being rebased # on top of master. Is it OK to rebase it? # Does the topic really exist? git show-ref -q "$topic" || { echo >&2 "No such branch $topic" exit 1 } # Is topic fully merged to master? not_in_master=`git rev-list --pretty=oneline ^master "$topic"` if test -z "$not_in_master" then echo >&2 "$topic is fully merged to master; better remove it." exit 1 ;# we could allow it, but there is no point. fi # Is topic ever merged to next? If so you should not be rebasing it. only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` only_next_2=`git rev-list ^master ${publish} | sort` if test "$only_next_1" = "$only_next_2" then not_in_topic=`git rev-list "^$topic" master` if test -z "$not_in_topic" then echo >&2 "$topic is already up to date with master" exit 1 ;# we could allow it, but there is no point. else exit 0 fi else not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` /usr/bin/perl -e ' my $topic = $ARGV[0]; my $msg = "* $topic has commits already merged to public branch:\n"; my (%not_in_next) = map { /^([0-9a-f]+) /; ($1 => 1); } split(/\n/, $ARGV[1]); for my $elem (map { /^([0-9a-f]+) (.*)$/; [$1 => $2]; } split(/\n/, $ARGV[2])) { if (!exists $not_in_next{$elem->[0]}) { if ($msg) { print STDERR $msg; undef $msg; } print STDERR " $elem->[1]\n"; } } ' "$topic" "$not_in_next" "$not_in_master" exit 1 fi <<\DOC_END This sample hook safeguards topic branches that have been published from being rewound. The workflow assumed here is: * Once a topic branch forks from "master", "master" is never merged into it again (either directly or indirectly). * Once a topic branch is fully cooked and merged into "master", it is deleted. If you need to build on top of it to correct earlier mistakes, a new topic branch is created by forking at the tip of the "master". This is not strictly necessary, but it makes it easier to keep your history simple. * Whenever you need to test or publish your changes to topic branches, merge them into "next" branch. The script, being an example, hardcodes the publish branch name to be "next", but it is trivial to make it configurable via $GIT_DIR/config mechanism. With this workflow, you would want to know: (1) ... if a topic branch has ever been merged to "next". Young topic branches can have stupid mistakes you would rather clean up before publishing, and things that have not been merged into other branches can be easily rebased without affecting other people. But once it is published, you would not want to rewind it. (2) ... if a topic branch has been fully merged to "master". Then you can delete it. More importantly, you should not build on top of it -- other people may already want to change things related to the topic as patches against your "master", so if you need further changes, it is better to fork the topic (perhaps with the same name) afresh from the tip of "master". Let's look at this example: o---o---o---o---o---o---o---o---o---o "next" / / / / / a---a---b A / / / / / / / / c---c---c---c B / / / / \ / / / / b---b C \ / / / / / \ / ---o---o---o---o---o---o---o---o---o---o---o "master" A, B and C are topic branches. * A has one fix since it was merged up to "next". * B has finished. It has been fully merged up to "master" and "next", and is ready to be deleted. * C has not merged to "next" at all. We would want to allow C to be rebased, refuse A, and encourage B to be deleted. To compute (1): git rev-list ^master ^topic next git rev-list ^master next if these match, topic has not merged in next at all. To compute (2): git rev-list master..topic if this is empty, it is fully merged to "master". DOC_END .git/hooks/pre-merge-commit.sample0000775000175000017500000000064014540152175017271 0ustar jonaro00jonaro00#!/bin/sh # # An example hook script to verify what is about to be committed. # Called by "git merge" with no arguments. The hook should # exit with non-zero status after issuing an appropriate message to # stderr if it wants to stop the merge commit. # # To enable this hook, rename this file to "pre-merge-commit". . git-sh-setup test -x "$GIT_DIR/hooks/pre-commit" && exec "$GIT_DIR/hooks/pre-commit" : .git/hooks/fsmonitor-watchman.sample0000775000175000017500000001116614540152175017745 0ustar jonaro00jonaro00#!/usr/bin/perl use strict; use warnings; use IPC::Open2; # An example hook script to integrate Watchman # (https://facebook.github.io/watchman/) with git to speed up detecting # new and modified files. # # The hook is passed a version (currently 2) and last update token # formatted as a string and outputs to stdout a new update token and # all files that have been modified since the update token. Paths must # be relative to the root of the working tree and separated by a single NUL. # # To enable this hook, rename this file to "query-watchman" and set # 'git config core.fsmonitor .git/hooks/query-watchman' # my ($version, $last_update_token) = @ARGV; # Uncomment for debugging # print STDERR "$0 $version $last_update_token\n"; # Check the hook interface version if ($version ne 2) { die "Unsupported query-fsmonitor hook version '$version'.\n" . "Falling back to scanning...\n"; } my $git_work_tree = get_working_dir(); my $retry = 1; my $json_pkg; eval { require JSON::XS; $json_pkg = "JSON::XS"; 1; } or do { require JSON::PP; $json_pkg = "JSON::PP"; }; launch_watchman(); sub launch_watchman { my $o = watchman_query(); if (is_work_tree_watched($o)) { output_result($o->{clock}, @{$o->{files}}); } } sub output_result { my ($clockid, @files) = @_; # Uncomment for debugging watchman output # open (my $fh, ">", ".git/watchman-output.out"); # binmode $fh, ":utf8"; # print $fh "$clockid\n@files\n"; # close $fh; binmode STDOUT, ":utf8"; print $clockid; print "\0"; local $, = "\0"; print @files; } sub watchman_clock { my $response = qx/watchman clock "$git_work_tree"/; die "Failed to get clock id on '$git_work_tree'.\n" . "Falling back to scanning...\n" if $? != 0; return $json_pkg->new->utf8->decode($response); } sub watchman_query { my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty') or die "open2() failed: $!\n" . "Falling back to scanning...\n"; # In the query expression below we're asking for names of files that # changed since $last_update_token but not from the .git folder. # # To accomplish this, we're using the "since" generator to use the # recency index to select candidate nodes and "fields" to limit the # output to file names only. Then we're using the "expression" term to # further constrain the results. my $last_update_line = ""; if (substr($last_update_token, 0, 1) eq "c") { $last_update_token = "\"$last_update_token\""; $last_update_line = qq[\n"since": $last_update_token,]; } my $query = <<" END"; ["query", "$git_work_tree", {$last_update_line "fields": ["name"], "expression": ["not", ["dirname", ".git"]] }] END # Uncomment for debugging the watchman query # open (my $fh, ">", ".git/watchman-query.json"); # print $fh $query; # close $fh; print CHLD_IN $query; close CHLD_IN; my $response = do {local $/; }; # Uncomment for debugging the watch response # open ($fh, ">", ".git/watchman-response.json"); # print $fh $response; # close $fh; die "Watchman: command returned no output.\n" . "Falling back to scanning...\n" if $response eq ""; die "Watchman: command returned invalid output: $response\n" . "Falling back to scanning...\n" unless $response =~ /^\{/; return $json_pkg->new->utf8->decode($response); } sub is_work_tree_watched { my ($output) = @_; my $error = $output->{error}; if ($retry > 0 and $error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) { $retry--; my $response = qx/watchman watch "$git_work_tree"/; die "Failed to make watchman watch '$git_work_tree'.\n" . "Falling back to scanning...\n" if $? != 0; $output = $json_pkg->new->utf8->decode($response); $error = $output->{error}; die "Watchman: $error.\n" . "Falling back to scanning...\n" if $error; # Uncomment for debugging watchman output # open (my $fh, ">", ".git/watchman-output.out"); # close $fh; # Watchman will always return all files on the first query so # return the fast "everything is dirty" flag to git and do the # Watchman query just to get it over with now so we won't pay # the cost in git to look up each individual file. my $o = watchman_clock(); $error = $output->{error}; die "Watchman: $error.\n" . "Falling back to scanning...\n" if $error; output_result($o->{clock}, ("/")); $last_update_token = $o->{clock}; eval { launch_watchman() }; return 0; } die "Watchman: $error.\n" . "Falling back to scanning...\n" if $error; return 1; } sub get_working_dir { my $working_dir; if ($^O =~ 'msys' || $^O =~ 'cygwin') { $working_dir = Win32::GetCwd(); $working_dir =~ tr/\\/\//; } else { require Cwd; $working_dir = Cwd::cwd(); } return $working_dir; } .git/hooks/prepare-commit-msg.sample0000775000175000017500000000272414540152175017635 0ustar jonaro00jonaro00#!/bin/sh # # An example hook script to prepare the commit log message. # Called by "git commit" with the name of the file that has the # commit message, followed by the description of the commit # message's source. The hook's purpose is to edit the commit # message file. If the hook fails with a non-zero status, # the commit is aborted. # # To enable this hook, rename this file to "prepare-commit-msg". # This hook includes three examples. The first one removes the # "# Please enter the commit message..." help message. # # The second includes the output of "git diff --name-status -r" # into the message, just before the "git status" output. It is # commented because it doesn't cope with --amend or with squashed # commits. # # The third example adds a Signed-off-by line to the message, that can # still be edited. This is rarely a good idea. COMMIT_MSG_FILE=$1 COMMIT_SOURCE=$2 SHA1=$3 /usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" # case "$COMMIT_SOURCE,$SHA1" in # ,|template,) # /usr/bin/perl -i.bak -pe ' # print "\n" . `git diff --cached --name-status -r` # if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; # *) ;; # esac # SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') # git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" # if test -z "$COMMIT_SOURCE" # then # /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" # fi .git/hooks/commit-msg.sample0000775000175000017500000000160014540152175016171 0ustar jonaro00jonaro00#!/bin/sh # # An example hook script to check the commit log message. # Called by "git commit" with one argument, the name of the file # that has the commit message. The hook should exit with non-zero # status after issuing an appropriate message if it wants to stop the # commit. The hook is allowed to edit the commit message file. # # To enable this hook, rename this file to "commit-msg". # Uncomment the below to add a Signed-off-by line to the message. # Doing this in a hook is a bad idea in general, but the prepare-commit-msg # hook is more suited to it. # # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" # This example catches duplicate Signed-off-by lines. test "" = "$(grep '^Signed-off-by: ' "$1" | sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { echo >&2 Duplicate Signed-off-by lines. exit 1 } .git/hooks/pre-commit.sample0000775000175000017500000000315314540152175016176 0ustar jonaro00jonaro00#!/bin/sh # # An example hook script to verify what is about to be committed. # Called by "git commit" with no arguments. The hook should # exit with non-zero status after issuing an appropriate message if # it wants to stop the commit. # # To enable this hook, rename this file to "pre-commit". if git rev-parse --verify HEAD >/dev/null 2>&1 then against=HEAD else # Initial commit: diff against an empty tree object against=$(git hash-object -t tree /dev/null) fi # If you want to allow non-ASCII filenames set this variable to true. allownonascii=$(git config --type=bool hooks.allownonascii) # Redirect output to stderr. exec 1>&2 # Cross platform projects tend to avoid non-ASCII filenames; prevent # them from being added to the repository. We exploit the fact that the # printable range starts at the space character and ends with tilde. if [ "$allownonascii" != "true" ] && # Note that the use of brackets around a tr range is ok here, (it's # even required, for portability to Solaris 10's /usr/bin/tr), since # the square bracket bytes happen to fall in the designated range. test $(git diff --cached --name-only --diff-filter=A -z $against | LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 then cat <<\EOF Error: Attempt to add a non-ASCII file name. This can cause problems if you want to work with people on other platforms. To be portable it is advisable to rename the file. If you know what you are doing you can disable this check using: git config hooks.allownonascii true EOF exit 1 fi # If there are whitespace errors, print the offending file names and fail. exec git diff-index --check --cached $against -- .git/hooks/post-update.sample0000775000175000017500000000027514540152175016371 0ustar jonaro00jonaro00#!/bin/sh # # An example hook script to prepare a packed repository for use over # dumb transports. # # To enable this hook, rename this file to "post-update". exec git update-server-info .git/hooks/push-to-checkout.sample0000775000175000017500000000533714540152175017332 0ustar jonaro00jonaro00#!/bin/sh # An example hook script to update a checked-out tree on a git push. # # This hook is invoked by git-receive-pack(1) when it reacts to git # push and updates reference(s) in its repository, and when the push # tries to update the branch that is currently checked out and the # receive.denyCurrentBranch configuration variable is set to # updateInstead. # # By default, such a push is refused if the working tree and the index # of the remote repository has any difference from the currently # checked out commit; when both the working tree and the index match # the current commit, they are updated to match the newly pushed tip # of the branch. This hook is to be used to override the default # behaviour; however the code below reimplements the default behaviour # as a starting point for convenient modification. # # The hook receives the commit with which the tip of the current # branch is going to be updated: commit=$1 # It can exit with a non-zero status to refuse the push (when it does # so, it must not modify the index or the working tree). die () { echo >&2 "$*" exit 1 } # Or it can make any necessary changes to the working tree and to the # index to bring them to the desired state when the tip of the current # branch is updated to the new commit, and exit with a zero status. # # For example, the hook can simply run git read-tree -u -m HEAD "$1" # in order to emulate git fetch that is run in the reverse direction # with git push, as the two-tree form of git read-tree -u -m is # essentially the same as git switch or git checkout that switches # branches while keeping the local changes in the working tree that do # not interfere with the difference between the branches. # The below is a more-or-less exact translation to shell of the C code # for the default behaviour for git's push-to-checkout hook defined in # the push_to_deploy() function in builtin/receive-pack.c. # # Note that the hook will be executed from the repository directory, # not from the working tree, so if you want to perform operations on # the working tree, you will have to adapt your code accordingly, e.g. # by adding "cd .." or using relative paths. if ! git update-index -q --ignore-submodules --refresh then die "Up-to-date check failed" fi if ! git diff-files --quiet --ignore-submodules -- then die "Working directory has unstaged changes" fi # This is a rough translation of: # # head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX if git cat-file -e HEAD 2>/dev/null then head=HEAD else head=$(git hash-object -t tree --stdin # # This sample shows how to prevent push of commits where the log message starts # with "WIP" (work in progress). remote="$1" url="$2" zero=$(git hash-object --stdin &2 "Found WIP commit in $local_ref, not pushing" exit 1 fi fi done exit 0 .git/hooks/pre-receive.sample0000775000175000017500000000104014540152175016321 0ustar jonaro00jonaro00#!/bin/sh # # An example hook script to make use of push options. # The example simply echoes all push options that start with 'echoback=' # and rejects all pushes when the "reject" push option is used. # # To enable this hook, rename this file to "pre-receive". if test -n "$GIT_PUSH_OPTION_COUNT" then i=0 while test "$i" -lt "$GIT_PUSH_OPTION_COUNT" do eval "value=\$GIT_PUSH_OPTION_$i" case "$value" in echoback=*) echo "echo from the pre-receive-hook: ${value#*=}" >&2 ;; reject) exit 1 esac i=$((i + 1)) done fi .git/hooks/update.sample0000775000175000017500000000710214540152175015402 0ustar jonaro00jonaro00#!/bin/sh # # An example hook script to block unannotated tags from entering. # Called by "git receive-pack" with arguments: refname sha1-old sha1-new # # To enable this hook, rename this file to "update". # # Config # ------ # hooks.allowunannotated # This boolean sets whether unannotated tags will be allowed into the # repository. By default they won't be. # hooks.allowdeletetag # This boolean sets whether deleting tags will be allowed in the # repository. By default they won't be. # hooks.allowmodifytag # This boolean sets whether a tag may be modified after creation. By default # it won't be. # hooks.allowdeletebranch # This boolean sets whether deleting branches will be allowed in the # repository. By default they won't be. # hooks.denycreatebranch # This boolean sets whether remotely creating branches will be denied # in the repository. By default this is allowed. # # --- Command line refname="$1" oldrev="$2" newrev="$3" # --- Safety check if [ -z "$GIT_DIR" ]; then echo "Don't run this script from the command line." >&2 echo " (if you want, you could supply GIT_DIR then run" >&2 echo " $0 )" >&2 exit 1 fi if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then echo "usage: $0 " >&2 exit 1 fi # --- Config allowunannotated=$(git config --type=bool hooks.allowunannotated) allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch) denycreatebranch=$(git config --type=bool hooks.denycreatebranch) allowdeletetag=$(git config --type=bool hooks.allowdeletetag) allowmodifytag=$(git config --type=bool hooks.allowmodifytag) # check for no description projectdesc=$(sed -e '1q' "$GIT_DIR/description") case "$projectdesc" in "Unnamed repository"* | "") echo "*** Project description file hasn't been set" >&2 exit 1 ;; esac # --- Check types # if $newrev is 0000...0000, it's a commit to delete a ref. zero=$(git hash-object --stdin &2 echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 exit 1 fi ;; refs/tags/*,delete) # delete tag if [ "$allowdeletetag" != "true" ]; then echo "*** Deleting a tag is not allowed in this repository" >&2 exit 1 fi ;; refs/tags/*,tag) # annotated tag if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 then echo "*** Tag '$refname' already exists." >&2 echo "*** Modifying a tag is not allowed in this repository." >&2 exit 1 fi ;; refs/heads/*,commit) # branch if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then echo "*** Creating a branch is not allowed in this repository" >&2 exit 1 fi ;; refs/heads/*,delete) # delete branch if [ "$allowdeletebranch" != "true" ]; then echo "*** Deleting a branch is not allowed in this repository" >&2 exit 1 fi ;; refs/remotes/*,commit) # tracking branch ;; refs/remotes/*,delete) # delete tracking branch if [ "$allowdeletebranch" != "true" ]; then echo "*** Deleting a tracking branch is not allowed in this repository" >&2 exit 1 fi ;; *) # Anything else (is there anything else?) echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 exit 1 ;; esac # --- Finished exit 0 .git/hooks/pre-applypatch.sample0000775000175000017500000000065014540152175017052 0ustar jonaro00jonaro00#!/bin/sh # # An example hook script to verify what is about to be committed # by applypatch from an e-mail message. # # The hook should exit with non-zero status after issuing an # appropriate message if it wants to stop the commit. # # To enable this hook, rename this file to "pre-applypatch". . git-sh-setup precommit="$(git rev-parse --git-path hooks/pre-commit)" test -x "$precommit" && exec "$precommit" ${1+"$@"} : .git/refs/0000775000175000017500000000000014540152175012526 5ustar jonaro00jonaro00.git/refs/heads/0000775000175000017500000000000014540156004013605 5ustar jonaro00jonaro00.git/refs/heads/recipes0000664000175000017500000000005114540154651015164 0ustar jonaro00jonaro00bbc7aee9539fcd900b0f821722266be4b5ed2cac .git/refs/heads/master0000664000175000017500000000005114540152760015024 0ustar jonaro00jonaro00c5a4e090f7c3267e6d93a44157679e3f7522e856 .git/refs/heads/christmas0000664000175000017500000000005114540156004015521 0ustar jonaro00jonaro00c26d211127bedb654d71d964d7aa0a8be36499a8 .git/refs/tags/0000775000175000017500000000000014540152175013464 5ustar jonaro00jonaro00.git/HEAD0000664000175000017500000000002714540156041012206 0ustar jonaro00jonaro00ref: refs/heads/master .git/index0000664000175000017500000000067314540156041012623 0ustar jonaro00jonaro00DIRCe*&e*&d?eԜ/R3gruge!{e!{c`:Ⱦ=\e3H2 src/main.rse!{e!{c!%2G U6 K4msrc/santa/mod.rse!{e!{c`d-m׍Sh1(9winning_lottery_numberTREES4 1 C.R&~U3t+src2 1 ݫ i>}5wmsanta1 0  !ㄜQA~)dkF")fpɜJC.git/objects/0000775000175000017500000000000014540156004013213 5ustar jonaro00jonaro00.git/objects/3b/0000775000175000017500000000000014540155633013526 5ustar jonaro00jonaro00.git/objects/3b/27f2279211e7a04256776f14809225209feec30000444000175000017500000000010214540152371020210 0ustar jonaro00jonaro00x+)JMU05`040031Q(K/)I-+MJ-b+ŋifq>@o.git/objects/3b/9e8b93565d6ed3c05412e5904c83d4e0a937ba0000444000175000017500000000023714540155633020610 0ustar jonaro00jonaro00x10 NJ$:U[te]z3%y.9d` 1`&ŪP۴٣ÈөD&J%jʿ&zN (0o |:DN.git/objects/9d/0000775000175000017500000000000014540152671013535 5ustar jonaro00jonaro00.git/objects/9d/d43340ebc7f7e341914aff898509fceb29f7c90000444000175000017500000000012314540152671020772 0ustar jonaro00jonaro00x+)JMU03g040031QM+*fXp׊ľlcz401ļDeؽߛy~I.git/objects/31/0000775000175000017500000000000014540155632013444 5ustar jonaro00jonaro00.git/objects/31/c4a5c3ec7a643b7da9ada809c3cc156ff64ef50000444000175000017500000000024014540155632021152 0ustar jonaro00jonaro00x90hB|vI\rL43-Ԁ*76j%|LGrȞ23.)jUbɛ(8hhJd]ѥ⻍[ˍu_yіx #!FTw_Oi6 [;D.git/objects/6c/0000775000175000017500000000000014540155774013540 5ustar jonaro00jonaro00.git/objects/6c/da5c22e0e7b0a85e95e8f76e4937751b74153e0000444000175000017500000000023714540155774020631 0ustar jonaro00jonaro00xI 1@Q9EEJ@īdt7D:.?:7.2fD9S1kRLAs'S8B&hCc3cd#»M{^jo땦:m };@j+H2Qq mbXG|D.git/objects/90/0000775000175000017500000000000014540153343013446 5ustar jonaro00jonaro00.git/objects/90/b8e827bd49d353680bf7d4e29dac2cf9a251680000444000175000017500000000016514540153343020700 0ustar jonaro00jonaro00x-K 0C) {u BH<_e۷GG&C%)*<;4%!3jq:^V?Q lCM.Н k(C[?e1.git/objects/d9/0000775000175000017500000000000014540156002013525 5ustar jonaro00jonaro00.git/objects/d9/06bc1ea6df8c19568eae9a736d9f66230fc54d0000444000175000017500000000023714540155635021051 0ustar jonaro00jonaro00xK 0a9E5 xi3i }ƅxw惿ߖej` ^Z=e)&s;js"UR&۠K1lɻCKw 2[q֫t?IlpVoɟLi$C歝[!Cp.git/objects/d9/61ba116d7b9a30be2b0fbe1d70c01fab893c7e0000444000175000017500000000024014540154024021121 0ustar jonaro00jonaro00xK @]s JbWh:.7p6mY&D{V Dc{J5z&9쌋쨣HC{کU+YB))_}D-֠fl,}鼽m3.git/objects/83/24b3de22292967ac2cab4c2ef42d746c11a7290000444000175000017500000000024314540152372020564 0ustar jonaro00jonaro00xKNC1 Y#HqqWah<}eM3`8k"QZh#!kfj瘃v:VVnkT<D vo3#|vC:mR-Zk7Ofc0D.git/objects/a6/0000775000175000017500000000000014540155776013540 5ustar jonaro00jonaro00.git/objects/a6/91517f11316a20e77f4885b93a1b709f880aa30000444000175000017500000000002514540155776020366 0ustar jonaro00jonaro00xKOR0c04243t.git/objects/a6/9fe5443eeb3c1f7fbd67f399b38f0dd8a3431e0000444000175000017500000000012414540152671021116 0ustar jonaro00jonaro00x+)JMU07d040031QO+*fxj$ϕ76iυ(N+I+(an~{T}ǝ6^ri.git/objects/71/0000775000175000017500000000000014540155722013450 5ustar jonaro00jonaro00.git/objects/71/6161fe856ac0352930314a4584fe6b653d709a0000444000175000017500000000017714540155110020274 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(!j;+\lT)@a/̼̼Ԣܤ"՗ \擸=eZ3;.git/objects/71/ca28db3e669a0cbcfc9a81d86b0217b958bb980000444000175000017500000000006214540155722021025 0ustar jonaro00jonaro00x+)JMU06a040031QO+*fp8w4!0KC,l'=.git/objects/86/0000775000175000017500000000000014540154624013456 5ustar jonaro00jonaro00.git/objects/86/3b9e81f2f70ad3965358ed7d1235d905e036c30000444000175000017500000000002514540152366020454 0ustar jonaro00jonaro00xKOR0c004.git/objects/86/669c4cadea548d6db57d2ff1b9409f63aaf2e00000444000175000017500000000023714540152367021120 0ustar jonaro00jonaro00xI 1=}%"~%Kա *o25@4VE i-]_8YabhSE4(XCjUɆΥxGcႽvVƭͳ8:m}ݟ`@&PWmV7Li@歝G}B.git/objects/86/0b530afef9a9da5e471d4f3b4429ea110a44920000444000175000017500000000023714540154624020652 0ustar jonaro00jonaro00x90hw}K$!Șif4e[e>.ْNc(TTfAvR%VqT1ȦDzYBiz4-mS2Uro'\v/yh4#*!z/$,p/C.git/objects/07/0000775000175000017500000000000014540155436013451 5ustar jonaro00jonaro00.git/objects/07/efa5c01bdb055f97b901f8e1fabd1c0ade7e5d0000444000175000017500000000002514540155436021301 0ustar jonaro00jonaro00xKOR0c02451.git/objects/f3/0000775000175000017500000000000014540155471013532 5ustar jonaro00jonaro00.git/objects/f3/d13347e198f68210630f5f252146528aac13fc0000444000175000017500000000004314540155471020350 0ustar jonaro00jonaro00xKOR0d(H-JU,VȭTptxI+.git/objects/29/0000775000175000017500000000000014540155444013454 5ustar jonaro00jonaro00.git/objects/29/29e11578d7ee0cf695bf17ab7d0842f4038e3b0000444000175000017500000000005414540155444020614 0ustar jonaro00jonaro00x+)JMU0d01|gk+){,䕫9 L.git/objects/1a/0000775000175000017500000000000014540152646013524 5ustar jonaro00jonaro00.git/objects/1a/a220f29eca21e3849c5141ad7e9ac029bfd2640000444000175000017500000000006314540152760020714 0ustar jonaro00jonaro00x+)JMU06a040031QO+*fxj$ϕ76i'.git/objects/1a/9b7f7a152423a4af81b69c9ae6cb0b56cc457b0000444000175000017500000000002414540152371021002 0ustar jonaro00jonaro00xKOR0e0307n.git/objects/e8/0000775000175000017500000000000014540156002013525 5ustar jonaro00jonaro00.git/objects/e8/6d37b23993383e46476be54358ead9e37f32a10000444000175000017500000000017614540156002020464 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(+Nُ.4Wꄐ`̼̼Ԣܤ"-oy~Wb{~ * K[%3.git/objects/d8/0000775000175000017500000000000014540155742013536 5ustar jonaro00jonaro00.git/objects/d8/402a98d266cbb0f60eda3d991e6e6c7287f8600000444000175000017500000000017714540155742020707 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(hE|:|ݵfzsa̼̼Ԣܤ"% &Et{|4/]a3.git/objects/2b/0000775000175000017500000000000014540155633013525 5ustar jonaro00jonaro00.git/objects/2b/d1d82fda426f88b8018522eda49ec4b831940e0000444000175000017500000000024014540155633020656 0ustar jonaro00jonaro00xI0 9#;%J:m%JQ~OeFSu]:8GT!$>:jEs&ǒ,I!"W4с4Ǡ#lzA.FVBq&5{=Ymy5ΏlD'L hMu3m& ^IC`.git/objects/e0/0000775000175000017500000000000014540155656013533 5ustar jonaro00jonaro00.git/objects/e0/79b09f864c38d42839d6e69ade6a058f5dd7830000444000175000017500000000006314540155656020650 0ustar jonaro00jonaro00x+)JMU06a040031QO+*f{RmR扐-aB.git/objects/f8/0000775000175000017500000000000014540154450013533 5ustar jonaro00jonaro00.git/objects/f8/2b403911770247cf2fe29fc6cf022121026dc40000444000175000017500000000024014540154450020412 0ustar jonaro00jonaro00x D={7-,$+.m68sۺS-"0X: ɓEܥ)|mLBnXY"alYV@|Aj$2uYБFgZʿ;Uq$lHB.git/objects/db/0000775000175000017500000000000014540155775013616 5ustar jonaro00jonaro00.git/objects/db/c2d9bab3e361c3245f7e82129ef91da31729360000444000175000017500000000017714540155631020663 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(!j;+\lT)@a/̼̼Ԣܤ"Wǟ>y(leYYw3.git/objects/db/8ac0d2fac01ae9a3cad5766712b177ba2468e00000444000175000017500000000023714540155775021065 0ustar jonaro00jonaro00xK0 P9FB$VOiXp{"nf1Ou`"M\3r>99f-ܩ#*t<1B c%x3u%:ފ:d7ڋ2u}; MpFT;WO<2@6Q_9D.git/objects/f7/0000775000175000017500000000000014540154755013542 5ustar jonaro00jonaro00.git/objects/f7/df98688136c8033737b2d0f32e4f69170936b40000444000175000017500000000017614540154755020342 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(aK+VrٜC^Pyyy9%%EyIE KsOzY=a߼r%r3.git/objects/59/0000775000175000017500000000000014540154122013447 5ustar jonaro00jonaro00.git/objects/59/9ea49b80f82e0d860755f772b8309e09a647810000444000175000017500000000006714540154122020333 0ustar jonaro00jonaro00x+)JMU0`040031QHL+(a<77̞->v.git/objects/92/0000775000175000017500000000000014540154160013446 5ustar jonaro00jonaro00.git/objects/92/a8093e1e9d7fcf33ce634914dec6d3a9a780180000444000175000017500000000023714540154160020676 0ustar jonaro00jonaro00x90;B|űwH,'thʶ,1"<19’{\kF]-R]0U*GcEoR;W.Rat>u1f2n hA,#.&:2R.git/objects/bc/0000775000175000017500000000000014540155774013614 5ustar jonaro00jonaro00.git/objects/bc/868f49c785c394e36564305d7b1de20dcbd68d0000444000175000017500000000002514540155774020707 0ustar jonaro00jonaro00xKOR0c02560.git/objects/ab/0000775000175000017500000000000014540155110013572 5ustar jonaro00jonaro00.git/objects/ab/d3a3bd1551a64c61ad32e1f4ab9148e669ef140000444000175000017500000000002514540155110020764 0ustar jonaro00jonaro00xKOR0c0210.git/objects/ab/60dd3a0fc8bef8d63d5cd765338548320c81d80000444000175000017500000000004414540152544020741 0ustar jonaro00jonaro00xKOR0dJSMR\8 .git/objects/45/0000775000175000017500000000000014540155635013454 5ustar jonaro00jonaro00.git/objects/45/57def4393ad17b4a0b7d43056e1ead9775797a0000444000175000017500000000017614540155635020623 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(!j;+\lT)@a/̼̼Ԣܤ"Wyy}= 3.git/objects/74/0000775000175000017500000000000014540155722013453 5ustar jonaro00jonaro00.git/objects/74/f2937f23418ef8bda9e8157c5f1bf20710de440000444000175000017500000000014114540152511020600 0ustar jonaro00jonaro00x+)JMU0`01d'<]пdw͑mt240031Q(K/)I-+MJ-bT}ʿIo/&#.git/objects/74/e2b5e2119b91d0ed618f205818d8f3fa324d130000444000175000017500000000002414540155722020510 0ustar jonaro00jonaro00xKOR0e04.git/objects/4a/0000775000175000017500000000000014540152372013523 5ustar jonaro00jonaro00.git/objects/4a/6e2f8867144f17905564df3c269be8de29dbb30000444000175000017500000000002414540152372020620 0ustar jonaro00jonaro00xKOR0e01q.git/objects/09/0000775000175000017500000000000014540155635013454 5ustar jonaro00jonaro00.git/objects/09/47b709ab859a6ed910b6fda7f11a1ba1da4aed0000444000175000017500000000024314540154071021135 0ustar jonaro00jonaro00xAn0 {+xR4%@+D8C~_#?i2Ư@rYCd5%Nhhf2U U35{tȏ%W%AłX|ek__vW97/m= )D}깶γ}gD\.git/objects/09/886dfbde41a59493a34cdef58f454f10df511b0000444000175000017500000000024014540155635020751 0ustar jonaro00jonaro00xM 0F]%dDJ~&m% oouhN2.2Jґ8tt!)o*?G둆*3D_)r$$}A^m*R.^j[_4hk8J ,"53uG&ekC.git/objects/60/0000775000175000017500000000000014540155635013451 5ustar jonaro00jonaro00.git/objects/60/cf0bb761aa85fc7cb9d985ebcf0abe77708c800000444000175000017500000000002514540155635021166 0ustar jonaro00jonaro00xKOR0c06053.git/objects/60/35624bcb373ef5d97329c6433722bae5efd9070000444000175000017500000000012314540154304020517 0ustar jonaro00jonaro00x+)JMU03g040031QM+*fЫ͓Ne{wjcH:kl6jg[RR/'$2>47)_jt7^ {3.git/objects/85/8957239ef48ff016e4644a32498139fa6704f00000444000175000017500000000017614540155633020262 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(!j;+\lT)@a/̼̼Ԣܤ"s+Mw=MB/K/)I-+MJ-b`wQryoKkCC.git/objects/0a/0000775000175000017500000000000014540155632013521 5ustar jonaro00jonaro00.git/objects/0a/741955457fd1124a132c85aba32dc1892a917c0000444000175000017500000000002414540155632020414 0ustar jonaro00jonaro00xKOR0e030q.git/objects/ff/0000775000175000017500000000000014540155436013616 5ustar jonaro00jonaro00.git/objects/ff/1dfaa171a622c8d079ce25769ff36c9d6189cf0000444000175000017500000000023214540155436021044 0ustar jonaro00jonaro00x+)JMU041b040031QH/*Mgp$\?VNM @!#D;uh>V"[\.y*z̼̼Ԣܤ"KHf_{er>.git/objects/24/0000775000175000017500000000000014540155220013437 5ustar jonaro00jonaro00.git/objects/24/59f57feb746597495559c399a3eef982ef35ab0000444000175000017500000000015114540153325020573 0ustar jonaro00jonaro00x-A !sWk2DU%y~\ȡ)h*T9#4+֓I cU%* Ϳ*>e$ ;i>OG).git/objects/24/a8170e38960715ae283e0fa8726e542d1b8c290000444000175000017500000000024014540155220020351 0ustar jonaro00jonaro00xK @]sSc m_(.7p6mYХU_,dc/NsfXemScq.kF:BNZbm*\nƢ!xJcOЌ&X"pEɿ0H6 [;[D'.git/objects/63/0000775000175000017500000000000014540155444013452 5ustar jonaro00jonaro00.git/objects/63/42c1dbdb560f0d5dcaac7566fca514548666640000444000175000017500000000024014540155444020651 0ustar jonaro00jonaro00xK!D]s t30$xz>KZzUi_׹"]jhuM}dưzYW*cC7vN'$45EQV^@W|֕v$뿟Xwϩךb/^?!#c.git/objects/1b/0000775000175000017500000000000014540155636013527 5ustar jonaro00jonaro00.git/objects/1b/b6411344a9308b0cc2724c61138306e72676530000444000175000017500000000005114540154624020112 0ustar jonaro00jonaro00xKOR06`(H,Q,V(@\ i.git/objects/1b/1c1312820bf5617d09108d59f960ecb19cc8ac0000444000175000017500000000002314540155636020563 0ustar jonaro00jonaro00xKOR0a00b.git/objects/43/0000775000175000017500000000000014540152760013446 5ustar jonaro00jonaro00.git/objects/43/2e52bc12e39526eda3ca7eef553374f6c12bc50000444000175000017500000000017614540152760020733 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(՜bv}Vݴ;wG̼̼Ԣܤ"BSts2 C4G.git/objects/93/0000775000175000017500000000000014540155776013465 5ustar jonaro00jonaro00.git/objects/93/99b5991c2e01ba82fd1fbfe200e0b861f1011d0000444000175000017500000000017614540155776020656 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(+Nُ.4Wꄐ`̼̼Ԣܤ"e {.1|.git/objects/93/9d6ce51cf647f8caa5baf307634fe3764650df0000444000175000017500000000026314540154122020753 0ustar jonaro00jonaro00x]MA 0y_1 =?RШ &||7b/v\rz^,Ye&uT'9pkizc#&AF& :ha6.)y/;ڛXA2u*{.Mi(e9&6i;-՞tlw:,\J.git/objects/0e/0000775000175000017500000000000014540154624013525 5ustar jonaro00jonaro00.git/objects/0e/abe11bffbafa73f8bd266858c5f4c221cd59bd0000444000175000017500000000006614540154304021310 0ustar jonaro00jonaro00xKOR0`OQv qTW(QHJUHLIIMQs T(ϳA .git/objects/0e/6de74d0f2650aae323250c0a690dcbfb793a3e0000444000175000017500000000002514540154624020767 0ustar jonaro00jonaro00xKOR0c02665.git/objects/bf/0000775000175000017500000000000014540156000013576 5ustar jonaro00jonaro00.git/objects/bf/edf9c0cab6efd1fb3330c050b8aa4e85151bd30000444000175000017500000000024014540156000021252 0ustar jonaro00jonaro00xI 0 E)/-RzRȄ.zޠy[|E"*uA0;Hڡ'XR`tlTt ‘}$Qm mr +edһ[|LG]q_'P@6H&U3e¼31_C.git/objects/84/0000775000175000017500000000000014540155471013455 5ustar jonaro00jonaro00.git/objects/84/641cd2e5129de81ccaa7887922c8c5025f47c90000444000175000017500000000002514540155471020536 0ustar jonaro00jonaro00xKOR0c04303.git/objects/84/4559986984cf5e80543e33183d6bb4b77460830000444000175000017500000000023714540154203020175 0ustar jonaro00jonaro00xA! @Qל{i)0U g1 o%l vBN84aF2+sQ&!]4թ\4K䪖PYL)yy렷v@Nߺ/ϱx& HL_W0f6m>MC.git/objects/7d/0000775000175000017500000000000014540155635013536 5ustar jonaro00jonaro00.git/objects/7d/23339760d0faaa925c63dc85b30a6db4d67fb80000444000175000017500000000002414540155635020735 0ustar jonaro00jonaro00xKOR0e002c.git/objects/80/0000775000175000017500000000000014540156000013436 5ustar jonaro00jonaro00.git/objects/80/e35f1a257d0c559766b81eb0611d1b3da730530000444000175000017500000000017614540156000020413 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(+Nُ.4Wꄐ`̼̼Ԣܤ"QoV0s!3m.git/objects/cc/0000775000175000017500000000000014540155634013610 5ustar jonaro00jonaro00.git/objects/cc/0549d4510605905c67b5beff23cd9db72b2f9b0000444000175000017500000000006714540153343020740 0ustar jonaro00jonaro00x+)JMU0`040031QHL+(a^߯VIl.2w-ͮ ^/4.git/objects/51/0000775000175000017500000000000014540155004013437 5ustar jonaro00jonaro00.git/objects/51/832ff0eb0cf19852b2632dfdff80120f6823cd0000444000175000017500000000017614540155004020647 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(!tm>YH>mz}p3Twyf^^f^z|N~IIjQe|^inRjõ-"^!~.-7.}3.git/objects/13/0000775000175000017500000000000014540152671013444 5ustar jonaro00jonaro00.git/objects/13/85f264afb75a56a5bec74243be9b367ba4ca080000444000175000017500000000002314540152671020726 0ustar jonaro00jonaro00xKOR0aHSD.git/objects/de/0000775000175000017500000000000014540155636013615 5ustar jonaro00jonaro00.git/objects/de/81ab80fae118a5a2cbb7956b89104d46f65c4a0000444000175000017500000000017614540155636021023 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(!j;+\lT)@a/̼̼Ԣܤ"ia&?lsb ]0.git/objects/11/0000775000175000017500000000000014540154071013436 5ustar jonaro00jonaro00.git/objects/11/de999c78111d4242aa80e8c502d753d44fad530000444000175000017500000000006714540154071020513 0ustar jonaro00jonaro00x+)JMU0`040031QHL+(aXWJwۡ9͏f O`-.git/objects/2d/0000775000175000017500000000000014540152671013526 5ustar jonaro00jonaro00.git/objects/2d/dbfd0661dfa6cb60e5c72279545cdfae1bc5340000444000175000017500000000024014540152671021144 0ustar jonaro00jonaro00xI09#x%q)sX[Zu$RV% !D @SQ'0!hjRGu1s҃d]'0p"۴WK!%JS϶OkB@_]=Qq,r[?/\!C..git/objects/2d/5f9dc4894d7551267c42976de35b4f55e08a070000444000175000017500000000024014540152646020466 0ustar jonaro00jonaro00xI 1E]*I* U2To_{\Ak".XsGO&6cldNVb`G.gkL+ێXw 7蕦2u };@zMpEBTwʟ*8J: ,{mG}!C*.git/objects/10/0000775000175000017500000000000014540155633013442 5ustar jonaro00jonaro00.git/objects/10/ef7bd6694c68cebd5479ce228523b1d55ac6a80000444000175000017500000000020014540152336020740 0ustar jonaro00jonaro00xK @]s JBǡ1t\x{7p6=j3tf`k'Bc[QQ\jL1L>nZޝ;#̼̼Ԣܤ">w9ޯ!j=@.git/objects/22/a7ba3eb776ff880f41d6fcf412aae27cdb107d0000444000175000017500000000023614540156004021142 0ustar jonaro00jonaro00xA 0={ew,Mk%ƃ/\&2w`]of` mQ)BEJȘPbN&#x+Q)7I~zOk׃5Om~E_tB?|=˿nfͷ}[q_D.git/objects/a5/0000775000175000017500000000000014540154024013520 5ustar jonaro00jonaro00.git/objects/a5/927fddef9219f743bcb35a24873a141c617edc0000444000175000017500000000016614540154024020741 0ustar jonaro00jonaro00x-K 0C) r-'M{:!/<_SRݞ$&]xtm2C`*.4 Pf}E/`Y̙ldڼpqth@ 3;[fO1..git/objects/62/0000775000175000017500000000000014540154160013443 5ustar jonaro00jonaro00.git/objects/62/4a431006baea379e9ca414ad2bf63984e01e260000444000175000017500000000002514540154160020550 0ustar jonaro00jonaro00xKOR0c0241 .git/objects/c0/0000775000175000017500000000000014540154554013525 5ustar jonaro00jonaro00.git/objects/c0/8e3a41cb094d739d2c484479d44ecf0515defc0000444000175000017500000000017614540154554020752 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(!4כŚǜ͕v=}<3//3/=>'$2>47):Oi M]q3.git/objects/4f/0000775000175000017500000000000014540155742013534 5ustar jonaro00jonaro00.git/objects/4f/c22bf70b6c74e0bc6b0808d954c8fa40e2016b0000444000175000017500000000023714540153222020715 0ustar jonaro00jonaro00xA 0@Q9EI&`mI[y2SkЛ0 5e 5O1U&gL8\f&CL4zk>. '!׽el缝_ (Mlg8"!'3mGw1_VC.git/objects/4f/1aa91e9731e7d9a1d7b2f5df17f4782aafe07b0000444000175000017500000000002514540155675021112 0ustar jonaro00jonaro00xKOR0c04207}.git/objects/4f/486de452daeba28bcb43adc9ae4f44d315e5de0000444000175000017500000000006314540155742021315 0ustar jonaro00jonaro00x+)JMU06a040031QO+*fXKƖgx(7.git/objects/a7/0000775000175000017500000000000014540152760013527 5ustar jonaro00jonaro00.git/objects/a7/12e764002d6dd78decb1e953f9c6683128f1390000444000175000017500000000002314540152760020530 0ustar jonaro00jonaro00xKOR0a050\.git/objects/39/0000775000175000017500000000000014540155767013465 5ustar jonaro00jonaro00.git/objects/39/b31f99e0ab2c5fa953fff7d7240a320a8b42120000444000175000017500000000023714540155767020661 0ustar jonaro00jonaro00xK 0a9ELWcb ֖4. .uv7ߝ(՜bv}Vݴ;wGyyy9%%EyIE Frq߲KְI4Ee.git/objects/c9/0000775000175000017500000000000014540155704013534 5ustar jonaro00jonaro00.git/objects/c9/c3354651f3a629db3dfe74100fed4677ab2fff0000444000175000017500000000005514540155436021027 0ustar jonaro00jonaro00xKOR06dHW(H-J ޞ\ .git/objects/c9/6278ac7cc0a30a7d753a3b5be4b9d32de7e6d30000444000175000017500000000017614540155704021101 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(AzaoDSw/]~21<3//3/=>'$2>47)-KvP82Y.git/objects/c9/33e0419332e9c1ffee52febbce1dba9c1d81420000444000175000017500000000006414540152511021142 0ustar jonaro00jonaro00x+)JMU06e040031QM+*fX)2S}m3o.t)@.git/objects/8e/0000775000175000017500000000000014540156004013527 5ustar jonaro00jonaro00.git/objects/8e/e612f5e655ab1cd83d366ef5a3b137b835de940000444000175000017500000000024114540155776020761 0ustar jonaro00jonaro00xM 0@a9EIf&IDJ~`mq-|ʺ,sDwMFHr!8GAk!5[j3V9F"W9qD)@UXLzim>xu+S_}Isiu֚'3mߵBk|(C`.git/objects/8e/7b0aa4e98dd951702cc8f86a1d56492d9c7fe90000444000175000017500000000017714540156000020770 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(+Nُ.4Wꄐ`̼̼Ԣܤ"ݫ9&^注!-> 5^.git/objects/8e/7b64c4fd70186ff2667ddb70a3ba4d65a9f43d0000444000175000017500000000002414540154554021032 0ustar jonaro00jonaro00xKOR0e0757.git/objects/8e/fb5bebb46d2db5aa681fdc99eb22ae2dfe36b20000444000175000017500000000002514540156004021444 0ustar jonaro00jonaro00xKOR0c0447.git/objects/8e/a21fa205d1a2ca7e8d6ccc9ee97092b637b04a0000444000175000017500000000024014540155634021065 0ustar jonaro00jonaro00xK !CB۶Bvf`~8fGr$,!ǂ52YbZ {ʠ8B孋1@8 "s,»M{:e|t|g[yߎTГHzY岷~_'9Dk.git/objects/fc/0000775000175000017500000000000014540154150013603 5ustar jonaro00jonaro00.git/objects/fc/b1577d1528830f94cf153047ecf5808058977a0000444000175000017500000000024314540154150020375 0ustar jonaro00jonaro00xKn0 )RYW$6ǁ.rAvo13xe߶uktUN)xF'bL1kjj1@[.0 9c[9"R*cdMXzoWK~[cMhd=\Myg:Za, } E".git/objects/42/0000775000175000017500000000000014540154160013441 5ustar jonaro00jonaro00.git/objects/42/4742ba49ce70d62cb1fcdbc5971c9caf8150120000444000175000017500000000016714540154160020724 0ustar jonaro00jonaro00x-K C) QYPK04K,dYϲ-SRđGpvazD *En`jQДDm]B7y6B wg2K ,2.git/objects/cf/0000775000175000017500000000000014540155636013615 5ustar jonaro00jonaro00.git/objects/cf/db5aafce7bfca77b8e3b65cf8abc4c77b5c10d0000444000175000017500000000023714540154122021610 0ustar jonaro00jonaro00xI 1E]%UAīdt7D:.7py?o2u Rޘu$2PR>rI"抒OFGɘNP0YR5s #SՐ>n x7%{x6}}ݟNR%U"um.Gyg#GD.git/objects/cf/2182bd0daa0cee1b24de0dc766e1a9f7ae864a0000444000175000017500000000002514540155636021300 0ustar jonaro00jonaro00xKOR0c04736.git/objects/40/0000775000175000017500000000000014540156004013436 5ustar jonaro00jonaro00.git/objects/40/cc0ed83560516a2bf0771ec1856a1d6bfd06c80000444000175000017500000000007014540155722020637 0ustar jonaro00jonaro00xKOR03aOQv q1SsҴ!̢]](a@|0TKz.git/objects/40/e25cdffff9e4f557488202415be026708412430000444000175000017500000000002514540156004020353 0ustar jonaro00jonaro00xKOR0c04305.git/objects/78/0000775000175000017500000000000014540156003013450 5ustar jonaro00jonaro00.git/objects/78/b766c7cf8d3ac4c857565ba20bbe4565f6b5fb0000444000175000017500000000023714540152371021037 0ustar jonaro00jonaro00x91 d;FB8Y]iBAnMul+sLLQб1JnSU-'$2>47)_RM{|6.git/objects/41/6116ed9a04a36fe49d71bff5f6ff0597341dee0000444000175000017500000000023614540153222020746 0ustar jonaro00jonaro00x+)JMU041c040031QH/*Mgp$\?VNM @(59 N"+mFEsvv\ȿ (՜bv}Vݴ;wGyyy9%%EyIE (?P7~= B.git/objects/33/0000775000175000017500000000000014540155436013450 5ustar jonaro00jonaro00.git/objects/33/8a7b9a3a04dbaa95f20660c2321960fb42653d0000444000175000017500000000023714540155436020500 0ustar jonaro00jonaro00x10 d;mH8mVi=?`Ne%rVUm)O8CI>|#T&U_ cu=EB(E#6\.|N{[d=B;#3 IzNàٶQ#1_+D?.git/objects/2e/0000775000175000017500000000000014540154304013522 5ustar jonaro00jonaro00.git/objects/2e/7d3d6e1a2b66da30fba237a2980c119ae72b110000444000175000017500000000007314540154304020701 0ustar jonaro00jonaro00xKOR05bJSMR\8P(H,QHM-VHL+I-R(,2.git/objects/f1/0000775000175000017500000000000014540152646013531 5ustar jonaro00jonaro00.git/objects/f1/ddab0969163ed302bfade67db735778b6d9ef10000444000175000017500000000012414540152760021107 0ustar jonaro00jonaro00x+)JMU03g040031QM+*fXp׊ľlcz401ļDE R|2'qmݬ/_.git/objects/57/0000775000175000017500000000000014540154724013455 5ustar jonaro00jonaro00.git/objects/57/990065d27571eb3e2f8269c343ce16ba094c420000444000175000017500000000011014540154724020357 0ustar jonaro00jonaro00xKOR0`JSMR\8P(H,QHM-VHL+I-R(,+VTH/Q,n.git/objects/9e/0000775000175000017500000000000014540154110013524 5ustar jonaro00jonaro00.git/objects/9e/9277fff41a8cf99ddf6534c8efd022811d4c000000444000175000017500000000002514540154110020746 0ustar jonaro00jonaro00xKOR0c02.git/objects/b4/0000775000175000017500000000000014540152371013523 5ustar jonaro00jonaro00.git/objects/b4/9322b6df2659b9bded923e20caf027cd8c73520000444000175000017500000000010314540152371020730 0ustar jonaro00jonaro00x+)JMU05`040031Q(K/)I-+MJ-b(=R7i3nItT.git/objects/1d/0000775000175000017500000000000014540155704013525 5ustar jonaro00jonaro00.git/objects/1d/8f7ba18d759110954095b8566fa0bb77c9616b0000444000175000017500000000012314540155704020452 0ustar jonaro00jonaro00x+)JMU03g040031QM+*fhr?+Ue*iE{KBqb^I"Y^y/3TM.git/objects/1d/45c8b965191fa5b87ab5d0260972c999f3b94f0000444000175000017500000000017614540155632020553 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(!j;+\lT)@a/̼̼Ԣܤ"# ː uSmKVn0.git/objects/97/0000775000175000017500000000000014540154110013446 5ustar jonaro00jonaro00.git/objects/97/4798c2eda112baf0444041f972161a912ed80c0000444000175000017500000000023614540154110020417 0ustar jonaro00jonaro00x+)JMU041c040031QH/*Mgp$\?VNM @(59 !z(^s|xݧ@ìE ̴ݹ>B/K/)I-+MJ-b7s栗xAQևC.git/objects/9f/0000775000175000017500000000000014540154755013544 5ustar jonaro00jonaro00.git/objects/9f/2cb39da42f7972a909c6b98361b82bde63f8db0000444000175000017500000000012314540154755020770 0ustar jonaro00jonaro00x+)JMU03g040031QM+*fHJ57 dBqb^I"C}}[ -Z.git/objects/ee/0000775000175000017500000000000014540155767013623 5ustar jonaro00jonaro00.git/objects/ee/e825ec56fb2a47d07f3258996e81f2e0241ca10000444000175000017500000000012214540153222020653 0ustar jonaro00jonaro00x-1 @}ηpx!|Cb1hʶ.tJuē9p :#g]. LE~{QӋ.git/objects/ee/02b7b00f4c07d133e06f1f75dc955d7e8802670000444000175000017500000000013514540155767020611 0ustar jonaro00jonaro00xKOR046`OQv q1SsҴ!̢]](a@|0Tk*(MRH+.Qptw q R04T&.git/objects/04/0000775000175000017500000000000014540155775013454 5ustar jonaro00jonaro00.git/objects/04/168422c994cfdc44153746a9f8a25743972b0d0000444000175000017500000000017614540155775020326 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(+Nُ.4Wꄐ`̼̼Ԣܤ" Jyo[o2.git/objects/04/32dd30bfac19e6440a4f5486093a2e084ab5110000444000175000017500000000024114540155775020474 0ustar jonaro00jonaro00xK!D]s 4=0$xz>KԫJd\O)JCNDg<1.Uȱ3- K`8w9o0##^w  _i*YW>5jsh]{($ > D3.git/objects/14/0000775000175000017500000000000014540155004013436 5ustar jonaro00jonaro00.git/objects/14/a225ad2b38aedb8611cf10e68b54a4c255d13e0000444000175000017500000000023514540154122020677 0ustar jonaro00jonaro00x+)JMU041c040031QH/*Mgp$\?VNM @(59 !rޒ ?xC0ǹ̽(՜bv}Vݴ;wGyyy9%%EyIE sI(xᧁ0~@=.git/objects/14/757f12b927003da4ddf0b29bd7cabd3f714cf00000444000175000017500000000006714540154040020772 0ustar jonaro00jonaro00x+)JMU0`040031QHL+(aw&hjNPa_-f5.git/objects/14/d003634bc5dcd7652fce07da39458ac626e65b0000444000175000017500000000023614540155004020645 0ustar jonaro00jonaro00x 0=).JKUd-X[x-uYJj&[ fUoV;bW8(X^禋1EoNk!yꅁ@i*^__۝lZ~sULQ2I֣/C.git/objects/14/438ad1c4fcaad145200388da18303fd37a71a10000444000175000017500000000002414540152336020532 0ustar jonaro00jonaro00xKOR0e016i.git/objects/d3/0000775000175000017500000000000014540156001013516 5ustar jonaro00jonaro00.git/objects/d3/0cc3ba299e41d16a0594d096b1a8a5575a6eab0000444000175000017500000000024014540156001020705 0ustar jonaro00jonaro00xI09sGǫ_2N"ecp:T,S3($I5\dr)"SŘՑQ=6^;ʥ9&˵Ț3L>FH#S!}\oJZ48+m:?A:TA(E'4 \ G|E0.git/objects/27/0000775000175000017500000000000014540156004013443 5ustar jonaro00jonaro00.git/objects/27/2603660d38af4051454abda5b589714b85e53f0000444000175000017500000000017714540156004020355 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(+Nُ.4Wꄐ`̼̼Ԣܤ"ѯn]!gku6ۯ4j.git/objects/7b/0000775000175000017500000000000014540155776013542 5ustar jonaro00jonaro00.git/objects/7b/d307e669f926520850d31a4c5adddd556b86870000444000175000017500000000014114540152646020535 0ustar jonaro00jonaro00x+)JMU0`01dwWsf]fڿYvy LL32sKJR*JsR<^:wciPԸ$.git/objects/7b/bdd97e925473da2ac02f1b1f4c1386246e218b0000444000175000017500000000002514540155776020656 0ustar jonaro00jonaro00xKOR0c02455.git/objects/5a/0000775000175000017500000000000014540155110013515 5ustar jonaro00jonaro00.git/objects/5a/bb33ee48d44f0a069e2497c199170ae020a6fa0000444000175000017500000000012314540155110020630 0ustar jonaro00jonaro00x+)JMU03g040031QM+*fhr?+Ue*iE{KBqb^I"C}}[ x.git/objects/0b/0000775000175000017500000000000014540154150013514 5ustar jonaro00jonaro00.git/objects/0b/d4af7d6f47fe931add64d76c8dbcedbb4d42320000444000175000017500000000002414540154150021307 0ustar jonaro00jonaro00xKOR0e005}.git/objects/e4/0000775000175000017500000000000014540155774013540 5ustar jonaro00jonaro00.git/objects/e4/57b0df5ca854451d190ae86721c39f95cab3f40000444000175000017500000000017614540155774020700 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(+Nُ.4Wꄐ`̼̼Ԣܤ"Wei KdѲ%â2.git/objects/fa/0000775000175000017500000000000014540155776013620 5ustar jonaro00jonaro00.git/objects/fa/7b593cb3a3f38a94bd1826a6f8d4f4c234b8760000444000175000017500000000002514540155776020761 0ustar jonaro00jonaro00xKOR0c0424.git/objects/36/0000775000175000017500000000000014540155704013451 5ustar jonaro00jonaro00.git/objects/36/6345ac04dd4ac37b0ded0fa3891d7d6e3120160000444000175000017500000000006314540155704020634 0ustar jonaro00jonaro00x+)JMU06a040031QO+*f`rl=3؏FKhn[.git/objects/d2/0000775000175000017500000000000014540155220013517 5ustar jonaro00jonaro00.git/objects/d2/aeeec3fa6a105ef6214854735f8b58e9caa2650000444000175000017500000000003314540155220021010 0ustar jonaro00jonaro00xKOR04dHW(H-J=6n.git/objects/d2/f9f227122734eb636a29a36db116981e9ab9810000444000175000017500000000002514540155220020434 0ustar jonaro00jonaro00xKOR0c02752.git/objects/56/0000775000175000017500000000000014540155776013464 5ustar jonaro00jonaro00.git/objects/56/2cb5b2d54b77331d4a4b917fa3a6383d964d7c0000444000175000017500000000023714540155776020614 0ustar jonaro00jonaro00xK!EQǬFC+Hq+@ݝ/4ܽ8;sUf l3R>$mdTqQրש`}<& cXm+RnJ)$xtT糭o FQp(ȿwDǑhò>_Ed.git/objects/56/867e3c767ceb5a35b92ff74dbdb7c7c6a2aace0000444000175000017500000000010314540152366021247 0ustar jonaro00jonaro00x+)JMU05`040031Q(K/)I-+MJ-bh;iokLo>0; W(.git/objects/e1/0000775000175000017500000000000014540153222013517 5ustar jonaro00jonaro00.git/objects/e1/43fc23e0f62d6253e7c252a5d3704bd8fae16e0000444000175000017500000000002514540153222020714 0ustar jonaro00jonaro00xKOR0c040 .git/objects/e1/253247f189c90cd455d3d8e536bf094b34876d0000444000175000017500000000006114540152646020460 0ustar jonaro00jonaro00xKOR06fOQv qTW(QHJUHLIIMQ(ϳ p.git/objects/c2/0000775000175000017500000000000014540156004013517 5ustar jonaro00jonaro00.git/objects/c2/6d211127bedb654d71d964d7aa0a8be36499a80000444000175000017500000000024014540156004020645 0ustar jonaro00jonaro00x;0D} #!U:1p4ś&m:79,5j{&Pub&]P;SN_0K UٗԡXcQfA6mUR.F[4h+~ A֠ @߻zY岵> D.git/objects/9c/0000775000175000017500000000000014540155704013534 5ustar jonaro00jonaro00.git/objects/9c/842d20a669f7f926cdbf4925a30e0e7171e62a0000444000175000017500000000023714540152511020602 0ustar jonaro00jonaro00x10 d;iH4JV! nӕm]Ъ*H0N^}1'IcQCp{hЛJ)s)8hLf 8[ۉR oe˳y~W AN;8"!k2M:B[fD.git/objects/9c/668ded9163f85850d9cfdf849a944b645f81cc0000444000175000017500000000002514540154071020724 0ustar jonaro00jonaro00xKOR0c0424.git/objects/9c/85d46b8fb2b75b6220253b7d640e7f652a35680000444000175000017500000000023714540155704020454 0ustar jonaro00jonaro00xK @]s e)1^m_(.7p6,ScҪpĬ#HFL.M!B3=VYHs!Ԟ%D'.q >qD⻍[ 'xіx i,UwZ+5SuFykgࣾ!:E.git/objects/7c/0000775000175000017500000000000014540154071013526 5ustar jonaro00jonaro00.git/objects/7c/6c44c9684039aa4a0e642d9c400dbfe7fce0990000444000175000017500000000023614540154071020744 0ustar jonaro00jonaro00x+)JMU041c040031QH/*Mgp$\?VNM @(59 A9NN^e|m0DEqQ2ǻ93.3_viywP32sKJR*JsR#"-x7_xB.git/objects/66/0000775000175000017500000000000014540152372013452 5ustar jonaro00jonaro00.git/objects/66/27563ce344aba7747b3bf506c861b928483c960000444000175000017500000000010314540152372020371 0ustar jonaro00jonaro00x+)JMU05`040031Q(K/)I-+MJ-b]_%d}9;Z CA.git/objects/ce/0000775000175000017500000000000014540155722013610 5ustar jonaro00jonaro00.git/objects/ce/c78dca2fd69d13aba718c885218a4eec51dca40000444000175000017500000000017614540155722021242 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(aQIoݚ~.p׿; ̼̼Ԣܤ"G[ ΞxmbBčϿ|"-5.git/objects/d1/0000775000175000017500000000000014540156003013516 5ustar jonaro00jonaro00.git/objects/d1/c643786add582d02fd4e212a8f5c7b57f440ac0000444000175000017500000000006714540154150020731 0ustar jonaro00jonaro00x+)JMU0`040031QHL+(as.\=[QF5Q.git/objects/d1/4441f60cce33978d68b783d202b845ece711af0000444000175000017500000000012314540154724020600 0ustar jonaro00jonaro00x+)JMU03g040031QM+*fɐz~Sasb8}L @81$!yR>>S-.git/objects/d1/ca06c396e4ff9e0e564af6f26b346dee6935d00000444000175000017500000000002514540156003021022 0ustar jonaro00jonaro00xKOR0c0464.git/objects/6b/0000775000175000017500000000000014540155636013534 5ustar jonaro00jonaro00.git/objects/6b/8d558b170ed451c1cd40860785119a6d9e0a000000444000175000017500000000017614540155636020437 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(!j;+\lT)@a/̼̼Ԣܤ"M{yWV{<ڼ}12P.git/objects/96/0000775000175000017500000000000014540152371013454 5ustar jonaro00jonaro00.git/objects/96/543cbd0daeda0681191399c6fa701070d572f90000444000175000017500000000002414540152371020511 0ustar jonaro00jonaro00xKOR0e42u.git/objects/af/0000775000175000017500000000000014540155635013612 5ustar jonaro00jonaro00.git/objects/af/dd1a2dbb46c29cc14b37c54d7d0d6a5e126f960000444000175000017500000000024714540154071021145 0ustar jonaro00jonaro00x]M;0Sxc"CH% HZZ)o ,' eA8ѰN^ LߣɲNm8mg2 WK~0Xc/s]:m=$x=C(1|~o™b]GbCo(NY_R)UnIE-.git/objects/af/5bee95920d70dcdf695e406f647c3d6ddab4060000444000175000017500000000017614540155635021121 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(!j;+\lT)@a/̼̼Ԣܤ"Ze ~|u3Wk;2.git/objects/dd/0000775000175000017500000000000014540156000013576 5ustar jonaro00jonaro00.git/objects/dd/381c2860680c4a3c93050e2879a5dbd3e1cd210000444000175000017500000000023714540156000020554 0ustar jonaro00jonaro00xK0 Y#PM,!URi+J͂Sیк,$^S)LԖ(eSBXՖ?8193Y9"1V1qmstF;AcvY~}nww{8k_j0pU>D4.git/objects/bd/0000775000175000017500000000000014540155767013617 5ustar jonaro00jonaro00.git/objects/bd/106caa5081fe547caeb3aec1722b8afb6b2df30000444000175000017500000000024114540152371021260 0ustar jonaro00jonaro00xK0 Y#s !$N[* nO ؽ̼.{MH04x".RY8MIm!Q.s.*ԪSt+Yj6gh혏 <~> mD.git/objects/bd/348e52e530fca27c46de2343ff72583b7b91fd0000444000175000017500000000002514540155767020753 0ustar jonaro00jonaro00xKOR0c02507.git/objects/82/0000775000175000017500000000000014540155774013461 5ustar jonaro00jonaro00.git/objects/82/ec40a78b2e1ceef7264bfa621f76ccf71e0b8c0000444000175000017500000000002514540155774021163 0ustar jonaro00jonaro00xKOR0c02616~.git/objects/82/78c386cd83cfe30596554610655b2b9462da780000444000175000017500000000006614540155436020332 0ustar jonaro00jonaro00x+)JMU06g040031Q(N+I+(a8y-2۶JߺWu.git/objects/20/0000775000175000017500000000000014540156001013431 5ustar jonaro00jonaro00.git/objects/20/313fc6d979635c98ba0e3f0ab824f734e0e3020000444000175000017500000000017614540156001020505 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(+Nُ.4Wꄐ`̼̼Ԣܤ"e/u8tdw8"O1/.git/objects/3e/0000775000175000017500000000000014540155636013534 5ustar jonaro00jonaro00.git/objects/3e/48900e7411a2f45fe91e492b91a0c361a267c50000444000175000017500000000006714540153325020432 0ustar jonaro00jonaro00x+)JMU0`040031QHL+(aPZ$ughᙋlzok  .git/objects/3e/0130943a7a5ec24687dee571c35072703e3d940000444000175000017500000000024014540155636020355 0ustar jonaro00jonaro00xK @]s 26 .7p6}]So"P$ + b`&4DSeb&[C""E˖rB%Gu1)~io KXsv#Om~_yd=y8kZ]=q}X~> E.git/objects/49/0000775000175000017500000000000014540155636013461 5ustar jonaro00jonaro00.git/objects/49/3ed39943acb135cec36cf9e3f2b958d63f44a80000444000175000017500000000002414540155632020760 0ustar jonaro00jonaro00xKOR0e471.git/objects/49/484fce331af581ed7ba21d3b4b9e998beeb3de0000444000175000017500000000023714540155636021202 0ustar jonaro00jonaro00xK0 Y#$JRK,=7`63ʶ$sq\BZCtD)3s㗀a$ɚ㢭2@8 :aSU-րRn}>C|\_zTwH=R~TǑ+İle.CL.git/objects/5e/0000775000175000017500000000000014540154160013525 5ustar jonaro00jonaro00.git/objects/5e/fe4e1cabfeadda1f68e63d96fd6ff3e7cd462d0000444000175000017500000000023514540154160021553 0ustar jonaro00jonaro00x+)JMU041c040031QH/*Mgp$\?VNM @(59 a2In MN9 QQ\jL1L>nZޝ;#̼̼Ԣܤ"$/g]Y"Ve95_>t.git/objects/8a/0000775000175000017500000000000014540155767013542 5ustar jonaro00jonaro00.git/objects/8a/56ddb91b9be310fda131b6fd1ac8121179fc140000444000175000017500000000012314540155767021003 0ustar jonaro00jonaro00x+)JMU03g040031QM+*fhr?+Ue*iE{KBqb^I"CF}qp?7w=sy.git/objects/e6/0000775000175000017500000000000014540155444013534 5ustar jonaro00jonaro00.git/objects/e6/706dacdd6722661d6c662348a1790d1e7cc2010000444000175000017500000000005614540155444020514 0ustar jonaro00jonaro00x+)JMU06d01̼Ҕ1<[ޘ .git/objects/3f/0000775000175000017500000000000014540156003013522 5ustar jonaro00jonaro00.git/objects/3f/d0c465e7b3f7f1fcd49c2f98da52b9189fd1330000444000175000017500000000004114540154554021037 0ustar jonaro00jonaro00xKOR04gH/*MWLVHI-/jdV.git/objects/3f/8865c4c6c4775f6a1b566a84220d0e5dcc0a2d0000444000175000017500000000004314540154651020652 0ustar jonaro00jonaro00xKOR02bOQv q1SsҴBr.git/objects/3f/34fced787f238074d19807d808243de9d23cce0000444000175000017500000000017714540156003020622 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(+Nُ.4Wꄐ`̼̼Ԣܤ"O{_׷O&2M/b4.git/objects/2f/0000775000175000017500000000000014540155656013536 5ustar jonaro00jonaro00.git/objects/2f/fce7902f888377054a914d8a6c32c85393b5090000444000175000017500000000012314540155656020411 0ustar jonaro00jonaro00x+)JMU03g040031QM+*fhr?+Ue*iE{KBqb^I"à |,hX^{6^kf.git/objects/2f/bfba8355f7f8d3052b5c70367f88ac413cd4940000444000175000017500000000017614540155635020701 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(!j;+\lT)@a/̼̼Ԣܤ"ԟS\]^)q|N1.git/objects/3c/0000775000175000017500000000000014540154040013516 5ustar jonaro00jonaro00.git/objects/3c/0d728de26db4cf84814ee4becf7fe9be77e4f10000444000175000017500000000023614540154040021255 0ustar jonaro00jonaro00x+)JMU041c040031QH/*Mgp$\?VNM @(59 A^h:풻6;~j}dwWsf]fڿYvyge䗔U&1쎞a1Гr&o4="C.git/objects/1f/0000775000175000017500000000000014540152544013526 5ustar jonaro00jonaro00.git/objects/1f/9c37b6dcf9fd5128294080a41d292ece16986c0000444000175000017500000000002514540152544020613 0ustar jonaro00jonaro00xKOR0c0472 .git/objects/7a/0000775000175000017500000000000014540152372013526 5ustar jonaro00jonaro00.git/objects/7a/166c1708a51062bf2e2ebf2c6076af8d10c50f0000444000175000017500000000010314540152372020625 0ustar jonaro00jonaro00x+)JMU05`040031Q(K/)I-+MJ-bHrFm{77R.git/objects/4c/0000775000175000017500000000000014540154110013515 5ustar jonaro00jonaro00.git/objects/4c/2d1b22659bb06f58938ffceb927c725f749f520000444000175000017500000000024114540154110020612 0ustar jonaro00jonaro00xAj1 E)--Wm93 ;}x/ۺ.?Fw5jDP4)(a u@#6yU2[?, DG.git/objects/0c/0000775000175000017500000000000014540155776013534 5ustar jonaro00jonaro00.git/objects/0c/e669e59dac74c9ba389b340bebfe6e40b1e80a0000444000175000017500000000017714540155776021177 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(+Nُ.4Wꄐ`̼̼Ԣܤ"_Ց6WBmُ+_(ݙ5.git/objects/0c/d9bfa98f5fcbc9c26736a96af3609a776adcdc0000444000175000017500000000002514540155631021256 0ustar jonaro00jonaro00xKOR0c0444.git/objects/a3/0000775000175000017500000000000014540155633013525 5ustar jonaro00jonaro00.git/objects/a3/ae8ab465bcfb8d58e9af345779ca7ce86fd6630000444000175000017500000000006614540155220021205 0ustar jonaro00jonaro00x+)JMU06g040031Q(N+I+(a_Yq=B#^Z fT.git/objects/a3/77090b30debb30da8dce472f79c5112fc409c00000444000175000017500000000002414540155633020714 0ustar jonaro00jonaro00xKOR0e002s.git/objects/7e/0000775000175000017500000000000014540152371013531 5ustar jonaro00jonaro00.git/objects/7e/77d2274af44a0298b3172c931f0b478b4c5dd70000444000175000017500000000002414540152371020516 0ustar jonaro00jonaro00xKOR0e0772x.git/objects/6a/0000775000175000017500000000000014540155220013520 5ustar jonaro00jonaro00.git/objects/6a/97c438d45c15b9569595d79ce4b3603d7ee3dc0000444000175000017500000000005614540155220020626 0ustar jonaro00jonaro00x+)JMU06d01̼뺶rIx婚ג.git/objects/46/0000775000175000017500000000000014540154203013443 5ustar jonaro00jonaro00.git/objects/46/3d97c81e9f0299c40fb620d37f3d61767d41010000444000175000017500000000017414540154203020365 0ustar jonaro00jonaro00xMN; S+d隳+Ѵod`G-9S]^Tjʒ%Š@m TFԶT뤔{yJ1.git/objects/a4/0000775000175000017500000000000014540155742013527 5ustar jonaro00jonaro00.git/objects/a4/9f7091729b10d3b415b0adc0bc4c5029d2d4050000444000175000017500000000002514540155742020543 0ustar jonaro00jonaro00xKOR0c04333.git/objects/da/0000775000175000017500000000000014540155775013615 5ustar jonaro00jonaro00.git/objects/da/d566fb5a225535ce6c3e17b7979bfc1b6ebd960000444000175000017500000000002514540155775021122 0ustar jonaro00jonaro00xKOR0c0224.git/objects/da/d2df48fa696d0e047fc2dbba1cbb76fc6c89260000444000175000017500000000024014540153343021314 0ustar jonaro00jonaro00xA E]s03H*qmm]D|Mg\mdu,1eM,>yV,Aw5Hy,H2&5{=Y p-my5ΏGBhMg2MZ D .git/objects/ae/0000775000175000017500000000000014540154203013577 5ustar jonaro00jonaro00.git/objects/ae/d450155b53e8b4d19bfd76d2cb7aac071618160000444000175000017500000000002514540154203020713 0ustar jonaro00jonaro00xKOR0c04673.git/objects/info/0000775000175000017500000000000014540152175014153 5ustar jonaro00jonaro00.git/objects/9a/0000775000175000017500000000000014540156000013520 5ustar jonaro00jonaro00.git/objects/9a/a875ec46684b2c34b750878e6cde40393505840000444000175000017500000000017614540156000020376 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(+Nُ.4Wꄐ`̼̼Ԣܤ"K#pt4//NLP S1*.git/objects/b2/0000775000175000017500000000000014540154755013531 5ustar jonaro00jonaro00.git/objects/b2/22a5fe664762e97b9f4640be9e7710f0db183a0000444000175000017500000000002514540154755020611 0ustar jonaro00jonaro00xKOR0c0035.git/objects/b2/53d8759927005e9a27084de67e6b5f8d13f84a0000444000175000017500000000024114540154040020454 0ustar jonaro00jonaro00x1n0 3܋$(Q;6unÕc2U8Vj(-H,&͒FjH3TESƊM`AjYcE߱lkƟ1o AN ѕa\_*`;;t/lJFG.git/objects/ef/0000775000175000017500000000000014540155774013622 5ustar jonaro00jonaro00.git/objects/ef/bad321e6a420b1c19bba20b8d505ee095ebbe60000444000175000017500000000024214540155774021210 0ustar jonaro00jonaro00xM 0F]%&"^eLڂ% oo>xǗe;cO8.g9I!̖* M^ 1YL%KJ>ZD/wC܎S~}mw 9FU '`hlUsNB,6fF'] {n1BR]hY hg]yߎF !+ _]=Uq$zk;/G(FA.git/objects/37/0000775000175000017500000000000014540152366013453 5ustar jonaro00jonaro00.git/objects/37/65846937ba545cd4825a48ad5d2f0742e297150000444000175000017500000000023714540152366020323 0ustar jonaro00jonaro00xK 0@]%ɀWN'`mq-[Oe;xB%Cbq@AEMXr@;b0bw]$tͯܮzuu33mu>)<־PD-.git/objects/79/0000775000175000017500000000000014540154724013461 5ustar jonaro00jonaro00.git/objects/79/47ba8e6add18e69cbdc8d87d1f2b45f50e51430000444000175000017500000000002414540154724021036 0ustar jonaro00jonaro00xKOR0e0621R.git/objects/79/924c07511bd72bbe8cff5704f983494b70aa4d0000444000175000017500000000024014540154554020611 0ustar jonaro00jonaro00xA0 9#M"!W㴕(B8{*~m3uYЪ(F1I>eV"!eӂuيmlP"}" Y.ƩhĄg7۴VG9Q|>o:Ֆu~nW=c8"!:k.git/objects/d5/0000775000175000017500000000000014540155444013532 5ustar jonaro00jonaro00.git/objects/d5/82cea6656cbca7fb2a5c738dd9a10994e467150000444000175000017500000000002514540153343020745 0ustar jonaro00jonaro00xKOR0c04730.git/objects/d5/fdeeaed9bcded67a0c62a004be80099406901e0000444000175000017500000000005414540155444021150 0ustar jonaro00jonaro00xKOR06`HW(H-J ޞ\A .git/objects/d5/6643f1680e19b83510774bff39393922b173920000444000175000017500000000017514540154450020161 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mg7= rҫ3Ź&knV01d$v_oks6WMv̼̼Ԣܤ"j'r&ST|R3(I..git/objects/00/0000775000175000017500000000000014540155471013441 5ustar jonaro00jonaro00.git/objects/00/4bdce313a59db1799b96f7ac9808b0785f6b0e0000444000175000017500000000002514540152646020671 0ustar jonaro00jonaro00xKOR0c062 .git/objects/00/9ee125445bb5559969a22bd87b1eef0a17eea50000444000175000017500000000005614540155471020662 0ustar jonaro00jonaro00x+)JMU06d01̼G{Nhnشw*)yQ.git/objects/c8/0000775000175000017500000000000014540155436013535 5ustar jonaro00jonaro00.git/objects/c8/e56f53611bb3037fb8563f2c4eb42abbc3ad1e0000444000175000017500000000005414540155436021061 0ustar jonaro00jonaro00x+)JMU0d01| &6Y[h,^b L.git/objects/61/0000775000175000017500000000000014540155634013451 5ustar jonaro00jonaro00.git/objects/61/5d0e053292383fb63cd16d038a4ea27cbb07230000444000175000017500000000002314540155634020470 0ustar jonaro00jonaro00xKOR0a00v.git/objects/61/d3b08db756641705f081d90a6bf39aaee2416b0000444000175000017500000000010314540152371020556 0ustar jonaro00jonaro00x+)JMU05`040031Q(K/)I-+MJ-bbw-FI~\- E.git/objects/61/cb7d6f0236722bfd593d75c3fe5ef2b2ebc1b30000444000175000017500000000012414540155004021061 0ustar jonaro00jonaro00x+)JMU03g040031QM+*f0u^7AR5!3o|赉('$2?Y1O[gg }%x.git/objects/aa/0000775000175000017500000000000014540152371013577 5ustar jonaro00jonaro00.git/objects/aa/71ba575ded612c4c0d22f178f0dfcd74b195160000444000175000017500000000024014540152371020775 0ustar jonaro00jonaro00xI0 9#l_V hd]= %P*8qђ*'qDcY>92۱M~imzYˎ7K~ܐ#F~w]Lw-'|E#.git/objects/47/0000775000175000017500000000000014540153343013450 5ustar jonaro00jonaro00.git/objects/47/ce73f193e5713b59e73349c013ea3479e48a5d0000444000175000017500000000023614540153343020457 0ustar jonaro00jonaro00x+)JMU041c040031QH/*Mgp$\?VNM @(59 @6 1[W>;wldwWsf]fڿYvyge䗔U&1\m:,5gZ1Ž7rNy. NB.git/objects/47/3ef9aeafd899b82c54424fbf597aac40f6ca7e0000444000175000017500000000002514540152367021204 0ustar jonaro00jonaro00xKOR0c060.git/objects/76/0000775000175000017500000000000014540155776013466 5ustar jonaro00jonaro00.git/objects/76/d9b65062dac14e8495a4bcd3f8d05c6a4a7c900000444000175000017500000000012314540154651020737 0ustar jonaro00jonaro00x+)JMU03g040031QM+*fЫ͓Ne{|3(.git/objects/ea/0000775000175000017500000000000014540155774013615 5ustar jonaro00jonaro00.git/objects/ea/1f76665d9146e2aa178e566292338884b4500d0000444000175000017500000000002414540155774020321 0ustar jonaro00jonaro00xKOR0e001n.git/objects/df/0000775000175000017500000000000014540156000013600 5ustar jonaro00jonaro00.git/objects/df/8f23399bea5f4ba117807ea0fe05e6d3d676c80000444000175000017500000000002514540155656021037 0ustar jonaro00jonaro00xKOR0c0416.git/objects/df/a51a1359a008148a5083a77361677b582152bb0000444000175000017500000000002514540156000020246 0ustar jonaro00jonaro00xKOR0c005 .git/objects/e5/0000775000175000017500000000000014540156000013520 5ustar jonaro00jonaro00.git/objects/e5/9248e9548ebe892bf31432363cce5f997fc0780000444000175000017500000000024214540156000020551 0ustar jonaro00jonaro00x1n0 @:EQA"Ӕm ErA<"1Z%GSNIx" <划ŒJݣv`C)~V֩rּR2KPbk! 5twGD}֏}{>+T8dfGtO,6X n8XC.git/objects/e5/274aee89be72a4628030412b5fc4b0968ca6b80000444000175000017500000000024014540155632020575 0ustar jonaro00jonaro00xK 0C)/-/Rz=Nḋ޾7NBaP>|g[oS*v=# ]9Qq,r[//"WD.git/objects/72/0000775000175000017500000000000014540155110013440 5ustar jonaro00jonaro00.git/objects/72/fe391b3bc360f5e75d1672e8303a51dc7544370000444000175000017500000000023714540155110020432 0ustar jonaro00jonaro00xK!PלF 1^O20o`jSW\}EA:1!9Ih]ge!#*h=;3$A#fbb®W],Í.҃TjB![ŒK|HIW}ZS.fpvGڼ%v6Z{NyBk?C.git/objects/06/0000775000175000017500000000000014540155742013450 5ustar jonaro00jonaro00.git/objects/06/c5787ee5ab904c97545540f5baacb1278381c30000444000175000017500000000012314540155742020521 0ustar jonaro00jonaro00x+)JMU03g040031QM+*fhr?+Ue*iE{KBqb^I"G[uv^{reѧR.git/objects/67/0000775000175000017500000000000014540155675013464 5ustar jonaro00jonaro00.git/objects/67/b0c4ebf20d325454de31f7077e60d95ab8d1520000444000175000017500000000017614540155634020600 0ustar jonaro00jonaro00x+)JMU044b040031QH/*Mgp$\?VNM @(!j;+\lT)@a/̼̼Ԣܤ"͖68N|಻#@s20.git/objects/67/63ad3a8284653d5adc2f27da4e9d88a7ef08950000444000175000017500000000026514540154110020700 0ustar jonaro00jonaro00x- 0=S̭'S<4mcLФ@MMofIx f؊<Ahi[qI2 %4H]c/~a;5O"_nn`R^LnL+Ҩĕ&:ݨh.a]iR(Ӝ{dg WI.git/objects/67/0b7c1efcbd9ed0cd50077be810bcb4247d6a320000444000175000017500000000012314540155675021063 0ustar jonaro00jonaro00x+)JMU03g040031QM+*fhr?+Ue*iE{KBqb^I"SԤ'/)m7̎.git/objects/b5/0000775000175000017500000000000014540154624013527 5ustar jonaro00jonaro00.git/objects/b5/1756308c1c4ed22eb832365d193c9d3216ef290000444000175000017500000000023614540154624020441 0ustar jonaro00jonaro00x+)JMU04d040031QH/*Mgp$\?VNʼny%z%% ]Vt*Inf{Vlb E Iާ, 1702942231 +0100 branch: Created from HEAD c5a4e090f7c3267e6d93a44157679e3f7522e856 4fc22bf70b6c74e0bc6b0808d954c8fa40e2016b elf-5813 1702942354 +0100 commit: rigged the lottery 4fc22bf70b6c74e0bc6b0808d954c8fa40e2016b a2e0eff0d84875674ace8d362e3bd02f2c246303 elf-2763 1702942421 +0100 commit: rigged the lottery a2e0eff0d84875674ace8d362e3bd02f2c246303 dad2df48fa696d0e047fc2dbba1cbb76fc6c8926 elf-13448 1702942435 +0100 commit: rigged the lottery dad2df48fa696d0e047fc2dbba1cbb76fc6c8926 d961ba116d7b9a30be2b0fbe1d70c01fab893c7e elf-13573 1702942740 +0100 commit: rigged the lottery d961ba116d7b9a30be2b0fbe1d70c01fab893c7e b253d8759927005e9a27084de67e6b5f8d13f84a elf-28336 1702942752 +0100 commit: rigged the lottery b253d8759927005e9a27084de67e6b5f8d13f84a 0947b709ab859a6ed910b6fda7f11a1ba1da4aed elf-22851 1702942777 +0100 commit: rigged the lottery 0947b709ab859a6ed910b6fda7f11a1ba1da4aed 4c2d1b22659bb06f58938ffceb927c725f749f52 elf-21488 1702942792 +0100 commit: rigged the lottery 4c2d1b22659bb06f58938ffceb927c725f749f52 cfdb5aafce7bfca77b8e3b65cf8abc4c77b5c10d elf-30288 1702942802 +0100 commit: rigged the lottery cfdb5aafce7bfca77b8e3b65cf8abc4c77b5c10d efb4359145abb063392d9617569fccd9069e8efa elf-16742 1702942815 +0100 commit: rigged the lottery efb4359145abb063392d9617569fccd9069e8efa fcb1577d1528830f94cf153047ecf5808058977a elf-21611 1702942824 +0100 commit: rigged the lottery fcb1577d1528830f94cf153047ecf5808058977a 92a8093e1e9d7fcf33ce634914dec6d3a9a78018 elf-21543 1702942832 +0100 commit: rigged the lottery 92a8093e1e9d7fcf33ce634914dec6d3a9a78018 844559986984cf5e80543e33183d6bb4b7746083 elf-1614 1702942851 +0100 commit: rigged the lottery 844559986984cf5e80543e33183d6bb4b7746083 771e298a373355da36f99e2b4111185757ede8ce elf-16500 1702942916 +0100 commit: rigged the lottery 771e298a373355da36f99e2b4111185757ede8ce f82b403911770247cf2fe29fc6cf022121026dc4 elf-13393 1702943016 +0100 commit: rigged the lottery f82b403911770247cf2fe29fc6cf022121026dc4 79924c07511bd72bbe8cff5704f983494b70aa4d elf-17538 1702943084 +0100 commit: rigged the lottery 79924c07511bd72bbe8cff5704f983494b70aa4d 860b530afef9a9da5e471d4f3b4429ea110a4492 elf-28066 1702943124 +0100 commit: rigged the lottery 860b530afef9a9da5e471d4f3b4429ea110a4492 bbc7aee9539fcd900b0f821722266be4b5ed2cac elf-22561 1702943145 +0100 commit: rigged the lottery .git/logs/refs/heads/master0000664000175000017500000000417714540152760016005 0ustar jonaro00jonaro000000000000000000000000000000000000000000 10ef7bd6694c68cebd5479ce228523b1d55ac6a8 elf-5279 1702941918 +0100 commit (initial): rigged the lottery 10ef7bd6694c68cebd5479ce228523b1d55ac6a8 fd8689f690f3911825ca5a12345c4793749e5803 elf-10258 1702941941 +0100 commit: rigged the lottery fd8689f690f3911825ca5a12345c4793749e5803 3765846937ba545cd4825a48ad5d2f0742e29715 elf-3919 1702941942 +0100 commit: rigged the lottery 3765846937ba545cd4825a48ad5d2f0742e29715 86669c4cadea548d6db57d2ff1b9409f63aaf2e0 elf-8560 1702941943 +0100 commit: rigged the lottery 86669c4cadea548d6db57d2ff1b9409f63aaf2e0 bd106caa5081fe547caeb3aec1722b8afb6b2df3 elf-16383 1702941945 +0100 commit: rigged the lottery bd106caa5081fe547caeb3aec1722b8afb6b2df3 78b766c7cf8d3ac4c857565ba20bbe4565f6b5fb elf-23551 1702941945 +0100 commit: rigged the lottery 78b766c7cf8d3ac4c857565ba20bbe4565f6b5fb aa71ba575ded612c4c0d22f178f0dfcd74b19516 elf-10430 1702941945 +0100 commit: rigged the lottery aa71ba575ded612c4c0d22f178f0dfcd74b19516 8324b3de22292967ac2cab4c2ef42d746c11a729 elf-30860 1702941946 +0100 commit: rigged the lottery 8324b3de22292967ac2cab4c2ef42d746c11a729 6feee6e17a18c7243acc0be89ff0e225b74128c3 elf-14539 1702941946 +0100 commit: rigged the lottery 6feee6e17a18c7243acc0be89ff0e225b74128c3 9c842d20a669f7f926cdbf4925a30e0e7171e62a elf-19417 1702942025 +0100 commit: rigged the lottery 9c842d20a669f7f926cdbf4925a30e0e7171e62a 52a74c087bb9029e0317dd655221bc41fb786318 elf-4704 1702942052 +0100 commit: rigged the lottery 52a74c087bb9029e0317dd655221bc41fb786318 2d5f9dc4894d7551267c42976de35b4f55e08a07 elf-8698 1702942118 +0100 commit: rigged the lottery 2d5f9dc4894d7551267c42976de35b4f55e08a07 2ddbfd0661dfa6cb60e5c72279545cdfae1bc534 elf-11062 1702942137 +0100 commit: rigged the lottery 2ddbfd0661dfa6cb60e5c72279545cdfae1bc534 c5a4e090f7c3267e6d93a44157679e3f7522e856 elf-26949 1702942192 +0100 commit: rigged the lottery .git/logs/refs/heads/christmas0000664000175000017500000001571214540156004016477 0ustar jonaro00jonaro000000000000000000000000000000000000000000 bbc7aee9539fcd900b0f821722266be4b5ed2cac elf-22561 1702943165 +0100 branch: Created from HEAD bbc7aee9539fcd900b0f821722266be4b5ed2cac f451f97b1405fd26d9df48b243b38eca4b813a0d elf-5077 1702943188 +0100 commit: rigged the lottery f451f97b1405fd26d9df48b243b38eca4b813a0d 5223c3abf21edf87e8e997d46a328211ad252728 elf-15664 1702943213 +0100 commit: rigged the lottery 5223c3abf21edf87e8e997d46a328211ad252728 14d003634bc5dcd7652fce07da39458ac626e65b elf-1229 1702943236 +0100 commit: rigged the lottery 14d003634bc5dcd7652fce07da39458ac626e65b 72fe391b3bc360f5e75d1672e8303a51dc754437 elf-6035 1702943304 +0100 commit: rigged the lottery 72fe391b3bc360f5e75d1672e8303a51dc754437 24a8170e38960715ae283e0fa8726e542d1b8c29 elf-24023 1702943376 +0100 commit: rigged the lottery 24a8170e38960715ae283e0fa8726e542d1b8c29 338a7b9a3a04dbaa95f20660c2321960fb42653d elf-18300 1702943518 +0100 commit: rigged the lottery 338a7b9a3a04dbaa95f20660c2321960fb42653d 6342c1dbdb560f0d5dcaac7566fca51454866664 elf-27221 1702943524 +0100 commit: rigged the lottery 6342c1dbdb560f0d5dcaac7566fca51454866664 bac2efaa26b701051a53061f85057715f2de9a70 elf-23021 1702943545 +0100 commit: rigged the lottery bac2efaa26b701051a53061f85057715f2de9a70 9895fa2f06898f754ecbbf5ec8982ac66123ad1d elf-8129 1702943641 +0100 commit: rigged the lottery 9895fa2f06898f754ecbbf5ec8982ac66123ad1d e5274aee89be72a4628030412b5fc4b0968ca6b8 elf-10242 1702943642 +0100 commit: rigged the lottery e5274aee89be72a4628030412b5fc4b0968ca6b8 31c4a5c3ec7a643b7da9ada809c3cc156ff64ef5 elf-25560 1702943642 +0100 commit: rigged the lottery 31c4a5c3ec7a643b7da9ada809c3cc156ff64ef5 d00b98c6324ba23deb3f54a39eac27d9ff94a164 elf-20056 1702943642 +0100 commit: rigged the lottery d00b98c6324ba23deb3f54a39eac27d9ff94a164 3b9e8b93565d6ed3c05412e5904c83d4e0a937ba elf-21537 1702943643 +0100 commit: rigged the lottery 3b9e8b93565d6ed3c05412e5904c83d4e0a937ba 2bd1d82fda426f88b8018522eda49ec4b831940e elf-13760 1702943643 +0100 commit: rigged the lottery 2bd1d82fda426f88b8018522eda49ec4b831940e 8ea21fa205d1a2ca7e8d6ccc9ee97092b637b04a elf-28177 1702943644 +0100 commit: rigged the lottery 8ea21fa205d1a2ca7e8d6ccc9ee97092b637b04a a1ef7fc2d3607b92118748a392595488ab13767d elf-14897 1702943644 +0100 commit: rigged the lottery a1ef7fc2d3607b92118748a392595488ab13767d d906bc1ea6df8c19568eae9a736d9f66230fc54d elf-6795 1702943645 +0100 commit: rigged the lottery d906bc1ea6df8c19568eae9a736d9f66230fc54d 9bd89379356c67fe2c7146b83d494beb55d509f3 elf-19136 1702943645 +0100 commit: rigged the lottery 9bd89379356c67fe2c7146b83d494beb55d509f3 09886dfbde41a59493a34cdef58f454f10df511b elf-9025 1702943645 +0100 commit: rigged the lottery 09886dfbde41a59493a34cdef58f454f10df511b 3e0130943a7a5ec24687dee571c35072703e3d94 elf-32104 1702943646 +0100 commit: rigged the lottery 3e0130943a7a5ec24687dee571c35072703e3d94 49484fce331af581ed7ba21d3b4b9e998beeb3de elf-19926 1702943646 +0100 commit: rigged the lottery 49484fce331af581ed7ba21d3b4b9e998beeb3de 5f03dde1ca98e487e438994f47426633e761894d elf-21823 1702943662 +0100 commit: rigged the lottery 5f03dde1ca98e487e438994f47426633e761894d ed8df7306cde977f6ea5b7587cfe1cf96b72577e elf-19911 1702943677 +0100 commit: rigged the lottery ed8df7306cde977f6ea5b7587cfe1cf96b72577e 9c85d46b8fb2b75b6220253b7d640e7f652a3568 elf-30444 1702943684 +0100 commit: rigged the lottery 9c85d46b8fb2b75b6220253b7d640e7f652a3568 0ffa3db5972f56afd7a5acda2a1a8b52cb1c5d4d elf-23873 1702943698 +0100 commit: rigged the lottery 0ffa3db5972f56afd7a5acda2a1a8b52cb1c5d4d 4bc7df1567207600ee0c14443ea0837b0dd32de5 elf-5015 1702943714 +0100 commit: rigged the lottery 4bc7df1567207600ee0c14443ea0837b0dd32de5 39b31f99e0ab2c5fa953fff7d7240a320a8b4212 elf-1892 1702943735 +0100 commit: rigged the lottery 39b31f99e0ab2c5fa953fff7d7240a320a8b4212 b1d7ab118a064a6ce1ffc9dcebb57dfdbe85eb93 elf-22851 1702943740 +0100 commit: rigged the lottery b1d7ab118a064a6ce1ffc9dcebb57dfdbe85eb93 efbad321e6a420b1c19bba20b8d505ee095ebbe6 elf-29897 1702943740 +0100 commit: rigged the lottery efbad321e6a420b1c19bba20b8d505ee095ebbe6 6cda5c22e0e7b0a85e95e8f76e4937751b74153e elf-7497 1702943740 +0100 commit: rigged the lottery 6cda5c22e0e7b0a85e95e8f76e4937751b74153e db8ac0d2fac01ae9a3cad5766712b177ba2468e0 elf-7397 1702943741 +0100 commit: rigged the lottery db8ac0d2fac01ae9a3cad5766712b177ba2468e0 0432dd30bfac19e6440a4f5486093a2e084ab511 elf-25793 1702943741 +0100 commit: rigged the lottery 0432dd30bfac19e6440a4f5486093a2e084ab511 7683bf1b8818b57c7781be9af9ba41e1952af9f5 elf-20187 1702943742 +0100 commit: rigged the lottery 7683bf1b8818b57c7781be9af9ba41e1952af9f5 562cb5b2d54b77331d4a4b917fa3a6383d964d7c elf-22217 1702943742 +0100 commit: rigged the lottery 562cb5b2d54b77331d4a4b917fa3a6383d964d7c 8ee612f5e655ab1cd83d366ef5a3b137b835de94 elf-4565 1702943742 +0100 commit: rigged the lottery 8ee612f5e655ab1cd83d366ef5a3b137b835de94 4e0891dc4cba473ef1c29a0c8d872395ff3682f0 elf-29493 1702943743 +0100 commit: rigged the lottery 4e0891dc4cba473ef1c29a0c8d872395ff3682f0 e59248e9548ebe892bf31432363cce5f997fc078 elf-6422 1702943744 +0100 commit: rigged the lottery e59248e9548ebe892bf31432363cce5f997fc078 dd381c2860680c4a3c93050e2879a5dbd3e1cd21 elf-6103 1702943744 +0100 commit: rigged the lottery dd381c2860680c4a3c93050e2879a5dbd3e1cd21 bfedf9c0cab6efd1fb3330c050b8aa4e85151bd3 elf-30626 1702943744 +0100 commit: rigged the lottery bfedf9c0cab6efd1fb3330c050b8aa4e85151bd3 d30cc3ba299e41d16a0594d096b1a8a5575a6eab elf-21605 1702943745 +0100 commit: rigged the lottery d30cc3ba299e41d16a0594d096b1a8a5575a6eab 26b542b4b6c91f3fae5b8cbc9c321ca944e1c848 elf-11697 1702943746 +0100 commit: rigged the lottery 26b542b4b6c91f3fae5b8cbc9c321ca944e1c848 151a1bac58bf1c942ae4e73c1df98c62e5a93252 elf-5629 1702943747 +0100 commit: rigged the lottery 151a1bac58bf1c942ae4e73c1df98c62e5a93252 1e21098cbe950994ed8a1604ea99b45ed6ca4231 elf-18924 1702943747 +0100 commit: rigged the lottery 1e21098cbe950994ed8a1604ea99b45ed6ca4231 22a7ba3eb776ff880f41d6fcf412aae27cdb107d elf-4252 1702943748 +0100 commit: rigged the lottery 22a7ba3eb776ff880f41d6fcf412aae27cdb107d c26d211127bedb654d71d964d7aa0a8be36499a8 elf-32323 1702943748 +0100 commit: rigged the lottery .git/logs/HEAD0000664000175000017500000002776414540156041013173 0ustar jonaro00jonaro000000000000000000000000000000000000000000 10ef7bd6694c68cebd5479ce228523b1d55ac6a8 elf-5279 1702941918 +0100 commit (initial): rigged the lottery 10ef7bd6694c68cebd5479ce228523b1d55ac6a8 fd8689f690f3911825ca5a12345c4793749e5803 elf-10258 1702941941 +0100 commit: rigged the lottery fd8689f690f3911825ca5a12345c4793749e5803 3765846937ba545cd4825a48ad5d2f0742e29715 elf-3919 1702941942 +0100 commit: rigged the lottery 3765846937ba545cd4825a48ad5d2f0742e29715 86669c4cadea548d6db57d2ff1b9409f63aaf2e0 elf-8560 1702941943 +0100 commit: rigged the lottery 86669c4cadea548d6db57d2ff1b9409f63aaf2e0 bd106caa5081fe547caeb3aec1722b8afb6b2df3 elf-16383 1702941945 +0100 commit: rigged the lottery bd106caa5081fe547caeb3aec1722b8afb6b2df3 78b766c7cf8d3ac4c857565ba20bbe4565f6b5fb elf-23551 1702941945 +0100 commit: rigged the lottery 78b766c7cf8d3ac4c857565ba20bbe4565f6b5fb aa71ba575ded612c4c0d22f178f0dfcd74b19516 elf-10430 1702941945 +0100 commit: rigged the lottery aa71ba575ded612c4c0d22f178f0dfcd74b19516 8324b3de22292967ac2cab4c2ef42d746c11a729 elf-30860 1702941946 +0100 commit: rigged the lottery 8324b3de22292967ac2cab4c2ef42d746c11a729 6feee6e17a18c7243acc0be89ff0e225b74128c3 elf-14539 1702941946 +0100 commit: rigged the lottery 6feee6e17a18c7243acc0be89ff0e225b74128c3 9c842d20a669f7f926cdbf4925a30e0e7171e62a elf-19417 1702942025 +0100 commit: rigged the lottery 9c842d20a669f7f926cdbf4925a30e0e7171e62a 52a74c087bb9029e0317dd655221bc41fb786318 elf-4704 1702942052 +0100 commit: rigged the lottery 52a74c087bb9029e0317dd655221bc41fb786318 2d5f9dc4894d7551267c42976de35b4f55e08a07 elf-8698 1702942118 +0100 commit: rigged the lottery 2d5f9dc4894d7551267c42976de35b4f55e08a07 2ddbfd0661dfa6cb60e5c72279545cdfae1bc534 elf-11062 1702942137 +0100 commit: rigged the lottery 2ddbfd0661dfa6cb60e5c72279545cdfae1bc534 c5a4e090f7c3267e6d93a44157679e3f7522e856 elf-26949 1702942192 +0100 commit: rigged the lottery c5a4e090f7c3267e6d93a44157679e3f7522e856 c5a4e090f7c3267e6d93a44157679e3f7522e856 elf-26949 1702942231 +0100 checkout: moving from master to recipes c5a4e090f7c3267e6d93a44157679e3f7522e856 4fc22bf70b6c74e0bc6b0808d954c8fa40e2016b elf-5813 1702942354 +0100 commit: rigged the lottery 4fc22bf70b6c74e0bc6b0808d954c8fa40e2016b a2e0eff0d84875674ace8d362e3bd02f2c246303 elf-2763 1702942421 +0100 commit: rigged the lottery a2e0eff0d84875674ace8d362e3bd02f2c246303 dad2df48fa696d0e047fc2dbba1cbb76fc6c8926 elf-13448 1702942435 +0100 commit: rigged the lottery dad2df48fa696d0e047fc2dbba1cbb76fc6c8926 d961ba116d7b9a30be2b0fbe1d70c01fab893c7e elf-13573 1702942740 +0100 commit: rigged the lottery d961ba116d7b9a30be2b0fbe1d70c01fab893c7e b253d8759927005e9a27084de67e6b5f8d13f84a elf-28336 1702942752 +0100 commit: rigged the lottery b253d8759927005e9a27084de67e6b5f8d13f84a 0947b709ab859a6ed910b6fda7f11a1ba1da4aed elf-22851 1702942777 +0100 commit: rigged the lottery 0947b709ab859a6ed910b6fda7f11a1ba1da4aed 4c2d1b22659bb06f58938ffceb927c725f749f52 elf-21488 1702942792 +0100 commit: rigged the lottery 4c2d1b22659bb06f58938ffceb927c725f749f52 cfdb5aafce7bfca77b8e3b65cf8abc4c77b5c10d elf-30288 1702942802 +0100 commit: rigged the lottery cfdb5aafce7bfca77b8e3b65cf8abc4c77b5c10d efb4359145abb063392d9617569fccd9069e8efa elf-16742 1702942815 +0100 commit: rigged the lottery efb4359145abb063392d9617569fccd9069e8efa fcb1577d1528830f94cf153047ecf5808058977a elf-21611 1702942824 +0100 commit: rigged the lottery fcb1577d1528830f94cf153047ecf5808058977a 92a8093e1e9d7fcf33ce634914dec6d3a9a78018 elf-21543 1702942832 +0100 commit: rigged the lottery 92a8093e1e9d7fcf33ce634914dec6d3a9a78018 844559986984cf5e80543e33183d6bb4b7746083 elf-1614 1702942851 +0100 commit: rigged the lottery 844559986984cf5e80543e33183d6bb4b7746083 771e298a373355da36f99e2b4111185757ede8ce elf-16500 1702942916 +0100 commit: rigged the lottery 771e298a373355da36f99e2b4111185757ede8ce f82b403911770247cf2fe29fc6cf022121026dc4 elf-13393 1702943016 +0100 commit: rigged the lottery f82b403911770247cf2fe29fc6cf022121026dc4 79924c07511bd72bbe8cff5704f983494b70aa4d elf-17538 1702943084 +0100 commit: rigged the lottery 79924c07511bd72bbe8cff5704f983494b70aa4d 860b530afef9a9da5e471d4f3b4429ea110a4492 elf-28066 1702943124 +0100 commit: rigged the lottery 860b530afef9a9da5e471d4f3b4429ea110a4492 bbc7aee9539fcd900b0f821722266be4b5ed2cac elf-22561 1702943145 +0100 commit: rigged the lottery bbc7aee9539fcd900b0f821722266be4b5ed2cac bbc7aee9539fcd900b0f821722266be4b5ed2cac elf-22561 1702943165 +0100 checkout: moving from recipes to christmas bbc7aee9539fcd900b0f821722266be4b5ed2cac f451f97b1405fd26d9df48b243b38eca4b813a0d elf-5077 1702943188 +0100 commit: rigged the lottery f451f97b1405fd26d9df48b243b38eca4b813a0d 5223c3abf21edf87e8e997d46a328211ad252728 elf-15664 1702943213 +0100 commit: rigged the lottery 5223c3abf21edf87e8e997d46a328211ad252728 14d003634bc5dcd7652fce07da39458ac626e65b elf-1229 1702943236 +0100 commit: rigged the lottery 14d003634bc5dcd7652fce07da39458ac626e65b 72fe391b3bc360f5e75d1672e8303a51dc754437 elf-6035 1702943304 +0100 commit: rigged the lottery 72fe391b3bc360f5e75d1672e8303a51dc754437 24a8170e38960715ae283e0fa8726e542d1b8c29 elf-24023 1702943376 +0100 commit: rigged the lottery 24a8170e38960715ae283e0fa8726e542d1b8c29 338a7b9a3a04dbaa95f20660c2321960fb42653d elf-18300 1702943518 +0100 commit: rigged the lottery 338a7b9a3a04dbaa95f20660c2321960fb42653d 6342c1dbdb560f0d5dcaac7566fca51454866664 elf-27221 1702943524 +0100 commit: rigged the lottery 6342c1dbdb560f0d5dcaac7566fca51454866664 bac2efaa26b701051a53061f85057715f2de9a70 elf-23021 1702943545 +0100 commit: rigged the lottery bac2efaa26b701051a53061f85057715f2de9a70 9895fa2f06898f754ecbbf5ec8982ac66123ad1d elf-8129 1702943641 +0100 commit: rigged the lottery 9895fa2f06898f754ecbbf5ec8982ac66123ad1d e5274aee89be72a4628030412b5fc4b0968ca6b8 elf-10242 1702943642 +0100 commit: rigged the lottery e5274aee89be72a4628030412b5fc4b0968ca6b8 31c4a5c3ec7a643b7da9ada809c3cc156ff64ef5 elf-25560 1702943642 +0100 commit: rigged the lottery 31c4a5c3ec7a643b7da9ada809c3cc156ff64ef5 d00b98c6324ba23deb3f54a39eac27d9ff94a164 elf-20056 1702943642 +0100 commit: rigged the lottery d00b98c6324ba23deb3f54a39eac27d9ff94a164 3b9e8b93565d6ed3c05412e5904c83d4e0a937ba elf-21537 1702943643 +0100 commit: rigged the lottery 3b9e8b93565d6ed3c05412e5904c83d4e0a937ba 2bd1d82fda426f88b8018522eda49ec4b831940e elf-13760 1702943643 +0100 commit: rigged the lottery 2bd1d82fda426f88b8018522eda49ec4b831940e 8ea21fa205d1a2ca7e8d6ccc9ee97092b637b04a elf-28177 1702943644 +0100 commit: rigged the lottery 8ea21fa205d1a2ca7e8d6ccc9ee97092b637b04a a1ef7fc2d3607b92118748a392595488ab13767d elf-14897 1702943644 +0100 commit: rigged the lottery a1ef7fc2d3607b92118748a392595488ab13767d d906bc1ea6df8c19568eae9a736d9f66230fc54d elf-6795 1702943645 +0100 commit: rigged the lottery d906bc1ea6df8c19568eae9a736d9f66230fc54d 9bd89379356c67fe2c7146b83d494beb55d509f3 elf-19136 1702943645 +0100 commit: rigged the lottery 9bd89379356c67fe2c7146b83d494beb55d509f3 09886dfbde41a59493a34cdef58f454f10df511b elf-9025 1702943645 +0100 commit: rigged the lottery 09886dfbde41a59493a34cdef58f454f10df511b 3e0130943a7a5ec24687dee571c35072703e3d94 elf-32104 1702943646 +0100 commit: rigged the lottery 3e0130943a7a5ec24687dee571c35072703e3d94 49484fce331af581ed7ba21d3b4b9e998beeb3de elf-19926 1702943646 +0100 commit: rigged the lottery 49484fce331af581ed7ba21d3b4b9e998beeb3de 5f03dde1ca98e487e438994f47426633e761894d elf-21823 1702943662 +0100 commit: rigged the lottery 5f03dde1ca98e487e438994f47426633e761894d ed8df7306cde977f6ea5b7587cfe1cf96b72577e elf-19911 1702943677 +0100 commit: rigged the lottery ed8df7306cde977f6ea5b7587cfe1cf96b72577e 9c85d46b8fb2b75b6220253b7d640e7f652a3568 elf-30444 1702943684 +0100 commit: rigged the lottery 9c85d46b8fb2b75b6220253b7d640e7f652a3568 0ffa3db5972f56afd7a5acda2a1a8b52cb1c5d4d elf-23873 1702943698 +0100 commit: rigged the lottery 0ffa3db5972f56afd7a5acda2a1a8b52cb1c5d4d 4bc7df1567207600ee0c14443ea0837b0dd32de5 elf-5015 1702943714 +0100 commit: rigged the lottery 4bc7df1567207600ee0c14443ea0837b0dd32de5 39b31f99e0ab2c5fa953fff7d7240a320a8b4212 elf-1892 1702943735 +0100 commit: rigged the lottery 39b31f99e0ab2c5fa953fff7d7240a320a8b4212 b1d7ab118a064a6ce1ffc9dcebb57dfdbe85eb93 elf-22851 1702943740 +0100 commit: rigged the lottery b1d7ab118a064a6ce1ffc9dcebb57dfdbe85eb93 efbad321e6a420b1c19bba20b8d505ee095ebbe6 elf-29897 1702943740 +0100 commit: rigged the lottery efbad321e6a420b1c19bba20b8d505ee095ebbe6 6cda5c22e0e7b0a85e95e8f76e4937751b74153e elf-7497 1702943740 +0100 commit: rigged the lottery 6cda5c22e0e7b0a85e95e8f76e4937751b74153e db8ac0d2fac01ae9a3cad5766712b177ba2468e0 elf-7397 1702943741 +0100 commit: rigged the lottery db8ac0d2fac01ae9a3cad5766712b177ba2468e0 0432dd30bfac19e6440a4f5486093a2e084ab511 elf-25793 1702943741 +0100 commit: rigged the lottery 0432dd30bfac19e6440a4f5486093a2e084ab511 7683bf1b8818b57c7781be9af9ba41e1952af9f5 elf-20187 1702943742 +0100 commit: rigged the lottery 7683bf1b8818b57c7781be9af9ba41e1952af9f5 562cb5b2d54b77331d4a4b917fa3a6383d964d7c elf-22217 1702943742 +0100 commit: rigged the lottery 562cb5b2d54b77331d4a4b917fa3a6383d964d7c 8ee612f5e655ab1cd83d366ef5a3b137b835de94 elf-4565 1702943742 +0100 commit: rigged the lottery 8ee612f5e655ab1cd83d366ef5a3b137b835de94 4e0891dc4cba473ef1c29a0c8d872395ff3682f0 elf-29493 1702943743 +0100 commit: rigged the lottery 4e0891dc4cba473ef1c29a0c8d872395ff3682f0 e59248e9548ebe892bf31432363cce5f997fc078 elf-6422 1702943744 +0100 commit: rigged the lottery e59248e9548ebe892bf31432363cce5f997fc078 dd381c2860680c4a3c93050e2879a5dbd3e1cd21 elf-6103 1702943744 +0100 commit: rigged the lottery dd381c2860680c4a3c93050e2879a5dbd3e1cd21 bfedf9c0cab6efd1fb3330c050b8aa4e85151bd3 elf-30626 1702943744 +0100 commit: rigged the lottery bfedf9c0cab6efd1fb3330c050b8aa4e85151bd3 d30cc3ba299e41d16a0594d096b1a8a5575a6eab elf-21605 1702943745 +0100 commit: rigged the lottery d30cc3ba299e41d16a0594d096b1a8a5575a6eab 26b542b4b6c91f3fae5b8cbc9c321ca944e1c848 elf-11697 1702943746 +0100 commit: rigged the lottery 26b542b4b6c91f3fae5b8cbc9c321ca944e1c848 151a1bac58bf1c942ae4e73c1df98c62e5a93252 elf-5629 1702943747 +0100 commit: rigged the lottery 151a1bac58bf1c942ae4e73c1df98c62e5a93252 1e21098cbe950994ed8a1604ea99b45ed6ca4231 elf-18924 1702943747 +0100 commit: rigged the lottery 1e21098cbe950994ed8a1604ea99b45ed6ca4231 22a7ba3eb776ff880f41d6fcf412aae27cdb107d elf-4252 1702943748 +0100 commit: rigged the lottery 22a7ba3eb776ff880f41d6fcf412aae27cdb107d c26d211127bedb654d71d964d7aa0a8be36499a8 elf-32323 1702943748 +0100 commit: rigged the lottery c26d211127bedb654d71d964d7aa0a8be36499a8 c5a4e090f7c3267e6d93a44157679e3f7522e856 elf-32323 1702943777 +0100 checkout: moving from christmas to master .git/COMMIT_EDITMSG0000664000175000017500000000002314540156004013644 0ustar jonaro00jonaro00rigged the lottery