diff --git a/poker/Booting b/poker/Booting deleted file mode 100644 index e69de29..0000000 diff --git a/poker/description b/poker/description deleted file mode 100644 index 498b267..0000000 --- a/poker/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/poker/hooks/applypatch-msg.sample b/poker/hooks/applypatch-msg.sample deleted file mode 100755 index a5d7b84..0000000 --- a/poker/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/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+"$@"} -: diff --git a/poker/hooks/commit-msg.sample b/poker/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/poker/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/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 -} diff --git a/poker/hooks/post-update.sample b/poker/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/poker/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/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 diff --git a/poker/hooks/pre-applypatch.sample b/poker/hooks/pre-applypatch.sample deleted file mode 100755 index 4142082..0000000 --- a/poker/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/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+"$@"} -: diff --git a/poker/hooks/pre-commit.sample b/poker/hooks/pre-commit.sample deleted file mode 100755 index 68d62d5..0000000 --- a/poker/hooks/pre-commit.sample +++ /dev/null @@ -1,49 +0,0 @@ -#!/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 -- diff --git a/poker/hooks/pre-push.sample b/poker/hooks/pre-push.sample deleted file mode 100755 index 6187dbf..0000000 --- a/poker/hooks/pre-push.sample +++ /dev/null @@ -1,53 +0,0 @@ -#!/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: -# -# -# -# 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 diff --git a/poker/hooks/pre-rebase.sample b/poker/hooks/pre-rebase.sample deleted file mode 100755 index 9773ed4..0000000 --- a/poker/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/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 - -exit 0 - -################################################################ - -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". diff --git a/poker/hooks/prepare-commit-msg.sample b/poker/hooks/prepare-commit-msg.sample deleted file mode 100755 index f093a02..0000000 --- a/poker/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/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" diff --git a/poker/hooks/update.sample b/poker/hooks/update.sample deleted file mode 100755 index 80ba941..0000000 --- a/poker/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/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 --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 diff --git a/poker/info/exclude b/poker/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/poker/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# 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] -# *~ diff --git a/poker/logs/HEAD b/poker/logs/HEAD deleted file mode 100644 index 073739f..0000000 --- a/poker/logs/HEAD +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 9d6165ee9739fc760f9cc1e5d6fd9440b7b1dc29 onice <4296411@qq.com> 1475565280 +0800 commit (initial): new master diff --git a/poker/logs/refs/heads/master b/poker/logs/refs/heads/master deleted file mode 100644 index 073739f..0000000 --- a/poker/logs/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 9d6165ee9739fc760f9cc1e5d6fd9440b7b1dc29 onice <4296411@qq.com> 1475565280 +0800 commit (initial): new master diff --git a/poker/logs/refs/remotes/origin/master b/poker/logs/refs/remotes/origin/master deleted file mode 100644 index e9cbb4c..0000000 --- a/poker/logs/refs/remotes/origin/master +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 9d6165ee9739fc760f9cc1e5d6fd9440b7b1dc29 onice <4296411@qq.com> 1475565285 +0800 update by push diff --git a/poker/objects/05/3f5b66d7f1746078024c7a74c637d4773135d0 b/poker/objects/05/3f5b66d7f1746078024c7a74c637d4773135d0 deleted file mode 100644 index d4e1ebc..0000000 Binary files a/poker/objects/05/3f5b66d7f1746078024c7a74c637d4773135d0 and /dev/null differ diff --git a/poker/objects/06/1abc587dcac4cdb1d62a890e4fd4bb20b8cb61 b/poker/objects/06/1abc587dcac4cdb1d62a890e4fd4bb20b8cb61 deleted file mode 100644 index 71e7936..0000000 Binary files a/poker/objects/06/1abc587dcac4cdb1d62a890e4fd4bb20b8cb61 and /dev/null differ diff --git a/poker/objects/06/53957166e8182880bb87b56e36c257c988dd92 b/poker/objects/06/53957166e8182880bb87b56e36c257c988dd92 deleted file mode 100644 index f28f419..0000000 --- a/poker/objects/06/53957166e8182880bb87b56e36c257c988dd92 +++ /dev/null @@ -1,3 +0,0 @@ -xmQ�j�0����%�cZB1M�Z��!���x����4��~}FRH�!����̹�.����������!3c�d� {ʨ���� -��%��� GOb�'g���f���"ᨠr�.��{��.u�NXÂy��̪3u_P Q�d&�_��l�[�1E��=�D�fz�l�Tv�F/?V�l畷-Kvۛ���P��Op5�s��[�g˧��F��WR6�R�.I�;g�yy��Jp���s��MGV�UI��+8Y�QՓ��*�; �*g�s -�3�Lvg����>��w=�n=��HS�8��-��GS�L5�R �����b �n��<�������,uq��c)7�Cos̳�� ��J�.���Dt�yi�� \ No newline at end of file diff --git a/poker/objects/07/d89d0b7e50929dea0dcf7e7354358c1133be86 b/poker/objects/07/d89d0b7e50929dea0dcf7e7354358c1133be86 deleted file mode 100644 index e790bbc..0000000 Binary files a/poker/objects/07/d89d0b7e50929dea0dcf7e7354358c1133be86 and /dev/null differ diff --git a/poker/objects/0d/ffd8c4211cc5e815893b0ce7bea73d09bac510 b/poker/objects/0d/ffd8c4211cc5e815893b0ce7bea73d09bac510 deleted file mode 100644 index 6466656..0000000 Binary files a/poker/objects/0d/ffd8c4211cc5e815893b0ce7bea73d09bac510 and /dev/null differ diff --git a/poker/objects/12/1d16b646871525250c631d5e4563dd962254b6 b/poker/objects/12/1d16b646871525250c631d5e4563dd962254b6 deleted file mode 100644 index e5db2db..0000000 Binary files a/poker/objects/12/1d16b646871525250c631d5e4563dd962254b6 and /dev/null differ diff --git a/poker/objects/1c/1a37ca8df8dafd501066d54086ca5693f4b204 b/poker/objects/1c/1a37ca8df8dafd501066d54086ca5693f4b204 deleted file mode 100644 index 62d0158..0000000 Binary files a/poker/objects/1c/1a37ca8df8dafd501066d54086ca5693f4b204 and /dev/null differ diff --git a/poker/objects/1d/26b74187da99e3f39bb7f04307ab9e656f89fb b/poker/objects/1d/26b74187da99e3f39bb7f04307ab9e656f89fb deleted file mode 100644 index 8f8abd6..0000000 Binary files a/poker/objects/1d/26b74187da99e3f39bb7f04307ab9e656f89fb and /dev/null differ diff --git a/poker/objects/20/178990885992c1aa6890b419175a057d5cc95d b/poker/objects/20/178990885992c1aa6890b419175a057d5cc95d deleted file mode 100644 index f9d7a64..0000000 Binary files a/poker/objects/20/178990885992c1aa6890b419175a057d5cc95d and /dev/null differ diff --git a/poker/objects/23/a3236904020a96c2a827875e3e065213747cda b/poker/objects/23/a3236904020a96c2a827875e3e065213747cda deleted file mode 100644 index 6642379..0000000 Binary files a/poker/objects/23/a3236904020a96c2a827875e3e065213747cda and /dev/null differ diff --git a/poker/objects/24/e0215a0c4a6907b815ae50fb2a5a6e30ac06f3 b/poker/objects/24/e0215a0c4a6907b815ae50fb2a5a6e30ac06f3 deleted file mode 100644 index d1254c9..0000000 Binary files a/poker/objects/24/e0215a0c4a6907b815ae50fb2a5a6e30ac06f3 and /dev/null differ diff --git a/poker/objects/27/7195dab4f48b1b1fa66cf5742152a3cdeac742 b/poker/objects/27/7195dab4f48b1b1fa66cf5742152a3cdeac742 deleted file mode 100644 index 465baf7..0000000 Binary files a/poker/objects/27/7195dab4f48b1b1fa66cf5742152a3cdeac742 and /dev/null differ diff --git a/poker/objects/29/a422c19251aeaeb907175e9b3219a9bed6c616 b/poker/objects/29/a422c19251aeaeb907175e9b3219a9bed6c616 deleted file mode 100644 index 69bb4a0..0000000 Binary files a/poker/objects/29/a422c19251aeaeb907175e9b3219a9bed6c616 and /dev/null differ diff --git a/poker/objects/2d/4964aa4d4f5d8c7228518ce72ef6a63f820c6d b/poker/objects/2d/4964aa4d4f5d8c7228518ce72ef6a63f820c6d deleted file mode 100644 index 8cb8e17..0000000 Binary files a/poker/objects/2d/4964aa4d4f5d8c7228518ce72ef6a63f820c6d and /dev/null differ diff --git a/poker/objects/32/dcbbff7a92072ed01df79eebc81a6cc2508345 b/poker/objects/32/dcbbff7a92072ed01df79eebc81a6cc2508345 deleted file mode 100644 index 2c536d8..0000000 Binary files a/poker/objects/32/dcbbff7a92072ed01df79eebc81a6cc2508345 and /dev/null differ diff --git a/poker/objects/33/725e95fd22b9053f75ef6626aa1af781ebe947 b/poker/objects/33/725e95fd22b9053f75ef6626aa1af781ebe947 deleted file mode 100644 index a67909f..0000000 Binary files a/poker/objects/33/725e95fd22b9053f75ef6626aa1af781ebe947 and /dev/null differ diff --git a/poker/objects/3a/683869f1bb0c1634de75700c316b3b36570dbd b/poker/objects/3a/683869f1bb0c1634de75700c316b3b36570dbd deleted file mode 100644 index b185e4b..0000000 Binary files a/poker/objects/3a/683869f1bb0c1634de75700c316b3b36570dbd and /dev/null differ diff --git a/poker/objects/3c/9c7c01f30b90e009de2d15952ae83230f8e37a b/poker/objects/3c/9c7c01f30b90e009de2d15952ae83230f8e37a deleted file mode 100644 index 7b74d21..0000000 Binary files a/poker/objects/3c/9c7c01f30b90e009de2d15952ae83230f8e37a and /dev/null differ diff --git a/poker/objects/3f/66539d543160ccd876baca668bd7bced74562b b/poker/objects/3f/66539d543160ccd876baca668bd7bced74562b deleted file mode 100644 index 48ed517..0000000 --- a/poker/objects/3f/66539d543160ccd876baca668bd7bced74562b +++ /dev/null @@ -1,3 +0,0 @@ -x�U=o�0�_�J��n��h t �,���XD(�@Rv��{�I�i>���t�{|���Xnp���Շ_�X�T�h�V��t<��֩-Z>���3�L��x4�S�i��Zr�{hG��ƽq>�%���Yw$��L������Z�xr�_ �v -ؚ��ԩ�'�˓T��'h5�SBj�9D - ś� �!ǧ�2%V[��{Z����j���Q�����h=Y��ԩXS@5:n'��6m�/רD2ey���>GT/����M�uC0Æ�$u8NNw�����ikQ)ݲ4��k��J�Ss��ר���yQ[g�p֫����� 6����<���d����PS�^�e\��"K��rY���R�<&�70�� ���Fxd'�H���؅*K�#�Ǫ�뵥C��6��y:���z �m��T�#HB(>)��馾��\��gws>j�dOC�����g�%G�g��ũgG2���G�'�ψ���u����<�!��y<��X��� ����~쪑>��K�8�X�����3�1`�z��q�W�S�F1���G��e�Vm/9Gm,�݈��c��Ve�V�~��u}�7�ۼ��� ������^���GKה����������R����= \ No newline at end of file diff --git a/poker/objects/41/faa8d40365e1bf69899d08d3efeeb28553b0d8 b/poker/objects/41/faa8d40365e1bf69899d08d3efeeb28553b0d8 deleted file mode 100644 index c9a9744..0000000 Binary files a/poker/objects/41/faa8d40365e1bf69899d08d3efeeb28553b0d8 and /dev/null differ diff --git a/poker/objects/4a/994e1e7bb7ce28dcec98bad48b9a891d7dec51 b/poker/objects/4a/994e1e7bb7ce28dcec98bad48b9a891d7dec51 deleted file mode 100644 index 0d6b209..0000000 --- a/poker/objects/4a/994e1e7bb7ce28dcec98bad48b9a891d7dec51 +++ /dev/null @@ -1,4 +0,0 @@ -xM�� -�@���>�< A��.�]#b�YXwdfU|��:t���UQ*N�]�+�F%d��e��� -#�H1w���^ rdž��\Q��I -�n�(g��W�S&�s�a�QѦ�J �J��Q����9������%���v_����/x�o6�6�� j�H� \ No newline at end of file diff --git a/poker/objects/4e/db1e857ee6c203463c7fa0387aae32496ec93d b/poker/objects/4e/db1e857ee6c203463c7fa0387aae32496ec93d deleted file mode 100644 index 98580d5..0000000 Binary files a/poker/objects/4e/db1e857ee6c203463c7fa0387aae32496ec93d and /dev/null differ diff --git a/poker/objects/50/41d5ef62265e58b12edd0e920effe5627a7cfc b/poker/objects/50/41d5ef62265e58b12edd0e920effe5627a7cfc deleted file mode 100644 index 89adabc..0000000 Binary files a/poker/objects/50/41d5ef62265e58b12edd0e920effe5627a7cfc and /dev/null differ diff --git a/poker/objects/55/d36c9605bfb2ff4f3fad0b7e6dbb554bc776b3 b/poker/objects/55/d36c9605bfb2ff4f3fad0b7e6dbb554bc776b3 deleted file mode 100644 index 8b06dfd..0000000 Binary files a/poker/objects/55/d36c9605bfb2ff4f3fad0b7e6dbb554bc776b3 and /dev/null differ diff --git a/poker/objects/59/385cdf379bd06a8d2326dcd4de6d5cd5d3f5b0 b/poker/objects/59/385cdf379bd06a8d2326dcd4de6d5cd5d3f5b0 deleted file mode 100644 index c8fe4ca..0000000 --- a/poker/objects/59/385cdf379bd06a8d2326dcd4de6d5cd5d3f5b0 +++ /dev/null @@ -1 +0,0 @@ -xu��N�0���?��-e���#�1EvrINult�4�Zxv΍(0�X��������t|�ᅠ�r��f'k�Jr&�2R,�R���<���@uU��f��E���w�)�k-�Ʊ%��I؋&����7ܬ�9�Kq�����A��7��$jm�W�A�;�i�HR��&�k�HW�F��'���ĺ6��z�������9���t/�Y�"l��y�û$h�ZM<��m�K*��hIrB�:����7���>V_�ѓS \ No newline at end of file diff --git a/poker/objects/5b/c2a619e83ea182b17e2507c5e0f2f07f7cf18c b/poker/objects/5b/c2a619e83ea182b17e2507c5e0f2f07f7cf18c deleted file mode 100644 index 62244ba..0000000 Binary files a/poker/objects/5b/c2a619e83ea182b17e2507c5e0f2f07f7cf18c and /dev/null differ diff --git a/poker/objects/5e/5f0c1fac0bcde58936530ada4fd08abcaf5a64 b/poker/objects/5e/5f0c1fac0bcde58936530ada4fd08abcaf5a64 deleted file mode 100644 index e6d8ac7..0000000 Binary files a/poker/objects/5e/5f0c1fac0bcde58936530ada4fd08abcaf5a64 and /dev/null differ diff --git a/poker/objects/5f/11234777f2c1bbc43b5be55f3d61b47ab446eb b/poker/objects/5f/11234777f2c1bbc43b5be55f3d61b47ab446eb deleted file mode 100644 index 2f58d65..0000000 Binary files a/poker/objects/5f/11234777f2c1bbc43b5be55f3d61b47ab446eb and /dev/null differ diff --git a/poker/objects/60/7d77e2eb3f549ed2011bd2f64685aea444b43e b/poker/objects/60/7d77e2eb3f549ed2011bd2f64685aea444b43e deleted file mode 100644 index 1c4a45c..0000000 Binary files a/poker/objects/60/7d77e2eb3f549ed2011bd2f64685aea444b43e and /dev/null differ diff --git a/poker/objects/61/5fb80266b7107675ef7d775853e81ec606e82a b/poker/objects/61/5fb80266b7107675ef7d775853e81ec606e82a deleted file mode 100644 index c966831..0000000 Binary files a/poker/objects/61/5fb80266b7107675ef7d775853e81ec606e82a and /dev/null differ diff --git a/poker/objects/62/191840a3898b032f6ad501c3509e8b27df14e9 b/poker/objects/62/191840a3898b032f6ad501c3509e8b27df14e9 deleted file mode 100644 index d5303fe..0000000 Binary files a/poker/objects/62/191840a3898b032f6ad501c3509e8b27df14e9 and /dev/null differ diff --git a/poker/objects/66/e9889e8b4aeea1af13e2396fb70594232a2ae3 b/poker/objects/66/e9889e8b4aeea1af13e2396fb70594232a2ae3 deleted file mode 100644 index d4ea6b5..0000000 Binary files a/poker/objects/66/e9889e8b4aeea1af13e2396fb70594232a2ae3 and /dev/null differ diff --git a/poker/objects/6a/502e997fe5a1e212bd42f75f312d70c56d6a0a b/poker/objects/6a/502e997fe5a1e212bd42f75f312d70c56d6a0a deleted file mode 100644 index 8795bbd..0000000 --- a/poker/objects/6a/502e997fe5a1e212bd42f75f312d70c56d6a0a +++ /dev/null @@ -1,2 +0,0 @@ -xU�AN�0 EY�_��H�6 �,�4@N�AiRWL7��İ�b��'�ِ,�N����D��l��ajz/�l�6����6p1��)��ם�]�Sf�M��w�m�T�ꀗK���zɅC�'��)/� -z��I��.��;/)�����U�@Y��?l�SN�lX�EQ ��棰���Q�=���Ц��u}յ���Kf�e ��YAl��}��5�J�a���SS�f��Hd`8�h��۫-I�Ra�;k�������?W�pcE! �~�OJt�w�mt�VzVFƩ���? \ No newline at end of file diff --git a/poker/objects/72/0da32755eeba453a49c8479045a23b13da2432 b/poker/objects/72/0da32755eeba453a49c8479045a23b13da2432 deleted file mode 100644 index 451a5d7..0000000 --- a/poker/objects/72/0da32755eeba453a49c8479045a23b13da2432 +++ /dev/null @@ -1 +0,0 @@ -x+)JMU06c040031Q(NMM)�+Jb�-�Z����M���uF�y'm7�� \ No newline at end of file diff --git a/poker/objects/79/a16de0eec25b4f49633209fb36ff38850e8d49 b/poker/objects/79/a16de0eec25b4f49633209fb36ff38850e8d49 deleted file mode 100644 index 011bfe7..0000000 Binary files a/poker/objects/79/a16de0eec25b4f49633209fb36ff38850e8d49 and /dev/null differ diff --git a/poker/objects/7a/06a89f0f9df784b2087d18b248f8d8c770eb72 b/poker/objects/7a/06a89f0f9df784b2087d18b248f8d8c770eb72 deleted file mode 100644 index 8dc6a47..0000000 --- a/poker/objects/7a/06a89f0f9df784b2087d18b248f8d8c770eb72 +++ /dev/null @@ -1 +0,0 @@ -x�1�0 @Q��{$� G���:���v���I���?��t��p'�E \@��a�E�HWR�f�;�GfNxf�ą�0<��l�pDg�!JM� �g��sgy3�؟���{��ˤ���1� \ No newline at end of file diff --git a/poker/objects/7f/e232c3aae5996a1d6ca1f69d10e636630f5c5c b/poker/objects/7f/e232c3aae5996a1d6ca1f69d10e636630f5c5c deleted file mode 100644 index 5fcd1fe..0000000 --- a/poker/objects/7f/e232c3aae5996a1d6ca1f69d10e636630f5c5c +++ /dev/null @@ -1,2 +0,0 @@ -xM�_k�0���Oq�B[���d�d���0̷�5��6[�h�(2�ݗT $�{n��ݓ�QnG���u�� -!3�{hW���Y- *��K��Bnp�V�™p{t�lH!$�.I�*���|�� Y�'}��Z�8��8*�;Iؚ�:��ƺb��j[.KEN6d J���r��wih�9� q��Pk�����G>(*$-��� /��klި�W��i�%벒l9}z���d ����Έ�$�B:O;���i`�Բ-���=������9��g�� *y̪� 1��[0'Ŏ}*!�K,7��[�S�t]���O$���͢���8��7����e�/��; \ No newline at end of file diff --git a/poker/objects/80/84e8e04d510cc28321f30a9646477cc50c235c b/poker/objects/80/84e8e04d510cc28321f30a9646477cc50c235c deleted file mode 100644 index f3c6c25..0000000 Binary files a/poker/objects/80/84e8e04d510cc28321f30a9646477cc50c235c and /dev/null differ diff --git a/poker/objects/8c/c55ec952dc192a233e062201d1e7e873ac3db0 b/poker/objects/8c/c55ec952dc192a233e062201d1e7e873ac3db0 deleted file mode 100644 index eddb022..0000000 Binary files a/poker/objects/8c/c55ec952dc192a233e062201d1e7e873ac3db0 and /dev/null differ diff --git a/poker/objects/9c/e7a4f31feb80ce5068d582bf1ebcad1bd3cfe1 b/poker/objects/9c/e7a4f31feb80ce5068d582bf1ebcad1bd3cfe1 deleted file mode 100644 index 557eea7..0000000 Binary files a/poker/objects/9c/e7a4f31feb80ce5068d582bf1ebcad1bd3cfe1 and /dev/null differ diff --git a/poker/objects/9d/6165ee9739fc760f9cc1e5d6fd9440b7b1dc29 b/poker/objects/9d/6165ee9739fc760f9cc1e5d6fd9440b7b1dc29 deleted file mode 100644 index eb18ec3..0000000 Binary files a/poker/objects/9d/6165ee9739fc760f9cc1e5d6fd9440b7b1dc29 and /dev/null differ diff --git a/poker/objects/a2/1f82b3bdb817ecbc43f74c6fe360300739418a b/poker/objects/a2/1f82b3bdb817ecbc43f74c6fe360300739418a deleted file mode 100644 index d5d9c67..0000000 Binary files a/poker/objects/a2/1f82b3bdb817ecbc43f74c6fe360300739418a and /dev/null differ diff --git a/poker/objects/a4/43db3401278f21dee3f448f317487a642967a9 b/poker/objects/a4/43db3401278f21dee3f448f317487a642967a9 deleted file mode 100644 index 5741989..0000000 Binary files a/poker/objects/a4/43db3401278f21dee3f448f317487a642967a9 and /dev/null differ diff --git a/poker/objects/a6/254504e40175d135cea7feb34ad31fa0d0bca3 b/poker/objects/a6/254504e40175d135cea7feb34ad31fa0d0bca3 deleted file mode 100644 index 24e3948..0000000 Binary files a/poker/objects/a6/254504e40175d135cea7feb34ad31fa0d0bca3 and /dev/null differ diff --git a/poker/objects/a8/836c36c0c2774274f5b7340b141f42cb7d7604 b/poker/objects/a8/836c36c0c2774274f5b7340b141f42cb7d7604 deleted file mode 100644 index 16904e7..0000000 Binary files a/poker/objects/a8/836c36c0c2774274f5b7340b141f42cb7d7604 and /dev/null differ diff --git a/poker/objects/ac/033bf9dc846101320c96a5ce8aceb8c96ec098 b/poker/objects/ac/033bf9dc846101320c96a5ce8aceb8c96ec098 deleted file mode 100644 index 6da5b3b..0000000 --- a/poker/objects/ac/033bf9dc846101320c96a5ce8aceb8c96ec098 +++ /dev/null @@ -1,3 +0,0 @@ -x�Q�J�@��W<��JD��*x�=��If��f&�� �xwۨ��qf޼y�M����������J!��KR�ORL=qi`���=b���T_^.��:0Mpl=�� C���d0���2�ʊ&�x��La�m/��Y�H���]�pw:j���:��7s� ���YKJ3ˉ!�Y;����z�EE З�"�4Y�'�9���㦘96_�8���f�)Z�� � � -��07y?���'57�K�Z]ݸ5��[�� T�I�� #�q�(�J'X5��*��$��90q+��ir���2?'�=шU�KܕO�!�9��,a��c�Ф��w -[��;Ӫ�~@������'E�7���v \ No newline at end of file diff --git a/poker/objects/ac/23a1df2df59f3f3b5b22d86475b6f6aa82e1a1 b/poker/objects/ac/23a1df2df59f3f3b5b22d86475b6f6aa82e1a1 deleted file mode 100644 index e439c93..0000000 Binary files a/poker/objects/ac/23a1df2df59f3f3b5b22d86475b6f6aa82e1a1 and /dev/null differ diff --git a/poker/objects/b6/12547fc21d079889046e65d1fb135ec6921eaa b/poker/objects/b6/12547fc21d079889046e65d1fb135ec6921eaa deleted file mode 100644 index 912bdd5..0000000 Binary files a/poker/objects/b6/12547fc21d079889046e65d1fb135ec6921eaa and /dev/null differ diff --git a/poker/objects/b9/b6ac1186594a8b6a239f10df451cbec349653d b/poker/objects/b9/b6ac1186594a8b6a239f10df451cbec349653d deleted file mode 100644 index 62bd916..0000000 Binary files a/poker/objects/b9/b6ac1186594a8b6a239f10df451cbec349653d and /dev/null differ diff --git a/poker/objects/ba/6b733dd2358d858f00445ebd91c214f0f5d2e5 b/poker/objects/ba/6b733dd2358d858f00445ebd91c214f0f5d2e5 deleted file mode 100644 index 22c1647..0000000 --- a/poker/objects/ba/6b733dd2358d858f00445ebd91c214f0f5d2e5 +++ /dev/null @@ -1,3 +0,0 @@ -xMϱj1 ��~�2����ҥc� -��F>��vm_�{�:�Ў���!yM�o�O+|��%��Ѩ�*$b劬4r��*~x����}g �xcV�R�蜕���HYj+ӣ��� �� -�[:S��Tx]H�|7Z¾�֘�߳ƶ�c��;�2�����aLq��@9kW���������ӹc�ݫ�_l5Qp�o��Y� \ No newline at end of file diff --git a/poker/objects/c5/8bb95aaa2d9aa8056945f0724f7fe4b4117240 b/poker/objects/c5/8bb95aaa2d9aa8056945f0724f7fe4b4117240 deleted file mode 100644 index 764a57a..0000000 Binary files a/poker/objects/c5/8bb95aaa2d9aa8056945f0724f7fe4b4117240 and /dev/null differ diff --git a/poker/objects/d2/f4ec33a63c2ab427f2387d640d2ea802de88be b/poker/objects/d2/f4ec33a63c2ab427f2387d640d2ea802de88be deleted file mode 100644 index 4e360f1..0000000 --- a/poker/objects/d2/f4ec33a63c2ab427f2387d640d2ea802de88be +++ /dev/null @@ -1 +0,0 @@ -x��=O�0���+^�B.��Sؘ�د���ʵ#�Kȿ�N���xw�ǣ�����v{�� Cω�#k��1�s�r�ℱ�P8E'݄܋�ϦiV��b��H�����%��e�a��k R���K�i>H�/�r 56�Nf�4f��a�d׵�=��������j"�_}�_� ��l�.��AB o��m!��6K��]y����M���)��tw;\�7奔lo������R \ No newline at end of file diff --git a/poker/objects/d6/925fa431be1ac585bf9a481e98f75107a6e6fb b/poker/objects/d6/925fa431be1ac585bf9a481e98f75107a6e6fb deleted file mode 100644 index 30d2b06..0000000 Binary files a/poker/objects/d6/925fa431be1ac585bf9a481e98f75107a6e6fb and /dev/null differ diff --git a/poker/objects/d8/3690e1b9a6bdd8a08754b38231799acefcb2ab b/poker/objects/d8/3690e1b9a6bdd8a08754b38231799acefcb2ab deleted file mode 100644 index 45824e5..0000000 --- a/poker/objects/d8/3690e1b9a6bdd8a08754b38231799acefcb2ab +++ /dev/null @@ -1,3 +0,0 @@ -xU��J�@��=�) -��,���K ,�-�:�N�L��7� x-����x>_N1��e�)�')�Wə/���)�W2���ʟ\��� -r��a�7(%Ke�w��<���(��f��d�L�h�`5F(kΝ����9�p�E�9z7���(:��2�{@�{�� ���J] \ No newline at end of file diff --git a/poker/objects/d8/4bba1e816d00e3c3f9d184f24ae8c40ce767e5 b/poker/objects/d8/4bba1e816d00e3c3f9d184f24ae8c40ce767e5 deleted file mode 100644 index f58adfb..0000000 --- a/poker/objects/d8/4bba1e816d00e3c3f9d184f24ae8c40ce767e5 +++ /dev/null @@ -1 +0,0 @@ -x���n�0 D;�+.С@#�!c>�@g�bb#��RT��}i ��e���N�>q��C��jR����ì$ӭ|��)3s��l�q"��ߵmk�ZHr��C�u] �,,�.�Hߔx�(�7�x�xݾ�AC��3_I�{�G�<���@��aȘ)"4JE,cJ� $ƛ���B� e�Ԥ���W1���� �WR3 Wj�qbdVR�0��6�ݹ��ƂY8�O9��Z��u͹ |���ُ� \ No newline at end of file diff --git a/poker/objects/d8/7d5f578104597c1d1b951b55942e37f8af1277 b/poker/objects/d8/7d5f578104597c1d1b951b55942e37f8af1277 deleted file mode 100644 index 1337c39..0000000 Binary files a/poker/objects/d8/7d5f578104597c1d1b951b55942e37f8af1277 and /dev/null differ diff --git a/poker/objects/dc/1899682b01c3a6d9673faf746e235fb64fc4d2 b/poker/objects/dc/1899682b01c3a6d9673faf746e235fb64fc4d2 deleted file mode 100644 index addad07..0000000 --- a/poker/objects/dc/1899682b01c3a6d9673faf746e235fb64fc4d2 +++ /dev/null @@ -1,2 +0,0 @@ -x���@��y� �c��u������dwy{�n2?ߴ#�8_�� -w�.B0���K /%��`(�&���`CR�i��(*�bD�S����� %���f����v���'���x�z'5?)�~v�� �(�b}�8�8� \ No newline at end of file diff --git a/poker/objects/dd/4e97e22e159a585b20e21028f964827d5afa4e b/poker/objects/dd/4e97e22e159a585b20e21028f964827d5afa4e deleted file mode 100644 index cf2b8c9..0000000 --- a/poker/objects/dd/4e97e22e159a585b20e21028f964827d5afa4e +++ /dev/null @@ -1 +0,0 @@ -xe��N�0 �9�)|4� hڐ�� ^�K��,uJ�*O�SM\�ſ��>}8�����v ����m_U�=�KSȾ q@�gh����ԣҙ"$�1F!G)a�At��=U8��*�<J1��t�b$]�9dp� �a�u�^W�-�q+����c6�Iǔ����.�Ŧ;T�}�CH}������!wf]����;���M�\�#��3���)�l�����x�����Uز�h�ҕ�ʜ2��԰>��e��*���: �+��. q�zI�~��M��x��怚I�`�H�"An���ƹt�kFMi�`�G<�k�X���i؊b�,#�Bc�� -/{e��� ���@�H�k���w�%"���2��`dR�/�e�a�`Ӳ�s�t����Gbj��A�n�L�l� -�K��W��?�B�E=S��B_�8�� #n��qF���*� �k -�D���E��C�9���c�Š���r-o��׸���U�FB_�o�11�f|���K;U�H3N�h��MHAw���� \ No newline at end of file diff --git a/poker/objects/de/6be7945c6a59798eb0ace177df38b05e98c2f0 b/poker/objects/de/6be7945c6a59798eb0ace177df38b05e98c2f0 deleted file mode 100644 index 97b3647..0000000 Binary files a/poker/objects/de/6be7945c6a59798eb0ace177df38b05e98c2f0 and /dev/null differ diff --git a/poker/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 b/poker/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 deleted file mode 100644 index 7112238..0000000 Binary files a/poker/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 and /dev/null differ diff --git a/poker/objects/e8/523d6fb1fbd2508d0b012d6b8bc297927dec9e b/poker/objects/e8/523d6fb1fbd2508d0b012d6b8bc297927dec9e deleted file mode 100644 index e2921b4..0000000 Binary files a/poker/objects/e8/523d6fb1fbd2508d0b012d6b8bc297927dec9e and /dev/null differ diff --git a/poker/objects/e9/16818243d7e6ca5813470060f8d23f1d9d0206 b/poker/objects/e9/16818243d7e6ca5813470060f8d23f1d9d0206 deleted file mode 100644 index 906bee4..0000000 Binary files a/poker/objects/e9/16818243d7e6ca5813470060f8d23f1d9d0206 and /dev/null differ diff --git a/poker/objects/ee/8d90dc651948269f1b869953ff04774e737307 b/poker/objects/ee/8d90dc651948269f1b869953ff04774e737307 deleted file mode 100644 index 0341a9a..0000000 Binary files a/poker/objects/ee/8d90dc651948269f1b869953ff04774e737307 and /dev/null differ diff --git a/poker/objects/f2/b0313dd0f2afe867c60d59f55ca3185e491cd8 b/poker/objects/f2/b0313dd0f2afe867c60d59f55ca3185e491cd8 deleted file mode 100644 index 3a4d1a1..0000000 Binary files a/poker/objects/f2/b0313dd0f2afe867c60d59f55ca3185e491cd8 and /dev/null differ diff --git a/poker/objects/f8/8d6a820cae9a180fdca7ee96ef727a5ae73b66 b/poker/objects/f8/8d6a820cae9a180fdca7ee96ef727a5ae73b66 deleted file mode 100644 index 2756849..0000000 Binary files a/poker/objects/f8/8d6a820cae9a180fdca7ee96ef727a5ae73b66 and /dev/null differ diff --git a/poker/objects/fb/e1b18e0260a8f4a04e6c15ec5832645cf3c30c b/poker/objects/fb/e1b18e0260a8f4a04e6c15ec5832645cf3c30c deleted file mode 100644 index 655a423..0000000 Binary files a/poker/objects/fb/e1b18e0260a8f4a04e6c15ec5832645cf3c30c and /dev/null differ diff --git a/poker/refs/heads/master b/poker/refs/heads/master deleted file mode 100644 index 9b91475..0000000 --- a/poker/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -9d6165ee9739fc760f9cc1e5d6fd9440b7b1dc29 diff --git a/poker/refs/remotes/origin/master b/poker/refs/remotes/origin/master deleted file mode 100644 index 9b91475..0000000 --- a/poker/refs/remotes/origin/master +++ /dev/null @@ -1 +0,0 @@ -9d6165ee9739fc760f9cc1e5d6fd9440b7b1dc29