fixing git problem

This commit is contained in:
langolierz
2018-04-25 00:07:42 +00:00
parent c800b5e7a4
commit 962d70fa31
386 changed files with 1179 additions and 385 deletions

1
.git-old/COMMIT_EDITMSG Normal file
View File

@@ -0,0 +1 @@
large refactor of data object and settings

3
.git-old/FETCH_HEAD Normal file
View File

@@ -0,0 +1,3 @@
3d0aebbe9ccf0e1d14f9a160d4da77547a0e5640 branch 'master' of https://github.com/langolierz/r_e_c_u_r
e8d6d11a7c447027b3099632858c5ee17323d07c not-for-merge branch 'beta' of https://github.com/langolierz/r_e_c_u_r
e9eb6c1c9e0d446445216a8c75e12b77fb2ac0ba not-for-merge branch 'improve-video-player' of https://github.com/langolierz/r_e_c_u_r

1
.git-old/HEAD Normal file
View File

@@ -0,0 +1 @@
ref: refs/heads/master

1
.git-old/ORIG_HEAD Normal file
View File

@@ -0,0 +1 @@
f14097ef6012760bfda159183469c5c5826ab9ce

11
.git-old/config Normal file
View File

@@ -0,0 +1,11 @@
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
url = https://github.com/langolierz/r_e_c_u_r.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master

1
.git-old/description Normal file
View File

@@ -0,0 +1 @@
Unnamed repository; edit this file 'description' to name the repository.

View File

@@ -0,0 +1,15 @@
#!/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+"$@"}
:

View File

@@ -0,0 +1,24 @@
#!/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
}

View File

@@ -0,0 +1,8 @@
#!/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

View File

@@ -0,0 +1,14 @@
#!/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+"$@"}
:

View File

@@ -0,0 +1,49 @@
#!/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=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi
# If you want to allow non-ASCII filenames set this variable to true.
allownonascii=$(git config --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 --

53
.git-old/hooks/pre-push.sample Executable file
View File

@@ -0,0 +1,53 @@
#!/bin/sh
# An example hook script to verify what is about to be pushed. Called by "git
# push" after it has checked the remote status, but before anything has been
# pushed. If this script exits with a non-zero status nothing will be pushed.
#
# This hook is called with the following parameters:
#
# $1 -- Name of the remote to which the push is being done
# $2 -- URL to which the push is being done
#
# If pushing without using a named remote those arguments will be equal.
#
# Information about the commits which are being pushed is supplied as lines to
# the standard input in the form:
#
# <local ref> <local sha1> <remote ref> <remote sha1>
#
# This sample shows how to prevent push of commits where the log message starts
# with "WIP" (work in progress).
remote="$1"
url="$2"
z40=0000000000000000000000000000000000000000
while read local_ref local_sha remote_ref remote_sha
do
if [ "$local_sha" = $z40 ]
then
# Handle delete
:
else
if [ "$remote_sha" = $z40 ]
then
# New branch, examine all commits
range="$local_sha"
else
# Update to existing branch, examine new commits
range="$remote_sha..$local_sha"
fi
# Check for WIP commit
commit=`git rev-list -n 1 --grep '^WIP' "$range"`
if [ -n "$commit" ]
then
echo >&2 "Found WIP commit in $local_ref, not pushing"
exit 1
fi
fi
done
exit 0

169
.git-old/hooks/pre-rebase.sample Executable file
View File

@@ -0,0 +1,169 @@
#!/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

View File

@@ -0,0 +1,24 @@
#!/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

View File

@@ -0,0 +1,36 @@
#!/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 comments out the
# "Conflicts:" part of a merge commit.
#
# 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.
case "$2,$3" in
merge,)
/usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;;
# ,|template,)
# /usr/bin/perl -i.bak -pe '
# print "\n" . `git diff --cached --name-status -r`
# if /^#/ && $first++ == 0' "$1" ;;
*) ;;
esac
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"

128
.git-old/hooks/update.sample Executable file
View File

