diff --git a/.ptp-sync-folder b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/.ptp-sync-folder b/.ptp-sync/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/COMMIT_EDITMSG b/.ptp-sync/COMMIT_EDITMSG new file mode 100644 index 0000000..3d1e08c --- /dev/null +++ b/.ptp-sync/COMMIT_EDITMSG @@ -0,0 +1 @@ +Eclipse Automatic Commit diff --git a/.ptp-sync/HEAD b/.ptp-sync/HEAD new file mode 100644 index 0000000..cb089cd --- /dev/null +++ b/.ptp-sync/HEAD @@ -0,0 +1 @@ +ref: refs/heads/master diff --git a/.ptp-sync/ORIG_HEAD b/.ptp-sync/ORIG_HEAD new file mode 100644 index 0000000..80da056 --- /dev/null +++ b/.ptp-sync/ORIG_HEAD @@ -0,0 +1 @@ +42730e0edee4e23ed10fe86446b5b3f87ae57fe1 diff --git a/.ptp-sync/config b/.ptp-sync/config new file mode 100644 index 0000000..62f36ad --- /dev/null +++ b/.ptp-sync/config @@ -0,0 +1,8 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = true + preloadindex = true +[user] + email = ptp-dev@eclipse.org + name = PTP diff --git a/.ptp-sync/description b/.ptp-sync/description new file mode 100644 index 0000000..498b267 --- /dev/null +++ b/.ptp-sync/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/.ptp-sync/hooks/.ptp-sync-folder b/.ptp-sync/hooks/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/hooks/applypatch-msg.sample b/.ptp-sync/hooks/applypatch-msg.sample new file mode 100644 index 0000000..a5d7b84 --- /dev/null +++ b/.ptp-sync/hooks/applypatch-msg.sample @@ -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+"$@"} +: diff --git a/.ptp-sync/hooks/commit-msg.sample b/.ptp-sync/hooks/commit-msg.sample new file mode 100644 index 0000000..b58d118 --- /dev/null +++ b/.ptp-sync/hooks/commit-msg.sample @@ -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 +} diff --git a/.ptp-sync/hooks/fsmonitor-watchman.sample b/.ptp-sync/hooks/fsmonitor-watchman.sample new file mode 100644 index 0000000..14ed0aa --- /dev/null +++ b/.ptp-sync/hooks/fsmonitor-watchman.sample @@ -0,0 +1,173 @@ +#!/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. + if (substr($last_update_token, 0, 1) eq "c") { + $last_update_token = "\"$last_update_token\""; + } + my $query = <<" END"; + ["query", "$git_work_tree", { + "since": $last_update_token, + "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; +} diff --git a/.ptp-sync/hooks/post-update.sample b/.ptp-sync/hooks/post-update.sample new file mode 100644 index 0000000..ec17ec1 --- /dev/null +++ b/.ptp-sync/hooks/post-update.sample @@ -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 diff --git a/.ptp-sync/hooks/pre-applypatch.sample b/.ptp-sync/hooks/pre-applypatch.sample new file mode 100644 index 0000000..4142082 --- /dev/null +++ b/.ptp-sync/hooks/pre-applypatch.sample @@ -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+"$@"} +: diff --git a/.ptp-sync/hooks/pre-commit.sample b/.ptp-sync/hooks/pre-commit.sample new file mode 100644 index 0000000..e144712 --- /dev/null +++ b/.ptp-sync/hooks/pre-commit.sample @@ -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=$(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 -- diff --git a/.ptp-sync/hooks/pre-merge-commit.sample b/.ptp-sync/hooks/pre-merge-commit.sample new file mode 100644 index 0000000..399eab1 --- /dev/null +++ b/.ptp-sync/hooks/pre-merge-commit.sample @@ -0,0 +1,13 @@ +#!/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" +: diff --git a/.ptp-sync/hooks/pre-push.sample b/.ptp-sync/hooks/pre-push.sample new file mode 100644 index 0000000..4ce688d --- /dev/null +++ b/.ptp-sync/hooks/pre-push.sample @@ -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: +# +# +# +# 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 diff --git a/.ptp-sync/hooks/pre-rebase.sample b/.ptp-sync/hooks/pre-rebase.sample new file mode 100644 index 0000000..6cbef5c --- /dev/null +++ b/.ptp-sync/hooks/pre-rebase.sample @@ -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 diff --git a/.ptp-sync/hooks/pre-receive.sample b/.ptp-sync/hooks/pre-receive.sample new file mode 100644 index 0000000..a1fd29e --- /dev/null +++ b/.ptp-sync/hooks/pre-receive.sample @@ -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 diff --git a/.ptp-sync/hooks/prepare-commit-msg.sample b/.ptp-sync/hooks/prepare-commit-msg.sample new file mode 100644 index 0000000..10fa14c --- /dev/null +++ b/.ptp-sync/hooks/prepare-commit-msg.sample @@ -0,0 +1,42 @@ +#!/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 diff --git a/.ptp-sync/hooks/push-to-checkout.sample b/.ptp-sync/hooks/push-to-checkout.sample new file mode 100644 index 0000000..af5a0c0 --- /dev/null +++ b/.ptp-sync/hooks/push-to-checkout.sample @@ -0,0 +1,78 @@ +#!/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 &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 diff --git a/.ptp-sync/index b/.ptp-sync/index new file mode 100644 index 0000000..9ee8070 Binary files /dev/null and b/.ptp-sync/index differ diff --git a/.ptp-sync/info/.ptp-sync-folder b/.ptp-sync/info/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/info/exclude b/.ptp-sync/info/exclude new file mode 100644 index 0000000..2175ba7 --- /dev/null +++ b/.ptp-sync/info/exclude @@ -0,0 +1,11 @@ +/.project +/.cproject +/.buildpath +/.settings/ +coredir.[0-9]*/ +core +!core/ +core.[0-9]* +!core.[0-9]*/ +CVS/ +/.ptp-sync/ diff --git a/.ptp-sync/logs/.ptp-sync-folder b/.ptp-sync/logs/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/logs/HEAD b/.ptp-sync/logs/HEAD new file mode 100644 index 0000000..6af924a --- /dev/null +++ b/.ptp-sync/logs/HEAD @@ -0,0 +1,10 @@ +0000000000000000000000000000000000000000 80ca67815a18d63c751eeceb5d23e85188f30f0a PTP 1706812971 +0000 commit (initial): Eclipse Automatic Commit +80ca67815a18d63c751eeceb5d23e85188f30f0a 8d075bedc87b70aee394e9c1b2e8a3aa1019e701 PTP 1706812971 +0000 commit: Eclipse Automatic Commit +8d075bedc87b70aee394e9c1b2e8a3aa1019e701 23939e4d05ab47018418f1b0f5f77d80b130e70f PTP 1706812971 +0000 commit: Eclipse Automatic Commit +23939e4d05ab47018418f1b0f5f77d80b130e70f 76451c8d0877dfd83dd2a3550fc599a4480e25c4 PTP 1706812973 +0000 merge ptp-push: Fast-forward +76451c8d0877dfd83dd2a3550fc599a4480e25c4 5b5cf3b996991e89043699820f428c004c1b4a99 PTP 1706891996 +0000 commit: Eclipse Automatic Commit +5b5cf3b996991e89043699820f428c004c1b4a99 c937042cc8abf2a16022c2e78a622769722fec18 PTP 1706891997 +0000 commit: Eclipse Automatic Commit +c937042cc8abf2a16022c2e78a622769722fec18 af077c1102fe160adf996e3c4242fbba5f32e8cf PTP 1706892001 +0000 merge ptp-push: Fast-forward +af077c1102fe160adf996e3c4242fbba5f32e8cf 5bf1e6d20de743ec40851d7fb639d738bbde8d86 PTP 1706898661 +0000 commit: Eclipse Automatic Commit +5bf1e6d20de743ec40851d7fb639d738bbde8d86 89c4f51a21d0f13c6c21d868af5ecf96cab9b029 PTP 1706898661 +0000 commit: Eclipse Automatic Commit +89c4f51a21d0f13c6c21d868af5ecf96cab9b029 42730e0edee4e23ed10fe86446b5b3f87ae57fe1 PTP 1706898661 +0000 commit: Eclipse Automatic Commit diff --git a/.ptp-sync/logs/refs/.ptp-sync-folder b/.ptp-sync/logs/refs/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/logs/refs/heads/.ptp-sync-folder b/.ptp-sync/logs/refs/heads/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/logs/refs/heads/master b/.ptp-sync/logs/refs/heads/master new file mode 100644 index 0000000..6af924a --- /dev/null +++ b/.ptp-sync/logs/refs/heads/master @@ -0,0 +1,10 @@ +0000000000000000000000000000000000000000 80ca67815a18d63c751eeceb5d23e85188f30f0a PTP 1706812971 +0000 commit (initial): Eclipse Automatic Commit +80ca67815a18d63c751eeceb5d23e85188f30f0a 8d075bedc87b70aee394e9c1b2e8a3aa1019e701 PTP 1706812971 +0000 commit: Eclipse Automatic Commit +8d075bedc87b70aee394e9c1b2e8a3aa1019e701 23939e4d05ab47018418f1b0f5f77d80b130e70f PTP 1706812971 +0000 commit: Eclipse Automatic Commit +23939e4d05ab47018418f1b0f5f77d80b130e70f 76451c8d0877dfd83dd2a3550fc599a4480e25c4 PTP 1706812973 +0000 merge ptp-push: Fast-forward +76451c8d0877dfd83dd2a3550fc599a4480e25c4 5b5cf3b996991e89043699820f428c004c1b4a99 PTP 1706891996 +0000 commit: Eclipse Automatic Commit +5b5cf3b996991e89043699820f428c004c1b4a99 c937042cc8abf2a16022c2e78a622769722fec18 PTP 1706891997 +0000 commit: Eclipse Automatic Commit +c937042cc8abf2a16022c2e78a622769722fec18 af077c1102fe160adf996e3c4242fbba5f32e8cf PTP 1706892001 +0000 merge ptp-push: Fast-forward +af077c1102fe160adf996e3c4242fbba5f32e8cf 5bf1e6d20de743ec40851d7fb639d738bbde8d86 PTP 1706898661 +0000 commit: Eclipse Automatic Commit +5bf1e6d20de743ec40851d7fb639d738bbde8d86 89c4f51a21d0f13c6c21d868af5ecf96cab9b029 PTP 1706898661 +0000 commit: Eclipse Automatic Commit +89c4f51a21d0f13c6c21d868af5ecf96cab9b029 42730e0edee4e23ed10fe86446b5b3f87ae57fe1 PTP 1706898661 +0000 commit: Eclipse Automatic Commit diff --git a/.ptp-sync/objects/.ptp-sync-folder b/.ptp-sync/objects/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/03/.ptp-sync-folder b/.ptp-sync/objects/03/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/03/6a295bd4f3a1a64b994f57b3c3bf2422d8f522 b/.ptp-sync/objects/03/6a295bd4f3a1a64b994f57b3c3bf2422d8f522 new file mode 100644 index 0000000..cf27e08 Binary files /dev/null and b/.ptp-sync/objects/03/6a295bd4f3a1a64b994f57b3c3bf2422d8f522 differ diff --git a/.ptp-sync/objects/09/.ptp-sync-folder b/.ptp-sync/objects/09/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/09/05c625be5bbbf12c63b0d5037d19b5a55a8b7e b/.ptp-sync/objects/09/05c625be5bbbf12c63b0d5037d19b5a55a8b7e new file mode 100644 index 0000000..3280247 --- /dev/null +++ b/.ptp-sync/objects/09/05c625be5bbbf12c63b0d5037d19b5a55a8b7e @@ -0,0 +1,3 @@ +xA +0Es1&1R*zqfVxJK/<Ʊ`, +bZu1$rER"D|`PJMm1Ӣ ZJP&v18mh$tX,˗?84^чXh׽1vq硟WfHg}ߧMu \ No newline at end of file diff --git a/.ptp-sync/objects/0a/.ptp-sync-folder b/.ptp-sync/objects/0a/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/0a/5328a78bb58c2287a987b21b998aa9fab2cbca b/.ptp-sync/objects/0a/5328a78bb58c2287a987b21b998aa9fab2cbca new file mode 100644 index 0000000..889247f Binary files /dev/null and b/.ptp-sync/objects/0a/5328a78bb58c2287a987b21b998aa9fab2cbca differ diff --git a/.ptp-sync/objects/0c/.ptp-sync-folder b/.ptp-sync/objects/0c/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/0c/bc2cc6f2bcf5389017ee918b63b7351cf6e768 b/.ptp-sync/objects/0c/bc2cc6f2bcf5389017ee918b63b7351cf6e768 new file mode 100644 index 0000000..11af13b Binary files /dev/null and b/.ptp-sync/objects/0c/bc2cc6f2bcf5389017ee918b63b7351cf6e768 differ diff --git a/.ptp-sync/objects/0e/.ptp-sync-folder b/.ptp-sync/objects/0e/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/0e/416d7d4b5b6a3158ca1bdca2d9564070ba8925 b/.ptp-sync/objects/0e/416d7d4b5b6a3158ca1bdca2d9564070ba8925 new file mode 100644 index 0000000..a25d664 Binary files /dev/null and b/.ptp-sync/objects/0e/416d7d4b5b6a3158ca1bdca2d9564070ba8925 differ diff --git a/.ptp-sync/objects/13/.ptp-sync-folder b/.ptp-sync/objects/13/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/13/626880f0bc2ed36bdf9a9a5041f23c57590e06 b/.ptp-sync/objects/13/626880f0bc2ed36bdf9a9a5041f23c57590e06 new file mode 100644 index 0000000..61d5713 Binary files /dev/null and b/.ptp-sync/objects/13/626880f0bc2ed36bdf9a9a5041f23c57590e06 differ diff --git a/.ptp-sync/objects/18/.ptp-sync-folder b/.ptp-sync/objects/18/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/18/0d5baf96c02adf2711480a217885c75428039b b/.ptp-sync/objects/18/0d5baf96c02adf2711480a217885c75428039b new file mode 100644 index 0000000..8e6c93e Binary files /dev/null and b/.ptp-sync/objects/18/0d5baf96c02adf2711480a217885c75428039b differ diff --git a/.ptp-sync/objects/19/.ptp-sync-folder b/.ptp-sync/objects/19/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/19/5d2c6b9cfb396fa84c348bc7c444e7345d06a3 b/.ptp-sync/objects/19/5d2c6b9cfb396fa84c348bc7c444e7345d06a3 new file mode 100644 index 0000000..f1d00dc --- /dev/null +++ b/.ptp-sync/objects/19/5d2c6b9cfb396fa84c348bc7c444e7345d06a3 @@ -0,0 +1,2 @@ +x+)JMU012d040031QHII-I+Kg8(cn-fDy2llV37gΌ.>1'Tao"x^;hR Ԕ2?K*Yxsdek:,a 1R+MOnR &39?O/=3aI~Ė[abⶅ}_s Y Ȝ#ŜGwۖdeQUvӖL>Opqcys6@?9q³S9\ߜ\/ 5/9 +ޱa`^R{AU$끌|`mVKo_֙Yd3ԣX \ No newline at end of file diff --git a/.ptp-sync/objects/1c/.ptp-sync-folder b/.ptp-sync/objects/1c/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/1c/b2043e57cfdd2329779a8d2fbae39da12f5052 b/.ptp-sync/objects/1c/b2043e57cfdd2329779a8d2fbae39da12f5052 new file mode 100644 index 0000000..d419803 Binary files /dev/null and b/.ptp-sync/objects/1c/b2043e57cfdd2329779a8d2fbae39da12f5052 differ diff --git a/.ptp-sync/objects/23/.ptp-sync-folder b/.ptp-sync/objects/23/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/23/939e4d05ab47018418f1b0f5f77d80b130e70f b/.ptp-sync/objects/23/939e4d05ab47018418f1b0f5f77d80b130e70f new file mode 100644 index 0000000..7375d59 --- /dev/null +++ b/.ptp-sync/objects/23/939e4d05ab47018418f1b0f5f77d80b130e70f @@ -0,0 +1,2 @@ +xK +0@]e2i~ .4`MW |x C_Ȭ$:j-aHk kEkȓ<+vSG1tG0kQVIU(ߢ%)N9[ 6r l2Sxd(?)fJR xm6RWkzZEG&q +kV^ ax^?ƣr;9_ҘeP%2ꄸϮ+C)XxY^Vz$n4[ew-.R ގLd84ĥhwN bgh#8tLX"t+Qݧ:TJ Ӵq :@2dy߯Zܔ{&,t|-Z-:89D!W=;? D`E30t}Ì|yV<@o([ +¶RI:kLFi2J <͕hFozxBl,\euId c< "o8D~a|aC_̿ \ No newline at end of file diff --git a/.ptp-sync/objects/2e/.ptp-sync-folder b/.ptp-sync/objects/2e/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/2e/be1cf156ca86fcfcbf53584818f720e9cffbe4 b/.ptp-sync/objects/2e/be1cf156ca86fcfcbf53584818f720e9cffbe4 new file mode 100644 index 0000000..a740ef5 Binary files /dev/null and b/.ptp-sync/objects/2e/be1cf156ca86fcfcbf53584818f720e9cffbe4 differ diff --git a/.ptp-sync/objects/2e/cd023460ac4580cb6a4061bad7c6a926ec0536 b/.ptp-sync/objects/2e/cd023460ac4580cb6a4061bad7c6a926ec0536 new file mode 100644 index 0000000..2c975ee Binary files /dev/null and b/.ptp-sync/objects/2e/cd023460ac4580cb6a4061bad7c6a926ec0536 differ diff --git a/.ptp-sync/objects/2e/ee1dd7233514c037e27db552a420376f498d97 b/.ptp-sync/objects/2e/ee1dd7233514c037e27db552a420376f498d97 new file mode 100644 index 0000000..633b9b1 Binary files /dev/null and b/.ptp-sync/objects/2e/ee1dd7233514c037e27db552a420376f498d97 differ diff --git a/.ptp-sync/objects/32/.ptp-sync-folder b/.ptp-sync/objects/32/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/32/c08ab2f32a03761d2634c13538a748f77147aa b/.ptp-sync/objects/32/c08ab2f32a03761d2634c13538a748f77147aa new file mode 100644 index 0000000..705eec2 Binary files /dev/null and b/.ptp-sync/objects/32/c08ab2f32a03761d2634c13538a748f77147aa differ diff --git a/.ptp-sync/objects/35/.ptp-sync-folder b/.ptp-sync/objects/35/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/35/ad9c1954bd69b1a803980926f7cfbfcb7f8a7b b/.ptp-sync/objects/35/ad9c1954bd69b1a803980926f7cfbfcb7f8a7b new file mode 100644 index 0000000..c539aae Binary files /dev/null and b/.ptp-sync/objects/35/ad9c1954bd69b1a803980926f7cfbfcb7f8a7b differ diff --git a/.ptp-sync/objects/3a/.ptp-sync-folder b/.ptp-sync/objects/3a/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/3a/54b3f360833f4c44606fef68a93fca6e688329 b/.ptp-sync/objects/3a/54b3f360833f4c44606fef68a93fca6e688329 new file mode 100644 index 0000000..aa96325 Binary files /dev/null and b/.ptp-sync/objects/3a/54b3f360833f4c44606fef68a93fca6e688329 differ diff --git a/.ptp-sync/objects/3b/.ptp-sync-folder b/.ptp-sync/objects/3b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/3b/ededcad0656948ef2a10d6cecb796b5fe9a3f4 b/.ptp-sync/objects/3b/ededcad0656948ef2a10d6cecb796b5fe9a3f4 new file mode 100644 index 0000000..be096c4 Binary files /dev/null and b/.ptp-sync/objects/3b/ededcad0656948ef2a10d6cecb796b5fe9a3f4 differ diff --git a/.ptp-sync/objects/3c/.ptp-sync-folder b/.ptp-sync/objects/3c/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/3c/1a454ab0099634edc4f7f125dec8c17b544c38 b/.ptp-sync/objects/3c/1a454ab0099634edc4f7f125dec8c17b544c38 new file mode 100644 index 0000000..df42d8f Binary files /dev/null and b/.ptp-sync/objects/3c/1a454ab0099634edc4f7f125dec8c17b544c38 differ diff --git a/.ptp-sync/objects/40/.ptp-sync-folder b/.ptp-sync/objects/40/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/40/856f0bd2210f38e9329016a1d28b11b66b5f4b b/.ptp-sync/objects/40/856f0bd2210f38e9329016a1d28b11b66b5f4b new file mode 100644 index 0000000..c491639 Binary files /dev/null and b/.ptp-sync/objects/40/856f0bd2210f38e9329016a1d28b11b66b5f4b differ diff --git a/.ptp-sync/objects/40/e782db061e2260cdb4bb0d8dd6808777fe4b67 b/.ptp-sync/objects/40/e782db061e2260cdb4bb0d8dd6808777fe4b67 new file mode 100644 index 0000000..8e97025 Binary files /dev/null and b/.ptp-sync/objects/40/e782db061e2260cdb4bb0d8dd6808777fe4b67 differ diff --git a/.ptp-sync/objects/41/.ptp-sync-folder b/.ptp-sync/objects/41/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/41/30dbecd6feef898af3ffd4078650215df3efe5 b/.ptp-sync/objects/41/30dbecd6feef898af3ffd4078650215df3efe5 new file mode 100644 index 0000000..14ae9e4 Binary files /dev/null and b/.ptp-sync/objects/41/30dbecd6feef898af3ffd4078650215df3efe5 differ diff --git a/.ptp-sync/objects/42/.ptp-sync-folder b/.ptp-sync/objects/42/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/42/730e0edee4e23ed10fe86446b5b3f87ae57fe1 b/.ptp-sync/objects/42/730e0edee4e23ed10fe86446b5b3f87ae57fe1 new file mode 100644 index 0000000..acc5452 --- /dev/null +++ b/.ptp-sync/objects/42/730e0edee4e23ed10fe86446b5b3f87ae57fe1 @@ -0,0 +1,3 @@ +xA +0D]/J6( /jSo'pV3 <кٔ J:IINq e FdϨkaD +_S;TZ a^j/R1CwJ 91=}#('-zVVV Zk$?&P&_E, \ No newline at end of file diff --git a/.ptp-sync/objects/42/ed12bd9971b621f44599a93e6aefdae06ee54d b/.ptp-sync/objects/42/ed12bd9971b621f44599a93e6aefdae06ee54d new file mode 100644 index 0000000..727d1cf Binary files /dev/null and b/.ptp-sync/objects/42/ed12bd9971b621f44599a93e6aefdae06ee54d differ diff --git a/.ptp-sync/objects/43/.ptp-sync-folder b/.ptp-sync/objects/43/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/43/e0955624fa0ad520b9dee92dc660f825526953 b/.ptp-sync/objects/43/e0955624fa0ad520b9dee92dc660f825526953 new file mode 100644 index 0000000..e6f2a7b Binary files /dev/null and b/.ptp-sync/objects/43/e0955624fa0ad520b9dee92dc660f825526953 differ diff --git a/.ptp-sync/objects/46/.ptp-sync-folder b/.ptp-sync/objects/46/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/46/cb10ca1d402ced0c2c76c6123073449cad816c b/.ptp-sync/objects/46/cb10ca1d402ced0c2c76c6123073449cad816c new file mode 100644 index 0000000..679f7c0 Binary files /dev/null and b/.ptp-sync/objects/46/cb10ca1d402ced0c2c76c6123073449cad816c differ diff --git a/.ptp-sync/objects/48/.ptp-sync-folder b/.ptp-sync/objects/48/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/48/2b8df45a4e1835426b2ed84af8b70ade71aa2b b/.ptp-sync/objects/48/2b8df45a4e1835426b2ed84af8b70ade71aa2b new file mode 100644 index 0000000..5d077cb Binary files /dev/null and b/.ptp-sync/objects/48/2b8df45a4e1835426b2ed84af8b70ade71aa2b differ diff --git a/.ptp-sync/objects/4a/.ptp-sync-folder b/.ptp-sync/objects/4a/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/4a/8704787c4f5d312ff9dc226c2ecda81c7fc3ba b/.ptp-sync/objects/4a/8704787c4f5d312ff9dc226c2ecda81c7fc3ba new file mode 100644 index 0000000..b05aa53 Binary files /dev/null and b/.ptp-sync/objects/4a/8704787c4f5d312ff9dc226c2ecda81c7fc3ba differ diff --git a/.ptp-sync/objects/4b/.ptp-sync-folder b/.ptp-sync/objects/4b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904 b/.ptp-sync/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904 new file mode 100644 index 0000000..adf6411 Binary files /dev/null and b/.ptp-sync/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904 differ diff --git a/.ptp-sync/objects/51/.ptp-sync-folder b/.ptp-sync/objects/51/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/51/102c24adba7f34c0347e676231518b0d73b3e7 b/.ptp-sync/objects/51/102c24adba7f34c0347e676231518b0d73b3e7 new file mode 100644 index 0000000..cfff782 --- /dev/null +++ b/.ptp-sync/objects/51/102c24adba7f34c0347e676231518b0d73b3e7 @@ -0,0 +1,2 @@ +x+)JMU0d040031Q+()-KMII-bx6M9{wk+qIODڜ$bx?A0 +k# \ No newline at end of file diff --git a/.ptp-sync/objects/52/.ptp-sync-folder b/.ptp-sync/objects/52/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/52/1ed24bb34cae0989a26d593e804c8118a83283 b/.ptp-sync/objects/52/1ed24bb34cae0989a26d593e804c8118a83283 new file mode 100644 index 0000000..f577208 Binary files /dev/null and b/.ptp-sync/objects/52/1ed24bb34cae0989a26d593e804c8118a83283 differ diff --git a/.ptp-sync/objects/53/.ptp-sync-folder b/.ptp-sync/objects/53/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/53/2b802bde6382c873c2cb322f4f133b78606836 b/.ptp-sync/objects/53/2b802bde6382c873c2cb322f4f133b78606836 new file mode 100644 index 0000000..7e0d556 Binary files /dev/null and b/.ptp-sync/objects/53/2b802bde6382c873c2cb322f4f133b78606836 differ diff --git a/.ptp-sync/objects/54/.ptp-sync-folder b/.ptp-sync/objects/54/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/54/ca623967ce841c4c53bef98cf8ff0e049f08ba b/.ptp-sync/objects/54/ca623967ce841c4c53bef98cf8ff0e049f08ba new file mode 100644 index 0000000..0a74803 Binary files /dev/null and b/.ptp-sync/objects/54/ca623967ce841c4c53bef98cf8ff0e049f08ba differ diff --git a/.ptp-sync/objects/57/.ptp-sync-folder b/.ptp-sync/objects/57/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/57/7efa4b4b70a1dac3b0c9f59c33f58d9bb6b9f9 b/.ptp-sync/objects/57/7efa4b4b70a1dac3b0c9f59c33f58d9bb6b9f9 new file mode 100644 index 0000000..907dac7 Binary files /dev/null and b/.ptp-sync/objects/57/7efa4b4b70a1dac3b0c9f59c33f58d9bb6b9f9 differ diff --git a/.ptp-sync/objects/5a/.ptp-sync-folder b/.ptp-sync/objects/5a/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/5a/306b3ecbcf0f46ec44f8019dbcbb1c4b78875d b/.ptp-sync/objects/5a/306b3ecbcf0f46ec44f8019dbcbb1c4b78875d new file mode 100644 index 0000000..3cc52b0 Binary files /dev/null and b/.ptp-sync/objects/5a/306b3ecbcf0f46ec44f8019dbcbb1c4b78875d differ diff --git a/.ptp-sync/objects/5b/.ptp-sync-folder b/.ptp-sync/objects/5b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/5b/5cf3b996991e89043699820f428c004c1b4a99 b/.ptp-sync/objects/5b/5cf3b996991e89043699820f428c004c1b4a99 new file mode 100644 index 0000000..dba2778 Binary files /dev/null and b/.ptp-sync/objects/5b/5cf3b996991e89043699820f428c004c1b4a99 differ diff --git a/.ptp-sync/objects/5b/ed5e4ea3078a90b3d1bf4d8e703bb6c097c6ad b/.ptp-sync/objects/5b/ed5e4ea3078a90b3d1bf4d8e703bb6c097c6ad new file mode 100644 index 0000000..af4bca7 Binary files /dev/null and b/.ptp-sync/objects/5b/ed5e4ea3078a90b3d1bf4d8e703bb6c097c6ad differ diff --git a/.ptp-sync/objects/5b/f1e6d20de743ec40851d7fb639d738bbde8d86 b/.ptp-sync/objects/5b/f1e6d20de743ec40851d7fb639d738bbde8d86 new file mode 100644 index 0000000..c6ba6d7 --- /dev/null +++ b/.ptp-sync/objects/5b/f1e6d20de743ec40851d7fb639d738bbde8d86 @@ -0,0 +1 @@ +xA E]s PJ!1Fcw&Vߦ~M\GP;kl2״J\upY= ̪G \ No newline at end of file diff --git a/.ptp-sync/objects/5c/.ptp-sync-folder b/.ptp-sync/objects/5c/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/5c/844e1f12f3d5e7c9dec6a7bf3b31c662b9e975 b/.ptp-sync/objects/5c/844e1f12f3d5e7c9dec6a7bf3b31c662b9e975 new file mode 100644 index 0000000..5a37c71 Binary files /dev/null and b/.ptp-sync/objects/5c/844e1f12f3d5e7c9dec6a7bf3b31c662b9e975 differ diff --git a/.ptp-sync/objects/5d/.ptp-sync-folder b/.ptp-sync/objects/5d/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/5d/259d8d501bc1d9b1ac998cbe32853c89f371ca b/.ptp-sync/objects/5d/259d8d501bc1d9b1ac998cbe32853c89f371ca new file mode 100644 index 0000000..88bd869 Binary files /dev/null and b/.ptp-sync/objects/5d/259d8d501bc1d9b1ac998cbe32853c89f371ca differ diff --git a/.ptp-sync/objects/62/.ptp-sync-folder b/.ptp-sync/objects/62/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/62/77a9fa129c75df171f4f13b3acb1e88de3431c b/.ptp-sync/objects/62/77a9fa129c75df171f4f13b3acb1e88de3431c new file mode 100644 index 0000000..2d4619b Binary files /dev/null and b/.ptp-sync/objects/62/77a9fa129c75df171f4f13b3acb1e88de3431c differ diff --git a/.ptp-sync/objects/66/.ptp-sync-folder b/.ptp-sync/objects/66/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/66/7bd4c404ad29b6a450c6e074c370c67ab09371 b/.ptp-sync/objects/66/7bd4c404ad29b6a450c6e074c370c67ab09371 new file mode 100644 index 0000000..0d0c106 Binary files /dev/null and b/.ptp-sync/objects/66/7bd4c404ad29b6a450c6e074c370c67ab09371 differ diff --git a/.ptp-sync/objects/67/.ptp-sync-folder b/.ptp-sync/objects/67/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/67/12b02ccfdd9a64e9059a17c331153e5d8b63c7 b/.ptp-sync/objects/67/12b02ccfdd9a64e9059a17c331153e5d8b63c7 new file mode 100644 index 0000000..2ab3526 Binary files /dev/null and b/.ptp-sync/objects/67/12b02ccfdd9a64e9059a17c331153e5d8b63c7 differ diff --git a/.ptp-sync/objects/6a/.ptp-sync-folder b/.ptp-sync/objects/6a/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/6a/db34c27b9cd8cf01474af7d56ff0d365a913a4 b/.ptp-sync/objects/6a/db34c27b9cd8cf01474af7d56ff0d365a913a4 new file mode 100644 index 0000000..149762e Binary files /dev/null and b/.ptp-sync/objects/6a/db34c27b9cd8cf01474af7d56ff0d365a913a4 differ diff --git a/.ptp-sync/objects/6b/.ptp-sync-folder b/.ptp-sync/objects/6b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/6b/0e5ae3d5d6e398151897af3df09345ebd76b3e b/.ptp-sync/objects/6b/0e5ae3d5d6e398151897af3df09345ebd76b3e new file mode 100644 index 0000000..da2f402 Binary files /dev/null and b/.ptp-sync/objects/6b/0e5ae3d5d6e398151897af3df09345ebd76b3e differ diff --git a/.ptp-sync/objects/6d/.ptp-sync-folder b/.ptp-sync/objects/6d/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/6d/b2549bf91bab911bc9dcfaccd4a5c91ebb7491 b/.ptp-sync/objects/6d/b2549bf91bab911bc9dcfaccd4a5c91ebb7491 new file mode 100644 index 0000000..485054a Binary files /dev/null and b/.ptp-sync/objects/6d/b2549bf91bab911bc9dcfaccd4a5c91ebb7491 differ diff --git a/.ptp-sync/objects/6f/.ptp-sync-folder b/.ptp-sync/objects/6f/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/6f/0cf7f1b2a4ca0180402b2ff84cbb2fc20f3d48 b/.ptp-sync/objects/6f/0cf7f1b2a4ca0180402b2ff84cbb2fc20f3d48 new file mode 100644 index 0000000..aa1c4cf Binary files /dev/null and b/.ptp-sync/objects/6f/0cf7f1b2a4ca0180402b2ff84cbb2fc20f3d48 differ diff --git a/.ptp-sync/objects/71/.ptp-sync-folder b/.ptp-sync/objects/71/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/71/037df1886f01a37ecfd280b4cce0c6214d2f78 b/.ptp-sync/objects/71/037df1886f01a37ecfd280b4cce0c6214d2f78 new file mode 100644 index 0000000..3653e37 Binary files /dev/null and b/.ptp-sync/objects/71/037df1886f01a37ecfd280b4cce0c6214d2f78 differ diff --git a/.ptp-sync/objects/71/0604b6a90d31fd423ba432a7e83cd4e03021e3 b/.ptp-sync/objects/71/0604b6a90d31fd423ba432a7e83cd4e03021e3 new file mode 100644 index 0000000..028c580 Binary files /dev/null and b/.ptp-sync/objects/71/0604b6a90d31fd423ba432a7e83cd4e03021e3 differ diff --git a/.ptp-sync/objects/72/.ptp-sync-folder b/.ptp-sync/objects/72/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/72/4591120d6090eb90dd003e2bf9208536966329 b/.ptp-sync/objects/72/4591120d6090eb90dd003e2bf9208536966329 new file mode 100644 index 0000000..d7719d1 Binary files /dev/null and b/.ptp-sync/objects/72/4591120d6090eb90dd003e2bf9208536966329 differ diff --git a/.ptp-sync/objects/73/.ptp-sync-folder b/.ptp-sync/objects/73/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/73/02a1fc0ce3bfc1f540116cd4056c2792c9b333 b/.ptp-sync/objects/73/02a1fc0ce3bfc1f540116cd4056c2792c9b333 new file mode 100644 index 0000000..605f6d1 Binary files /dev/null and b/.ptp-sync/objects/73/02a1fc0ce3bfc1f540116cd4056c2792c9b333 differ diff --git a/.ptp-sync/objects/73/9127ffcf4dfccf703da738d0038de463f9f35a b/.ptp-sync/objects/73/9127ffcf4dfccf703da738d0038de463f9f35a new file mode 100644 index 0000000..f80020e Binary files /dev/null and b/.ptp-sync/objects/73/9127ffcf4dfccf703da738d0038de463f9f35a differ diff --git a/.ptp-sync/objects/75/.ptp-sync-folder b/.ptp-sync/objects/75/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/75/20b39ff64714e60da5d05bbd9232926d44bc28 b/.ptp-sync/objects/75/20b39ff64714e60da5d05bbd9232926d44bc28 new file mode 100644 index 0000000..668e956 Binary files /dev/null and b/.ptp-sync/objects/75/20b39ff64714e60da5d05bbd9232926d44bc28 differ diff --git a/.ptp-sync/objects/76/.ptp-sync-folder b/.ptp-sync/objects/76/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/76/451c8d0877dfd83dd2a3550fc599a4480e25c4 b/.ptp-sync/objects/76/451c8d0877dfd83dd2a3550fc599a4480e25c4 new file mode 100644 index 0000000..a42638a --- /dev/null +++ b/.ptp-sync/objects/76/451c8d0877dfd83dd2a3550fc599a4480e25c4 @@ -0,0 +1,4 @@ +xA +0E]se$D,Ε7H'Zhmi[/=>O,"FXJ\;#s +ed|TakM0AlB[K>Dc +aVq+ݴ@gNi' h*kD"C?V1 L; \ No newline at end of file diff --git a/.ptp-sync/objects/76/b572ea24e35cc48aef95c234dc0fc48f031de6 b/.ptp-sync/objects/76/b572ea24e35cc48aef95c234dc0fc48f031de6 new file mode 100644 index 0000000..1769b52 Binary files /dev/null and b/.ptp-sync/objects/76/b572ea24e35cc48aef95c234dc0fc48f031de6 differ diff --git a/.ptp-sync/objects/77/.ptp-sync-folder b/.ptp-sync/objects/77/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/77/7a082d8fcace17f04a1d8033254ea0684cec2b b/.ptp-sync/objects/77/7a082d8fcace17f04a1d8033254ea0684cec2b new file mode 100644 index 0000000..604d8af Binary files /dev/null and b/.ptp-sync/objects/77/7a082d8fcace17f04a1d8033254ea0684cec2b differ diff --git a/.ptp-sync/objects/77/e0ead72b0c5cb865b71e3610fbf2cd5c882085 b/.ptp-sync/objects/77/e0ead72b0c5cb865b71e3610fbf2cd5c882085 new file mode 100644 index 0000000..9a453f9 Binary files /dev/null and b/.ptp-sync/objects/77/e0ead72b0c5cb865b71e3610fbf2cd5c882085 differ diff --git a/.ptp-sync/objects/77/e6b8099605019ca1cd9f642b0845ecc9af13a1 b/.ptp-sync/objects/77/e6b8099605019ca1cd9f642b0845ecc9af13a1 new file mode 100644 index 0000000..00880d3 Binary files /dev/null and b/.ptp-sync/objects/77/e6b8099605019ca1cd9f642b0845ecc9af13a1 differ diff --git a/.ptp-sync/objects/79/.ptp-sync-folder b/.ptp-sync/objects/79/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/79/22c965749034079cb24547d68672d868f5fcfe b/.ptp-sync/objects/79/22c965749034079cb24547d68672d868f5fcfe new file mode 100644 index 0000000..5c571df Binary files /dev/null and b/.ptp-sync/objects/79/22c965749034079cb24547d68672d868f5fcfe differ diff --git a/.ptp-sync/objects/79/58b51d18fafd1bc4ea60919944fc63f29463be b/.ptp-sync/objects/79/58b51d18fafd1bc4ea60919944fc63f29463be new file mode 100644 index 0000000..0895774 Binary files /dev/null and b/.ptp-sync/objects/79/58b51d18fafd1bc4ea60919944fc63f29463be differ diff --git a/.ptp-sync/objects/7a/.ptp-sync-folder b/.ptp-sync/objects/7a/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/7a/f994bffa45f71b83694c759ee1893ad72fa992 b/.ptp-sync/objects/7a/f994bffa45f71b83694c759ee1893ad72fa992 new file mode 100644 index 0000000..82ea88d Binary files /dev/null and b/.ptp-sync/objects/7a/f994bffa45f71b83694c759ee1893ad72fa992 differ diff --git a/.ptp-sync/objects/7c/.ptp-sync-folder b/.ptp-sync/objects/7c/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/7c/0fd30ccfeb60f459e616a2d9612d90e6fdfabc b/.ptp-sync/objects/7c/0fd30ccfeb60f459e616a2d9612d90e6fdfabc new file mode 100644 index 0000000..49ba2bb Binary files /dev/null and b/.ptp-sync/objects/7c/0fd30ccfeb60f459e616a2d9612d90e6fdfabc differ diff --git a/.ptp-sync/objects/7d/.ptp-sync-folder b/.ptp-sync/objects/7d/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/7d/1b660187c2fd98643e7b9491df073e75b46c5d b/.ptp-sync/objects/7d/1b660187c2fd98643e7b9491df073e75b46c5d new file mode 100644 index 0000000..b32cf9a Binary files /dev/null and b/.ptp-sync/objects/7d/1b660187c2fd98643e7b9491df073e75b46c5d differ diff --git a/.ptp-sync/objects/7e/.ptp-sync-folder b/.ptp-sync/objects/7e/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/7e/3351b2c80098b3e72ab36f742798440ef3c919 b/.ptp-sync/objects/7e/3351b2c80098b3e72ab36f742798440ef3c919 new file mode 100644 index 0000000..f29c353 Binary files /dev/null and b/.ptp-sync/objects/7e/3351b2c80098b3e72ab36f742798440ef3c919 differ diff --git a/.ptp-sync/objects/7e/4ef494954349b47f07faf273d12886b8894484 b/.ptp-sync/objects/7e/4ef494954349b47f07faf273d12886b8894484 new file mode 100644 index 0000000..1012188 Binary files /dev/null and b/.ptp-sync/objects/7e/4ef494954349b47f07faf273d12886b8894484 differ diff --git a/.ptp-sync/objects/7e/bb350f8e90eae99b7c821a2bb3fa50b7ac75b6 b/.ptp-sync/objects/7e/bb350f8e90eae99b7c821a2bb3fa50b7ac75b6 new file mode 100644 index 0000000..b1dc4fc Binary files /dev/null and b/.ptp-sync/objects/7e/bb350f8e90eae99b7c821a2bb3fa50b7ac75b6 differ diff --git a/.ptp-sync/objects/7e/c0d09cc38e83338b621f05155a4791f7ffdd9f b/.ptp-sync/objects/7e/c0d09cc38e83338b621f05155a4791f7ffdd9f new file mode 100644 index 0000000..b8ed681 Binary files /dev/null and b/.ptp-sync/objects/7e/c0d09cc38e83338b621f05155a4791f7ffdd9f differ diff --git a/.ptp-sync/objects/80/.ptp-sync-folder b/.ptp-sync/objects/80/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/80/2c6b2e2c8f4eeead3b4cd6fe14ebbc6b3e5a15 b/.ptp-sync/objects/80/2c6b2e2c8f4eeead3b4cd6fe14ebbc6b3e5a15 new file mode 100644 index 0000000..3e0547b Binary files /dev/null and b/.ptp-sync/objects/80/2c6b2e2c8f4eeead3b4cd6fe14ebbc6b3e5a15 differ diff --git a/.ptp-sync/objects/80/ca67815a18d63c751eeceb5d23e85188f30f0a b/.ptp-sync/objects/80/ca67815a18d63c751eeceb5d23e85188f30f0a new file mode 100644 index 0000000..c423f59 --- /dev/null +++ b/.ptp-sync/objects/80/ca67815a18d63c751eeceb5d23e85188f30f0a @@ -0,0 +1 @@ +xK aǬ΍PHJR[oSW߉L *XS4J`08 Gdq) * j1©Q;$\0ιXX! `ױ]τBxnþ~18q \ No newline at end of file diff --git a/.ptp-sync/objects/82/.ptp-sync-folder b/.ptp-sync/objects/82/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/82/3f8cf0302f5129e977b72015e7cf2b6862052c b/.ptp-sync/objects/82/3f8cf0302f5129e977b72015e7cf2b6862052c new file mode 100644 index 0000000..6913e19 Binary files /dev/null and b/.ptp-sync/objects/82/3f8cf0302f5129e977b72015e7cf2b6862052c differ diff --git a/.ptp-sync/objects/82/d3da999420b18879a5f46969ca1047d1b823a7 b/.ptp-sync/objects/82/d3da999420b18879a5f46969ca1047d1b823a7 new file mode 100644 index 0000000..8dc2e89 Binary files /dev/null and b/.ptp-sync/objects/82/d3da999420b18879a5f46969ca1047d1b823a7 differ diff --git a/.ptp-sync/objects/89/.ptp-sync-folder b/.ptp-sync/objects/89/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/89/c4f51a21d0f13c6c21d868af5ecf96cab9b029 b/.ptp-sync/objects/89/c4f51a21d0f13c6c21d868af5ecf96cab9b029 new file mode 100644 index 0000000..ee7f451 Binary files /dev/null and b/.ptp-sync/objects/89/c4f51a21d0f13c6c21d868af5ecf96cab9b029 differ diff --git a/.ptp-sync/objects/8a/.ptp-sync-folder b/.ptp-sync/objects/8a/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/8a/a4fa3fd240f792891918f2bb6db7e6cd549308 b/.ptp-sync/objects/8a/a4fa3fd240f792891918f2bb6db7e6cd549308 new file mode 100644 index 0000000..f19cd0b Binary files /dev/null and b/.ptp-sync/objects/8a/a4fa3fd240f792891918f2bb6db7e6cd549308 differ diff --git a/.ptp-sync/objects/8d/.ptp-sync-folder b/.ptp-sync/objects/8d/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/8d/075bedc87b70aee394e9c1b2e8a3aa1019e701 b/.ptp-sync/objects/8d/075bedc87b70aee394e9c1b2e8a3aa1019e701 new file mode 100644 index 0000000..3a461a8 --- /dev/null +++ b/.ptp-sync/objects/8d/075bedc87b70aee394e9c1b2e8a3aa1019e701 @@ -0,0 +1,2 @@ +xK +0Ego.JM@DU ք~K]w|bj*Ihh)-'ҹ!i5+ҫl b!vF!E"gb(>BPZ%cy>Dǭw|Z$v5<<6"\5F \ No newline at end of file diff --git a/.ptp-sync/objects/8e/.ptp-sync-folder b/.ptp-sync/objects/8e/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/8e/6291d842951adde99b95d4bd35b902933d158d b/.ptp-sync/objects/8e/6291d842951adde99b95d4bd35b902933d158d new file mode 100644 index 0000000..806742e Binary files /dev/null and b/.ptp-sync/objects/8e/6291d842951adde99b95d4bd35b902933d158d differ diff --git a/.ptp-sync/objects/8f/.ptp-sync-folder b/.ptp-sync/objects/8f/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/8f/89a82eda601cf32da0f7f1d9f80a7069afe75f b/.ptp-sync/objects/8f/89a82eda601cf32da0f7f1d9f80a7069afe75f new file mode 100644 index 0000000..e88d9a8 Binary files /dev/null and b/.ptp-sync/objects/8f/89a82eda601cf32da0f7f1d9f80a7069afe75f differ diff --git a/.ptp-sync/objects/90/.ptp-sync-folder b/.ptp-sync/objects/90/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/90/8d4a50fc73b40e0e38ebabe42638c2e0b18465 b/.ptp-sync/objects/90/8d4a50fc73b40e0e38ebabe42638c2e0b18465 new file mode 100644 index 0000000..1daac06 --- /dev/null +++ b/.ptp-sync/objects/90/8d4a50fc73b40e0e38ebabe42638c2e0b18465 @@ -0,0 +1,8 @@ +xVoGg69r''a0nj5ZXQo&n]Y +[vgޛfEbt˳?zFlsZ ̒΍rLkA]cWȱj̔)/ho +TJc;ChG*cicbKi̖ܚɱYލlUBbF:4gR(+cZ8rL0\V rڤG[ڲLU#2VL&:DV}{bҩG6 v:IhT,#IbЇpjF5}O%62dITժ\"oHpήxxyIgSӤ?oF)MaA$]z},SN$)_C蒘jː6b6E&yUbҕYy%Qx*v*-נF#8Ƹn rAɻj걪j8bT:/$X14@2)p/C"z%EzHMuw+FC!_il(8KLC}0P_'>~{?3kG^)AQJ0uv>_=jRI/SM0T=.[XAc02wIS8Kvʻ(*rݭ\\d9S`SV"Ӟw!ΜtЕЙVmP# B;\%.[2]dkN鷉kYE夞epNeufĞ`\R^G0RWNovH|Srn`\kҐh(_ 5 +k, +jY [Vz۱>IU/qVs]vɒ)-E'탮=h^otuyrP/j65JYdTAu8 ?lZ/xSpx.u\ -~:< +4 +`oqC?t88+~ |qըqr_6 \ No newline at end of file diff --git a/.ptp-sync/objects/91/.ptp-sync-folder b/.ptp-sync/objects/91/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/91/fe5c82b3d15717ce39344be49954ab4736b79d b/.ptp-sync/objects/91/fe5c82b3d15717ce39344be49954ab4736b79d new file mode 100644 index 0000000..94c2d2e --- /dev/null +++ b/.ptp-sync/objects/91/fe5c82b3d15717ce39344be49954ab4736b79d @@ -0,0 +1,6 @@ +xVQO9:if ^+mB+TY+ۛ7n(}:H7ߌz 毪:q RXȅDϊ: 9ҹ(WyMSkwXVn !c + raQjLXXi.[jр+'B$LE"0Wl!8f-8Ӕ9UP{k4p{Fx0]%h60x*^FC:?71n)_SI-JF*mbMd^(?I@JrP76͠PuUW'N'>\0sKP9zbjDtN+}aŅu݈tpkJHYVm{6E=̇J]\TrPldaM3s(MQl}k;PȻ?"Gd8z;p1t5*fznBic%U2dddj*V(? +U].vUPq 7oDY2 +:7هDQZhW#U[ۣ$aH|uB}2S3(ނTRYxa4^4LdrL^Kx[Jl nX6ʂTeSOcUtev'In3=5Q8mPTQ]Fd8̈0x,Y"f:]a={" g &$Q[}(xD8vNÊ}k,5J4T=h+lo!JdwpïN(* +u"a$A2 ]pMs/j#hSj)4݈~8PwI-ObU}{Gt\T/ \ No newline at end of file diff --git a/.ptp-sync/objects/9b/.ptp-sync-folder b/.ptp-sync/objects/9b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/9b/8a49348772782ec33d988b46d5d7c52f6464ab b/.ptp-sync/objects/9b/8a49348772782ec33d988b46d5d7c52f6464ab new file mode 100644 index 0000000..75fe2f9 Binary files /dev/null and b/.ptp-sync/objects/9b/8a49348772782ec33d988b46d5d7c52f6464ab differ diff --git a/.ptp-sync/objects/9d/.ptp-sync-folder b/.ptp-sync/objects/9d/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/9d/d7971ffe41601b9b17cc1084957bff6a6d472c b/.ptp-sync/objects/9d/d7971ffe41601b9b17cc1084957bff6a6d472c new file mode 100644 index 0000000..2845d0b Binary files /dev/null and b/.ptp-sync/objects/9d/d7971ffe41601b9b17cc1084957bff6a6d472c differ diff --git a/.ptp-sync/objects/9f/.ptp-sync-folder b/.ptp-sync/objects/9f/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/9f/a05c2ef4035c4aef4a2c03b3f7ed0da476bb84 b/.ptp-sync/objects/9f/a05c2ef4035c4aef4a2c03b3f7ed0da476bb84 new file mode 100644 index 0000000..71369c7 Binary files /dev/null and b/.ptp-sync/objects/9f/a05c2ef4035c4aef4a2c03b3f7ed0da476bb84 differ diff --git a/.ptp-sync/objects/a1/.ptp-sync-folder b/.ptp-sync/objects/a1/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/a1/9986e76e7c15a29e393d76b4176c3991b5b784 b/.ptp-sync/objects/a1/9986e76e7c15a29e393d76b4176c3991b5b784 new file mode 100644 index 0000000..25b2d25 Binary files /dev/null and b/.ptp-sync/objects/a1/9986e76e7c15a29e393d76b4176c3991b5b784 differ diff --git a/.ptp-sync/objects/a1/9cdfcdd42615dfcc0fc89677cca06a9ed57537 b/.ptp-sync/objects/a1/9cdfcdd42615dfcc0fc89677cca06a9ed57537 new file mode 100644 index 0000000..bc22d77 Binary files /dev/null and b/.ptp-sync/objects/a1/9cdfcdd42615dfcc0fc89677cca06a9ed57537 differ diff --git a/.ptp-sync/objects/a2/.ptp-sync-folder b/.ptp-sync/objects/a2/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/a2/6b1ad2d95c90f2359f1fca6cbeb986f30cb8d9 b/.ptp-sync/objects/a2/6b1ad2d95c90f2359f1fca6cbeb986f30cb8d9 new file mode 100644 index 0000000..be45e6a Binary files /dev/null and b/.ptp-sync/objects/a2/6b1ad2d95c90f2359f1fca6cbeb986f30cb8d9 differ diff --git a/.ptp-sync/objects/a3/.ptp-sync-folder b/.ptp-sync/objects/a3/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/a3/2d346e0c2f58b4da56f05c5eb657ade70f7cd2 b/.ptp-sync/objects/a3/2d346e0c2f58b4da56f05c5eb657ade70f7cd2 new file mode 100644 index 0000000..0fd1909 Binary files /dev/null and b/.ptp-sync/objects/a3/2d346e0c2f58b4da56f05c5eb657ade70f7cd2 differ diff --git a/.ptp-sync/objects/a5/.ptp-sync-folder b/.ptp-sync/objects/a5/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/a5/9760d0155c811a900f793567af938225b9f702 b/.ptp-sync/objects/a5/9760d0155c811a900f793567af938225b9f702 new file mode 100644 index 0000000..38718db --- /dev/null +++ b/.ptp-sync/objects/a5/9760d0155c811a900f793567af938225b9f702 @@ -0,0 +1 @@ +xmOK0+n^n)8k [K_o'^r{e- ?s0'7SjO/ $!`im}Xu jvllR9"D'bL*l;Mj  mj+)ʷg޳otIrNLQDT歒ݤ:!$@D.Fٴ2KuX/U{)-BbjYRol EKR `L!8\6H4kRh:wI^1pGpr/w SixkOXpQzlgvv"0#?ܤd$F>.HErG JiPO˃-?h 2rTԄhb| (m[#_jFهSXܤoHfH5 +*fQ} |L订CǷR_:ONx~[H+,5]iKfR85NYu؝ +tHcKwM_'+AXiq҉55/x Yn- \ No newline at end of file diff --git a/.ptp-sync/objects/c7/4c7f64d8873e81b5b7d4bafd9bcd8ad459ca47 b/.ptp-sync/objects/c7/4c7f64d8873e81b5b7d4bafd9bcd8ad459ca47 new file mode 100644 index 0000000..ba8fea4 Binary files /dev/null and b/.ptp-sync/objects/c7/4c7f64d8873e81b5b7d4bafd9bcd8ad459ca47 differ diff --git a/.ptp-sync/objects/c7/99c390c2ae98d46f0d498d3d55b08593ce1da7 b/.ptp-sync/objects/c7/99c390c2ae98d46f0d498d3d55b08593ce1da7 new file mode 100644 index 0000000..182c3e5 Binary files /dev/null and b/.ptp-sync/objects/c7/99c390c2ae98d46f0d498d3d55b08593ce1da7 differ diff --git a/.ptp-sync/objects/c9/.ptp-sync-folder b/.ptp-sync/objects/c9/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/c9/37042cc8abf2a16022c2e78a622769722fec18 b/.ptp-sync/objects/c9/37042cc8abf2a16022c2e78a622769722fec18 new file mode 100644 index 0000000..a7ce353 --- /dev/null +++ b/.ptp-sync/objects/c9/37042cc8abf2a16022c2e78a622769722fec18 @@ -0,0 +1,2 @@ +xM +0F]ed@D]xt:ՂROzx1vS&šB˕".j/rkcQ9M*ϝm*"-مΙȈuJsyԷ]+oُ:`I2"Iky.JpY; dEV \ No newline at end of file diff --git a/.ptp-sync/objects/ca/.ptp-sync-folder b/.ptp-sync/objects/ca/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/ca/3b0d3ea518036cef3581d7ee79e01e1afd383e b/.ptp-sync/objects/ca/3b0d3ea518036cef3581d7ee79e01e1afd383e new file mode 100644 index 0000000..9096cf6 Binary files /dev/null and b/.ptp-sync/objects/ca/3b0d3ea518036cef3581d7ee79e01e1afd383e differ diff --git a/.ptp-sync/objects/cd/.ptp-sync-folder b/.ptp-sync/objects/cd/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/cd/51100ff8b1bb41b49af4fc131302f6a425e4cf b/.ptp-sync/objects/cd/51100ff8b1bb41b49af4fc131302f6a425e4cf new file mode 100644 index 0000000..c4f87b0 Binary files /dev/null and b/.ptp-sync/objects/cd/51100ff8b1bb41b49af4fc131302f6a425e4cf differ diff --git a/.ptp-sync/objects/d1/.ptp-sync-folder b/.ptp-sync/objects/d1/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/d1/61070c78c0471e10724e8a50a8e9e823990475 b/.ptp-sync/objects/d1/61070c78c0471e10724e8a50a8e9e823990475 new file mode 100644 index 0000000..4bbcc90 Binary files /dev/null and b/.ptp-sync/objects/d1/61070c78c0471e10724e8a50a8e9e823990475 differ diff --git a/.ptp-sync/objects/d2/.ptp-sync-folder b/.ptp-sync/objects/d2/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/d2/be5984fddbc3ad10add9586f0846da96ea2bfb b/.ptp-sync/objects/d2/be5984fddbc3ad10add9586f0846da96ea2bfb new file mode 100644 index 0000000..c1d28c6 Binary files /dev/null and b/.ptp-sync/objects/d2/be5984fddbc3ad10add9586f0846da96ea2bfb differ diff --git a/.ptp-sync/objects/d3/.ptp-sync-folder b/.ptp-sync/objects/d3/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/d3/0a2698810bd7fc42aeb098441cc09e204de7fe b/.ptp-sync/objects/d3/0a2698810bd7fc42aeb098441cc09e204de7fe new file mode 100644 index 0000000..ce7b364 Binary files /dev/null and b/.ptp-sync/objects/d3/0a2698810bd7fc42aeb098441cc09e204de7fe differ diff --git a/.ptp-sync/objects/d3/0b4e57eb9126913b730981784e5ab8c9138da2 b/.ptp-sync/objects/d3/0b4e57eb9126913b730981784e5ab8c9138da2 new file mode 100644 index 0000000..24b47da Binary files /dev/null and b/.ptp-sync/objects/d3/0b4e57eb9126913b730981784e5ab8c9138da2 differ diff --git a/.ptp-sync/objects/d4/.ptp-sync-folder b/.ptp-sync/objects/d4/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/d4/4c543f5ad243acfa0d362f581ade4e17db517f b/.ptp-sync/objects/d4/4c543f5ad243acfa0d362f581ade4e17db517f new file mode 100644 index 0000000..aebb79d Binary files /dev/null and b/.ptp-sync/objects/d4/4c543f5ad243acfa0d362f581ade4e17db517f differ diff --git a/.ptp-sync/objects/d4/a46f9466d3ff5e037c2820b48be4324f734445 b/.ptp-sync/objects/d4/a46f9466d3ff5e037c2820b48be4324f734445 new file mode 100644 index 0000000..3301e7f Binary files /dev/null and b/.ptp-sync/objects/d4/a46f9466d3ff5e037c2820b48be4324f734445 differ diff --git a/.ptp-sync/objects/d5/.ptp-sync-folder b/.ptp-sync/objects/d5/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/d5/64b632eede8a706649d5f95cc064de56705af0 b/.ptp-sync/objects/d5/64b632eede8a706649d5f95cc064de56705af0 new file mode 100644 index 0000000..4323198 Binary files /dev/null and b/.ptp-sync/objects/d5/64b632eede8a706649d5f95cc064de56705af0 differ diff --git a/.ptp-sync/objects/d9/.ptp-sync-folder b/.ptp-sync/objects/d9/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/d9/5e07f5bd3c24f62eaeadeb35ff8c793b5cbe80 b/.ptp-sync/objects/d9/5e07f5bd3c24f62eaeadeb35ff8c793b5cbe80 new file mode 100644 index 0000000..ba9f053 Binary files /dev/null and b/.ptp-sync/objects/d9/5e07f5bd3c24f62eaeadeb35ff8c793b5cbe80 differ diff --git a/.ptp-sync/objects/dd/.ptp-sync-folder b/.ptp-sync/objects/dd/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/dd/fdae3da0426fbb0975e7b5f91d5e7f6cd3747c b/.ptp-sync/objects/dd/fdae3da0426fbb0975e7b5f91d5e7f6cd3747c new file mode 100644 index 0000000..aa810a7 Binary files /dev/null and b/.ptp-sync/objects/dd/fdae3da0426fbb0975e7b5f91d5e7f6cd3747c differ diff --git a/.ptp-sync/objects/e0/.ptp-sync-folder b/.ptp-sync/objects/e0/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/e0/79e67e02ea23d4de841c7a30d2cc8c8de8fb71 b/.ptp-sync/objects/e0/79e67e02ea23d4de841c7a30d2cc8c8de8fb71 new file mode 100644 index 0000000..a71e854 Binary files /dev/null and b/.ptp-sync/objects/e0/79e67e02ea23d4de841c7a30d2cc8c8de8fb71 differ diff --git a/.ptp-sync/objects/e0/b6d2f53845e4123f9c2555c7b3e202b5de95e5 b/.ptp-sync/objects/e0/b6d2f53845e4123f9c2555c7b3e202b5de95e5 new file mode 100644 index 0000000..95a8f2c Binary files /dev/null and b/.ptp-sync/objects/e0/b6d2f53845e4123f9c2555c7b3e202b5de95e5 differ diff --git a/.ptp-sync/objects/e1/.ptp-sync-folder b/.ptp-sync/objects/e1/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/e1/4b006cbec11713d8dba5616337b24f45214a90 b/.ptp-sync/objects/e1/4b006cbec11713d8dba5616337b24f45214a90 new file mode 100644 index 0000000..7757b6b Binary files /dev/null and b/.ptp-sync/objects/e1/4b006cbec11713d8dba5616337b24f45214a90 differ diff --git a/.ptp-sync/objects/e2/.ptp-sync-folder b/.ptp-sync/objects/e2/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/e2/b5dc3f7c0000137ba4714a40e0f75b9897a7fa b/.ptp-sync/objects/e2/b5dc3f7c0000137ba4714a40e0f75b9897a7fa new file mode 100644 index 0000000..1a30b18 Binary files /dev/null and b/.ptp-sync/objects/e2/b5dc3f7c0000137ba4714a40e0f75b9897a7fa differ diff --git a/.ptp-sync/objects/e6/.ptp-sync-folder b/.ptp-sync/objects/e6/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 b/.ptp-sync/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 new file mode 100644 index 0000000..7112238 Binary files /dev/null and b/.ptp-sync/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 differ diff --git a/.ptp-sync/objects/e7/.ptp-sync-folder b/.ptp-sync/objects/e7/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/e7/3a18b9a0226ace780440f122641142de4cea84 b/.ptp-sync/objects/e7/3a18b9a0226ace780440f122641142de4cea84 new file mode 100644 index 0000000..2387c96 Binary files /dev/null and b/.ptp-sync/objects/e7/3a18b9a0226ace780440f122641142de4cea84 differ diff --git a/.ptp-sync/objects/e9/.ptp-sync-folder b/.ptp-sync/objects/e9/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/e9/af2c3d26845c258374ae639924c1dd8f528a9d b/.ptp-sync/objects/e9/af2c3d26845c258374ae639924c1dd8f528a9d new file mode 100644 index 0000000..008a132 Binary files /dev/null and b/.ptp-sync/objects/e9/af2c3d26845c258374ae639924c1dd8f528a9d differ diff --git a/.ptp-sync/objects/ea/.ptp-sync-folder b/.ptp-sync/objects/ea/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/ea/ffe84badebac60aed865f50e3ca6f51fc493b0 b/.ptp-sync/objects/ea/ffe84badebac60aed865f50e3ca6f51fc493b0 new file mode 100644 index 0000000..1d96583 --- /dev/null +++ b/.ptp-sync/objects/ea/ffe84badebac60aed865f50e3ca6f51fc493b0 @@ -0,0 +1,3 @@ +xTj@b +N+ȭQS;1(eiYiGҵVm JrBоH{s̙aSR899?t.k/ )\HL[P9<* AjE@"V#Q2SkX0Vtmx41ٺʸns?=V:"HdXF݉)C8iu`Y>{ ԆpAi'Y\@2^Q5KUS-%Qu[!%kZ]2Fd@8^S8Y\R-[*"U*#q=$6Fɂp '10 dt7x: |C>87-K^PK JAjmbCdv6IUM쐬Q}0$vպ5 n| <8@F@gjU ++j;\mͲ@I֢(-AA̲+~SI!t:J Z]i81d=,Gdèw^z41ʘ|n0#M׭zj ؒM7aoֵqoäL?B%I(ܡܣ"A$h"R*wz \ No newline at end of file diff --git a/.ptp-sync/objects/eb/.ptp-sync-folder b/.ptp-sync/objects/eb/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/eb/271c87c32f6e3d823cab0382eabd4a6e362703 b/.ptp-sync/objects/eb/271c87c32f6e3d823cab0382eabd4a6e362703 new file mode 100644 index 0000000..8c4a202 Binary files /dev/null and b/.ptp-sync/objects/eb/271c87c32f6e3d823cab0382eabd4a6e362703 differ diff --git a/.ptp-sync/objects/ec/.ptp-sync-folder b/.ptp-sync/objects/ec/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/ec/3ec197dc653ea8cd90fe5f815e73cd38607202 b/.ptp-sync/objects/ec/3ec197dc653ea8cd90fe5f815e73cd38607202 new file mode 100644 index 0000000..78c5d04 Binary files /dev/null and b/.ptp-sync/objects/ec/3ec197dc653ea8cd90fe5f815e73cd38607202 differ diff --git a/.ptp-sync/objects/f2/.ptp-sync-folder b/.ptp-sync/objects/f2/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/f2/d29d454c9bb3651615ec5ee346288be6c7ce82 b/.ptp-sync/objects/f2/d29d454c9bb3651615ec5ee346288be6c7ce82 new file mode 100644 index 0000000..7b53c4f Binary files /dev/null and b/.ptp-sync/objects/f2/d29d454c9bb3651615ec5ee346288be6c7ce82 differ diff --git a/.ptp-sync/objects/f6/.ptp-sync-folder b/.ptp-sync/objects/f6/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/f6/6cfdd20035d3160d8d45ab20405f545e68c693 b/.ptp-sync/objects/f6/6cfdd20035d3160d8d45ab20405f545e68c693 new file mode 100644 index 0000000..9df3870 Binary files /dev/null and b/.ptp-sync/objects/f6/6cfdd20035d3160d8d45ab20405f545e68c693 differ diff --git a/.ptp-sync/objects/f8/.ptp-sync-folder b/.ptp-sync/objects/f8/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/f8/0848a4bc845f120393b08707ee918af17f125f b/.ptp-sync/objects/f8/0848a4bc845f120393b08707ee918af17f125f new file mode 100644 index 0000000..ab4316f Binary files /dev/null and b/.ptp-sync/objects/f8/0848a4bc845f120393b08707ee918af17f125f differ diff --git a/.ptp-sync/objects/f8/e39bb77d0caddfb81447696d9007028964bb39 b/.ptp-sync/objects/f8/e39bb77d0caddfb81447696d9007028964bb39 new file mode 100644 index 0000000..e3cf209 Binary files /dev/null and b/.ptp-sync/objects/f8/e39bb77d0caddfb81447696d9007028964bb39 differ diff --git a/.ptp-sync/objects/fa/.ptp-sync-folder b/.ptp-sync/objects/fa/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/fa/05dd719665a59b165fe3d6a49d57b74d715257 b/.ptp-sync/objects/fa/05dd719665a59b165fe3d6a49d57b74d715257 new file mode 100644 index 0000000..f3b1ed1 Binary files /dev/null and b/.ptp-sync/objects/fa/05dd719665a59b165fe3d6a49d57b74d715257 differ diff --git a/.ptp-sync/objects/fb/.ptp-sync-folder b/.ptp-sync/objects/fb/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/fb/aa11d3090951999b539107819a1f1aa71bc715 b/.ptp-sync/objects/fb/aa11d3090951999b539107819a1f1aa71bc715 new file mode 100644 index 0000000..5b7db40 Binary files /dev/null and b/.ptp-sync/objects/fb/aa11d3090951999b539107819a1f1aa71bc715 differ diff --git a/.ptp-sync/objects/fc/.ptp-sync-folder b/.ptp-sync/objects/fc/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/fc/1ffaa616961d94f8182ac1c89e47e478ead24c b/.ptp-sync/objects/fc/1ffaa616961d94f8182ac1c89e47e478ead24c new file mode 100644 index 0000000..7ae2ddc Binary files /dev/null and b/.ptp-sync/objects/fc/1ffaa616961d94f8182ac1c89e47e478ead24c differ diff --git a/.ptp-sync/refs/.ptp-sync-folder b/.ptp-sync/refs/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/refs/heads/.ptp-sync-folder b/.ptp-sync/refs/heads/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/refs/heads/master b/.ptp-sync/refs/heads/master new file mode 100644 index 0000000..80da056 --- /dev/null +++ b/.ptp-sync/refs/heads/master @@ -0,0 +1 @@ +42730e0edee4e23ed10fe86446b5b3f87ae57fe1 diff --git a/.ptp-sync/refs/heads/ptp-push b/.ptp-sync/refs/heads/ptp-push new file mode 100644 index 0000000..80da056 --- /dev/null +++ b/.ptp-sync/refs/heads/ptp-push @@ -0,0 +1 @@ +42730e0edee4e23ed10fe86446b5b3f87ae57fe1 diff --git a/backup/.ptp-sync-folder b/backup/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/backup/moodle2/.ptp-sync-folder b/backup/moodle2/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/classes/.ptp-sync-folder b/classes/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/classes/event/.ptp-sync-folder b/classes/event/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/classes/local/.ptp-sync-folder b/classes/local/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/classes/privacy/.ptp-sync-folder b/classes/privacy/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/classes/search/.ptp-sync-folder b/classes/search/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/classes/task/.ptp-sync-folder b/classes/task/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/db/.ptp-sync-folder b/db/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/lang/.ptp-sync-folder b/lang/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/lang/en/.ptp-sync-folder b/lang/en/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/pix/.ptp-sync-folder b/pix/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/tests/.ptp-sync-folder b/tests/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/tests/behat/.ptp-sync-folder b/tests/behat/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/tests/generator/.ptp-sync-folder b/tests/generator/.ptp-sync-folder new file mode 100644 index 0000000..e69de29