diff --git a/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefile.vidstab b/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefile.vidstab index 7f2f90b..87de5c9 100644 --- a/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefile.vidstab +++ b/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefile.vidstab @@ -257,16 +257,16 @@ videos/webm/%.webm: videos/aufnahmen/elly/%.mp4 -an \ -f webm \ "$@" - curl \ - --upload-file "$@" \ - --user cwsvjudo:Dee4oquu \ - "ftp://cwsvjudo.square7.net/videoalben/videoalben.2018/$(VID_GAL_DIR)/$(patsubst videos/%,%,$@)" \ - --ftp-create-dirs - curl \ - --upload-file "$@" \ - --user cwsvjudo:***REMOVED*** \ - "ftp://cwsvjudo.bplaced.net/www/videoalben/videoalben.2018/$(VID_GAL_DIR)/$(patsubst videos/%,%,$@)" \ - --ftp-create-dirs +# curl \ +# --upload-file "$@" \ +# --user cwsvjudo:Dee4oquu \ +# "ftp://cwsvjudo.square7.net/videoalben/videoalben.2018/$(VID_GAL_DIR)/$(patsubst videos/%,%,$@)" \ +# --ftp-create-dirs +# curl \ +# --upload-file "$@" \ +# --user cwsvjudo:***REMOVED*** \ +# "ftp://cwsvjudo.bplaced.net/www/videoalben/videoalben.2018/$(VID_GAL_DIR)/$(patsubst videos/%,%,$@)" \ +# --ftp-create-dirs videos/thumbnails/%.jpg: videos/webm/%.webm mkdir -p videos/thumbnails diff --git a/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefile.vidstabTest b/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefile.vidstabTest index 9cee755..32ce5fa 100644 --- a/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefile.vidstabTest +++ b/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefile.vidstabTest @@ -6,6 +6,9 @@ GUETZLI = /d/projekte/tests/guetzli.git/bin/Release/guetzli.exe DEFAULT_FFMPEG = ffmpeg #DEFAULT_FFMPEG = /c/proggis/media/editoren/ffmpeg-4.0.2-win64-static/bin/ffmpeg.exe +GET_VIDEO_DURATION_JSON = /d/temp/cwsvJudo/homepage/redesign2018/markdownExperiment/src/galleryHelper/getVideoDurationJson.py + + # Für eine schnelle Komprimierung libvpx, sonst vp9 DEFAULT_VID_CODEC_HEIGHT = 360 DEFAULT_VID_CODEC_WIDTH = -2 @@ -88,6 +91,7 @@ targets: # Die Stabilisierungsberechnung: # eventuell sollte hier die Skalierung vorgeschaltet werden... +# @toDo: Ist es mit vorheriger Skalierung schneller, oder langsamer? videos/.forCompressing/%.trf: videos/.forCompressing/%.video $(FFMPEG) -i $^ \ -filter:v $(ffmpegVideoFilterDeinterlace)$(ffmpegVideoFilterDenoise)$(ffmpegVideoFilterVidstabDetect):result="$@" \ @@ -120,7 +124,7 @@ videos/.forCompressing/%.firstPassLog-0.log: videos/.forCompressing/%.video vide # Die erste Abhängigkeit muss das quellVideo sein! videos/webm/%.webm: videos/.forCompressing/%.video videos/.forCompressing/%.trf videos/.forCompressing/%.firstPassLog-0.log mkdir -p videos/webm - ~/keeper/judo/homepage/redesign2018/markdownExperiment/src/galleryHelper/getVideoDurationJson.py $< + $(GET_VIDEO_DURATION_JSON) $< # -b:v $(VID_CODEC_BITRATE) \ # Second Pass $(FFMPEG) -i $< \ @@ -128,15 +132,9 @@ videos/webm/%.webm: videos/.forCompressing/%.video videos/.forCompressing/%.trf -codec:v $(VID_CODEC) \ -pass 2 \ -passlogfile "$(basename $<).firstPassLog" \ -<<<<<<< HEAD - -deadline best \ - -b:v $(shell /d/temp/cwsvJudo/homepage/redesign2018/markdownExperiment/src/galleryHelper/getVideoDurationJson.py $<)k \ - -aspect $(ffmpegDisplayAspectRatio)\ -======= $(VID_CODEC_DEADLINE) \ - -b:v $(shell ~/keeper/judo/homepage/redesign2018/markdownExperiment/src/galleryHelper/getVideoDurationJson.py $<)k \ - -aspect 16:9 \ ->>>>>>> a763569bdbb2f100ce14b50dcb7828db4e6f4852 + -b:v $(shell $(GET_VIDEO_DURATION_JSON) $<)k \ + -aspect $(ffmpegDisplayAspectRatio)\ -threads 1 \ -speed 0 \ -tile-columns 0 \ @@ -149,18 +147,14 @@ videos/webm/%.webm: videos/.forCompressing/%.video videos/.forCompressing/%.trf -f webm \ $@ -videos/thumbnails/%.png: videos/.forCompressing/%.video +#videos/thumbnails/%.png: videos/.forCompressing/%.video +videos/thumbnails/%.png: videos/webm/%.webm mkdir -p videos/thumbnails # $(FFMPEG) -i "$<" -vf "select=gt(scene\,0.4)" -frames:v 5 -vsync vfr -vf $(ffmpegVideoScaleFilter)fps=fps=1/600 "$@" # $(FFMPEG) -i "$<" -vf $(ffmpegVideoScaleFilter)thumbnail -frames:v 1 "$@" # $(FFMPEG) -i "$<" -filter:v $(ffmpegVideoFilterDeinterlace)$(ffmpegVideoFilterDenoise)$(ffmpegVideoFilterVidstabTransform):input="$(basename $<).trf",$(ffmpegVideoScaleFilter)unsharp=5:5:0.8:3:3:0.4,thumbnail -frames:v 1 "$@" - $(FFMPEG) -i "$<" -filter:v $(ffmpegVideoFilterDeinterlace)$(ffmpegVideoScaleFilter)thumbnail -frames:v 1 "$@" + $(FFMPEG) -i "$<" -aspect $(ffmpegDisplayAspectRatio) -filter:v $(ffmpegVideoFilterDeinterlace)$(ffmpegVideoScaleFilter)thumbnail -frames:v 1 "$@" videos/thumbnails/%.jpg: videos/thumbnails/%.png -<<<<<<< HEAD $(GUETZLI) --quality 90 "$<" "$@" -======= -# $(GUETZLI) --quality 90 "$<" "$@" - convert "$<" "$@" - ->>>>>>> a763569bdbb2f100ce14b50dcb7828db4e6f4852 +# convert "$<" "$@" diff --git a/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefiles.vidGal.d/Makefile.vidGal b/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefiles.vidGal.d/Makefile.vidGal new file mode 100644 index 0000000..82384b3 --- /dev/null +++ b/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefiles.vidGal.d/Makefile.vidGal @@ -0,0 +1,42 @@ +include Makefile.vidGal.cfg + +.PHONY: all clean +all: $(webmVideos) $(jpegThumbs) + +clean: + $(RM) \ + $(vidstabLogs) \ + $(firstPassLogs) \ + $(webmVideos) \ + $(jpegThumbs) + +.PHONY: thumbnails +thumbnails: $(jpegThumbs) + +videos/thumbnails/%.jpg: videos/.forCompressing/%.video + make --include-dir=${makefileDir} --file=${makefileDir}/Makefile.webmCompress $@ + +.PHONY: echo +echo: + @echo $(webmVideos) + @echo $(firstPassLogs) + @echo $(targetSourceDirectories) + +# Erzeugen der Targets +# @todo das muss ich immer noch einzeln aufrufen ... +.PHONY: targetSources +targetSources: + mkdir -p videos/.forCompressing + for directory in $(targetSourceDirectories) ;\ + do for file in $${directory}/*.*;\ + do \ + checkSum=$$(sha512sum $${file});\ + ln -f $${file} videos/.forCompressing/$${checkSum%%\ *}.video;\ + done;\ + done; + +# target und dependencies müssen noch angepasst werden +# Die erste Abhängigkeit muss das quellVideo sein! +videos/webm/%.webm: videos/.forCompressing/%.video + make --include-dir=${makefileDir} --file=${makefileDir}/Makefile.webmCompress $@ + diff --git a/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefiles.vidGal.d/Makefile.vidGal.cfg b/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefiles.vidGal.d/Makefile.vidGal.cfg new file mode 100644 index 0000000..5eda504 --- /dev/null +++ b/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefiles.vidGal.d/Makefile.vidGal.cfg @@ -0,0 +1,15 @@ +defaultTargetSourceDirectories = $(sort $(dir $(wildcard ./videos/aufnahmen/*/))) +#targetSourceDirectories = $(sort $(dir $(wildcard ./videos/aufnahmen/*/))) + +targetSourceDirectories := $(if $(targetSourceDirectories), $(targetSourceDirectories), $(defaultTargetSourceDirectories)) + +sourceVideos = $(wildcard videos/.forCompressing/*.video) + +# Zwischentargets, für ein clean +vidstabLogs = $(addsuffix .trf, $(basename $(sourceVideos))) +firstPassLogs = $(addsuffix .firstPassLog-0.log, $(basename $(sourceVideos))) + +webmVideos = $(addprefix videos/webm/, $(addsuffix .webm, $(basename $(notdir $(sourceVideos))))) +jpegThumbs = $(addprefix videos/thumbnails/, $(addsuffix .jpg, $(basename $(notdir $(sourceVideos))))) + +makefileDir = /d/temp/cwsvJudo/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefiles.vidGal.d diff --git a/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefiles.vidGal.d/Makefile.webmCompress b/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefiles.vidGal.d/Makefile.webmCompress new file mode 100644 index 0000000..56e05f9 --- /dev/null +++ b/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefiles.vidGal.d/Makefile.webmCompress @@ -0,0 +1,72 @@ +include Makefile.webmCompress.cfg + +.SECONDARY: $(vidstabLogs) $(firstPassLogs) + +.DEFAULT: info +info: + @echo Es muss ein Target übergeben werden! + +# Die Stabilisierungsberechnung: +# eventuell sollte hier die Skalierung vorgeschaltet werden... +# @toDo: Ist es mit vorheriger Skalierung schneller, oder langsamer? +videos/.forCompressing/%.trf: videos/.forCompressing/%.video + $(FFMPEG) -i $^ \ + -filter:v $(ffmpegVideoFilterDeinterlace)$(ffmpegVideoFilterDenoise)$(ffmpegVideoFilterVidstabDetect):result="$@" \ + -f null \ + - + +# First Pass +# @todo: irgendwo habe ich mal gelesen, dass man den ersten Pass auch +# als ansehbares Video (mit höchster Qualittätseinstellung) speichern +# kann. Wäre praktisch für eine leicht schnellere Verfügbarkeit. +videos/.forCompressing/%.firstPassLog-0.log: videos/.forCompressing/%.video videos/.forCompressing/%.trf + $(FFMPEG) -i $< \ + -filter:v $(ffmpegVideoFilterDeinterlace)$(ffmpegVideoFilterDenoise)$(ffmpegVideoFilterVidstabTransform):input="$(basename $<).trf",$(ffmpegVideoScaleFilter)unsharp=5:5:0.8:3:3:0.4 \ + -codec:v $(VID_CODEC) \ + -pass 1 \ + -passlogfile "$(basename $<).firstPassLog" \ + -threads 1 \ + -speed 4 \ + -tile-columns 0 \ + -frame-parallel 0 \ + -g 9999 \ + -aq-mode 0 \ + -an \ + -f webm \ + -y \ + /dev/null + +# Second Pass +# - Die erste Abhängigkeit muss das quellVideo sein! +videos/webm/%.webm: videos/.forCompressing/%.video videos/.forCompressing/%.trf videos/.forCompressing/%.firstPassLog-0.log + mkdir -p videos/webm + $(FFMPEG) -i $< \ + -filter:v $(ffmpegVideoFilterDeinterlace)$(ffmpegVideoFilterDenoise)$(ffmpegVideoFilterVidstabTransform):input="$(basename $<).trf",$(ffmpegVideoScaleFilter)unsharp=5:5:0.8:3:3:0.4 \ + -codec:v $(VID_CODEC) \ + -pass 2 \ + -passlogfile "$(basename $<).firstPassLog" \ + $(VID_CODEC_DEADLINE) \ + -b:v $(shell $(GET_VIDEO_DURATION_JSON) $<)k \ + -threads 1 \ + -speed 0 \ + -tile-columns 0 \ + -frame-parallel 0 \ + -auto-alt-ref 1 \ + -lag-in-frames 25 \ + -g 9999 \ + -aq-mode 0 \ + -an \ + -f webm \ + $@ + +videos/thumbnails/%.png: videos/.forCompressing/%.video + mkdir -p videos/thumbnails +# $(FFMPEG) -i "$<" -vf "select=gt(scene\,0.4)" -frames:v 5 -vsync vfr -vf $(ffmpegVideoScaleFilter)fps=fps=1/600 "$@" +# $(FFMPEG) -i "$<" -vf $(ffmpegVideoScaleFilter)thumbnail -frames:v 1 "$@" +# $(FFMPEG) -i "$<" -filter:v $(ffmpegVideoFilterDeinterlace)$(ffmpegVideoFilterDenoise)$(ffmpegVideoFilterVidstabTransform):input="$(basename $<).trf",$(ffmpegVideoScaleFilter)unsharp=5:5:0.8:3:3:0.4,thumbnail -frames:v 1 "$@" +# $(FFMPEG) -i "$<" -aspect $(ffmpegDisplayAspectRatio) -filter:v $(ffmpegVideoFilterDeinterlace)$(ffmpegVideoScaleFilter)thumbnail -frames:v 1 "$@" + $(FFMPEG) -i "$<" -filter:v $(ffmpegVideoFilterDeinterlace)$(ffmpegVideoScaleFilter)thumbnail -frames:v 1 "$@" + +videos/thumbnails/%.jpg: videos/thumbnails/%.png + $(GUETZLI) --quality 90 "$<" "$@" +# convert "$<" "$@" diff --git a/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefiles.vidGal.d/Makefile.webmCompress.cfg b/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefiles.vidGal.d/Makefile.webmCompress.cfg new file mode 100644 index 0000000..e6f9bf5 --- /dev/null +++ b/homepage/redesign2018/markdownExperiment/src/Makefiles/Makefiles.vidGal.d/Makefile.webmCompress.cfg @@ -0,0 +1,51 @@ +#FFMPEG = /c/proggis/media/editoren/ffmpeg-4.0.2-win64-static/bin/ffmpeg.exe +FFMPEG = ffmpeg +GUETZLI = /d/projekte/tests/guetzli.git/bin/Release/guetzli.exe +#GUETZLI = /home/marko/proggis/guetzli/bin/Release/guetzli + +DEFAULT_FFMPEG = ffmpeg +#DEFAULT_FFMPEG = /c/proggis/media/editoren/ffmpeg-4.0.2-win64-static/bin/ffmpeg.exe + +GET_VIDEO_DURATION_JSON = /d/temp/cwsvJudo/homepage/redesign2018/markdownExperiment/src/galleryHelper/getVideoDurationJson.py + + +# Für eine schnelle Komprimierung libvpx, sonst vp9 +DEFAULT_VID_CODEC_HEIGHT = 360 +DEFAULT_VID_CODEC_WIDTH = -2 +DEFAULT_VID_CODEC_BITRATE = 500k +DEFAULT_VID_CODEC = libvpx-vp9 + +# Standardwerte auf die benutzen Variablen schreiben, falls diese noch +# nicht (z.B. aus dem Terminal heraus oder über ein IncludeCfgFile) +# gesetzt worden sind +VID_CODEC_BITRATE := $(if $(VID_CODEC_BITRATE),$(VID_CODEC_BITRATE),$(DEFAULT_VID_CODEC_BITRATE)) +VID_CODEC_HEIGHT := $(if $(VID_CODEC_HEIGHT),$(VID_CODEC_HEIGHT),$(DEFAULT_VID_CODEC_HEIGHT)) +VID_CODEC_WIDTH := $(if $(VID_CODEC_WIDTH),$(VID_CODEC_WIDTH),$(DEFAULT_VID_CODEC_WIDTH)) +VID_CODEC := $(if $(VID_CODEC),$(VID_CODEC),$(DEFAULT_VID_CODEC)) + +defaultTargetSourceDirectories = $(sort $(dir $(wildcard ./videos/aufnahmen/*/))) +VID_CODEC_DEADLINE := -deadline best +#VID_CODEC_DEADLINE := -deadline realtime + +targetSourceDirectories = $(sort $(dir $(wildcard ./videos/aufnahmen/*/))) + +targetSourceDirectories := $(if $(targetSourceDirectories), $(targetSourceDirectories), $(defaultTargetSourceDirectories)) +sourceVideos = $(wildcard videos/.forCompressing/*.video) + +vidstabLogs = $(addsuffix .trf, $(basename $(sourceVideos))) +firstPassLogs = $(addsuffix .firstPassLog-0.log, $(basename $(sourceVideos))) +webmVideos = $(addprefix videos/webm/, $(addsuffix .webm, $(basename $(notdir $(sourceVideos))))) +jpegThumbs = $(addprefix videos/thumbnails/, $(addsuffix .jpg, $(basename $(notdir $(sourceVideos))))) + +# das result= fehlt absichtlich +ffmpegVideoFilterVidstabDetect = vidstabdetect=shakiness=10:accuracy=15 +# das input= fehlt absichtlich +ffmpegVideoFilterVidstabTransform = vidstabtransform=optzoom=2:interpol=bicubic:smoothing=30 + +ffmpegVideoScaleFilter = scale=$(VID_CODEC_WIDTH):$(VID_CODEC_HEIGHT):sws_flags=lanczos, +ffmpegVideoFilterDeinterlace = yadif, +ffmpegVideoFilterDenoise = nlmeans, +#ffmpegVideoFilterDenoise = hqdn3d, +#ffmpegDisplayAspectRatio = 16:9 +#ffmpegDisplayAspectRatio = 9:16 + diff --git a/homepage/redesign2018/markdownExperiment/src/css/cwsvJudo-2018-wkKalender.css b/homepage/redesign2018/markdownExperiment/src/css/cwsvJudo-2018-wkKalender.css index 87fbd74..28a7ab3 100644 --- a/homepage/redesign2018/markdownExperiment/src/css/cwsvJudo-2018-wkKalender.css +++ b/homepage/redesign2018/markdownExperiment/src/css/cwsvJudo-2018-wkKalender.css @@ -809,7 +809,7 @@ } .textoverlayedImage > div { z-index: 99; - width: 70%; + width: fit-content; position: absolute; top: 50%; left: 50%; @@ -834,6 +834,7 @@ } .wkBoxMediaGallery > *{ flex-basis:50%; + padding: 5%; } diff --git a/homepage/redesign2018/markdownExperiment/src/md/hilfsmittel.md b/homepage/redesign2018/markdownExperiment/src/md/hilfsmittel.md index 13f785c..c5178f8 100644 --- a/homepage/redesign2018/markdownExperiment/src/md/hilfsmittel.md +++ b/homepage/redesign2018/markdownExperiment/src/md/hilfsmittel.md @@ -1,6 +1,6 @@ --- lang: de -title: "Helferlein für das Juodtraining" +title: "Helferlein für das Judotraining" description: "Kleine Helferlein für das Training, insbesondere das Judotraining" author: "marko" keywords: diff --git a/homepage/redesign2018/markdownExperiment/src/yaml/index.subNav.yaml b/homepage/redesign2018/markdownExperiment/src/yaml/index.subNav.yaml index 0cbd470..c01dbc0 100644 --- a/homepage/redesign2018/markdownExperiment/src/yaml/index.subNav.yaml +++ b/homepage/redesign2018/markdownExperiment/src/yaml/index.subNav.yaml @@ -6,5 +6,5 @@ subNav: - *galerien - *kontakt - *judoWiki - - *extras + - *tools ... diff --git a/shiai/shiai.2019/2019-06-29--30-Ljs/2019-06-29-LjsU12-Ausschreibung.pdf b/shiai/shiai.2019/2019-06-29--30-Ljs/2019-06-29-LjsU12-Ausschreibung.pdf new file mode 100644 index 0000000..f626800 Binary files /dev/null and b/shiai/shiai.2019/2019-06-29--30-Ljs/2019-06-29-LjsU12-Ausschreibung.pdf differ diff --git a/shiai/shiai.2019/2019-06-29--30-Ljs/2019-06-30-LjsU12-teilnehmerListe.fods b/shiai/shiai.2019/2019-06-29--30-Ljs/2019-06-30-LjsU12-teilnehmerListe.fods new file mode 100644 index 0000000..14bd91f --- /dev/null +++ b/shiai/shiai.2019/2019-06-29--30-Ljs/2019-06-30-LjsU12-teilnehmerListe.fods @@ -0,0 +1,3006 @@ + + + + + 2019-06-15T20:29:11.947317383 + 2016-09-18T15:59:12.989338302 + 2014-03-26T08:26:35Z + 49 + P1DT6H48M27S + LibreOffice/4.3.3.2$Linux_X86_64 LibreOffice_project/430m0$Build-2 + + Tables2014-09-28T16:36:39 + + + 0 + 0 + 28119 + 11613 + + + view1 + + + 1 + 32 + 0 + 0 + 0 + 0 + 2 + 0 + 0 + 0 + 0 + 0 + 72 + 60 + true + + + Altersklassen + 590 + 0 + 72 + 60 + false + true + true + true + 12632256 + true + true + true + true + false + false + 1000 + 1000 + 1 + 1 + true + + + + + false + false + false + false + true + 0 + hAH+/0dlbmVyaWMgUHJpbnRlcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU0dFTlBSVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAMAqgAAAAAAAAAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9R2VuZXJpYyBQcmludGVyCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCm1hcmdpbmRhanVzdG1lbnQ9MCwwLDAsMApjb2xvcmRlcHRoPTI0CnBzbGV2ZWw9MApwZGZkZXZpY2U9MApjb2xvcmRldmljZT0wClBQRENvbnRleERhdGEKUGFnZVNpemU6TGV0dGVyAAASAENPTVBBVF9EVVBMRVhfTU9ERQoARFVQTEVYX09GRg== + Generic Printer + true + true + false + false + false + 1 + true + true + 1000 + true + 3 + true + true + + + de + DE + + + + + + true + 12632256 + true + 1 + 1000 + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + . + + . + + + + + - + + - + + + + + : + + + + + : + + : + + + + + : + + + + + + + + + + + + + + - + + + + + + + + + + + - + + + + + + + + + + - + + + + + + + + + + + - + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + - € + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + DM + + + - + + DM + + + + + DM + + + + - + + DM + + + + + DM + + + - + + DM + + + + + DM + + + + - + + DM + + + + + + DM + + + + + DM + + + + - DM + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + DM + + + + + DM + + + + - + + DM + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + SFr. + + + + SFr. - + + + + + SFr. + + + + + SFr. - + + + + + SFr. + + + + SFr. - + + + + + SFr. + + + + + SFr. - + + + + + + + + + + + - + + + + + + - + + + + + + + + + + + + + + + + - + + + + + + - + + + + + + + + + + + + + + + + + + + + + . + + + + + + + . + + + + + + + + + + : + + + + + + + : + + : + + + + + + + . + + . + + + + : + + + + + + + + - + + + + + + + + + + + - + + + + + + + + + + - + + + + + + + + + + + - + + + + + + + + + + - + + + + + + + + + + + - + + + + + + + + + + - + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ??? + + + + Page 1 + + + + + + + ??? (???) + + + 00.00.0000, 00:00:00 + + + + + Page 1 / 99 + + + + + + ??? + + + + 1 + + + + + + ??? + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + Jahr: + + + 2019 + + + + + + + + + + + Jg. + + + + 2013 + + + 2012 + + + 2011 + + + 2010 + + + 2009 + + + 2008 + + + 2007 + + + 2006 + + + 2005 + + + 2004 + + + 2003 + + + 2002 + + + 2001 + + + 2000 + + + + + + Name + + + Vorname + + + Geb. + + + U + + + GK + + + U7 + + + U8 + + + U9 + + + U10 + + + U11 + + + U12 + + + U13 + + + U14 + + + U15 + + + U16 + + + U17 + + + U18 + + + U19 + + + U20 + + + Kmt + + + Auto + + + Platz + + + + + + Mögel + + + Jan + + + 1969 + + + Ü30 + + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Sultanov + + + Abduazim + + + 1994 + + + U30 + + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Schwope + + + Elly Pauline + + + 1997 + + + U30 + + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Weidensager + + + Nick + + + 1997 + + + U30 + + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Löbling + + + Pascal + + + 2001 + + + 19 + + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + X + + + X + + + + + + + + + Friedrich + + + Sebastian + + + 2006 + + + 14 + + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Graf + + + Rio + + + 2007 + + + 13 + + + + - + + + - + + + - + + + - + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Dumler + + + Arthur + + + 2007 + + + 13 + + + + - + + + - + + + - + + + - + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Čurić + + + Mihail + + + 2008 + + + 12 + + + + - + + + - + + + - + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Herrmann + + + Nelly + + + 2009 + + + 11 + + + + - + + + - + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Mögel + + + Lennox + + + 2009 + + + 11 + + + + - + + + - + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Stohldreier + + + Lea Michelle + + + 2010 + + + 10 + + + + - + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Friedrich + + + Mia Sophie + + + 2010 + + + 10 + + + + - + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Siegmund + + + Jasmin + + + 2010 + + + 10 + + + + - + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Unger + + + Kyra + + + 2010 + + + 10 + + + + - + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Herrmann + + + Ben + + + 2010 + + + 10 + + + + - + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Löbling + + + Nico + + + 2010 + + + 10 + + + + - + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Brittnacher + + + Romy + + + 2011 + + + 9 + + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Löwig + + + Sophia + + + 2011 + + + 9 + + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Friebe + + + Mia Sky + + + 2011 + + + 9 + + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Friedrich + + + Dominic + + + 2011 + + + 9 + + + + - + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Unger + + + Alina-Marie + + + 2012 + + + 8 + + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Baumbach + + + Kurt + + + 2012 + + + 8 + + + + - + + + X + + + X + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + Bunzel + + + Marko + + + + Ü30 + + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + + + + + + + + + + + + + + + + + + + + + Termin: + + + 2019-06-29 + + + + + + + + Wettkampf: + + + Landesjugendspiele 2019 + + + + + + + + AK: + + + U12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Name + + + Vorname + + + T-Shirt Größe + + + + + + Hilbich + + + Florian + + + 146 + + + + + + Rößger + + + Luisa + + + 140 + + + + + + Gerber + + + Max + + + s + + + + + + Köhler + + + Eric + + + 134 + + + + + + Richter + + + Luise + + + 152 + + + + + + Schubert + + + Jenniffer + + + 140 + + + + + + Rößger + + + Thora + + + 140 + + + + + + Gerber + + + Sabina + + + 144 + + + + + + Löschau + + + Aurelius + + + 128 + + + + + + Schubert + + + Colin + + + 128 + + + + + + Graf + + + Rio + + + + + + + Gerber + + + Melina + + + 110 + + + + + + Dumler + + + Arthur + + + 116 + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/shiai/shiai.2019/2019-06-29--30-Ljs/2019-06-30-LjsU14-Ausschreibung.pdf b/shiai/shiai.2019/2019-06-29--30-Ljs/2019-06-30-LjsU14-Ausschreibung.pdf new file mode 100644 index 0000000..3a2bade Binary files /dev/null and b/shiai/shiai.2019/2019-06-29--30-Ljs/2019-06-30-LjsU14-Ausschreibung.pdf differ diff --git a/shiai/shiai.2019/2019-06-29--30-Ljs/Ljs2019-Meldeliste-CWSV.xlsx b/shiai/shiai.2019/2019-06-29--30-Ljs/Ljs2019-Meldeliste-CWSV.xlsx new file mode 100644 index 0000000..cb7d627 Binary files /dev/null and b/shiai/shiai.2019/2019-06-29--30-Ljs/Ljs2019-Meldeliste-CWSV.xlsx differ diff --git a/shiai/teilnehmerListe.fods b/shiai/teilnehmerListe.fods index 9994a92..d64f323 100644 --- a/shiai/teilnehmerListe.fods +++ b/shiai/teilnehmerListe.fods @@ -3002,4 +3002,4 @@ - \ No newline at end of file +