@@ -0,0 +1,128 @@
#!/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 <ref> <oldrev> <newrev>)" >&2
exit 1
fi
if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then
echo "usage: $0 <ref> <oldrev> <newrev>" >&2
exit 1
fi
# --- Config
allowunannotated=$(git config --bool hooks.allowunannotated)
allowdeletebranch=$(git config --bool hooks.allowdeletebranch)
denycreatebranch=$(git config --bool hooks.denycreatebranch)
allowdeletetag=$(git config --bool hooks.allowdeletetag)
allowmodifytag=$(git config --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="0000000000000000000000000000000000000000"
if [ "$newrev" = "$zero" ]; then
newrev_type=delete
else
newrev_type=$(git cat-file -t $newrev)
fi
case "$refname","$newrev_type" in
refs/tags/*,commit)
# un-annotated tag
short_refname=${refname##refs/tags/}
if [ "$allowunannotated" != "true" ]; then
echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&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

BIN
.git-old/index Normal file

Binary file not shown.

6
.git-old/info/exclude Normal file
View File

@@ -0,0 +1,6 @@
# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~

BIN
.git-old/logs/HEAD Normal file

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
0000000000000000000000000000000000000000 342e850ca9c5d26e50ed5a02a526651654b0ec17 pi <pi@raspberrypi.(none)> 1520982973 +0000 clone: from https://github.com/langolierz/r_e_c_u_r.git

View File

@@ -0,0 +1 @@
0476e44bce8cdbf1a9708b5ff34135437da90481 e8d6d11a7c447027b3099632858c5ee17323d07c langolierz <langolierz@gmail.com> 1522795026 +0000 pull origin: fast-forward

View File

@@ -0,0 +1,16 @@
342e850ca9c5d26e50ed5a02a526651654b0ec17 84067c240ba672bc14f23cfd3d333609bd75bc3e langolierz <langolierz@gmail.com> 1520992811 +0000 pull: fast-forward
84067c240ba672bc14f23cfd3d333609bd75bc3e 1fb6ad1df4f05018454727db66ce71dfe2803841 langolierz <langolierz@gmail.com> 1520992845 +0000 update by push
1fb6ad1df4f05018454727db66ce71dfe2803841 cf80674faa427f9013fb3bbcaf4f8fb9f9285458 langolierz <langolierz@gmail.com> 1522795026 +0000 pull origin: fast-forward
cf80674faa427f9013fb3bbcaf4f8fb9f9285458 a81fb0691a98083231764b73619928eea1b0e140 langolierz <langolierz@gmail.com> 1522882707 +0000 update by push
a81fb0691a98083231764b73619928eea1b0e140 a28d4a2b3b6bf0003e3eefd47abdfbeffe4206eb langolierz <langolierz@gmail.com> 1523008654 +0000 pull origin: fast-forward
a28d4a2b3b6bf0003e3eefd47abdfbeffe4206eb c913ed4e22e8697cc37438f35527c5e55e601823 langolierz <langolierz@gmail.com> 1523008690 +0000 update by push
c913ed4e22e8697cc37438f35527c5e55e601823 c7ea947389fc03542be98c98f8ccd275f276489e langolierz <langolierz@gmail.com> 1524094361 +0000 pull origin: fast-forward
c7ea947389fc03542be98c98f8ccd275f276489e c66ce22a0d9a89d78246dc6045b9d3d038d35043 langolierz <langolierz@gmail.com> 1524094391 +0000 update by push
c66ce22a0d9a89d78246dc6045b9d3d038d35043 aaa0955c5cb1a98a75c119592e1e85f658aa89a4 langolierz <langolierz@gmail.com> 1524118351 +0000 update by push
aaa0955c5cb1a98a75c119592e1e85f658aa89a4 468219b4edc9bdd337f6d41263a71437ad6dcbc3 langolierz <langolierz@gmail.com> 1524183845 +0000 pull origin: fast-forward
468219b4edc9bdd337f6d41263a71437ad6dcbc3 1ff6d89b1f3ee993d5ada5d324ae2498c460e9c1 langolierz <langolierz@gmail.com> 1524183864 +0000 update by push
1ff6d89b1f3ee993d5ada5d324ae2498c460e9c1 d41647d41710015b22a2778225f8ecf23f27093f langolierz <langolierz@gmail.com> 1524185408 +0000 update by push
d41647d41710015b22a2778225f8ecf23f27093f 9bc4369cf2a39af07588cf9271a9be1916586c7d langolierz <langolierz@gmail.com> 1524196403 +0000 update by push
9bc4369cf2a39af07588cf9271a9be1916586c7d a7889b7cf411ca9690c278270196e39d0208e4c0 langolierz <langolierz@gmail.com> 1524199963 +0000 update by push
a7889b7cf411ca9690c278270196e39d0208e4c0 3d0aebbe9ccf0e1d14f9a160d4da77547a0e5640 langolierz <langolierz@gmail.com> 1524207314 +0000 pull origin: fast-forward
3d0aebbe9ccf0e1d14f9a160d4da77547a0e5640 e787b263fecd493ee73c86beb07768ac7962090d langolierz <langolierz@gmail.com> 1524207338 +0000 update by push

2
.git-old/logs/refs/stash Normal file
View File

@@ -0,0 +1,2 @@
0000000000000000000000000000000000000000 2c61e24a859d82c91a069a64dce79a5102acf299 langolierz <langolierz@gmail.com> 1520992852 +0000 WIP on master: 1fb6ad1 Merge branch 'master' of https://github.com/langolierz/r_e_c_u_r
2c61e24a859d82c91a069a64dce79a5102acf299 716939497baec281e1e63212b8b7baac08093527 langolierz <langolierz@gmail.com> 1522795033 +0000 WIP on master: 1fb6ad1 Merge branch 'master' of https://github.com/langolierz/r_e_c_u_r

View File

@@ -0,0 +1,2 @@
x<01><><EFBFBD>
<EFBFBD>0<10>=<3D>)<29>.H6<48><36> <09><>*<2A><><EFBFBD><07>Fb<<3C>ӛ<EFBFBD>w<EFBFBD>4|0|#9<><39><EFBFBD><EFBFBD>éU@<40>Q<EFBFBD>F$Z%/:<3A>u<EFBFBD><75><EFBFBD><EFBFBD>(<28>0<EFBFBD><30>2.zT`f<1B><>dD<64><44><12>H<EFBFBD>)j<><6A>S`<0E><><C3AF>;K<>7-<1F><><EFBFBD>}I<><49><17><>H<><48><EFBFBD>D8<44><16>h<EFBFBD>X<EFBFBD><58><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <0B>@<40> k<>+'-<2D><04>{.<2E> <0B>~PO

View File

@@ -0,0 +1,3 @@
x<01>̱<0E>0<10>ag<61><67><EFBFBD>k9<6B>1aq<61><71>w<EFBFBD><77>\<5C>&<26>#<23><><EFBFBD><EFBFBD><EFBFBD><EC868D><EFBFBD>?|.<2E>SgS<67>{pag<>/
<EFBFBD><EFBFBD><EFBFBD>xR:<3A>R@(/80<38>[<5B><EFBFBD>T_H<5F><48><EFBFBD><10>6D/B
2E<EFBFBD>AJa<EFBFBD>I<EFBFBD>yh<EFBFBD><EFBFBD><05>9C<39>c:=<3D>`c<><63><EFBFBD>O<EFBFBD>r]m<><6D><EFBFBD><EFBFBD><EFBFBD>,~נP

View File

@@ -0,0 +1 @@
x<01><><EFBFBD>j<EFBFBD> <14><>(<28>u<EFBFBD>O<12>f<EFBFBD>-{<7B><12>Md <0B>(j<>`<60><>g2 <0C>fG<66>Ja<4A>;r<><72><EFBFBD><EFBFBD><EFBFBD><EFBFBD>T@˂<><CB82>vo<76>p'<27><03> <09><>o<EFBFBD>i5<1C><><EFBFBD>kU<6B>c<EFBFBD>;Ѵ<1C><16><>

View File

@@ -0,0 +1,2 @@
x<01>R<EFBFBD>
<EFBFBD>0<10>SB<53>Mc<4D>C<EFBFBD><43><EFBFBD><15><><EFBFBD>Yl<59>IJ<49><4A>"<22><><EFBFBD>ЋP<y<>mfð;<3B><>:r:<16><>yR<79><52><EFBFBD> <19>^"D<><44><08><>C"<22>8<EFBFBD><38>2<EFBFBD><32>4<EFBFBD>K<EFBFBD><06><>aʃ4!7SIӆ<49>%jg<6A>7<><37><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>R<EFBFBD><52>.<2E><>C?{<7B><10><<3C><17><>P@<40>1<EFBFBD>0<EFBFBD><30><EFBFBD>O㋵o<1F>or<6F><72><EFBFBD>n<EFBFBD><04><>Ai<41>7g^<5E><>

View File

@@ -0,0 +1,3 @@
x+)JMU030f040031Q<31>KIMK,<2C>)<29>N<EFBFBD><4E>M,`<60>Գy<D4B3><79>s<EFBFBD><73>Mg<>"ZjXX`*<2A>RA*<2A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>~<7E><>N<EFBFBD><4E><EFBFBD><EFBFBD><EFBFBD>
NH՝<EFBFBD><EFBFBD>rut<75>u<EFBFBD><75>MaP-<2D><>g<EFBFBD><67><EFBFBD>A<EFBFBD><04>#<1E>ĪB<C4AA><42>@e敥<16>d<EFBFBD>'<27>d<EFBFBD><64><EFBFBD><EFBFBD>f<EFBFBD>d<EFBFBD><16><14><17><>5<EFBFBD><35>٣<EFBFBD>m<EFBFBD><6D><EFBFBD>R<EFBFBD><52><EFBFBD>g<EFBFBD><67><EFBFBD>7zs<07><><EFBFBD><EFBFBD>̲<EFBFBD><CCB2><EFBFBD>̔<EFBFBD><CC94><EFBFBD>̼<EFBFBD>R<EFBFBD><52><EFBFBD>[<5B>Zy<1E><>^<5E><><EFBFBD>gc<67>S<EFBFBD><53>n?S<>fsSS<53><53><EFBFBD>Ҽ<EFBFBD><D2BC><EFBFBD>"<22><> <0C><><EFBFBD>,<2C>JB<4A><42>h<><68>Կ?=<3D>:fm<66><6D>(<28>$<24>ħd<17>$VƧm(*f<>a<EFBFBD>ଙg<E0AC99><67><EFBFBD>x<EFBFBD><78>/%<1C><13>V<EFBFBD><56><EFBFBD><08>h<EFBFBD>'<27>K<EFBFBD><4B><EFBFBD>K<EFBFBD><4B><EFBFBD>'%<25><<3C><><EFBFBD>̹<EFBFBD>
ԽN<EFBFBD>Z<EFBFBD>q<EFBFBD>s<EFBFBD>'E<>P<13><><EFBFBD>Ԃ<EFBFBD>"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>T<EFBFBD>j<EFBFBD>jy<79>Ca<43><61><EFBFBD><EFBFBD><EFBFBD>L<EFBFBD>s<EFBFBD>B<EFBFBD><42>!N<><4E><EFBFBD>!r<>><3E>~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͬ<7F>z^,T<>S

View File

@@ -0,0 +1,2 @@
x<01>O9n<39>0 L<>W<EFBFBD><57>"@L<>ZI^A><3E>7$%<1F><><EFBFBD>Vn<56><6E>8E<38>}X<><10><><EFBFBD><EFBFBD><EFBFBD>\
ax<EFBFBD>%g<13><><EFBFBD><EFBFBD>4<04>,+ރgp(.RtQ:<3A>͝KުI !*<16>[<07><>,'

View File

@@ -0,0 +1,3 @@
x<01>O<EFBFBD>n<EFBFBD>0<10>쯸-C<><43>N'<27>rP<14><>~<7E><><EFBFBD><EFBFBD>6<EFBFBD>G<EFBFBD><47>K<EFBFBD>><3E>Pd/'<27> <20>ȸ<EFBFBD><C8B8>\<5C>U<EFBFBD>V<EFBFBD><08><>b<1D>l<EFBFBD>H<19><><EFBFBD><EFBFBD>H<EFBFBD>M<><05><><EFBFBD><17>* [T*"<22>3z<33>Ltl<><6C>1<EFBFBD><31>NkL<6B> ~m<><6D>>hI<68>)1w<31>&Mʲ<4D>Hs<48><73>M1Dn<44>Q<EFBFBD><51><EFBFBD><EFBFBD><EFBFBD>q_f)<0F>|<7C><>q<EFBFBD><71><EFBFBD><11><> <0B>(M<><4D>6<EFBFBD><36>'<27>S='U<>W<EFBFBD><57><EFBFBD>2
<EFBFBD><EFBFBD><EFBFBD>8<EFBFBD>e<EFBFBD><EFBFBD><EFBFBD><EFBFBD><05> S<><53><EFBFBD><EFBFBD>mǹNG<4E><47>ݾ
<EFBFBD>e<EFBFBD>!<0E>P<EFBFBD>' <20>g<EFBFBD>

View File

@@ -0,0 +1,3 @@
x<01>Pˊ<50>0۳<>b<EFBFBD> <0B><>(ee♤'<0E><><EFBFBD>~<7E><><EFBFBD>{uBBB<42><42>{<19><><EFBFBD><1A>(F/
M<>W<EFBFBD><16>LJ(<28><>%8
<EFBFBD><EFBFBD>.)<29>qb<71>c@<40>><3E><>()aL<14><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>-<2D> I<13>8i<38><69>Ǹ<EFBFBD><15><><EFBFBD><EFBFBD><EFBFBD><05>7<EFBFBD><37>v,<2C>'<27><>

View File

@@ -0,0 +1 @@
x<01><>1 <0B>0`J<7F><4A>[<5B><><EFBFBD>dpq<70><71><EFBFBD>iL <20><><EFBFBD><E6AA88>ێ݊n<1E>{C<>A<EFBFBD><41><EFBFBD><EFBFBD>}<7D>2{JN<>c<><18>X<EFBFBD><04><> <09>%$<15><>B<EFBFBD>\<5C><>`{<7B>I<EFBFBD>+<2B><><EFBFBD><EFBFBD>P<EFBFBD>uic<1E>gdg1<67>tU<>

View File

@@ -0,0 +1,3 @@
x<01><>_o<5F>0<14><>><05>3M<>'do<64><6F>M<EFBFBD><4D>nj<6E>M<EFBFBD>T]9斠<18><>&YU<59><55>אvZ6ސ<36><DE90><EFBFBD>{<7B>=x<><78>:<1C>Ɠw<C693>Ah¤0Jr`*R <0C><><EFBFBD><EFBFBD>1<18><><EFBFBD>ŧ<EFBFBD><C5A7><EFBFBD><EFBFBD>}<7D>M40FsT(/6#w<><77>)<29>b<EFBFBD>0LrY*(a<><61><EFBFBD><EFBFBD><EFBFBD><EFBFBD><70>!
<EFBFBD><><E1B4A1><EFBFBD><7F>ۯ?<3F><>ۺ<EFBFBD>\<5C><10>J<EFBFBD>5*<2A>ȑ<EFBFBD>L
( rU^|<7C><><EFBFBD>:Ո[XS<58><53>D(8}@u<TA<54><41><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>eK<65>֙L<D699><4C><EFBFBD><EFBFBD><EFBFBD><EFBFBD>H;ip<69><70>D<EFBFBD><44> q<>R<EFBFBD><52>J<EFBFBD><5F>WxqJ!

View File

@@ -0,0 +1,2 @@
xK<><4B>OR07<30>`<60><>V<EFBFBD><56>ON,<2C><><EFBFBD>S<EFBFBD>RP<52><50>MM<4D>L<EFBFBD>/<2F><><0F><><EFBFBD>/<2F>LI<4C>/<2F>/ɏ/<2F>I<EFBFBD><49><EFBFBD><EFBFBD><EFBFBD>K<EFBFBD>/.<2E><><EFBFBD><EFBFBD><EFBFBD>K<EFBFBD><4B>-0Q<30>QPJ<50>Kj<>52<>K<12>J`<60><>Լ<EFBFBD><D4BC> <20><><EFBFBD>D<EFBFBD><44><EFBFBD>(<28><><EFBFBD><EFBFBD>
<EFBFBD>ӜZTw<54>LF1<0E><1A><>`Ka<4B>*<2A><>1<1E><10><>>b!<21>O

View File

@@ -0,0 +1,2 @@
x<01><><EFBFBD>j<EFBFBD>0<10>S<EFBFBD>)<29><>"<10>ײ<EFBFBD>#<23>MH<><48><EFBFBD>J+<2B>`[<5B>Nn<4E><6E>q<08><><EFBFBD>j<EFBFBD><6A>]<5D> y]<5D>
ڊ<EFBFBD>Z<EFBFBD>!<21>Tl<13><><EFBFBD><EFBFBD>D<EFBFBD>L<EFBFBD>$YK<59>l2<6C>9<19><>6W,<2C>U<EFBFBD><55>:<3A>2&<26><><15>7<EFBFBD>8<EFBFBD>"u]`wȬz<C8AC>{#<23>ykD<6B>Xw(%<25>.:O]<5D><>)<29>{&<26><>(R

Some files were not shown because too many files have changed in this diff Show More