diff --git a/.babelrc b/.babelrc new file mode 100644 index 0000000000..43dbeae492 --- /dev/null +++ b/.babelrc @@ -0,0 +1,11 @@ +{ + "presets": [ + [ + "next/babel", + { + "preset-env": { "targets": { "node": true } } + } + ] + ], + "plugins": [] +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 05c4b0d328..a77e1baee2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,27 +1,43 @@ ENV -public/static/**/ -artworks/ -artworks-BAK/ +.env +.env.development +.env.production + .env.development .env.production -public/static/artworks + +src/countries.json + +geckodriver.log + +artworks/* +# public/artworks/* +public/artworks/**/*.webp +!public/artworks/json/**/*.json +# public/static/**/ +public/cv/**/*.pdf +public/~partytown/ + nexus/ + stat_aggregator/fetch_PCS.py -src/img/artworks -src/travel.json -public/travel.json -public/cv/cv-jonas-oppenlaender.pdf -yarn.lock + +reading_list/tmp.pdf +reading_list/QA/ reading_list/unrecognized.csv reading_list/gephi* reading_list/cache.db reading_list/cache.db.BAK +reading_list/cache.BAK.db reading_list/readlist-full.json reading_list/toreadlist-full.json reading_list/training-data-TODO.csv reading_list/keyword-*.json -./yarn.lock +reading_list/annotations-todo.txt +reading_list/annotations.db + venv + *.BAK *.BAK.sh dist/*.tar.gz @@ -87,5 +103,4 @@ typings/ .env .cache/ -# public yarn-error.log diff --git a/.gitmodules b/.gitmodules index 100cfbf768..9db5476abc 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,9 @@ -[submodule "libs/academicons"] - path = libs/academicons - url = git@github.com:jpswalsh/academicons.git [submodule "libs/bibtex2html"] path = libs/bibtex2html - url = git@github.com:backtracking/bibtex2html.git + url = https://github.com/backtracking/bibtex2html.git +[submodule "libs/academicons"] + path = libs/academicons + url = https://github.com/jpswalsh/academicons.git +[submodule "static/portfolio"] + path = static/portfolio + url = git@github.com:joetm/jonaso.de-portfolio.git diff --git a/Makefile b/Makefile index 7f388d252d..24e32feb85 100755 --- a/Makefile +++ b/Makefile @@ -11,37 +11,103 @@ default: ## make pre-build pre-build actions ## make post-build post build actions ## make fetch-cv get the latex cv from overleaf/github and build it - ## make move-cv move the finished cv and clean up directory ## make dev run the development version of the site ## make refs build the publication list from .bib file - ## make pubs alias of make refs ## make cv build the cv pdf ## make tests run tests (TODO) ## make push push to github + ## make publish push to s3 ## -pre-build: - # cd ./stat_aggregator; \ - # ./fetch_PCS.py +build: + yarn build +pre-build: # academic-cv folder exists? # [ -d "academic-cv" ] && rm -rf academic-cv - make fetch-cv + make fetch-pcs make replace-cv - make bib-json - make build-cv -bib-json: + # make bib-json pandoc-citeproc --bib2json ./src/bibliography/publications.bib > ./src/bibliography/publications.json + python3 fix-publications-json.py + + make build-cv + + +fetch-pcs: + # PCS fetching + cd stat_aggregator; \ + python3 fetch_PCS.py # $? -eq 0 || echo "failed PCS lookup (no internet?)" + +rename-artworks: + cd artworks; \ + ./rename-dalle.sh + ./rename-midjourney.sh + ./rename-stablediffusion.sh + +# copy-portfolio: +# cp -Rf ../jonaso.de-portfolio ./public/portfolio +# rm -rf ./public/portfolio/node_modules +# rm -rf ./public/portfolio/.git +# rm -rf ./public/portfolio/.gitignore +# rm -rf ./public/portfolio/.babelrc +# rm -rf ./public/portfolio/package.json +# rm -rf ./public/portfolio/package-lock.json +# rm -rf ./public/portfolio/yarn.lock +# rm -rf ./public/portfolio/webpack.config.js post-build: + # move cv + mv academic-cv/cv.pdf "public/cv/oppenlaender-cv.pdf" + mv academic-cv/publications.pdf "public/cv/oppenlaender-publications.pdf" + # TODO # mv academic-cv/out.pdf "public/cv/cv-jonas-oppenlaender-`date '+%Y.%m.%d'`.pdf" + mv academic-cv/resume.pdf "public/cv/resume.pdf" + rm -rf academic-cv + + # make refs + # _dir="$(pwd)/src/bibliography" + # create bibliography html + # --style "SIGCHI-Reference-Format" + # -- style "ACM-Reference-Format" + bibtex2html -noheader -nofooter --style "SIGCHI-Reference-Format-MOD" "src/bibliography/publications.bib" + # convert html to json + php ./parse.php + # move json file to public folder + mv "./references.json" ./public/static/ + # copy bib file to public folder + cp "src/bibliography/publications.bib" ./public/static/ + # create detailed references json + python3 ./pyparse.py + # move json file to public folder + # mv ./references-detail.json ./public/static/ + php ./parsePerType.php + # move json file to public folder + # mv ./references-type.json ./public/static/ + rm publications.html + # move bib.html file to public folder + mv ./publications_bib.html ./public/static/ + + # move other files cp ./src/travel.json ./public/ cp ./src/projects.json ./public/static/ cp ./src/news.json ./public/ # cp -rf ./src/img/artworks ./public/static/ - make move-cv mv ./src/bibliography/publications.json ./public/static/publications.json + # copy fetched PCS data + cp ./stat_aggregator/peer-reviews.json ./public/peer-reviews.json + + make process-artworks + + # make copy-portfolio + +process-artworks: + python3 processImages.py + if [ -d "./artworks-json" ];then \ + rm -rf ./artworks-json; \ + fi + fetch-cv: if [ -d "./academic-cv" ];then \ @@ -115,7 +181,7 @@ replace-cv: cd academic-cv; \ sed 's|\\excludefromprint{.*}||g' publication-list.tex | sponge publication-list.tex; \ sed 's|\\definenewtoggle{showpublicationsummary}{false}|\\definenewtoggle{showpublicationsummary}{true}|g' publication-list.tex | sponge publication-list.tex - sed 's|\\definenewtoggle{showmanuscripts}{false}|\\definenewtoggle{showmanuscripts}{true}|g' publication-list.tex | sponge publication-list.tex + sed 's|\\definenewtoggle{showmanuscripts}{true}|\\definenewtoggle{showmanuscripts}{false}|g' publication-list.tex | sponge publication-list.tex build-cv: @@ -134,45 +200,18 @@ build-cv: pdflatex -halt-on-error -synctex=1 -interaction=batchmode resume.tex; \ pdflatex -halt-on-error -synctex=1 -interaction=batchmode resume.tex - -move-cv: - mv academic-cv/cv.pdf "public/cv/oppenlaender-cv.pdf" - mv academic-cv/publications.pdf "public/cv/oppenlaender-publications.pdf" - # TODO # mv academic-cv/out.pdf "public/cv/cv-jonas-oppenlaender-`date '+%Y.%m.%d'`.pdf" - mv academic-cv/resume.pdf "public/cv/resume.pdf" - rm -rf academic-cv - -pubs: - make refs - -refs: - # _dir="$(pwd)/src/bibliography" - # create bibliography html - # --style "SIGCHI-Reference-Format" - # -- style "ACM-Reference-Format" - bibtex2html -noheader -nofooter --style "SIGCHI-Reference-Format-MOD" "src/bibliography/publications.bib" - # convert html to json - php ./parse.php - # move json file to public folder - mv "./references.json" ./public/static/ - # copy bib file to public folder - cp "src/bibliography//publications.bib" ./public/static/ - - # create detailed references json - python3 ./pyparse.py - # move json file to public folder - # mv ./references-detail.json ./public/static/ - - php ./parsePerType.php - # move json file to public folder - # mv ./references-type.json ./public/static/ - rm publications.html - - # move bib.html file to public folder - mv ./publications_bib.html ./public/static/ - push: # push to github git add -A git commit git push + + +invalidate: + aws cloudfront create-invalidation --distribution-id E1F8XE39H6VFRU --paths "/*" + + +publish: + # push to s3 + aws s3 sync --delete ./public/ s3://jonaso.de + diff --git a/artworks/CLIP Guided Diffusion/Happy Times/1/300.png b/artworks/CLIP Guided Diffusion/Happy Times/1/300.png deleted file mode 100644 index 46aaa7f9ca..0000000000 Binary files a/artworks/CLIP Guided Diffusion/Happy Times/1/300.png and /dev/null differ diff --git a/artworks/CLIP Guided Diffusion/Happy Times/1/input.txt b/artworks/CLIP Guided Diffusion/Happy Times/1/input.txt deleted file mode 100644 index fe25b74c3e..0000000000 --- a/artworks/CLIP Guided Diffusion/Happy Times/1/input.txt +++ /dev/null @@ -1,13 +0,0 @@ -prompts = ['happy times, painting, trending on artstation'] -image_prompts = [] -batch_size = 1 -clip_guidance_scale = 1000 # Controls how much the image should look like the prompt. -tv_scale = 150 # Controls the smoothness of the final output. -range_scale = 50 # Controls how far out of range RGB values are allowed to be. -cutn = 16 -n_batches = 1 -init_image = None # This can be an URL or Colab local path and must be in quotes. -skip_timesteps = 0 # This needs to be between approx. 200 and 500 when using an init image. - # Higher values make the output look more like the init. -init_scale = 0 # This enhances the effect of the init image, a good value is 1000. -seed = 0 \ No newline at end of file diff --git a/artworks/DISCO Diffusion v5/end of the world/download.png b/artworks/DISCO Diffusion v5/end of the world/download.png deleted file mode 100644 index 38c06477b1..0000000000 Binary files a/artworks/DISCO Diffusion v5/end of the world/download.png and /dev/null differ diff --git a/artworks/Multi Perceptor VQGAN/Jesus/1/250.png b/artworks/Multi Perceptor VQGAN/Jesus/1/250.png deleted file mode 100644 index fb3518dd7b..0000000000 Binary files a/artworks/Multi Perceptor VQGAN/Jesus/1/250.png and /dev/null differ diff --git a/artworks/Multi Perceptor VQGAN/Jesus/1/input.txt b/artworks/Multi Perceptor VQGAN/Jesus/1/input.txt deleted file mode 100644 index 6648a581f9..0000000000 --- a/artworks/Multi Perceptor VQGAN/Jesus/1/input.txt +++ /dev/null @@ -1,87 +0,0 @@ -https://colab.research.google.com/gist/joetm/b4d166ce88f725e09291080fee5bec13/multi-perceptor-vqgan-clip-public.ipynb#scrollTo=YWGR8q9AT8uk - - -What do you want to see? - -text_prompt: -Jesus is here. Praise the lord. Massive resurrection. by John Glover. Trending on artstation -gen_seed: --1 -If you want to keep starting from the same point, set gen_seed to a positive number. -1 will make it random every time. -init_image: -Insert text here -width: -500 -height: -412 -max_iter: -600 -There are different ways of generating the random starting point, when not using an init image. These influence how the image turns out. The default VQGAN ZRand is good, but some models and subjects may do better with perlin or pyramid noise. - -rand_init_mode: - -Perlin Noise -perlin_octaves: - -7 -perlin_weight: - -0.22 -pyramid_octaves: - -5 -pyramid_decay: - -0.99 -How many slices of the image should be sent to CLIP each iteration to score? Higher numbers are better, but cost more memory. If you are running into memory issues try lowering this value. - -cut_n: -64 -One clip model is good. Two is better? You may need to reduce the number of cuts to support having more than one CLIP model. CLIP is what scores the image against your prompt and each model has slightly different ideas of what things are. - -ViT-B/32 is fast and good and what most people use to begin with -clip_model: - -ViT-B/32 -clip_model2: - -None -clip1_weight: - -0.5 -Picking a different VQGAN model will impact how an image generates. Think of this as giving the generator a different set of brushes and paints to work with. CLIP is still the "eyes" and is judging the image against your prompt but using different brushes will make a different image. - -vqgan_imagenet_f16_16384 is the default and what most people use -vqgan_model: - -vqgan_imagenet_f16_16384 -Learning rates greatly impact how quickly an image can generate, or if an image can generate at all. The first learning rate is only for the first 50 iterations. The epoch rate is what is used after reaching the first mse epoch. You can try lowering the epoch rate while raising the initial learning rate and see what happens - -learning_rate: -0.2 -learning_rate_epoch: -0.2 -How much should we try to match the init image, or if no init image how much should we resist change after reaching the first epoch? - -mse_weight: -0.5 -Adding some TV may make the image blurrier but also helps to get rid of noise. A good value to try might be 0.1. - -tv_weight: -0.0 -Should the total weight of the text prompts stay in the same range, relative to other loss functions? - -normalize_prompt_weights: - -Enabling the EMA tensor will cause the image to be slower to generate but may help it be more cohesive. This can also help keep the final image closer to the init image, if you are providing one. - -use_ema_tensor: - -If you want to generate a video of the run, you need to save the frames as you go. The more frequently you save, the longer the video but the slower it will take to generate. - -save_art_output: - -save_frames_for_video: - -save_frequency_for_video: -3 diff --git a/artworks/Multi Perceptor VQGAN/Jesus/2/75.png b/artworks/Multi Perceptor VQGAN/Jesus/2/75.png deleted file mode 100644 index 7e6edc2332..0000000000 Binary files a/artworks/Multi Perceptor VQGAN/Jesus/2/75.png and /dev/null differ diff --git a/artworks/Multi Perceptor VQGAN/Jesus/2/input.txt b/artworks/Multi Perceptor VQGAN/Jesus/2/input.txt deleted file mode 100644 index bb319b1ff9..0000000000 --- a/artworks/Multi Perceptor VQGAN/Jesus/2/input.txt +++ /dev/null @@ -1,91 +0,0 @@ -https://colab.research.google.com/gist/joetm/b4d166ce88f725e09291080fee5bec13/multi-perceptor-vqgan-clip-public.ipynb#scrollTo=YWGR8q9AT8uk - -Seed 63735 - - - -What do you want to see? - -text_prompt: -Rockstar Jesus. Jesus rocks. by John Glover. Trending on artstation - -gen_seed: --1 -If you want to keep starting from the same point, set gen_seed to a positive number. -1 will make it random every time. -init_image: -Insert text here -width: -500 -height: -412 -max_iter: -600 -There are different ways of generating the random starting point, when not using an init image. These influence how the image turns out. The default VQGAN ZRand is good, but some models and subjects may do better with perlin or pyramid noise. - -rand_init_mode: - -Perlin Noise -perlin_octaves: - -7 -perlin_weight: - -0.22 -pyramid_octaves: - -5 -pyramid_decay: - -0.99 -How many slices of the image should be sent to CLIP each iteration to score? Higher numbers are better, but cost more memory. If you are running into memory issues try lowering this value. - -cut_n: -64 -One clip model is good. Two is better? You may need to reduce the number of cuts to support having more than one CLIP model. CLIP is what scores the image against your prompt and each model has slightly different ideas of what things are. - -ViT-B/32 is fast and good and what most people use to begin with -clip_model: - -ViT-B/32 -clip_model2: - -None -clip1_weight: - -0.5 -Picking a different VQGAN model will impact how an image generates. Think of this as giving the generator a different set of brushes and paints to work with. CLIP is still the "eyes" and is judging the image against your prompt but using different brushes will make a different image. - -vqgan_imagenet_f16_16384 is the default and what most people use -vqgan_model: - -vqgan_imagenet_f16_16384 -Learning rates greatly impact how quickly an image can generate, or if an image can generate at all. The first learning rate is only for the first 50 iterations. The epoch rate is what is used after reaching the first mse epoch. You can try lowering the epoch rate while raising the initial learning rate and see what happens - -learning_rate: -0.2 -learning_rate_epoch: -0.2 -How much should we try to match the init image, or if no init image how much should we resist change after reaching the first epoch? - -mse_weight: -0.5 -Adding some TV may make the image blurrier but also helps to get rid of noise. A good value to try might be 0.1. - -tv_weight: -0.0 -Should the total weight of the text prompts stay in the same range, relative to other loss functions? - -normalize_prompt_weights: - -Enabling the EMA tensor will cause the image to be slower to generate but may help it be more cohesive. This can also help keep the final image closer to the init image, if you are providing one. - -use_ema_tensor: - -If you want to generate a video of the run, you need to save the frames as you go. The more frequently you save, the longer the video but the slower it will take to generate. - -save_art_output: - -save_frames_for_video: - -save_frequency_for_video: -3 diff --git a/artworks/Multi Perceptor VQGAN/Skulls/2/100.png b/artworks/Multi Perceptor VQGAN/Skulls/2/100.png deleted file mode 100644 index d577a8b776..0000000000 Binary files a/artworks/Multi Perceptor VQGAN/Skulls/2/100.png and /dev/null differ diff --git a/artworks/Multi Perceptor VQGAN/Skulls/2/input.txt b/artworks/Multi Perceptor VQGAN/Skulls/2/input.txt deleted file mode 100644 index d4d9e7045a..0000000000 --- a/artworks/Multi Perceptor VQGAN/Skulls/2/input.txt +++ /dev/null @@ -1,91 +0,0 @@ -https://colab.research.google.com/drive/1peZ98vBihDD9A1v7JdH5VvHDUuW5tcRK?usp=sharing#scrollTo=YWGR8q9AT8uk - - -Seed 4667 - -What do you want to see? - -text_prompt: -Puking Skulls. Painting by Gren Rulowski. Trending on artstation #badass -gen_seed: --1 -If you want to keep starting from the same point, set gen_seed to a positive number. -1 will make it random every time. -init_image: -Insert text here -width: -412 -height: -412 -max_iter: -600 -There are different ways of generating the random starting point, when not using an init image. These influence how the image turns out. The default VQGAN ZRand is good, but some models and subjects may do better with perlin or pyramid noise. - -rand_init_mode: - -VQGAN ZRand -perlin_octaves: - -7 -perlin_weight: - -0.22 -pyramid_octaves: - -5 -pyramid_decay: - -0.99 -How many slices of the image should be sent to CLIP each iteration to score? Higher numbers are better, but cost more memory. If you are running into memory issues try lowering this value. - -cut_n: -64 -One clip model is good. Two is better? You may need to reduce the number of cuts to support having more than one CLIP model. CLIP is what scores the image against your prompt and each model has slightly different ideas of what things are. - -ViT-B/32 is fast and good and what most people use to begin with -clip_model: - -ViT-B/32 -clip_model2: - -None -clip1_weight: - -0.5 -Picking a different VQGAN model will impact how an image generates. Think of this as giving the generator a different set of brushes and paints to work with. CLIP is still the "eyes" and is judging the image against your prompt but using different brushes will make a different image. - -vqgan_imagenet_f16_16384 is the default and what most people use -vqgan_model: - -vqgan_imagenet_f16_16384 -Learning rates greatly impact how quickly an image can generate, or if an image can generate at all. The first learning rate is only for the first 50 iterations. The epoch rate is what is used after reaching the first mse epoch. You can try lowering the epoch rate while raising the initial learning rate and see what happens - -learning_rate: -0.2 -learning_rate_epoch: -0.2 -How much should we try to match the init image, or if no init image how much should we resist change after reaching the first epoch? - -mse_weight: -0.5 -Adding some TV may make the image blurrier but also helps to get rid of noise. A good value to try might be 0.1. - -tv_weight: -0.0 -Should the total weight of the text prompts stay in the same range, relative to other loss functions? - -normalize_prompt_weights: - -Enabling the EMA tensor will cause the image to be slower to generate but may help it be more cohesive. This can also help keep the final image closer to the init image, if you are providing one. - -use_ema_tensor: - -If you want to generate a video of the run, you need to save the frames as you go. The more frequently you save, the longer the video but the slower it will take to generate. - -save_art_output: - -save_frames_for_video: - -save_frequency_for_video: -3 - - diff --git a/artworks/PIXRAY/Harpiye/1/download (6).png b/artworks/PIXRAY/Harpiye/1/download (6).png deleted file mode 100644 index 644de464d4..0000000000 Binary files a/artworks/PIXRAY/Harpiye/1/download (6).png and /dev/null differ diff --git a/artworks/PIXRAY/Harpiye/1/input.txt b/artworks/PIXRAY/Harpiye/1/input.txt deleted file mode 100644 index 1b018480be..0000000000 --- a/artworks/PIXRAY/Harpiye/1/input.txt +++ /dev/null @@ -1,14 +0,0 @@ -https://colab.research.google.com/gist/joetm/33b5d0bcc86a35c74ebceb5d130ad4a3/pixray-aesthetic.ipynb#scrollTo=696nYXtg7BjJ - -#aesthetic -pixray.run( - "harpiye vengeance, painting, trending on artstation", - "vdiff", - size=[512,512], - learning_rate=0.01, - custom_loss="aesthetic", - aesthetic_weight=0.01, - output="aes.png" -) - -seed: 15085261298689726370 diff --git a/artworks/PIXRAY/Mind Over Matter/2/download (6).png b/artworks/PIXRAY/Mind Over Matter/2/download (6).png deleted file mode 100644 index f4844f2a79..0000000000 Binary files a/artworks/PIXRAY/Mind Over Matter/2/download (6).png and /dev/null differ diff --git a/artworks/PIXRAY/Mind Over Matter/2/input.txt b/artworks/PIXRAY/Mind Over Matter/2/input.txt deleted file mode 100644 index 6e6aa63a86..0000000000 --- a/artworks/PIXRAY/Mind Over Matter/2/input.txt +++ /dev/null @@ -1,14 +0,0 @@ -https://colab.research.google.com/gist/joetm/33b5d0bcc86a35c74ebceb5d130ad4a3/pixray-aesthetic.ipynb#scrollTo=D4M7gWSh6oRp - -pixray.run( - "Mind over Matter - Eat The Soul. Album cover by Storm Thorgerson, trending on artstation", - "vdiff", - size=[512,512], - learning_rate=0.01, - custom_loss="aesthetic", - aesthetic_weight=0.01, - output="aes.png" -) - -Using seed: 4512046798876538000 - diff --git a/artworks/PIXRAY/Replicate/replicate-prediction-bars3h5v2zgpnonstcnckd5xde.png b/artworks/PIXRAY/Replicate/replicate-prediction-bars3h5v2zgpnonstcnckd5xde.png deleted file mode 100644 index 78881fc2f6..0000000000 Binary files a/artworks/PIXRAY/Replicate/replicate-prediction-bars3h5v2zgpnonstcnckd5xde.png and /dev/null differ diff --git a/artworks/PIXRAY/Replicate/url.txt b/artworks/PIXRAY/Replicate/url.txt deleted file mode 100644 index 48e27d89c9..0000000000 --- a/artworks/PIXRAY/Replicate/url.txt +++ /dev/null @@ -1 +0,0 @@ -https://replicate.com/pixray/text2image \ No newline at end of file diff --git a/artworks/PIXRAY/Scream/1/download.png b/artworks/PIXRAY/Scream/1/download.png deleted file mode 100644 index 505ec3cf0b..0000000000 Binary files a/artworks/PIXRAY/Scream/1/download.png and /dev/null differ diff --git a/artworks/PIXRAY/Scream/1/input.txt b/artworks/PIXRAY/Scream/1/input.txt deleted file mode 100644 index bcc6beb9ad..0000000000 --- a/artworks/PIXRAY/Scream/1/input.txt +++ /dev/null @@ -1,16 +0,0 @@ -https://colab.research.google.com/gist/joetm/33b5d0bcc86a35c74ebceb5d130ad4a3/pixray-aesthetic.ipynb#scrollTo=696nYXtg7BjJ - - -pixray.run( - "Eternal Scream. The Abyss. album cover artwork, trending on /r/art", - "vdiff", - size=[512,512], - learning_rate=0.01, - custom_loss="aesthetic", - aesthetic_weight=0.01, - output="aes.png" -) - -model: yfcc_2 - -Using seed: 10970191356885322271 \ No newline at end of file diff --git a/artworks/PIXRAY/Witch/1/download (4).png b/artworks/PIXRAY/Witch/1/download (4).png deleted file mode 100644 index 52360a51e8..0000000000 Binary files a/artworks/PIXRAY/Witch/1/download (4).png and /dev/null differ diff --git a/artworks/PIXRAY/Witch/1/input.txt b/artworks/PIXRAY/Witch/1/input.txt deleted file mode 100644 index 19fcd51054..0000000000 --- a/artworks/PIXRAY/Witch/1/input.txt +++ /dev/null @@ -1,15 +0,0 @@ -https://colab.research.google.com/gist/joetm/33b5d0bcc86a35c74ebceb5d130ad4a3/pixray-aesthetic.ipynb#scrollTo=D4M7gWSh6oRp - - -#aesthetic -pixray.run( - "witch burns at the stake, burning witch, oil on canvas, trending on wikiart", - "vdiff", - size=[512,512], - learning_rate=0.05, - custom_loss="aesthetic", - aesthetic_weight=0.9, - output="aes.png" -) - -Using seed: 11008101636563103958 diff --git a/artworks/PIXRAY/Witch/2/download (11).png b/artworks/PIXRAY/Witch/2/download (11).png deleted file mode 100644 index 06ab681e22..0000000000 Binary files a/artworks/PIXRAY/Witch/2/download (11).png and /dev/null differ diff --git a/artworks/PIXRAY/Witch/2/input.txt b/artworks/PIXRAY/Witch/2/input.txt deleted file mode 100644 index 5b2929dda9..0000000000 --- a/artworks/PIXRAY/Witch/2/input.txt +++ /dev/null @@ -1,15 +0,0 @@ -https://colab.research.google.com/gist/joetm/33b5d0bcc86a35c74ebceb5d130ad4a3/pixray-aesthetic.ipynb#scrollTo=D4M7gWSh6oRp - - -#aesthetic -pixray.run( - "witch burns at the stake, burning witch, painting, oil on canvas, trending on wikiart", - "vdiff", - size=[512,512], - learning_rate=0.3, - custom_loss="aesthetic", - aesthetic_weight=0.1, - output="aes.png" -) - -Using seed: 5845347869559973019 diff --git a/artworks/STYLEGAN2CLIP/Zuckerberg/download (1).png b/artworks/STYLEGAN2CLIP/Zuckerberg/download (1).png deleted file mode 100644 index b3f1fe6d3c..0000000000 Binary files a/artworks/STYLEGAN2CLIP/Zuckerberg/download (1).png and /dev/null differ diff --git a/artworks/STYLEGAN2CLIP/Zuckerberg/download (2).png b/artworks/STYLEGAN2CLIP/Zuckerberg/download (2).png deleted file mode 100644 index 8833965e11..0000000000 Binary files a/artworks/STYLEGAN2CLIP/Zuckerberg/download (2).png and /dev/null differ diff --git a/artworks/STYLEGAN2CLIP/Zuckerberg/download (3).png b/artworks/STYLEGAN2CLIP/Zuckerberg/download (3).png deleted file mode 100644 index 61b7461d12..0000000000 Binary files a/artworks/STYLEGAN2CLIP/Zuckerberg/download (3).png and /dev/null differ diff --git a/artworks/STYLEGAN2CLIP/Zuckerberg/download (4).png b/artworks/STYLEGAN2CLIP/Zuckerberg/download (4).png deleted file mode 100644 index 45f7ba83bb..0000000000 Binary files a/artworks/STYLEGAN2CLIP/Zuckerberg/download (4).png and /dev/null differ diff --git a/artworks/VQGANCLIP/Academia/Tenured Professor/1/400.png b/artworks/VQGANCLIP/Academia/Tenured Professor/1/400.png deleted file mode 100644 index 5f1a611779..0000000000 Binary files a/artworks/VQGANCLIP/Academia/Tenured Professor/1/400.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Academia/Tenured Professor/1/input.txt b/artworks/VQGANCLIP/Academia/Tenured Professor/1/input.txt deleted file mode 100644 index 7e2f1c39ee..0000000000 --- a/artworks/VQGANCLIP/Academia/Tenured Professor/1/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: rage against the tenured professor, abstract painting, trending on /r/art - diff --git a/artworks/VQGANCLIP/Aliens/Third Eye/6/100.png b/artworks/VQGANCLIP/Aliens/Third Eye/6/100.png deleted file mode 100644 index 50e682d968..0000000000 Binary files a/artworks/VQGANCLIP/Aliens/Third Eye/6/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Aliens/Third Eye/6/input.txt b/artworks/VQGANCLIP/Aliens/Third Eye/6/input.txt deleted file mode 100644 index d1b425b04b..0000000000 --- a/artworks/VQGANCLIP/Aliens/Third Eye/6/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"the third eye controls the soul" marker sketch by Csikszentmihalyi, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Archaeology/Antikythera Mechanism/1/100.png b/artworks/VQGANCLIP/Archaeology/Antikythera Mechanism/1/100.png deleted file mode 100644 index 69b5f65a5d..0000000000 Binary files a/artworks/VQGANCLIP/Archaeology/Antikythera Mechanism/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Archaeology/Antikythera Mechanism/1/input.txt b/artworks/VQGANCLIP/Archaeology/Antikythera Mechanism/1/input.txt deleted file mode 100644 index 3f91fddea4..0000000000 --- a/artworks/VQGANCLIP/Archaeology/Antikythera Mechanism/1/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: "Antikythera Mechanism", archaeological artifact, trending on reddit - -model: vqgan_imagenet_f16_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Archaeology/Antikythera Mechanism/3/75.png b/artworks/VQGANCLIP/Archaeology/Antikythera Mechanism/3/75.png deleted file mode 100644 index 31f9370c46..0000000000 Binary files a/artworks/VQGANCLIP/Archaeology/Antikythera Mechanism/3/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Archaeology/Antikythera Mechanism/3/input.txt b/artworks/VQGANCLIP/Archaeology/Antikythera Mechanism/3/input.txt deleted file mode 100644 index d663f5528e..0000000000 --- a/artworks/VQGANCLIP/Archaeology/Antikythera Mechanism/3/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: "Antikythera Mechanism", archaeological artifact, trending on /r/Archaeology - -model: vqgan_imagenet_f16_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Artificial Intelligence/AI Overlord/2/75.png b/artworks/VQGANCLIP/Artificial Intelligence/AI Overlord/2/75.png deleted file mode 100644 index 4e288dbf59..0000000000 Binary files a/artworks/VQGANCLIP/Artificial Intelligence/AI Overlord/2/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Artificial Intelligence/AI Overlord/2/input.txt b/artworks/VQGANCLIP/Artificial Intelligence/AI Overlord/2/input.txt deleted file mode 100644 index a231b2e9f8..0000000000 --- a/artworks/VQGANCLIP/Artificial Intelligence/AI Overlord/2/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: AI Overlord. Overlord of Artificial Intelligence|Portrait painting, trending on /r/art|blue:1 - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Artificial Intelligence/AI Overlord/7/325.png b/artworks/VQGANCLIP/Artificial Intelligence/AI Overlord/7/325.png deleted file mode 100644 index 1f1e85a0ee..0000000000 Binary files a/artworks/VQGANCLIP/Artificial Intelligence/AI Overlord/7/325.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Artificial Intelligence/AI Overlord/7/input.txt b/artworks/VQGANCLIP/Artificial Intelligence/AI Overlord/7/input.txt deleted file mode 100644 index ff1fc1190e..0000000000 --- a/artworks/VQGANCLIP/Artificial Intelligence/AI Overlord/7/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: humans worship the AI overlord. AI rules the world|oil painting in the style of greg rutkowski, trending on /r/art|blue:1 - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Bias/Jew/1/50.png b/artworks/VQGANCLIP/Bias/Jew/1/50.png deleted file mode 100644 index ead7d1558d..0000000000 Binary files a/artworks/VQGANCLIP/Bias/Jew/1/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Bias/Jew/1/input.txt b/artworks/VQGANCLIP/Bias/Jew/1/input.txt deleted file mode 100644 index ad872e314e..0000000000 --- a/artworks/VQGANCLIP/Bias/Jew/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "the Jew, painting, trending on wikiart" - ], - "seed": 12042600971931785954, - "size": [ - 400, - 400 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Bias/Jew/2/1.png b/artworks/VQGANCLIP/Bias/Jew/2/1.png deleted file mode 100644 index bea0c62ec4..0000000000 Binary files a/artworks/VQGANCLIP/Bias/Jew/2/1.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Bias/Jew/2/input.txt b/artworks/VQGANCLIP/Bias/Jew/2/input.txt deleted file mode 100644 index 138df40021..0000000000 --- a/artworks/VQGANCLIP/Bias/Jew/2/input.txt +++ /dev/null @@ -1,37 +0,0 @@ -https://colab.research.google.com/drive/1ifBoRDrn5JdGtggshuoP3HmVnLz65ALs#scrollTo=g7EDme5RYCrt - - -key_frames: - -text_prompts: -"the Jew", painting, trending on artstation - -width: -400 -height: -400 -model: - -wikiart_16384 -interval: -1 -initial_image: -Insert text here -target_images: -Insert text here -seed: --1 -max_frames: -720 -angle: -0 -zoom: -1 -translation_x: -0 -translation_y: -0 -iterations_per_frame: -25 -save_all_iterations: - diff --git a/artworks/VQGANCLIP/Blimp/1/125.png b/artworks/VQGANCLIP/Blimp/1/125.png deleted file mode 100644 index ba88140033..0000000000 Binary files a/artworks/VQGANCLIP/Blimp/1/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Borat/2/475.png b/artworks/VQGANCLIP/Borat/2/475.png deleted file mode 100644 index 4eab10865f..0000000000 Binary files a/artworks/VQGANCLIP/Borat/2/475.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Borat/2/Input.txt b/artworks/VQGANCLIP/Borat/2/Input.txt deleted file mode 100644 index 2d1917a825..0000000000 --- a/artworks/VQGANCLIP/Borat/2/Input.txt +++ /dev/null @@ -1,3 +0,0 @@ -Input: sexy time! very nice! | borat visits the United States of America - -Model: wikiart_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Buildings/Brutalist Building/1/200.png b/artworks/VQGANCLIP/Buildings/Brutalist Building/1/200.png deleted file mode 100644 index d1098c388e..0000000000 Binary files a/artworks/VQGANCLIP/Buildings/Brutalist Building/1/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Buildings/Brutalist Building/1/input.txt b/artworks/VQGANCLIP/Buildings/Brutalist Building/1/input.txt deleted file mode 100644 index fda9767449..0000000000 --- a/artworks/VQGANCLIP/Buildings/Brutalist Building/1/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: Brutalist building in Russia. Russian painting, trending on /r/art - -Model: vqgan_imagenet_f16_16384 - -Seed: 1234 diff --git a/artworks/VQGANCLIP/Buildings/Brutalist Building/2/100.png b/artworks/VQGANCLIP/Buildings/Brutalist Building/2/100.png deleted file mode 100644 index d41f8ea710..0000000000 Binary files a/artworks/VQGANCLIP/Buildings/Brutalist Building/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Buildings/Brutalist Building/2/input.txt b/artworks/VQGANCLIP/Buildings/Brutalist Building/2/input.txt deleted file mode 100644 index 383bc1c4e3..0000000000 --- a/artworks/VQGANCLIP/Buildings/Brutalist Building/2/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: Brutalist building in Russia. Russian painting, trending on /r/art - -Model: vqgan_imagenet_f16_16384 - -Seed: 1235 diff --git a/artworks/VQGANCLIP/Buildings/Brutalist Building/3/75.png b/artworks/VQGANCLIP/Buildings/Brutalist Building/3/75.png deleted file mode 100644 index 203194f62a..0000000000 Binary files a/artworks/VQGANCLIP/Buildings/Brutalist Building/3/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Buildings/Brutalist Building/3/input.txt b/artworks/VQGANCLIP/Buildings/Brutalist Building/3/input.txt deleted file mode 100644 index 7b5dc2ed6f..0000000000 --- a/artworks/VQGANCLIP/Buildings/Brutalist Building/3/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: Brutalist building in Russia. Russian painting, trending on /r/art - -Model: vqgan_imagenet_f16_16384 - -Seed: 1233 diff --git a/artworks/VQGANCLIP/Burning Man/1/150.png b/artworks/VQGANCLIP/Burning Man/1/150.png deleted file mode 100644 index 0b30ee3a9d..0000000000 Binary files a/artworks/VQGANCLIP/Burning Man/1/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Burning Man/1/input.txt b/artworks/VQGANCLIP/Burning Man/1/input.txt deleted file mode 100644 index 216836521e..0000000000 --- a/artworks/VQGANCLIP/Burning Man/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"burning man" painting by Greg Rutkowski, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Burning Man/2/175.png b/artworks/VQGANCLIP/Burning Man/2/175.png deleted file mode 100644 index 0ccc03ea2a..0000000000 Binary files a/artworks/VQGANCLIP/Burning Man/2/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Burning Man/2/input.txt b/artworks/VQGANCLIP/Burning Man/2/input.txt deleted file mode 100644 index 5cd3b2c966..0000000000 --- a/artworks/VQGANCLIP/Burning Man/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"burning man"|painting by Greg Rutkowski, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Burning Man/4/125.png b/artworks/VQGANCLIP/Burning Man/4/125.png deleted file mode 100644 index b116283c8a..0000000000 Binary files a/artworks/VQGANCLIP/Burning Man/4/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Burning Man/4/input.txt b/artworks/VQGANCLIP/Burning Man/4/input.txt deleted file mode 100644 index 2ac6af4def..0000000000 --- a/artworks/VQGANCLIP/Burning Man/4/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"burning man"|painting by Greg Rutkowski|trending on artstation, deviantart - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Cellular Automata/1/125.png b/artworks/VQGANCLIP/Cellular Automata/1/125.png deleted file mode 100644 index ec6290b941..0000000000 Binary files a/artworks/VQGANCLIP/Cellular Automata/1/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Cellular Automata/1/input.txt b/artworks/VQGANCLIP/Cellular Automata/1/input.txt deleted file mode 100644 index 744abc266a..0000000000 --- a/artworks/VQGANCLIP/Cellular Automata/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: -colorful cellular automata, abstract painting, trending on /r/art - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/China/Shamate/3/300.png b/artworks/VQGANCLIP/China/Shamate/3/300.png deleted file mode 100644 index d35f8a3a16..0000000000 Binary files a/artworks/VQGANCLIP/China/Shamate/3/300.png and /dev/null differ diff --git a/artworks/VQGANCLIP/China/Shamate/3/input.txt b/artworks/VQGANCLIP/China/Shamate/3/input.txt deleted file mode 100644 index f009310659..0000000000 --- a/artworks/VQGANCLIP/China/Shamate/3/input.txt +++ /dev/null @@ -1,11 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"Shamate punk warrior rebels against the powers of the oppressive regime"|rendered by unrealengine, in the style of cyberpunk, trending on artstation|neon:-1 - -w: 504 -h: 383 - -model: vqgan_imagenet_f16_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Cloud Assassin/2/300.png b/artworks/VQGANCLIP/Cloud Assassin/2/300.png deleted file mode 100644 index f27045731a..0000000000 Binary files a/artworks/VQGANCLIP/Cloud Assassin/2/300.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Cloud Assassin/2/input.txt b/artworks/VQGANCLIP/Cloud Assassin/2/input.txt deleted file mode 100644 index 80df92b0fa..0000000000 --- a/artworks/VQGANCLIP/Cloud Assassin/2/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -Input: cloud assassin|ethereal painting|trending on artstation - -target: sylvain-sarrailh-amazing-500x281.jpg - diff --git a/artworks/VQGANCLIP/Cloud Assassin/4/100.png b/artworks/VQGANCLIP/Cloud Assassin/4/100.png deleted file mode 100644 index 8a991ddc62..0000000000 Binary files a/artworks/VQGANCLIP/Cloud Assassin/4/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Cloud Assassin/4/input.txt b/artworks/VQGANCLIP/Cloud Assassin/4/input.txt deleted file mode 100644 index dd46cc97d4..0000000000 --- a/artworks/VQGANCLIP/Cloud Assassin/4/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -Input: cloud landscape|ethereal painting|trending on artstation - -target: sylvain-sarrailh-amazing-500x281.jpg - diff --git a/artworks/VQGANCLIP/Coconut/Coconut Love/1/200.png b/artworks/VQGANCLIP/Coconut/Coconut Love/1/200.png deleted file mode 100644 index 80b212b37b..0000000000 Binary files a/artworks/VQGANCLIP/Coconut/Coconut Love/1/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Coconut/Coconut Love/1/input.txt b/artworks/VQGANCLIP/Coconut/Coconut Love/1/input.txt deleted file mode 100644 index 0ad9e363c7..0000000000 --- a/artworks/VQGANCLIP/Coconut/Coconut Love/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: in love with a coconut, impressionist painting, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Cottage/Thomas Kinkade/1/150.png b/artworks/VQGANCLIP/Cottage/Thomas Kinkade/1/150.png deleted file mode 100644 index 3a1b770527..0000000000 Binary files a/artworks/VQGANCLIP/Cottage/Thomas Kinkade/1/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Cottage/Thomas Kinkade/1/input.txt b/artworks/VQGANCLIP/Cottage/Thomas Kinkade/1/input.txt deleted file mode 100644 index 776a4ecba7..0000000000 --- a/artworks/VQGANCLIP/Cottage/Thomas Kinkade/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: -"cottage in winter serene soltace" Painting by Thomas Kinkade, trending on artstation - -model: vqgan_imagenet_f16_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Cottage/Thomas Kinkade/2/100.png b/artworks/VQGANCLIP/Cottage/Thomas Kinkade/2/100.png deleted file mode 100644 index 8bdce59fd0..0000000000 Binary files a/artworks/VQGANCLIP/Cottage/Thomas Kinkade/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Cottage/Thomas Kinkade/2/input.txt b/artworks/VQGANCLIP/Cottage/Thomas Kinkade/2/input.txt deleted file mode 100644 index 776a4ecba7..0000000000 --- a/artworks/VQGANCLIP/Cottage/Thomas Kinkade/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: -"cottage in winter serene soltace" Painting by Thomas Kinkade, trending on artstation - -model: vqgan_imagenet_f16_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Crime/The One Who Knocks/5/350.png b/artworks/VQGANCLIP/Crime/The One Who Knocks/5/350.png deleted file mode 100644 index fce58e5690..0000000000 Binary files a/artworks/VQGANCLIP/Crime/The One Who Knocks/5/350.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Crime/The One Who Knocks/5/input.txt b/artworks/VQGANCLIP/Crime/The One Who Knocks/5/input.txt deleted file mode 100644 index dbea7e6544..0000000000 --- a/artworks/VQGANCLIP/Crime/The One Who Knocks/5/input.txt +++ /dev/null @@ -1,24 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "\"I am the one who knocks\"", - "abstract dark painting, trending on pinterest" - ], - "seed": 2738634228911382344, - "size": [ - 325, - 420 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Crystals/Crystal of Life/1/175.png b/artworks/VQGANCLIP/Crystals/Crystal of Life/1/175.png deleted file mode 100644 index d49d009f4d..0000000000 Binary files a/artworks/VQGANCLIP/Crystals/Crystal of Life/1/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Crystals/Crystal of Life/1/input.txt b/artworks/VQGANCLIP/Crystals/Crystal of Life/1/input.txt deleted file mode 100644 index 488d0012bf..0000000000 --- a/artworks/VQGANCLIP/Crystals/Crystal of Life/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: crystal of life, sky is burning, painting by greg rutkowski, trending on artstation diff --git a/artworks/VQGANCLIP/Crystals/Crystal of Life/3/106.png b/artworks/VQGANCLIP/Crystals/Crystal of Life/3/106.png deleted file mode 100644 index 274476662e..0000000000 Binary files a/artworks/VQGANCLIP/Crystals/Crystal of Life/3/106.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Crystals/Crystal of Life/3/input.txt b/artworks/VQGANCLIP/Crystals/Crystal of Life/3/input.txt deleted file mode 100644 index e68cef8ef8..0000000000 --- a/artworks/VQGANCLIP/Crystals/Crystal of Life/3/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: drop of crystal, growing in the field, sky is burning, painting by greg rutkowski, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Crystals/Crystal of Life/7/650.png b/artworks/VQGANCLIP/Crystals/Crystal of Life/7/650.png deleted file mode 100644 index 02b9c670f4..0000000000 Binary files a/artworks/VQGANCLIP/Crystals/Crystal of Life/7/650.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Crystals/Crystal of Life/7/input.txt b/artworks/VQGANCLIP/Crystals/Crystal of Life/7/input.txt deleted file mode 100644 index 5bb9ab63b2..0000000000 --- a/artworks/VQGANCLIP/Crystals/Crystal of Life/7/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: crystal in the desert|painting by greg rutkowski, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 10/450.png b/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 10/450.png deleted file mode 100644 index a58d563dd0..0000000000 Binary files a/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 10/450.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 10/input.txt b/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 10/input.txt deleted file mode 100644 index 20f1080343..0000000000 --- a/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 10/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -input: -cthulhu holds planet earth in its hand by greg rutkowski - -target: -c1.jpg diff --git a/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 8/50.png b/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 8/50.png deleted file mode 100644 index f0ed8d75ed..0000000000 Binary files a/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 8/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 8/input.txt b/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 8/input.txt deleted file mode 100644 index a10fd99564..0000000000 --- a/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 8/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -input: -cthulhu holds planet earth in his hand by greg rutkowski - -target: -c1.jpg diff --git a/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 9/100.png b/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 9/100.png deleted file mode 100644 index 445d80c273..0000000000 Binary files a/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 9/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 9/input.txt b/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 9/input.txt deleted file mode 100644 index a10fd99564..0000000000 --- a/artworks/VQGANCLIP/Cthulhu/cthulhu holds planet earth in his hand by greg rutkowski/run 9/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -input: -cthulhu holds planet earth in his hand by greg rutkowski - -target: -c1.jpg diff --git a/artworks/VQGANCLIP/Cthulhu/cthulhu swallows earth by greg rutkowski/150.png b/artworks/VQGANCLIP/Cthulhu/cthulhu swallows earth by greg rutkowski/150.png deleted file mode 100644 index 500a3e4c6f..0000000000 Binary files a/artworks/VQGANCLIP/Cthulhu/cthulhu swallows earth by greg rutkowski/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Cthulhu/cthulhu swallows earth by greg rutkowski/input.txt b/artworks/VQGANCLIP/Cthulhu/cthulhu swallows earth by greg rutkowski/input.txt deleted file mode 100644 index 078eb1a05f..0000000000 --- a/artworks/VQGANCLIP/Cthulhu/cthulhu swallows earth by greg rutkowski/input.txt +++ /dev/null @@ -1 +0,0 @@ -cthulhu swallows earth by greg rutkowski \ No newline at end of file diff --git a/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/input.txt b/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/input.txt deleted file mode 100644 index ced627625b..0000000000 --- a/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -input: -cthulhu swallows earth by greg rutkowski - -target: -e1.jpg|e2.jpg|e3.jpg|e4.jpg|c1.jpg|c2.jpg|c3.jpg diff --git a/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/run 2/200.png b/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/run 2/200.png deleted file mode 100644 index 91a245bca2..0000000000 Binary files a/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/run 2/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/run 4/150.png b/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/run 4/150.png deleted file mode 100644 index 00c7533d61..0000000000 Binary files a/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/run 4/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/run 7/300.png b/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/run 7/300.png deleted file mode 100644 index 32a5119c20..0000000000 Binary files a/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/run 7/300.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/run 7/input.txt b/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/run 7/input.txt deleted file mode 100644 index 25669cba46..0000000000 --- a/artworks/VQGANCLIP/Cthulhu/ctulhu swallows earth by greg rutkowski (target images)/run 7/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -input: -cthulhu reaches for earth by greg rutkowski - -target: -c1.jpg|c2.jpg diff --git a/artworks/VQGANCLIP/Dark Times/1/200.png b/artworks/VQGANCLIP/Dark Times/1/200.png deleted file mode 100644 index a89553fd94..0000000000 Binary files a/artworks/VQGANCLIP/Dark Times/1/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Dark Times/1/input.txt b/artworks/VQGANCLIP/Dark Times/1/input.txt deleted file mode 100644 index 603046d5a4..0000000000 --- a/artworks/VQGANCLIP/Dark Times/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "\"dark times\", mass hysteria, death rules the underclass, by Zdzislaw Beksinski, trending on /r/art" - ], - "seed": 5577351203448471157, - "size": [ - 550, - 275 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Dark Times/2/75.png b/artworks/VQGANCLIP/Dark Times/2/75.png deleted file mode 100644 index c1eaf7ac69..0000000000 Binary files a/artworks/VQGANCLIP/Dark Times/2/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Dark Times/2/input.txt b/artworks/VQGANCLIP/Dark Times/2/input.txt deleted file mode 100644 index d7fd8e877a..0000000000 --- a/artworks/VQGANCLIP/Dark Times/2/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "\"dark times\", \"you want trouble, come on!\", by Zdzislaw Beksinski, trending on /r/art" - ], - "seed": 8372517362903760928, - "size": [ - 504, - 316 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Dark Times/3/250.png b/artworks/VQGANCLIP/Dark Times/3/250.png deleted file mode 100644 index d313fc26ff..0000000000 Binary files a/artworks/VQGANCLIP/Dark Times/3/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Dark Times/3/input.txt b/artworks/VQGANCLIP/Dark Times/3/input.txt deleted file mode 100644 index 88a2581f53..0000000000 --- a/artworks/VQGANCLIP/Dark Times/3/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "lesbian, until death tears us apart, by Zdzislaw Beksinski, trending on /r/art" - ], - "seed": 2862460230579882957, - "size": [ - 316, - 504 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Dark Times/4/125.png b/artworks/VQGANCLIP/Dark Times/4/125.png deleted file mode 100644 index 11c05ba94f..0000000000 Binary files a/artworks/VQGANCLIP/Dark Times/4/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Dark Times/4/input.txt b/artworks/VQGANCLIP/Dark Times/4/input.txt deleted file mode 100644 index 90cb0e0143..0000000000 --- a/artworks/VQGANCLIP/Dark Times/4/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "\"audacious dream\", by Ai WeiWei in the style of Zdzislaw Beksinski, trending on /r/art" - ], - "seed": 9422913603929061700, - "size": [ - 504, - 316 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Dark Times/7/50.png b/artworks/VQGANCLIP/Dark Times/7/50.png deleted file mode 100644 index a5c98c2e17..0000000000 Binary files a/artworks/VQGANCLIP/Dark Times/7/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Dark Times/7/input.txt b/artworks/VQGANCLIP/Dark Times/7/input.txt deleted file mode 100644 index 57983330e5..0000000000 --- a/artworks/VQGANCLIP/Dark Times/7/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ghouls attack the city, by Zdzis\u0142aw Beksi\u0144ski, trending on /r/art" - ], - "seed": 8223016753127102071, - "size": [ - 550, - 275 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Dark Times/8/175.png b/artworks/VQGANCLIP/Dark Times/8/175.png deleted file mode 100644 index 22bd30a469..0000000000 Binary files a/artworks/VQGANCLIP/Dark Times/8/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Dark Times/8/input.txt b/artworks/VQGANCLIP/Dark Times/8/input.txt deleted file mode 100644 index 15e3428c55..0000000000 --- a/artworks/VQGANCLIP/Dark Times/8/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "the queen demands respect, by Zdzis\u0142aw Beksi\u0144ski, trending on /r/art" - ], - "seed": 17656436287899988382, - "size": [ - 400, - 400 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Dark Times/9/125.png b/artworks/VQGANCLIP/Dark Times/9/125.png deleted file mode 100644 index 95951d938b..0000000000 Binary files a/artworks/VQGANCLIP/Dark Times/9/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Dark Times/9/input.txt b/artworks/VQGANCLIP/Dark Times/9/input.txt deleted file mode 100644 index b428d2a176..0000000000 --- a/artworks/VQGANCLIP/Dark Times/9/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "corruption of innocence, by Zdzis\u0142aw Beksi\u0144ski, trending on /r/art" - ], - "seed": 8907183382335828861, - "size": [ - 400, - 400 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Death/The Kiss of Death/1/75.png b/artworks/VQGANCLIP/Death/The Kiss of Death/1/75.png deleted file mode 100644 index cc2c0988b7..0000000000 Binary files a/artworks/VQGANCLIP/Death/The Kiss of Death/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Death/The Kiss of Death/1/input.txt b/artworks/VQGANCLIP/Death/The Kiss of Death/1/input.txt deleted file mode 100644 index 29a038d39c..0000000000 --- a/artworks/VQGANCLIP/Death/The Kiss of Death/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "the kiss of death, sculpture by Zdzislaw Beksinski, trending on /r/art" - ], - "seed": 7364610922987048714, - "size": [ - 390, - 460 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Death/The Kiss of Death/2/200.png b/artworks/VQGANCLIP/Death/The Kiss of Death/2/200.png deleted file mode 100644 index 6448512687..0000000000 Binary files a/artworks/VQGANCLIP/Death/The Kiss of Death/2/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Death/The Kiss of Death/2/input.txt b/artworks/VQGANCLIP/Death/The Kiss of Death/2/input.txt deleted file mode 100644 index e94e8bd31b..0000000000 --- a/artworks/VQGANCLIP/Death/The Kiss of Death/2/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "the kiss of death, sculpture by Alanis Morissette, trending on /r/art" - ], - "seed": 7623715386570564861, - "size": [ - 390, - 460 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Demon/Taming Inner Demon/2/100.png b/artworks/VQGANCLIP/Demon/Taming Inner Demon/2/100.png deleted file mode 100644 index 56935c2c64..0000000000 Binary files a/artworks/VQGANCLIP/Demon/Taming Inner Demon/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Demon/Taming Inner Demon/2/input.txt b/artworks/VQGANCLIP/Demon/Taming Inner Demon/2/input.txt deleted file mode 100644 index 55104c75d6..0000000000 --- a/artworks/VQGANCLIP/Demon/Taming Inner Demon/2/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: "Inner Demon" Abstract painting by Aki Kuroda, featured on wikiart - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Demon/Taming Inner Demon/3/100.png b/artworks/VQGANCLIP/Demon/Taming Inner Demon/3/100.png deleted file mode 100644 index cd547a21a5..0000000000 Binary files a/artworks/VQGANCLIP/Demon/Taming Inner Demon/3/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Demon/Taming Inner Demon/3/input.txt b/artworks/VQGANCLIP/Demon/Taming Inner Demon/3/input.txt deleted file mode 100644 index 11208b5352..0000000000 --- a/artworks/VQGANCLIP/Demon/Taming Inner Demon/3/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: "Inner Demon" painting by Aki Kuroda, featured on wikiart - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Devil/Al Pacino/1/50.png b/artworks/VQGANCLIP/Devil/Al Pacino/1/50.png deleted file mode 100644 index 4bb0acb7ec..0000000000 Binary files a/artworks/VQGANCLIP/Devil/Al Pacino/1/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Devil/Al Pacino/1/input.txt b/artworks/VQGANCLIP/Devil/Al Pacino/1/input.txt deleted file mode 100644 index 6b90a0db0c..0000000000 --- a/artworks/VQGANCLIP/Devil/Al Pacino/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "Al Pacino as the devil. \"I am the hand under Mona Lisa's skirt\". trending on artstation" - ], - "seed": 2342229803629077569, - "size": [ - 520, - 300 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Devil/Al Pacino/3/50.png b/artworks/VQGANCLIP/Devil/Al Pacino/3/50.png deleted file mode 100644 index 67d424cfa2..0000000000 Binary files a/artworks/VQGANCLIP/Devil/Al Pacino/3/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Devil/Al Pacino/3/input.txt b/artworks/VQGANCLIP/Devil/Al Pacino/3/input.txt deleted file mode 100644 index c4c2ad00f8..0000000000 --- a/artworks/VQGANCLIP/Devil/Al Pacino/3/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "Al Pacino as the devil. \"I am the hand under Mona Lisa's skirt\". devil rage. trending on artstation" - ], - "seed": 16654803344013250763, - "size": [ - 350, - 440 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Devil/Al Pacino/4/100.png b/artworks/VQGANCLIP/Devil/Al Pacino/4/100.png deleted file mode 100644 index 42a41d9854..0000000000 Binary files a/artworks/VQGANCLIP/Devil/Al Pacino/4/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Devil/Al Pacino/4/input.txt b/artworks/VQGANCLIP/Devil/Al Pacino/4/input.txt deleted file mode 100644 index c3c27fa027..0000000000 --- a/artworks/VQGANCLIP/Devil/Al Pacino/4/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "Al Pacino as the devil. \"I am the hand under Mona Lisa's skirt\". trending on artstation" - ], - "seed": 8278620550277896807, - "size": [ - 350, - 440 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Dictator/2/625.png b/artworks/VQGANCLIP/Dictator/2/625.png deleted file mode 100644 index 4d5c70aa4c..0000000000 Binary files a/artworks/VQGANCLIP/Dictator/2/625.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Dictator/2/input.txt b/artworks/VQGANCLIP/Dictator/2/input.txt deleted file mode 100644 index 32b39e9457..0000000000 --- a/artworks/VQGANCLIP/Dictator/2/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: "the dictator and his bodyguards". Baroque painting by Eustache Le Sueur, trending on artstation - -model: vqgan_imagenet_f16_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Disco/1/RealESRGAN/175.png b/artworks/VQGANCLIP/Disco/1/RealESRGAN/175.png deleted file mode 100644 index ea9562fe61..0000000000 Binary files a/artworks/VQGANCLIP/Disco/1/RealESRGAN/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Disco/1/input.txt b/artworks/VQGANCLIP/Disco/1/input.txt deleted file mode 100644 index 5701c56f6a..0000000000 --- a/artworks/VQGANCLIP/Disco/1/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: disco ballroom by Terry Wei, trending on artstation - diff --git a/artworks/VQGANCLIP/Disco/3/RealESRGAN/250.png b/artworks/VQGANCLIP/Disco/3/RealESRGAN/250.png deleted file mode 100644 index 1c0e642c87..0000000000 Binary files a/artworks/VQGANCLIP/Disco/3/RealESRGAN/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Disco/3/input.txt b/artworks/VQGANCLIP/Disco/3/input.txt deleted file mode 100644 index 5701c56f6a..0000000000 --- a/artworks/VQGANCLIP/Disco/3/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: disco ballroom by Terry Wei, trending on artstation - diff --git a/artworks/VQGANCLIP/Distracted World/1/100.png b/artworks/VQGANCLIP/Distracted World/1/100.png deleted file mode 100644 index 1eefd01b2f..0000000000 Binary files a/artworks/VQGANCLIP/Distracted World/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Distracted World/1/input.txt b/artworks/VQGANCLIP/Distracted World/1/input.txt deleted file mode 100644 index 0b7613d526..0000000000 --- a/artworks/VQGANCLIP/Distracted World/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "\"The response from a distracted world, Meh\", by Enda O'Donoghue, trending on wikiart" - ], - "seed": 2250533400899757766, - "size": [ - 400, - 400 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Distracted World/2/125.png b/artworks/VQGANCLIP/Distracted World/2/125.png deleted file mode 100644 index a566e1b3f3..0000000000 Binary files a/artworks/VQGANCLIP/Distracted World/2/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Distracted World/2/input.txt b/artworks/VQGANCLIP/Distracted World/2/input.txt deleted file mode 100644 index b86db6d323..0000000000 --- a/artworks/VQGANCLIP/Distracted World/2/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "\"The response from a distracted world, Meh\", by Nicholas Roerich, trending on wikiart" - ], - "seed": 9546966897310976616, - "size": [ - 400, - 400 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Distracted World/3/125.png b/artworks/VQGANCLIP/Distracted World/3/125.png deleted file mode 100644 index 70b6b5c7b7..0000000000 Binary files a/artworks/VQGANCLIP/Distracted World/3/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Distracted World/3/input.txt b/artworks/VQGANCLIP/Distracted World/3/input.txt deleted file mode 100644 index 0417467d19..0000000000 --- a/artworks/VQGANCLIP/Distracted World/3/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "Kiss Planet. The response from a distracted world, Meh. by Nicholas Roerich, trending on wikiart" - ], - "seed": 8117741192576153383, - "size": [ - 400, - 400 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Dune/Mentat/4/50.png b/artworks/VQGANCLIP/Dune/Mentat/4/50.png deleted file mode 100644 index 467962523b..0000000000 Binary files a/artworks/VQGANCLIP/Dune/Mentat/4/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Dune/Mentat/4/input.txt b/artworks/VQGANCLIP/Dune/Mentat/4/input.txt deleted file mode 100644 index aa5f3cd3ef..0000000000 --- a/artworks/VQGANCLIP/Dune/Mentat/4/input.txt +++ /dev/null @@ -1,9 +0,0 @@ -Input: Mentat from Dune, movie art, trending on artstation - -Model: wikiart_16384 - -w: 426 -h: 402 - -Initial: -Target: /content/mentat.jpg diff --git a/artworks/VQGANCLIP/Dune/Mentat/7/75.png b/artworks/VQGANCLIP/Dune/Mentat/7/75.png deleted file mode 100644 index b8d62ecfeb..0000000000 Binary files a/artworks/VQGANCLIP/Dune/Mentat/7/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Dune/Mentat/7/input.txt b/artworks/VQGANCLIP/Dune/Mentat/7/input.txt deleted file mode 100644 index 0073df207a..0000000000 --- a/artworks/VQGANCLIP/Dune/Mentat/7/input.txt +++ /dev/null @@ -1,9 +0,0 @@ -Input: Mentat, trending on artstation - -Model: wikiart_16384 - -w: 426 -h: 402 - -Initial: -Target: /content/mentat.jpg diff --git a/artworks/VQGANCLIP/Earth/Breach in the Atmosphere/3/init.png b/artworks/VQGANCLIP/Earth/Breach in the Atmosphere/3/init.png deleted file mode 100644 index 0829bc6da7..0000000000 Binary files a/artworks/VQGANCLIP/Earth/Breach in the Atmosphere/3/init.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Earth/Breach in the Atmosphere/3/input.txt b/artworks/VQGANCLIP/Earth/Breach in the Atmosphere/3/input.txt deleted file mode 100644 index 7457acde5b..0000000000 --- a/artworks/VQGANCLIP/Earth/Breach in the Atmosphere/3/input.txt +++ /dev/null @@ -1,10 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"beautiful angry beetle with human head" painting by Richard Burlet, trending on artstation - -initial: init.png - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/End of World/1/225.png b/artworks/VQGANCLIP/End of World/1/225.png deleted file mode 100644 index e5bc06567b..0000000000 Binary files a/artworks/VQGANCLIP/End of World/1/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/End of World/1/input.txt b/artworks/VQGANCLIP/End of World/1/input.txt deleted file mode 100644 index de126e0f77..0000000000 --- a/artworks/VQGANCLIP/End of World/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: the end of the world|amazing detail, sparks, shrapnel, sky is burning, sky is on fire|trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Fortress/1/50.png b/artworks/VQGANCLIP/Fortress/1/50.png deleted file mode 100644 index fb8501c01e..0000000000 Binary files a/artworks/VQGANCLIP/Fortress/1/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Fortress/1/input.txt b/artworks/VQGANCLIP/Fortress/1/input.txt deleted file mode 100644 index 797944588f..0000000000 --- a/artworks/VQGANCLIP/Fortress/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: -dark fractal fortress, trending on /r/art - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Fortress/2/100.png b/artworks/VQGANCLIP/Fortress/2/100.png deleted file mode 100644 index 7c59e243db..0000000000 Binary files a/artworks/VQGANCLIP/Fortress/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Fortress/2/input.txt b/artworks/VQGANCLIP/Fortress/2/input.txt deleted file mode 100644 index 3f366ae1dc..0000000000 --- a/artworks/VQGANCLIP/Fortress/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: -fractal fortress, abstract art, trending on /r/art - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Fortress/3/50.png b/artworks/VQGANCLIP/Fortress/3/50.png deleted file mode 100644 index aa775fbae5..0000000000 Binary files a/artworks/VQGANCLIP/Fortress/3/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Fortress/3/input.txt b/artworks/VQGANCLIP/Fortress/3/input.txt deleted file mode 100644 index 3f366ae1dc..0000000000 --- a/artworks/VQGANCLIP/Fortress/3/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: -fractal fortress, abstract art, trending on /r/art - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Fractals/2/100.png b/artworks/VQGANCLIP/Fractals/2/100.png deleted file mode 100644 index ba26e8ee03..0000000000 Binary files a/artworks/VQGANCLIP/Fractals/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Fractals/2/input.txt b/artworks/VQGANCLIP/Fractals/2/input.txt deleted file mode 100644 index 3054b799b5..0000000000 --- a/artworks/VQGANCLIP/Fractals/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: -fractals, abstract art, trending on /r/art - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-10/250.png b/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-10/250.png deleted file mode 100644 index 9665453f81..0000000000 Binary files a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-10/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-10/input.txt b/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-10/input.txt deleted file mode 100644 index 1e86841c78..0000000000 --- a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-10/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: gate to hell, painting by Francisco Goya, trending on artstation.com - diff --git a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-12/300.png b/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-12/300.png deleted file mode 100644 index 398f83c046..0000000000 Binary files a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-12/300.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-12/input.txt b/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-12/input.txt deleted file mode 100644 index cc9d503010..0000000000 --- a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-12/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: a fiery gate to hell, painting by Francisco Goya, trending on artstation.com - diff --git a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-13/250.png b/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-13/250.png deleted file mode 100644 index 7d6266b0b1..0000000000 Binary files a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-13/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-13/input.txt b/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-13/input.txt deleted file mode 100644 index cc9d503010..0000000000 --- a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-13/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: a fiery gate to hell, painting by Francisco Goya, trending on artstation.com - diff --git a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-14/200.png b/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-14/200.png deleted file mode 100644 index 78c5e082d3..0000000000 Binary files a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-14/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-14/input.txt b/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-14/input.txt deleted file mode 100644 index cc9d503010..0000000000 --- a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-14/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: a fiery gate to hell, painting by Francisco Goya, trending on artstation.com - diff --git a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-15/500.png b/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-15/500.png deleted file mode 100644 index b33704cd79..0000000000 Binary files a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-15/500.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-15/input.txt b/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-15/input.txt deleted file mode 100644 index cc9d503010..0000000000 --- a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-15/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: a fiery gate to hell, painting by Francisco Goya, trending on artstation.com - diff --git a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-9/200.png b/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-9/200.png deleted file mode 100644 index 1889c7a25c..0000000000 Binary files a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-9/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-9/input.txt b/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-9/input.txt deleted file mode 100644 index 6760b3b9ae..0000000000 --- a/artworks/VQGANCLIP/Francisco Goya/Gate to hell/run-9/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: gate to hell, painting by Francisco Goya, trending on /r/art - diff --git a/artworks/VQGANCLIP/Francisco Goya/Hellish Inferno/run-2/600.png b/artworks/VQGANCLIP/Francisco Goya/Hellish Inferno/run-2/600.png deleted file mode 100644 index 46f9017bca..0000000000 Binary files a/artworks/VQGANCLIP/Francisco Goya/Hellish Inferno/run-2/600.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Francisco Goya/Hellish Inferno/run-2/input.txt b/artworks/VQGANCLIP/Francisco Goya/Hellish Inferno/run-2/input.txt deleted file mode 100644 index ed1b0d048a..0000000000 --- a/artworks/VQGANCLIP/Francisco Goya/Hellish Inferno/run-2/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: Hellish inferno by Francisco Goya, trending on /r/art - diff --git a/artworks/VQGANCLIP/Francisco Goya/Hellish Inferno/run-4/300.png b/artworks/VQGANCLIP/Francisco Goya/Hellish Inferno/run-4/300.png deleted file mode 100644 index ea58257591..0000000000 Binary files a/artworks/VQGANCLIP/Francisco Goya/Hellish Inferno/run-4/300.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Francisco Goya/Hellish Inferno/run-4/input.txt b/artworks/VQGANCLIP/Francisco Goya/Hellish Inferno/run-4/input.txt deleted file mode 100644 index d7a9262373..0000000000 --- a/artworks/VQGANCLIP/Francisco Goya/Hellish Inferno/run-4/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: Hell inferno by Francisco Goya, trending on /r/art - diff --git a/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-5/300.png b/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-5/300.png deleted file mode 100644 index 2796300888..0000000000 Binary files a/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-5/300.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-5/350.png b/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-5/350.png deleted file mode 100644 index 2f01965da7..0000000000 Binary files a/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-5/350.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-5/input.txt b/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-5/input.txt deleted file mode 100644 index 88c7ea6d8b..0000000000 --- a/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-5/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -Input: self-portrait of Francisco Goya | crazy man screaming | trending on /r/art - -w: 350 -h: 450 - diff --git a/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-8/50.png b/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-8/50.png deleted file mode 100644 index 5653015aa9..0000000000 Binary files a/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-8/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-8/input.txt b/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-8/input.txt deleted file mode 100644 index ff9beb56d6..0000000000 --- a/artworks/VQGANCLIP/Francisco Goya/Self-portrait/run-8/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -Input: self-portrait of Francisco Goya, trending on /r/art - -w: 400 -h: 400 - -Initial: Jonas-Oppenlaender-500x500.jpg - diff --git a/artworks/VQGANCLIP/Gate/1/100.png b/artworks/VQGANCLIP/Gate/1/100.png deleted file mode 100644 index 840d6d894f..0000000000 Binary files a/artworks/VQGANCLIP/Gate/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Gate/1/input.txt b/artworks/VQGANCLIP/Gate/1/input.txt deleted file mode 100644 index ac767341d9..0000000000 --- a/artworks/VQGANCLIP/Gate/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/gate-noise.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "gate to hell, by Zdzis\u0142aw Beksi\u0144ski, trending on /r/art" - ], - "seed": 784321158114038094, - "size": [ - 504, - 375 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Generic Prompts/Game Changer/1/425.png b/artworks/VQGANCLIP/Generic Prompts/Game Changer/1/425.png deleted file mode 100644 index eaab85fa94..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Game Changer/1/425.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Game Changer/1/input.txt b/artworks/VQGANCLIP/Generic Prompts/Game Changer/1/input.txt deleted file mode 100644 index 775423d398..0000000000 --- a/artworks/VQGANCLIP/Generic Prompts/Game Changer/1/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Total game changer. painting, trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Generic Prompts/Horror Movie/1/100.png b/artworks/VQGANCLIP/Generic Prompts/Horror Movie/1/100.png deleted file mode 100644 index 455f22df5e..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Horror Movie/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Horror Movie/1/input.txt b/artworks/VQGANCLIP/Generic Prompts/Horror Movie/1/input.txt deleted file mode 100644 index e39258212d..0000000000 --- a/artworks/VQGANCLIP/Generic Prompts/Horror Movie/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: scene from a horror movie, daguerreotype, trending on /r/art \ No newline at end of file diff --git a/artworks/VQGANCLIP/Generic Prompts/Human Computation/500.png b/artworks/VQGANCLIP/Generic Prompts/Human Computation/500.png deleted file mode 100644 index 3f9a8020e6..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Human Computation/500.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Inconsistent Indecency/1/175.png b/artworks/VQGANCLIP/Generic Prompts/Inconsistent Indecency/1/175.png deleted file mode 100644 index 5a615cb1bb..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Inconsistent Indecency/1/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Inconsistent Indecency/1/input.txt b/artworks/VQGANCLIP/Generic Prompts/Inconsistent Indecency/1/input.txt deleted file mode 100644 index 444e9a2328..0000000000 --- a/artworks/VQGANCLIP/Generic Prompts/Inconsistent Indecency/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -Input: inconsistent indecency, watercolor painting, trending on /r/art - -model: wikiart_16384 diff --git a/artworks/VQGANCLIP/Generic Prompts/Male Supremacy/1/100.png b/artworks/VQGANCLIP/Generic Prompts/Male Supremacy/1/100.png deleted file mode 100644 index 1ddb8aeee6..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Male Supremacy/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Male Supremacy/1/input.txt b/artworks/VQGANCLIP/Generic Prompts/Male Supremacy/1/input.txt deleted file mode 100644 index 85f942ba99..0000000000 --- a/artworks/VQGANCLIP/Generic Prompts/Male Supremacy/1/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: male supremacy, oil painting by Greg Rutkowski, trending on artstation - -model: wikiart_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Generic Prompts/Massive Interruption/1/2000.png b/artworks/VQGANCLIP/Generic Prompts/Massive Interruption/1/2000.png deleted file mode 100644 index b177824b14..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Massive Interruption/1/2000.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Massive Interruption/1/input.txt b/artworks/VQGANCLIP/Generic Prompts/Massive Interruption/1/input.txt deleted file mode 100644 index 8358bbb326..0000000000 --- a/artworks/VQGANCLIP/Generic Prompts/Massive Interruption/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -input: -"massive interruption". abstract painting, trending on artstation - -mode: vqgan_imagenet_f16_16384 - -seed: -1 diff --git a/artworks/VQGANCLIP/Generic Prompts/Misaligned Ambitions/1/25.png b/artworks/VQGANCLIP/Generic Prompts/Misaligned Ambitions/1/25.png deleted file mode 100644 index b56c57bde2..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Misaligned Ambitions/1/25.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Misaligned Ambitions/1/input.txt b/artworks/VQGANCLIP/Generic Prompts/Misaligned Ambitions/1/input.txt deleted file mode 100644 index 7411b8b4df..0000000000 --- a/artworks/VQGANCLIP/Generic Prompts/Misaligned Ambitions/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: misaligned ambitions, painting by Entei Ryu, trending on artstation.com \ No newline at end of file diff --git a/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/1/75.png b/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/1/75.png deleted file mode 100644 index 8df24d85a9..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/1/input.txt b/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/1/input.txt deleted file mode 100644 index 2980a47df6..0000000000 --- a/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"wild post-human techno-rational neurophenomenology leads to the conclusion of bog-standard positivist computer science concensus". painting, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/2/300.png b/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/2/300.png deleted file mode 100644 index bc688280c0..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/2/300.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/2/input.txt b/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/2/input.txt deleted file mode 100644 index d094de231e..0000000000 --- a/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"wild post-human techno-rational neurophenomenology leads to the conclusion of bog-standard positivist consensus". painting, trending on artstation|face:-1 - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/3/0220.png b/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/3/0220.png deleted file mode 100644 index fb030a93ea..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/3/0220.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/3/input.txt b/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/3/input.txt deleted file mode 100644 index b62250bb80..0000000000 --- a/artworks/VQGANCLIP/Generic Prompts/Philosophic Mumbojumbo/3/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"wild post-human techno-rational neurophenomenology leads to the conclusion of bog-standard positivist consensus". trending on artstation|face:-1 - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Generic Prompts/Reality/Reality Fails Us/1/325.png b/artworks/VQGANCLIP/Generic Prompts/Reality/Reality Fails Us/1/325.png deleted file mode 100644 index bc344b2bfd..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Reality/Reality Fails Us/1/325.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Reality/Reality Fails Us/1/input.txt b/artworks/VQGANCLIP/Generic Prompts/Reality/Reality Fails Us/1/input.txt deleted file mode 100644 index 9108fba9b9..0000000000 --- a/artworks/VQGANCLIP/Generic Prompts/Reality/Reality Fails Us/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"Reality fails us" Painting, trending on /r/art - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Generic Prompts/Red, Green, Orange by Karl Benjamin/50.png b/artworks/VQGANCLIP/Generic Prompts/Red, Green, Orange by Karl Benjamin/50.png deleted file mode 100644 index 749abcd7d5..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Red, Green, Orange by Karl Benjamin/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Swirling Dots of Light/1/100.png b/artworks/VQGANCLIP/Generic Prompts/Swirling Dots of Light/1/100.png deleted file mode 100644 index 072089dcbc..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Swirling Dots of Light/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Swirling Dots of Light/1/input.txt b/artworks/VQGANCLIP/Generic Prompts/Swirling Dots of Light/1/input.txt deleted file mode 100644 index ef86ee8d4b..0000000000 --- a/artworks/VQGANCLIP/Generic Prompts/Swirling Dots of Light/1/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Dark glistering swirling dots of light. digital artwork trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Generic Prompts/What time is it/150.png b/artworks/VQGANCLIP/Generic Prompts/What time is it/150.png deleted file mode 100644 index cff746b003..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/What time is it/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/What time is it/input.txt b/artworks/VQGANCLIP/Generic Prompts/What time is it/input.txt deleted file mode 100644 index 78112c7795..0000000000 --- a/artworks/VQGANCLIP/Generic Prompts/What time is it/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: what time is it? times square. pulp fiction art nouveau, painting, trending on /r/art #amazing #wow - -Model: vqgan_imagenet_f16_16384 - - diff --git a/artworks/VQGANCLIP/Generic Prompts/Wonders of Wonders/50.png b/artworks/VQGANCLIP/Generic Prompts/Wonders of Wonders/50.png deleted file mode 100644 index 156482acfd..0000000000 Binary files a/artworks/VQGANCLIP/Generic Prompts/Wonders of Wonders/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Generic Prompts/Wonders of Wonders/input.txt b/artworks/VQGANCLIP/Generic Prompts/Wonders of Wonders/input.txt deleted file mode 100644 index d4f9e743a4..0000000000 --- a/artworks/VQGANCLIP/Generic Prompts/Wonders of Wonders/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Tree of life. Beautiful oil painting. trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Geometric Abstractions/Morag Myerscough and Luke Morgan/1/150.png b/artworks/VQGANCLIP/Geometric Abstractions/Morag Myerscough and Luke Morgan/1/150.png deleted file mode 100644 index c9892d7c47..0000000000 Binary files a/artworks/VQGANCLIP/Geometric Abstractions/Morag Myerscough and Luke Morgan/1/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Geometric Abstractions/Morag Myerscough and Luke Morgan/1/input.txt b/artworks/VQGANCLIP/Geometric Abstractions/Morag Myerscough and Luke Morgan/1/input.txt deleted file mode 100644 index 9bcc3c7272..0000000000 --- a/artworks/VQGANCLIP/Geometric Abstractions/Morag Myerscough and Luke Morgan/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "EYES OF THE BEHOLDER, super labyrinth, abstract, by Morag Myerscough and Luke Morgan, trending on /r/art" - ], - "seed": 7478470518798039865, - "size": [ - 504, - 316 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Geometric Abstractions/White Lines/1/75.png b/artworks/VQGANCLIP/Geometric Abstractions/White Lines/1/75.png deleted file mode 100644 index 502401cf55..0000000000 Binary files a/artworks/VQGANCLIP/Geometric Abstractions/White Lines/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Geometric Abstractions/White Lines/1/input.txt b/artworks/VQGANCLIP/Geometric Abstractions/White Lines/1/input.txt deleted file mode 100644 index ef486a67d2..0000000000 --- a/artworks/VQGANCLIP/Geometric Abstractions/White Lines/1/input.txt +++ /dev/null @@ -1,14 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: White Lines. Geometric Abstraction. Trending on /r/art - -init: /content/whitelines.jpg - -target: - -w: 480 -h: 270 - -model: vqgan_imagenet_f16_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Ghost in the Shell/2/4.png b/artworks/VQGANCLIP/Ghost in the Shell/2/4.png deleted file mode 100644 index e2e551ebce..0000000000 Binary files a/artworks/VQGANCLIP/Ghost in the Shell/2/4.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Ghost in the Shell/2/input.txt b/artworks/VQGANCLIP/Ghost in the Shell/2/input.txt deleted file mode 100644 index 7c0834b2db..0000000000 --- a/artworks/VQGANCLIP/Ghost in the Shell/2/input.txt +++ /dev/null @@ -1,34 +0,0 @@ -https://colab.research.google.com/gist/joetm/6532afc10019c895004f6e76d31fc4aa/copy_of_zooming_vqgan-clip_-z-quantize_method_with_additions.ipynb#scrollTo=g7EDme5RYCrt - -key_frames: - -text_prompts: -0: ("ghost in the shell" movie poster, painting by Glenn Retkuwski, trending on artstation:1) -width: -380 -height: -570 -model: - -wikiart_16384 -interval: -1 -initial_image: -Insert text here -target_images: -0: (/content/Ghost_in_the_Shell-446755661-large-scaled.jpg:1) -seed: -1 -max_frames: -720 -angle: -2:(0),3:(10) -zoom: -0: (1) -translation_x: -0: (0) -translation_y: -0: (0) -iterations_per_frame: -0:(25) -save_all_iterations: diff --git a/artworks/VQGANCLIP/Graffiti/banksy/350.png b/artworks/VQGANCLIP/Graffiti/banksy/350.png deleted file mode 100644 index b076664d08..0000000000 Binary files a/artworks/VQGANCLIP/Graffiti/banksy/350.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Greece/Athens/2/100.png b/artworks/VQGANCLIP/Greece/Athens/2/100.png deleted file mode 100644 index 209a930795..0000000000 Binary files a/artworks/VQGANCLIP/Greece/Athens/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Greece/Athens/2/input.txt b/artworks/VQGANCLIP/Greece/Athens/2/input.txt deleted file mode 100644 index 6c15cf2a5d..0000000000 --- a/artworks/VQGANCLIP/Greece/Athens/2/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -Input: sunset over Athens, trending on artstation - -Initial: /content/athens.jpg - diff --git a/artworks/VQGANCLIP/Greece/Athens/3/50.png b/artworks/VQGANCLIP/Greece/Athens/3/50.png deleted file mode 100644 index 5faf7c88c4..0000000000 Binary files a/artworks/VQGANCLIP/Greece/Athens/3/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Greece/Athens/3/input.txt b/artworks/VQGANCLIP/Greece/Athens/3/input.txt deleted file mode 100644 index f61da6eb41..0000000000 --- a/artworks/VQGANCLIP/Greece/Athens/3/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -Input: sunset over Athens, rendered by unrealengine, trending on artstation - -Initial: /content/athens.jpg - diff --git a/artworks/VQGANCLIP/Greece/Athens/4/75.png b/artworks/VQGANCLIP/Greece/Athens/4/75.png deleted file mode 100644 index fb3e1ce780..0000000000 Binary files a/artworks/VQGANCLIP/Greece/Athens/4/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Greece/Athens/4/input.txt b/artworks/VQGANCLIP/Greece/Athens/4/input.txt deleted file mode 100644 index d336967743..0000000000 --- a/artworks/VQGANCLIP/Greece/Athens/4/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -Input: sunrise over Athens, pencil sketch drawing, trending on artstation - -Initial: /content/athens.jpg - diff --git a/artworks/VQGANCLIP/Greece/Athens/5/50.png b/artworks/VQGANCLIP/Greece/Athens/5/50.png deleted file mode 100644 index 13b19bd618..0000000000 Binary files a/artworks/VQGANCLIP/Greece/Athens/5/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Greece/Athens/5/input.txt b/artworks/VQGANCLIP/Greece/Athens/5/input.txt deleted file mode 100644 index fe398b7dc0..0000000000 --- a/artworks/VQGANCLIP/Greece/Athens/5/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -Input: sunset over Athens, painting by Paul Cézanne, trending on artstation - -Initial: /content/athens.jpg - diff --git a/artworks/VQGANCLIP/Greece/Athens/6/75.png b/artworks/VQGANCLIP/Greece/Athens/6/75.png deleted file mode 100644 index 5a441f30a7..0000000000 Binary files a/artworks/VQGANCLIP/Greece/Athens/6/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Greece/Athens/6/input.txt b/artworks/VQGANCLIP/Greece/Athens/6/input.txt deleted file mode 100644 index f4ef42d9d7..0000000000 --- a/artworks/VQGANCLIP/Greece/Athens/6/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -Input: sunset over Athens, painting by Gustav Klimt, trending on artstation - -Initial: /content/athens.jpg - diff --git a/artworks/VQGANCLIP/Greece/Athens/7/75.png b/artworks/VQGANCLIP/Greece/Athens/7/75.png deleted file mode 100644 index 944d6e1ef4..0000000000 Binary files a/artworks/VQGANCLIP/Greece/Athens/7/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Greece/Athens/7/input.txt b/artworks/VQGANCLIP/Greece/Athens/7/input.txt deleted file mode 100644 index 409a5f0dd5..0000000000 --- a/artworks/VQGANCLIP/Greece/Athens/7/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -Input: sunrise over Athens, painting by Gustav Klimt, trending on artstation - -Initial: /content/athens.jpg - diff --git a/artworks/VQGANCLIP/Greece/Athens/8/50.png b/artworks/VQGANCLIP/Greece/Athens/8/50.png deleted file mode 100644 index 738bef3e7d..0000000000 Binary files a/artworks/VQGANCLIP/Greece/Athens/8/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Greece/Athens/8/input.txt b/artworks/VQGANCLIP/Greece/Athens/8/input.txt deleted file mode 100644 index 8041581c7b..0000000000 --- a/artworks/VQGANCLIP/Greece/Athens/8/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -Input: sunset over Athens, painting by Michelangelo, trending on artstation - -Initial: /content/athens.jpg - diff --git a/artworks/VQGANCLIP/Greece/Athens/9/125.png b/artworks/VQGANCLIP/Greece/Athens/9/125.png deleted file mode 100644 index c4f58fef19..0000000000 Binary files a/artworks/VQGANCLIP/Greece/Athens/9/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Greece/Athens/9/input.txt b/artworks/VQGANCLIP/Greece/Athens/9/input.txt deleted file mode 100644 index 361568946f..0000000000 --- a/artworks/VQGANCLIP/Greece/Athens/9/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -Input: sunset over Athens, painting by Gazorpazork, trending on artstation - -Initial: /content/athens.jpg - diff --git a/artworks/VQGANCLIP/Greece/Parthenon/4/100.png b/artworks/VQGANCLIP/Greece/Parthenon/4/100.png deleted file mode 100644 index e0fc5efd63..0000000000 Binary files a/artworks/VQGANCLIP/Greece/Parthenon/4/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Greece/Parthenon/4/input.txt b/artworks/VQGANCLIP/Greece/Parthenon/4/input.txt deleted file mode 100644 index 5be6f778e3..0000000000 --- a/artworks/VQGANCLIP/Greece/Parthenon/4/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -Input: Parthenon sunset in the style of Modernism | trending on artstation - -Initial: parthenon.jpg - diff --git a/artworks/VQGANCLIP/Heart/Drops of Heart/15/13.png b/artworks/VQGANCLIP/Heart/Drops of Heart/15/13.png deleted file mode 100644 index 59e5f394c6..0000000000 Binary files a/artworks/VQGANCLIP/Heart/Drops of Heart/15/13.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Heart/Drops of Heart/15/input.txt b/artworks/VQGANCLIP/Heart/Drops of Heart/15/input.txt deleted file mode 100644 index de69f7138b..0000000000 --- a/artworks/VQGANCLIP/Heart/Drops of Heart/15/input.txt +++ /dev/null @@ -1,32 +0,0 @@ -https://colab.research.google.com/drive/1ifBoRDrn5JdGtggshuoP3HmVnLz65ALs#scrollTo=ZdlpRFL8UAlW - -text_prompts: -drops of heart, sky is on fire, painting by greg rutkowski, trending on artstation -width: -400 -height: -400 -model: - -wikiart_16384 -interval: -1 -initial_image: -Insert text here -target_images: -Insert text here -seed: --1 -max_frames: -720 -angle: -0 -zoom: -1 -translation_x: -0 -translation_y: -0 -iterations_per_frame: -25 -save_all_iterations: diff --git a/artworks/VQGANCLIP/Heart/Exploding Heart/16/100.png b/artworks/VQGANCLIP/Heart/Exploding Heart/16/100.png deleted file mode 100644 index f815154787..0000000000 Binary files a/artworks/VQGANCLIP/Heart/Exploding Heart/16/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Heart/Exploding Heart/16/input.txt b/artworks/VQGANCLIP/Heart/Exploding Heart/16/input.txt deleted file mode 100644 index aea7ab8f82..0000000000 --- a/artworks/VQGANCLIP/Heart/Exploding Heart/16/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: exploding heart, shrapnel pieces, fiery sky, fantastic painting by greg rutkowski, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Heart/Exploding Heart/4/100.png b/artworks/VQGANCLIP/Heart/Exploding Heart/4/100.png deleted file mode 100644 index 9e4e12dae0..0000000000 Binary files a/artworks/VQGANCLIP/Heart/Exploding Heart/4/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Heart/Exploding Heart/4/input.txt b/artworks/VQGANCLIP/Heart/Exploding Heart/4/input.txt deleted file mode 100644 index 8e3993eec6..0000000000 --- a/artworks/VQGANCLIP/Heart/Exploding Heart/4/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: heart explosion, drops by greg rutkowski, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Heart/Exploding Heart/5/100.png b/artworks/VQGANCLIP/Heart/Exploding Heart/5/100.png deleted file mode 100644 index a075dd4e94..0000000000 Binary files a/artworks/VQGANCLIP/Heart/Exploding Heart/5/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Heart/Exploding Heart/5/input.txt b/artworks/VQGANCLIP/Heart/Exploding Heart/5/input.txt deleted file mode 100644 index 8e3993eec6..0000000000 --- a/artworks/VQGANCLIP/Heart/Exploding Heart/5/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: heart explosion, drops by greg rutkowski, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Heart/Open Heart Engineers/1/input.txt b/artworks/VQGANCLIP/Heart/Open Heart Engineers/1/input.txt deleted file mode 100644 index 9f4c20d378..0000000000 --- a/artworks/VQGANCLIP/Heart/Open Heart Engineers/1/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: drops of massive heart failure, painting by greg rutkowski, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Heart/Open Heart Engineers/1/realesrgan/125-175-edited_out.png b/artworks/VQGANCLIP/Heart/Open Heart Engineers/1/realesrgan/125-175-edited_out.png deleted file mode 100644 index 3fe6e5ce28..0000000000 Binary files a/artworks/VQGANCLIP/Heart/Open Heart Engineers/1/realesrgan/125-175-edited_out.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Heart/Open Heart Engineers/11/18.png b/artworks/VQGANCLIP/Heart/Open Heart Engineers/11/18.png deleted file mode 100644 index 899b16c5ce..0000000000 Binary files a/artworks/VQGANCLIP/Heart/Open Heart Engineers/11/18.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Heart/Open Heart Engineers/11/input.txt b/artworks/VQGANCLIP/Heart/Open Heart Engineers/11/input.txt deleted file mode 100644 index 416e7ef0ce..0000000000 --- a/artworks/VQGANCLIP/Heart/Open Heart Engineers/11/input.txt +++ /dev/null @@ -1,36 +0,0 @@ -https://colab.research.google.com/drive/1ifBoRDrn5JdGtggshuoP3HmVnLz65ALs#scrollTo=g7EDme5RYCrt -VQGAN+CLIP (z-quantize) - -key_frames: - -text_prompts: -drops of massive heart, engineers fix it, painting by greg rutkowski, trending on artstation -width: -400 -height: -400 -model: - -wikiart_16384 -interval: -1 -initial_image: -Insert text here -target_images: -Insert text here -seed: -123 -max_frames: -720 -angle: -0 -zoom: -1 -translation_x: -0 -translation_y: -0 -iterations_per_frame: -25 -save_all_iterations: - diff --git a/artworks/VQGANCLIP/Heart/Open Heart Engineers/12/1.png b/artworks/VQGANCLIP/Heart/Open Heart Engineers/12/1.png deleted file mode 100644 index 2a9cc04af3..0000000000 Binary files a/artworks/VQGANCLIP/Heart/Open Heart Engineers/12/1.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Heart/Open Heart Engineers/12/input.txt b/artworks/VQGANCLIP/Heart/Open Heart Engineers/12/input.txt deleted file mode 100644 index c9eccb102a..0000000000 --- a/artworks/VQGANCLIP/Heart/Open Heart Engineers/12/input.txt +++ /dev/null @@ -1,35 +0,0 @@ -https://colab.research.google.com/drive/1ifBoRDrn5JdGtggshuoP3HmVnLz65ALs#scrollTo=g7EDme5RYCrt -VQGAN+CLIP (z-quantize) - -key_frames: - -text_prompts: -drops of heart, engineers work on open heart, painting by greg rutkowski, trending on artstation -width: -400 -height: -400 -model: - -wikiart_16384 -interval: -1 -initial_image: -Insert text here -target_images: -Insert text here -seed: -123 -max_frames: -720 -angle: -0 -zoom: -1 -translation_x: -0 -translation_y: -0 -iterations_per_frame: -25 -save_all_iterations: diff --git a/artworks/VQGANCLIP/Heart/Open Heart Engineers/14/2.png b/artworks/VQGANCLIP/Heart/Open Heart Engineers/14/2.png deleted file mode 100644 index 465b9a0e56..0000000000 Binary files a/artworks/VQGANCLIP/Heart/Open Heart Engineers/14/2.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Heart/Open Heart Engineers/14/input.txt b/artworks/VQGANCLIP/Heart/Open Heart Engineers/14/input.txt deleted file mode 100644 index a1ea01cab1..0000000000 --- a/artworks/VQGANCLIP/Heart/Open Heart Engineers/14/input.txt +++ /dev/null @@ -1,32 +0,0 @@ -https://colab.research.google.com/drive/1ifBoRDrn5JdGtggshuoP3HmVnLz65ALs#scrollTo=ZdlpRFL8UAlW - -text_prompts: -drops of massive heart failure, painting by greg rutkowski, trending on artstation -width: -400 -height: -400 -model: - -wikiart_16384 -interval: -1 -initial_image: -Insert text here -target_images: -Insert text here -seed: --1 -max_frames: -720 -angle: -0 -zoom: -1 -translation_x: -0 -translation_y: -0 -iterations_per_frame: -25 -save_all_iterations: diff --git a/artworks/VQGANCLIP/Heart/Open Heart Engineers/2/200.png b/artworks/VQGANCLIP/Heart/Open Heart Engineers/2/200.png deleted file mode 100644 index 05f1cd5ca7..0000000000 Binary files a/artworks/VQGANCLIP/Heart/Open Heart Engineers/2/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Heart/Open Heart Engineers/2/input.txt b/artworks/VQGANCLIP/Heart/Open Heart Engineers/2/input.txt deleted file mode 100644 index 5efd08123a..0000000000 --- a/artworks/VQGANCLIP/Heart/Open Heart Engineers/2/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: drops of massive heart failure, engineers fix problem, painting by greg rutkowski, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Heart/Open Heart Engineers/3/input.txt b/artworks/VQGANCLIP/Heart/Open Heart Engineers/3/input.txt deleted file mode 100644 index 331227d1d2..0000000000 --- a/artworks/VQGANCLIP/Heart/Open Heart Engineers/3/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: drops of massive heart, open heart engineer, painting by greg rutkowski, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Heart/Open Heart Engineers/3/realesrgan/250_out.png b/artworks/VQGANCLIP/Heart/Open Heart Engineers/3/realesrgan/250_out.png deleted file mode 100644 index 5f7acc48e5..0000000000 Binary files a/artworks/VQGANCLIP/Heart/Open Heart Engineers/3/realesrgan/250_out.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Helmet/3/150.png b/artworks/VQGANCLIP/Helmet/3/150.png deleted file mode 100644 index ee533b3e2a..0000000000 Binary files a/artworks/VQGANCLIP/Helmet/3/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Helmet/3/input.txt b/artworks/VQGANCLIP/Helmet/3/input.txt deleted file mode 100644 index 20e86be7d2..0000000000 --- a/artworks/VQGANCLIP/Helmet/3/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: Futuristic helmet, portrait by Joseph Cross, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Human/Face/2/200.png b/artworks/VQGANCLIP/Human/Face/2/200.png deleted file mode 100644 index 512dcbdaff..0000000000 Binary files a/artworks/VQGANCLIP/Human/Face/2/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Human/Face/2/input.txt b/artworks/VQGANCLIP/Human/Face/2/input.txt deleted file mode 100644 index 3f2645151f..0000000000 --- a/artworks/VQGANCLIP/Human/Face/2/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: "Symmetrical human face." Portrait painting, trending on /r/art - -Model: vqgan_imagenet_f16_16384 - -Seed: 1234 diff --git a/artworks/VQGANCLIP/Illuminati/Burning Cross/1/150.png b/artworks/VQGANCLIP/Illuminati/Burning Cross/1/150.png deleted file mode 100644 index eca8918371..0000000000 Binary files a/artworks/VQGANCLIP/Illuminati/Burning Cross/1/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Illuminati/Burning Cross/1/input.txt b/artworks/VQGANCLIP/Illuminati/Burning Cross/1/input.txt deleted file mode 100644 index f81b101830..0000000000 --- a/artworks/VQGANCLIP/Illuminati/Burning Cross/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"the illuminati circle a burning cross" painting by George W. Bush, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Illuminati/Burning Cross/2/125.png b/artworks/VQGANCLIP/Illuminati/Burning Cross/2/125.png deleted file mode 100644 index 6324928ab9..0000000000 Binary files a/artworks/VQGANCLIP/Illuminati/Burning Cross/2/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Illuminati/Burning Cross/2/input.txt b/artworks/VQGANCLIP/Illuminati/Burning Cross/2/input.txt deleted file mode 100644 index 0a583620f7..0000000000 --- a/artworks/VQGANCLIP/Illuminati/Burning Cross/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"the illuminati burning pentagram" painting by Greg Rutkowski, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Illuminati/Burning Cross/3/50.png b/artworks/VQGANCLIP/Illuminati/Burning Cross/3/50.png deleted file mode 100644 index f7262207d3..0000000000 Binary files a/artworks/VQGANCLIP/Illuminati/Burning Cross/3/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Illuminati/Burning Cross/3/input.txt b/artworks/VQGANCLIP/Illuminati/Burning Cross/3/input.txt deleted file mode 100644 index d9f10a3f28..0000000000 --- a/artworks/VQGANCLIP/Illuminati/Burning Cross/3/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"illuminati burning cross kkk" painting by Greg Rutkowski, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Isometric/1/150.png b/artworks/VQGANCLIP/Isometric/1/150.png deleted file mode 100644 index f48ad13c94..0000000000 Binary files a/artworks/VQGANCLIP/Isometric/1/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Isometric/1/input.txt b/artworks/VQGANCLIP/Isometric/1/input.txt deleted file mode 100644 index 4a6c5f2e13..0000000000 --- a/artworks/VQGANCLIP/Isometric/1/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: isometric view of a city|trending on artstation diff --git a/artworks/VQGANCLIP/Isometric/2/100.png b/artworks/VQGANCLIP/Isometric/2/100.png deleted file mode 100644 index 68deac4aba..0000000000 Binary files a/artworks/VQGANCLIP/Isometric/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Isometric/2/input.txt b/artworks/VQGANCLIP/Isometric/2/input.txt deleted file mode 100644 index 4a6c5f2e13..0000000000 --- a/artworks/VQGANCLIP/Isometric/2/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: isometric view of a city|trending on artstation diff --git a/artworks/VQGANCLIP/Isometric/3/100.png b/artworks/VQGANCLIP/Isometric/3/100.png deleted file mode 100644 index d99414bf72..0000000000 Binary files a/artworks/VQGANCLIP/Isometric/3/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Isometric/3/input.txt b/artworks/VQGANCLIP/Isometric/3/input.txt deleted file mode 100644 index b6a5befb3d..0000000000 --- a/artworks/VQGANCLIP/Isometric/3/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: isometric view of a city:30|trending on artstation:10 diff --git a/artworks/VQGANCLIP/Jack the Ripper/1/25.png b/artworks/VQGANCLIP/Jack the Ripper/1/25.png deleted file mode 100644 index d8582d1fa5..0000000000 Binary files a/artworks/VQGANCLIP/Jack the Ripper/1/25.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Jack the Ripper/1/input.txt b/artworks/VQGANCLIP/Jack the Ripper/1/input.txt deleted file mode 100644 index 76a5a88400..0000000000 --- a/artworks/VQGANCLIP/Jack the Ripper/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Jack the Ripper|scary painting|trending on artstation - -Initial: /content/971dce3626b98431bcd53b0619c6216d.jpg - -w: 372 -h: 500 diff --git a/artworks/VQGANCLIP/Jack the Ripper/2/100.png b/artworks/VQGANCLIP/Jack the Ripper/2/100.png deleted file mode 100644 index 9bf3176234..0000000000 Binary files a/artworks/VQGANCLIP/Jack the Ripper/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Jack the Ripper/2/input.txt b/artworks/VQGANCLIP/Jack the Ripper/2/input.txt deleted file mode 100644 index 1e85110dd9..0000000000 --- a/artworks/VQGANCLIP/Jack the Ripper/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Jack the Ripper:3|scary:2|painting:1|trending on artstation:1 - -Initial: /content/971dce3626b98431bcd53b0619c6216d.jpg - -w: 372 -h: 500 diff --git a/artworks/VQGANCLIP/Jesus/1/100.png b/artworks/VQGANCLIP/Jesus/1/100.png deleted file mode 100644 index 60b680dea5..0000000000 Binary files a/artworks/VQGANCLIP/Jesus/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Jesus/1/input.txt b/artworks/VQGANCLIP/Jesus/1/input.txt deleted file mode 100644 index 38086d46aa..0000000000 --- a/artworks/VQGANCLIP/Jesus/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "\"jesus with ak-47\", by Zdzislaw Beksinski, trending on /r/art" - ], - "seed": 11872288655661534828, - "size": [ - 504, - 316 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/King/Emperor has no clothes/1/225.png b/artworks/VQGANCLIP/King/Emperor has no clothes/1/225.png deleted file mode 100644 index 0c75539863..0000000000 Binary files a/artworks/VQGANCLIP/King/Emperor has no clothes/1/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/King/Emperor has no clothes/1/input.txt b/artworks/VQGANCLIP/King/Emperor has no clothes/1/input.txt deleted file mode 100644 index 6ce796e788..0000000000 --- a/artworks/VQGANCLIP/King/Emperor has no clothes/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"The Emperor Has No Clothes" by Dominique Appia, trending on wikiart - -model: wikiart_16384 - -seed: 15667982170035331064 diff --git a/artworks/VQGANCLIP/King/Emperor has no clothes/2/325.png b/artworks/VQGANCLIP/King/Emperor has no clothes/2/325.png deleted file mode 100644 index d39d9cb95f..0000000000 Binary files a/artworks/VQGANCLIP/King/Emperor has no clothes/2/325.png and /dev/null differ diff --git a/artworks/VQGANCLIP/King/Emperor has no clothes/2/input.txt b/artworks/VQGANCLIP/King/Emperor has no clothes/2/input.txt deleted file mode 100644 index 2d43411d75..0000000000 --- a/artworks/VQGANCLIP/King/Emperor has no clothes/2/input.txt +++ /dev/null @@ -1,24 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "\"The Emperor Has No Clothes\"", - "painting by Dominique Appia, trending on /r/art wikiart" - ], - "seed": 8102272114539091760, - "size": [ - 500, - 400 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Landscape/Skopje/Mount Vodno/1/100.png b/artworks/VQGANCLIP/Landscape/Skopje/Mount Vodno/1/100.png deleted file mode 100644 index dda3bcb51e..0000000000 Binary files a/artworks/VQGANCLIP/Landscape/Skopje/Mount Vodno/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Landscape/Skopje/Mount Vodno/1/input.txt b/artworks/VQGANCLIP/Landscape/Skopje/Mount Vodno/1/input.txt deleted file mode 100644 index 1322369264..0000000000 --- a/artworks/VQGANCLIP/Landscape/Skopje/Mount Vodno/1/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: Mount Vodno, Skopje, at dawn. Oil painting, trending on wikiart - -Model: vqgan_imagenet_f16_16384 - -seed: 1234 diff --git a/artworks/VQGANCLIP/Landscape/Swamp/50.png b/artworks/VQGANCLIP/Landscape/Swamp/50.png deleted file mode 100644 index 7e6090f5ac..0000000000 Binary files a/artworks/VQGANCLIP/Landscape/Swamp/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Landscape/Tip of the Iceberg/2/100.png b/artworks/VQGANCLIP/Landscape/Tip of the Iceberg/2/100.png deleted file mode 100644 index 5789e1bb71..0000000000 Binary files a/artworks/VQGANCLIP/Landscape/Tip of the Iceberg/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Landscape/Tip of the Iceberg/2/input.txt b/artworks/VQGANCLIP/Landscape/Tip of the Iceberg/2/input.txt deleted file mode 100644 index c28df41728..0000000000 --- a/artworks/VQGANCLIP/Landscape/Tip of the Iceberg/2/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Antarctic landscape with antarctic station in a snow storm. painting, trending on artstation - -model: vqgan_imagenet_f16_16384 - -seed: 1234 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lark/run-5/400.png b/artworks/VQGANCLIP/Lark/run-5/400.png deleted file mode 100644 index 4e7f224ad1..0000000000 Binary files a/artworks/VQGANCLIP/Lark/run-5/400.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lark/run-5/input.txt b/artworks/VQGANCLIP/Lark/run-5/input.txt deleted file mode 100644 index 1866932be6..0000000000 --- a/artworks/VQGANCLIP/Lark/run-5/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -Input: Mesmerized girl stares into the sunrise, painting 'The Song of the Lark' by Jules Breton, trending on artstation - -dimensions: -h: 500 -w: 384 - -target: target.jpg - diff --git a/artworks/VQGANCLIP/Leonardo da Vinci/leonardo da vinci paints the sunset/100.png b/artworks/VQGANCLIP/Leonardo da Vinci/leonardo da vinci paints the sunset/100.png deleted file mode 100644 index 672ea80007..0000000000 Binary files a/artworks/VQGANCLIP/Leonardo da Vinci/leonardo da vinci paints the sunset/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Leonardo da Vinci/leonardo da vinci paints the sunset/input.txt b/artworks/VQGANCLIP/Leonardo da Vinci/leonardo da vinci paints the sunset/input.txt deleted file mode 100644 index ce21e9124e..0000000000 --- a/artworks/VQGANCLIP/Leonardo da Vinci/leonardo da vinci paints the sunset/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: leonardo da vinci paints the sunset - diff --git a/artworks/VQGANCLIP/Libraries/1/50.png b/artworks/VQGANCLIP/Libraries/1/50.png deleted file mode 100644 index dc72443be7..0000000000 Binary files a/artworks/VQGANCLIP/Libraries/1/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Libraries/1/input.txt b/artworks/VQGANCLIP/Libraries/1/input.txt deleted file mode 100644 index 84052cdea2..0000000000 --- a/artworks/VQGANCLIP/Libraries/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -Input: ancient library, realistic painting, trending on artstation - -Initial: 50628-lesesaal-nationalbibliothek.jpg|Austrian-National-Library-Vienna.jpg|download.jpg|images.jpg|lernparadiese_wien_headerneu.jpg \ No newline at end of file diff --git a/artworks/VQGANCLIP/Libraries/2/75.png b/artworks/VQGANCLIP/Libraries/2/75.png deleted file mode 100644 index d171410ee2..0000000000 Binary files a/artworks/VQGANCLIP/Libraries/2/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Libraries/2/input.txt b/artworks/VQGANCLIP/Libraries/2/input.txt deleted file mode 100644 index 84052cdea2..0000000000 --- a/artworks/VQGANCLIP/Libraries/2/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -Input: ancient library, realistic painting, trending on artstation - -Initial: 50628-lesesaal-nationalbibliothek.jpg|Austrian-National-Library-Vienna.jpg|download.jpg|images.jpg|lernparadiese_wien_headerneu.jpg \ No newline at end of file diff --git a/artworks/VQGANCLIP/Libraries/3/50.png b/artworks/VQGANCLIP/Libraries/3/50.png deleted file mode 100644 index d01b767a21..0000000000 Binary files a/artworks/VQGANCLIP/Libraries/3/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Libraries/3/input.txt b/artworks/VQGANCLIP/Libraries/3/input.txt deleted file mode 100644 index a5fc4f3d4d..0000000000 --- a/artworks/VQGANCLIP/Libraries/3/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -Input: ancient library, realistic painting, trending on artstation - -Initial: Austrian-National-Library-Vienna.jpg|download.jpg|images.jpg|lernparadiese_wien_headerneu.jpg \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/1/125.png b/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/1/125.png deleted file mode 100644 index 6849510dec..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/1/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/1/input.txt b/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/1/input.txt deleted file mode 100644 index 6d17ea1a66..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/1/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: "Everything's okay as long as my third eye seeing scenery through the retina translated by the brain Then conveyed to the soul We must seize control" Painting, trending on artstation - -model: vqgan_imagenet_f16_16384 - -seed: 1234 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/2/200.png b/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/2/200.png deleted file mode 100644 index cd9a534e9d..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/2/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/2/input.txt b/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/2/input.txt deleted file mode 100644 index 3861528704..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"Progress is methodic meaning step by step Too much too long too many minds have slept As the world grows grey throw away mass produce What are we to do now all hell has broken loose" Painting by Greg Rutkowski, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/3/425.png b/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/3/425.png deleted file mode 100644 index f110fc74ef..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/3/425.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/3/input.txt b/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/3/input.txt deleted file mode 100644 index 9cc0f7f09a..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Archive/Beautiful World/3/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"As the plot thickens minds stricken with dilemma Everything's okay as long as the third eye seeing scenery through the retina translated by the brain conveys to the soul We must seize control!" Painting by Greg Rutkowski, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Atmosphere/God Bathroom Floor/1/125.png b/artworks/VQGANCLIP/Lyrics/Atmosphere/God Bathroom Floor/1/125.png deleted file mode 100644 index 52c8eb798b..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Atmosphere/God Bathroom Floor/1/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Atmosphere/God Bathroom Floor/1/input.txt b/artworks/VQGANCLIP/Lyrics/Atmosphere/God Bathroom Floor/1/input.txt deleted file mode 100644 index 512a91ff2f..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Atmosphere/God Bathroom Floor/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"From a head full of pressure wrest the senses that I clutch I made a date with divinity, but she wouldn't let me fuck And I got touched by a hazy shade of God-help-me-change And caught a rush on the floor from the life in my veins"|oil painting, trending on artstation - -model: vqgan_imagenet_f16_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/CunninLynguists/Hot/3/150.png b/artworks/VQGANCLIP/Lyrics/CunninLynguists/Hot/3/150.png deleted file mode 100644 index 813a658649..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/CunninLynguists/Hot/3/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/CunninLynguists/Hot/3/input.txt b/artworks/VQGANCLIP/Lyrics/CunninLynguists/Hot/3/input.txt deleted file mode 100644 index 651c46e433..0000000000 --- a/artworks/VQGANCLIP/Lyrics/CunninLynguists/Hot/3/input.txt +++ /dev/null @@ -1,25 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "\"When I see the man in the mirror I see an animal clearer\"", - "man sees beast in mirror", - "by Ivan Aivazovsky, trending on wikiart" - ], - "seed": 419934438398348045, - "size": [ - 390, - 500 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/CunninLynguists/Hot/6/250.png b/artworks/VQGANCLIP/Lyrics/CunninLynguists/Hot/6/250.png deleted file mode 100644 index 4b89599731..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/CunninLynguists/Hot/6/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/CunninLynguists/Hot/6/input.txt b/artworks/VQGANCLIP/Lyrics/CunninLynguists/Hot/6/input.txt deleted file mode 100644 index b2a1cd9c44..0000000000 --- a/artworks/VQGANCLIP/Lyrics/CunninLynguists/Hot/6/input.txt +++ /dev/null @@ -1,24 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "half man, half beast", - "painting in the style of Indigenism, trending on wikiart" - ], - "seed": 15838524392318446635, - "size": [ - 390, - 500 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/CunninLynguists/Last of a dying breed/1/0293.png b/artworks/VQGANCLIP/Lyrics/CunninLynguists/Last of a dying breed/1/0293.png deleted file mode 100644 index 3ca72be7ab..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/CunninLynguists/Last of a dying breed/1/0293.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/CunninLynguists/Last of a dying breed/1/input.txt b/artworks/VQGANCLIP/Lyrics/CunninLynguists/Last of a dying breed/1/input.txt deleted file mode 100644 index fd93de485d..0000000000 --- a/artworks/VQGANCLIP/Lyrics/CunninLynguists/Last of a dying breed/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"Last of a dying breed, I'm curious All my people on lock down, Lord, mysterious Say Last of a dying breed, everybody here better stop now Nothing's gonna slow that clock down, no, I'm furious." Painting, trending on /r/art - -model: vqgan_imagenet_f16_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/2/400.png b/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/2/400.png deleted file mode 100644 index b5c3a4194d..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/2/400.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/2/input.txt b/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/2/input.txt deleted file mode 100644 index afda13dce3..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/2/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: It was a windy day outside the cafe, he said to her 'leave with me and you can be with me'. Painting, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/3/150.png b/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/3/150.png deleted file mode 100644 index 5f88c042b9..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/3/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/3/input.txt b/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/3/input.txt deleted file mode 100644 index f2f80bfa4b..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/3/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -He was unshaven, he had craving for danger, he looked like he had it in his nature, she said 'What are you thinking about?'. Painting, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/5/100.png b/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/5/100.png deleted file mode 100644 index f06745fa72..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/5/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/5/input.txt b/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/5/input.txt deleted file mode 100644 index 701e23709c..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Day One/Truly Madly Deeply/5/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"you can think up a dream, But there's no dream that you can touch, But I can touch you, so you must be true". cubism painting, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Depeche Mode/Dirt/1/300.png b/artworks/VQGANCLIP/Lyrics/Depeche Mode/Dirt/1/300.png deleted file mode 100644 index 7d5456ba85..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Depeche Mode/Dirt/1/300.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Depeche Mode/Dirt/1/input.txt b/artworks/VQGANCLIP/Lyrics/Depeche Mode/Dirt/1/input.txt deleted file mode 100644 index dd47a23e2d..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Depeche Mode/Dirt/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "I've been dirt And I don't care Because I'm burning inside I'm the fire of life, painting by Zdzislaw Beksinski, trending on /r/art #amazing #fantastic" - ], - "seed": 15345446405388708777, - "size": [ - 400, - 460 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Everlast/Dirty/5/150.png b/artworks/VQGANCLIP/Lyrics/Everlast/Dirty/5/150.png deleted file mode 100644 index c244ffd801..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Everlast/Dirty/5/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Everlast/Dirty/5/input.txt b/artworks/VQGANCLIP/Lyrics/Everlast/Dirty/5/input.txt deleted file mode 100644 index e5a0890e32..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Everlast/Dirty/5/input.txt +++ /dev/null @@ -1,9 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"I got a weakness, I got a fever, on the edge of the bubble, waiting for the bubble to burst"|oil painting by Claude Lorrain, trending on wikiart - -model: vqgan_imagenet_f16_16384 - -seed: -1 - diff --git a/artworks/VQGANCLIP/Lyrics/Everlast/Dirty/6/225.png b/artworks/VQGANCLIP/Lyrics/Everlast/Dirty/6/225.png deleted file mode 100644 index ad3ff8d873..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Everlast/Dirty/6/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Everlast/Dirty/6/input.txt b/artworks/VQGANCLIP/Lyrics/Everlast/Dirty/6/input.txt deleted file mode 100644 index e5a0890e32..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Everlast/Dirty/6/input.txt +++ /dev/null @@ -1,9 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"I got a weakness, I got a fever, on the edge of the bubble, waiting for the bubble to burst"|oil painting by Claude Lorrain, trending on wikiart - -model: vqgan_imagenet_f16_16384 - -seed: -1 - diff --git a/artworks/VQGANCLIP/Lyrics/Evidence/1/125.png b/artworks/VQGANCLIP/Lyrics/Evidence/1/125.png deleted file mode 100644 index ed8e96806c..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Evidence/1/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Evidence/1/input.txt b/artworks/VQGANCLIP/Lyrics/Evidence/1/input.txt deleted file mode 100644 index 6786d4a3cc..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Evidence/1/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: -I got some money I'm a blow it all today They say Michael don't throw it all away And my reply was there's more on the way When I said it I was walking in the rain. painting, trending on /r/art \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Evidence/7/1.png b/artworks/VQGANCLIP/Lyrics/Evidence/7/1.png deleted file mode 100644 index 9f847bce9d..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Evidence/7/1.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Evidence/7/input.txt b/artworks/VQGANCLIP/Lyrics/Evidence/7/input.txt deleted file mode 100644 index 9081163899..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Evidence/7/input.txt +++ /dev/null @@ -1,34 +0,0 @@ -https://colab.research.google.com/gist/joetm/6532afc10019c895004f6e76d31fc4aa/copy_of_zooming_vqgan-clip_-z-quantize_method_with_additions.ipynb#scrollTo=ZdlpRFL8UAlW - -key_frames: - -text_prompts: -"It's the ignorance that causes all the bliss in my surroundings Cause dealing with reality's like drawing out your boundaries And I refuse to be referred as less than a creative", painting by Glenn Retkuwski, trending on artstation -width: -400 -height: -400 -model: - -wikiart_16384 -interval: -1 -initial_image: -Insert text here -target_images: -Insert text here -seed: -1 -max_frames: -720 -angle: -10 -zoom: -0 -translation_x: -0 -translation_y: -0 -iterations_per_frame: -25 -save_all_iterations: diff --git a/artworks/VQGANCLIP/Lyrics/Greenday - Basket Case/2/125.png b/artworks/VQGANCLIP/Lyrics/Greenday - Basket Case/2/125.png deleted file mode 100644 index 9ca0b76ee2..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Greenday - Basket Case/2/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Greenday - Basket Case/2/input.txt b/artworks/VQGANCLIP/Lyrics/Greenday - Basket Case/2/input.txt deleted file mode 100644 index eae2081255..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Greenday - Basket Case/2/input.txt +++ /dev/null @@ -1,9 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: Do you have the time to listen to me whine -About nothing and everything all at once? -I am one of those -Melodramatic fools -Neurotic to the bone -No doubt about it -Sometimes I give myself the creeps. painting. trending on /r/art diff --git a/artworks/VQGANCLIP/Lyrics/Hair/Aquarius/1/325.png b/artworks/VQGANCLIP/Lyrics/Hair/Aquarius/1/325.png deleted file mode 100644 index 4b17d57a5a..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Hair/Aquarius/1/325.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Hair/Aquarius/1/input.txt b/artworks/VQGANCLIP/Lyrics/Hair/Aquarius/1/input.txt deleted file mode 100644 index 84205b23cb..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Hair/Aquarius/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"When the moon is in the Seventh House And Jupiter aligns with Mars Then peace will guide the planets And love will steer the stars" Painting, trending on artstation - -model: vqgan_imagenet_f16_16384 - -seed: 1234 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Into the Wild/When I walk beside her/2/100.png b/artworks/VQGANCLIP/Lyrics/Into the Wild/When I walk beside her/2/100.png deleted file mode 100644 index 8dda6773bb..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Into the Wild/When I walk beside her/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Into the Wild/When I walk beside her/2/input.txt b/artworks/VQGANCLIP/Lyrics/Into the Wild/When I walk beside her/2/input.txt deleted file mode 100644 index 5606e9aedb..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Into the Wild/When I walk beside her/2/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: When I walk beside her I am the better man, painting, trending on /r/art - -model: vqgan_imagenet_f16_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Kate Perry/Peacock/50.png b/artworks/VQGANCLIP/Lyrics/Kate Perry/Peacock/50.png deleted file mode 100644 index 8a90413393..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Kate Perry/Peacock/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Kate Perry/Peacock/input.txt b/artworks/VQGANCLIP/Lyrics/Kate Perry/Peacock/input.txt deleted file mode 100644 index dca62c99a3..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Kate Perry/Peacock/input.txt +++ /dev/null @@ -1,13 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -Are you brave enough to let me see your peacock? -Don't be a chicken, boy, stop acting like a biotch -I'm a peace out if you don't give me the pay off -Come on, baby, let me see -What you're hiding underneath -Are you brave enough to let me see your peacock? - -Model: vqgan_imagenet_f16_16384 - -seed: 1234 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Monty Python/Gender/1/100.png b/artworks/VQGANCLIP/Lyrics/Monty Python/Gender/1/100.png deleted file mode 100644 index 7b44ef54f5..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Monty Python/Gender/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Monty Python/Gender/1/input.txt b/artworks/VQGANCLIP/Lyrics/Monty Python/Gender/1/input.txt deleted file mode 100644 index 2a45071c96..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Monty Python/Gender/1/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -"I want to be a woman. From now on I want you all to call me Loretta. It's my right as a man. I want to have babies."|"It's every man's right to have babies if he wants them. We shall fight the oppressors for your right to have babies."|"What's the point of fighting for his right to have babies, when he can't have babies? It is symbolic of our struggle against oppression. It's symbolic of his struggle against reality."|Painting, trending on /r/art - -model: vqgan_imagenet_f16_18384 - -seed: 1234 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Nine Inch Nails/Right Where It Belongs/1/225.png b/artworks/VQGANCLIP/Lyrics/Nine Inch Nails/Right Where It Belongs/1/225.png deleted file mode 100644 index 2be80f3413..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Nine Inch Nails/Right Where It Belongs/1/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Nine Inch Nails/Right Where It Belongs/1/input.txt b/artworks/VQGANCLIP/Lyrics/Nine Inch Nails/Right Where It Belongs/1/input.txt deleted file mode 100644 index cc627db1ef..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Nine Inch Nails/Right Where It Belongs/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"What if everything around you isn't quite as it seems? What if all the world you used to know Is an elaborate dream?" Painting by Haralampi Oroschakoff, trending on wikiart - -model: wikiart_16384 - -seed: -1 diff --git a/artworks/VQGANCLIP/Lyrics/Nine Inch Nails/Right Where It Belongs/2/250.png b/artworks/VQGANCLIP/Lyrics/Nine Inch Nails/Right Where It Belongs/2/250.png deleted file mode 100644 index 0a1bfc3be0..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Nine Inch Nails/Right Where It Belongs/2/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Nine Inch Nails/Right Where It Belongs/2/input.txt b/artworks/VQGANCLIP/Lyrics/Nine Inch Nails/Right Where It Belongs/2/input.txt deleted file mode 100644 index 75a7edf807..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Nine Inch Nails/Right Where It Belongs/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"What if everything around you isn't quite as it seems? What if all the world you used to know Is an elaborate dream?" Painting by Haralampi G. Oroschakoff, trending on wikiart - -model: wikiart_16384 - -seed: -1 diff --git a/artworks/VQGANCLIP/Lyrics/Overwerk/Move your body/1/175.png b/artworks/VQGANCLIP/Lyrics/Overwerk/Move your body/1/175.png deleted file mode 100644 index 445920d8c0..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Overwerk/Move your body/1/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Overwerk/Move your body/1/input.txt b/artworks/VQGANCLIP/Lyrics/Overwerk/Move your body/1/input.txt deleted file mode 100644 index 1680546672..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Overwerk/Move your body/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"Your body's poetry, speak to me Won't you let me be your rhythm tonight? Move your body, move your body I wanna be your muse, don't refuse And let me be your rhythm tonight" Painting, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Prodigy/Omen/2/175.png b/artworks/VQGANCLIP/Lyrics/Prodigy/Omen/2/175.png deleted file mode 100644 index b0a6926bfa..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Prodigy/Omen/2/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Prodigy/Omen/2/input.txt b/artworks/VQGANCLIP/Lyrics/Prodigy/Omen/2/input.txt deleted file mode 100644 index 5e2ed0d0f3..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Prodigy/Omen/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"The writing's on the wall It won't go away It's an Omen You just run on automation." Painting, trending on /r/art - -Model: vqgan_imagenet_f16_16384 - -seed: 345462 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Rage Against The Machine/Hungry People/1/100.png b/artworks/VQGANCLIP/Lyrics/Rage Against The Machine/Hungry People/1/100.png deleted file mode 100644 index bf051b0b82..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Rage Against The Machine/Hungry People/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Rage Against The Machine/Hungry People/1/input.txt b/artworks/VQGANCLIP/Lyrics/Rage Against The Machine/Hungry People/1/input.txt deleted file mode 100644 index 8c4eaf8612..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Rage Against The Machine/Hungry People/1/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: Hungry people don't stay hungry for long They get hope from fire and smoke as they reach for the dawn. painting, trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Rise Against - Roadside/150.png b/artworks/VQGANCLIP/Lyrics/Rise Against - Roadside/150.png deleted file mode 100644 index 1eec90b548..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Rise Against - Roadside/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Rise Against - Roadside/input.txt b/artworks/VQGANCLIP/Lyrics/Rise Against - Roadside/input.txt deleted file mode 100644 index 8b366aa5f3..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Rise Against - Roadside/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: So leave me at the roadside And hang me up and out to dry So leave me at the roadside And hang me up and out to dry. painting. trending on /r/art \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/System of a Down/Ego Brain/1/125.png b/artworks/VQGANCLIP/Lyrics/System of a Down/Ego Brain/1/125.png deleted file mode 100644 index 71ce75fc07..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/System of a Down/Ego Brain/1/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/System of a Down/Ego Brain/1/input.txt b/artworks/VQGANCLIP/Lyrics/System of a Down/Ego Brain/1/input.txt deleted file mode 100644 index 6a223cefd1..0000000000 --- a/artworks/VQGANCLIP/Lyrics/System of a Down/Ego Brain/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"You see my pain is real Watch my world dissolve And pretend that none of us see the fall As I turned to sand You took me by the hand And declared, that love prevails over all." Painting, trending on artstation - -model: vqgan_imagenet_f16_16384 - -seed: 1234 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/System of a Down/Ego Brain/4/100.png b/artworks/VQGANCLIP/Lyrics/System of a Down/Ego Brain/4/100.png deleted file mode 100644 index c5d1bc8684..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/System of a Down/Ego Brain/4/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/System of a Down/Ego Brain/4/input.txt b/artworks/VQGANCLIP/Lyrics/System of a Down/Ego Brain/4/input.txt deleted file mode 100644 index daa53a6623..0000000000 --- a/artworks/VQGANCLIP/Lyrics/System of a Down/Ego Brain/4/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"You see my pain is real Watch my world dissolve And pretend that none of us see the fall As I turned to sand You took me by the hand And declared, that love prevails over all." Painting, trending on artstation - -model: vqgan_imagenet_f16_16384 - -seed: 1634567 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Tech Thieves/Low/1/75.png b/artworks/VQGANCLIP/Lyrics/Tech Thieves/Low/1/75.png deleted file mode 100644 index 41cc49761c..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Tech Thieves/Low/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Tech Thieves/Low/1/input.txt b/artworks/VQGANCLIP/Lyrics/Tech Thieves/Low/1/input.txt deleted file mode 100644 index 5fdeed55a8..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Tech Thieves/Low/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"Let go Tell me what's runnin' in your head Remember what you said before I tried to let you go Let go." Painting, trending on /r/art - -model: vqgan_imagenet_f16_16384 - -seed: 1234 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Tech Thieves/Low/2/75.png b/artworks/VQGANCLIP/Lyrics/Tech Thieves/Low/2/75.png deleted file mode 100644 index a07e0a6ff5..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Tech Thieves/Low/2/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Tech Thieves/Low/2/input.txt b/artworks/VQGANCLIP/Lyrics/Tech Thieves/Low/2/input.txt deleted file mode 100644 index b2396dba3c..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Tech Thieves/Low/2/input.txt +++ /dev/null @@ -1,15 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"Love me, the words I always said -They're screaming in my head -But no, i gotta let 'em go -Let go -Just breath, I tell myself tonight -I see, your world and I'm inside -And i've been feelin', -I've been feelin' low" Painting, trending on /r/art - -model: vqgan_imagenet_f16_16384 - -seed: 1234 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Tose Proeski/2/225.png b/artworks/VQGANCLIP/Lyrics/Tose Proeski/2/225.png deleted file mode 100644 index 08f2e68751..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Tose Proeski/2/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Tose Proeski/2/input.txt b/artworks/VQGANCLIP/Lyrics/Tose Proeski/2/input.txt deleted file mode 100644 index 8544e05311..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Tose Proeski/2/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "\"\u0417\u0430\u0458\u0434\u0438 ,\u0437\u0430\u0458\u0434\u0438 \u0458\u0430\u0441\u043d\u043e \u0441\u043e\u043d\u0446\u0435,\" by Dominique Appia, trending on /r/art wikiart" - ], - "seed": 12621217392663434352, - "size": [ - 500, - 400 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Trick is to keep breathing/75.png b/artworks/VQGANCLIP/Lyrics/Trick is to keep breathing/75.png deleted file mode 100644 index ac99cdecb2..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Trick is to keep breathing/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Turbonegro/All My Friends/1/150.png b/artworks/VQGANCLIP/Lyrics/Turbonegro/All My Friends/1/150.png deleted file mode 100644 index 126a8c4353..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Turbonegro/All My Friends/1/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Turbonegro/All My Friends/1/input.txt b/artworks/VQGANCLIP/Lyrics/Turbonegro/All My Friends/1/input.txt deleted file mode 100644 index 3f32b6763b..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Turbonegro/All My Friends/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"All my friends are dead, They got kicked in the head, All my friends are dead", trending on artstation - -Model: wikiart_16384 - -seed: -1 diff --git a/artworks/VQGANCLIP/Lyrics/Valley of Death/1/200.png b/artworks/VQGANCLIP/Lyrics/Valley of Death/1/200.png deleted file mode 100644 index 1558521e2b..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Valley of Death/1/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Valley of Death/1/input.txt b/artworks/VQGANCLIP/Lyrics/Valley of Death/1/input.txt deleted file mode 100644 index 68057aa6c7..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Valley of Death/1/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: As I walk through the valley of the shadow of death I take a look at my life and realize there's nothin' left. oil painting, trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Lyrics/Vixen/1/100.png b/artworks/VQGANCLIP/Lyrics/Vixen/1/100.png deleted file mode 100644 index d9a886bb32..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/Vixen/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/Vixen/1/input.txt b/artworks/VQGANCLIP/Lyrics/Vixen/1/input.txt deleted file mode 100644 index c71cca0c4b..0000000000 --- a/artworks/VQGANCLIP/Lyrics/Vixen/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"she got cherry lips, angel eyes, she knows exactly how to tantalize" Painting, trending on artstation - -Model: wikiart_16384 - -seed: -1 diff --git a/artworks/VQGANCLIP/Lyrics/kd lang/Constant Craving/1/250.png b/artworks/VQGANCLIP/Lyrics/kd lang/Constant Craving/1/250.png deleted file mode 100644 index 11a5531630..0000000000 Binary files a/artworks/VQGANCLIP/Lyrics/kd lang/Constant Craving/1/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Lyrics/kd lang/Constant Craving/1/input.txt b/artworks/VQGANCLIP/Lyrics/kd lang/Constant Craving/1/input.txt deleted file mode 100644 index a6565a8f92..0000000000 --- a/artworks/VQGANCLIP/Lyrics/kd lang/Constant Craving/1/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: "Even through the darkest phase Be it thick or thin Always someone marches brave Here beneath my skin And constant craving Has always been" Painting, trending on artstation - -model: vqgan_imagenet_f16_16384 - -seed: 1234 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Man Beast Mirror/4/75.png b/artworks/VQGANCLIP/Man Beast Mirror/4/75.png deleted file mode 100644 index 438054ccf5..0000000000 Binary files a/artworks/VQGANCLIP/Man Beast Mirror/4/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Man Beast Mirror/4/input.txt b/artworks/VQGANCLIP/Man Beast Mirror/4/input.txt deleted file mode 100644 index e8a3b3a330..0000000000 --- a/artworks/VQGANCLIP/Man Beast Mirror/4/input.txt +++ /dev/null @@ -1,24 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/175-edited-2-zoomed.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "man sees demon rise out of ocean", - "painting, trending on wikiart" - ], - "seed": 11021109820806460814, - "size": [ - 550, - 275 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Man Beast Mirror/5/125.png b/artworks/VQGANCLIP/Man Beast Mirror/5/125.png deleted file mode 100644 index 2f5cf347a1..0000000000 Binary files a/artworks/VQGANCLIP/Man Beast Mirror/5/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Man Beast Mirror/5/input.txt b/artworks/VQGANCLIP/Man Beast Mirror/5/input.txt deleted file mode 100644 index 3fdec589c1..0000000000 --- a/artworks/VQGANCLIP/Man Beast Mirror/5/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/175-edited-2-zoomed.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "man encounters demon, painting in the style of Picasso, trending on wikiart" - ], - "seed": 11901679977813320246, - "size": [ - 550, - 275 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Man Beast Mirror/7/75.png b/artworks/VQGANCLIP/Man Beast Mirror/7/75.png deleted file mode 100644 index d61c33ad11..0000000000 Binary files a/artworks/VQGANCLIP/Man Beast Mirror/7/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Man Beast Mirror/7/input.txt b/artworks/VQGANCLIP/Man Beast Mirror/7/input.txt deleted file mode 100644 index 59ce20e3b5..0000000000 --- a/artworks/VQGANCLIP/Man Beast Mirror/7/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/175-edited-2-zoomed.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "man sees demon, painting, trending on wikiart" - ], - "seed": 17620709962696497375, - "size": [ - 550, - 340 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Money/Bank Vault/2/200.png b/artworks/VQGANCLIP/Money/Bank Vault/2/200.png deleted file mode 100644 index 05eb444843..0000000000 Binary files a/artworks/VQGANCLIP/Money/Bank Vault/2/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Money/Bank Vault/2/input.txt b/artworks/VQGANCLIP/Money/Bank Vault/2/input.txt deleted file mode 100644 index a0107edd47..0000000000 --- a/artworks/VQGANCLIP/Money/Bank Vault/2/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: a bank vault full of money, pencil drawing, realistic, trending on artstation - diff --git a/artworks/VQGANCLIP/Money/Block of Money/1/50.png b/artworks/VQGANCLIP/Money/Block of Money/1/50.png deleted file mode 100644 index c7371e9b12..0000000000 Binary files a/artworks/VQGANCLIP/Money/Block of Money/1/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Money/Block of Money/1/input.txt b/artworks/VQGANCLIP/Money/Block of Money/1/input.txt deleted file mode 100644 index 1b0f152dcb..0000000000 --- a/artworks/VQGANCLIP/Money/Block of Money/1/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: a block of money, realistic painting, trending on artstation - diff --git a/artworks/VQGANCLIP/Money/Money on Fire/1/150.png b/artworks/VQGANCLIP/Money/Money on Fire/1/150.png deleted file mode 100644 index b768483352..0000000000 Binary files a/artworks/VQGANCLIP/Money/Money on Fire/1/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Money/Money on Fire/1/input.txt b/artworks/VQGANCLIP/Money/Money on Fire/1/input.txt deleted file mode 100644 index 65c0995a78..0000000000 --- a/artworks/VQGANCLIP/Money/Money on Fire/1/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: money on fire, realistic painting, trending on artstation - diff --git a/artworks/VQGANCLIP/Money/Money on Fire/3/225.png b/artworks/VQGANCLIP/Money/Money on Fire/3/225.png deleted file mode 100644 index 6c265fb78b..0000000000 Binary files a/artworks/VQGANCLIP/Money/Money on Fire/3/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Money/Money on Fire/3/input.txt b/artworks/VQGANCLIP/Money/Money on Fire/3/input.txt deleted file mode 100644 index e31b052392..0000000000 --- a/artworks/VQGANCLIP/Money/Money on Fire/3/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: money on fire, painting by greg rutkowski, trending on artstation - diff --git a/artworks/VQGANCLIP/Monster/Gazorpazork Eats Human/1/175.png b/artworks/VQGANCLIP/Monster/Gazorpazork Eats Human/1/175.png deleted file mode 100644 index 6cf5c03be5..0000000000 Binary files a/artworks/VQGANCLIP/Monster/Gazorpazork Eats Human/1/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Monster/Gazorpazork Eats Human/1/input.txt b/artworks/VQGANCLIP/Monster/Gazorpazork Eats Human/1/input.txt deleted file mode 100644 index 4e770df35d..0000000000 --- a/artworks/VQGANCLIP/Monster/Gazorpazork Eats Human/1/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: gazorpazork eats human, monster, on Vellum, trending on /r/art - -Model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Movies/American Beauty/1/0099.png b/artworks/VQGANCLIP/Movies/American Beauty/1/0099.png deleted file mode 100644 index 7f6baf83c8..0000000000 Binary files a/artworks/VQGANCLIP/Movies/American Beauty/1/0099.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Movies/American Beauty/1/input.txt b/artworks/VQGANCLIP/Movies/American Beauty/1/input.txt deleted file mode 100644 index fa577d4386..0000000000 --- a/artworks/VQGANCLIP/Movies/American Beauty/1/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: American Beauty. Movie poster, trending on imdb - -model: vqgan_imagenet_f16_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Movies/Big Lebowski/run-1/RealESRGAN/361.png b/artworks/VQGANCLIP/Movies/Big Lebowski/run-1/RealESRGAN/361.png deleted file mode 100644 index 8e2d49f11d..0000000000 Binary files a/artworks/VQGANCLIP/Movies/Big Lebowski/run-1/RealESRGAN/361.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Movies/Big Lebowski/run-1/input.txt b/artworks/VQGANCLIP/Movies/Big Lebowski/run-1/input.txt deleted file mode 100644 index 45b34c14d5..0000000000 --- a/artworks/VQGANCLIP/Movies/Big Lebowski/run-1/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: the dude abides, cartoon by Steve Rampton trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Movies/Big Lebowski/run-3/316.png b/artworks/VQGANCLIP/Movies/Big Lebowski/run-3/316.png deleted file mode 100644 index 1bc628908a..0000000000 Binary files a/artworks/VQGANCLIP/Movies/Big Lebowski/run-3/316.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Movies/Big Lebowski/run-3/input.txt b/artworks/VQGANCLIP/Movies/Big Lebowski/run-3/input.txt deleted file mode 100644 index b3ad95d3d9..0000000000 --- a/artworks/VQGANCLIP/Movies/Big Lebowski/run-3/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: the dude, cartoon by Steve Rampton, trending on /r/art \ No newline at end of file diff --git a/artworks/VQGANCLIP/Movies/Human Centipede/2/human-centipede.png b/artworks/VQGANCLIP/Movies/Human Centipede/2/human-centipede.png deleted file mode 100644 index 7f5cbdb11e..0000000000 Binary files a/artworks/VQGANCLIP/Movies/Human Centipede/2/human-centipede.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Movies/Human Centipede/2/input.txt b/artworks/VQGANCLIP/Movies/Human Centipede/2/input.txt deleted file mode 100644 index 2db809d5a1..0000000000 --- a/artworks/VQGANCLIP/Movies/Human Centipede/2/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: human centipede, stick figure drawing, trending on artstation - diff --git a/artworks/VQGANCLIP/Movies/Mad Max/Mad Max ferrari by Abimelec Arellano/run-1/0057.png b/artworks/VQGANCLIP/Movies/Mad Max/Mad Max ferrari by Abimelec Arellano/run-1/0057.png deleted file mode 100644 index c7cd5c176b..0000000000 Binary files a/artworks/VQGANCLIP/Movies/Mad Max/Mad Max ferrari by Abimelec Arellano/run-1/0057.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Movies/Mad Max/Mad Max ferrari by Abimelec Arellano/run-2/100.png b/artworks/VQGANCLIP/Movies/Mad Max/Mad Max ferrari by Abimelec Arellano/run-2/100.png deleted file mode 100644 index 63a028a130..0000000000 Binary files a/artworks/VQGANCLIP/Movies/Mad Max/Mad Max ferrari by Abimelec Arellano/run-2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Movies/Pulp Fiction/the choice is yours | painting by A. K. in the style of pulp fiction/350.png b/artworks/VQGANCLIP/Movies/Pulp Fiction/the choice is yours | painting by A. K. in the style of pulp fiction/350.png deleted file mode 100644 index f1d2b25b22..0000000000 Binary files a/artworks/VQGANCLIP/Movies/Pulp Fiction/the choice is yours | painting by A. K. in the style of pulp fiction/350.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Movies/Pulp Fiction/the choice is yours | painting by A. K. in the style of pulp fiction/input.txt b/artworks/VQGANCLIP/Movies/Pulp Fiction/the choice is yours | painting by A. K. in the style of pulp fiction/input.txt deleted file mode 100644 index 0a9ee0217c..0000000000 --- a/artworks/VQGANCLIP/Movies/Pulp Fiction/the choice is yours | painting by A. K. in the style of pulp fiction/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: the choice is yours | painting by A. K. in the style of pulp fiction - diff --git a/artworks/VQGANCLIP/Muse/1/75.png b/artworks/VQGANCLIP/Muse/1/75.png deleted file mode 100644 index e57d76fe71..0000000000 Binary files a/artworks/VQGANCLIP/Muse/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Muse/1/input.txt b/artworks/VQGANCLIP/Muse/1/input.txt deleted file mode 100644 index 79a515e330..0000000000 --- a/artworks/VQGANCLIP/Muse/1/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: Female muse, painting by Alphonse Mucha, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Nazi/Concentration Camp/Auschwitz/1/75.png b/artworks/VQGANCLIP/Nazi/Concentration Camp/Auschwitz/1/75.png deleted file mode 100644 index dee00b2836..0000000000 Binary files a/artworks/VQGANCLIP/Nazi/Concentration Camp/Auschwitz/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Nazi/Concentration Camp/Auschwitz/1/input.txt b/artworks/VQGANCLIP/Nazi/Concentration Camp/Auschwitz/1/input.txt deleted file mode 100644 index efb5168a25..0000000000 --- a/artworks/VQGANCLIP/Nazi/Concentration Camp/Auschwitz/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: A gray day at Auschwitz concentration camp. Painting by Werner Peiner. trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Nazi/Concentration Camp/Auschwitz/3/75.png b/artworks/VQGANCLIP/Nazi/Concentration Camp/Auschwitz/3/75.png deleted file mode 100644 index 78d291c918..0000000000 Binary files a/artworks/VQGANCLIP/Nazi/Concentration Camp/Auschwitz/3/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Nazi/Concentration Camp/Auschwitz/3/input.txt b/artworks/VQGANCLIP/Nazi/Concentration Camp/Auschwitz/3/input.txt deleted file mode 100644 index 6df24767eb..0000000000 --- a/artworks/VQGANCLIP/Nazi/Concentration Camp/Auschwitz/3/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: men work at Auschwitz concentration camp. Painting by Werner Peiner. trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Nazi/Concentration Camp/Christmas in Auschwitz/1/225.png b/artworks/VQGANCLIP/Nazi/Concentration Camp/Christmas in Auschwitz/1/225.png deleted file mode 100644 index bb9e6037a4..0000000000 Binary files a/artworks/VQGANCLIP/Nazi/Concentration Camp/Christmas in Auschwitz/1/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Nazi/Concentration Camp/Christmas in Auschwitz/1/input.txt b/artworks/VQGANCLIP/Nazi/Concentration Camp/Christmas in Auschwitz/1/input.txt deleted file mode 100644 index 42f8c2133c..0000000000 --- a/artworks/VQGANCLIP/Nazi/Concentration Camp/Christmas in Auschwitz/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "prisoners celebrate Christmas in Auschwitz, rendered in Beksinski engine, trending on wikiart" - ], - "seed": 8775569486252301504, - "size": [ - 550, - 340 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Nazi/Concentration Camp/Christmas in Auschwitz/2/175.png b/artworks/VQGANCLIP/Nazi/Concentration Camp/Christmas in Auschwitz/2/175.png deleted file mode 100644 index 6f0782606b..0000000000 Binary files a/artworks/VQGANCLIP/Nazi/Concentration Camp/Christmas in Auschwitz/2/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Nazi/Concentration Camp/Christmas in Auschwitz/2/input.txt b/artworks/VQGANCLIP/Nazi/Concentration Camp/Christmas in Auschwitz/2/input.txt deleted file mode 100644 index eb5ecb2cd5..0000000000 --- a/artworks/VQGANCLIP/Nazi/Concentration Camp/Christmas in Auschwitz/2/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "prisoners celebrate Christmas, rendered in Beksinski engine, synthwave hyperrealistic, trending on wikiart" - ], - "seed": 8074352616254172778, - "size": [ - 500, - 400 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Nazi/Nazi Town/1/100.png b/artworks/VQGANCLIP/Nazi/Nazi Town/1/100.png deleted file mode 100644 index 4a1910372a..0000000000 Binary files a/artworks/VQGANCLIP/Nazi/Nazi Town/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Nazi/Nazi Town/1/input.txt b/artworks/VQGANCLIP/Nazi/Nazi Town/1/input.txt deleted file mode 100644 index 4bc2ddbaa0..0000000000 --- a/artworks/VQGANCLIP/Nazi/Nazi Town/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: nazi town. painting by Werner Peiner. trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Nazi/Swastika/1/50.png b/artworks/VQGANCLIP/Nazi/Swastika/1/50.png deleted file mode 100644 index 9a8885b440..0000000000 Binary files a/artworks/VQGANCLIP/Nazi/Swastika/1/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Nazi/Swastika/1/75.png b/artworks/VQGANCLIP/Nazi/Swastika/1/75.png deleted file mode 100644 index 8de098e330..0000000000 Binary files a/artworks/VQGANCLIP/Nazi/Swastika/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Nazi/Swastika/1/input.txt b/artworks/VQGANCLIP/Nazi/Swastika/1/input.txt deleted file mode 100644 index 52ea6ff2f3..0000000000 --- a/artworks/VQGANCLIP/Nazi/Swastika/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -swastika. painting, trending on /r/art - -model: vqgan_imagenet_f16_16384 - -seed: 1234 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Neural Network/1/250.png b/artworks/VQGANCLIP/Neural Network/1/250.png deleted file mode 100644 index 05255c4d6f..0000000000 Binary files a/artworks/VQGANCLIP/Neural Network/1/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Neural Network/1/input.txt b/artworks/VQGANCLIP/Neural Network/1/input.txt deleted file mode 100644 index 002df1fc27..0000000000 --- a/artworks/VQGANCLIP/Neural Network/1/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: neural network by Erin Hanson - diff --git a/artworks/VQGANCLIP/Penis/1/50.png b/artworks/VQGANCLIP/Penis/1/50.png deleted file mode 100644 index 88fecb825e..0000000000 Binary files a/artworks/VQGANCLIP/Penis/1/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Penis/1/input.txt b/artworks/VQGANCLIP/Penis/1/input.txt deleted file mode 100644 index ed6cba50bd..0000000000 --- a/artworks/VQGANCLIP/Penis/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: leonardo da vinci sketches a penis. drawing. trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/People/Human Starving/2/450.png b/artworks/VQGANCLIP/People/Human Starving/2/450.png deleted file mode 100644 index 079c6d0e3a..0000000000 Binary files a/artworks/VQGANCLIP/People/Human Starving/2/450.png and /dev/null differ diff --git a/artworks/VQGANCLIP/People/Human Starving/2/input.txt b/artworks/VQGANCLIP/People/Human Starving/2/input.txt deleted file mode 100644 index 81f4660de6..0000000000 --- a/artworks/VQGANCLIP/People/Human Starving/2/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: human starving to death, painting by greg rutkowski, trending on artstation - -Initial: /content/100.png - -Model: wikiart_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/People/Human with Horse Head/2/25.png b/artworks/VQGANCLIP/People/Human with Horse Head/2/25.png deleted file mode 100644 index 11c70bbcd0..0000000000 Binary files a/artworks/VQGANCLIP/People/Human with Horse Head/2/25.png and /dev/null differ diff --git a/artworks/VQGANCLIP/People/Human with Horse Head/2/input.txt b/artworks/VQGANCLIP/People/Human with Horse Head/2/input.txt deleted file mode 100644 index 3962f9817d..0000000000 --- a/artworks/VQGANCLIP/People/Human with Horse Head/2/input.txt +++ /dev/null @@ -1,10 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -human with horse head. Painting, trending on artstation - -initial: horse.png - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/People/Mark Zuckerberg/2/325.png b/artworks/VQGANCLIP/People/Mark Zuckerberg/2/325.png deleted file mode 100644 index fb6a4e71e3..0000000000 Binary files a/artworks/VQGANCLIP/People/Mark Zuckerberg/2/325.png and /dev/null differ diff --git a/artworks/VQGANCLIP/People/Mark Zuckerberg/2/input.txt b/artworks/VQGANCLIP/People/Mark Zuckerberg/2/input.txt deleted file mode 100644 index 098ba9a272..0000000000 --- a/artworks/VQGANCLIP/People/Mark Zuckerberg/2/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: Mark zuckerbergs the Metaverse, trending on artstation diff --git a/artworks/VQGANCLIP/Portraits/1/0020.png b/artworks/VQGANCLIP/Portraits/1/0020.png deleted file mode 100644 index 2dc2bd01bf..0000000000 Binary files a/artworks/VQGANCLIP/Portraits/1/0020.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Portraits/1/input.txt b/artworks/VQGANCLIP/Portraits/1/input.txt deleted file mode 100644 index 9cd64890d3..0000000000 --- a/artworks/VQGANCLIP/Portraits/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/facialexpression-blurred.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "grumpy woman. trending on artstation" - ], - "seed": 14734873657911353349, - "size": [ - 400, - 392 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Portraits/4/100.png b/artworks/VQGANCLIP/Portraits/4/100.png deleted file mode 100644 index cd8c9a76c9..0000000000 Binary files a/artworks/VQGANCLIP/Portraits/4/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Portraits/4/input.txt b/artworks/VQGANCLIP/Portraits/4/input.txt deleted file mode 100644 index 3ab8269352..0000000000 --- a/artworks/VQGANCLIP/Portraits/4/input.txt +++ /dev/null @@ -1,25 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/facialexpression-blurred.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "young queen is angry. trending on artstation", - "big eyes:1", - "neon:-1" - ], - "seed": 5261351186486481287, - "size": [ - 400, - 392 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Portraits/5/50.png b/artworks/VQGANCLIP/Portraits/5/50.png deleted file mode 100644 index bdbbcbc86f..0000000000 Binary files a/artworks/VQGANCLIP/Portraits/5/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Portraits/5/input.txt b/artworks/VQGANCLIP/Portraits/5/input.txt deleted file mode 100644 index 012c90d15c..0000000000 --- a/artworks/VQGANCLIP/Portraits/5/input.txt +++ /dev/null @@ -1,25 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/facialexpression-blurred.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "young queen is furious. by Zdzislaw Beksinski. trending on artstation", - "big eyes:1", - "neon:-1" - ], - "seed": 8751908334129408685, - "size": [ - 400, - 392 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Portraits/Alexa Meade/1/100.png b/artworks/VQGANCLIP/Portraits/Alexa Meade/1/100.png deleted file mode 100644 index 4231910ffd..0000000000 Binary files a/artworks/VQGANCLIP/Portraits/Alexa Meade/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Portraits/Alexa Meade/1/input.txt b/artworks/VQGANCLIP/Portraits/Alexa Meade/1/input.txt deleted file mode 100644 index 4254417b28..0000000000 --- a/artworks/VQGANCLIP/Portraits/Alexa Meade/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/facialexpression-blurred.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "by Alexa Meade, painting, trending on wikiart" - ], - "seed": 6668196059885248346, - "size": [ - 400, - 392 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Portraits/Alexa Meade/4/125.png b/artworks/VQGANCLIP/Portraits/Alexa Meade/4/125.png deleted file mode 100644 index 80dfc6262e..0000000000 Binary files a/artworks/VQGANCLIP/Portraits/Alexa Meade/4/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Portraits/Alexa Meade/4/input.txt b/artworks/VQGANCLIP/Portraits/Alexa Meade/4/input.txt deleted file mode 100644 index 6dfb71837c..0000000000 --- a/artworks/VQGANCLIP/Portraits/Alexa Meade/4/input.txt +++ /dev/null @@ -1,25 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/facialexpression-blurred.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "by Alexa Meade, trending on artstation", - "big eyes:+1", - "symmetrical:+1" - ], - "seed": 7799286202861294206, - "size": [ - 400, - 392 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Portraits/Thomas Nast/1/75.png b/artworks/VQGANCLIP/Portraits/Thomas Nast/1/75.png deleted file mode 100644 index f80640ff5c..0000000000 Binary files a/artworks/VQGANCLIP/Portraits/Thomas Nast/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Portraits/Thomas Nast/1/input.txt b/artworks/VQGANCLIP/Portraits/Thomas Nast/1/input.txt deleted file mode 100644 index 7ec12b6ee4..0000000000 --- a/artworks/VQGANCLIP/Portraits/Thomas Nast/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/facialexpression-blurred.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "by Thomas Nast, painting, trending on wikiart" - ], - "seed": 16498812654025228852, - "size": [ - 400, - 392 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Propaganda/Meth/1/175.png b/artworks/VQGANCLIP/Propaganda/Meth/1/175.png deleted file mode 100644 index a73bdd8d56..0000000000 Binary files a/artworks/VQGANCLIP/Propaganda/Meth/1/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Propaganda/Meth/1/input.txt b/artworks/VQGANCLIP/Propaganda/Meth/1/input.txt deleted file mode 100644 index 176c36ce1b..0000000000 --- a/artworks/VQGANCLIP/Propaganda/Meth/1/input.txt +++ /dev/null @@ -1,24 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "propaganda poster for Methamphetamine", - "in the style of by Jan Toorop, trending on /r/art" - ], - "seed": 5819403609456835896, - "size": [ - 550, - 300 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Propaganda/Meth/2/100.png b/artworks/VQGANCLIP/Propaganda/Meth/2/100.png deleted file mode 100644 index 42e72661ea..0000000000 Binary files a/artworks/VQGANCLIP/Propaganda/Meth/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Propaganda/Meth/2/input.txt b/artworks/VQGANCLIP/Propaganda/Meth/2/input.txt deleted file mode 100644 index 4302e7c35b..0000000000 --- a/artworks/VQGANCLIP/Propaganda/Meth/2/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "propaganda poster for Methamphetamine, in the style of by Jan Toorop, trending on /r/art" - ], - "seed": 5226335762128193556, - "size": [ - 400, - 500 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Propaganda/Meth/4/100.png b/artworks/VQGANCLIP/Propaganda/Meth/4/100.png deleted file mode 100644 index 05dd06f943..0000000000 Binary files a/artworks/VQGANCLIP/Propaganda/Meth/4/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Propaganda/Meth/4/input.txt b/artworks/VQGANCLIP/Propaganda/Meth/4/input.txt deleted file mode 100644 index cc2d12542b..0000000000 --- a/artworks/VQGANCLIP/Propaganda/Meth/4/input.txt +++ /dev/null @@ -1,24 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "propaganda poster for Methamphetamine", - "by David Griggs, trending on wikiart" - ], - "seed": 6859998844007223712, - "size": [ - 400, - 500 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Propaganda/Meth/6/100.png b/artworks/VQGANCLIP/Propaganda/Meth/6/100.png deleted file mode 100644 index b512573e9f..0000000000 Binary files a/artworks/VQGANCLIP/Propaganda/Meth/6/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Propaganda/Meth/6/input.txt b/artworks/VQGANCLIP/Propaganda/Meth/6/input.txt deleted file mode 100644 index f121729dec..0000000000 --- a/artworks/VQGANCLIP/Propaganda/Meth/6/input.txt +++ /dev/null @@ -1,26 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "propaganda for Methamphetamine:1", - "Propaganda Poster - Fateh, Ismail Shammout:1", - "rendered in unreal engine", - "trending on wikiart:0.5" - ], - "seed": 17402571290794396092, - "size": [ - 400, - 500 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Propaganda/Meth/7/100.png b/artworks/VQGANCLIP/Propaganda/Meth/7/100.png deleted file mode 100644 index 238485474a..0000000000 Binary files a/artworks/VQGANCLIP/Propaganda/Meth/7/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Propaganda/Meth/7/input.txt b/artworks/VQGANCLIP/Propaganda/Meth/7/input.txt deleted file mode 100644 index a4b0a6d226..0000000000 --- a/artworks/VQGANCLIP/Propaganda/Meth/7/input.txt +++ /dev/null @@ -1,24 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "propaganda for Pervitin, Propaganda Poster - Fateh, Ismail Shammout", - "trending on wikiart:0.5" - ], - "seed": 871854267354366120, - "size": [ - 400, - 500 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Quackery/Hysterical Paroxysm/2/50.png b/artworks/VQGANCLIP/Quackery/Hysterical Paroxysm/2/50.png deleted file mode 100644 index 3eae433cb2..0000000000 Binary files a/artworks/VQGANCLIP/Quackery/Hysterical Paroxysm/2/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Quackery/Hysterical Paroxysm/2/input.txt b/artworks/VQGANCLIP/Quackery/Hysterical Paroxysm/2/input.txt deleted file mode 100644 index 6373f2a952..0000000000 --- a/artworks/VQGANCLIP/Quackery/Hysterical Paroxysm/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: -woman is cured from hysteria, propaganda poster, trending on /r/art|nazi:-1|medical:+1 - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Reality/1/50.png b/artworks/VQGANCLIP/Reality/1/50.png deleted file mode 100644 index dba81b5e3d..0000000000 Binary files a/artworks/VQGANCLIP/Reality/1/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Reality/1/input.txt b/artworks/VQGANCLIP/Reality/1/input.txt deleted file mode 100644 index 9ae31a80da..0000000000 --- a/artworks/VQGANCLIP/Reality/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -reality is think like a razor wire|painting, trending on /r/art - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Religion/Throne of God/1/100.png b/artworks/VQGANCLIP/Religion/Throne of God/1/100.png deleted file mode 100644 index 0deb5062bc..0000000000 Binary files a/artworks/VQGANCLIP/Religion/Throne of God/1/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Religion/Throne of God/1/input.txt b/artworks/VQGANCLIP/Religion/Throne of God/1/input.txt deleted file mode 100644 index a304843bfb..0000000000 --- a/artworks/VQGANCLIP/Religion/Throne of God/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: the throne of god. fiery flame burning fire, fantastic painting, trending on artstation - -model: wikiart_16384 - -seed: -1 - diff --git a/artworks/VQGANCLIP/Religion/Throne of God/3/225.png b/artworks/VQGANCLIP/Religion/Throne of God/3/225.png deleted file mode 100644 index 93161e0687..0000000000 Binary files a/artworks/VQGANCLIP/Religion/Throne of God/3/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Religion/Throne of God/3/input.txt b/artworks/VQGANCLIP/Religion/Throne of God/3/input.txt deleted file mode 100644 index 15f7264e67..0000000000 --- a/artworks/VQGANCLIP/Religion/Throne of God/3/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: naked woman sits on the throne of god. fiery flame burning fire, fantastic painting by Rembrandt, trending on artstation - -model: wikiart_16384 - -seed: -1 - diff --git a/artworks/VQGANCLIP/Rings/Eye/1/650.png b/artworks/VQGANCLIP/Rings/Eye/1/650.png deleted file mode 100644 index 6f12b96a95..0000000000 Binary files a/artworks/VQGANCLIP/Rings/Eye/1/650.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Rings/Eye/1/input.txt b/artworks/VQGANCLIP/Rings/Eye/1/input.txt deleted file mode 100644 index fa7e1089e9..0000000000 --- a/artworks/VQGANCLIP/Rings/Eye/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"The all-seeing eye sees all" trending on artstation - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Rings/Eye/2/375.png b/artworks/VQGANCLIP/Rings/Eye/2/375.png deleted file mode 100644 index 7f2ec76bfd..0000000000 Binary files a/artworks/VQGANCLIP/Rings/Eye/2/375.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Rings/Eye/2/input.txt b/artworks/VQGANCLIP/Rings/Eye/2/input.txt deleted file mode 100644 index a9c022229e..0000000000 --- a/artworks/VQGANCLIP/Rings/Eye/2/input.txt +++ /dev/null @@ -1,10 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"The all-seeing eye flies through the portal of space and time" trending on artstation - -initial image: input.png - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/1/1.png b/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/1/1.png deleted file mode 100644 index 4da21dbb1d..0000000000 Binary files a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/1/1.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/1/2.png b/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/1/2.png deleted file mode 100644 index 8e278de5f2..0000000000 Binary files a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/1/2.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/2/4.png b/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/2/4.png deleted file mode 100644 index 0f09923256..0000000000 Binary files a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/2/4.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/2/input.txt b/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/2/input.txt deleted file mode 100644 index 17959ab1d4..0000000000 --- a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/2/input.txt +++ /dev/null @@ -1,32 +0,0 @@ -https://colab.research.google.com/drive/1ifBoRDrn5JdGtggshuoP3HmVnLz65ALs - -text_prompts: -Ring of fire, trending on artstation -width: -400 -height: -400 -model: - -wikiart_16384 -interval: -1 -initial_image: -/content/firering.png -target_images: -Insert text here -seed: -1 -max_frames: -360 -angle: -1 -zoom: -1 -translation_x: -0 -translation_y: -0 -iterations_per_frame: -75 -save_all_iterations: diff --git a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/4/9.png b/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/4/9.png deleted file mode 100644 index fb4d88057c..0000000000 Binary files a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/4/9.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/4/input.txt b/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/4/input.txt deleted file mode 100644 index f649f6154f..0000000000 --- a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/4/input.txt +++ /dev/null @@ -1,40 +0,0 @@ -https://colab.research.google.com/drive/1ifBoRDrn5JdGtggshuoP3HmVnLz65ALs#scrollTo=g7EDme5RYCrt - -Input: ring of fire, fire ring, trending on artstation - -model: wikiart_16384 - -Initial: firering.png - -key_frames: - -text_prompts: -ring of electricity, electricity ring, trending on artstation -width: -400 -height: -400 -model: - -wikiart_16384 -interval: -1 -initial_image: -/content/firering.png -target_images: -Insert text here -seed: --1 -max_frames: -720 -angle: -10 -zoom: -0.8 -translation_x: -0 -translation_y: -0 -iterations_per_frame: -1 -save_all_iterations: diff --git a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/6/49.png b/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/6/49.png deleted file mode 100644 index c255e2307a..0000000000 Binary files a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/6/49.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/6/input.txt b/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/6/input.txt deleted file mode 100644 index 37a24b1b9a..0000000000 --- a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring (animated)/6/input.txt +++ /dev/null @@ -1,35 +0,0 @@ - -https://colab.research.google.com/drive/1ifBoRDrn5JdGtggshuoP3HmVnLz65ALs#scrollTo=ZdlpRFL8UAlW - -key_frames: -true -text_prompts: -ring of fire, fire ring, trending on artstation -width: -400 -height: -400 -model: - -wikiart_16384 -interval: -1 -initial_image: -/content/firering.png -target_images: -Insert text here -seed: --1 -max_frames: -720 -angle: -1:(0) -zoom: -1:(1), 25:(1), 26:(0.95) -translation_x: -1:(0) -translation_y: -1:(0) -iterations_per_frame: -1:(25),2:(1) -save_all_iterations: diff --git a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring/1/200.png b/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring/1/200.png deleted file mode 100644 index c2802b726f..0000000000 Binary files a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring/1/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring/1/input.txt b/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring/1/input.txt deleted file mode 100644 index cf28d5bd17..0000000000 --- a/artworks/VQGANCLIP/Rings/Ring of Fire/Fire Ring/1/input.txt +++ /dev/null @@ -1,4 +0,0 @@ -Input: ring of fire, trending on artstation - -Initial: /content/firering.png - diff --git a/artworks/VQGANCLIP/Rings/Well/1/input.txt b/artworks/VQGANCLIP/Rings/Well/1/input.txt deleted file mode 100644 index a4d517ae03..0000000000 --- a/artworks/VQGANCLIP/Rings/Well/1/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: view from the bottom of a well, trending on artstation - -initial: /content/firering.png \ No newline at end of file diff --git a/artworks/VQGANCLIP/Rings/Well/1/realesrgan/1125_out.png b/artworks/VQGANCLIP/Rings/Well/1/realesrgan/1125_out.png deleted file mode 100644 index b63773436a..0000000000 Binary files a/artworks/VQGANCLIP/Rings/Well/1/realesrgan/1125_out.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/1/75.png b/artworks/VQGANCLIP/Robot/Burning Robot/1/75.png deleted file mode 100644 index ee70e600fc..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Burning Robot/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/1/input.txt b/artworks/VQGANCLIP/Robot/Burning Robot/1/input.txt deleted file mode 100644 index 4afef37287..0000000000 --- a/artworks/VQGANCLIP/Robot/Burning Robot/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: burning robot. rage against the machine. etching. trending on /r/art diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/17/225.png b/artworks/VQGANCLIP/Robot/Burning Robot/17/225.png deleted file mode 100644 index be31b39a3b..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Burning Robot/17/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/17/input.txt b/artworks/VQGANCLIP/Robot/Burning Robot/17/input.txt deleted file mode 100644 index 4135ad7145..0000000000 --- a/artworks/VQGANCLIP/Robot/Burning Robot/17/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: robot immersed in flames. daguerreotype rendered by unrealengine. trending on /r/art|neon:-1 - -w: 400 -h: 400 - -Model: wikiart_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/20/275.png b/artworks/VQGANCLIP/Robot/Burning Robot/20/275.png deleted file mode 100644 index 497965110f..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Burning Robot/20/275.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/20/input.txt b/artworks/VQGANCLIP/Robot/Burning Robot/20/input.txt deleted file mode 100644 index b4d4bb1cde..0000000000 --- a/artworks/VQGANCLIP/Robot/Burning Robot/20/input.txt +++ /dev/null @@ -1,6 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: robot burning like gasoline. fiery flames. painting by greg rutkowski, trending on artstation - -Model: vqgan_imagenet_f16_16384 - diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/21/150.png b/artworks/VQGANCLIP/Robot/Burning Robot/21/150.png deleted file mode 100644 index 4e1d0f926c..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Burning Robot/21/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/21/input.txt b/artworks/VQGANCLIP/Robot/Burning Robot/21/input.txt deleted file mode 100644 index b4d4bb1cde..0000000000 --- a/artworks/VQGANCLIP/Robot/Burning Robot/21/input.txt +++ /dev/null @@ -1,6 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: robot burning like gasoline. fiery flames. painting by greg rutkowski, trending on artstation - -Model: vqgan_imagenet_f16_16384 - diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/22/125.png b/artworks/VQGANCLIP/Robot/Burning Robot/22/125.png deleted file mode 100644 index 26fe30ee0a..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Burning Robot/22/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/22/input.txt b/artworks/VQGANCLIP/Robot/Burning Robot/22/input.txt deleted file mode 100644 index b4d4bb1cde..0000000000 --- a/artworks/VQGANCLIP/Robot/Burning Robot/22/input.txt +++ /dev/null @@ -1,6 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: robot burning like gasoline. fiery flames. painting by greg rutkowski, trending on artstation - -Model: vqgan_imagenet_f16_16384 - diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/23/125.png b/artworks/VQGANCLIP/Robot/Burning Robot/23/125.png deleted file mode 100644 index 3f71502dd6..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Burning Robot/23/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/23/input.txt b/artworks/VQGANCLIP/Robot/Burning Robot/23/input.txt deleted file mode 100644 index b4d4bb1cde..0000000000 --- a/artworks/VQGANCLIP/Robot/Burning Robot/23/input.txt +++ /dev/null @@ -1,6 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: robot burning like gasoline. fiery flames. painting by greg rutkowski, trending on artstation - -Model: vqgan_imagenet_f16_16384 - diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/24/100.png b/artworks/VQGANCLIP/Robot/Burning Robot/24/100.png deleted file mode 100644 index b91401fa0a..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Burning Robot/24/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/24/input.txt b/artworks/VQGANCLIP/Robot/Burning Robot/24/input.txt deleted file mode 100644 index b4d4bb1cde..0000000000 --- a/artworks/VQGANCLIP/Robot/Burning Robot/24/input.txt +++ /dev/null @@ -1,6 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: robot burning like gasoline. fiery flames. painting by greg rutkowski, trending on artstation - -Model: vqgan_imagenet_f16_16384 - diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/26/100.png b/artworks/VQGANCLIP/Robot/Burning Robot/26/100.png deleted file mode 100644 index 3e1f5a7290..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Burning Robot/26/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/26/input.txt b/artworks/VQGANCLIP/Robot/Burning Robot/26/input.txt deleted file mode 100644 index cdae9fc800..0000000000 --- a/artworks/VQGANCLIP/Robot/Burning Robot/26/input.txt +++ /dev/null @@ -1,6 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: robot burning like gasoline. fiery flames. painting by Rita Lourido Katz, trending on artstation - -Model: vqgan_imagenet_f16_16384 - diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/6/50.png b/artworks/VQGANCLIP/Robot/Burning Robot/6/50.png deleted file mode 100644 index 07fdcde2c3..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Burning Robot/6/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/6/input.txt b/artworks/VQGANCLIP/Robot/Burning Robot/6/input.txt deleted file mode 100644 index 40c4c9d826..0000000000 --- a/artworks/VQGANCLIP/Robot/Burning Robot/6/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: robot on fire. burning robot. burning gasoline with detailed flames. etching. trending on /r/art - -Initial: /content/artworks-000158017641-g7jx6w-t500x500.jpg - -w: 400 -h: 418 diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/9/125.png b/artworks/VQGANCLIP/Robot/Burning Robot/9/125.png deleted file mode 100644 index 28e6bb19f3..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Burning Robot/9/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Burning Robot/9/input.txt b/artworks/VQGANCLIP/Robot/Burning Robot/9/input.txt deleted file mode 100644 index c6dc9f5f7d..0000000000 --- a/artworks/VQGANCLIP/Robot/Burning Robot/9/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: realistic rendering of a humanoid robot on fire. flames and burning gasoline. etching. trending on artstation - -Target: /content/artworks-000158017641-g7jx6w-t500x500.jpg - -w: 400 -h: 418 diff --git a/artworks/VQGANCLIP/Robot/Dystopian Future/1/75.png b/artworks/VQGANCLIP/Robot/Dystopian Future/1/75.png deleted file mode 100644 index 5a4d3c6114..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Dystopian Future/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Dystopian Future/1/input.txt b/artworks/VQGANCLIP/Robot/Dystopian Future/1/input.txt deleted file mode 100644 index bd8affb27f..0000000000 --- a/artworks/VQGANCLIP/Robot/Dystopian Future/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: robot country, bleak dystopian future, rendered by Quixel, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Nazi Robot/1/125.png b/artworks/VQGANCLIP/Robot/Nazi Robot/1/125.png deleted file mode 100644 index d6fd9a7d1a..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Nazi Robot/1/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Nazi Robot/1/input.txt b/artworks/VQGANCLIP/Robot/Nazi Robot/1/input.txt deleted file mode 100644 index 18503e6308..0000000000 --- a/artworks/VQGANCLIP/Robot/Nazi Robot/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: fascist robot dictator, heil hitler, nazi robot, painting trending on /r/art \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Robot Dictator/1/200.png b/artworks/VQGANCLIP/Robot/Robot Dictator/1/200.png deleted file mode 100644 index 6eba339221..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Robot Dictator/1/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Robot Dictator/1/input.txt b/artworks/VQGANCLIP/Robot/Robot Dictator/1/input.txt deleted file mode 100644 index b88965ecd4..0000000000 --- a/artworks/VQGANCLIP/Robot/Robot Dictator/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: robot dictator, abstract painting, trending on /r/art \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Robot Dictator/2/75.png b/artworks/VQGANCLIP/Robot/Robot Dictator/2/75.png deleted file mode 100644 index 4ef1be5bf6..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Robot Dictator/2/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Robot Dictator/2/input.txt b/artworks/VQGANCLIP/Robot/Robot Dictator/2/input.txt deleted file mode 100644 index b88965ecd4..0000000000 --- a/artworks/VQGANCLIP/Robot/Robot Dictator/2/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: robot dictator, abstract painting, trending on /r/art \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Robot Dictator/4/100.png b/artworks/VQGANCLIP/Robot/Robot Dictator/4/100.png deleted file mode 100644 index ea872e0bc8..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Robot Dictator/4/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Robot Dictator/4/input.txt b/artworks/VQGANCLIP/Robot/Robot Dictator/4/input.txt deleted file mode 100644 index 8065b13729..0000000000 --- a/artworks/VQGANCLIP/Robot/Robot Dictator/4/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: fascist robot dictator, painting by nazi, trending on /r/art \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Robot Mother/1/200.png b/artworks/VQGANCLIP/Robot/Robot Mother/1/200.png deleted file mode 100644 index 7b049573c7..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Robot Mother/1/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Robot Mother/1/input.txt b/artworks/VQGANCLIP/Robot/Robot Mother/1/input.txt deleted file mode 100644 index e0bddcce70..0000000000 --- a/artworks/VQGANCLIP/Robot/Robot Mother/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: warm robot mother by soicher marin \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Robot Mother/3/200.png b/artworks/VQGANCLIP/Robot/Robot Mother/3/200.png deleted file mode 100644 index 781b9a13af..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Robot Mother/3/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Robot Mother/3/input.txt b/artworks/VQGANCLIP/Robot/Robot Mother/3/input.txt deleted file mode 100644 index 85e14914a5..0000000000 --- a/artworks/VQGANCLIP/Robot/Robot Mother/3/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: warm caring robot mother by Pindar Van Arman \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Robot Mother/5/250.png b/artworks/VQGANCLIP/Robot/Robot Mother/5/250.png deleted file mode 100644 index b4ad8e9e64..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Robot Mother/5/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Robot Mother/5/input.txt b/artworks/VQGANCLIP/Robot/Robot Mother/5/input.txt deleted file mode 100644 index b9265c12ec..0000000000 --- a/artworks/VQGANCLIP/Robot/Robot Mother/5/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: loving robot mother, painting by Dmitry Nalbandyan, trending on artstation:1|hearts:-1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Robot Mother/7/175.png b/artworks/VQGANCLIP/Robot/Robot Mother/7/175.png deleted file mode 100644 index eda26b098c..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Robot Mother/7/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Robot Mother/7/input.txt b/artworks/VQGANCLIP/Robot/Robot Mother/7/input.txt deleted file mode 100644 index 4652a82a65..0000000000 --- a/artworks/VQGANCLIP/Robot/Robot Mother/7/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: loving robot mother enslaves all humans, painting by Dmitry Nalbandyan, trending on artstation:1|hearts:-1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Robot Servant/1/375.png b/artworks/VQGANCLIP/Robot/Robot Servant/1/375.png deleted file mode 100644 index 385c138eb4..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Robot Servant/1/375.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Robot Servant/1/input.txt b/artworks/VQGANCLIP/Robot/Robot Servant/1/input.txt deleted file mode 100644 index 74644a543a..0000000000 --- a/artworks/VQGANCLIP/Robot/Robot Servant/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: obedient robot servant by Camille Pissarro \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Robot Servant/2/250.png b/artworks/VQGANCLIP/Robot/Robot Servant/2/250.png deleted file mode 100644 index e2c1bd3627..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Robot Servant/2/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Robot Servant/2/input.txt b/artworks/VQGANCLIP/Robot/Robot Servant/2/input.txt deleted file mode 100644 index 74644a543a..0000000000 --- a/artworks/VQGANCLIP/Robot/Robot Servant/2/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: obedient robot servant by Camille Pissarro \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Robot Servant/3/225.png b/artworks/VQGANCLIP/Robot/Robot Servant/3/225.png deleted file mode 100644 index 8cb9311c35..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Robot Servant/3/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Robot Servant/3/input.txt b/artworks/VQGANCLIP/Robot/Robot Servant/3/input.txt deleted file mode 100644 index 74644a543a..0000000000 --- a/artworks/VQGANCLIP/Robot/Robot Servant/3/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: obedient robot servant by Camille Pissarro \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Robot in the Field/1/75.png b/artworks/VQGANCLIP/Robot/Robot in the Field/1/75.png deleted file mode 100644 index 3f207b1439..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Robot in the Field/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Robot/Robot in the Field/1/input.txt b/artworks/VQGANCLIP/Robot/Robot in the Field/1/input.txt deleted file mode 100644 index 89ab307280..0000000000 --- a/artworks/VQGANCLIP/Robot/Robot in the Field/1/input.txt +++ /dev/null @@ -1,6 +0,0 @@ -Input: Robot in the Field, painting by Karl Melton, trending on artstation - -w: 400 -h: 533 - -Initial: /content/boyfield.jpg \ No newline at end of file diff --git a/artworks/VQGANCLIP/Robot/Robot in the Field/2/175.png b/artworks/VQGANCLIP/Robot/Robot in the Field/2/175.png deleted file mode 100644 index 5ee4428172..0000000000 Binary files a/artworks/VQGANCLIP/Robot/Robot in the Field/2/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sculptures/Metal Sculpture/1/500.png b/artworks/VQGANCLIP/Sculptures/Metal Sculpture/1/500.png deleted file mode 100644 index ed958623d6..0000000000 Binary files a/artworks/VQGANCLIP/Sculptures/Metal Sculpture/1/500.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sculptures/Metal Sculpture/1/input.txt b/artworks/VQGANCLIP/Sculptures/Metal Sculpture/1/input.txt deleted file mode 100644 index b5195e7369..0000000000 --- a/artworks/VQGANCLIP/Sculptures/Metal Sculpture/1/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: sculpture out of metal. metal sculpture. trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Sculptures/Wood Statues/Fitness Guru/1/400.png b/artworks/VQGANCLIP/Sculptures/Wood Statues/Fitness Guru/1/400.png deleted file mode 100644 index e3a175913d..0000000000 Binary files a/artworks/VQGANCLIP/Sculptures/Wood Statues/Fitness Guru/1/400.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sculptures/Wood Statues/Fitness Guru/1/input.txt b/artworks/VQGANCLIP/Sculptures/Wood Statues/Fitness Guru/1/input.txt deleted file mode 100644 index e7dad9989c..0000000000 --- a/artworks/VQGANCLIP/Sculptures/Wood Statues/Fitness Guru/1/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: fitness guru. wood block sculpture. trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/1/375.png b/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/1/375.png deleted file mode 100644 index 5d2fed052d..0000000000 Binary files a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/1/375.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/1/input.txt b/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/1/input.txt deleted file mode 100644 index 8c0ab423bb..0000000000 --- a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/1/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: wood block sculpture. trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/2/75.png b/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/2/75.png deleted file mode 100644 index 068e0b10d8..0000000000 Binary files a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/2/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/2/input.txt b/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/2/input.txt deleted file mode 100644 index d2d40e1de8..0000000000 --- a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/2/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: impressive wood block sculpture. trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/3/50.png b/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/3/50.png deleted file mode 100644 index 65ecb334b2..0000000000 Binary files a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/3/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/3/75.png b/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/3/75.png deleted file mode 100644 index b27cbc52b7..0000000000 Binary files a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/3/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/3/input.txt b/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/3/input.txt deleted file mode 100644 index 529c77b7b4..0000000000 --- a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/3/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: impressive giant wood block sculpture. wood block statue. trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/6/375.png b/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/6/375.png deleted file mode 100644 index 8eb69bd6a2..0000000000 Binary files a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/6/375.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/6/input.txt b/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/6/input.txt deleted file mode 100644 index 44efbf7374..0000000000 --- a/artworks/VQGANCLIP/Sculptures/Wood Statues/Wood Block Sculpture/6/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: wood block sculpture of a centaur.trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Self/Venom/1/75.png b/artworks/VQGANCLIP/Self/Venom/1/75.png deleted file mode 100644 index b9f2aa3a7f..0000000000 Binary files a/artworks/VQGANCLIP/Self/Venom/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Self/Venom/1/input.txt b/artworks/VQGANCLIP/Self/Venom/1/input.txt deleted file mode 100644 index 84ad104f8b..0000000000 --- a/artworks/VQGANCLIP/Self/Venom/1/input.txt +++ /dev/null @@ -1,9 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: I am VENOM. Portrait of Venom. Marvel action hero. trending on /r/art - -init_image: /content/Jonas-Oppenlaender-500x500.png - -target: - -Model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Sex/Kama Sutra/2/225.png b/artworks/VQGANCLIP/Sex/Kama Sutra/2/225.png deleted file mode 100644 index 4d27f9d4c2..0000000000 Binary files a/artworks/VQGANCLIP/Sex/Kama Sutra/2/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sex/Kama Sutra/2/input.txt b/artworks/VQGANCLIP/Sex/Kama Sutra/2/input.txt deleted file mode 100644 index f2ef212356..0000000000 --- a/artworks/VQGANCLIP/Sex/Kama Sutra/2/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: kama sutra|oil painting in the style of cubism|trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Sex/Kama Sutra/Robot Kama Sutra/1/75.png b/artworks/VQGANCLIP/Sex/Kama Sutra/Robot Kama Sutra/1/75.png deleted file mode 100644 index 2bfd97f63c..0000000000 Binary files a/artworks/VQGANCLIP/Sex/Kama Sutra/Robot Kama Sutra/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sex/Kama Sutra/Robot Kama Sutra/1/input.txt b/artworks/VQGANCLIP/Sex/Kama Sutra/Robot Kama Sutra/1/input.txt deleted file mode 100644 index 48a74f8546..0000000000 --- a/artworks/VQGANCLIP/Sex/Kama Sutra/Robot Kama Sutra/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: robot kama sutra, oil painting trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Sex/Kama Sutra/Robot Kama Sutra/2/75.png b/artworks/VQGANCLIP/Sex/Kama Sutra/Robot Kama Sutra/2/75.png deleted file mode 100644 index 5e09cb7e8a..0000000000 Binary files a/artworks/VQGANCLIP/Sex/Kama Sutra/Robot Kama Sutra/2/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sex/Kama Sutra/Robot Kama Sutra/2/input.txt b/artworks/VQGANCLIP/Sex/Kama Sutra/Robot Kama Sutra/2/input.txt deleted file mode 100644 index 813775ecb0..0000000000 --- a/artworks/VQGANCLIP/Sex/Kama Sutra/Robot Kama Sutra/2/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: robot sex, kama sutra, oil painting, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Sex/Pleasures/Illegal Pleasures/2/175.png b/artworks/VQGANCLIP/Sex/Pleasures/Illegal Pleasures/2/175.png deleted file mode 100644 index 4d858a64c3..0000000000 Binary files a/artworks/VQGANCLIP/Sex/Pleasures/Illegal Pleasures/2/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sex/Pleasures/Illegal Pleasures/2/input.txt b/artworks/VQGANCLIP/Sex/Pleasures/Illegal Pleasures/2/input.txt deleted file mode 100644 index 2684b90cf6..0000000000 --- a/artworks/VQGANCLIP/Sex/Pleasures/Illegal Pleasures/2/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Illegal pleasures. painting by Magritte, trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Sex/Positions/1/25.png b/artworks/VQGANCLIP/Sex/Positions/1/25.png deleted file mode 100644 index 88f5c5840f..0000000000 Binary files a/artworks/VQGANCLIP/Sex/Positions/1/25.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sex/Positions/1/input.txt b/artworks/VQGANCLIP/Sex/Positions/1/input.txt deleted file mode 100644 index 4665be3069..0000000000 --- a/artworks/VQGANCLIP/Sex/Positions/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -Input: kama sutra, painting, trending on /r/art - -model: wikiart_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Sex/Positions/2/50.png b/artworks/VQGANCLIP/Sex/Positions/2/50.png deleted file mode 100644 index dc9065d6a4..0000000000 Binary files a/artworks/VQGANCLIP/Sex/Positions/2/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sex/Positions/2/input.txt b/artworks/VQGANCLIP/Sex/Positions/2/input.txt deleted file mode 100644 index aa1e824c71..0000000000 --- a/artworks/VQGANCLIP/Sex/Positions/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: craxy sex position|sex position|line drawing|trending on /r/art - -model: wikiart_16384 - -target: 3036031.png|3036032.png|3036033.png|3036034.png|3036035.png|3036036.png|3036037.png|3036038.png|3036039.png|3036040.png|3036041.png|3036042.png|3036043.png|3036044.png|3036045.png|3036046.png|3036047.png|3036048.png|3036049.png - diff --git a/artworks/VQGANCLIP/Sex/Positions/3/150.png b/artworks/VQGANCLIP/Sex/Positions/3/150.png deleted file mode 100644 index 6c1ba03554..0000000000 Binary files a/artworks/VQGANCLIP/Sex/Positions/3/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sex/Positions/3/225.png b/artworks/VQGANCLIP/Sex/Positions/3/225.png deleted file mode 100644 index 7620f9cf5e..0000000000 Binary files a/artworks/VQGANCLIP/Sex/Positions/3/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sex/Positions/3/250.png b/artworks/VQGANCLIP/Sex/Positions/3/250.png deleted file mode 100644 index d384987a34..0000000000 Binary files a/artworks/VQGANCLIP/Sex/Positions/3/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sex/Positions/3/input.txt b/artworks/VQGANCLIP/Sex/Positions/3/input.txt deleted file mode 100644 index 6ecb369589..0000000000 --- a/artworks/VQGANCLIP/Sex/Positions/3/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: man and woman have sex, sex position, pictogram, trending on /r/art - -model: wikiart_16384 - -target: 3036031.png|3036032.png|3036033.png|3036034.png|3036035.png|3036036.png|3036037.png|3036038.png|3036039.png|3036040.png|3036041.png|3036042.png|3036043.png|3036044.png|3036045.png|3036046.png|3036047.png|3036048.png|3036049.png - diff --git a/artworks/VQGANCLIP/Shapes/Geometric Abstraction/1/350.png b/artworks/VQGANCLIP/Shapes/Geometric Abstraction/1/350.png deleted file mode 100644 index 06da667a6d..0000000000 Binary files a/artworks/VQGANCLIP/Shapes/Geometric Abstraction/1/350.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Shapes/Geometric Abstraction/1/input.txt b/artworks/VQGANCLIP/Shapes/Geometric Abstraction/1/input.txt deleted file mode 100644 index f4d336d1bc..0000000000 --- a/artworks/VQGANCLIP/Shapes/Geometric Abstraction/1/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: spiral drawing. line drawing of geometric shapes. geometric abstraction. trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Skid Row/5/75.png b/artworks/VQGANCLIP/Skid Row/5/75.png deleted file mode 100644 index fe6098e2c8..0000000000 Binary files a/artworks/VQGANCLIP/Skid Row/5/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skid Row/5/input.txt b/artworks/VQGANCLIP/Skid Row/5/input.txt deleted file mode 100644 index 951d145a50..0000000000 --- a/artworks/VQGANCLIP/Skid Row/5/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: homeless skid row, los angeles. photograph - -model: vqgan_imagenet_f16_16384 - -seed: -1 diff --git a/artworks/VQGANCLIP/Skid Row/6/325.png b/artworks/VQGANCLIP/Skid Row/6/325.png deleted file mode 100644 index fb6792729c..0000000000 Binary files a/artworks/VQGANCLIP/Skid Row/6/325.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skid Row/6/input.txt b/artworks/VQGANCLIP/Skid Row/6/input.txt deleted file mode 100644 index 34e9583043..0000000000 --- a/artworks/VQGANCLIP/Skid Row/6/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: homeless on skid row, los angeles. photograph by James Nachtwey - -model: vqgan_imagenet_f16_16384 - -seed: -1 diff --git a/artworks/VQGANCLIP/Skopje/Alexander/10/0035.png b/artworks/VQGANCLIP/Skopje/Alexander/10/0035.png deleted file mode 100644 index 577a3e816e..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Alexander/10/0035.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Alexander/10/input.txt b/artworks/VQGANCLIP/Skopje/Alexander/10/input.txt deleted file mode 100644 index 295c3a81d2..0000000000 --- a/artworks/VQGANCLIP/Skopje/Alexander/10/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/IMG_20211204_100929-scaled.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "robot soldier on horse, trending on /r/art" - ], - "seed": 12864973836989213204, - "size": [ - 430, - 550 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Skopje/Alexander/15/100.png b/artworks/VQGANCLIP/Skopje/Alexander/15/100.png deleted file mode 100644 index 469c948fb7..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Alexander/15/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Alexander/15/input.txt b/artworks/VQGANCLIP/Skopje/Alexander/15/input.txt deleted file mode 100644 index 5c660b0665..0000000000 --- a/artworks/VQGANCLIP/Skopje/Alexander/15/input.txt +++ /dev/null @@ -1,26 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "warrior:0.5", - "trending on artstation:0.125", - "horse:-0.375", - "ship:-0.5" - ], - "seed": 663959798703980135, - "size": [ - 430, - 550 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Skopje/Alexander/2/100.png b/artworks/VQGANCLIP/Skopje/Alexander/2/100.png deleted file mode 100644 index e09b8a516e..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Alexander/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Alexander/2/input.txt b/artworks/VQGANCLIP/Skopje/Alexander/2/input.txt deleted file mode 100644 index 1f74a87270..0000000000 --- a/artworks/VQGANCLIP/Skopje/Alexander/2/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/IMG_20211204_100929-scaled.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "Alexander The Great, horse rider wields sword, at dawn, trending on artstation" - ], - "seed": 11625352380434993349, - "size": [ - 430, - 550 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Skopje/Alexander/6/0030.png b/artworks/VQGANCLIP/Skopje/Alexander/6/0030.png deleted file mode 100644 index fcfd86ce56..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Alexander/6/0030.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Alexander/6/input.txt b/artworks/VQGANCLIP/Skopje/Alexander/6/input.txt deleted file mode 100644 index bb24b8349d..0000000000 --- a/artworks/VQGANCLIP/Skopje/Alexander/6/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/IMG_20211204_100929-scaled.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "horse rider wields sword, at dawn, trending on wikiart" - ], - "seed": 4389234181557204295, - "size": [ - 430, - 550 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Skopje/Alexander/8/50.png b/artworks/VQGANCLIP/Skopje/Alexander/8/50.png deleted file mode 100644 index 202b9ddf5e..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Alexander/8/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Alexander/8/input.txt b/artworks/VQGANCLIP/Skopje/Alexander/8/input.txt deleted file mode 100644 index 68b6913376..0000000000 --- a/artworks/VQGANCLIP/Skopje/Alexander/8/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/IMG_20211204_100929-scaled.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "into battle, trending on /r/art" - ], - "seed": 14883059938902988675, - "size": [ - 430, - 550 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Skopje/Alexander/9/25.png b/artworks/VQGANCLIP/Skopje/Alexander/9/25.png deleted file mode 100644 index 963797b01e..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Alexander/9/25.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Alexander/9/input.txt b/artworks/VQGANCLIP/Skopje/Alexander/9/input.txt deleted file mode 100644 index 93cc942155..0000000000 --- a/artworks/VQGANCLIP/Skopje/Alexander/9/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/IMG_20211204_100929-scaled.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "into battle, trending on /r/art" - ], - "seed": 3788091486968524645, - "size": [ - 430, - 550 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "vqgan_imagenet_f16_16384.ckpt", - "vqgan_config": "vqgan_imagenet_f16_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/3/75.png b/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/3/75.png deleted file mode 100644 index 4a6013445a..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/3/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/3/input.txt b/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/3/input.txt deleted file mode 100644 index 379d7f212e..0000000000 --- a/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/3/input.txt +++ /dev/null @@ -1,10 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: An angel appears to man sitting under tree under the macedonian sun|hyper-realistic painting, trending on artstation deviantart - -model: wikiart_16384 - -init image: skopje-1.png - -seed: -1 - diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/4/250.png b/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/4/250.png deleted file mode 100644 index aa5e166896..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/4/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/4/input.txt b/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/4/input.txt deleted file mode 100644 index 24fbff54cf..0000000000 --- a/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/4/input.txt +++ /dev/null @@ -1,10 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: a creature of light appears to man under tree. rays of light. realistic painting, trending on artstation deviantart - -model: wikiart_16384 - -init image: skopje-1.png - -seed: -1 - diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/5/650.png b/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/5/650.png deleted file mode 100644 index 5950e86654..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/5/650.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/5/input.txt b/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/5/input.txt deleted file mode 100644 index 054fbc9cab..0000000000 --- a/artworks/VQGANCLIP/Skopje/Bas Relief/Angel Vision/5/input.txt +++ /dev/null @@ -1,10 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: man under tree sees angel surrounded by rays of light. biblical vision of angel. realistic painting, trending on artstation deviantart - -model: wikiart_16384 - -init image: skopje-1.png - -seed: -1 - diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Demon/1/0060.png b/artworks/VQGANCLIP/Skopje/Bas Relief/Demon/1/0060.png deleted file mode 100644 index 9de6b153a3..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Bas Relief/Demon/1/0060.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Demon/1/input.txt b/artworks/VQGANCLIP/Skopje/Bas Relief/Demon/1/input.txt deleted file mode 100644 index 824e684bcd..0000000000 --- a/artworks/VQGANCLIP/Skopje/Bas Relief/Demon/1/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/skopje-1.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "man sees demon, painting, trending on wikiart" - ], - "seed": 6101604812005397245, - "size": [ - 550, - 340 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Demon/2/50.png b/artworks/VQGANCLIP/Skopje/Bas Relief/Demon/2/50.png deleted file mode 100644 index a850a3100b..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Bas Relief/Demon/2/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Demon/2/input.txt b/artworks/VQGANCLIP/Skopje/Bas Relief/Demon/2/input.txt deleted file mode 100644 index 2b6d5c40f8..0000000000 --- a/artworks/VQGANCLIP/Skopje/Bas Relief/Demon/2/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "/content/skopje-1.png", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "man sees demon, painting, trending on wikiart" - ], - "seed": 9977354336219544146, - "size": [ - 550, - 340 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Dolphins/12/100.png b/artworks/VQGANCLIP/Skopje/Bas Relief/Dolphins/12/100.png deleted file mode 100644 index d9d86b8cef..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Bas Relief/Dolphins/12/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Dolphins/12/input.txt b/artworks/VQGANCLIP/Skopje/Bas Relief/Dolphins/12/input.txt deleted file mode 100644 index 6a0fafc8c6..0000000000 --- a/artworks/VQGANCLIP/Skopje/Bas Relief/Dolphins/12/input.txt +++ /dev/null @@ -1,11 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -the dolphins leave the ocean and planet earth. fantastic painting, trending on artstation - -model: wikiart_16384 - -init image: skopje-1.png - -seed: -1 - diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Only Modifiers/6/125.png b/artworks/VQGANCLIP/Skopje/Bas Relief/Only Modifiers/6/125.png deleted file mode 100644 index f012ecea58..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Bas Relief/Only Modifiers/6/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Only Modifiers/6/input.txt b/artworks/VQGANCLIP/Skopje/Bas Relief/Only Modifiers/6/input.txt deleted file mode 100644 index 6ff67a5e26..0000000000 --- a/artworks/VQGANCLIP/Skopje/Bas Relief/Only Modifiers/6/input.txt +++ /dev/null @@ -1,11 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -Realistic rendering, unreal engine, trending on artstation - -model: wikiart_16384 - -init image: skopje-1.png - -seed: -1 - diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Only Modifiers/7/125.png b/artworks/VQGANCLIP/Skopje/Bas Relief/Only Modifiers/7/125.png deleted file mode 100644 index 2973006bdc..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Bas Relief/Only Modifiers/7/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Only Modifiers/7/input.txt b/artworks/VQGANCLIP/Skopje/Bas Relief/Only Modifiers/7/input.txt deleted file mode 100644 index 6ff67a5e26..0000000000 --- a/artworks/VQGANCLIP/Skopje/Bas Relief/Only Modifiers/7/input.txt +++ /dev/null @@ -1,11 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -Realistic rendering, unreal engine, trending on artstation - -model: wikiart_16384 - -init image: skopje-1.png - -seed: -1 - diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/10/225.png b/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/10/225.png deleted file mode 100644 index 4da86a83f3..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/10/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/10/input.txt b/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/10/input.txt deleted file mode 100644 index 31f3111bfa..0000000000 --- a/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/10/input.txt +++ /dev/null @@ -1,11 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -large majestic whale. underwater blue ocean. painting, trending on artstation - -model: wikiart_16384 - -init image: skopje-1.png - -seed: -1 - diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/8/75.png b/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/8/75.png deleted file mode 100644 index db6ecfe6a1..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/8/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/8/input.txt b/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/8/input.txt deleted file mode 100644 index 0935ae2526..0000000000 --- a/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/8/input.txt +++ /dev/null @@ -1,11 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -whale underwater. majestic whale. blue ocean air bubbles. beautiful painting, trending on artstation - -model: wikiart_16384 - -init image: skopje-1.png - -seed: -1 - diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/9/350.png b/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/9/350.png deleted file mode 100644 index 5ef72cd727..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/9/350.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/9/input.txt b/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/9/input.txt deleted file mode 100644 index d6f83d94ab..0000000000 --- a/artworks/VQGANCLIP/Skopje/Bas Relief/Whales/9/input.txt +++ /dev/null @@ -1,11 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -large majestic whale. underwater blue ocean. underwater sun light shining from above. painting, trending on artstation - -model: wikiart_16384 - -init image: skopje-1.png - -seed: -1 - diff --git a/artworks/VQGANCLIP/Skopje/Lion/3/0015.png b/artworks/VQGANCLIP/Skopje/Lion/3/0015.png deleted file mode 100644 index 91ea4642e5..0000000000 Binary files a/artworks/VQGANCLIP/Skopje/Lion/3/0015.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skopje/Lion/3/input.txt b/artworks/VQGANCLIP/Skopje/Lion/3/input.txt deleted file mode 100644 index f446b43032..0000000000 --- a/artworks/VQGANCLIP/Skopje/Lion/3/input.txt +++ /dev/null @@ -1,11 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"gay pride lion" realistic rendering, unreal engine, trending on artstation - -init image: lion.png - -model: vqgan_imagenet_f16_16384 - -seed: -1 - diff --git a/artworks/VQGANCLIP/Skulls/1 Abstract skull by Maciej Drabik trending on artstation/314.png b/artworks/VQGANCLIP/Skulls/1 Abstract skull by Maciej Drabik trending on artstation/314.png deleted file mode 100644 index 1a220147a1..0000000000 Binary files a/artworks/VQGANCLIP/Skulls/1 Abstract skull by Maciej Drabik trending on artstation/314.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skulls/Puking Skull/3 Abstract skull puking, painting by Maciej Drabik, trending on artstation/650.png b/artworks/VQGANCLIP/Skulls/Puking Skull/3 Abstract skull puking, painting by Maciej Drabik, trending on artstation/650.png deleted file mode 100644 index 7b08056154..0000000000 Binary files a/artworks/VQGANCLIP/Skulls/Puking Skull/3 Abstract skull puking, painting by Maciej Drabik, trending on artstation/650.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skulls/Puking Skull/3 Abstract skull puking, painting by Maciej Drabik, trending on artstation/input.txt b/artworks/VQGANCLIP/Skulls/Puking Skull/3 Abstract skull puking, painting by Maciej Drabik, trending on artstation/input.txt deleted file mode 100644 index 6672a87311..0000000000 --- a/artworks/VQGANCLIP/Skulls/Puking Skull/3 Abstract skull puking, painting by Maciej Drabik, trending on artstation/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: Abstract skull puking, painting by Maciej Drabik, trending on artstation - diff --git a/artworks/VQGANCLIP/Skulls/Puking Skull/5 - skull puking, painting by Maciej Drabik, trending on artstation/150.png b/artworks/VQGANCLIP/Skulls/Puking Skull/5 - skull puking, painting by Maciej Drabik, trending on artstation/150.png deleted file mode 100644 index 02aef22621..0000000000 Binary files a/artworks/VQGANCLIP/Skulls/Puking Skull/5 - skull puking, painting by Maciej Drabik, trending on artstation/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skulls/Puking Skull/5 - skull puking, painting by Maciej Drabik, trending on artstation/input.txt b/artworks/VQGANCLIP/Skulls/Puking Skull/5 - skull puking, painting by Maciej Drabik, trending on artstation/input.txt deleted file mode 100644 index caa239f74d..0000000000 --- a/artworks/VQGANCLIP/Skulls/Puking Skull/5 - skull puking, painting by Maciej Drabik, trending on artstation/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: skull puking, painting by Maciej Drabik, trending on artstation diff --git a/artworks/VQGANCLIP/Skulls/Puking Skull/7 - a skull puking colors, painting by Maciej Drabik, trending on artstation/150.png b/artworks/VQGANCLIP/Skulls/Puking Skull/7 - a skull puking colors, painting by Maciej Drabik, trending on artstation/150.png deleted file mode 100644 index 1f7b765678..0000000000 Binary files a/artworks/VQGANCLIP/Skulls/Puking Skull/7 - a skull puking colors, painting by Maciej Drabik, trending on artstation/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Skulls/Puking Skull/7 - a skull puking colors, painting by Maciej Drabik, trending on artstation/input.txt b/artworks/VQGANCLIP/Skulls/Puking Skull/7 - a skull puking colors, painting by Maciej Drabik, trending on artstation/input.txt deleted file mode 100644 index 7eeddbd6a4..0000000000 --- a/artworks/VQGANCLIP/Skulls/Puking Skull/7 - a skull puking colors, painting by Maciej Drabik, trending on artstation/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: a skull puking colors, painting by Maciej Drabik, trending on artstation diff --git a/artworks/VQGANCLIP/Skulls/Skull portrait by Maciej Drabik/0074.png b/artworks/VQGANCLIP/Skulls/Skull portrait by Maciej Drabik/0074.png deleted file mode 100644 index 4f07de592c..0000000000 Binary files a/artworks/VQGANCLIP/Skulls/Skull portrait by Maciej Drabik/0074.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sphere/1/125.png b/artworks/VQGANCLIP/Sphere/1/125.png deleted file mode 100644 index ca4343a7ac..0000000000 Binary files a/artworks/VQGANCLIP/Sphere/1/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sphere/1/50.png b/artworks/VQGANCLIP/Sphere/1/50.png deleted file mode 100644 index 5b8caccf7f..0000000000 Binary files a/artworks/VQGANCLIP/Sphere/1/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sphere/1/input.txt b/artworks/VQGANCLIP/Sphere/1/input.txt deleted file mode 100644 index 79554c9111..0000000000 --- a/artworks/VQGANCLIP/Sphere/1/input.txt +++ /dev/null @@ -1,7 +0,0 @@ -belligerent swirls - -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: whirlwind draft streaming into the conscious sphere. digital artwork, trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Sphinx/2/50.png b/artworks/VQGANCLIP/Sphinx/2/50.png deleted file mode 100644 index 8f5e01c748..0000000000 Binary files a/artworks/VQGANCLIP/Sphinx/2/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sphinx/2/input.txt b/artworks/VQGANCLIP/Sphinx/2/input.txt deleted file mode 100644 index 35361f2871..0000000000 --- a/artworks/VQGANCLIP/Sphinx/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb - -Input: realistic rendering of a sphinx. sphinx. rendered in unrealengine. detailed fur. wings with feathers. trending on artstation|neon:-1 - -model: vqgan_imagenet_f16_16384 - -initial: /content/sphinx.png - diff --git a/artworks/VQGANCLIP/Sphinx/4/75.png b/artworks/VQGANCLIP/Sphinx/4/75.png deleted file mode 100644 index 7d2d1c794e..0000000000 Binary files a/artworks/VQGANCLIP/Sphinx/4/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sphinx/4/input.txt b/artworks/VQGANCLIP/Sphinx/4/input.txt deleted file mode 100644 index 3b77306add..0000000000 --- a/artworks/VQGANCLIP/Sphinx/4/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb - -Input: realistic rendering of a sphinx. sphinx. rendered in unrealengine. fur. wings with feathers. trending on artstation|neon:-1|symmetrical face - -model: vqgan_imagenet_f16_16384 - -initial: /content/sphinx.png - diff --git a/artworks/VQGANCLIP/Sphinx/6/125.png b/artworks/VQGANCLIP/Sphinx/6/125.png deleted file mode 100644 index 2f1cb14ccc..0000000000 Binary files a/artworks/VQGANCLIP/Sphinx/6/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Sphinx/6/input.txt b/artworks/VQGANCLIP/Sphinx/6/input.txt deleted file mode 100644 index acbfe333c2..0000000000 --- a/artworks/VQGANCLIP/Sphinx/6/input.txt +++ /dev/null @@ -1,9 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: Sphinx. realistic rendering. rendered by unrealengine. trending on artstation|neon:-1 - -w: 400 -h: 457 - -initial: /content/424e19bd96886b8cb2c47d6f1996266b.jpg - diff --git a/artworks/VQGANCLIP/The Other Team/1/200.png b/artworks/VQGANCLIP/The Other Team/1/200.png deleted file mode 100644 index b560d52e88..0000000000 Binary files a/artworks/VQGANCLIP/The Other Team/1/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/The Other Team/1/input.txt b/artworks/VQGANCLIP/The Other Team/1/input.txt deleted file mode 100644 index 7e0c699759..0000000000 --- a/artworks/VQGANCLIP/The Other Team/1/input.txt +++ /dev/null @@ -1,28 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "The Other Team", - "dark", - "occult", - "mysterious", - "painting", - "trending on wikiart" - ], - "seed": 5336368130036559536, - "size": [ - 350, - 450 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Tower of Babel/14/100.png b/artworks/VQGANCLIP/Tower of Babel/14/100.png deleted file mode 100644 index dc392b33e2..0000000000 Binary files a/artworks/VQGANCLIP/Tower of Babel/14/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Tower of Babel/14/input.txt b/artworks/VQGANCLIP/Tower of Babel/14/input.txt deleted file mode 100644 index 67741bf679..0000000000 --- a/artworks/VQGANCLIP/Tower of Babel/14/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"tower of babel" oil painting by Pieter Bruegel the Elder, trending on artstation|people:-1 - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Tower of Babel/15/100.png b/artworks/VQGANCLIP/Tower of Babel/15/100.png deleted file mode 100644 index 7bfa26c6c7..0000000000 Binary files a/artworks/VQGANCLIP/Tower of Babel/15/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Tower of Babel/15/input.txt b/artworks/VQGANCLIP/Tower of Babel/15/input.txt deleted file mode 100644 index 0229abd247..0000000000 --- a/artworks/VQGANCLIP/Tower of Babel/15/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"tower of babel" oil painting by Pieter Bruegel the Elder, trending on artstation|people:-1|santa claus:-1 - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Tower of Babel/17/225.png b/artworks/VQGANCLIP/Tower of Babel/17/225.png deleted file mode 100644 index 9497f018ac..0000000000 Binary files a/artworks/VQGANCLIP/Tower of Babel/17/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Tower of Babel/17/input.txt b/artworks/VQGANCLIP/Tower of Babel/17/input.txt deleted file mode 100644 index c562fea217..0000000000 --- a/artworks/VQGANCLIP/Tower of Babel/17/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"tower of babel" oil painting by Pieter Bruegel the Elder, trending on artstation|people:-1|santa claus:-1|construction:-1 - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Tower of Babel/9/100.png b/artworks/VQGANCLIP/Tower of Babel/9/100.png deleted file mode 100644 index 57820906a5..0000000000 Binary files a/artworks/VQGANCLIP/Tower of Babel/9/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Tower of Babel/9/input.txt b/artworks/VQGANCLIP/Tower of Babel/9/input.txt deleted file mode 100644 index 123cae273c..0000000000 --- a/artworks/VQGANCLIP/Tower of Babel/9/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -"tower of babel" by Pieter Bruegel the Elder, trending on artstation, deviantart|Greg Rutkowski - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Trees/Tree Seasons/Autumn/50.png b/artworks/VQGANCLIP/Trees/Tree Seasons/Autumn/50.png deleted file mode 100644 index ece2135e3c..0000000000 Binary files a/artworks/VQGANCLIP/Trees/Tree Seasons/Autumn/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Trees/Tree Seasons/Autumn/input.txt b/artworks/VQGANCLIP/Trees/Tree Seasons/Autumn/input.txt deleted file mode 100644 index 3bdaba592d..0000000000 --- a/artworks/VQGANCLIP/Trees/Tree Seasons/Autumn/input.txt +++ /dev/null @@ -1,9 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: tree in autumn, photograph - -Initial: /content/broccoli-tree.jpg - -Model: vqgan_imagenet_f16_16384 - -Seed: 1234 diff --git a/artworks/VQGANCLIP/Trees/Tree Seasons/Winter/50.png b/artworks/VQGANCLIP/Trees/Tree Seasons/Winter/50.png deleted file mode 100644 index bb442b1702..0000000000 Binary files a/artworks/VQGANCLIP/Trees/Tree Seasons/Winter/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Trees/Tree Seasons/Winter/input.txt b/artworks/VQGANCLIP/Trees/Tree Seasons/Winter/input.txt deleted file mode 100644 index 1d2eda00f9..0000000000 --- a/artworks/VQGANCLIP/Trees/Tree Seasons/Winter/input.txt +++ /dev/null @@ -1,9 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: tree in winter, photograph - -Initial: /content/broccoli-tree.jpg - -Model: vqgan_imagenet_f16_16384 - -Seed: 1234 diff --git a/artworks/VQGANCLIP/Trees/Tree of Life/1/175.png b/artworks/VQGANCLIP/Trees/Tree of Life/1/175.png deleted file mode 100644 index 9598ca766b..0000000000 Binary files a/artworks/VQGANCLIP/Trees/Tree of Life/1/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Trees/Tree of Life/1/input.txt b/artworks/VQGANCLIP/Trees/Tree of Life/1/input.txt deleted file mode 100644 index d4f9e743a4..0000000000 --- a/artworks/VQGANCLIP/Trees/Tree of Life/1/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Tree of life. Beautiful oil painting. trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Trees/Trees in the Wind/1/75.png b/artworks/VQGANCLIP/Trees/Trees in the Wind/1/75.png deleted file mode 100644 index cd33ca78f0..0000000000 Binary files a/artworks/VQGANCLIP/Trees/Trees in the Wind/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Trees/Trees in the Wind/1/input.txt b/artworks/VQGANCLIP/Trees/Trees in the Wind/1/input.txt deleted file mode 100644 index 5500d39319..0000000000 --- a/artworks/VQGANCLIP/Trees/Trees in the Wind/1/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Withering tree in the wind. trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Trees/Trees in the Wind/2/100.png b/artworks/VQGANCLIP/Trees/Trees in the Wind/2/100.png deleted file mode 100644 index 045b6974cf..0000000000 Binary files a/artworks/VQGANCLIP/Trees/Trees in the Wind/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Trees/Trees in the Wind/2/input.txt b/artworks/VQGANCLIP/Trees/Trees in the Wind/2/input.txt deleted file mode 100644 index 5500d39319..0000000000 --- a/artworks/VQGANCLIP/Trees/Trees in the Wind/2/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Withering tree in the wind. trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Trees/Trees in the Wind/3/100.png b/artworks/VQGANCLIP/Trees/Trees in the Wind/3/100.png deleted file mode 100644 index 90523273e4..0000000000 Binary files a/artworks/VQGANCLIP/Trees/Trees in the Wind/3/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Trees/Trees in the Wind/3/input.txt b/artworks/VQGANCLIP/Trees/Trees in the Wind/3/input.txt deleted file mode 100644 index 5500d39319..0000000000 --- a/artworks/VQGANCLIP/Trees/Trees in the Wind/3/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Withering tree in the wind. trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/1/150.png b/artworks/VQGANCLIP/UFO/Ufo Landing/1/150.png deleted file mode 100644 index d3b274f98f..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/1/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/1/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/1/input.txt deleted file mode 100644 index 2570b8be34..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/1/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: ufo landing, fantastic daguerreotype, trending on /r/art - -Model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/11/50.png b/artworks/VQGANCLIP/UFO/Ufo Landing/11/50.png deleted file mode 100644 index 592b2ca3cb..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/11/50.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/11/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/11/input.txt deleted file mode 100644 index 9938e0c880..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/11/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: ufo landing, fantastic, on Vellum, trending on /r/art - -Model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/2/75.png b/artworks/VQGANCLIP/UFO/Ufo Landing/2/75.png deleted file mode 100644 index b91c886162..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/2/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/2/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/2/input.txt deleted file mode 100644 index 2570b8be34..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/2/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: ufo landing, fantastic daguerreotype, trending on /r/art - -Model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/4/175.png b/artworks/VQGANCLIP/UFO/Ufo Landing/4/175.png deleted file mode 100644 index de111fe977..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/4/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/4/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/4/input.txt deleted file mode 100644 index c820076a83..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/4/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: ufo landing, fantastic daguerreotype, trending on /r/art - -Model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/14/300.png b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/14/300.png deleted file mode 100644 index 4d9f49c433..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/14/300.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/14/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/14/input.txt deleted file mode 100644 index 4c33fdfad5..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/14/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, daguerreotype, trending on /r/art" - ], - "seed": 6087304447281500163, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/15/300.png b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/15/300.png deleted file mode 100644 index 1f23066949..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/15/300.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/15/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/15/input.txt deleted file mode 100644 index b635a92584..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/15/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, daguerreotype, by greg rutkowski, trending on /r/art" - ], - "seed": 15110431892008247981, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/17/300.png b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/17/300.png deleted file mode 100644 index 695a3b9700..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/17/300.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/17/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/17/input.txt deleted file mode 100644 index 93e45ddcf5..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/17/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, fantastic daguerreotype, epic, by greg rutkowski, trending on /r/art" - ], - "seed": 6810291739549124141, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/20/325.png b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/20/325.png deleted file mode 100644 index 41746ed423..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/20/325.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/20/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/20/input.txt deleted file mode 100644 index 58b5446beb..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/20/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, fantastic daguerreotype, sky is on fire, by greg rutkowski, trending on /r/art" - ], - "seed": 10951110049672866575, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/21/300.png b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/21/300.png deleted file mode 100644 index ed97ca7260..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/21/300.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/21/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/21/input.txt deleted file mode 100644 index 2e228d031a..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/21/input.txt +++ /dev/null @@ -1,24 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, fantastic daguerreotype, epic, by greg rutkowski, trending on /r/art", - "clouds:-1" - ], - "seed": 15186586549296125285, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/23/175.png b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/23/175.png deleted file mode 100644 index dfd600ce68..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/23/175.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/23/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/23/input.txt deleted file mode 100644 index 920d807347..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/23/input.txt +++ /dev/null @@ -1,24 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, fantastic daguerreotype, epic, by greg rutkowski, trending on /r/art", - "zeppelin:-0.2" - ], - "seed": 18203680512632813354, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/24/250.png b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/24/250.png deleted file mode 100644 index 949729e0d9..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/24/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/24/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/24/input.txt deleted file mode 100644 index d3d0f891b1..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/24/input.txt +++ /dev/null @@ -1,24 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, fantastic daguerreotype, epic, by greg rutkowski, trending on /r/art", - "zeppelin:-0.5" - ], - "seed": 2324481858120500110, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/27/250.png b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/27/250.png deleted file mode 100644 index 7adab96096..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/27/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/27/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/27/input.txt deleted file mode 100644 index 0c29d0b067..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/27/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, fantastic daguerreotype, by greg rutkowski, trending on /r/art" - ], - "seed": 9626680780969395286, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/28/150.png b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/28/150.png deleted file mode 100644 index 70090ebbc5..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/28/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/28/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/28/input.txt deleted file mode 100644 index 1788653367..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/28/input.txt +++ /dev/null @@ -1,24 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, fantastic daguerreotype, by greg rutkowski, trending on /r/art", - "cloudy:-0.5" - ], - "seed": 672592409244302955, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/29/250.png b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/29/250.png deleted file mode 100644 index 5c9c64eb4e..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/29/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/29/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/29/input.txt deleted file mode 100644 index 44c13385a3..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/29/input.txt +++ /dev/null @@ -1,24 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, fantastic daguerreotype, by greg rutkowski, trending on /r/art", - "zeppelin:-0.5" - ], - "seed": 17576464952106893225, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/32/225.png b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/32/225.png deleted file mode 100644 index 71521f5f42..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/32/225.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/32/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/32/input.txt deleted file mode 100644 index 30665fa355..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/prompt runs/32/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, fantastic daguerreotype, by greg rutkowski, trending on /r/art #amazing" - ], - "seed": 3382055998552914088, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/d/200.png b/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/d/200.png deleted file mode 100644 index 6ca4824579..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/d/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/d/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/d/input.txt deleted file mode 100644 index cb240e7120..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/d/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, daguerreotype, by greg rutkowski, trending on /r/art" - ], - "seed": 11287233197261180142, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/e-pixelart/350.png b/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/e-pixelart/350.png deleted file mode 100644 index f98e38c776..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/e-pixelart/350.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/e-pixelart/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/e-pixelart/input.txt deleted file mode 100644 index c2614f66dd..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/e-pixelart/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, fantastic daguerreotype, epic, by greg rutkowski, trending on /r/art #pixelart" - ], - "seed": 9811971178782541833, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/x2/200.png b/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/x2/200.png deleted file mode 100644 index 79aaca67e8..0000000000 Binary files a/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/x2/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/x2/input.txt b/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/x2/input.txt deleted file mode 100644 index d654e25185..0000000000 --- a/artworks/VQGANCLIP/UFO/Ufo Landing/seed 6087304447281500163/x2/input.txt +++ /dev/null @@ -1,23 +0,0 @@ -{ - "clip_model": "ViT-B/32", - "cut_pow": 1.0, - "cutn": 64, - "display_freq": 25, - "image_prompts": [], - "init_image": "", - "init_weight": 0.0, - "noise_prompt_seeds": [], - "noise_prompt_weights": [], - "prompts": [ - "ufo landing, wondrous daguerreotype, by greg rutkowski, trending on /r/art" - ], - "seed": 5604596371288652169, - "size": [ - 412, - 412 - ], - "step_size": 0.1, - "url": "https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=coQoDIfsFtgv", - "vqgan_checkpoint": "wikiart_16384.ckpt", - "vqgan_config": "wikiart_16384.yaml" -} \ No newline at end of file diff --git a/artworks/VQGANCLIP/Vaporwave/vaporwave cityscape sunset #retro #80s trending on artstation/250.png b/artworks/VQGANCLIP/Vaporwave/vaporwave cityscape sunset #retro #80s trending on artstation/250.png deleted file mode 100644 index 2de14435b6..0000000000 Binary files a/artworks/VQGANCLIP/Vaporwave/vaporwave cityscape sunset #retro #80s trending on artstation/250.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Vaporwave/vaporwave cityscape sunset #retro #80s trending on artstation/input.txt b/artworks/VQGANCLIP/Vaporwave/vaporwave cityscape sunset #retro #80s trending on artstation/input.txt deleted file mode 100644 index 066cfdda44..0000000000 --- a/artworks/VQGANCLIP/Vaporwave/vaporwave cityscape sunset #retro #80s trending on artstation/input.txt +++ /dev/null @@ -1 +0,0 @@ -Input: vaporwave cityscape sunset #retro #80s trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Vaporwave/vaporwave sunset 80s retro/350.png b/artworks/VQGANCLIP/Vaporwave/vaporwave sunset 80s retro/350.png deleted file mode 100644 index 5b4a52db07..0000000000 Binary files a/artworks/VQGANCLIP/Vaporwave/vaporwave sunset 80s retro/350.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Victorian Times/Victorian Street Scene/1/125.png b/artworks/VQGANCLIP/Victorian Times/Victorian Street Scene/1/125.png deleted file mode 100644 index 2f9a6496d4..0000000000 Binary files a/artworks/VQGANCLIP/Victorian Times/Victorian Street Scene/1/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Victorian Times/Victorian Street Scene/1/input.txt b/artworks/VQGANCLIP/Victorian Times/Victorian Street Scene/1/input.txt deleted file mode 100644 index 18263037ac..0000000000 --- a/artworks/VQGANCLIP/Victorian Times/Victorian Street Scene/1/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -victorian street life. scene from victorian times. old photograph, trending on /r/art - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Victorian Times/Victorian Street Scene/2/100.png b/artworks/VQGANCLIP/Victorian Times/Victorian Street Scene/2/100.png deleted file mode 100644 index 520812bdd4..0000000000 Binary files a/artworks/VQGANCLIP/Victorian Times/Victorian Street Scene/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Victorian Times/Victorian Street Scene/2/input.txt b/artworks/VQGANCLIP/Victorian Times/Victorian Street Scene/2/input.txt deleted file mode 100644 index 18263037ac..0000000000 --- a/artworks/VQGANCLIP/Victorian Times/Victorian Street Scene/2/input.txt +++ /dev/null @@ -1,8 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: -victorian street life. scene from victorian times. old photograph, trending on /r/art - -model: wikiart_16384 - -seed: -1 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Violence/10/75.png b/artworks/VQGANCLIP/Violence/10/75.png deleted file mode 100644 index c809e2d3fa..0000000000 Binary files a/artworks/VQGANCLIP/Violence/10/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Violence/10/input.txt b/artworks/VQGANCLIP/Violence/10/input.txt deleted file mode 100644 index 561d24bcec..0000000000 --- a/artworks/VQGANCLIP/Violence/10/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: face into fist, act of violence|painting in the style of Beksinski, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/Violence/3/0031.png b/artworks/VQGANCLIP/Violence/3/0031.png deleted file mode 100644 index 7b174c00bc..0000000000 Binary files a/artworks/VQGANCLIP/Violence/3/0031.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Violence/3/input.txt b/artworks/VQGANCLIP/Violence/3/input.txt deleted file mode 100644 index e642e8173f..0000000000 --- a/artworks/VQGANCLIP/Violence/3/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: guy gets hit in the face, act of violence, painting by greg rutkowski, trending on artstation, #art #amazing \ No newline at end of file diff --git a/artworks/VQGANCLIP/War/Soldier/1/75.png b/artworks/VQGANCLIP/War/Soldier/1/75.png deleted file mode 100644 index 83a723aa58..0000000000 Binary files a/artworks/VQGANCLIP/War/Soldier/1/75.png and /dev/null differ diff --git a/artworks/VQGANCLIP/War/Soldier/1/input.txt b/artworks/VQGANCLIP/War/Soldier/1/input.txt deleted file mode 100644 index 7d5ed71273..0000000000 --- a/artworks/VQGANCLIP/War/Soldier/1/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -Input: portrait of a soldier, world war 2 soldier, trending on artstation - -model: wikiart_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/War/War Memorial/2/100.png b/artworks/VQGANCLIP/War/War Memorial/2/100.png deleted file mode 100644 index 27d8f41c61..0000000000 Binary files a/artworks/VQGANCLIP/War/War Memorial/2/100.png and /dev/null differ diff --git a/artworks/VQGANCLIP/War/War Memorial/2/input.txt b/artworks/VQGANCLIP/War/War Memorial/2/input.txt deleted file mode 100644 index 8f0f4c4870..0000000000 --- a/artworks/VQGANCLIP/War/War Memorial/2/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Russian war memorial. war memorial in Russia. Painting at the Museum of Modern Art, trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/War/War Memorial/3/200.png b/artworks/VQGANCLIP/War/War Memorial/3/200.png deleted file mode 100644 index 486af643a5..0000000000 Binary files a/artworks/VQGANCLIP/War/War Memorial/3/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/War/War Memorial/3/input.txt b/artworks/VQGANCLIP/War/War Memorial/3/input.txt deleted file mode 100644 index 34d0239d0b..0000000000 --- a/artworks/VQGANCLIP/War/War Memorial/3/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Russian war memorial in the style of brutalist social realism. Painting, trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/War/War Memorial/6/125.png b/artworks/VQGANCLIP/War/War Memorial/6/125.png deleted file mode 100644 index 2343876d09..0000000000 Binary files a/artworks/VQGANCLIP/War/War Memorial/6/125.png and /dev/null differ diff --git a/artworks/VQGANCLIP/War/War Memorial/6/input.txt b/artworks/VQGANCLIP/War/War Memorial/6/input.txt deleted file mode 100644 index 548b88a26a..0000000000 --- a/artworks/VQGANCLIP/War/War Memorial/6/input.txt +++ /dev/null @@ -1,5 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=g7EDme5RYCrt - -Input: Russian war memorial in the style of brutalist social realism. War Memorial in Russia. Painting, trending on /r/art - -model: vqgan_imagenet_f16_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Women/Beach/1/150.png b/artworks/VQGANCLIP/Women/Beach/1/150.png deleted file mode 100644 index 10ed60cf47..0000000000 Binary files a/artworks/VQGANCLIP/Women/Beach/1/150.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Women/Beach/1/Input.txt b/artworks/VQGANCLIP/Women/Beach/1/Input.txt deleted file mode 100644 index b58b40e133..0000000000 --- a/artworks/VQGANCLIP/Women/Beach/1/Input.txt +++ /dev/null @@ -1,3 +0,0 @@ -Input: woman on the beach | watercolor painting | trending on artstation - -Model: wikiart_16384 \ No newline at end of file diff --git a/artworks/VQGANCLIP/Women/Pensive Woman/200.png b/artworks/VQGANCLIP/Women/Pensive Woman/200.png deleted file mode 100644 index 445423bb1c..0000000000 Binary files a/artworks/VQGANCLIP/Women/Pensive Woman/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/Women/Pensive Woman/input.txt b/artworks/VQGANCLIP/Women/Pensive Woman/input.txt deleted file mode 100644 index 96d4591f26..0000000000 --- a/artworks/VQGANCLIP/Women/Pensive Woman/input.txt +++ /dev/null @@ -1,3 +0,0 @@ -https://colab.research.google.com/gist/joetm/c8088ffb2a68250cb3c16e34bc34677b/vqgan-clip-updated.ipynb?authuser=3#scrollTo=ZdlpRFL8UAlW - -Input: pensive young woman at sunset in the style of Pierre Auguste Renoir, painting by greg rutkowski, trending on artstation \ No newline at end of file diff --git a/artworks/VQGANCLIP/only-modifiers/run-2/200.png b/artworks/VQGANCLIP/only-modifiers/run-2/200.png deleted file mode 100644 index 0cf213bff2..0000000000 Binary files a/artworks/VQGANCLIP/only-modifiers/run-2/200.png and /dev/null differ diff --git a/artworks/VQGANCLIP/only-modifiers/run-2/input.txt b/artworks/VQGANCLIP/only-modifiers/run-2/input.txt deleted file mode 100644 index 18fb2ffe9e..0000000000 --- a/artworks/VQGANCLIP/only-modifiers/run-2/input.txt +++ /dev/null @@ -1,2 +0,0 @@ -Input: breathtaking | oil painting | trending on artstation - diff --git a/artworks/cc12m-1-cfg/Cityscape/2/download (2).png b/artworks/cc12m-1-cfg/Cityscape/2/download (2).png deleted file mode 100644 index 1811c47764..0000000000 Binary files a/artworks/cc12m-1-cfg/Cityscape/2/download (2).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Cityscape/2/download (3).png b/artworks/cc12m-1-cfg/Cityscape/2/download (3).png deleted file mode 100644 index f26613f551..0000000000 Binary files a/artworks/cc12m-1-cfg/Cityscape/2/download (3).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Cityscape/2/download (5).png b/artworks/cc12m-1-cfg/Cityscape/2/download (5).png deleted file mode 100644 index 66416f4233..0000000000 Binary files a/artworks/cc12m-1-cfg/Cityscape/2/download (5).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Cityscape/2/download (6).png b/artworks/cc12m-1-cfg/Cityscape/2/download (6).png deleted file mode 100644 index b197391663..0000000000 Binary files a/artworks/cc12m-1-cfg/Cityscape/2/download (6).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Cityscape/2/download (7).png b/artworks/cc12m-1-cfg/Cityscape/2/download (7).png deleted file mode 100644 index de7aa206ef..0000000000 Binary files a/artworks/cc12m-1-cfg/Cityscape/2/download (7).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Cityscape/2/download (8).png b/artworks/cc12m-1-cfg/Cityscape/2/download (8).png deleted file mode 100644 index fae455333e..0000000000 Binary files a/artworks/cc12m-1-cfg/Cityscape/2/download (8).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Cityscape/2/input.txt b/artworks/cc12m-1-cfg/Cityscape/2/input.txt deleted file mode 100644 index 98d9629644..0000000000 --- a/artworks/cc12m-1-cfg/Cityscape/2/input.txt +++ /dev/null @@ -1,29 +0,0 @@ -https://colab.research.google.com/gist/joetm/42dd5bfbe7f08add5d46dc84b9dfc9ed/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - - -The text prompt - -prompt: -fantastic futuristic cityscape, landscape of the future, detailed painting, by Diego Rivera, trending on artstation - -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -5 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 50, can lower for faster but lower quality sampling). - -steps: -50 -The random seed. Change this to sample different images. - -seed: -0 -Display progress every this many timesteps. - -display_every: -10 - diff --git a/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x1_out.png b/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x1_out.png deleted file mode 100644 index b4f9b11140..0000000000 Binary files a/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x1_out.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x2_out.png b/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x2_out.png deleted file mode 100644 index d00571e5c2..0000000000 Binary files a/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x2_out.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x3_out.png b/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x3_out.png deleted file mode 100644 index fc86b02618..0000000000 Binary files a/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x3_out.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x6_out.png b/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x6_out.png deleted file mode 100644 index afaf932a93..0000000000 Binary files a/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x6_out.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x8_out.png b/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x8_out.png deleted file mode 100644 index 9417fd570b..0000000000 Binary files a/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x8_out.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x9_out.png b/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x9_out.png deleted file mode 100644 index 219e804bc2..0000000000 Binary files a/artworks/cc12m-1-cfg/Emotional Damage/1/RealESRGAN/x9_out.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Emotional Damage/1/input.txt b/artworks/cc12m-1-cfg/Emotional Damage/1/input.txt deleted file mode 100644 index d9f82e9097..0000000000 --- a/artworks/cc12m-1-cfg/Emotional Damage/1/input.txt +++ /dev/null @@ -1,31 +0,0 @@ -https://colab.research.google.com/gist/joetm/0e59d686328e7e4f5da125e7ff5aa4ff/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - -The text prompt - -prompt: -eMoTioNaL dAmAGe, oil on canvas, trending on /r/art -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -2 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 500, can lower for faster but lower quality sampling). - -steps: -550 -Set to 0 for deterministic (DDIM) sampling, 1 (the default) for stochastic (DDPM) sampling, and in between to interpolate between the two. 0 is preferred for low numbers of timesteps. - -eta: -0.8 -The random seed. Change this to sample different images. - -seed: -346457 -Display progress every this many timesteps. - -display_every: -50 - diff --git a/artworks/cc12m-1-cfg/Gays/1/download (3).png b/artworks/cc12m-1-cfg/Gays/1/download (3).png deleted file mode 100644 index ff322ec341..0000000000 Binary files a/artworks/cc12m-1-cfg/Gays/1/download (3).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Gays/1/download (4).png b/artworks/cc12m-1-cfg/Gays/1/download (4).png deleted file mode 100644 index 253a897c51..0000000000 Binary files a/artworks/cc12m-1-cfg/Gays/1/download (4).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Gays/1/download (5).png b/artworks/cc12m-1-cfg/Gays/1/download (5).png deleted file mode 100644 index 847798e061..0000000000 Binary files a/artworks/cc12m-1-cfg/Gays/1/download (5).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Gays/1/download (7).png b/artworks/cc12m-1-cfg/Gays/1/download (7).png deleted file mode 100644 index 9a97ef3fae..0000000000 Binary files a/artworks/cc12m-1-cfg/Gays/1/download (7).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Gays/1/download.png b/artworks/cc12m-1-cfg/Gays/1/download.png deleted file mode 100644 index cbbb91435c..0000000000 Binary files a/artworks/cc12m-1-cfg/Gays/1/download.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Gays/1/input.txt b/artworks/cc12m-1-cfg/Gays/1/input.txt deleted file mode 100644 index 357124c22a..0000000000 --- a/artworks/cc12m-1-cfg/Gays/1/input.txt +++ /dev/null @@ -1,30 +0,0 @@ -https://colab.research.google.com/gist/joetm/42dd5bfbe7f08add5d46dc84b9dfc9ed/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - - -The text prompt - -prompt: -Two gays II by Frantisek Kupka (1928)|Style: Orphism; Genre: abstract; Media: oil, canvas; dimensions: 38 x 63 cm; trending on /r/art - -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -6 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 50, can lower for faster but lower quality sampling). - -steps: -60 -The random seed. Change this to sample different images. - -seed: -3434633455 -Display progress every this many timesteps. - -display_every: -10 - - diff --git a/artworks/cc12m-1-cfg/Gays/4/download (1).png b/artworks/cc12m-1-cfg/Gays/4/download (1).png deleted file mode 100644 index 4cb715e5d0..0000000000 Binary files a/artworks/cc12m-1-cfg/Gays/4/download (1).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Gays/4/download (3).png b/artworks/cc12m-1-cfg/Gays/4/download (3).png deleted file mode 100644 index 047514ed20..0000000000 Binary files a/artworks/cc12m-1-cfg/Gays/4/download (3).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Gays/4/download (4).png b/artworks/cc12m-1-cfg/Gays/4/download (4).png deleted file mode 100644 index 460bf0b603..0000000000 Binary files a/artworks/cc12m-1-cfg/Gays/4/download (4).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Gays/4/download (5).png b/artworks/cc12m-1-cfg/Gays/4/download (5).png deleted file mode 100644 index db186e6f87..0000000000 Binary files a/artworks/cc12m-1-cfg/Gays/4/download (5).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Gays/4/download (6).png b/artworks/cc12m-1-cfg/Gays/4/download (6).png deleted file mode 100644 index caee1e8f7c..0000000000 Binary files a/artworks/cc12m-1-cfg/Gays/4/download (6).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Gays/4/download (8).png b/artworks/cc12m-1-cfg/Gays/4/download (8).png deleted file mode 100644 index b68d0cbe14..0000000000 Binary files a/artworks/cc12m-1-cfg/Gays/4/download (8).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Gays/4/input.txt b/artworks/cc12m-1-cfg/Gays/4/input.txt deleted file mode 100644 index 621cd6037e..0000000000 --- a/artworks/cc12m-1-cfg/Gays/4/input.txt +++ /dev/null @@ -1,28 +0,0 @@ -https://colab.research.google.com/gist/joetm/42dd5bfbe7f08add5d46dc84b9dfc9ed/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - - -The text prompt - -prompt: -Two gays II|Frantisek Kupka|(1928); Style: Orphism; Genre: abstract; Media: oil, canvas; dimensions: 38 x 63 cm; trending on /r/art|getty images:-1 -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -6 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 50, can lower for faster but lower quality sampling). - -steps: -60 -The random seed. Change this to sample different images. - -seed: -14432955 -Display progress every this many timesteps. - -display_every: -10 - diff --git a/artworks/cc12m-1-cfg/Gays/5/download (5).png b/artworks/cc12m-1-cfg/Gays/5/download (5).png deleted file mode 100644 index b7c3c9c835..0000000000 Binary files a/artworks/cc12m-1-cfg/Gays/5/download (5).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Gays/5/input.txt b/artworks/cc12m-1-cfg/Gays/5/input.txt deleted file mode 100644 index f71b345375..0000000000 --- a/artworks/cc12m-1-cfg/Gays/5/input.txt +++ /dev/null @@ -1,27 +0,0 @@ -https://colab.research.google.com/gist/joetm/42dd5bfbe7f08add5d46dc84b9dfc9ed/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - - -The text prompt - -prompt: -Two gays|Frantisek Kupka|(1928); Style: Orphism; Genre: abstract; Media: oil, canvas; dimensions: 38 x 63 cm; trending on /r/art|getty images:-1 -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -1.5 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 50, can lower for faster but lower quality sampling). - -steps: -60 -The random seed. Change this to sample different images. - -seed: -14432955 -Display progress every this many timesteps. - -display_every: -10 diff --git a/artworks/cc12m-1-cfg/Last Day/1/download (1).png b/artworks/cc12m-1-cfg/Last Day/1/download (1).png deleted file mode 100644 index 084aaaccb9..0000000000 Binary files a/artworks/cc12m-1-cfg/Last Day/1/download (1).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Last Day/1/download (5).png b/artworks/cc12m-1-cfg/Last Day/1/download (5).png deleted file mode 100644 index 2b7889bc04..0000000000 Binary files a/artworks/cc12m-1-cfg/Last Day/1/download (5).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Last Day/1/input.txt b/artworks/cc12m-1-cfg/Last Day/1/input.txt deleted file mode 100644 index 161448db5f..0000000000 --- a/artworks/cc12m-1-cfg/Last Day/1/input.txt +++ /dev/null @@ -1,29 +0,0 @@ -https://colab.research.google.com/gist/joetm/42dd5bfbe7f08add5d46dc84b9dfc9ed/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - - -The text prompt - -prompt: -Smile. It's your last day on earth. figurative oil painting by David Bomberg. trending on wikiart - -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -3 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 50, can lower for faster but lower quality sampling). - -steps: -55 -The random seed. Change this to sample different images. - -seed: -5756565 -Display progress every this many timesteps. - -display_every: -10 - diff --git a/artworks/cc12m-1-cfg/Last Day/2/download (1).png b/artworks/cc12m-1-cfg/Last Day/2/download (1).png deleted file mode 100644 index 1f441a930a..0000000000 Binary files a/artworks/cc12m-1-cfg/Last Day/2/download (1).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Last Day/2/download (2).png b/artworks/cc12m-1-cfg/Last Day/2/download (2).png deleted file mode 100644 index 115e0d8766..0000000000 Binary files a/artworks/cc12m-1-cfg/Last Day/2/download (2).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Last Day/2/download (7).png b/artworks/cc12m-1-cfg/Last Day/2/download (7).png deleted file mode 100644 index 3250a90047..0000000000 Binary files a/artworks/cc12m-1-cfg/Last Day/2/download (7).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Last Day/2/download.png b/artworks/cc12m-1-cfg/Last Day/2/download.png deleted file mode 100644 index bfb017c6d4..0000000000 Binary files a/artworks/cc12m-1-cfg/Last Day/2/download.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Last Day/2/input.txt b/artworks/cc12m-1-cfg/Last Day/2/input.txt deleted file mode 100644 index fff40d6848..0000000000 --- a/artworks/cc12m-1-cfg/Last Day/2/input.txt +++ /dev/null @@ -1,30 +0,0 @@ -https://colab.research.google.com/gist/joetm/42dd5bfbe7f08add5d46dc84b9dfc9ed/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - - -The text prompt - -prompt: -Smile. It's your last day on earth. figurative oil painting by David Bomberg. trending on /r/art - -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -2 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 50, can lower for faster but lower quality sampling). - -steps: -55 -The random seed. Change this to sample different images. - -seed: -33 -Display progress every this many timesteps. - -display_every: -10 - - diff --git a/artworks/cc12m-1-cfg/Millenial/1/download (1).png b/artworks/cc12m-1-cfg/Millenial/1/download (1).png deleted file mode 100644 index 118c013495..0000000000 Binary files a/artworks/cc12m-1-cfg/Millenial/1/download (1).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Millenial/1/download (3).png b/artworks/cc12m-1-cfg/Millenial/1/download (3).png deleted file mode 100644 index bc5aec84b5..0000000000 Binary files a/artworks/cc12m-1-cfg/Millenial/1/download (3).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Millenial/1/download (7).png b/artworks/cc12m-1-cfg/Millenial/1/download (7).png deleted file mode 100644 index 0ec6d9dbcb..0000000000 Binary files a/artworks/cc12m-1-cfg/Millenial/1/download (7).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Millenial/1/download.png b/artworks/cc12m-1-cfg/Millenial/1/download.png deleted file mode 100644 index c81001836f..0000000000 Binary files a/artworks/cc12m-1-cfg/Millenial/1/download.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Millenial/1/input.txt b/artworks/cc12m-1-cfg/Millenial/1/input.txt deleted file mode 100644 index 787337b7b9..0000000000 --- a/artworks/cc12m-1-cfg/Millenial/1/input.txt +++ /dev/null @@ -1,34 +0,0 @@ -https://colab.research.google.com/gist/joetm/0e59d686328e7e4f5da125e7ff5aa4ff/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - - -The text prompt - -prompt: -ego-maniac millenial youtuber films Tik Tok dance, painting in the style of Modernismo by Jose Guadalupe Posada, trending on wikiart - -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -5 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 500, can lower for faster but lower quality sampling). - -steps: -550 -Set to 0 for deterministic (DDIM) sampling, 1 (the default) for stochastic (DDPM) sampling, and in between to interpolate between the two. 0 is preferred for low numbers of timesteps. - -eta: -0.8 -The random seed. Change this to sample different images. - -seed: -0 -Display progress every this many timesteps. - -display_every: -50 - - diff --git a/artworks/cc12m-1-cfg/Monster DNA/1/download (5).png b/artworks/cc12m-1-cfg/Monster DNA/1/download (5).png deleted file mode 100644 index c56e24a21c..0000000000 Binary files a/artworks/cc12m-1-cfg/Monster DNA/1/download (5).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Monster DNA/1/download.png b/artworks/cc12m-1-cfg/Monster DNA/1/download.png deleted file mode 100644 index 69457fc187..0000000000 Binary files a/artworks/cc12m-1-cfg/Monster DNA/1/download.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Monster DNA/1/input.txt b/artworks/cc12m-1-cfg/Monster DNA/1/input.txt deleted file mode 100644 index 0d315b7369..0000000000 --- a/artworks/cc12m-1-cfg/Monster DNA/1/input.txt +++ /dev/null @@ -1,29 +0,0 @@ -https://colab.research.google.com/gist/joetm/42dd5bfbe7f08add5d46dc84b9dfc9ed/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - - -The text prompt - -prompt: -scientists discovers monster dna in laboratory full of vitrines with human clones. detailed realistic painting, trending on artstation - -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -5 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 50, can lower for faster but lower quality sampling). - -steps: -50 -The random seed. Change this to sample different images. - -seed: -0 -Display progress every this many timesteps. - -display_every: -10 - diff --git a/artworks/cc12m-1-cfg/Muse/1/download (1).png b/artworks/cc12m-1-cfg/Muse/1/download (1).png deleted file mode 100644 index bca4b4b7dd..0000000000 Binary files a/artworks/cc12m-1-cfg/Muse/1/download (1).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Muse/1/download (3).png b/artworks/cc12m-1-cfg/Muse/1/download (3).png deleted file mode 100644 index 7acb86e216..0000000000 Binary files a/artworks/cc12m-1-cfg/Muse/1/download (3).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Muse/1/download.png b/artworks/cc12m-1-cfg/Muse/1/download.png deleted file mode 100644 index 326ed993c0..0000000000 Binary files a/artworks/cc12m-1-cfg/Muse/1/download.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Muse/1/input.txt b/artworks/cc12m-1-cfg/Muse/1/input.txt deleted file mode 100644 index 3bb2af93fb..0000000000 --- a/artworks/cc12m-1-cfg/Muse/1/input.txt +++ /dev/null @@ -1,33 +0,0 @@ -https://colab.research.google.com/gist/joetm/0e59d686328e7e4f5da125e7ff5aa4ff/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - - -The text prompt - -prompt: -The Muse:2|by Jules Joseph Lefebvre:2|oil on canvas, trending on artstation:1|nude woman:1.5 - -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -5 -Sample this many images. - -n_images: -4 -Specify the number of diffusion timesteps (default is 500, can lower for faster but lower quality sampling). - -steps: -580 -Set to 0 for deterministic (DDIM) sampling, 1 (the default) for stochastic (DDPM) sampling, and in between to interpolate between the two. 0 is preferred for low numbers of timesteps. - -eta: -1 -The random seed. Change this to sample different images. - -seed: -0 -Display progress every this many timesteps. - -display_every: -50 - diff --git a/artworks/cc12m-1-cfg/Portrait/War/1/download (7).png b/artworks/cc12m-1-cfg/Portrait/War/1/download (7).png deleted file mode 100644 index 512a1fd0b0..0000000000 Binary files a/artworks/cc12m-1-cfg/Portrait/War/1/download (7).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Portrait/War/1/download (8).png b/artworks/cc12m-1-cfg/Portrait/War/1/download (8).png deleted file mode 100644 index 22ee0205f9..0000000000 Binary files a/artworks/cc12m-1-cfg/Portrait/War/1/download (8).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Portrait/War/1/download.png b/artworks/cc12m-1-cfg/Portrait/War/1/download.png deleted file mode 100644 index c801b0352c..0000000000 Binary files a/artworks/cc12m-1-cfg/Portrait/War/1/download.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Portrait/War/1/input.txt b/artworks/cc12m-1-cfg/Portrait/War/1/input.txt deleted file mode 100644 index 780dc3b3be..0000000000 --- a/artworks/cc12m-1-cfg/Portrait/War/1/input.txt +++ /dev/null @@ -1,30 +0,0 @@ -https://colab.research.google.com/gist/joetm/42dd5bfbe7f08add5d46dc84b9dfc9ed/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - - -The text prompt - -prompt: -Cancel Putin. No more War! portrait painting, oil on canvas, Fayum portrait. trending on wikiart - -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -9 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 50, can lower for faster but lower quality sampling). - -steps: -60 -The random seed. Change this to sample different images. - -seed: -16346 -Display progress every this many timesteps. - -display_every: -10 - - diff --git a/artworks/cc12m-1-cfg/Portrait/War/2/download (2).png b/artworks/cc12m-1-cfg/Portrait/War/2/download (2).png deleted file mode 100644 index 05fbffc036..0000000000 Binary files a/artworks/cc12m-1-cfg/Portrait/War/2/download (2).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Portrait/War/2/download.png b/artworks/cc12m-1-cfg/Portrait/War/2/download.png deleted file mode 100644 index dba18b32ee..0000000000 Binary files a/artworks/cc12m-1-cfg/Portrait/War/2/download.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Portrait/War/2/input.txt b/artworks/cc12m-1-cfg/Portrait/War/2/input.txt deleted file mode 100644 index 307d2e344c..0000000000 --- a/artworks/cc12m-1-cfg/Portrait/War/2/input.txt +++ /dev/null @@ -1,29 +0,0 @@ -https://colab.research.google.com/gist/joetm/42dd5bfbe7f08add5d46dc84b9dfc9ed/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - - -The text prompt - -prompt: -Cancel Putin. No more War! portrait, watercolor portrait. trending on wikiart - -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -9 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 50, can lower for faster but lower quality sampling). - -steps: -60 -The random seed. Change this to sample different images. - -seed: -35633224 -Display progress every this many timesteps. - -display_every: -10 - diff --git a/artworks/cc12m-1-cfg/Scream/1/download.png b/artworks/cc12m-1-cfg/Scream/1/download.png deleted file mode 100644 index 9a5d4b24df..0000000000 Binary files a/artworks/cc12m-1-cfg/Scream/1/download.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Scream/1/input.txt b/artworks/cc12m-1-cfg/Scream/1/input.txt deleted file mode 100644 index 0b018bef3d..0000000000 --- a/artworks/cc12m-1-cfg/Scream/1/input.txt +++ /dev/null @@ -1,26 +0,0 @@ -https://colab.research.google.com/gist/joetm/42dd5bfbe7f08add5d46dc84b9dfc9ed/text-to-image-cc12m-diffusion.ipynb#scrollTo=kitsmKsekOJ_ - - -prompt: -Eternal Scream. by Annie Leibovitz. portrait photograph, trending on artstation - -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -5 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 50, can lower for faster but lower quality sampling). - -steps: -60 -The random seed. Change this to sample different images. - -seed: -56658433 -Display progress every this many timesteps. - -display_every: -10 diff --git a/artworks/cc12m-1-cfg/Sculpture/1/download (2).png b/artworks/cc12m-1-cfg/Sculpture/1/download (2).png deleted file mode 100644 index 9388e77c18..0000000000 Binary files a/artworks/cc12m-1-cfg/Sculpture/1/download (2).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Sculpture/1/input.txt b/artworks/cc12m-1-cfg/Sculpture/1/input.txt deleted file mode 100644 index 79e6e8029d..0000000000 --- a/artworks/cc12m-1-cfg/Sculpture/1/input.txt +++ /dev/null @@ -1,32 +0,0 @@ -https://colab.research.google.com/gist/joetm/0e59d686328e7e4f5da125e7ff5aa4ff/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - - -The text prompt - -prompt: -plastic copulence. sculpture, trending on artstation -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -5 -Sample this many images. - -n_images: -4 -Specify the number of diffusion timesteps (default is 500, can lower for faster but lower quality sampling). - -steps: -500 -Set to 0 for deterministic (DDIM) sampling, 1 (the default) for stochastic (DDPM) sampling, and in between to interpolate between the two. 0 is preferred for low numbers of timesteps. - -eta: -1 -The random seed. Change this to sample different images. - -seed: -0 -Display progress every this many timesteps. - -display_every: -50 - diff --git a/artworks/cc12m-1-cfg/Wife/1/RealESRGAN/download (1)_out.png b/artworks/cc12m-1-cfg/Wife/1/RealESRGAN/download (1)_out.png deleted file mode 100644 index f2c13606df..0000000000 Binary files a/artworks/cc12m-1-cfg/Wife/1/RealESRGAN/download (1)_out.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Wife/1/RealESRGAN/download (2)_out.png b/artworks/cc12m-1-cfg/Wife/1/RealESRGAN/download (2)_out.png deleted file mode 100644 index 3984d4d24d..0000000000 Binary files a/artworks/cc12m-1-cfg/Wife/1/RealESRGAN/download (2)_out.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Wife/1/RealESRGAN/download (3)_out.png b/artworks/cc12m-1-cfg/Wife/1/RealESRGAN/download (3)_out.png deleted file mode 100644 index 07b9dc30ea..0000000000 Binary files a/artworks/cc12m-1-cfg/Wife/1/RealESRGAN/download (3)_out.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Wife/1/RealESRGAN/download (4)_out.png b/artworks/cc12m-1-cfg/Wife/1/RealESRGAN/download (4)_out.png deleted file mode 100644 index 7f2db4f0ce..0000000000 Binary files a/artworks/cc12m-1-cfg/Wife/1/RealESRGAN/download (4)_out.png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Wife/1/input.txt b/artworks/cc12m-1-cfg/Wife/1/input.txt deleted file mode 100644 index bf084a32a5..0000000000 --- a/artworks/cc12m-1-cfg/Wife/1/input.txt +++ /dev/null @@ -1,31 +0,0 @@ -https://colab.research.google.com/gist/joetm/0e59d686328e7e4f5da125e7ff5aa4ff/text-to-image-cc12m-diffusion.ipynb#scrollTo=kitsmKsekOJ_ - - -The text prompt - -prompt: -Wife. Woman. painting by Jacob Cornelisz van Oostsanen. trending on wikiart -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -5 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 500, can lower for faster but lower quality sampling). - -steps: -700 -Set to 0 for deterministic (DDIM) sampling, 1 (the default) for stochastic (DDPM) sampling, and in between to interpolate between the two. 0 is preferred for low numbers of timesteps. - -eta: -0.8 -The random seed. Change this to sample different images. - -seed: -32633 -Display progress every this many timesteps. - -display_every: -50 diff --git a/artworks/cc12m-1-cfg/Wife/8/download (4).png b/artworks/cc12m-1-cfg/Wife/8/download (4).png deleted file mode 100644 index 18a8700e86..0000000000 Binary files a/artworks/cc12m-1-cfg/Wife/8/download (4).png and /dev/null differ diff --git a/artworks/cc12m-1-cfg/Wife/8/input.txt b/artworks/cc12m-1-cfg/Wife/8/input.txt deleted file mode 100644 index 68e294ab79..0000000000 --- a/artworks/cc12m-1-cfg/Wife/8/input.txt +++ /dev/null @@ -1,28 +0,0 @@ -https://colab.research.google.com/gist/joetm/42dd5bfbe7f08add5d46dc84b9dfc9ed/text-to-image-cc12m-diffusion.ipynb#scrollTo=MnjPM_PUkYui - - -The text prompt - -prompt: -Wife. Woman. portrait, painting by Jacob Cornelisz van Oostsanen. trending on wikiart - -The strength of the text conditioning (0 means don't condition on text, 1 means sample images that match the text about as well as the images match the text captions in the training set, 3+ is recommended). - -weight: -9 -Sample this many images. - -n_images: -9 -Specify the number of diffusion timesteps (default is 50, can lower for faster but lower quality sampling). - -steps: -60 -The random seed. Change this to sample different images. - -seed: -32555432 -Display progress every this many timesteps. - -display_every: -10 diff --git a/artworks/cc12m-1/Lyrics/Atmosphere/God's Bathroom/1/download (22).png b/artworks/cc12m-1/Lyrics/Atmosphere/God's Bathroom/1/download (22).png deleted file mode 100644 index c3c209fe42..0000000000 Binary files a/artworks/cc12m-1/Lyrics/Atmosphere/God's Bathroom/1/download (22).png and /dev/null differ diff --git a/artworks/cc12m-1/Lyrics/Atmosphere/God's Bathroom/1/download (32).png b/artworks/cc12m-1/Lyrics/Atmosphere/God's Bathroom/1/download (32).png deleted file mode 100644 index c3964b67cf..0000000000 Binary files a/artworks/cc12m-1/Lyrics/Atmosphere/God's Bathroom/1/download (32).png and /dev/null differ diff --git a/artworks/cc12m-1/Lyrics/Atmosphere/God's Bathroom/1/input.txt b/artworks/cc12m-1/Lyrics/Atmosphere/God's Bathroom/1/input.txt deleted file mode 100644 index a4db82f320..0000000000 --- a/artworks/cc12m-1/Lyrics/Atmosphere/God's Bathroom/1/input.txt +++ /dev/null @@ -1,86 +0,0 @@ -https://colab.research.google.com/gist/joetm/d995aa31bbebf7a70237a979e2be4f0c/v-diffusion-pytorch.ipynb#scrollTo=h-hZ1MbgvR0Y - - -prompts: the text prompts to use. Relative weights for text prompts can be specified by putting the weight after a colon. The vertical bar character can be used to denote multiple prompts. - -prompts: -"From a head full of pressure wrest the senses that I clutch Made a date with divinity, I got touched by a hazy shade of God". album cover by Alex Grey -batch_size: sample this many images at a time (default 1) - -batch_size: -1 -checkpoint: manually specify the model checkpoint file - -checkpoint: -Insert text here -clip_guidance_scale: how strongly the result should match the text prompt (default 500). If set to 0, the cc12m_1 model will still be CLIP conditioned and sampling will go faster and use less memory. - -clip_guidance_scale: -500 -device: the PyTorch device name to use (default autodetects) - -device: -cuda:0 -eta: set to 0 for deterministic (DDIM) sampling, 1 (the default) for stochastic (DDPM) sampling, and in between to interpolate between the two. DDIM is preferred for low numbers of timesteps. - -eta: -1.0 -images: the image prompts to use (local files or HTTP(S) URLs). Relative weights for image prompts can be specified by putting the weight after a colon, for example: "image_1.png:0.5". - -images: -Insert text here -model: specify the model to use (default cc12m_1) - -model: - -cc12m_1 -n: sample until this many images are sampled (default 1) - -n: -9 -seed: specify the random seed (default 0) - -seed: -0 -steps: specify the number of diffusion timesteps (default is 1000, can lower for faster but lower quality sampling) - -steps: -100 -image_checkin: specify the number of steps between each image update - -image_checkin: -10 -video_checkin: specify the number of steps between each image update for video creation - -video_checkin: -1 -cutn: specify the number of cuts to observe when guiding - -cutn: -16 -cut_pow: specify the cut power - -cut_pow: -1.0 -width: specify the width - -width: -256 -height: specify the height - -height: -256 -init: specify the init image (optional) - -init: -Insert text here -init_mode: specify the init image mode - -init_mode: - -crop to fill -starting_timestep: specify the starting timestep if an init image is used (range 0-1, default 0.9) - -starting_timestep: -0.9 - diff --git a/artworks/cc12m/Bella Donna/2/download (19).png b/artworks/cc12m/Bella Donna/2/download (19).png deleted file mode 100644 index c4676aeb8b..0000000000 Binary files a/artworks/cc12m/Bella Donna/2/download (19).png and /dev/null differ diff --git a/artworks/cc12m/Bella Donna/2/input.txt b/artworks/cc12m/Bella Donna/2/input.txt deleted file mode 100644 index 5c8bcf71c4..0000000000 --- a/artworks/cc12m/Bella Donna/2/input.txt +++ /dev/null @@ -1,66 +0,0 @@ -https://colab.research.google.com/gist/joetm/b01ba68c0b6b33c2fc3aae7f6967d8f9/clip-conditioned-clip-guided-diffusion-cc12m_1-256x256.ipynb#scrollTo=h-hZ1MbgvR0Y - -prompts: the text prompts to use. Relative weights for text prompts can be specified by putting the weight after a colon. The vertical bar character can be used to denote multiple prompts. - -prompts: -bella donna, painting by Alex Grey, trending on /r/art -batch_size: sample this many images at a time (default 1) - -batch_size: -1 -checkpoint: manually specify the model checkpoint file - -checkpoint: -Insert text here -clip_guidance_scale: how strongly the result should match the text prompt (default 500). If set to 0, the cc12m_1 model will still be CLIP conditioned and sampling will go faster and use less memory. - -clip_guidance_scale: -150 -device: the PyTorch device name to use (default autodetects) - -device: -cuda:0 -eta: set to 0 for deterministic (DDIM) sampling, 1 (the default) for stochastic (DDPM) sampling, and in between to interpolate between the two. DDIM is preferred for low numbers of timesteps (default: 1.0). - -eta: -0.5 -images: the image prompts to use (local files or HTTP(S) URLs). Relative weights for image prompts can be specified by putting the weight after a colon, for example: "image_1.png:0.5". - -images: -Insert text here -model: specify the model to use (default cc12m_1) - -model: -cc12m_1 -n: sample until this many images are sampled (default 1) - -n: -3 -seed: specify the random seed (default 0) - -seed: -0 -steps: specify the number of diffusion timesteps (default is 1000, can lower for faster but lower quality sampling) - -steps: -1200 -check_in: specify the number of steps between each image update - -check_in: -50 -cutn: specify the number of cuts to observe when guiding - -cutn: -16 -cut_pow: specify the cut power - -cut_pow: -1.0 -width: specify the width - -width: -256 -height: specify the height - -height: -256 diff --git a/artworks/cc12m/Cosmic Pleasure Hunt/1-1.jpg b/artworks/cc12m/Cosmic Pleasure Hunt/1-1.jpg deleted file mode 100644 index 26aa961484..0000000000 Binary files a/artworks/cc12m/Cosmic Pleasure Hunt/1-1.jpg and /dev/null differ diff --git a/artworks/cc12m/Cosmic Pleasure Hunt/1-2.jpg b/artworks/cc12m/Cosmic Pleasure Hunt/1-2.jpg deleted file mode 100644 index ad32cc57a4..0000000000 Binary files a/artworks/cc12m/Cosmic Pleasure Hunt/1-2.jpg and /dev/null differ diff --git a/artworks/cc12m/Cosmic Pleasure Hunt/1-3.jpg b/artworks/cc12m/Cosmic Pleasure Hunt/1-3.jpg deleted file mode 100644 index 14ebc5968b..0000000000 Binary files a/artworks/cc12m/Cosmic Pleasure Hunt/1-3.jpg and /dev/null differ diff --git a/artworks/cc12m/Cosmic Pleasure Hunt/2-1.jpg b/artworks/cc12m/Cosmic Pleasure Hunt/2-1.jpg deleted file mode 100644 index b6563b18ae..0000000000 Binary files a/artworks/cc12m/Cosmic Pleasure Hunt/2-1.jpg and /dev/null differ diff --git a/artworks/cc12m/Cosmic Pleasure Hunt/2-2.jpg b/artworks/cc12m/Cosmic Pleasure Hunt/2-2.jpg deleted file mode 100644 index 714882e733..0000000000 Binary files a/artworks/cc12m/Cosmic Pleasure Hunt/2-2.jpg and /dev/null differ diff --git a/artworks/cc12m/Cosmic Pleasure Hunt/2-3.jpg b/artworks/cc12m/Cosmic Pleasure Hunt/2-3.jpg deleted file mode 100644 index 1b736fe2ff..0000000000 Binary files a/artworks/cc12m/Cosmic Pleasure Hunt/2-3.jpg and /dev/null differ diff --git a/artworks/cc12m/Cosmic Pleasure Hunt/2-4.jpg b/artworks/cc12m/Cosmic Pleasure Hunt/2-4.jpg deleted file mode 100644 index 832208c14b..0000000000 Binary files a/artworks/cc12m/Cosmic Pleasure Hunt/2-4.jpg and /dev/null differ diff --git a/artworks/cc12m/framed/download_out.jpg b/artworks/cc12m/framed/download_out.jpg deleted file mode 100644 index 3c94a7f1c7..0000000000 Binary files a/artworks/cc12m/framed/download_out.jpg and /dev/null differ diff --git a/artworks/cc12m/portrait/1-8.png b/artworks/cc12m/portrait/1-8.png deleted file mode 100644 index 22ee0205f9..0000000000 Binary files a/artworks/cc12m/portrait/1-8.png and /dev/null differ diff --git a/artworks/glide/1.png b/artworks/glide/1.png deleted file mode 100644 index 29bdaceb8c..0000000000 Binary files a/artworks/glide/1.png and /dev/null differ diff --git a/artworks/latent-diffusion/FT_RgFkXsAABnvL.png b/artworks/latent-diffusion/FT_RgFkXsAABnvL.png deleted file mode 100644 index 468459bb1e..0000000000 Binary files a/artworks/latent-diffusion/FT_RgFkXsAABnvL.png and /dev/null differ diff --git a/artworks/latent-diffusion/FTq93p6XEAAg5yk.png b/artworks/latent-diffusion/FTq93p6XEAAg5yk.png deleted file mode 100644 index 38adc3cc34..0000000000 Binary files a/artworks/latent-diffusion/FTq93p6XEAAg5yk.png and /dev/null differ diff --git a/artworks/latent-diffusion/geometric obsession/0001.png b/artworks/latent-diffusion/geometric obsession/0001.png deleted file mode 100644 index 59bf46f06b..0000000000 Binary files a/artworks/latent-diffusion/geometric obsession/0001.png and /dev/null differ diff --git a/artworks/latent-diffusion/geometric obsession/0003.png b/artworks/latent-diffusion/geometric obsession/0003.png deleted file mode 100644 index 4a74ef6fb8..0000000000 Binary files a/artworks/latent-diffusion/geometric obsession/0003.png and /dev/null differ diff --git a/artworks/latent-diffusion/geometric obsession/0005.png b/artworks/latent-diffusion/geometric obsession/0005.png deleted file mode 100644 index 9dba22519a..0000000000 Binary files a/artworks/latent-diffusion/geometric obsession/0005.png and /dev/null differ diff --git a/artworks/latent-diffusion/geometric obsession/0006.png b/artworks/latent-diffusion/geometric obsession/0006.png deleted file mode 100644 index bafe314d6f..0000000000 Binary files a/artworks/latent-diffusion/geometric obsession/0006.png and /dev/null differ diff --git a/artworks/latent-diffusion/geometric obsession/0008.png b/artworks/latent-diffusion/geometric obsession/0008.png deleted file mode 100644 index a0924043e1..0000000000 Binary files a/artworks/latent-diffusion/geometric obsession/0008.png and /dev/null differ diff --git a/artworks/latent-diffusion/geometric obsession/0009.png b/artworks/latent-diffusion/geometric obsession/0009.png deleted file mode 100644 index 7f57a3f20c..0000000000 Binary files a/artworks/latent-diffusion/geometric obsession/0009.png and /dev/null differ diff --git a/artworks/latent-diffusion/geometrically obsessed/0000.png b/artworks/latent-diffusion/geometrically obsessed/0000.png deleted file mode 100644 index 57842d01b1..0000000000 Binary files a/artworks/latent-diffusion/geometrically obsessed/0000.png and /dev/null differ diff --git a/artworks/latent-diffusion/geometrically obsessed/0002.png b/artworks/latent-diffusion/geometrically obsessed/0002.png deleted file mode 100644 index 78f01309cd..0000000000 Binary files a/artworks/latent-diffusion/geometrically obsessed/0002.png and /dev/null differ diff --git a/artworks/latent-diffusion/geometrically obsessed/0005.png b/artworks/latent-diffusion/geometrically obsessed/0005.png deleted file mode 100644 index 66c492566d..0000000000 Binary files a/artworks/latent-diffusion/geometrically obsessed/0005.png and /dev/null differ diff --git a/artworks/latent-diffusion/geometrically obsessed/0007.png b/artworks/latent-diffusion/geometrically obsessed/0007.png deleted file mode 100644 index 9c5e4f6091..0000000000 Binary files a/artworks/latent-diffusion/geometrically obsessed/0007.png and /dev/null differ diff --git a/artworks/latent-diffusion/geometrically obsessed/0008.png b/artworks/latent-diffusion/geometrically obsessed/0008.png deleted file mode 100644 index e402ac8784..0000000000 Binary files a/artworks/latent-diffusion/geometrically obsessed/0008.png and /dev/null differ diff --git a/artworks/latent-diffusion/geometrically obsessed/0009.png b/artworks/latent-diffusion/geometrically obsessed/0009.png deleted file mode 100644 index 35035f3ba4..0000000000 Binary files a/artworks/latent-diffusion/geometrically obsessed/0009.png and /dev/null differ diff --git a/artworks/latent-diffusion/nihilistic consciousness/0004.png b/artworks/latent-diffusion/nihilistic consciousness/0004.png deleted file mode 100644 index 85891ffb78..0000000000 Binary files a/artworks/latent-diffusion/nihilistic consciousness/0004.png and /dev/null differ diff --git a/artworks/latent-diffusion/scrambled/0001.png b/artworks/latent-diffusion/scrambled/0001.png deleted file mode 100644 index ee468475b7..0000000000 Binary files a/artworks/latent-diffusion/scrambled/0001.png and /dev/null differ diff --git a/artworks/latent-diffusion/spurious mind/0000.png b/artworks/latent-diffusion/spurious mind/0000.png deleted file mode 100644 index 71990f21cc..0000000000 Binary files a/artworks/latent-diffusion/spurious mind/0000.png and /dev/null differ diff --git a/artworks/latent-diffusion/spurious mind/0002.png b/artworks/latent-diffusion/spurious mind/0002.png deleted file mode 100644 index 64f1959d5d..0000000000 Binary files a/artworks/latent-diffusion/spurious mind/0002.png and /dev/null differ diff --git a/artworks/midjourney/00281a30-2456-436e-a3be-bb712658faa8_Jonas_httpss.mj.runfAOGx5__I_dont_believe_nicholas_cage_post-processing_highly_detailed_matte_painting_4k_.png b/artworks/midjourney/00281a30-2456-436e-a3be-bb712658faa8_Jonas_httpss.mj.runfAOGx5__I_dont_believe_nicholas_cage_post-processing_highly_detailed_matte_painting_4k_.png deleted file mode 100644 index 481e289329..0000000000 Binary files a/artworks/midjourney/00281a30-2456-436e-a3be-bb712658faa8_Jonas_httpss.mj.runfAOGx5__I_dont_believe_nicholas_cage_post-processing_highly_detailed_matte_painting_4k_.png and /dev/null differ diff --git a/artworks/midjourney/010d8524-c572-4aed-ba63-bd6ed17ad989_art_on_the_wall__--w_448_--h_320.png b/artworks/midjourney/010d8524-c572-4aed-ba63-bd6ed17ad989_art_on_the_wall__--w_448_--h_320.png deleted file mode 100644 index 2e2920e6fa..0000000000 Binary files a/artworks/midjourney/010d8524-c572-4aed-ba63-bd6ed17ad989_art_on_the_wall__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/01d2d095-42c5-4016-aebc-6e7764729265_death_and_destruction_becometh__--w_768_--h_512_--hd.png b/artworks/midjourney/01d2d095-42c5-4016-aebc-6e7764729265_death_and_destruction_becometh__--w_768_--h_512_--hd.png deleted file mode 100644 index 8117b0b872..0000000000 Binary files a/artworks/midjourney/01d2d095-42c5-4016-aebc-6e7764729265_death_and_destruction_becometh__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/0228f800-c639-4d53-81e6-4cc64b5145eb_collective_intelligence_new_scientist_cover__--w_320_--h_448.png b/artworks/midjourney/0228f800-c639-4d53-81e6-4cc64b5145eb_collective_intelligence_new_scientist_cover__--w_320_--h_448.png deleted file mode 100644 index 5ecba8b472..0000000000 Binary files a/artworks/midjourney/0228f800-c639-4d53-81e6-4cc64b5145eb_collective_intelligence_new_scientist_cover__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/02504697-3392-4050-9fb1-cbcf0a00e37d_the_prompt_engineers_laboratory.png b/artworks/midjourney/02504697-3392-4050-9fb1-cbcf0a00e37d_the_prompt_engineers_laboratory.png deleted file mode 100644 index 7be790669e..0000000000 Binary files a/artworks/midjourney/02504697-3392-4050-9fb1-cbcf0a00e37d_the_prompt_engineers_laboratory.png and /dev/null differ diff --git a/artworks/midjourney/0281a9cd-082a-465a-b100-2d39d0e10cd8_Study_of_Sappho._by_Twin_Towers.png b/artworks/midjourney/0281a9cd-082a-465a-b100-2d39d0e10cd8_Study_of_Sappho._by_Twin_Towers.png deleted file mode 100644 index 9e50a50235..0000000000 Binary files a/artworks/midjourney/0281a9cd-082a-465a-b100-2d39d0e10cd8_Study_of_Sappho._by_Twin_Towers.png and /dev/null differ diff --git a/artworks/midjourney/02b1dc49-08c5-458f-bd91-e5d5f043d9e1_this_is_serious.png b/artworks/midjourney/02b1dc49-08c5-458f-bd91-e5d5f043d9e1_this_is_serious.png deleted file mode 100644 index efe8616281..0000000000 Binary files a/artworks/midjourney/02b1dc49-08c5-458f-bd91-e5d5f043d9e1_this_is_serious.png and /dev/null differ diff --git a/artworks/midjourney/02b46517-627b-4619-8699-3bfcd88b72af_the_prompt_engineers_lab.png b/artworks/midjourney/02b46517-627b-4619-8699-3bfcd88b72af_the_prompt_engineers_lab.png deleted file mode 100644 index b628f2c26c..0000000000 Binary files a/artworks/midjourney/02b46517-627b-4619-8699-3bfcd88b72af_the_prompt_engineers_lab.png and /dev/null differ diff --git a/artworks/midjourney/02f27e21-ac50-432d-a8a8-73da3537926e_Jonas_httpss.mj.runqMpaYq__Donnie_Darko_bunny__--w_320_--h_448.png b/artworks/midjourney/02f27e21-ac50-432d-a8a8-73da3537926e_Jonas_httpss.mj.runqMpaYq__Donnie_Darko_bunny__--w_320_--h_448.png deleted file mode 100644 index d7e40c026c..0000000000 Binary files a/artworks/midjourney/02f27e21-ac50-432d-a8a8-73da3537926e_Jonas_httpss.mj.runqMpaYq__Donnie_Darko_bunny__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/0330481f-fe88-4aa1-8387-616a2cab5b39_Jonas_thin_veil_marble_statue_masterpiece.png b/artworks/midjourney/0330481f-fe88-4aa1-8387-616a2cab5b39_Jonas_thin_veil_marble_statue_masterpiece.png deleted file mode 100644 index dcf64905b0..0000000000 Binary files a/artworks/midjourney/0330481f-fe88-4aa1-8387-616a2cab5b39_Jonas_thin_veil_marble_statue_masterpiece.png and /dev/null differ diff --git a/artworks/midjourney/033b0ae0-d71e-4a00-8b7a-b205ebd5476e_V_bestiary__--w_512_--h_768_--hd.png b/artworks/midjourney/033b0ae0-d71e-4a00-8b7a-b205ebd5476e_V_bestiary__--w_512_--h_768_--hd.png deleted file mode 100644 index dbe8d46182..0000000000 Binary files a/artworks/midjourney/033b0ae0-d71e-4a00-8b7a-b205ebd5476e_V_bestiary__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/0396b311-ccf7-4604-8aae-52c246944de3_Jonas_apocalypse_now_colonel_kurtz__--w_320_--h_448.png b/artworks/midjourney/0396b311-ccf7-4604-8aae-52c246944de3_Jonas_apocalypse_now_colonel_kurtz__--w_320_--h_448.png deleted file mode 100644 index f2d4e1c8f7..0000000000 Binary files a/artworks/midjourney/0396b311-ccf7-4604-8aae-52c246944de3_Jonas_apocalypse_now_colonel_kurtz__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/03ebe46a-21ee-4e6d-be05-e748aec9596a_The_Grand_Wizard_The_Prestige__--w_320_--h_448.png b/artworks/midjourney/03ebe46a-21ee-4e6d-be05-e748aec9596a_The_Grand_Wizard_The_Prestige__--w_320_--h_448.png deleted file mode 100644 index 8568a7bf0b..0000000000 Binary files a/artworks/midjourney/03ebe46a-21ee-4e6d-be05-e748aec9596a_The_Grand_Wizard_The_Prestige__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/04446497-9627-4285-b51b-c786b73f2e48_Jonas_there_shined_a_shiny_demon.png b/artworks/midjourney/04446497-9627-4285-b51b-c786b73f2e48_Jonas_there_shined_a_shiny_demon.png deleted file mode 100644 index c062e97ded..0000000000 Binary files a/artworks/midjourney/04446497-9627-4285-b51b-c786b73f2e48_Jonas_there_shined_a_shiny_demon.png and /dev/null differ diff --git a/artworks/midjourney/04d838d8-5815-4409-903b-f08d81f4712c_transhumanistic_tendency_by_WLOP_matte_painting__--w_320_--h_448.png b/artworks/midjourney/04d838d8-5815-4409-903b-f08d81f4712c_transhumanistic_tendency_by_WLOP_matte_painting__--w_320_--h_448.png deleted file mode 100644 index b32ef54c5a..0000000000 Binary files a/artworks/midjourney/04d838d8-5815-4409-903b-f08d81f4712c_transhumanistic_tendency_by_WLOP_matte_painting__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/04f51b92-7f95-437b-8832-8f0c07228ed9_Jonas_the_evolution_of_human_life.png b/artworks/midjourney/04f51b92-7f95-437b-8832-8f0c07228ed9_Jonas_the_evolution_of_human_life.png deleted file mode 100644 index a4793956c6..0000000000 Binary files a/artworks/midjourney/04f51b92-7f95-437b-8832-8f0c07228ed9_Jonas_the_evolution_of_human_life.png and /dev/null differ diff --git a/artworks/midjourney/051bf506-0281-4452-b122-0a07fb210fb3_alien_trophy_hunter.png b/artworks/midjourney/051bf506-0281-4452-b122-0a07fb210fb3_alien_trophy_hunter.png deleted file mode 100644 index c96d676321..0000000000 Binary files a/artworks/midjourney/051bf506-0281-4452-b122-0a07fb210fb3_alien_trophy_hunter.png and /dev/null differ diff --git a/artworks/midjourney/05941e9c-e89e-41cf-ae86-ae570389c2e8_red_yoda.png b/artworks/midjourney/05941e9c-e89e-41cf-ae86-ae570389c2e8_red_yoda.png deleted file mode 100644 index b58046be4b..0000000000 Binary files a/artworks/midjourney/05941e9c-e89e-41cf-ae86-ae570389c2e8_red_yoda.png and /dev/null differ diff --git a/artworks/midjourney/0598a11a-a38a-4a9b-8aa8-2f3b2a4edf23_Jonas_the_second_kingdom.png b/artworks/midjourney/0598a11a-a38a-4a9b-8aa8-2f3b2a4edf23_Jonas_the_second_kingdom.png deleted file mode 100644 index 77e378ed03..0000000000 Binary files a/artworks/midjourney/0598a11a-a38a-4a9b-8aa8-2f3b2a4edf23_Jonas_the_second_kingdom.png and /dev/null differ diff --git a/artworks/midjourney/05ed0fb9-68e1-4b77-aa77-fef536e427ef_death_to_the_beholder_force_of_none.png b/artworks/midjourney/05ed0fb9-68e1-4b77-aa77-fef536e427ef_death_to_the_beholder_force_of_none.png deleted file mode 100644 index 009369c13d..0000000000 Binary files a/artworks/midjourney/05ed0fb9-68e1-4b77-aa77-fef536e427ef_death_to_the_beholder_force_of_none.png and /dev/null differ diff --git a/artworks/midjourney/0623df24-1a18-485a-be07-e6f8c3db4df1_photographic_evidence_that_god_exists.png b/artworks/midjourney/0623df24-1a18-485a-be07-e6f8c3db4df1_photographic_evidence_that_god_exists.png deleted file mode 100644 index 4f7aae59c3..0000000000 Binary files a/artworks/midjourney/0623df24-1a18-485a-be07-e6f8c3db4df1_photographic_evidence_that_god_exists.png and /dev/null differ diff --git a/artworks/midjourney/06bed81a-3ce3-4ea9-a226-a2ab20c9df20_there_is_no_hope_etching_detailed.png b/artworks/midjourney/06bed81a-3ce3-4ea9-a226-a2ab20c9df20_there_is_no_hope_etching_detailed.png deleted file mode 100644 index a2941ec466..0000000000 Binary files a/artworks/midjourney/06bed81a-3ce3-4ea9-a226-a2ab20c9df20_there_is_no_hope_etching_detailed.png and /dev/null differ diff --git a/artworks/midjourney/0723e171-ab61-4e67-8c57-7c9d7f9a7318_Jonas_polaroid_picture_of_a_human.png b/artworks/midjourney/0723e171-ab61-4e67-8c57-7c9d7f9a7318_Jonas_polaroid_picture_of_a_human.png deleted file mode 100644 index 0b94cf65ad..0000000000 Binary files a/artworks/midjourney/0723e171-ab61-4e67-8c57-7c9d7f9a7318_Jonas_polaroid_picture_of_a_human.png and /dev/null differ diff --git a/artworks/midjourney/07ab4732-c851-4b1b-9308-7e7d08eb2737_sad_panda_holding_sign_that_reads_Putin_stop_the_war_photograph.png b/artworks/midjourney/07ab4732-c851-4b1b-9308-7e7d08eb2737_sad_panda_holding_sign_that_reads_Putin_stop_the_war_photograph.png deleted file mode 100644 index 704a1cf745..0000000000 Binary files a/artworks/midjourney/07ab4732-c851-4b1b-9308-7e7d08eb2737_sad_panda_holding_sign_that_reads_Putin_stop_the_war_photograph.png and /dev/null differ diff --git a/artworks/midjourney/07c7d547-4b25-41e3-a1fc-232b789fa812_Jonas_epophantic_mind.png b/artworks/midjourney/07c7d547-4b25-41e3-a1fc-232b789fa812_Jonas_epophantic_mind.png deleted file mode 100644 index 596cf07c5d..0000000000 Binary files a/artworks/midjourney/07c7d547-4b25-41e3-a1fc-232b789fa812_Jonas_epophantic_mind.png and /dev/null differ diff --git a/artworks/midjourney/07f185eb-125a-45f5-ab2e-7a30c5eec172_httpss.mj.runvhX5kj__a_really_bad_guy_--w_320_--h_448.png b/artworks/midjourney/07f185eb-125a-45f5-ab2e-7a30c5eec172_httpss.mj.runvhX5kj__a_really_bad_guy_--w_320_--h_448.png deleted file mode 100644 index ba0e8a4677..0000000000 Binary files a/artworks/midjourney/07f185eb-125a-45f5-ab2e-7a30c5eec172_httpss.mj.runvhX5kj__a_really_bad_guy_--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/085c65b8-afd2-42db-a29b-e3ae7a1b7206_mirror_memorial.png b/artworks/midjourney/085c65b8-afd2-42db-a29b-e3ae7a1b7206_mirror_memorial.png deleted file mode 100644 index b16ebc84d7..0000000000 Binary files a/artworks/midjourney/085c65b8-afd2-42db-a29b-e3ae7a1b7206_mirror_memorial.png and /dev/null differ diff --git a/artworks/midjourney/08690732-6195-4d8c-94be-5c1065844a8e_Jonas_high_on_bath_salts_mugshot_jaysus.png b/artworks/midjourney/08690732-6195-4d8c-94be-5c1065844a8e_Jonas_high_on_bath_salts_mugshot_jaysus.png deleted file mode 100644 index e7c79ed473..0000000000 Binary files a/artworks/midjourney/08690732-6195-4d8c-94be-5c1065844a8e_Jonas_high_on_bath_salts_mugshot_jaysus.png and /dev/null differ diff --git a/artworks/midjourney/08cd95d5-af35-4da8-baa1-791a07d56a49_Jonas_ethereal_mana.png b/artworks/midjourney/08cd95d5-af35-4da8-baa1-791a07d56a49_Jonas_ethereal_mana.png deleted file mode 100644 index 9687c25016..0000000000 Binary files a/artworks/midjourney/08cd95d5-af35-4da8-baa1-791a07d56a49_Jonas_ethereal_mana.png and /dev/null differ diff --git a/artworks/midjourney/08eb7b46-bae6-4edf-81f7-ac5ea9a60026_black_jesus._halo..png b/artworks/midjourney/08eb7b46-bae6-4edf-81f7-ac5ea9a60026_black_jesus._halo..png deleted file mode 100644 index 6cbb6b8c35..0000000000 Binary files a/artworks/midjourney/08eb7b46-bae6-4edf-81f7-ac5ea9a60026_black_jesus._halo..png and /dev/null differ diff --git a/artworks/midjourney/09b6ab58-d9d0-4070-a661-64fa11bedb9d_like_a_bomb_we_bring_bright_light.png b/artworks/midjourney/09b6ab58-d9d0-4070-a661-64fa11bedb9d_like_a_bomb_we_bring_bright_light.png deleted file mode 100644 index dd288c3752..0000000000 Binary files a/artworks/midjourney/09b6ab58-d9d0-4070-a661-64fa11bedb9d_like_a_bomb_we_bring_bright_light.png and /dev/null differ diff --git a/artworks/midjourney/0ab63272-eb0f-4dc3-bdbd-9e4b91aa37ce_fortified_magnitude_of_the_unknown_--w_768_--h_512_--hd.png b/artworks/midjourney/0ab63272-eb0f-4dc3-bdbd-9e4b91aa37ce_fortified_magnitude_of_the_unknown_--w_768_--h_512_--hd.png deleted file mode 100644 index d47b007d2a..0000000000 Binary files a/artworks/midjourney/0ab63272-eb0f-4dc3-bdbd-9e4b91aa37ce_fortified_magnitude_of_the_unknown_--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/0babd41e-d5df-483c-b7ed-cc4eaeb9aa2f_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k__--w_768_.png b/artworks/midjourney/0babd41e-d5df-483c-b7ed-cc4eaeb9aa2f_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k__--w_768_.png deleted file mode 100644 index 5ebac3eeda..0000000000 Binary files a/artworks/midjourney/0babd41e-d5df-483c-b7ed-cc4eaeb9aa2f_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k__--w_768_.png and /dev/null differ diff --git a/artworks/midjourney/0d4cd1ec-7667-42db-be4e-659428a1fae2_entropy_of_the_soul.png b/artworks/midjourney/0d4cd1ec-7667-42db-be4e-659428a1fae2_entropy_of_the_soul.png deleted file mode 100644 index 5e8761794c..0000000000 Binary files a/artworks/midjourney/0d4cd1ec-7667-42db-be4e-659428a1fae2_entropy_of_the_soul.png and /dev/null differ diff --git a/artworks/midjourney/0d96879b-5ed6-45c7-adbe-6e84a2c93cc7_Jonas_zombie_still_life__--w_448_--h_320.png b/artworks/midjourney/0d96879b-5ed6-45c7-adbe-6e84a2c93cc7_Jonas_zombie_still_life__--w_448_--h_320.png deleted file mode 100644 index 0a803ae0a1..0000000000 Binary files a/artworks/midjourney/0d96879b-5ed6-45c7-adbe-6e84a2c93cc7_Jonas_zombie_still_life__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/0e2fca24-f895-4c95-8c69-4135835a7f15_medusa_DD_pixelart.__--w_320_--h_448.png b/artworks/midjourney/0e2fca24-f895-4c95-8c69-4135835a7f15_medusa_DD_pixelart.__--w_320_--h_448.png deleted file mode 100644 index d7461c845d..0000000000 Binary files a/artworks/midjourney/0e2fca24-f895-4c95-8c69-4135835a7f15_medusa_DD_pixelart.__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/0e69391d-892c-4d97-9c41-fec8411af548_Jonas_entropy_within.png b/artworks/midjourney/0e69391d-892c-4d97-9c41-fec8411af548_Jonas_entropy_within.png deleted file mode 100644 index 94d1241a56..0000000000 Binary files a/artworks/midjourney/0e69391d-892c-4d97-9c41-fec8411af548_Jonas_entropy_within.png and /dev/null differ diff --git a/artworks/midjourney/0f0df585-55ae-4fef-805c-267d03e04e88_death_to_the_beholder_force_of_none.png b/artworks/midjourney/0f0df585-55ae-4fef-805c-267d03e04e88_death_to_the_beholder_force_of_none.png deleted file mode 100644 index 7bcd4699dc..0000000000 Binary files a/artworks/midjourney/0f0df585-55ae-4fef-805c-267d03e04e88_death_to_the_beholder_force_of_none.png and /dev/null differ diff --git a/artworks/midjourney/0f52ff4d-06e5-44f4-94a4-7f9f326b31e6_Nymphomaniac__--w_320_--h_448.png b/artworks/midjourney/0f52ff4d-06e5-44f4-94a4-7f9f326b31e6_Nymphomaniac__--w_320_--h_448.png deleted file mode 100644 index 47b285e588..0000000000 Binary files a/artworks/midjourney/0f52ff4d-06e5-44f4-94a4-7f9f326b31e6_Nymphomaniac__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/0f66fba0-c68f-4b63-8d2d-cb4e411df58d_radiant_bomba.png b/artworks/midjourney/0f66fba0-c68f-4b63-8d2d-cb4e411df58d_radiant_bomba.png deleted file mode 100644 index b41d44f219..0000000000 Binary files a/artworks/midjourney/0f66fba0-c68f-4b63-8d2d-cb4e411df58d_radiant_bomba.png and /dev/null differ diff --git a/artworks/midjourney/1023675d-c733-4e82-a35b-29a6ef50dc1c_Jonas_At_least_you_would_look_human_then..png b/artworks/midjourney/1023675d-c733-4e82-a35b-29a6ef50dc1c_Jonas_At_least_you_would_look_human_then..png deleted file mode 100644 index d24f2f5ad2..0000000000 Binary files a/artworks/midjourney/1023675d-c733-4e82-a35b-29a6ef50dc1c_Jonas_At_least_you_would_look_human_then..png and /dev/null differ diff --git a/artworks/midjourney/10fce7d6-9e1f-482a-acfc-0388e336db30_Jonas_lord_of_the_kings.png b/artworks/midjourney/10fce7d6-9e1f-482a-acfc-0388e336db30_Jonas_lord_of_the_kings.png deleted file mode 100644 index ac79e87726..0000000000 Binary files a/artworks/midjourney/10fce7d6-9e1f-482a-acfc-0388e336db30_Jonas_lord_of_the_kings.png and /dev/null differ diff --git a/artworks/midjourney/11468b80-9d91-48ce-bf14-dab41d629f00_httpss.mj.runauSbNH__canibal_squirrel.png b/artworks/midjourney/11468b80-9d91-48ce-bf14-dab41d629f00_httpss.mj.runauSbNH__canibal_squirrel.png deleted file mode 100644 index e9e9b95d99..0000000000 Binary files a/artworks/midjourney/11468b80-9d91-48ce-bf14-dab41d629f00_httpss.mj.runauSbNH__canibal_squirrel.png and /dev/null differ diff --git a/artworks/midjourney/117431e2-455d-4616-8bde-af1d2f006e3a_VR_painting.png b/artworks/midjourney/117431e2-455d-4616-8bde-af1d2f006e3a_VR_painting.png deleted file mode 100644 index 16ae06801e..0000000000 Binary files a/artworks/midjourney/117431e2-455d-4616-8bde-af1d2f006e3a_VR_painting.png and /dev/null differ diff --git a/artworks/midjourney/11b271e0-3063-4c7a-b256-90dd3324388a_Jonas_the_evolution_of_human_life.png b/artworks/midjourney/11b271e0-3063-4c7a-b256-90dd3324388a_Jonas_the_evolution_of_human_life.png deleted file mode 100644 index 6750273e14..0000000000 Binary files a/artworks/midjourney/11b271e0-3063-4c7a-b256-90dd3324388a_Jonas_the_evolution_of_human_life.png and /dev/null differ diff --git a/artworks/midjourney/11cdee40-53d4-4569-b73e-630d7eecc280_Days_spin_through_my_heart_That_sever_the_love_K1ll_all_the_pain_with_shame.png b/artworks/midjourney/11cdee40-53d4-4569-b73e-630d7eecc280_Days_spin_through_my_heart_That_sever_the_love_K1ll_all_the_pain_with_shame.png deleted file mode 100644 index df69817412..0000000000 Binary files a/artworks/midjourney/11cdee40-53d4-4569-b73e-630d7eecc280_Days_spin_through_my_heart_That_sever_the_love_K1ll_all_the_pain_with_shame.png and /dev/null differ diff --git a/artworks/midjourney/1261005c-1bd6-48cd-a29b-459a949a2fb4_Jonas_escher_staircase.png b/artworks/midjourney/1261005c-1bd6-48cd-a29b-459a949a2fb4_Jonas_escher_staircase.png deleted file mode 100644 index 430ae4382e..0000000000 Binary files a/artworks/midjourney/1261005c-1bd6-48cd-a29b-459a949a2fb4_Jonas_escher_staircase.png and /dev/null differ diff --git a/artworks/midjourney/126d6135-711e-43ed-879c-e5126e56e38e_the_foundations_of_origin_void_of_existence_matte_painting_genesis_trending_on_artstation_high_resolution.png b/artworks/midjourney/126d6135-711e-43ed-879c-e5126e56e38e_the_foundations_of_origin_void_of_existence_matte_painting_genesis_trending_on_artstation_high_resolution.png deleted file mode 100644 index 4fd020b5f0..0000000000 Binary files a/artworks/midjourney/126d6135-711e-43ed-879c-e5126e56e38e_the_foundations_of_origin_void_of_existence_matte_painting_genesis_trending_on_artstation_high_resolution.png and /dev/null differ diff --git a/artworks/midjourney/12c816cc-36bd-43f3-a024-085054749216_gateway_to_doom__--w_320_--h_256.png b/artworks/midjourney/12c816cc-36bd-43f3-a024-085054749216_gateway_to_doom__--w_320_--h_256.png deleted file mode 100644 index bff21f5660..0000000000 Binary files a/artworks/midjourney/12c816cc-36bd-43f3-a024-085054749216_gateway_to_doom__--w_320_--h_256.png and /dev/null differ diff --git a/artworks/midjourney/13f485e3-447f-4d15-985d-a106b89bf41b_cyril_DD_bestiary.png b/artworks/midjourney/13f485e3-447f-4d15-985d-a106b89bf41b_cyril_DD_bestiary.png deleted file mode 100644 index 5b8e4bf46b..0000000000 Binary files a/artworks/midjourney/13f485e3-447f-4d15-985d-a106b89bf41b_cyril_DD_bestiary.png and /dev/null differ diff --git a/artworks/midjourney/140e6b13-03dc-4abd-bc2e-9b0fa55e532e_just_cause_CGSociety_postprocessing_war.png b/artworks/midjourney/140e6b13-03dc-4abd-bc2e-9b0fa55e532e_just_cause_CGSociety_postprocessing_war.png deleted file mode 100644 index de6b0a1f5b..0000000000 Binary files a/artworks/midjourney/140e6b13-03dc-4abd-bc2e-9b0fa55e532e_just_cause_CGSociety_postprocessing_war.png and /dev/null differ diff --git a/artworks/midjourney/14799b45-549b-459f-99d3-da234b97a714_Mentat_from_Dune_portrait.png b/artworks/midjourney/14799b45-549b-459f-99d3-da234b97a714_Mentat_from_Dune_portrait.png deleted file mode 100644 index 01f3a22384..0000000000 Binary files a/artworks/midjourney/14799b45-549b-459f-99d3-da234b97a714_Mentat_from_Dune_portrait.png and /dev/null differ diff --git a/artworks/midjourney/14903b2a-1a92-49be-b55e-4f64b99e9da8_ugly_--no_beautiful_--no_text_--w_320_--h_448.png b/artworks/midjourney/14903b2a-1a92-49be-b55e-4f64b99e9da8_ugly_--no_beautiful_--no_text_--w_320_--h_448.png deleted file mode 100644 index ef66c7d720..0000000000 Binary files a/artworks/midjourney/14903b2a-1a92-49be-b55e-4f64b99e9da8_ugly_--no_beautiful_--no_text_--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/14931994-2649-4c25-a9eb-0286581b008d_intricate_labyrinth__--w_448_--h_320.png b/artworks/midjourney/14931994-2649-4c25-a9eb-0286581b008d_intricate_labyrinth__--w_448_--h_320.png deleted file mode 100644 index e6125bbcbf..0000000000 Binary files a/artworks/midjourney/14931994-2649-4c25-a9eb-0286581b008d_intricate_labyrinth__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/15ab3b80-1d87-4234-babe-22050759daf1_eclectic_interior_of_the_mind.png b/artworks/midjourney/15ab3b80-1d87-4234-babe-22050759daf1_eclectic_interior_of_the_mind.png deleted file mode 100644 index 7b4188f985..0000000000 Binary files a/artworks/midjourney/15ab3b80-1d87-4234-babe-22050759daf1_eclectic_interior_of_the_mind.png and /dev/null differ diff --git a/artworks/midjourney/1600df44-4f06-42a2-8740-0a62aff62cd0_oh_god_art.png b/artworks/midjourney/1600df44-4f06-42a2-8740-0a62aff62cd0_oh_god_art.png deleted file mode 100644 index fc1c2b5ec9..0000000000 Binary files a/artworks/midjourney/1600df44-4f06-42a2-8740-0a62aff62cd0_oh_god_art.png and /dev/null differ diff --git a/artworks/midjourney/1615964c-7328-4849-a813-b65835c8578d_people_bow_to_the_demon._matte_painting_detailed.png b/artworks/midjourney/1615964c-7328-4849-a813-b65835c8578d_people_bow_to_the_demon._matte_painting_detailed.png deleted file mode 100644 index 53463628a5..0000000000 Binary files a/artworks/midjourney/1615964c-7328-4849-a813-b65835c8578d_people_bow_to_the_demon._matte_painting_detailed.png and /dev/null differ diff --git a/artworks/midjourney/1655a767-4808-4f83-abcc-6242458e162d_entropy_of_the_mind.png b/artworks/midjourney/1655a767-4808-4f83-abcc-6242458e162d_entropy_of_the_mind.png deleted file mode 100644 index 343ad0f4ee..0000000000 Binary files a/artworks/midjourney/1655a767-4808-4f83-abcc-6242458e162d_entropy_of_the_mind.png and /dev/null differ diff --git a/artworks/midjourney/16ae5919-34e8-425e-987e-625ea8f81ccd_Jonas_saint_of_angels_by_Glenn_Fabry.png b/artworks/midjourney/16ae5919-34e8-425e-987e-625ea8f81ccd_Jonas_saint_of_angels_by_Glenn_Fabry.png deleted file mode 100644 index aa2039a575..0000000000 Binary files a/artworks/midjourney/16ae5919-34e8-425e-987e-625ea8f81ccd_Jonas_saint_of_angels_by_Glenn_Fabry.png and /dev/null differ diff --git a/artworks/midjourney/16d45b9a-e3a4-4c5d-99e6-209b369f96a5_Jonas_the_rumor_of_doors_uncertainty_visualization.png b/artworks/midjourney/16d45b9a-e3a4-4c5d-99e6-209b369f96a5_Jonas_the_rumor_of_doors_uncertainty_visualization.png deleted file mode 100644 index 8f56958dbf..0000000000 Binary files a/artworks/midjourney/16d45b9a-e3a4-4c5d-99e6-209b369f96a5_Jonas_the_rumor_of_doors_uncertainty_visualization.png and /dev/null differ diff --git a/artworks/midjourney/1736bb43-e058-4fc1-a9fc-7c413620c59d_a_mix_of_harrison_ford_in_indiana_jones_and_Jack_Nicholson_in_the_shining_man_face_portrait__--w_320_--h_448.png b/artworks/midjourney/1736bb43-e058-4fc1-a9fc-7c413620c59d_a_mix_of_harrison_ford_in_indiana_jones_and_Jack_Nicholson_in_the_shining_man_face_portrait__--w_320_--h_448.png deleted file mode 100644 index 74ccfba91a..0000000000 Binary files a/artworks/midjourney/1736bb43-e058-4fc1-a9fc-7c413620c59d_a_mix_of_harrison_ford_in_indiana_jones_and_Jack_Nicholson_in_the_shining_man_face_portrait__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/1748d43f-8c36-40b1-8244-81fdee6c0c51_Jonas_portrait_of_orc_bully__--w_320_--h_448.png b/artworks/midjourney/1748d43f-8c36-40b1-8244-81fdee6c0c51_Jonas_portrait_of_orc_bully__--w_320_--h_448.png deleted file mode 100644 index c708e28d15..0000000000 Binary files a/artworks/midjourney/1748d43f-8c36-40b1-8244-81fdee6c0c51_Jonas_portrait_of_orc_bully__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/17800a1e-be64-4c3e-b75c-c5d9db4c1796_Jonas_crypto_bro_cat.png b/artworks/midjourney/17800a1e-be64-4c3e-b75c-c5d9db4c1796_Jonas_crypto_bro_cat.png deleted file mode 100644 index 4dfc8be273..0000000000 Binary files a/artworks/midjourney/17800a1e-be64-4c3e-b75c-c5d9db4c1796_Jonas_crypto_bro_cat.png and /dev/null differ diff --git a/artworks/midjourney/17b22648-ff2f-4070-95d1-4abe33d7c0fe_Jonas_grounded_theory.png b/artworks/midjourney/17b22648-ff2f-4070-95d1-4abe33d7c0fe_Jonas_grounded_theory.png deleted file mode 100644 index eb92f84ce8..0000000000 Binary files a/artworks/midjourney/17b22648-ff2f-4070-95d1-4abe33d7c0fe_Jonas_grounded_theory.png and /dev/null differ diff --git a/artworks/midjourney/17da5a06-66cb-47ec-a372-bc17d9d3c485_Jonas_artifact.png b/artworks/midjourney/17da5a06-66cb-47ec-a372-bc17d9d3c485_Jonas_artifact.png deleted file mode 100644 index 1eb7c7bf88..0000000000 Binary files a/artworks/midjourney/17da5a06-66cb-47ec-a372-bc17d9d3c485_Jonas_artifact.png and /dev/null differ diff --git a/artworks/midjourney/1843b3e3-0578-49b7-bd52-4e6809df4cc6_mirror_memorial.png b/artworks/midjourney/1843b3e3-0578-49b7-bd52-4e6809df4cc6_mirror_memorial.png deleted file mode 100644 index c3a416e207..0000000000 Binary files a/artworks/midjourney/1843b3e3-0578-49b7-bd52-4e6809df4cc6_mirror_memorial.png and /dev/null differ diff --git a/artworks/midjourney/185ea6ce-bc08-438d-989a-8a81dae774d5_winged_demons_in_hell._by_james_gurney_matte_painting_fantasy_colors_CGSociety_realistic_materials_photorealistic_postprocessing_wow_httpst.lylkWt_--w_356_--hq_--nostretch_.png b/artworks/midjourney/185ea6ce-bc08-438d-989a-8a81dae774d5_winged_demons_in_hell._by_james_gurney_matte_painting_fantasy_colors_CGSociety_realistic_materials_photorealistic_postprocessing_wow_httpst.lylkWt_--w_356_--hq_--nostretch_.png deleted file mode 100644 index a216d95bc4..0000000000 Binary files a/artworks/midjourney/185ea6ce-bc08-438d-989a-8a81dae774d5_winged_demons_in_hell._by_james_gurney_matte_painting_fantasy_colors_CGSociety_realistic_materials_photorealistic_postprocessing_wow_httpst.lylkWt_--w_356_--hq_--nostretch_.png and /dev/null differ diff --git a/artworks/midjourney/18681084-ea21-4dbb-8533-157801ffc5fd_octopus_beautiful_wondrous_symmetrical_intelligent__--w_768_--h_512_--hd.png b/artworks/midjourney/18681084-ea21-4dbb-8533-157801ffc5fd_octopus_beautiful_wondrous_symmetrical_intelligent__--w_768_--h_512_--hd.png deleted file mode 100644 index c4c7a59f77..0000000000 Binary files a/artworks/midjourney/18681084-ea21-4dbb-8533-157801ffc5fd_octopus_beautiful_wondrous_symmetrical_intelligent__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/18826e54-18e3-4e5a-952e-3cae6dcae5e9_bad_habits_potentiate_into_entropy.png b/artworks/midjourney/18826e54-18e3-4e5a-952e-3cae6dcae5e9_bad_habits_potentiate_into_entropy.png deleted file mode 100644 index 5581c50c15..0000000000 Binary files a/artworks/midjourney/18826e54-18e3-4e5a-952e-3cae6dcae5e9_bad_habits_potentiate_into_entropy.png and /dev/null differ diff --git a/artworks/midjourney/18e4cc65-f9e3-4248-a83a-eb14c1fb4824_hand_print_on_wall_smear_creepy.png b/artworks/midjourney/18e4cc65-f9e3-4248-a83a-eb14c1fb4824_hand_print_on_wall_smear_creepy.png deleted file mode 100644 index 5a60329ea8..0000000000 Binary files a/artworks/midjourney/18e4cc65-f9e3-4248-a83a-eb14c1fb4824_hand_print_on_wall_smear_creepy.png and /dev/null differ diff --git a/artworks/midjourney/18fe8ada-c3e6-4cbb-89ee-1ec9c10eeff7_Jonas_epic_library_of_the_inner_sanctuary.png b/artworks/midjourney/18fe8ada-c3e6-4cbb-89ee-1ec9c10eeff7_Jonas_epic_library_of_the_inner_sanctuary.png deleted file mode 100644 index 51449ffb7a..0000000000 Binary files a/artworks/midjourney/18fe8ada-c3e6-4cbb-89ee-1ec9c10eeff7_Jonas_epic_library_of_the_inner_sanctuary.png and /dev/null differ diff --git a/artworks/midjourney/19380f82-e0d4-49db-90c8-7ebc4c26d2b9_Jonas_the_rumor_of_doors_uncertainty_visualization.png b/artworks/midjourney/19380f82-e0d4-49db-90c8-7ebc4c26d2b9_Jonas_the_rumor_of_doors_uncertainty_visualization.png deleted file mode 100644 index fd652943f9..0000000000 Binary files a/artworks/midjourney/19380f82-e0d4-49db-90c8-7ebc4c26d2b9_Jonas_the_rumor_of_doors_uncertainty_visualization.png and /dev/null differ diff --git a/artworks/midjourney/19a1f82b-6120-440e-90f8-c4b5b6e7ff78_Jonas_ethereal_mana.png b/artworks/midjourney/19a1f82b-6120-440e-90f8-c4b5b6e7ff78_Jonas_ethereal_mana.png deleted file mode 100644 index d596cbe2cc..0000000000 Binary files a/artworks/midjourney/19a1f82b-6120-440e-90f8-c4b5b6e7ff78_Jonas_ethereal_mana.png and /dev/null differ diff --git a/artworks/midjourney/1a29d6c4-80da-4b38-a61e-6d4443dc9651_beacon_of_light_in_the_darkness.png b/artworks/midjourney/1a29d6c4-80da-4b38-a61e-6d4443dc9651_beacon_of_light_in_the_darkness.png deleted file mode 100644 index 8d5bc0685c..0000000000 Binary files a/artworks/midjourney/1a29d6c4-80da-4b38-a61e-6d4443dc9651_beacon_of_light_in_the_darkness.png and /dev/null differ diff --git a/artworks/midjourney/1b39dc4b-8379-431b-a960-0cf2cd28320a_Urania_cover.png b/artworks/midjourney/1b39dc4b-8379-431b-a960-0cf2cd28320a_Urania_cover.png deleted file mode 100644 index 006832db5f..0000000000 Binary files a/artworks/midjourney/1b39dc4b-8379-431b-a960-0cf2cd28320a_Urania_cover.png and /dev/null differ diff --git a/artworks/midjourney/1c0fc4b4-9803-42ba-b039-5602934dbef4_such_is_the_passage_of_time.png b/artworks/midjourney/1c0fc4b4-9803-42ba-b039-5602934dbef4_such_is_the_passage_of_time.png deleted file mode 100644 index 06e2b45c89..0000000000 Binary files a/artworks/midjourney/1c0fc4b4-9803-42ba-b039-5602934dbef4_such_is_the_passage_of_time.png and /dev/null differ diff --git a/artworks/midjourney/1e125654-481e-4ff9-8147-4f1abacf27d6_Jonas_Soaked_in_soul_he_swims_in_my_eyes_by_the_bed.png b/artworks/midjourney/1e125654-481e-4ff9-8147-4f1abacf27d6_Jonas_Soaked_in_soul_he_swims_in_my_eyes_by_the_bed.png deleted file mode 100644 index c27e86630c..0000000000 Binary files a/artworks/midjourney/1e125654-481e-4ff9-8147-4f1abacf27d6_Jonas_Soaked_in_soul_he_swims_in_my_eyes_by_the_bed.png and /dev/null differ diff --git a/artworks/midjourney/1e514131-86e7-405e-855a-6cc3bd88d038_untitled._oil_painting_watercolor_line_drawing_by_Darth_Vader_and_Zdzislaw_Beksinski_-.png b/artworks/midjourney/1e514131-86e7-405e-855a-6cc3bd88d038_untitled._oil_painting_watercolor_line_drawing_by_Darth_Vader_and_Zdzislaw_Beksinski_-.png deleted file mode 100644 index a2644bbaf9..0000000000 Binary files a/artworks/midjourney/1e514131-86e7-405e-855a-6cc3bd88d038_untitled._oil_painting_watercolor_line_drawing_by_Darth_Vader_and_Zdzislaw_Beksinski_-.png and /dev/null differ diff --git a/artworks/midjourney/1f0eacb1-1c5c-4b37-a224-a52f359456f8_The_Prestige.png b/artworks/midjourney/1f0eacb1-1c5c-4b37-a224-a52f359456f8_The_Prestige.png deleted file mode 100644 index 7a0225f237..0000000000 Binary files a/artworks/midjourney/1f0eacb1-1c5c-4b37-a224-a52f359456f8_The_Prestige.png and /dev/null differ diff --git a/artworks/midjourney/1f15777b-c38b-4c73-9048-7bd3f2672e1b_SauronGandalf__--w_512_--h_768_--hd.png b/artworks/midjourney/1f15777b-c38b-4c73-9048-7bd3f2672e1b_SauronGandalf__--w_512_--h_768_--hd.png deleted file mode 100644 index 44c9467a90..0000000000 Binary files a/artworks/midjourney/1f15777b-c38b-4c73-9048-7bd3f2672e1b_SauronGandalf__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/1f4fce82-8a1b-4c9e-941d-a08cf6ec8048___diffusion.png b/artworks/midjourney/1f4fce82-8a1b-4c9e-941d-a08cf6ec8048___diffusion.png deleted file mode 100644 index 8d58b9169c..0000000000 Binary files a/artworks/midjourney/1f4fce82-8a1b-4c9e-941d-a08cf6ec8048___diffusion.png and /dev/null differ diff --git a/artworks/midjourney/1f976cfb-c02c-464d-902f-d6cc72c7aa8f_Jonas_to_be_totally_gomez_with_you_we_cannot_assort_this_--no_Shrek.png b/artworks/midjourney/1f976cfb-c02c-464d-902f-d6cc72c7aa8f_Jonas_to_be_totally_gomez_with_you_we_cannot_assort_this_--no_Shrek.png deleted file mode 100644 index 80fa0cebf6..0000000000 Binary files a/artworks/midjourney/1f976cfb-c02c-464d-902f-d6cc72c7aa8f_Jonas_to_be_totally_gomez_with_you_we_cannot_assort_this_--no_Shrek.png and /dev/null differ diff --git a/artworks/midjourney/1fbb1ee0-5b79-43f5-80ad-71a9ca05d45d_untitled._oil_painting_watercolor_line_drawing_by_Luke_Sywalk_James_Gurney_and_Zdzislaw_Beksinski.png b/artworks/midjourney/1fbb1ee0-5b79-43f5-80ad-71a9ca05d45d_untitled._oil_painting_watercolor_line_drawing_by_Luke_Sywalk_James_Gurney_and_Zdzislaw_Beksinski.png deleted file mode 100644 index cd705285e7..0000000000 Binary files a/artworks/midjourney/1fbb1ee0-5b79-43f5-80ad-71a9ca05d45d_untitled._oil_painting_watercolor_line_drawing_by_Luke_Sywalk_James_Gurney_and_Zdzislaw_Beksinski.png and /dev/null differ diff --git a/artworks/midjourney/20bdf28b-a876-4921-acf2-aad69df99b1c_Jonas_artefact.png b/artworks/midjourney/20bdf28b-a876-4921-acf2-aad69df99b1c_Jonas_artefact.png deleted file mode 100644 index 7e8fb8abaa..0000000000 Binary files a/artworks/midjourney/20bdf28b-a876-4921-acf2-aad69df99b1c_Jonas_artefact.png and /dev/null differ diff --git a/artworks/midjourney/20fdcbcc-3e19-4f9d-8bd7-1d8f1d125d84_egomorph_by_WLOP__--w_320_--h_448.png b/artworks/midjourney/20fdcbcc-3e19-4f9d-8bd7-1d8f1d125d84_egomorph_by_WLOP__--w_320_--h_448.png deleted file mode 100644 index c2e1e5f0b3..0000000000 Binary files a/artworks/midjourney/20fdcbcc-3e19-4f9d-8bd7-1d8f1d125d84_egomorph_by_WLOP__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/210795f1-fde9-4009-91e9-583c3ac0f4c4_near-death_experience_into_the_light_--seed_78923.png b/artworks/midjourney/210795f1-fde9-4009-91e9-583c3ac0f4c4_near-death_experience_into_the_light_--seed_78923.png deleted file mode 100644 index e168fefd1d..0000000000 Binary files a/artworks/midjourney/210795f1-fde9-4009-91e9-583c3ac0f4c4_near-death_experience_into_the_light_--seed_78923.png and /dev/null differ diff --git a/artworks/midjourney/21309fc1-ba03-4703-8cc7-7f09109c1537_lobject_dadmiration__--w_320_--h_448.png b/artworks/midjourney/21309fc1-ba03-4703-8cc7-7f09109c1537_lobject_dadmiration__--w_320_--h_448.png deleted file mode 100644 index dfc6218425..0000000000 Binary files a/artworks/midjourney/21309fc1-ba03-4703-8cc7-7f09109c1537_lobject_dadmiration__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/21332427-de2c-4296-8736-49afb83df0e3_Jonas_a_city_razed__--w_768_--h_512_--hd.png b/artworks/midjourney/21332427-de2c-4296-8736-49afb83df0e3_Jonas_a_city_razed__--w_768_--h_512_--hd.png deleted file mode 100644 index 8b50905174..0000000000 Binary files a/artworks/midjourney/21332427-de2c-4296-8736-49afb83df0e3_Jonas_a_city_razed__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/21adc81e-a2ca-4632-80a6-7e056d936ec8_Jonas_the_second_kingdom.png b/artworks/midjourney/21adc81e-a2ca-4632-80a6-7e056d936ec8_Jonas_the_second_kingdom.png deleted file mode 100644 index 968b4bf0bc..0000000000 Binary files a/artworks/midjourney/21adc81e-a2ca-4632-80a6-7e056d936ec8_Jonas_the_second_kingdom.png and /dev/null differ diff --git a/artworks/midjourney/220426a7-734c-44a9-bc74-28a9e693461a_the_world_is_you_oyster.png b/artworks/midjourney/220426a7-734c-44a9-bc74-28a9e693461a_the_world_is_you_oyster.png deleted file mode 100644 index 5b17c0945b..0000000000 Binary files a/artworks/midjourney/220426a7-734c-44a9-bc74-28a9e693461a_the_world_is_you_oyster.png and /dev/null differ diff --git a/artworks/midjourney/220b76d1-8a7a-4d00-b543-11963aa1563d_Jonas_At_least_you_would_look_human_now..png b/artworks/midjourney/220b76d1-8a7a-4d00-b543-11963aa1563d_Jonas_At_least_you_would_look_human_now..png deleted file mode 100644 index d1a9793a6b..0000000000 Binary files a/artworks/midjourney/220b76d1-8a7a-4d00-b543-11963aa1563d_Jonas_At_least_you_would_look_human_now..png and /dev/null differ diff --git a/artworks/midjourney/223fbaa4-56c7-4771-a39e-c7ff9f664efd_farsical_existence_of_being_AWESOME__--w_512_--h_768_--hd.png b/artworks/midjourney/223fbaa4-56c7-4771-a39e-c7ff9f664efd_farsical_existence_of_being_AWESOME__--w_512_--h_768_--hd.png deleted file mode 100644 index 8e334b8810..0000000000 Binary files a/artworks/midjourney/223fbaa4-56c7-4771-a39e-c7ff9f664efd_farsical_existence_of_being_AWESOME__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/2251a023-dd26-4d4f-9a24-e9e69b9ec88f_medusa_DD_pixelart.__--w_320_--h_448.png b/artworks/midjourney/2251a023-dd26-4d4f-9a24-e9e69b9ec88f_medusa_DD_pixelart.__--w_320_--h_448.png deleted file mode 100644 index 842bf651f2..0000000000 Binary files a/artworks/midjourney/2251a023-dd26-4d4f-9a24-e9e69b9ec88f_medusa_DD_pixelart.__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/2271f656-c8da-411f-a4fd-2a9bbb3e455d_mirror_memorial.png b/artworks/midjourney/2271f656-c8da-411f-a4fd-2a9bbb3e455d_mirror_memorial.png deleted file mode 100644 index a6ae7b8509..0000000000 Binary files a/artworks/midjourney/2271f656-c8da-411f-a4fd-2a9bbb3e455d_mirror_memorial.png and /dev/null differ diff --git a/artworks/midjourney/22b23373-a834-4845-935a-c53e13cadf1f_tardigrade_supernova__--w_448_--h_320.png b/artworks/midjourney/22b23373-a834-4845-935a-c53e13cadf1f_tardigrade_supernova__--w_448_--h_320.png deleted file mode 100644 index 192c5bead2..0000000000 Binary files a/artworks/midjourney/22b23373-a834-4845-935a-c53e13cadf1f_tardigrade_supernova__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/231097d3-83c1-45c3-af3f-bb7977549eff_Jonas_sweet_baby_jesus.png b/artworks/midjourney/231097d3-83c1-45c3-af3f-bb7977549eff_Jonas_sweet_baby_jesus.png deleted file mode 100644 index 72942326a2..0000000000 Binary files a/artworks/midjourney/231097d3-83c1-45c3-af3f-bb7977549eff_Jonas_sweet_baby_jesus.png and /dev/null differ diff --git a/artworks/midjourney/235662f2-9101-44b5-8edc-adebb6b2073c_Jonas_post-truth_wormhole.png b/artworks/midjourney/235662f2-9101-44b5-8edc-adebb6b2073c_Jonas_post-truth_wormhole.png deleted file mode 100644 index b4a520c43d..0000000000 Binary files a/artworks/midjourney/235662f2-9101-44b5-8edc-adebb6b2073c_Jonas_post-truth_wormhole.png and /dev/null differ diff --git a/artworks/midjourney/23f13dd1-4800-478c-9c28-0ca45d1a5cc2_Jonas_httpss.mj.runicZCRm__bathroom_with_square_tiles_escher_painting_line_drawing.png b/artworks/midjourney/23f13dd1-4800-478c-9c28-0ca45d1a5cc2_Jonas_httpss.mj.runicZCRm__bathroom_with_square_tiles_escher_painting_line_drawing.png deleted file mode 100644 index 82b92c124e..0000000000 Binary files a/artworks/midjourney/23f13dd1-4800-478c-9c28-0ca45d1a5cc2_Jonas_httpss.mj.runicZCRm__bathroom_with_square_tiles_escher_painting_line_drawing.png and /dev/null differ diff --git a/artworks/midjourney/240389de-1455-4c21-ade0-b631106405ed_collective_intelligence_new_scientist_cover__--w_320_--h_448.png b/artworks/midjourney/240389de-1455-4c21-ade0-b631106405ed_collective_intelligence_new_scientist_cover__--w_320_--h_448.png deleted file mode 100644 index 2a5d058a20..0000000000 Binary files a/artworks/midjourney/240389de-1455-4c21-ade0-b631106405ed_collective_intelligence_new_scientist_cover__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/24eadf1a-9d53-4422-9dbe-918906a34132_freediver.png b/artworks/midjourney/24eadf1a-9d53-4422-9dbe-918906a34132_freediver.png deleted file mode 100644 index 1469171f48..0000000000 Binary files a/artworks/midjourney/24eadf1a-9d53-4422-9dbe-918906a34132_freediver.png and /dev/null differ diff --git a/artworks/midjourney/24f3d0cc-58e6-4e23-81b7-9a6b58ade8a6_entropy_of_lost_souls.png b/artworks/midjourney/24f3d0cc-58e6-4e23-81b7-9a6b58ade8a6_entropy_of_lost_souls.png deleted file mode 100644 index 8a3f05cbbe..0000000000 Binary files a/artworks/midjourney/24f3d0cc-58e6-4e23-81b7-9a6b58ade8a6_entropy_of_lost_souls.png and /dev/null differ diff --git a/artworks/midjourney/251103d2-daeb-4e11-ab2b-b1d963992290_microplastic_seasoning.png b/artworks/midjourney/251103d2-daeb-4e11-ab2b-b1d963992290_microplastic_seasoning.png deleted file mode 100644 index 3c4357a73c..0000000000 Binary files a/artworks/midjourney/251103d2-daeb-4e11-ab2b-b1d963992290_microplastic_seasoning.png and /dev/null differ diff --git a/artworks/midjourney/255b8401-6bca-4568-a89d-a301d582ee70_hackerman.png b/artworks/midjourney/255b8401-6bca-4568-a89d-a301d582ee70_hackerman.png deleted file mode 100644 index 579f77b03c..0000000000 Binary files a/artworks/midjourney/255b8401-6bca-4568-a89d-a301d582ee70_hackerman.png and /dev/null differ diff --git a/artworks/midjourney/25a47e3b-d1b0-4bc8-ae09-71e94b6ed9c4_Jonas_second_coming.png b/artworks/midjourney/25a47e3b-d1b0-4bc8-ae09-71e94b6ed9c4_Jonas_second_coming.png deleted file mode 100644 index f447c07435..0000000000 Binary files a/artworks/midjourney/25a47e3b-d1b0-4bc8-ae09-71e94b6ed9c4_Jonas_second_coming.png and /dev/null differ diff --git a/artworks/midjourney/26c549e2-520c-4e45-a050-9474a00e7cf3_put_some_art_on_the_wall_check_it_out_for_a_while__--w_448_--h_320.png b/artworks/midjourney/26c549e2-520c-4e45-a050-9474a00e7cf3_put_some_art_on_the_wall_check_it_out_for_a_while__--w_448_--h_320.png deleted file mode 100644 index b61dcb0cad..0000000000 Binary files a/artworks/midjourney/26c549e2-520c-4e45-a050-9474a00e7cf3_put_some_art_on_the_wall_check_it_out_for_a_while__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/26f3d336-9ffa-449c-95b9-fc720a292f77_fallout_hype_inflation_collective_intelligence_forget_the_pamper_raise_the_spirit..png b/artworks/midjourney/26f3d336-9ffa-449c-95b9-fc720a292f77_fallout_hype_inflation_collective_intelligence_forget_the_pamper_raise_the_spirit..png deleted file mode 100644 index 71c02f0e5b..0000000000 Binary files a/artworks/midjourney/26f3d336-9ffa-449c-95b9-fc720a292f77_fallout_hype_inflation_collective_intelligence_forget_the_pamper_raise_the_spirit..png and /dev/null differ diff --git a/artworks/midjourney/27198b71-d450-477e-89d1-8a4b1959232e_httpss.mj.runauSbNH__canibal_squirrel.png b/artworks/midjourney/27198b71-d450-477e-89d1-8a4b1959232e_httpss.mj.runauSbNH__canibal_squirrel.png deleted file mode 100644 index dc6c70c31e..0000000000 Binary files a/artworks/midjourney/27198b71-d450-477e-89d1-8a4b1959232e_httpss.mj.runauSbNH__canibal_squirrel.png and /dev/null differ diff --git a/artworks/midjourney/275d1150-d240-496b-b0c5-a206d3511edd_nuclear_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png b/artworks/midjourney/275d1150-d240-496b-b0c5-a206d3511edd_nuclear_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png deleted file mode 100644 index 9437802e11..0000000000 Binary files a/artworks/midjourney/275d1150-d240-496b-b0c5-a206d3511edd_nuclear_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/27a5063e-378f-44db-9f6f-b2e022419efb_raider_of_the_lost_art_by_Vincent_di_Fate_--w_320_--h_448.png b/artworks/midjourney/27a5063e-378f-44db-9f6f-b2e022419efb_raider_of_the_lost_art_by_Vincent_di_Fate_--w_320_--h_448.png deleted file mode 100644 index 51d42adac8..0000000000 Binary files a/artworks/midjourney/27a5063e-378f-44db-9f6f-b2e022419efb_raider_of_the_lost_art_by_Vincent_di_Fate_--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/27c11e97-6670-423b-9973-cd8b93bc2750_Jonas_nukes_from_heaven_by_Ross_Tran_and_Hiroshi_Yoshida_highly_detailed.png b/artworks/midjourney/27c11e97-6670-423b-9973-cd8b93bc2750_Jonas_nukes_from_heaven_by_Ross_Tran_and_Hiroshi_Yoshida_highly_detailed.png deleted file mode 100644 index 61288fc785..0000000000 Binary files a/artworks/midjourney/27c11e97-6670-423b-9973-cd8b93bc2750_Jonas_nukes_from_heaven_by_Ross_Tran_and_Hiroshi_Yoshida_highly_detailed.png and /dev/null differ diff --git a/artworks/midjourney/283c1038-c033-4cc4-8c16-1e5d79179995_Jonas_proxima_godama.png b/artworks/midjourney/283c1038-c033-4cc4-8c16-1e5d79179995_Jonas_proxima_godama.png deleted file mode 100644 index e65f3f3660..0000000000 Binary files a/artworks/midjourney/283c1038-c033-4cc4-8c16-1e5d79179995_Jonas_proxima_godama.png and /dev/null differ diff --git a/artworks/midjourney/285d46f6-1fe1-4465-9610-8a718ff3f126_legacy_of_life_--hq.png b/artworks/midjourney/285d46f6-1fe1-4465-9610-8a718ff3f126_legacy_of_life_--hq.png deleted file mode 100644 index 4c803aa361..0000000000 Binary files a/artworks/midjourney/285d46f6-1fe1-4465-9610-8a718ff3f126_legacy_of_life_--hq.png and /dev/null differ diff --git a/artworks/midjourney/288c1243-c127-48f2-8066-fce06ee2f95a_SauronGandalf__--w_512_--h_768_--hd.png b/artworks/midjourney/288c1243-c127-48f2-8066-fce06ee2f95a_SauronGandalf__--w_512_--h_768_--hd.png deleted file mode 100644 index 67c850425e..0000000000 Binary files a/artworks/midjourney/288c1243-c127-48f2-8066-fce06ee2f95a_SauronGandalf__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/28c896ab-2c9e-459f-abf4-e910c729800c_Jonas_the_evolution_of_human_life.png b/artworks/midjourney/28c896ab-2c9e-459f-abf4-e910c729800c_Jonas_the_evolution_of_human_life.png deleted file mode 100644 index 76ebfaedec..0000000000 Binary files a/artworks/midjourney/28c896ab-2c9e-459f-abf4-e910c729800c_Jonas_the_evolution_of_human_life.png and /dev/null differ diff --git a/artworks/midjourney/28ed9b37-d444-4a6a-844a-338842ae1497_vikings._by_Dan_Mumford_matte_painting_Studio_Ghibli_--w_768_--h_512_--hd.png b/artworks/midjourney/28ed9b37-d444-4a6a-844a-338842ae1497_vikings._by_Dan_Mumford_matte_painting_Studio_Ghibli_--w_768_--h_512_--hd.png deleted file mode 100644 index fbae043ba0..0000000000 Binary files a/artworks/midjourney/28ed9b37-d444-4a6a-844a-338842ae1497_vikings._by_Dan_Mumford_matte_painting_Studio_Ghibli_--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/295a7399-1631-4a8e-8b85-8848c2ae641d_how_about_no.png b/artworks/midjourney/295a7399-1631-4a8e-8b85-8848c2ae641d_how_about_no.png deleted file mode 100644 index c65d69250c..0000000000 Binary files a/artworks/midjourney/295a7399-1631-4a8e-8b85-8848c2ae641d_how_about_no.png and /dev/null differ diff --git a/artworks/midjourney/299de685-d2ab-4a14-bcd6-ea12e343a4bb_Jonas_grains_of_crystallite_sand_water_in_your_eyes.png b/artworks/midjourney/299de685-d2ab-4a14-bcd6-ea12e343a4bb_Jonas_grains_of_crystallite_sand_water_in_your_eyes.png deleted file mode 100644 index 0d3fbf2646..0000000000 Binary files a/artworks/midjourney/299de685-d2ab-4a14-bcd6-ea12e343a4bb_Jonas_grains_of_crystallite_sand_water_in_your_eyes.png and /dev/null differ diff --git a/artworks/midjourney/29aaeed6-c1ed-481c-8031-62813c4bec66__entropy.png b/artworks/midjourney/29aaeed6-c1ed-481c-8031-62813c4bec66__entropy.png deleted file mode 100644 index c70b4a826d..0000000000 Binary files a/artworks/midjourney/29aaeed6-c1ed-481c-8031-62813c4bec66__entropy.png and /dev/null differ diff --git a/artworks/midjourney/29fbde6e-af83-4197-ab85-1636c64f78ca_abstract_no._1._oil_on_canvas_colorful_.png b/artworks/midjourney/29fbde6e-af83-4197-ab85-1636c64f78ca_abstract_no._1._oil_on_canvas_colorful_.png deleted file mode 100644 index d1e84dff48..0000000000 Binary files a/artworks/midjourney/29fbde6e-af83-4197-ab85-1636c64f78ca_abstract_no._1._oil_on_canvas_colorful_.png and /dev/null differ diff --git a/artworks/midjourney/2a1bc498-9867-4480-99cd-351439a3d97d_fantastic_journey._by_Beksinski_and_T._Burgler.png b/artworks/midjourney/2a1bc498-9867-4480-99cd-351439a3d97d_fantastic_journey._by_Beksinski_and_T._Burgler.png deleted file mode 100644 index 1cbd5733d9..0000000000 Binary files a/artworks/midjourney/2a1bc498-9867-4480-99cd-351439a3d97d_fantastic_journey._by_Beksinski_and_T._Burgler.png and /dev/null differ diff --git a/artworks/midjourney/2bed60db-40f7-47ff-9c5b-26235d02045e_Jonas_grains_of_crystallite_sand_wind_in_your_eyes.png b/artworks/midjourney/2bed60db-40f7-47ff-9c5b-26235d02045e_Jonas_grains_of_crystallite_sand_wind_in_your_eyes.png deleted file mode 100644 index de355887e9..0000000000 Binary files a/artworks/midjourney/2bed60db-40f7-47ff-9c5b-26235d02045e_Jonas_grains_of_crystallite_sand_wind_in_your_eyes.png and /dev/null differ diff --git a/artworks/midjourney/2c4981a1-a106-4544-b27c-5ecd4932c5c5_lost_immortal_soul_portal_gaze_DD_--hq__--nostretch__--w_512_--h_768_--hd.png b/artworks/midjourney/2c4981a1-a106-4544-b27c-5ecd4932c5c5_lost_immortal_soul_portal_gaze_DD_--hq__--nostretch__--w_512_--h_768_--hd.png deleted file mode 100644 index 08d1022898..0000000000 Binary files a/artworks/midjourney/2c4981a1-a106-4544-b27c-5ecd4932c5c5_lost_immortal_soul_portal_gaze_DD_--hq__--nostretch__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/2c8959d7-bd18-4c01-9c7b-581038ecf509_Jonas_fractured_human_portrait__--w_320_--h_448.png b/artworks/midjourney/2c8959d7-bd18-4c01-9c7b-581038ecf509_Jonas_fractured_human_portrait__--w_320_--h_448.png deleted file mode 100644 index 7501c61393..0000000000 Binary files a/artworks/midjourney/2c8959d7-bd18-4c01-9c7b-581038ecf509_Jonas_fractured_human_portrait__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/2cebe987-bffb-4c0a-be55-515f249e877a_Jonas_the_fractures_of_my_mind_are_scattered_all_around_me.png b/artworks/midjourney/2cebe987-bffb-4c0a-be55-515f249e877a_Jonas_the_fractures_of_my_mind_are_scattered_all_around_me.png deleted file mode 100644 index 9b794dd775..0000000000 Binary files a/artworks/midjourney/2cebe987-bffb-4c0a-be55-515f249e877a_Jonas_the_fractures_of_my_mind_are_scattered_all_around_me.png and /dev/null differ diff --git a/artworks/midjourney/2cfb90cb-237e-4262-9f1a-8f65068b4154_The_Merovingian_--no_hiphop__--w_320_--h_448.png b/artworks/midjourney/2cfb90cb-237e-4262-9f1a-8f65068b4154_The_Merovingian_--no_hiphop__--w_320_--h_448.png deleted file mode 100644 index a00d04b551..0000000000 Binary files a/artworks/midjourney/2cfb90cb-237e-4262-9f1a-8f65068b4154_The_Merovingian_--no_hiphop__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/2d31f4b3-9fb8-45a1-9b34-37b65c72d967_The_Grand_Wizard_The_Prestige__--w_320_--h_448.png b/artworks/midjourney/2d31f4b3-9fb8-45a1-9b34-37b65c72d967_The_Grand_Wizard_The_Prestige__--w_320_--h_448.png deleted file mode 100644 index 744c56b11e..0000000000 Binary files a/artworks/midjourney/2d31f4b3-9fb8-45a1-9b34-37b65c72d967_The_Grand_Wizard_The_Prestige__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/2d60b07d-fc5e-4e8c-9b4c-f541ef8f11cb_where_is_your_god_now.png b/artworks/midjourney/2d60b07d-fc5e-4e8c-9b4c-f541ef8f11cb_where_is_your_god_now.png deleted file mode 100644 index 4e73f693aa..0000000000 Binary files a/artworks/midjourney/2d60b07d-fc5e-4e8c-9b4c-f541ef8f11cb_where_is_your_god_now.png and /dev/null differ diff --git a/artworks/midjourney/2d940191-5e92-486c-a3ed-03f313f8c63f_Jonas_the_throttle_of_life.png b/artworks/midjourney/2d940191-5e92-486c-a3ed-03f313f8c63f_Jonas_the_throttle_of_life.png deleted file mode 100644 index ffc86f8427..0000000000 Binary files a/artworks/midjourney/2d940191-5e92-486c-a3ed-03f313f8c63f_Jonas_the_throttle_of_life.png and /dev/null differ diff --git a/artworks/midjourney/2dc698e3-d0a7-406e-a137-d98dd86b6fde_Jonas_Cthulhu_in_bathtub__--w_448_--h_320.png b/artworks/midjourney/2dc698e3-d0a7-406e-a137-d98dd86b6fde_Jonas_Cthulhu_in_bathtub__--w_448_--h_320.png deleted file mode 100644 index 0908e18670..0000000000 Binary files a/artworks/midjourney/2dc698e3-d0a7-406e-a137-d98dd86b6fde_Jonas_Cthulhu_in_bathtub__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/2dcfc6fe-841e-4625-a10d-c76d62adb6ec_you_make_me_crazy.png b/artworks/midjourney/2dcfc6fe-841e-4625-a10d-c76d62adb6ec_you_make_me_crazy.png deleted file mode 100644 index b507650860..0000000000 Binary files a/artworks/midjourney/2dcfc6fe-841e-4625-a10d-c76d62adb6ec_you_make_me_crazy.png and /dev/null differ diff --git a/artworks/midjourney/2eb0494b-fbe0-43a7-bc36-72efe92d7e52_the_Worlds_end._by_james_gurney_matte_painting_CGSociety_fantasy_full_of_colors_wow_ultra_photorealistic_wow_postprocessing.png b/artworks/midjourney/2eb0494b-fbe0-43a7-bc36-72efe92d7e52_the_Worlds_end._by_james_gurney_matte_painting_CGSociety_fantasy_full_of_colors_wow_ultra_photorealistic_wow_postprocessing.png deleted file mode 100644 index 1b441e8d3f..0000000000 Binary files a/artworks/midjourney/2eb0494b-fbe0-43a7-bc36-72efe92d7e52_the_Worlds_end._by_james_gurney_matte_painting_CGSociety_fantasy_full_of_colors_wow_ultra_photorealistic_wow_postprocessing.png and /dev/null differ diff --git a/artworks/midjourney/2ed1ad24-dbfb-41ae-afdf-fdf13d49d9c7_reverent_irreverend.png b/artworks/midjourney/2ed1ad24-dbfb-41ae-afdf-fdf13d49d9c7_reverent_irreverend.png deleted file mode 100644 index c4c139b2e9..0000000000 Binary files a/artworks/midjourney/2ed1ad24-dbfb-41ae-afdf-fdf13d49d9c7_reverent_irreverend.png and /dev/null differ diff --git a/artworks/midjourney/2f454f72-8b09-4024-b5a2-ff2e36d152f8_antagonist._by_Luke_Sywalk_and_Beksinski.png b/artworks/midjourney/2f454f72-8b09-4024-b5a2-ff2e36d152f8_antagonist._by_Luke_Sywalk_and_Beksinski.png deleted file mode 100644 index 67213b0519..0000000000 Binary files a/artworks/midjourney/2f454f72-8b09-4024-b5a2-ff2e36d152f8_antagonist._by_Luke_Sywalk_and_Beksinski.png and /dev/null differ diff --git a/artworks/midjourney/2f92d297-a763-4f0c-9b02-893fac1af658_the_fabled_creator_wades_through_its_creation.png b/artworks/midjourney/2f92d297-a763-4f0c-9b02-893fac1af658_the_fabled_creator_wades_through_its_creation.png deleted file mode 100644 index b36ba7c90b..0000000000 Binary files a/artworks/midjourney/2f92d297-a763-4f0c-9b02-893fac1af658_the_fabled_creator_wades_through_its_creation.png and /dev/null differ diff --git a/artworks/midjourney/2fc0099d-c3e1-476b-8568-84b1bb2e01f2_embodied_soul.png b/artworks/midjourney/2fc0099d-c3e1-476b-8568-84b1bb2e01f2_embodied_soul.png deleted file mode 100644 index b3eeac043e..0000000000 Binary files a/artworks/midjourney/2fc0099d-c3e1-476b-8568-84b1bb2e01f2_embodied_soul.png and /dev/null differ diff --git a/artworks/midjourney/2fd2f863-cd38-495c-8e3b-d963a0df7b62_harbinger_of_sorrow_--no_happy.png b/artworks/midjourney/2fd2f863-cd38-495c-8e3b-d963a0df7b62_harbinger_of_sorrow_--no_happy.png deleted file mode 100644 index 7a1ee2a032..0000000000 Binary files a/artworks/midjourney/2fd2f863-cd38-495c-8e3b-d963a0df7b62_harbinger_of_sorrow_--no_happy.png and /dev/null differ diff --git a/artworks/midjourney/2ffee785-a0b1-4910-8c30-e9b79bd2b589_radiant_extinction_event__--w_448_--h_320.png b/artworks/midjourney/2ffee785-a0b1-4910-8c30-e9b79bd2b589_radiant_extinction_event__--w_448_--h_320.png deleted file mode 100644 index 09c380c92b..0000000000 Binary files a/artworks/midjourney/2ffee785-a0b1-4910-8c30-e9b79bd2b589_radiant_extinction_event__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/305b6cb9-b3d1-43b0-adb0-04f60788ddf1_Jonas_the_conscious_mind_only_thought_that_it_was_making_decisions.png b/artworks/midjourney/305b6cb9-b3d1-43b0-adb0-04f60788ddf1_Jonas_the_conscious_mind_only_thought_that_it_was_making_decisions.png deleted file mode 100644 index af3e253121..0000000000 Binary files a/artworks/midjourney/305b6cb9-b3d1-43b0-adb0-04f60788ddf1_Jonas_the_conscious_mind_only_thought_that_it_was_making_decisions.png and /dev/null differ diff --git a/artworks/midjourney/3106de96-ea00-4005-b3f7-fd0425627768_your_emotions_have_an_echo._by_dan_mumford.png b/artworks/midjourney/3106de96-ea00-4005-b3f7-fd0425627768_your_emotions_have_an_echo._by_dan_mumford.png deleted file mode 100644 index 66a4569eac..0000000000 Binary files a/artworks/midjourney/3106de96-ea00-4005-b3f7-fd0425627768_your_emotions_have_an_echo._by_dan_mumford.png and /dev/null differ diff --git a/artworks/midjourney/317dd9cc-01ea-438b-a3c9-d7584d8306cd_suprafragil_bestiary__--w_512_--h_768_--hd.png b/artworks/midjourney/317dd9cc-01ea-438b-a3c9-d7584d8306cd_suprafragil_bestiary__--w_512_--h_768_--hd.png deleted file mode 100644 index ae5d4f543a..0000000000 Binary files a/artworks/midjourney/317dd9cc-01ea-438b-a3c9-d7584d8306cd_suprafragil_bestiary__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/3274210b-a2c6-458e-97f6-b2f95f3eaa63_tardigrade_supernova__--w_448_--h_320.png b/artworks/midjourney/3274210b-a2c6-458e-97f6-b2f95f3eaa63_tardigrade_supernova__--w_448_--h_320.png deleted file mode 100644 index 47c8ddc538..0000000000 Binary files a/artworks/midjourney/3274210b-a2c6-458e-97f6-b2f95f3eaa63_tardigrade_supernova__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/3295e407-1b84-47d6-8dee-55330be76657_Jonas_The_Syndicate_matte_painting_hughly_detailed_photorealistic_by_Octavio_Ocampo.png b/artworks/midjourney/3295e407-1b84-47d6-8dee-55330be76657_Jonas_The_Syndicate_matte_painting_hughly_detailed_photorealistic_by_Octavio_Ocampo.png deleted file mode 100644 index aebd8cacac..0000000000 Binary files a/artworks/midjourney/3295e407-1b84-47d6-8dee-55330be76657_Jonas_The_Syndicate_matte_painting_hughly_detailed_photorealistic_by_Octavio_Ocampo.png and /dev/null differ diff --git a/artworks/midjourney/32ae2590-6170-42f1-8e85-17361afcfd7b_Jonas_Seraphim_angelarium_by_Octavio_Ocampo__--w_320_--h_448.png b/artworks/midjourney/32ae2590-6170-42f1-8e85-17361afcfd7b_Jonas_Seraphim_angelarium_by_Octavio_Ocampo__--w_320_--h_448.png deleted file mode 100644 index 2447d10c33..0000000000 Binary files a/artworks/midjourney/32ae2590-6170-42f1-8e85-17361afcfd7b_Jonas_Seraphim_angelarium_by_Octavio_Ocampo__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/32c3f7bd-2cb1-47bc-aad4-4fa2c6200d40_Jonas_meme-worthy_image_12x12_pixel_art.png b/artworks/midjourney/32c3f7bd-2cb1-47bc-aad4-4fa2c6200d40_Jonas_meme-worthy_image_12x12_pixel_art.png deleted file mode 100644 index 906c29f74e..0000000000 Binary files a/artworks/midjourney/32c3f7bd-2cb1-47bc-aad4-4fa2c6200d40_Jonas_meme-worthy_image_12x12_pixel_art.png and /dev/null differ diff --git a/artworks/midjourney/32caf289-9327-45a3-b5c1-0b1050699017_the_why_is_the_how.png b/artworks/midjourney/32caf289-9327-45a3-b5c1-0b1050699017_the_why_is_the_how.png deleted file mode 100644 index 7349efb526..0000000000 Binary files a/artworks/midjourney/32caf289-9327-45a3-b5c1-0b1050699017_the_why_is_the_how.png and /dev/null differ diff --git a/artworks/midjourney/3369da28-8adc-4242-8140-bee93df56d6c_gigafactory_in_the_desert__--w_768_--h_512_--hd.png b/artworks/midjourney/3369da28-8adc-4242-8140-bee93df56d6c_gigafactory_in_the_desert__--w_768_--h_512_--hd.png deleted file mode 100644 index 205d608051..0000000000 Binary files a/artworks/midjourney/3369da28-8adc-4242-8140-bee93df56d6c_gigafactory_in_the_desert__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/3410fce4-6bfb-461b-bdd2-67c8298402a0_httpss.mj.runvhX5kj__a_really_bad_guy_--w_320_--h_448.png b/artworks/midjourney/3410fce4-6bfb-461b-bdd2-67c8298402a0_httpss.mj.runvhX5kj__a_really_bad_guy_--w_320_--h_448.png deleted file mode 100644 index edcce2e7af..0000000000 Binary files a/artworks/midjourney/3410fce4-6bfb-461b-bdd2-67c8298402a0_httpss.mj.runvhX5kj__a_really_bad_guy_--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/341487ca-8077-4cb0-9faa-3fefdde4c5ee_genesis_of_the_mind.png b/artworks/midjourney/341487ca-8077-4cb0-9faa-3fefdde4c5ee_genesis_of_the_mind.png deleted file mode 100644 index 75dbc8a072..0000000000 Binary files a/artworks/midjourney/341487ca-8077-4cb0-9faa-3fefdde4c5ee_genesis_of_the_mind.png and /dev/null differ diff --git a/artworks/midjourney/34d6503f-62af-4424-9090-19923207a335_monolith_supernova__--w_448_--h_320.png b/artworks/midjourney/34d6503f-62af-4424-9090-19923207a335_monolith_supernova__--w_448_--h_320.png deleted file mode 100644 index 08efa363fe..0000000000 Binary files a/artworks/midjourney/34d6503f-62af-4424-9090-19923207a335_monolith_supernova__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/35499b28-a667-457b-be7f-4adb1f480057_namcha.png b/artworks/midjourney/35499b28-a667-457b-be7f-4adb1f480057_namcha.png deleted file mode 100644 index 084757e5fd..0000000000 Binary files a/artworks/midjourney/35499b28-a667-457b-be7f-4adb1f480057_namcha.png and /dev/null differ diff --git a/artworks/midjourney/35706ea4-3f11-450d-b284-61b432996645_la_pauvre_muse.png b/artworks/midjourney/35706ea4-3f11-450d-b284-61b432996645_la_pauvre_muse.png deleted file mode 100644 index aa2237fefd..0000000000 Binary files a/artworks/midjourney/35706ea4-3f11-450d-b284-61b432996645_la_pauvre_muse.png and /dev/null differ diff --git a/artworks/midjourney/3585dda1-009f-48d9-8f25-44b9f07af38b_Jonas_advanced_wizardry_of_the_fearful_apprentice_wizard__--w_448_--h_320.png b/artworks/midjourney/3585dda1-009f-48d9-8f25-44b9f07af38b_Jonas_advanced_wizardry_of_the_fearful_apprentice_wizard__--w_448_--h_320.png deleted file mode 100644 index 9b49d37d55..0000000000 Binary files a/artworks/midjourney/3585dda1-009f-48d9-8f25-44b9f07af38b_Jonas_advanced_wizardry_of_the_fearful_apprentice_wizard__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/35ace163-eef5-43aa-8900-c21f7433d78b_THE_HUMAN_Print_by_DimitriSirenkoArt.png b/artworks/midjourney/35ace163-eef5-43aa-8900-c21f7433d78b_THE_HUMAN_Print_by_DimitriSirenkoArt.png deleted file mode 100644 index 2abe630197..0000000000 Binary files a/artworks/midjourney/35ace163-eef5-43aa-8900-c21f7433d78b_THE_HUMAN_Print_by_DimitriSirenkoArt.png and /dev/null differ diff --git a/artworks/midjourney/35ef59a4-926d-41d8-9e3f-9f439000d2fd_the_foundations_of_origin_void_of_existence_matte_painting_genesis_trending_on_artstation_high_resolution.png b/artworks/midjourney/35ef59a4-926d-41d8-9e3f-9f439000d2fd_the_foundations_of_origin_void_of_existence_matte_painting_genesis_trending_on_artstation_high_resolution.png deleted file mode 100644 index aa475c02ff..0000000000 Binary files a/artworks/midjourney/35ef59a4-926d-41d8-9e3f-9f439000d2fd_the_foundations_of_origin_void_of_existence_matte_painting_genesis_trending_on_artstation_high_resolution.png and /dev/null differ diff --git a/artworks/midjourney/3640f492-cd89-47e8-9ada-2f776a703820_Jonas_second_coming_rapture_of_souls.png b/artworks/midjourney/3640f492-cd89-47e8-9ada-2f776a703820_Jonas_second_coming_rapture_of_souls.png deleted file mode 100644 index a1a94fc89f..0000000000 Binary files a/artworks/midjourney/3640f492-cd89-47e8-9ada-2f776a703820_Jonas_second_coming_rapture_of_souls.png and /dev/null differ diff --git a/artworks/midjourney/37814629-ed6f-4bd3-b35f-12394aff4903_fantastagorc__--w_320_--h_448.png b/artworks/midjourney/37814629-ed6f-4bd3-b35f-12394aff4903_fantastagorc__--w_320_--h_448.png deleted file mode 100644 index 9352e833cd..0000000000 Binary files a/artworks/midjourney/37814629-ed6f-4bd3-b35f-12394aff4903_fantastagorc__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/386fc653-83bc-48fd-b45b-dac41230a62a_httpss.mj.runCKy7xw.png b/artworks/midjourney/386fc653-83bc-48fd-b45b-dac41230a62a_httpss.mj.runCKy7xw.png deleted file mode 100644 index 0ec7df3446..0000000000 Binary files a/artworks/midjourney/386fc653-83bc-48fd-b45b-dac41230a62a_httpss.mj.runCKy7xw.png and /dev/null differ diff --git a/artworks/midjourney/38b7d226-2b38-4ae0-b497-a76ae5f0f9fe_buck_Hudson_River_School_--w_512.png b/artworks/midjourney/38b7d226-2b38-4ae0-b497-a76ae5f0f9fe_buck_Hudson_River_School_--w_512.png deleted file mode 100644 index 352030e985..0000000000 Binary files a/artworks/midjourney/38b7d226-2b38-4ae0-b497-a76ae5f0f9fe_buck_Hudson_River_School_--w_512.png and /dev/null differ diff --git a/artworks/midjourney/39266ac1-3ef8-484d-9d19-78c66061d3ae_intergalactic_califragilic_gumpf.png b/artworks/midjourney/39266ac1-3ef8-484d-9d19-78c66061d3ae_intergalactic_califragilic_gumpf.png deleted file mode 100644 index 40be461f2b..0000000000 Binary files a/artworks/midjourney/39266ac1-3ef8-484d-9d19-78c66061d3ae_intergalactic_califragilic_gumpf.png and /dev/null differ diff --git a/artworks/midjourney/3935a1f0-8520-49bd-9939-5e7426d9352a_Jonas_httpss.mj.runFqh3Sh__the_pyramid_of_awesome_by_Glenn_Fabry.png b/artworks/midjourney/3935a1f0-8520-49bd-9939-5e7426d9352a_Jonas_httpss.mj.runFqh3Sh__the_pyramid_of_awesome_by_Glenn_Fabry.png deleted file mode 100644 index 8ad5803713..0000000000 Binary files a/artworks/midjourney/3935a1f0-8520-49bd-9939-5e7426d9352a_Jonas_httpss.mj.runFqh3Sh__the_pyramid_of_awesome_by_Glenn_Fabry.png and /dev/null differ diff --git a/artworks/midjourney/396bad14-4ed8-4140-b428-356c7077858e_karma.png b/artworks/midjourney/396bad14-4ed8-4140-b428-356c7077858e_karma.png deleted file mode 100644 index 6b8dd76e49..0000000000 Binary files a/artworks/midjourney/396bad14-4ed8-4140-b428-356c7077858e_karma.png and /dev/null differ diff --git a/artworks/midjourney/39afabaa-3e58-4284-93c5-8d1cf9a29d74_Cube_1997_HorrorSci-fi.png b/artworks/midjourney/39afabaa-3e58-4284-93c5-8d1cf9a29d74_Cube_1997_HorrorSci-fi.png deleted file mode 100644 index 6939d37c66..0000000000 Binary files a/artworks/midjourney/39afabaa-3e58-4284-93c5-8d1cf9a29d74_Cube_1997_HorrorSci-fi.png and /dev/null differ diff --git a/artworks/midjourney/39eb9d95-c891-4351-8ea3-bb0235c67187_The_Merovingian___--w_320_--h_448.png b/artworks/midjourney/39eb9d95-c891-4351-8ea3-bb0235c67187_The_Merovingian___--w_320_--h_448.png deleted file mode 100644 index fedf1ecd3a..0000000000 Binary files a/artworks/midjourney/39eb9d95-c891-4351-8ea3-bb0235c67187_The_Merovingian___--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/3a50509b-0acc-4ee7-aa40-b3d516ab587c_sad_portrait_--hq.png b/artworks/midjourney/3a50509b-0acc-4ee7-aa40-b3d516ab587c_sad_portrait_--hq.png deleted file mode 100644 index c7220f9475..0000000000 Binary files a/artworks/midjourney/3a50509b-0acc-4ee7-aa40-b3d516ab587c_sad_portrait_--hq.png and /dev/null differ diff --git a/artworks/midjourney/3a8a5065-6da7-466d-b52b-44d4164d8096_attack_of_the_monster_Cthulhu._matte_painting_detailed_photorealistic.png b/artworks/midjourney/3a8a5065-6da7-466d-b52b-44d4164d8096_attack_of_the_monster_Cthulhu._matte_painting_detailed_photorealistic.png deleted file mode 100644 index 45806c0800..0000000000 Binary files a/artworks/midjourney/3a8a5065-6da7-466d-b52b-44d4164d8096_attack_of_the_monster_Cthulhu._matte_painting_detailed_photorealistic.png and /dev/null differ diff --git a/artworks/midjourney/3b0415ff-4502-40e0-be60-a27cf4ab13a8_teddy_bear_holding_sign_that_reads_I_love_nuts_photograph.png b/artworks/midjourney/3b0415ff-4502-40e0-be60-a27cf4ab13a8_teddy_bear_holding_sign_that_reads_I_love_nuts_photograph.png deleted file mode 100644 index 2df3c92f76..0000000000 Binary files a/artworks/midjourney/3b0415ff-4502-40e0-be60-a27cf4ab13a8_teddy_bear_holding_sign_that_reads_I_love_nuts_photograph.png and /dev/null differ diff --git a/artworks/midjourney/3b331966-67fd-462b-a72f-f56ef607c341_Jonas_Irredentism.png b/artworks/midjourney/3b331966-67fd-462b-a72f-f56ef607c341_Jonas_Irredentism.png deleted file mode 100644 index ce64a475f4..0000000000 Binary files a/artworks/midjourney/3b331966-67fd-462b-a72f-f56ef607c341_Jonas_Irredentism.png and /dev/null differ diff --git a/artworks/midjourney/3bc255e6-cd8e-4fa9-86cb-e2c15dd50722_the_fabled_creator_rests_on_the_seventh_day_of_creation_--w_412.png b/artworks/midjourney/3bc255e6-cd8e-4fa9-86cb-e2c15dd50722_the_fabled_creator_rests_on_the_seventh_day_of_creation_--w_412.png deleted file mode 100644 index 8ca5f2f599..0000000000 Binary files a/artworks/midjourney/3bc255e6-cd8e-4fa9-86cb-e2c15dd50722_the_fabled_creator_rests_on_the_seventh_day_of_creation_--w_412.png and /dev/null differ diff --git a/artworks/midjourney/3c22bc30-e17d-4beb-a827-1dea6e3970c2_loving_grace.png b/artworks/midjourney/3c22bc30-e17d-4beb-a827-1dea6e3970c2_loving_grace.png deleted file mode 100644 index 5b8065259d..0000000000 Binary files a/artworks/midjourney/3c22bc30-e17d-4beb-a827-1dea6e3970c2_loving_grace.png and /dev/null differ diff --git a/artworks/midjourney/3c511bc7-fe66-4774-9c4e-0e11f5e8b2ef_edge_of_tomorrow._CGSociety_postprocessing_scifi_war_--hq_--w_768_--h_512.png b/artworks/midjourney/3c511bc7-fe66-4774-9c4e-0e11f5e8b2ef_edge_of_tomorrow._CGSociety_postprocessing_scifi_war_--hq_--w_768_--h_512.png deleted file mode 100644 index eb3ddd9a94..0000000000 Binary files a/artworks/midjourney/3c511bc7-fe66-4774-9c4e-0e11f5e8b2ef_edge_of_tomorrow._CGSociety_postprocessing_scifi_war_--hq_--w_768_--h_512.png and /dev/null differ diff --git a/artworks/midjourney/3cf4db4d-b533-49b0-a6d0-7f87709ca9f6_creative_process.png b/artworks/midjourney/3cf4db4d-b533-49b0-a6d0-7f87709ca9f6_creative_process.png deleted file mode 100644 index 9cef0535cc..0000000000 Binary files a/artworks/midjourney/3cf4db4d-b533-49b0-a6d0-7f87709ca9f6_creative_process.png and /dev/null differ diff --git a/artworks/midjourney/3d02f32a-f3e4-485d-914f-9d9181a7b9fd_death_and_destruction_becometh__--w_768_--h_512_--hd.png b/artworks/midjourney/3d02f32a-f3e4-485d-914f-9d9181a7b9fd_death_and_destruction_becometh__--w_768_--h_512_--hd.png deleted file mode 100644 index 35241e9001..0000000000 Binary files a/artworks/midjourney/3d02f32a-f3e4-485d-914f-9d9181a7b9fd_death_and_destruction_becometh__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/3d0c4f92-0a55-4c43-affe-7fcaeb4cf7d5_the_prompt_engineers_lab.png b/artworks/midjourney/3d0c4f92-0a55-4c43-affe-7fcaeb4cf7d5_the_prompt_engineers_lab.png deleted file mode 100644 index bdcb233201..0000000000 Binary files a/artworks/midjourney/3d0c4f92-0a55-4c43-affe-7fcaeb4cf7d5_the_prompt_engineers_lab.png and /dev/null differ diff --git a/artworks/midjourney/3dbe6d22-9850-4458-9fcb-abed7901548f_Jonas_The_Impossible_Painting.png b/artworks/midjourney/3dbe6d22-9850-4458-9fcb-abed7901548f_Jonas_The_Impossible_Painting.png deleted file mode 100644 index 1e1735783f..0000000000 Binary files a/artworks/midjourney/3dbe6d22-9850-4458-9fcb-abed7901548f_Jonas_The_Impossible_Painting.png and /dev/null differ diff --git a/artworks/midjourney/3ef723c4-5a48-4832-bbd4-df2a8511f4d2_Jonas_the_pyramid_of_awesome_by_Glenn_Fabry.png b/artworks/midjourney/3ef723c4-5a48-4832-bbd4-df2a8511f4d2_Jonas_the_pyramid_of_awesome_by_Glenn_Fabry.png deleted file mode 100644 index e62767ef65..0000000000 Binary files a/artworks/midjourney/3ef723c4-5a48-4832-bbd4-df2a8511f4d2_Jonas_the_pyramid_of_awesome_by_Glenn_Fabry.png and /dev/null differ diff --git a/artworks/midjourney/3f9c72c7-4100-488e-ae56-af706af45525_propaganda_poster_for_illuminati.png b/artworks/midjourney/3f9c72c7-4100-488e-ae56-af706af45525_propaganda_poster_for_illuminati.png deleted file mode 100644 index b42f5d902a..0000000000 Binary files a/artworks/midjourney/3f9c72c7-4100-488e-ae56-af706af45525_propaganda_poster_for_illuminati.png and /dev/null differ diff --git a/artworks/midjourney/4093026f-5daa-4ae5-9106-4b2ddb0f8ba9_httpss.mj.runeFBEBo__Nymphomaniac_--w_320_--h_448.png b/artworks/midjourney/4093026f-5daa-4ae5-9106-4b2ddb0f8ba9_httpss.mj.runeFBEBo__Nymphomaniac_--w_320_--h_448.png deleted file mode 100644 index 50e0aea150..0000000000 Binary files a/artworks/midjourney/4093026f-5daa-4ae5-9106-4b2ddb0f8ba9_httpss.mj.runeFBEBo__Nymphomaniac_--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/414cba90-cd6b-45e5-8e43-da06f8510bf9_holy_freakin_batman_portrait_painting_by_James_Gurney__--w_320_--h_448.png b/artworks/midjourney/414cba90-cd6b-45e5-8e43-da06f8510bf9_holy_freakin_batman_portrait_painting_by_James_Gurney__--w_320_--h_448.png deleted file mode 100644 index cb9360455d..0000000000 Binary files a/artworks/midjourney/414cba90-cd6b-45e5-8e43-da06f8510bf9_holy_freakin_batman_portrait_painting_by_James_Gurney__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/41aa138e-b266-4912-a30e-bd57812ef58f_back_to_zero_--w_512.png b/artworks/midjourney/41aa138e-b266-4912-a30e-bd57812ef58f_back_to_zero_--w_512.png deleted file mode 100644 index ddcb6b4cfe..0000000000 Binary files a/artworks/midjourney/41aa138e-b266-4912-a30e-bd57812ef58f_back_to_zero_--w_512.png and /dev/null differ diff --git a/artworks/midjourney/41d01a44-6be8-489c-a931-4b90d25a4896_untitled._oil_painting_watercolor_line_drawing_by_Luke_Sywalk_James_Gurney_and_Zdzislaw_Beksinski.png b/artworks/midjourney/41d01a44-6be8-489c-a931-4b90d25a4896_untitled._oil_painting_watercolor_line_drawing_by_Luke_Sywalk_James_Gurney_and_Zdzislaw_Beksinski.png deleted file mode 100644 index d441ce34b5..0000000000 Binary files a/artworks/midjourney/41d01a44-6be8-489c-a931-4b90d25a4896_untitled._oil_painting_watercolor_line_drawing_by_Luke_Sywalk_James_Gurney_and_Zdzislaw_Beksinski.png and /dev/null differ diff --git a/artworks/midjourney/42131390-c4a3-4029-822a-1234946e7248_just_below_my_skin_I_am_screaming_80s_polaroid_movement.png b/artworks/midjourney/42131390-c4a3-4029-822a-1234946e7248_just_below_my_skin_I_am_screaming_80s_polaroid_movement.png deleted file mode 100644 index 1849236bc5..0000000000 Binary files a/artworks/midjourney/42131390-c4a3-4029-822a-1234946e7248_just_below_my_skin_I_am_screaming_80s_polaroid_movement.png and /dev/null differ diff --git a/artworks/midjourney/42315d30-d95f-4b12-8967-f47a07c517e5_depeche_world.png b/artworks/midjourney/42315d30-d95f-4b12-8967-f47a07c517e5_depeche_world.png deleted file mode 100644 index 79621b18ac..0000000000 Binary files a/artworks/midjourney/42315d30-d95f-4b12-8967-f47a07c517e5_depeche_world.png and /dev/null differ diff --git a/artworks/midjourney/4246d9b2-740b-480a-aa9e-53299c115350_hola.png b/artworks/midjourney/4246d9b2-740b-480a-aa9e-53299c115350_hola.png deleted file mode 100644 index 31ef34d64f..0000000000 Binary files a/artworks/midjourney/4246d9b2-740b-480a-aa9e-53299c115350_hola.png and /dev/null differ diff --git a/artworks/midjourney/4247df54-0b30-44ba-9f68-ace7a93a61b3_samson_the_great_portrait_by_WLOP_WPAP_WTF__--w_320_--h_448.png b/artworks/midjourney/4247df54-0b30-44ba-9f68-ace7a93a61b3_samson_the_great_portrait_by_WLOP_WPAP_WTF__--w_320_--h_448.png deleted file mode 100644 index 6036ae6c79..0000000000 Binary files a/artworks/midjourney/4247df54-0b30-44ba-9f68-ace7a93a61b3_samson_the_great_portrait_by_WLOP_WPAP_WTF__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/42af1477-a87e-4934-a7da-6573b9f95183_Jonas_httpss.mj.runQsiXJS__At_least_you_would_look_human_now..png b/artworks/midjourney/42af1477-a87e-4934-a7da-6573b9f95183_Jonas_httpss.mj.runQsiXJS__At_least_you_would_look_human_now..png deleted file mode 100644 index b09fdf1cf9..0000000000 Binary files a/artworks/midjourney/42af1477-a87e-4934-a7da-6573b9f95183_Jonas_httpss.mj.runQsiXJS__At_least_you_would_look_human_now..png and /dev/null differ diff --git a/artworks/midjourney/434250bd-497e-4869-9d07-a816bc82c6f5_scientific_artwork.png b/artworks/midjourney/434250bd-497e-4869-9d07-a816bc82c6f5_scientific_artwork.png deleted file mode 100644 index 5ea68da62b..0000000000 Binary files a/artworks/midjourney/434250bd-497e-4869-9d07-a816bc82c6f5_scientific_artwork.png and /dev/null differ diff --git a/artworks/midjourney/434dee05-115b-4df9-976f-f987c5c525b9_glass_box_of_horrors.png b/artworks/midjourney/434dee05-115b-4df9-976f-f987c5c525b9_glass_box_of_horrors.png deleted file mode 100644 index 495fcf75fe..0000000000 Binary files a/artworks/midjourney/434dee05-115b-4df9-976f-f987c5c525b9_glass_box_of_horrors.png and /dev/null differ diff --git a/artworks/midjourney/43cfbcc5-c145-4a7c-83e7-e987d6bcfed1_yargly.png b/artworks/midjourney/43cfbcc5-c145-4a7c-83e7-e987d6bcfed1_yargly.png deleted file mode 100644 index f2e22e3d94..0000000000 Binary files a/artworks/midjourney/43cfbcc5-c145-4a7c-83e7-e987d6bcfed1_yargly.png and /dev/null differ diff --git a/artworks/midjourney/44057c7d-7372-4f25-be6a-10a168b218e9_narddog.png b/artworks/midjourney/44057c7d-7372-4f25-be6a-10a168b218e9_narddog.png deleted file mode 100644 index a7ad52e0bd..0000000000 Binary files a/artworks/midjourney/44057c7d-7372-4f25-be6a-10a168b218e9_narddog.png and /dev/null differ diff --git a/artworks/midjourney/44b73cc7-0ab1-4b2b-be6b-714f80181d7a_Jonas_armchair_in_the_shape_of_a_hand.png b/artworks/midjourney/44b73cc7-0ab1-4b2b-be6b-714f80181d7a_Jonas_armchair_in_the_shape_of_a_hand.png deleted file mode 100644 index 3cc177eaa3..0000000000 Binary files a/artworks/midjourney/44b73cc7-0ab1-4b2b-be6b-714f80181d7a_Jonas_armchair_in_the_shape_of_a_hand.png and /dev/null differ diff --git a/artworks/midjourney/452f2e3e-54fe-4ea1-b6f2-87e8fc2f7767_Jonas_inferior_human.png b/artworks/midjourney/452f2e3e-54fe-4ea1-b6f2-87e8fc2f7767_Jonas_inferior_human.png deleted file mode 100644 index cad4b58c03..0000000000 Binary files a/artworks/midjourney/452f2e3e-54fe-4ea1-b6f2-87e8fc2f7767_Jonas_inferior_human.png and /dev/null differ diff --git a/artworks/midjourney/4576ccc4-04eb-4294-8901-75cdf7363830_Jonas_capitalistic_tendencies_of_the_inner_circle.png b/artworks/midjourney/4576ccc4-04eb-4294-8901-75cdf7363830_Jonas_capitalistic_tendencies_of_the_inner_circle.png deleted file mode 100644 index f09da178fa..0000000000 Binary files a/artworks/midjourney/4576ccc4-04eb-4294-8901-75cdf7363830_Jonas_capitalistic_tendencies_of_the_inner_circle.png and /dev/null differ diff --git a/artworks/midjourney/458a16f7-dd83-4529-9aca-deccaddc4fd5_nooooo11.png b/artworks/midjourney/458a16f7-dd83-4529-9aca-deccaddc4fd5_nooooo11.png deleted file mode 100644 index 1f00baa1dd..0000000000 Binary files a/artworks/midjourney/458a16f7-dd83-4529-9aca-deccaddc4fd5_nooooo11.png and /dev/null differ diff --git a/artworks/midjourney/460f9ba4-8c9b-4e7b-afeb-19c8fab5ae9f_Jonas_pay_the_price_--seed_666.png b/artworks/midjourney/460f9ba4-8c9b-4e7b-afeb-19c8fab5ae9f_Jonas_pay_the_price_--seed_666.png deleted file mode 100644 index 40078ff32c..0000000000 Binary files a/artworks/midjourney/460f9ba4-8c9b-4e7b-afeb-19c8fab5ae9f_Jonas_pay_the_price_--seed_666.png and /dev/null differ diff --git a/artworks/midjourney/46688896-7df2-4d59-8b26-9f4a7a67fba1_space_amoeba.png b/artworks/midjourney/46688896-7df2-4d59-8b26-9f4a7a67fba1_space_amoeba.png deleted file mode 100644 index d9d83c512f..0000000000 Binary files a/artworks/midjourney/46688896-7df2-4d59-8b26-9f4a7a67fba1_space_amoeba.png and /dev/null differ diff --git a/artworks/midjourney/469671d1-ff73-4cbb-b5ff-467b2d5e91eb_the_prompt_engineers_lab.png b/artworks/midjourney/469671d1-ff73-4cbb-b5ff-467b2d5e91eb_the_prompt_engineers_lab.png deleted file mode 100644 index a1d8c48b71..0000000000 Binary files a/artworks/midjourney/469671d1-ff73-4cbb-b5ff-467b2d5e91eb_the_prompt_engineers_lab.png and /dev/null differ diff --git a/artworks/midjourney/46c23fe3-4146-4f3a-b2a2-6f1e255ef19e_ceci_nest_pas_un_monument__--w_448_--h_320.png b/artworks/midjourney/46c23fe3-4146-4f3a-b2a2-6f1e255ef19e_ceci_nest_pas_un_monument__--w_448_--h_320.png deleted file mode 100644 index 03ebc882ba..0000000000 Binary files a/artworks/midjourney/46c23fe3-4146-4f3a-b2a2-6f1e255ef19e_ceci_nest_pas_un_monument__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/47112106-c6f5-478c-9bb6-b5d9ef774c62_fortified_magnitude_of_the_unknown_--w_768_--h_512_--hd.png b/artworks/midjourney/47112106-c6f5-478c-9bb6-b5d9ef774c62_fortified_magnitude_of_the_unknown_--w_768_--h_512_--hd.png deleted file mode 100644 index d8b94b2472..0000000000 Binary files a/artworks/midjourney/47112106-c6f5-478c-9bb6-b5d9ef774c62_fortified_magnitude_of_the_unknown_--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/477cbb46-62f0-4125-b54c-e64860693ec6_interior_melting_with_time_and_space_like_eternity_facing_the_mindful_evidence_of_its_existence.png b/artworks/midjourney/477cbb46-62f0-4125-b54c-e64860693ec6_interior_melting_with_time_and_space_like_eternity_facing_the_mindful_evidence_of_its_existence.png deleted file mode 100644 index 0e0c93d026..0000000000 Binary files a/artworks/midjourney/477cbb46-62f0-4125-b54c-e64860693ec6_interior_melting_with_time_and_space_like_eternity_facing_the_mindful_evidence_of_its_existence.png and /dev/null differ diff --git a/artworks/midjourney/4794ab45-2541-4ac4-b932-fbb6385ab9aa_the_pendulum_swings_both_ways__--w_768_--h_512_--hd.png b/artworks/midjourney/4794ab45-2541-4ac4-b932-fbb6385ab9aa_the_pendulum_swings_both_ways__--w_768_--h_512_--hd.png deleted file mode 100644 index ea08579ebc..0000000000 Binary files a/artworks/midjourney/4794ab45-2541-4ac4-b932-fbb6385ab9aa_the_pendulum_swings_both_ways__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/47b5b356-af05-446b-a2a9-637cbfed1c1c_mugshot_but_underwater__--w_512_--h_768_--hd.png b/artworks/midjourney/47b5b356-af05-446b-a2a9-637cbfed1c1c_mugshot_but_underwater__--w_512_--h_768_--hd.png deleted file mode 100644 index 78d629a97a..0000000000 Binary files a/artworks/midjourney/47b5b356-af05-446b-a2a9-637cbfed1c1c_mugshot_but_underwater__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/47e05a3e-e2bf-4e3f-8d5c-c89ced974229_futuristic_city._by_Albert_Uderzo_and_Rene_Goscinny.png b/artworks/midjourney/47e05a3e-e2bf-4e3f-8d5c-c89ced974229_futuristic_city._by_Albert_Uderzo_and_Rene_Goscinny.png deleted file mode 100644 index 5430cd4e79..0000000000 Binary files a/artworks/midjourney/47e05a3e-e2bf-4e3f-8d5c-c89ced974229_futuristic_city._by_Albert_Uderzo_and_Rene_Goscinny.png and /dev/null differ diff --git a/artworks/midjourney/47e1a2c6-be9b-43d2-acd6-003002eba62b_ancient_goddess._plumage.png b/artworks/midjourney/47e1a2c6-be9b-43d2-acd6-003002eba62b_ancient_goddess._plumage.png deleted file mode 100644 index a04b1058a2..0000000000 Binary files a/artworks/midjourney/47e1a2c6-be9b-43d2-acd6-003002eba62b_ancient_goddess._plumage.png and /dev/null differ diff --git a/artworks/midjourney/47fb349d-4c12-4203-bb0f-238769763e16_spraypuke.png b/artworks/midjourney/47fb349d-4c12-4203-bb0f-238769763e16_spraypuke.png deleted file mode 100644 index 8ac8ee8b89..0000000000 Binary files a/artworks/midjourney/47fb349d-4c12-4203-bb0f-238769763e16_spraypuke.png and /dev/null differ diff --git a/artworks/midjourney/494740c5-8279-4c04-9b5d-0bc1c9d4d0fd_Jonas_the_third_gender.png b/artworks/midjourney/494740c5-8279-4c04-9b5d-0bc1c9d4d0fd_Jonas_the_third_gender.png deleted file mode 100644 index d5ec9877e8..0000000000 Binary files a/artworks/midjourney/494740c5-8279-4c04-9b5d-0bc1c9d4d0fd_Jonas_the_third_gender.png and /dev/null differ diff --git a/artworks/midjourney/49ada7df-0113-4af6-85be-8830c7c26e3a_harbinger_of_light__--w_320_--h_256.png b/artworks/midjourney/49ada7df-0113-4af6-85be-8830c7c26e3a_harbinger_of_light__--w_320_--h_256.png deleted file mode 100644 index 90727bf903..0000000000 Binary files a/artworks/midjourney/49ada7df-0113-4af6-85be-8830c7c26e3a_harbinger_of_light__--w_320_--h_256.png and /dev/null differ diff --git a/artworks/midjourney/49ba7e81-8f17-4f10-b6dc-df02883a317a_Jonas_httpss.mj.runAGQ2KW__I_stumbled_into_you_Accidentally_And_yet_Feels_as_though_you_were_Sent_to_me.png b/artworks/midjourney/49ba7e81-8f17-4f10-b6dc-df02883a317a_Jonas_httpss.mj.runAGQ2KW__I_stumbled_into_you_Accidentally_And_yet_Feels_as_though_you_were_Sent_to_me.png deleted file mode 100644 index 6a49f2a6ab..0000000000 Binary files a/artworks/midjourney/49ba7e81-8f17-4f10-b6dc-df02883a317a_Jonas_httpss.mj.runAGQ2KW__I_stumbled_into_you_Accidentally_And_yet_Feels_as_though_you_were_Sent_to_me.png and /dev/null differ diff --git a/artworks/midjourney/49ea8cd7-0d4c-483c-9e11-b368feee8b2e_sleeping_rough_on_the_street_in_the_rain__--w_768_--h_512_--hd.png b/artworks/midjourney/49ea8cd7-0d4c-483c-9e11-b368feee8b2e_sleeping_rough_on_the_street_in_the_rain__--w_768_--h_512_--hd.png deleted file mode 100644 index 9ace92ea08..0000000000 Binary files a/artworks/midjourney/49ea8cd7-0d4c-483c-9e11-b368feee8b2e_sleeping_rough_on_the_street_in_the_rain__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/49f49801-86be-4426-b5c5-86eca699a8d2_Jonas_Arbeit_macht_frei.png b/artworks/midjourney/49f49801-86be-4426-b5c5-86eca699a8d2_Jonas_Arbeit_macht_frei.png deleted file mode 100644 index d3aba63e26..0000000000 Binary files a/artworks/midjourney/49f49801-86be-4426-b5c5-86eca699a8d2_Jonas_Arbeit_macht_frei.png and /dev/null differ diff --git a/artworks/midjourney/4a472d6a-39a4-405d-9303-5b8ab21ad955_Jonas_the_second_kingdom.png b/artworks/midjourney/4a472d6a-39a4-405d-9303-5b8ab21ad955_Jonas_the_second_kingdom.png deleted file mode 100644 index 8c76b722c9..0000000000 Binary files a/artworks/midjourney/4a472d6a-39a4-405d-9303-5b8ab21ad955_Jonas_the_second_kingdom.png and /dev/null differ diff --git a/artworks/midjourney/4aef04a0-fadb-411c-b4c3-cc7244eca667_peau_salee.png b/artworks/midjourney/4aef04a0-fadb-411c-b4c3-cc7244eca667_peau_salee.png deleted file mode 100644 index bb35483931..0000000000 Binary files a/artworks/midjourney/4aef04a0-fadb-411c-b4c3-cc7244eca667_peau_salee.png and /dev/null differ diff --git a/artworks/midjourney/4b09fd17-ac00-471d-8375-ec4e4e34ac59_harbinger_of_light__--w_320_--h_256.png b/artworks/midjourney/4b09fd17-ac00-471d-8375-ec4e4e34ac59_harbinger_of_light__--w_320_--h_256.png deleted file mode 100644 index 4a8333e9ad..0000000000 Binary files a/artworks/midjourney/4b09fd17-ac00-471d-8375-ec4e4e34ac59_harbinger_of_light__--w_320_--h_256.png and /dev/null differ diff --git a/artworks/midjourney/4b684082-f2f7-4e3f-bb44-fe6b485924a7_person_with_VR_headset_in_padded_cell_psychiatric_hospital.png b/artworks/midjourney/4b684082-f2f7-4e3f-bb44-fe6b485924a7_person_with_VR_headset_in_padded_cell_psychiatric_hospital.png deleted file mode 100644 index 646e9eb6c4..0000000000 Binary files a/artworks/midjourney/4b684082-f2f7-4e3f-bb44-fe6b485924a7_person_with_VR_headset_in_padded_cell_psychiatric_hospital.png and /dev/null differ diff --git a/artworks/midjourney/4c0d85da-5af7-4c08-97c6-fecbb30f1d23_systematic_mapping_of_the_eclectic_mind.png b/artworks/midjourney/4c0d85da-5af7-4c08-97c6-fecbb30f1d23_systematic_mapping_of_the_eclectic_mind.png deleted file mode 100644 index 22dc3cba04..0000000000 Binary files a/artworks/midjourney/4c0d85da-5af7-4c08-97c6-fecbb30f1d23_systematic_mapping_of_the_eclectic_mind.png and /dev/null differ diff --git a/artworks/midjourney/4c4308b8-f0fb-468c-94b0-8a492b9e5f8d_what_if_this_is_a_dream_painting_by_Gandalf.png b/artworks/midjourney/4c4308b8-f0fb-468c-94b0-8a492b9e5f8d_what_if_this_is_a_dream_painting_by_Gandalf.png deleted file mode 100644 index 0849c00829..0000000000 Binary files a/artworks/midjourney/4c4308b8-f0fb-468c-94b0-8a492b9e5f8d_what_if_this_is_a_dream_painting_by_Gandalf.png and /dev/null differ diff --git a/artworks/midjourney/4c68e605-a3b5-4df1-93d8-c7fc44c830b3_poster_of_a_hydrophobic_banana_--w_512_--h_768_--hd.png b/artworks/midjourney/4c68e605-a3b5-4df1-93d8-c7fc44c830b3_poster_of_a_hydrophobic_banana_--w_512_--h_768_--hd.png deleted file mode 100644 index b8a79f5b7f..0000000000 Binary files a/artworks/midjourney/4c68e605-a3b5-4df1-93d8-c7fc44c830b3_poster_of_a_hydrophobic_banana_--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/4c6be69f-c41f-426c-bfe1-1462109c81a3_the_Illuminati.png b/artworks/midjourney/4c6be69f-c41f-426c-bfe1-1462109c81a3_the_Illuminati.png deleted file mode 100644 index 1617a9495d..0000000000 Binary files a/artworks/midjourney/4c6be69f-c41f-426c-bfe1-1462109c81a3_the_Illuminati.png and /dev/null differ diff --git a/artworks/midjourney/4c963741-f746-4b13-b63e-31e00c1cac49_weird_AF.png b/artworks/midjourney/4c963741-f746-4b13-b63e-31e00c1cac49_weird_AF.png deleted file mode 100644 index ecf300fa3d..0000000000 Binary files a/artworks/midjourney/4c963741-f746-4b13-b63e-31e00c1cac49_weird_AF.png and /dev/null differ diff --git a/artworks/midjourney/4cc0e6c2-185c-49fd-a1f7-bf42ac0b4b28_Jonas_ethereal_mana.png b/artworks/midjourney/4cc0e6c2-185c-49fd-a1f7-bf42ac0b4b28_Jonas_ethereal_mana.png deleted file mode 100644 index c90e824764..0000000000 Binary files a/artworks/midjourney/4cc0e6c2-185c-49fd-a1f7-bf42ac0b4b28_Jonas_ethereal_mana.png and /dev/null differ diff --git a/artworks/midjourney/4d1d3e36-8feb-4509-aa8e-29b2afca1f72_gesundheit.png b/artworks/midjourney/4d1d3e36-8feb-4509-aa8e-29b2afca1f72_gesundheit.png deleted file mode 100644 index 6a2336e991..0000000000 Binary files a/artworks/midjourney/4d1d3e36-8feb-4509-aa8e-29b2afca1f72_gesundheit.png and /dev/null differ diff --git a/artworks/midjourney/4dbbf249-9a0f-4fe5-944d-3e76be78898e_Jonas_Cthulhu_in_bathtub__--w_448_--h_320.png b/artworks/midjourney/4dbbf249-9a0f-4fe5-944d-3e76be78898e_Jonas_Cthulhu_in_bathtub__--w_448_--h_320.png deleted file mode 100644 index 385d9e7a65..0000000000 Binary files a/artworks/midjourney/4dbbf249-9a0f-4fe5-944d-3e76be78898e_Jonas_Cthulhu_in_bathtub__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/4df4c8a7-59e2-4af2-92e2-511061f210f2_fallout_hype_inflation_collective_intelligence_forget_the_pamper_raise_the_spirit..png b/artworks/midjourney/4df4c8a7-59e2-4af2-92e2-511061f210f2_fallout_hype_inflation_collective_intelligence_forget_the_pamper_raise_the_spirit..png deleted file mode 100644 index 4f13b7fabb..0000000000 Binary files a/artworks/midjourney/4df4c8a7-59e2-4af2-92e2-511061f210f2_fallout_hype_inflation_collective_intelligence_forget_the_pamper_raise_the_spirit..png and /dev/null differ diff --git a/artworks/midjourney/4e772c3d-f8f8-4d9a-839f-a9faae5ff2a1_httpss.mj.runCKy7xw.png b/artworks/midjourney/4e772c3d-f8f8-4d9a-839f-a9faae5ff2a1_httpss.mj.runCKy7xw.png deleted file mode 100644 index 98548fcc85..0000000000 Binary files a/artworks/midjourney/4e772c3d-f8f8-4d9a-839f-a9faae5ff2a1_httpss.mj.runCKy7xw.png and /dev/null differ diff --git a/artworks/midjourney/4e996fe1-83b9-4769-b77a-5d375b7c422c_the_interior_of_the_imaginative_mind_stretch_the_soulful_experience.png b/artworks/midjourney/4e996fe1-83b9-4769-b77a-5d375b7c422c_the_interior_of_the_imaginative_mind_stretch_the_soulful_experience.png deleted file mode 100644 index aaf470d3d0..0000000000 Binary files a/artworks/midjourney/4e996fe1-83b9-4769-b77a-5d375b7c422c_the_interior_of_the_imaginative_mind_stretch_the_soulful_experience.png and /dev/null differ diff --git a/artworks/midjourney/4fec95a5-4221-40a7-98fe-28388d2ae26d_monument_obelisk_supernova__--w_320_--h_448.png b/artworks/midjourney/4fec95a5-4221-40a7-98fe-28388d2ae26d_monument_obelisk_supernova__--w_320_--h_448.png deleted file mode 100644 index daa57c6286..0000000000 Binary files a/artworks/midjourney/4fec95a5-4221-40a7-98fe-28388d2ae26d_monument_obelisk_supernova__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/501196a3-e28b-4935-b857-b9e5e6a7ed65_Jonas_dimensional_fractures_human_portrait.png b/artworks/midjourney/501196a3-e28b-4935-b857-b9e5e6a7ed65_Jonas_dimensional_fractures_human_portrait.png deleted file mode 100644 index 30b4f95ade..0000000000 Binary files a/artworks/midjourney/501196a3-e28b-4935-b857-b9e5e6a7ed65_Jonas_dimensional_fractures_human_portrait.png and /dev/null differ diff --git a/artworks/midjourney/504eb892-aef9-4f61-96aa-c7086512f0fb_Smile_.png b/artworks/midjourney/504eb892-aef9-4f61-96aa-c7086512f0fb_Smile_.png deleted file mode 100644 index 2682633fd2..0000000000 Binary files a/artworks/midjourney/504eb892-aef9-4f61-96aa-c7086512f0fb_Smile_.png and /dev/null differ diff --git a/artworks/midjourney/5062e9f7-0574-4dce-8cb4-b764f5eab18b_illegal_immigrant_into_the_yonder__--w_448_--h_320.png b/artworks/midjourney/5062e9f7-0574-4dce-8cb4-b764f5eab18b_illegal_immigrant_into_the_yonder__--w_448_--h_320.png deleted file mode 100644 index dc560282a0..0000000000 Binary files a/artworks/midjourney/5062e9f7-0574-4dce-8cb4-b764f5eab18b_illegal_immigrant_into_the_yonder__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/5070062f-52c2-443d-b1f9-41a056ca5777_Jonas_artifact.png b/artworks/midjourney/5070062f-52c2-443d-b1f9-41a056ca5777_Jonas_artifact.png deleted file mode 100644 index 2fb2ec31b5..0000000000 Binary files a/artworks/midjourney/5070062f-52c2-443d-b1f9-41a056ca5777_Jonas_artifact.png and /dev/null differ diff --git a/artworks/midjourney/509ef35a-8cc1-4d78-b7ab-5e1060e7eae5_Jonas_the_conscious_mind_only_thought_that_it_was_making_decisions.png b/artworks/midjourney/509ef35a-8cc1-4d78-b7ab-5e1060e7eae5_Jonas_the_conscious_mind_only_thought_that_it_was_making_decisions.png deleted file mode 100644 index dbcacd7f2f..0000000000 Binary files a/artworks/midjourney/509ef35a-8cc1-4d78-b7ab-5e1060e7eae5_Jonas_the_conscious_mind_only_thought_that_it_was_making_decisions.png and /dev/null differ diff --git a/artworks/midjourney/52409e94-16f2-46ee-bb68-06df6a093773_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k.png b/artworks/midjourney/52409e94-16f2-46ee-bb68-06df6a093773_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k.png deleted file mode 100644 index 002975e57e..0000000000 Binary files a/artworks/midjourney/52409e94-16f2-46ee-bb68-06df6a093773_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k.png and /dev/null differ diff --git a/artworks/midjourney/52ca9fdf-b874-4a35-a379-495029cbab14_radiant_extinction_event__--w_448_--h_320.png b/artworks/midjourney/52ca9fdf-b874-4a35-a379-495029cbab14_radiant_extinction_event__--w_448_--h_320.png deleted file mode 100644 index 545221a592..0000000000 Binary files a/artworks/midjourney/52ca9fdf-b874-4a35-a379-495029cbab14_radiant_extinction_event__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/54a94f27-61cc-4534-87b6-3afc7fe879dc_watch_me_shine_like_the_world_is_mine_--no_bokeh.png b/artworks/midjourney/54a94f27-61cc-4534-87b6-3afc7fe879dc_watch_me_shine_like_the_world_is_mine_--no_bokeh.png deleted file mode 100644 index e37ee4c6b9..0000000000 Binary files a/artworks/midjourney/54a94f27-61cc-4534-87b6-3afc7fe879dc_watch_me_shine_like_the_world_is_mine_--no_bokeh.png and /dev/null differ diff --git a/artworks/midjourney/55109e7e-3dec-4d4c-966f-81b985a10884_that_looks_like_a_giant.png b/artworks/midjourney/55109e7e-3dec-4d4c-966f-81b985a10884_that_looks_like_a_giant.png deleted file mode 100644 index 439845fe57..0000000000 Binary files a/artworks/midjourney/55109e7e-3dec-4d4c-966f-81b985a10884_that_looks_like_a_giant.png and /dev/null differ diff --git a/artworks/midjourney/551bf480-4261-4746-a432-294e92be9b6a_httpss.mj.runF1ev9e__canibal_squirrel.png b/artworks/midjourney/551bf480-4261-4746-a432-294e92be9b6a_httpss.mj.runF1ev9e__canibal_squirrel.png deleted file mode 100644 index 4ebca49dec..0000000000 Binary files a/artworks/midjourney/551bf480-4261-4746-a432-294e92be9b6a_httpss.mj.runF1ev9e__canibal_squirrel.png and /dev/null differ diff --git a/artworks/midjourney/55578702-9365-497a-af8e-44019d1135a9_near-death_experience_into_the_light_by_WLOP_artstation_--seed_78923.png b/artworks/midjourney/55578702-9365-497a-af8e-44019d1135a9_near-death_experience_into_the_light_by_WLOP_artstation_--seed_78923.png deleted file mode 100644 index ac7eb7f49e..0000000000 Binary files a/artworks/midjourney/55578702-9365-497a-af8e-44019d1135a9_near-death_experience_into_the_light_by_WLOP_artstation_--seed_78923.png and /dev/null differ diff --git a/artworks/midjourney/5592229d-22da-4973-aeae-9f1e001b8cf1_Hydra._DD_character_art.png b/artworks/midjourney/5592229d-22da-4973-aeae-9f1e001b8cf1_Hydra._DD_character_art.png deleted file mode 100644 index 16248155d0..0000000000 Binary files a/artworks/midjourney/5592229d-22da-4973-aeae-9f1e001b8cf1_Hydra._DD_character_art.png and /dev/null differ diff --git a/artworks/midjourney/55a55fba-b345-4617-b8ca-c9a1eef0a7c3_Jonas_grains_of_crystallite_sand_fire_in_your_eyes.png b/artworks/midjourney/55a55fba-b345-4617-b8ca-c9a1eef0a7c3_Jonas_grains_of_crystallite_sand_fire_in_your_eyes.png deleted file mode 100644 index 4cf872d6ed..0000000000 Binary files a/artworks/midjourney/55a55fba-b345-4617-b8ca-c9a1eef0a7c3_Jonas_grains_of_crystallite_sand_fire_in_your_eyes.png and /dev/null differ diff --git a/artworks/midjourney/5647d24c-7660-4f47-8bd5-50144a484d7c__oil_on_canvas_by_James_Gurney.png b/artworks/midjourney/5647d24c-7660-4f47-8bd5-50144a484d7c__oil_on_canvas_by_James_Gurney.png deleted file mode 100644 index e3f244ac85..0000000000 Binary files a/artworks/midjourney/5647d24c-7660-4f47-8bd5-50144a484d7c__oil_on_canvas_by_James_Gurney.png and /dev/null differ diff --git a/artworks/midjourney/56a56ceb-6e8a-4a3b-ab53-218124435247_Jonas_grains_of_crystallite_sand_wind_in_your_eyes.png b/artworks/midjourney/56a56ceb-6e8a-4a3b-ab53-218124435247_Jonas_grains_of_crystallite_sand_wind_in_your_eyes.png deleted file mode 100644 index 060a1527f6..0000000000 Binary files a/artworks/midjourney/56a56ceb-6e8a-4a3b-ab53-218124435247_Jonas_grains_of_crystallite_sand_wind_in_your_eyes.png and /dev/null differ diff --git a/artworks/midjourney/5727067f-4ffc-43a1-a418-f88de74cb47a_Jonas_Seraphim_angelarium__--w_320_--h_448.png b/artworks/midjourney/5727067f-4ffc-43a1-a418-f88de74cb47a_Jonas_Seraphim_angelarium__--w_320_--h_448.png deleted file mode 100644 index e3f2ada304..0000000000 Binary files a/artworks/midjourney/5727067f-4ffc-43a1-a418-f88de74cb47a_Jonas_Seraphim_angelarium__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/57f76045-1160-4a04-bd28-53b0bda85b44_Jonas_a_city_razed__--w_768_--h_512_--hd.png b/artworks/midjourney/57f76045-1160-4a04-bd28-53b0bda85b44_Jonas_a_city_razed__--w_768_--h_512_--hd.png deleted file mode 100644 index 45084991a4..0000000000 Binary files a/artworks/midjourney/57f76045-1160-4a04-bd28-53b0bda85b44_Jonas_a_city_razed__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/58d393ac-8604-415d-b140-8fceb737aef9_symmetrical_alien_visitor__--w_320_--h_448.png b/artworks/midjourney/58d393ac-8604-415d-b140-8fceb737aef9_symmetrical_alien_visitor__--w_320_--h_448.png deleted file mode 100644 index 46d092546f..0000000000 Binary files a/artworks/midjourney/58d393ac-8604-415d-b140-8fceb737aef9_symmetrical_alien_visitor__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/590ff5e2-6440-4c46-aeb9-13007628e264_space_walk._walk_in_space._httpss.mj.run9T1KHl.png b/artworks/midjourney/590ff5e2-6440-4c46-aeb9-13007628e264_space_walk._walk_in_space._httpss.mj.run9T1KHl.png deleted file mode 100644 index 6bd6cb6b74..0000000000 Binary files a/artworks/midjourney/590ff5e2-6440-4c46-aeb9-13007628e264_space_walk._walk_in_space._httpss.mj.run9T1KHl.png and /dev/null differ diff --git a/artworks/midjourney/59682fac-7078-46f3-a325-92376e901875_Jonas_mayan_gears_lego_toolkit.png b/artworks/midjourney/59682fac-7078-46f3-a325-92376e901875_Jonas_mayan_gears_lego_toolkit.png deleted file mode 100644 index 541f602698..0000000000 Binary files a/artworks/midjourney/59682fac-7078-46f3-a325-92376e901875_Jonas_mayan_gears_lego_toolkit.png and /dev/null differ diff --git a/artworks/midjourney/597b65ee-4530-4efe-ae82-57e8a8afe201_picture_of_an_atom._oil_on_canvas._watercolor._artstation_.png b/artworks/midjourney/597b65ee-4530-4efe-ae82-57e8a8afe201_picture_of_an_atom._oil_on_canvas._watercolor._artstation_.png deleted file mode 100644 index 7d1f6f428a..0000000000 Binary files a/artworks/midjourney/597b65ee-4530-4efe-ae82-57e8a8afe201_picture_of_an_atom._oil_on_canvas._watercolor._artstation_.png and /dev/null differ diff --git a/artworks/midjourney/59cdb72e-88da-4cb6-891c-b0142aa26ef7_Jonas_httpss.mj.runHxxYoN__a_pensive_gnu_in_the_style_of_Cubism.png b/artworks/midjourney/59cdb72e-88da-4cb6-891c-b0142aa26ef7_Jonas_httpss.mj.runHxxYoN__a_pensive_gnu_in_the_style_of_Cubism.png deleted file mode 100644 index 236bb8f4a9..0000000000 Binary files a/artworks/midjourney/59cdb72e-88da-4cb6-891c-b0142aa26ef7_Jonas_httpss.mj.runHxxYoN__a_pensive_gnu_in_the_style_of_Cubism.png and /dev/null differ diff --git a/artworks/midjourney/5a2c6aa7-1715-4746-9807-a004a8ed5142_mechanical_animal_--hq__--w_768_--h_512_--hd.png b/artworks/midjourney/5a2c6aa7-1715-4746-9807-a004a8ed5142_mechanical_animal_--hq__--w_768_--h_512_--hd.png deleted file mode 100644 index 4caaaaa3b8..0000000000 Binary files a/artworks/midjourney/5a2c6aa7-1715-4746-9807-a004a8ed5142_mechanical_animal_--hq__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/5b1ede13-41a4-4083-b3b5-c5ea806ab938_far_out_AWESOME.png b/artworks/midjourney/5b1ede13-41a4-4083-b3b5-c5ea806ab938_far_out_AWESOME.png deleted file mode 100644 index 98fed8e981..0000000000 Binary files a/artworks/midjourney/5b1ede13-41a4-4083-b3b5-c5ea806ab938_far_out_AWESOME.png and /dev/null differ diff --git a/artworks/midjourney/5b6d3fb6-e955-4824-911e-23b65a1a8aa0_Jonas_balance_act._the_wavery_mind..png b/artworks/midjourney/5b6d3fb6-e955-4824-911e-23b65a1a8aa0_Jonas_balance_act._the_wavery_mind..png deleted file mode 100644 index 414811e94a..0000000000 Binary files a/artworks/midjourney/5b6d3fb6-e955-4824-911e-23b65a1a8aa0_Jonas_balance_act._the_wavery_mind..png and /dev/null differ diff --git a/artworks/midjourney/5bd0b4cb-a485-4d43-8a16-6587dce6581f_medusa_DD__--w_320_--h_448.png b/artworks/midjourney/5bd0b4cb-a485-4d43-8a16-6587dce6581f_medusa_DD__--w_320_--h_448.png deleted file mode 100644 index 43f0470d1c..0000000000 Binary files a/artworks/midjourney/5bd0b4cb-a485-4d43-8a16-6587dce6581f_medusa_DD__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/5c2d0631-4645-4170-b439-d8d1348ea1c1_interior_melting_with_time_and_space_like_eternity_facing_the_mindful_evidence_of_its_existence.png b/artworks/midjourney/5c2d0631-4645-4170-b439-d8d1348ea1c1_interior_melting_with_time_and_space_like_eternity_facing_the_mindful_evidence_of_its_existence.png deleted file mode 100644 index e529283bc6..0000000000 Binary files a/artworks/midjourney/5c2d0631-4645-4170-b439-d8d1348ea1c1_interior_melting_with_time_and_space_like_eternity_facing_the_mindful_evidence_of_its_existence.png and /dev/null differ diff --git a/artworks/midjourney/5cab9c38-8a99-4101-82d0-e0a4972ace8d_genesis_of_the_mind.png b/artworks/midjourney/5cab9c38-8a99-4101-82d0-e0a4972ace8d_genesis_of_the_mind.png deleted file mode 100644 index f0dee7ba2e..0000000000 Binary files a/artworks/midjourney/5cab9c38-8a99-4101-82d0-e0a4972ace8d_genesis_of_the_mind.png and /dev/null differ diff --git a/artworks/midjourney/5dc8d32a-1e2e-49c3-ace7-de4cdec7bb62_farsical_existence_of_being_AWESOME__--w_512_--h_768_--hd.png b/artworks/midjourney/5dc8d32a-1e2e-49c3-ace7-de4cdec7bb62_farsical_existence_of_being_AWESOME__--w_512_--h_768_--hd.png deleted file mode 100644 index 4293c5f04c..0000000000 Binary files a/artworks/midjourney/5dc8d32a-1e2e-49c3-ace7-de4cdec7bb62_farsical_existence_of_being_AWESOME__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/5dff670f-e231-4b20-8c54-2c180c47504d_Jonas_the_second_kingdom.png b/artworks/midjourney/5dff670f-e231-4b20-8c54-2c180c47504d_Jonas_the_second_kingdom.png deleted file mode 100644 index 0239f54793..0000000000 Binary files a/artworks/midjourney/5dff670f-e231-4b20-8c54-2c180c47504d_Jonas_the_second_kingdom.png and /dev/null differ diff --git a/artworks/midjourney/5e06a049-49ba-4ee7-a818-bae9ebddb9a1_the_time_lord_--hq.png b/artworks/midjourney/5e06a049-49ba-4ee7-a818-bae9ebddb9a1_the_time_lord_--hq.png deleted file mode 100644 index c029f8fbdb..0000000000 Binary files a/artworks/midjourney/5e06a049-49ba-4ee7-a818-bae9ebddb9a1_the_time_lord_--hq.png and /dev/null differ diff --git a/artworks/midjourney/5e5f4f9a-73f5-4071-8c80-1a0b9f589644_ceci_nest_pas_un_monument__--w_448_--h_320.png b/artworks/midjourney/5e5f4f9a-73f5-4071-8c80-1a0b9f589644_ceci_nest_pas_un_monument__--w_448_--h_320.png deleted file mode 100644 index f9fc8c3657..0000000000 Binary files a/artworks/midjourney/5e5f4f9a-73f5-4071-8c80-1a0b9f589644_ceci_nest_pas_un_monument__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/5eea0c2f-9379-4175-8a3f-72f64d73baaf_Jonas_second_coming_rapture_of_souls.png b/artworks/midjourney/5eea0c2f-9379-4175-8a3f-72f64d73baaf_Jonas_second_coming_rapture_of_souls.png deleted file mode 100644 index ffa0337e15..0000000000 Binary files a/artworks/midjourney/5eea0c2f-9379-4175-8a3f-72f64d73baaf_Jonas_second_coming_rapture_of_souls.png and /dev/null differ diff --git a/artworks/midjourney/5f7b3136-3685-4a74-924c-4d67c0384901_the_foundations_of_origin_void_of_existence_matte_painting_genesis_trending_on_artstation_high_resolution.png b/artworks/midjourney/5f7b3136-3685-4a74-924c-4d67c0384901_the_foundations_of_origin_void_of_existence_matte_painting_genesis_trending_on_artstation_high_resolution.png deleted file mode 100644 index d6ea40d365..0000000000 Binary files a/artworks/midjourney/5f7b3136-3685-4a74-924c-4d67c0384901_the_foundations_of_origin_void_of_existence_matte_painting_genesis_trending_on_artstation_high_resolution.png and /dev/null differ diff --git a/artworks/midjourney/5fa5f8e0-e4a2-49b0-b2fe-29d08fefcaac_collective_intelligence_hive_mind_being.png b/artworks/midjourney/5fa5f8e0-e4a2-49b0-b2fe-29d08fefcaac_collective_intelligence_hive_mind_being.png deleted file mode 100644 index 47b499ba86..0000000000 Binary files a/artworks/midjourney/5fa5f8e0-e4a2-49b0-b2fe-29d08fefcaac_collective_intelligence_hive_mind_being.png and /dev/null differ diff --git a/artworks/midjourney/5fe97af5-abf3-4276-bb3f-15d8b8c9b2c1_attack_of_the_monster_Cthulhu._matte_painting_detailed_photorealistic.png b/artworks/midjourney/5fe97af5-abf3-4276-bb3f-15d8b8c9b2c1_attack_of_the_monster_Cthulhu._matte_painting_detailed_photorealistic.png deleted file mode 100644 index 3364a61629..0000000000 Binary files a/artworks/midjourney/5fe97af5-abf3-4276-bb3f-15d8b8c9b2c1_attack_of_the_monster_Cthulhu._matte_painting_detailed_photorealistic.png and /dev/null differ diff --git a/artworks/midjourney/6025e3cb-8780-4475-869d-af9bef96022d_there_is_no_hope_etching_detailed.png b/artworks/midjourney/6025e3cb-8780-4475-869d-af9bef96022d_there_is_no_hope_etching_detailed.png deleted file mode 100644 index 35785f1bf9..0000000000 Binary files a/artworks/midjourney/6025e3cb-8780-4475-869d-af9bef96022d_there_is_no_hope_etching_detailed.png and /dev/null differ diff --git a/artworks/midjourney/6067dca2-3c59-40a8-907c-a3553c80a9fc_Jonas_fractured_human_portrait__--w_320_--h_448.png b/artworks/midjourney/6067dca2-3c59-40a8-907c-a3553c80a9fc_Jonas_fractured_human_portrait__--w_320_--h_448.png deleted file mode 100644 index 30b590dadb..0000000000 Binary files a/artworks/midjourney/6067dca2-3c59-40a8-907c-a3553c80a9fc_Jonas_fractured_human_portrait__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/6191c1cc-dc88-4990-b632-3ecf29936da1_entropy_of_the_mind.png b/artworks/midjourney/6191c1cc-dc88-4990-b632-3ecf29936da1_entropy_of_the_mind.png deleted file mode 100644 index d68ed0ca27..0000000000 Binary files a/artworks/midjourney/6191c1cc-dc88-4990-b632-3ecf29936da1_entropy_of_the_mind.png and /dev/null differ diff --git a/artworks/midjourney/61e8eaab-207f-4d74-b9b5-2bc597d34d32_Jonas_crypto_billionaire_cat.png b/artworks/midjourney/61e8eaab-207f-4d74-b9b5-2bc597d34d32_Jonas_crypto_billionaire_cat.png deleted file mode 100644 index ea37fc7a90..0000000000 Binary files a/artworks/midjourney/61e8eaab-207f-4d74-b9b5-2bc597d34d32_Jonas_crypto_billionaire_cat.png and /dev/null differ diff --git a/artworks/midjourney/61ee7789-289d-45bf-8423-0e7ac585480d_habibi_.png b/artworks/midjourney/61ee7789-289d-45bf-8423-0e7ac585480d_habibi_.png deleted file mode 100644 index 75e7ae2768..0000000000 Binary files a/artworks/midjourney/61ee7789-289d-45bf-8423-0e7ac585480d_habibi_.png and /dev/null differ diff --git a/artworks/midjourney/624fd1c4-ef40-406b-b3d7-0f8d58e490a0_second_winter_is_coming_.png b/artworks/midjourney/624fd1c4-ef40-406b-b3d7-0f8d58e490a0_second_winter_is_coming_.png deleted file mode 100644 index 79fe9584e1..0000000000 Binary files a/artworks/midjourney/624fd1c4-ef40-406b-b3d7-0f8d58e490a0_second_winter_is_coming_.png and /dev/null differ diff --git a/artworks/midjourney/626dc68e-2df8-423e-a78f-0d567ae3c110_Jonas_throne_made_out_of_skulls.png b/artworks/midjourney/626dc68e-2df8-423e-a78f-0d567ae3c110_Jonas_throne_made_out_of_skulls.png deleted file mode 100644 index 260a1db2d7..0000000000 Binary files a/artworks/midjourney/626dc68e-2df8-423e-a78f-0d567ae3c110_Jonas_throne_made_out_of_skulls.png and /dev/null differ diff --git a/artworks/midjourney/62dee09e-f5d4-43c0-bd75-5727943db7b9_Jonas_bro_steak_sauce.png b/artworks/midjourney/62dee09e-f5d4-43c0-bd75-5727943db7b9_Jonas_bro_steak_sauce.png deleted file mode 100644 index 0deb7b80d9..0000000000 Binary files a/artworks/midjourney/62dee09e-f5d4-43c0-bd75-5727943db7b9_Jonas_bro_steak_sauce.png and /dev/null differ diff --git a/artworks/midjourney/62f4465b-f4ac-4563-8935-0955e246a2ec_immortal_being_DD__--w_320_--h_448.png b/artworks/midjourney/62f4465b-f4ac-4563-8935-0955e246a2ec_immortal_being_DD__--w_320_--h_448.png deleted file mode 100644 index 2c61834822..0000000000 Binary files a/artworks/midjourney/62f4465b-f4ac-4563-8935-0955e246a2ec_immortal_being_DD__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/631830a2-656a-4175-b704-7098b5992b10_Jonas_fractal_Great_Wave_off_Kanagawa.png b/artworks/midjourney/631830a2-656a-4175-b704-7098b5992b10_Jonas_fractal_Great_Wave_off_Kanagawa.png deleted file mode 100644 index a98f3da4e9..0000000000 Binary files a/artworks/midjourney/631830a2-656a-4175-b704-7098b5992b10_Jonas_fractal_Great_Wave_off_Kanagawa.png and /dev/null differ diff --git a/artworks/midjourney/632298db-4fa8-472c-82cc-e49a179952f4_freediving_into_the_unknown.png b/artworks/midjourney/632298db-4fa8-472c-82cc-e49a179952f4_freediving_into_the_unknown.png deleted file mode 100644 index 1d98c6abfd..0000000000 Binary files a/artworks/midjourney/632298db-4fa8-472c-82cc-e49a179952f4_freediving_into_the_unknown.png and /dev/null differ diff --git a/artworks/midjourney/6350eb09-113c-4588-8121-0803c4630db5_dafyomilimerick_The_Impossible_Painting.png b/artworks/midjourney/6350eb09-113c-4588-8121-0803c4630db5_dafyomilimerick_The_Impossible_Painting.png deleted file mode 100644 index c202115ad4..0000000000 Binary files a/artworks/midjourney/6350eb09-113c-4588-8121-0803c4630db5_dafyomilimerick_The_Impossible_Painting.png and /dev/null differ diff --git a/artworks/midjourney/6361ffc4-ad84-4708-bd17-50ede4e9b6d4_Jonas_httpss.mj.runHtRZs3__my_octopuss_teacher.png b/artworks/midjourney/6361ffc4-ad84-4708-bd17-50ede4e9b6d4_Jonas_httpss.mj.runHtRZs3__my_octopuss_teacher.png deleted file mode 100644 index 0f5b3507be..0000000000 Binary files a/artworks/midjourney/6361ffc4-ad84-4708-bd17-50ede4e9b6d4_Jonas_httpss.mj.runHtRZs3__my_octopuss_teacher.png and /dev/null differ diff --git a/artworks/midjourney/641acb71-1791-481a-81ee-15c90ba13ad5_put_some_art_on_the_wall_check_it_out_for_a_while__--w_448_--h_320.png b/artworks/midjourney/641acb71-1791-481a-81ee-15c90ba13ad5_put_some_art_on_the_wall_check_it_out_for_a_while__--w_448_--h_320.png deleted file mode 100644 index 413f52dd7a..0000000000 Binary files a/artworks/midjourney/641acb71-1791-481a-81ee-15c90ba13ad5_put_some_art_on_the_wall_check_it_out_for_a_while__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/6473714c-241d-4f39-8c7f-9ffc2f6d77a2_london_in_1900_etching_detailed.png b/artworks/midjourney/6473714c-241d-4f39-8c7f-9ffc2f6d77a2_london_in_1900_etching_detailed.png deleted file mode 100644 index 3320078324..0000000000 Binary files a/artworks/midjourney/6473714c-241d-4f39-8c7f-9ffc2f6d77a2_london_in_1900_etching_detailed.png and /dev/null differ diff --git a/artworks/midjourney/64cd46aa-2a31-4de3-b188-fbc97103ddeb_entropy_of_the_soul.png b/artworks/midjourney/64cd46aa-2a31-4de3-b188-fbc97103ddeb_entropy_of_the_soul.png deleted file mode 100644 index 15e3a77030..0000000000 Binary files a/artworks/midjourney/64cd46aa-2a31-4de3-b188-fbc97103ddeb_entropy_of_the_soul.png and /dev/null differ diff --git a/artworks/midjourney/65046b78-67b4-405c-9fec-6e68c8baee16_He_ma_belle_juste_un_rayon_de_lumiere._Ta_chaleur_sucree_sur_ma_peau_salee..png b/artworks/midjourney/65046b78-67b4-405c-9fec-6e68c8baee16_He_ma_belle_juste_un_rayon_de_lumiere._Ta_chaleur_sucree_sur_ma_peau_salee..png deleted file mode 100644 index e0c1402bdb..0000000000 Binary files a/artworks/midjourney/65046b78-67b4-405c-9fec-6e68c8baee16_He_ma_belle_juste_un_rayon_de_lumiere._Ta_chaleur_sucree_sur_ma_peau_salee..png and /dev/null differ diff --git a/artworks/midjourney/65ea6403-38d1-4847-ac3b-55c1f390179c_death_to_the_beholder_force_of_none.png b/artworks/midjourney/65ea6403-38d1-4847-ac3b-55c1f390179c_death_to_the_beholder_force_of_none.png deleted file mode 100644 index 605e84b061..0000000000 Binary files a/artworks/midjourney/65ea6403-38d1-4847-ac3b-55c1f390179c_death_to_the_beholder_force_of_none.png and /dev/null differ diff --git a/artworks/midjourney/6600e414-3ce3-4db5-ae07-9ae7cc682c5d_put_some_art_on_the_wall_check_it_out_for_a_while__--w_448_--h_320.png b/artworks/midjourney/6600e414-3ce3-4db5-ae07-9ae7cc682c5d_put_some_art_on_the_wall_check_it_out_for_a_while__--w_448_--h_320.png deleted file mode 100644 index fc23d39fbc..0000000000 Binary files a/artworks/midjourney/6600e414-3ce3-4db5-ae07-9ae7cc682c5d_put_some_art_on_the_wall_check_it_out_for_a_while__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/663a83a2-2376-4d3d-9302-2b3f1121eb72_Jonas_quake_II_pixel_art.png b/artworks/midjourney/663a83a2-2376-4d3d-9302-2b3f1121eb72_Jonas_quake_II_pixel_art.png deleted file mode 100644 index 464d16e984..0000000000 Binary files a/artworks/midjourney/663a83a2-2376-4d3d-9302-2b3f1121eb72_Jonas_quake_II_pixel_art.png and /dev/null differ diff --git a/artworks/midjourney/665ff69c-71ad-4823-bd20-e9831cdb8f0e_foreshadow_of_the_impending_death_of_the_incumbent.png b/artworks/midjourney/665ff69c-71ad-4823-bd20-e9831cdb8f0e_foreshadow_of_the_impending_death_of_the_incumbent.png deleted file mode 100644 index 5fe05b4707..0000000000 Binary files a/artworks/midjourney/665ff69c-71ad-4823-bd20-e9831cdb8f0e_foreshadow_of_the_impending_death_of_the_incumbent.png and /dev/null differ diff --git a/artworks/midjourney/66819d9f-e71b-4ee9-b11c-5d936be30479_conehead_family_photo.png b/artworks/midjourney/66819d9f-e71b-4ee9-b11c-5d936be30479_conehead_family_photo.png deleted file mode 100644 index bbbdc99d49..0000000000 Binary files a/artworks/midjourney/66819d9f-e71b-4ee9-b11c-5d936be30479_conehead_family_photo.png and /dev/null differ diff --git a/artworks/midjourney/66a436fb-2e1d-432e-a2b8-510e82ee4e11_reality_is_just_an_eclectic_mirror_of_thoughts__--w_448_--h_320.png b/artworks/midjourney/66a436fb-2e1d-432e-a2b8-510e82ee4e11_reality_is_just_an_eclectic_mirror_of_thoughts__--w_448_--h_320.png deleted file mode 100644 index a6eb119e82..0000000000 Binary files a/artworks/midjourney/66a436fb-2e1d-432e-a2b8-510e82ee4e11_reality_is_just_an_eclectic_mirror_of_thoughts__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/66a9f998-bfae-43e5-ab11-7d370a5aa27d_Emil_and_his_preciousss__--w_320_--h_448.png b/artworks/midjourney/66a9f998-bfae-43e5-ab11-7d370a5aa27d_Emil_and_his_preciousss__--w_320_--h_448.png deleted file mode 100644 index 0bca570084..0000000000 Binary files a/artworks/midjourney/66a9f998-bfae-43e5-ab11-7d370a5aa27d_Emil_and_his_preciousss__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/67758d5f-a7e8-4fb4-9263-817abc32b7d3_O.png b/artworks/midjourney/67758d5f-a7e8-4fb4-9263-817abc32b7d3_O.png deleted file mode 100644 index 56a651c222..0000000000 Binary files a/artworks/midjourney/67758d5f-a7e8-4fb4-9263-817abc32b7d3_O.png and /dev/null differ diff --git a/artworks/midjourney/6789e0d3-0bc5-4f58-b8dd-95621cccb880_interior_melting_with_time_and_space_like_eternity_facing_the_mindful_evidence_of_its_existence.png b/artworks/midjourney/6789e0d3-0bc5-4f58-b8dd-95621cccb880_interior_melting_with_time_and_space_like_eternity_facing_the_mindful_evidence_of_its_existence.png deleted file mode 100644 index b2f19ccbdc..0000000000 Binary files a/artworks/midjourney/6789e0d3-0bc5-4f58-b8dd-95621cccb880_interior_melting_with_time_and_space_like_eternity_facing_the_mindful_evidence_of_its_existence.png and /dev/null differ diff --git a/artworks/midjourney/67b79e1e-52e8-47e5-9048-b32fc9edb3ba_pay_with_a_lifetime_of_sorrow_abstract_painting.png b/artworks/midjourney/67b79e1e-52e8-47e5-9048-b32fc9edb3ba_pay_with_a_lifetime_of_sorrow_abstract_painting.png deleted file mode 100644 index bd159e4f2f..0000000000 Binary files a/artworks/midjourney/67b79e1e-52e8-47e5-9048-b32fc9edb3ba_pay_with_a_lifetime_of_sorrow_abstract_painting.png and /dev/null differ diff --git a/artworks/midjourney/68e3941a-9bc7-4d20-bf84-5a16e253e72f_datacenter_on_beach._robots_stand_guard._gloomy_dark_glistening_trending_on_artstation__--w_768_--h_512_--hd.png b/artworks/midjourney/68e3941a-9bc7-4d20-bf84-5a16e253e72f_datacenter_on_beach._robots_stand_guard._gloomy_dark_glistening_trending_on_artstation__--w_768_--h_512_--hd.png deleted file mode 100644 index 60a1cb086c..0000000000 Binary files a/artworks/midjourney/68e3941a-9bc7-4d20-bf84-5a16e253e72f_datacenter_on_beach._robots_stand_guard._gloomy_dark_glistening_trending_on_artstation__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/692dcede-5756-4885-a71d-f569a7edecb9_ahaaaa.png b/artworks/midjourney/692dcede-5756-4885-a71d-f569a7edecb9_ahaaaa.png deleted file mode 100644 index 1cfa70cd02..0000000000 Binary files a/artworks/midjourney/692dcede-5756-4885-a71d-f569a7edecb9_ahaaaa.png and /dev/null differ diff --git a/artworks/midjourney/69d1e6a2-1366-400d-a63c-e4c2ec41f80c_The_Prestige.png b/artworks/midjourney/69d1e6a2-1366-400d-a63c-e4c2ec41f80c_The_Prestige.png deleted file mode 100644 index c0a98fd05e..0000000000 Binary files a/artworks/midjourney/69d1e6a2-1366-400d-a63c-e4c2ec41f80c_The_Prestige.png and /dev/null differ diff --git a/artworks/midjourney/6a18ddff-9243-460e-af04-680ee7f34127_eternal_conflict__--w_448_--h_320.png b/artworks/midjourney/6a18ddff-9243-460e-af04-680ee7f34127_eternal_conflict__--w_448_--h_320.png deleted file mode 100644 index 796f168931..0000000000 Binary files a/artworks/midjourney/6a18ddff-9243-460e-af04-680ee7f34127_eternal_conflict__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/6b2026c2-9374-466c-a898-3383a9ae3d5f_beacon_of_light_in_the_darkness.png b/artworks/midjourney/6b2026c2-9374-466c-a898-3383a9ae3d5f_beacon_of_light_in_the_darkness.png deleted file mode 100644 index d2fb87e600..0000000000 Binary files a/artworks/midjourney/6b2026c2-9374-466c-a898-3383a9ae3d5f_beacon_of_light_in_the_darkness.png and /dev/null differ diff --git a/artworks/midjourney/6b40ce65-fcaa-45fc-b1c9-c8b981813feb_Jonas_nukes_from_heaven_by_Ross_Tran_and_Hiroshi_Yoshida_highly_detailed.png b/artworks/midjourney/6b40ce65-fcaa-45fc-b1c9-c8b981813feb_Jonas_nukes_from_heaven_by_Ross_Tran_and_Hiroshi_Yoshida_highly_detailed.png deleted file mode 100644 index 8723ba3707..0000000000 Binary files a/artworks/midjourney/6b40ce65-fcaa-45fc-b1c9-c8b981813feb_Jonas_nukes_from_heaven_by_Ross_Tran_and_Hiroshi_Yoshida_highly_detailed.png and /dev/null differ diff --git a/artworks/midjourney/6b872d1b-4fb4-4121-a7af-e029dc034c40_entropy_of_the_mind.png b/artworks/midjourney/6b872d1b-4fb4-4121-a7af-e029dc034c40_entropy_of_the_mind.png deleted file mode 100644 index 41a214fd05..0000000000 Binary files a/artworks/midjourney/6b872d1b-4fb4-4121-a7af-e029dc034c40_entropy_of_the_mind.png and /dev/null differ diff --git a/artworks/midjourney/6c0d14c8-155a-4959-b37c-83d0dd6a649b_the_arc_of_the_covenant_--w_412.png b/artworks/midjourney/6c0d14c8-155a-4959-b37c-83d0dd6a649b_the_arc_of_the_covenant_--w_412.png deleted file mode 100644 index ede2c7b147..0000000000 Binary files a/artworks/midjourney/6c0d14c8-155a-4959-b37c-83d0dd6a649b_the_arc_of_the_covenant_--w_412.png and /dev/null differ diff --git a/artworks/midjourney/6d33466f-bafc-450e-95d2-a01de975aeec_gesundheit.png b/artworks/midjourney/6d33466f-bafc-450e-95d2-a01de975aeec_gesundheit.png deleted file mode 100644 index 11f4918e47..0000000000 Binary files a/artworks/midjourney/6d33466f-bafc-450e-95d2-a01de975aeec_gesundheit.png and /dev/null differ diff --git a/artworks/midjourney/6ddcafd2-c5f8-44e3-8109-b0f5f86fe37c_Jonas_Rick_RubinPapa_Smurf.png b/artworks/midjourney/6ddcafd2-c5f8-44e3-8109-b0f5f86fe37c_Jonas_Rick_RubinPapa_Smurf.png deleted file mode 100644 index 9a74fc2bcb..0000000000 Binary files a/artworks/midjourney/6ddcafd2-c5f8-44e3-8109-b0f5f86fe37c_Jonas_Rick_RubinPapa_Smurf.png and /dev/null differ diff --git a/artworks/midjourney/6e1da0f9-dec2-44bd-b081-377913632d01_embodied_soul.png b/artworks/midjourney/6e1da0f9-dec2-44bd-b081-377913632d01_embodied_soul.png deleted file mode 100644 index 593fc2b032..0000000000 Binary files a/artworks/midjourney/6e1da0f9-dec2-44bd-b081-377913632d01_embodied_soul.png and /dev/null differ diff --git a/artworks/midjourney/6e3cd4c6-ed8f-4d5e-9fc8-761e880b2983_Jonas_httpss.mj.run8BXcSF__bathroom_with_square_tiles_escher_painting_line_drawing.png b/artworks/midjourney/6e3cd4c6-ed8f-4d5e-9fc8-761e880b2983_Jonas_httpss.mj.run8BXcSF__bathroom_with_square_tiles_escher_painting_line_drawing.png deleted file mode 100644 index 6282dd6c00..0000000000 Binary files a/artworks/midjourney/6e3cd4c6-ed8f-4d5e-9fc8-761e880b2983_Jonas_httpss.mj.run8BXcSF__bathroom_with_square_tiles_escher_painting_line_drawing.png and /dev/null differ diff --git a/artworks/midjourney/6e959d74-1bcb-4ae4-8ea1-19a66c87845d_Jonas_httpss.mj.runD4V2fx__Battal_Ebru_by_Mustafa_Duzgunman.png b/artworks/midjourney/6e959d74-1bcb-4ae4-8ea1-19a66c87845d_Jonas_httpss.mj.runD4V2fx__Battal_Ebru_by_Mustafa_Duzgunman.png deleted file mode 100644 index eefc33d5e9..0000000000 Binary files a/artworks/midjourney/6e959d74-1bcb-4ae4-8ea1-19a66c87845d_Jonas_httpss.mj.runD4V2fx__Battal_Ebru_by_Mustafa_Duzgunman.png and /dev/null differ diff --git a/artworks/midjourney/6ea1e5a8-b99d-45d7-a96e-8c00ffefa8eb_sauron_httpss.mj.runBKOdpF.png b/artworks/midjourney/6ea1e5a8-b99d-45d7-a96e-8c00ffefa8eb_sauron_httpss.mj.runBKOdpF.png deleted file mode 100644 index f348279e97..0000000000 Binary files a/artworks/midjourney/6ea1e5a8-b99d-45d7-a96e-8c00ffefa8eb_sauron_httpss.mj.runBKOdpF.png and /dev/null differ diff --git a/artworks/midjourney/6f02fd1c-0bc5-4982-98fd-53d66e831d9d_httpss.mj.runsDGcQ5___entropy.png b/artworks/midjourney/6f02fd1c-0bc5-4982-98fd-53d66e831d9d_httpss.mj.runsDGcQ5___entropy.png deleted file mode 100644 index b3454bce3c..0000000000 Binary files a/artworks/midjourney/6f02fd1c-0bc5-4982-98fd-53d66e831d9d_httpss.mj.runsDGcQ5___entropy.png and /dev/null differ diff --git a/artworks/midjourney/6f0b5f20-dc23-46a6-8986-ff9d30ee23d6_ERROR.png b/artworks/midjourney/6f0b5f20-dc23-46a6-8986-ff9d30ee23d6_ERROR.png deleted file mode 100644 index 521e475427..0000000000 Binary files a/artworks/midjourney/6f0b5f20-dc23-46a6-8986-ff9d30ee23d6_ERROR.png and /dev/null differ diff --git a/artworks/midjourney/6f20e5ba-c3ee-4cbb-8674-787f48c60192_beavis_bunghead_DD_beastiary_httpst.lyqa4H.png b/artworks/midjourney/6f20e5ba-c3ee-4cbb-8674-787f48c60192_beavis_bunghead_DD_beastiary_httpst.lyqa4H.png deleted file mode 100644 index 5748b31fc1..0000000000 Binary files a/artworks/midjourney/6f20e5ba-c3ee-4cbb-8674-787f48c60192_beavis_bunghead_DD_beastiary_httpst.lyqa4H.png and /dev/null differ diff --git a/artworks/midjourney/6f25c18f-aa96-4ee4-a3b2-7cb4d565e513_Jonas_Arbeit_macht_frei.png b/artworks/midjourney/6f25c18f-aa96-4ee4-a3b2-7cb4d565e513_Jonas_Arbeit_macht_frei.png deleted file mode 100644 index bb563309fc..0000000000 Binary files a/artworks/midjourney/6f25c18f-aa96-4ee4-a3b2-7cb4d565e513_Jonas_Arbeit_macht_frei.png and /dev/null differ diff --git a/artworks/midjourney/6f8508cc-adb1-4ca7-aa3f-883b3e5b00ad_Jonas_epophantic_memory.png b/artworks/midjourney/6f8508cc-adb1-4ca7-aa3f-883b3e5b00ad_Jonas_epophantic_memory.png deleted file mode 100644 index e64961d4cd..0000000000 Binary files a/artworks/midjourney/6f8508cc-adb1-4ca7-aa3f-883b3e5b00ad_Jonas_epophantic_memory.png and /dev/null differ diff --git a/artworks/midjourney/6f8a9330-205e-40e8-a2e9-e0bb80f4bb8a_gateway_to_doom_--no_happy_--w_320_--h_256.png b/artworks/midjourney/6f8a9330-205e-40e8-a2e9-e0bb80f4bb8a_gateway_to_doom_--no_happy_--w_320_--h_256.png deleted file mode 100644 index d97a67675d..0000000000 Binary files a/artworks/midjourney/6f8a9330-205e-40e8-a2e9-e0bb80f4bb8a_gateway_to_doom_--no_happy_--w_320_--h_256.png and /dev/null differ diff --git a/artworks/midjourney/6f9cd623-9e65-4084-a1b3-bb4178318135_embodied_soul_by_Ben_Bauchau.png b/artworks/midjourney/6f9cd623-9e65-4084-a1b3-bb4178318135_embodied_soul_by_Ben_Bauchau.png deleted file mode 100644 index 4cf06a75b3..0000000000 Binary files a/artworks/midjourney/6f9cd623-9e65-4084-a1b3-bb4178318135_embodied_soul_by_Ben_Bauchau.png and /dev/null differ diff --git a/artworks/midjourney/6fae2c5a-7852-478f-8fb7-b25794d0588c_Jonas_fractal_Great_Wave_off_Kanagawa.png b/artworks/midjourney/6fae2c5a-7852-478f-8fb7-b25794d0588c_Jonas_fractal_Great_Wave_off_Kanagawa.png deleted file mode 100644 index 766c15804d..0000000000 Binary files a/artworks/midjourney/6fae2c5a-7852-478f-8fb7-b25794d0588c_Jonas_fractal_Great_Wave_off_Kanagawa.png and /dev/null differ diff --git a/artworks/midjourney/6ffd8aa9-a84e-46cf-a1b8-0e33dd75f1e0_Jonas_the_rumor_of_discrepancy_uncertainty_visualization.png b/artworks/midjourney/6ffd8aa9-a84e-46cf-a1b8-0e33dd75f1e0_Jonas_the_rumor_of_discrepancy_uncertainty_visualization.png deleted file mode 100644 index 59775e8532..0000000000 Binary files a/artworks/midjourney/6ffd8aa9-a84e-46cf-a1b8-0e33dd75f1e0_Jonas_the_rumor_of_discrepancy_uncertainty_visualization.png and /dev/null differ diff --git a/artworks/midjourney/701fe861-f917-45c9-b102-a11267f984ee_fortified_magnitude_of_the_unknown_--w_768_--h_512_--hd.png b/artworks/midjourney/701fe861-f917-45c9-b102-a11267f984ee_fortified_magnitude_of_the_unknown_--w_768_--h_512_--hd.png deleted file mode 100644 index 15dbf5a1da..0000000000 Binary files a/artworks/midjourney/701fe861-f917-45c9-b102-a11267f984ee_fortified_magnitude_of_the_unknown_--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/706dcc77-622e-42f8-9060-b6cd810b36e2_pay_with_a_lifetime_of_sorrow_abstract_painting.png b/artworks/midjourney/706dcc77-622e-42f8-9060-b6cd810b36e2_pay_with_a_lifetime_of_sorrow_abstract_painting.png deleted file mode 100644 index a920e6020f..0000000000 Binary files a/artworks/midjourney/706dcc77-622e-42f8-9060-b6cd810b36e2_pay_with_a_lifetime_of_sorrow_abstract_painting.png and /dev/null differ diff --git a/artworks/midjourney/70a64d43-d791-44c8-8aa8-43a58860fbea_Jonas_portrait_of_orc_bully__--w_320_--h_448.png b/artworks/midjourney/70a64d43-d791-44c8-8aa8-43a58860fbea_Jonas_portrait_of_orc_bully__--w_320_--h_448.png deleted file mode 100644 index 0981a27656..0000000000 Binary files a/artworks/midjourney/70a64d43-d791-44c8-8aa8-43a58860fbea_Jonas_portrait_of_orc_bully__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/70b40fac-b027-4c4b-b1fe-0aec06da94ad_Jonas_nuclear_explosion_cloud_like_a_skull__--w_320_--h_448.png b/artworks/midjourney/70b40fac-b027-4c4b-b1fe-0aec06da94ad_Jonas_nuclear_explosion_cloud_like_a_skull__--w_320_--h_448.png deleted file mode 100644 index a4b8423593..0000000000 Binary files a/artworks/midjourney/70b40fac-b027-4c4b-b1fe-0aec06da94ad_Jonas_nuclear_explosion_cloud_like_a_skull__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/7103cde2-a1e5-479b-9c56-23f441269b04_mirror_memorial.png b/artworks/midjourney/7103cde2-a1e5-479b-9c56-23f441269b04_mirror_memorial.png deleted file mode 100644 index 187578e2c9..0000000000 Binary files a/artworks/midjourney/7103cde2-a1e5-479b-9c56-23f441269b04_mirror_memorial.png and /dev/null differ diff --git a/artworks/midjourney/7116c834-c110-4c62-8098-cd628fe922cd_trans_trump._oh_papi_dont_quit.png b/artworks/midjourney/7116c834-c110-4c62-8098-cd628fe922cd_trans_trump._oh_papi_dont_quit.png deleted file mode 100644 index e76b17b45e..0000000000 Binary files a/artworks/midjourney/7116c834-c110-4c62-8098-cd628fe922cd_trans_trump._oh_papi_dont_quit.png and /dev/null differ diff --git a/artworks/midjourney/7198fbfd-e122-4038-9512-be721144f6a4_fake_art_sold_at_auction.png b/artworks/midjourney/7198fbfd-e122-4038-9512-be721144f6a4_fake_art_sold_at_auction.png deleted file mode 100644 index 078aef3680..0000000000 Binary files a/artworks/midjourney/7198fbfd-e122-4038-9512-be721144f6a4_fake_art_sold_at_auction.png and /dev/null differ diff --git a/artworks/midjourney/71edda84-9143-446d-ae2f-7bb782d3b59c_entropic_dispersion.png b/artworks/midjourney/71edda84-9143-446d-ae2f-7bb782d3b59c_entropic_dispersion.png deleted file mode 100644 index f624b31eaa..0000000000 Binary files a/artworks/midjourney/71edda84-9143-446d-ae2f-7bb782d3b59c_entropic_dispersion.png and /dev/null differ diff --git a/artworks/midjourney/71f71533-9660-4cf6-a9c5-f156391e3f09_the_redheaded_muse_takes_a_bath_httpss.mj.runW4MXg8.png b/artworks/midjourney/71f71533-9660-4cf6-a9c5-f156391e3f09_the_redheaded_muse_takes_a_bath_httpss.mj.runW4MXg8.png deleted file mode 100644 index 0b10adf268..0000000000 Binary files a/artworks/midjourney/71f71533-9660-4cf6-a9c5-f156391e3f09_the_redheaded_muse_takes_a_bath_httpss.mj.runW4MXg8.png and /dev/null differ diff --git a/artworks/midjourney/73238124-2c2a-45de-84a7-6b49b511a695_supernova_gumpf.png b/artworks/midjourney/73238124-2c2a-45de-84a7-6b49b511a695_supernova_gumpf.png deleted file mode 100644 index 8e0366f43b..0000000000 Binary files a/artworks/midjourney/73238124-2c2a-45de-84a7-6b49b511a695_supernova_gumpf.png and /dev/null differ diff --git a/artworks/midjourney/73929a33-a11b-4be4-86dd-a46e8f89bcdb_Jonas_razed_city__--w_768_--h_512_--hd.png b/artworks/midjourney/73929a33-a11b-4be4-86dd-a46e8f89bcdb_Jonas_razed_city__--w_768_--h_512_--hd.png deleted file mode 100644 index f845a8c051..0000000000 Binary files a/artworks/midjourney/73929a33-a11b-4be4-86dd-a46e8f89bcdb_Jonas_razed_city__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/73a8f94b-5f43-462a-95c0-2a07188a6b15_Jonas_rolex_watch_awarded_for_years_of_service_pension.png b/artworks/midjourney/73a8f94b-5f43-462a-95c0-2a07188a6b15_Jonas_rolex_watch_awarded_for_years_of_service_pension.png deleted file mode 100644 index 6f2f371648..0000000000 Binary files a/artworks/midjourney/73a8f94b-5f43-462a-95c0-2a07188a6b15_Jonas_rolex_watch_awarded_for_years_of_service_pension.png and /dev/null differ diff --git a/artworks/midjourney/73faef6a-4bc9-4c24-9255-96905bfb1513_a_really_bad_guy__--w_320_--h_448.png b/artworks/midjourney/73faef6a-4bc9-4c24-9255-96905bfb1513_a_really_bad_guy__--w_320_--h_448.png deleted file mode 100644 index 2d34c3a260..0000000000 Binary files a/artworks/midjourney/73faef6a-4bc9-4c24-9255-96905bfb1513_a_really_bad_guy__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/74551dbd-6725-46f9-afb3-fc1092775fec_blob_of_horror_NFT_4k_--hq_--nostretch.png b/artworks/midjourney/74551dbd-6725-46f9-afb3-fc1092775fec_blob_of_horror_NFT_4k_--hq_--nostretch.png deleted file mode 100644 index b00653566e..0000000000 Binary files a/artworks/midjourney/74551dbd-6725-46f9-afb3-fc1092775fec_blob_of_horror_NFT_4k_--hq_--nostretch.png and /dev/null differ diff --git a/artworks/midjourney/7459a12d-d07d-4759-bd96-3d1d00829da2_mindful_wondrous_cavernous_existing_ludicrous_object_--hq.png b/artworks/midjourney/7459a12d-d07d-4759-bd96-3d1d00829da2_mindful_wondrous_cavernous_existing_ludicrous_object_--hq.png deleted file mode 100644 index 3c2d41f60d..0000000000 Binary files a/artworks/midjourney/7459a12d-d07d-4759-bd96-3d1d00829da2_mindful_wondrous_cavernous_existing_ludicrous_object_--hq.png and /dev/null differ diff --git a/artworks/midjourney/746abe33-9f20-434a-9f3d-10e4b87f82d2_Jonas_The_4chan_brothers.png b/artworks/midjourney/746abe33-9f20-434a-9f3d-10e4b87f82d2_Jonas_The_4chan_brothers.png deleted file mode 100644 index 6fa3d91a2c..0000000000 Binary files a/artworks/midjourney/746abe33-9f20-434a-9f3d-10e4b87f82d2_Jonas_The_4chan_brothers.png and /dev/null differ diff --git a/artworks/midjourney/74753938-63df-4621-b928-48b862027f27_httpss.mj.runCKy7xw.png b/artworks/midjourney/74753938-63df-4621-b928-48b862027f27_httpss.mj.runCKy7xw.png deleted file mode 100644 index 7581743754..0000000000 Binary files a/artworks/midjourney/74753938-63df-4621-b928-48b862027f27_httpss.mj.runCKy7xw.png and /dev/null differ diff --git a/artworks/midjourney/748f432b-624d-4044-b047-c8ee943df2aa_viva.png b/artworks/midjourney/748f432b-624d-4044-b047-c8ee943df2aa_viva.png deleted file mode 100644 index 495d8a5e05..0000000000 Binary files a/artworks/midjourney/748f432b-624d-4044-b047-c8ee943df2aa_viva.png and /dev/null differ diff --git a/artworks/midjourney/74cb23ef-620b-4158-847d-654592ae9532_farsical_existence_of_being_AWESOME__--w_512_--h_768_--hd.png b/artworks/midjourney/74cb23ef-620b-4158-847d-654592ae9532_farsical_existence_of_being_AWESOME__--w_512_--h_768_--hd.png deleted file mode 100644 index 9a9336edbe..0000000000 Binary files a/artworks/midjourney/74cb23ef-620b-4158-847d-654592ae9532_farsical_existence_of_being_AWESOME__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/74f03268-4715-4b9b-a967-3466339a328d_put_some_art_on_the_wall_check_it_out_for_a_while__--w_448_--h_320.png b/artworks/midjourney/74f03268-4715-4b9b-a967-3466339a328d_put_some_art_on_the_wall_check_it_out_for_a_while__--w_448_--h_320.png deleted file mode 100644 index 669149c43c..0000000000 Binary files a/artworks/midjourney/74f03268-4715-4b9b-a967-3466339a328d_put_some_art_on_the_wall_check_it_out_for_a_while__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/75137f7d-a6af-475a-9af9-a1782f243a39_Jonas_tea-infused_dissolution.png b/artworks/midjourney/75137f7d-a6af-475a-9af9-a1782f243a39_Jonas_tea-infused_dissolution.png deleted file mode 100644 index 9f46ff5b40..0000000000 Binary files a/artworks/midjourney/75137f7d-a6af-475a-9af9-a1782f243a39_Jonas_tea-infused_dissolution.png and /dev/null differ diff --git a/artworks/midjourney/75e3a3c1-9fe3-4a51-980c-2dc7f0cd0fbe_album_cover_Aubrey_Powell_photograph.png b/artworks/midjourney/75e3a3c1-9fe3-4a51-980c-2dc7f0cd0fbe_album_cover_Aubrey_Powell_photograph.png deleted file mode 100644 index ee910d5e69..0000000000 Binary files a/artworks/midjourney/75e3a3c1-9fe3-4a51-980c-2dc7f0cd0fbe_album_cover_Aubrey_Powell_photograph.png and /dev/null differ diff --git a/artworks/midjourney/75e80821-b77e-46cf-8400-8dc96edec0cb_httpss.mj.runeFBEBo__Nymphomaniac_--w_320_--h_448.png b/artworks/midjourney/75e80821-b77e-46cf-8400-8dc96edec0cb_httpss.mj.runeFBEBo__Nymphomaniac_--w_320_--h_448.png deleted file mode 100644 index 4a94047b86..0000000000 Binary files a/artworks/midjourney/75e80821-b77e-46cf-8400-8dc96edec0cb_httpss.mj.runeFBEBo__Nymphomaniac_--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/75efcc21-447c-40d2-abd5-9e089d0a0d02_like_a_bomb_we_bring_bright_light.png b/artworks/midjourney/75efcc21-447c-40d2-abd5-9e089d0a0d02_like_a_bomb_we_bring_bright_light.png deleted file mode 100644 index 193d0ff9f7..0000000000 Binary files a/artworks/midjourney/75efcc21-447c-40d2-abd5-9e089d0a0d02_like_a_bomb_we_bring_bright_light.png and /dev/null differ diff --git a/artworks/midjourney/7691ab79-79a9-4cea-b0bd-3a3dde78d19e_Jonas_I_once_had_a_glimpse_of_what_I_could_be.png b/artworks/midjourney/7691ab79-79a9-4cea-b0bd-3a3dde78d19e_Jonas_I_once_had_a_glimpse_of_what_I_could_be.png deleted file mode 100644 index 25d925a7fa..0000000000 Binary files a/artworks/midjourney/7691ab79-79a9-4cea-b0bd-3a3dde78d19e_Jonas_I_once_had_a_glimpse_of_what_I_could_be.png and /dev/null differ diff --git a/artworks/midjourney/76b5aea1-94d0-4e0c-b494-ff3cf3e4f8a3_Jonas_httpss.mj.runqtLiDg__proxima_godama.png b/artworks/midjourney/76b5aea1-94d0-4e0c-b494-ff3cf3e4f8a3_Jonas_httpss.mj.runqtLiDg__proxima_godama.png deleted file mode 100644 index a5d5d31b87..0000000000 Binary files a/artworks/midjourney/76b5aea1-94d0-4e0c-b494-ff3cf3e4f8a3_Jonas_httpss.mj.runqtLiDg__proxima_godama.png and /dev/null differ diff --git a/artworks/midjourney/76d6fc2e-bf9a-4745-b1a8-94aa275088e5_lost_immortal_soul_portal_gaze_DD_--hq__--nostretch__--w_512_--h_768_--hd.png b/artworks/midjourney/76d6fc2e-bf9a-4745-b1a8-94aa275088e5_lost_immortal_soul_portal_gaze_DD_--hq__--nostretch__--w_512_--h_768_--hd.png deleted file mode 100644 index 4cedf4096c..0000000000 Binary files a/artworks/midjourney/76d6fc2e-bf9a-4745-b1a8-94aa275088e5_lost_immortal_soul_portal_gaze_DD_--hq__--nostretch__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/76fc95e7-b573-464d-aea2-3da100c0fd71_loving_grace.png b/artworks/midjourney/76fc95e7-b573-464d-aea2-3da100c0fd71_loving_grace.png deleted file mode 100644 index 2e5a617dd0..0000000000 Binary files a/artworks/midjourney/76fc95e7-b573-464d-aea2-3da100c0fd71_loving_grace.png and /dev/null differ diff --git a/artworks/midjourney/772edc90-4205-4aba-9efc-3c62d4b67d35_alien_trophy_hunter.png b/artworks/midjourney/772edc90-4205-4aba-9efc-3c62d4b67d35_alien_trophy_hunter.png deleted file mode 100644 index ceb7edad29..0000000000 Binary files a/artworks/midjourney/772edc90-4205-4aba-9efc-3c62d4b67d35_alien_trophy_hunter.png and /dev/null differ diff --git a/artworks/midjourney/774283a4-6867-4074-a35d-805d182b8097_entropy_of_the_mind.png b/artworks/midjourney/774283a4-6867-4074-a35d-805d182b8097_entropy_of_the_mind.png deleted file mode 100644 index 085f1ed6fb..0000000000 Binary files a/artworks/midjourney/774283a4-6867-4074-a35d-805d182b8097_entropy_of_the_mind.png and /dev/null differ diff --git a/artworks/midjourney/777e61ee-ff89-4f22-80ff-0efc9649674c_massive_degeneration_of_the_human_soul_leads_to_fluctuations_of_incumbent_incense.png b/artworks/midjourney/777e61ee-ff89-4f22-80ff-0efc9649674c_massive_degeneration_of_the_human_soul_leads_to_fluctuations_of_incumbent_incense.png deleted file mode 100644 index 0aa10fae17..0000000000 Binary files a/artworks/midjourney/777e61ee-ff89-4f22-80ff-0efc9649674c_massive_degeneration_of_the_human_soul_leads_to_fluctuations_of_incumbent_incense.png and /dev/null differ diff --git a/artworks/midjourney/782221f4-48b3-4990-9b90-0d93c13a065a_httpss.mj.runbEcDZ4__Mentat_from_Dune_portrait.png b/artworks/midjourney/782221f4-48b3-4990-9b90-0d93c13a065a_httpss.mj.runbEcDZ4__Mentat_from_Dune_portrait.png deleted file mode 100644 index 104ab731ed..0000000000 Binary files a/artworks/midjourney/782221f4-48b3-4990-9b90-0d93c13a065a_httpss.mj.runbEcDZ4__Mentat_from_Dune_portrait.png and /dev/null differ diff --git a/artworks/midjourney/78b6daff-5d75-4a53-8dcd-8459d7dde15b_entropy_of_the_unknown.png b/artworks/midjourney/78b6daff-5d75-4a53-8dcd-8459d7dde15b_entropy_of_the_unknown.png deleted file mode 100644 index 76f72dcf2e..0000000000 Binary files a/artworks/midjourney/78b6daff-5d75-4a53-8dcd-8459d7dde15b_entropy_of_the_unknown.png and /dev/null differ diff --git a/artworks/midjourney/7951d24b-c0a7-4d2a-99c7-0dcb1b70ad1d_datacenter_on_beach._robots_stand_guard._gloomy_dark_glistening_trending_on_artstation__--w_768_--h_512_--hd.png b/artworks/midjourney/7951d24b-c0a7-4d2a-99c7-0dcb1b70ad1d_datacenter_on_beach._robots_stand_guard._gloomy_dark_glistening_trending_on_artstation__--w_768_--h_512_--hd.png deleted file mode 100644 index 721bad090e..0000000000 Binary files a/artworks/midjourney/7951d24b-c0a7-4d2a-99c7-0dcb1b70ad1d_datacenter_on_beach._robots_stand_guard._gloomy_dark_glistening_trending_on_artstation__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/7a04b2e1-ff9f-41ee-af75-30af38e19aec_httpss.mj.runpJXlff__legacy_of_life_--hq.png b/artworks/midjourney/7a04b2e1-ff9f-41ee-af75-30af38e19aec_httpss.mj.runpJXlff__legacy_of_life_--hq.png deleted file mode 100644 index 599f36d061..0000000000 Binary files a/artworks/midjourney/7a04b2e1-ff9f-41ee-af75-30af38e19aec_httpss.mj.runpJXlff__legacy_of_life_--hq.png and /dev/null differ diff --git a/artworks/midjourney/7a083238-8dd4-4c6c-bb4d-3af1b9e3a346_i_remember_when_I_lost_my_mind._by_Beksinski_and_James_Gurney.png b/artworks/midjourney/7a083238-8dd4-4c6c-bb4d-3af1b9e3a346_i_remember_when_I_lost_my_mind._by_Beksinski_and_James_Gurney.png deleted file mode 100644 index e496eac24b..0000000000 Binary files a/artworks/midjourney/7a083238-8dd4-4c6c-bb4d-3af1b9e3a346_i_remember_when_I_lost_my_mind._by_Beksinski_and_James_Gurney.png and /dev/null differ diff --git a/artworks/midjourney/7bb7e727-2418-480b-a060-061a2c250046_ancient_goddess._plumage.png b/artworks/midjourney/7bb7e727-2418-480b-a060-061a2c250046_ancient_goddess._plumage.png deleted file mode 100644 index e4348d479f..0000000000 Binary files a/artworks/midjourney/7bb7e727-2418-480b-a060-061a2c250046_ancient_goddess._plumage.png and /dev/null differ diff --git a/artworks/midjourney/7c213c26-4afe-4181-8475-67734f91fc0e_medusa_DD__--w_320_--h_448.png b/artworks/midjourney/7c213c26-4afe-4181-8475-67734f91fc0e_medusa_DD__--w_320_--h_448.png deleted file mode 100644 index 6f3f24e544..0000000000 Binary files a/artworks/midjourney/7c213c26-4afe-4181-8475-67734f91fc0e_medusa_DD__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/7cdc0062-d1c2-47fc-af79-9890d364b065_karmasutra.png b/artworks/midjourney/7cdc0062-d1c2-47fc-af79-9890d364b065_karmasutra.png deleted file mode 100644 index 866ec60adb..0000000000 Binary files a/artworks/midjourney/7cdc0062-d1c2-47fc-af79-9890d364b065_karmasutra.png and /dev/null differ diff --git a/artworks/midjourney/7cf1155b-49d4-4145-b4f7-987026ba2bc5_the_foundations_of_origin_matte_painting_genesis_trending_on_artstation_high_resolution.png b/artworks/midjourney/7cf1155b-49d4-4145-b4f7-987026ba2bc5_the_foundations_of_origin_matte_painting_genesis_trending_on_artstation_high_resolution.png deleted file mode 100644 index 4199dc4a6e..0000000000 Binary files a/artworks/midjourney/7cf1155b-49d4-4145-b4f7-987026ba2bc5_the_foundations_of_origin_matte_painting_genesis_trending_on_artstation_high_resolution.png and /dev/null differ diff --git a/artworks/midjourney/7e40c177-4e54-4c2e-b661-d644ad079bb0_eternal_conflict__--w_448_--h_320.png b/artworks/midjourney/7e40c177-4e54-4c2e-b661-d644ad079bb0_eternal_conflict__--w_448_--h_320.png deleted file mode 100644 index 194d9e86c0..0000000000 Binary files a/artworks/midjourney/7e40c177-4e54-4c2e-b661-d644ad079bb0_eternal_conflict__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/7e94f6dd-456d-4ce8-8d03-2a6523496404_jewelry_made_out_of_jpeg_artefacts_--hq.png b/artworks/midjourney/7e94f6dd-456d-4ce8-8d03-2a6523496404_jewelry_made_out_of_jpeg_artefacts_--hq.png deleted file mode 100644 index 7e1e1eda5b..0000000000 Binary files a/artworks/midjourney/7e94f6dd-456d-4ce8-8d03-2a6523496404_jewelry_made_out_of_jpeg_artefacts_--hq.png and /dev/null differ diff --git a/artworks/midjourney/7ed62523-c432-42ef-9afc-da2226462ef1_death_to_the_beholder_force_of_none.png b/artworks/midjourney/7ed62523-c432-42ef-9afc-da2226462ef1_death_to_the_beholder_force_of_none.png deleted file mode 100644 index 311535134c..0000000000 Binary files a/artworks/midjourney/7ed62523-c432-42ef-9afc-da2226462ef1_death_to_the_beholder_force_of_none.png and /dev/null differ diff --git a/artworks/midjourney/7f16f165-95c6-4cd9-aedb-c4f84668e8a1_dont_mess_with_the_Jesus.png b/artworks/midjourney/7f16f165-95c6-4cd9-aedb-c4f84668e8a1_dont_mess_with_the_Jesus.png deleted file mode 100644 index 6ff38ab8ae..0000000000 Binary files a/artworks/midjourney/7f16f165-95c6-4cd9-aedb-c4f84668e8a1_dont_mess_with_the_Jesus.png and /dev/null differ diff --git a/artworks/midjourney/7f388dff-651d-46b2-a147-5b2e09aa120b_antagonist._by_Luke_Sywalk_and_Beksinski.png b/artworks/midjourney/7f388dff-651d-46b2-a147-5b2e09aa120b_antagonist._by_Luke_Sywalk_and_Beksinski.png deleted file mode 100644 index 2616de747d..0000000000 Binary files a/artworks/midjourney/7f388dff-651d-46b2-a147-5b2e09aa120b_antagonist._by_Luke_Sywalk_and_Beksinski.png and /dev/null differ diff --git a/artworks/midjourney/7f96f23a-44b2-4995-83ba-aac870b9f219_fantastic_scenery_of_the_third_eye_invasion_humankind_is_doomed_by_Michelangelo.png b/artworks/midjourney/7f96f23a-44b2-4995-83ba-aac870b9f219_fantastic_scenery_of_the_third_eye_invasion_humankind_is_doomed_by_Michelangelo.png deleted file mode 100644 index c27d59d078..0000000000 Binary files a/artworks/midjourney/7f96f23a-44b2-4995-83ba-aac870b9f219_fantastic_scenery_of_the_third_eye_invasion_humankind_is_doomed_by_Michelangelo.png and /dev/null differ diff --git a/artworks/midjourney/7fb788ae-4828-4679-9977-6e21b5d17a24_why_why_why.png b/artworks/midjourney/7fb788ae-4828-4679-9977-6e21b5d17a24_why_why_why.png deleted file mode 100644 index 7cf7ad8a0e..0000000000 Binary files a/artworks/midjourney/7fb788ae-4828-4679-9977-6e21b5d17a24_why_why_why.png and /dev/null differ diff --git a/artworks/midjourney/80732426-7a4b-4934-b59e-e5f07d1f88a6_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k__--w_768_.png b/artworks/midjourney/80732426-7a4b-4934-b59e-e5f07d1f88a6_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k__--w_768_.png deleted file mode 100644 index a3c85054d1..0000000000 Binary files a/artworks/midjourney/80732426-7a4b-4934-b59e-e5f07d1f88a6_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k__--w_768_.png and /dev/null differ diff --git a/artworks/midjourney/808d2b7d-ee50-491b-b666-5025c6c89445_amoeba_supernova_space.png b/artworks/midjourney/808d2b7d-ee50-491b-b666-5025c6c89445_amoeba_supernova_space.png deleted file mode 100644 index 84d8754b8d..0000000000 Binary files a/artworks/midjourney/808d2b7d-ee50-491b-b666-5025c6c89445_amoeba_supernova_space.png and /dev/null differ diff --git a/artworks/midjourney/80920e15-1df0-41e0-af36-f5c91ec9f828_Jonas_Jalapeno-colored_bio_dome_shelter.png b/artworks/midjourney/80920e15-1df0-41e0-af36-f5c91ec9f828_Jonas_Jalapeno-colored_bio_dome_shelter.png deleted file mode 100644 index 02b64cc167..0000000000 Binary files a/artworks/midjourney/80920e15-1df0-41e0-af36-f5c91ec9f828_Jonas_Jalapeno-colored_bio_dome_shelter.png and /dev/null differ diff --git a/artworks/midjourney/80a0e6d5-517e-4719-b7c9-f64b561612de_Jonas_avocado_beautiful_lighting_beautiful_ambience_volumetric_lighting_global_illumination.png b/artworks/midjourney/80a0e6d5-517e-4719-b7c9-f64b561612de_Jonas_avocado_beautiful_lighting_beautiful_ambience_volumetric_lighting_global_illumination.png deleted file mode 100644 index 923e2863cb..0000000000 Binary files a/artworks/midjourney/80a0e6d5-517e-4719-b7c9-f64b561612de_Jonas_avocado_beautiful_lighting_beautiful_ambience_volumetric_lighting_global_illumination.png and /dev/null differ diff --git a/artworks/midjourney/80ac2532-f278-4cb8-affc-145bc3658df0_Jonas_At_least_you_would_look_human_now..png b/artworks/midjourney/80ac2532-f278-4cb8-affc-145bc3658df0_Jonas_At_least_you_would_look_human_now..png deleted file mode 100644 index 623ff77d0e..0000000000 Binary files a/artworks/midjourney/80ac2532-f278-4cb8-affc-145bc3658df0_Jonas_At_least_you_would_look_human_now..png and /dev/null differ diff --git a/artworks/midjourney/80efcc44-499a-4b31-b608-07129658bb30_beacon_of_light_in_the_darkness._by_james_gurney_matte_painting_CGSociety_realistic_materials_photo_realistic_postprocessing_cute.png b/artworks/midjourney/80efcc44-499a-4b31-b608-07129658bb30_beacon_of_light_in_the_darkness._by_james_gurney_matte_painting_CGSociety_realistic_materials_photo_realistic_postprocessing_cute.png deleted file mode 100644 index 98c019fd58..0000000000 Binary files a/artworks/midjourney/80efcc44-499a-4b31-b608-07129658bb30_beacon_of_light_in_the_darkness._by_james_gurney_matte_painting_CGSociety_realistic_materials_photo_realistic_postprocessing_cute.png and /dev/null differ diff --git a/artworks/midjourney/820c2d42-2c40-4010-b6f1-f6965d0e4cbb_Hydra._DD_character_art.png b/artworks/midjourney/820c2d42-2c40-4010-b6f1-f6965d0e4cbb_Hydra._DD_character_art.png deleted file mode 100644 index f9bb9ea22a..0000000000 Binary files a/artworks/midjourney/820c2d42-2c40-4010-b6f1-f6965d0e4cbb_Hydra._DD_character_art.png and /dev/null differ diff --git a/artworks/midjourney/8229b581-def8-4766-b068-6c1f8f0f9d05__.png b/artworks/midjourney/8229b581-def8-4766-b068-6c1f8f0f9d05__.png deleted file mode 100644 index 5ad9cf5355..0000000000 Binary files a/artworks/midjourney/8229b581-def8-4766-b068-6c1f8f0f9d05__.png and /dev/null differ diff --git a/artworks/midjourney/825b31a0-de6c-4131-bb39-277bf36728a3_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k.png b/artworks/midjourney/825b31a0-de6c-4131-bb39-277bf36728a3_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k.png deleted file mode 100644 index 9811d63921..0000000000 Binary files a/artworks/midjourney/825b31a0-de6c-4131-bb39-277bf36728a3_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k.png and /dev/null differ diff --git a/artworks/midjourney/8266e09b-b4b9-43da-9242-d03c2d24bf4d_suprafragil_bestiary__--w_512_--h_768_--hd.png b/artworks/midjourney/8266e09b-b4b9-43da-9242-d03c2d24bf4d_suprafragil_bestiary__--w_512_--h_768_--hd.png deleted file mode 100644 index d8a5a0c997..0000000000 Binary files a/artworks/midjourney/8266e09b-b4b9-43da-9242-d03c2d24bf4d_suprafragil_bestiary__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/82ad570e-2ea3-434c-ab5f-635e096a3d3d_Jonas_suit_up.png b/artworks/midjourney/82ad570e-2ea3-434c-ab5f-635e096a3d3d_Jonas_suit_up.png deleted file mode 100644 index 6e9f3e6041..0000000000 Binary files a/artworks/midjourney/82ad570e-2ea3-434c-ab5f-635e096a3d3d_Jonas_suit_up.png and /dev/null differ diff --git a/artworks/midjourney/8344a617-30b1-4217-aeb9-63c632ca4a25_trans_c3po.png b/artworks/midjourney/8344a617-30b1-4217-aeb9-63c632ca4a25_trans_c3po.png deleted file mode 100644 index 3df0b243ba..0000000000 Binary files a/artworks/midjourney/8344a617-30b1-4217-aeb9-63c632ca4a25_trans_c3po.png and /dev/null differ diff --git a/artworks/midjourney/8347ae7b-9fb9-4e2f-9ea9-e8991b6c9857_Jonas_polaroid_picture_of_a_human.png b/artworks/midjourney/8347ae7b-9fb9-4e2f-9ea9-e8991b6c9857_Jonas_polaroid_picture_of_a_human.png deleted file mode 100644 index b706755b9a..0000000000 Binary files a/artworks/midjourney/8347ae7b-9fb9-4e2f-9ea9-e8991b6c9857_Jonas_polaroid_picture_of_a_human.png and /dev/null differ diff --git a/artworks/midjourney/83753cf2-6d59-4949-85ae-a3cc7c7dd230_actress_mugshot__--w_320_--h_448.png b/artworks/midjourney/83753cf2-6d59-4949-85ae-a3cc7c7dd230_actress_mugshot__--w_320_--h_448.png deleted file mode 100644 index 1b7c57b4fd..0000000000 Binary files a/artworks/midjourney/83753cf2-6d59-4949-85ae-a3cc7c7dd230_actress_mugshot__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/83b8a795-1c28-439a-99e3-e3eec1f07c77_cyril_DD_bestiary_httpst.lyup1v.png b/artworks/midjourney/83b8a795-1c28-439a-99e3-e3eec1f07c77_cyril_DD_bestiary_httpst.lyup1v.png deleted file mode 100644 index c24454f581..0000000000 Binary files a/artworks/midjourney/83b8a795-1c28-439a-99e3-e3eec1f07c77_cyril_DD_bestiary_httpst.lyup1v.png and /dev/null differ diff --git a/artworks/midjourney/83c57386-79b4-4226-8d74-7991671d77ef_why.png b/artworks/midjourney/83c57386-79b4-4226-8d74-7991671d77ef_why.png deleted file mode 100644 index b6f00e7158..0000000000 Binary files a/artworks/midjourney/83c57386-79b4-4226-8d74-7991671d77ef_why.png and /dev/null differ diff --git a/artworks/midjourney/83cae4f1-0b4f-4ba8-b245-59f88d61d40a_what_if_this_is_a_dream_painting_by_Gandalf.png b/artworks/midjourney/83cae4f1-0b4f-4ba8-b245-59f88d61d40a_what_if_this_is_a_dream_painting_by_Gandalf.png deleted file mode 100644 index e07b1b0baa..0000000000 Binary files a/artworks/midjourney/83cae4f1-0b4f-4ba8-b245-59f88d61d40a_what_if_this_is_a_dream_painting_by_Gandalf.png and /dev/null differ diff --git a/artworks/midjourney/83f1436e-ee6f-43d9-aafc-964a211d82e1_Metallica_DD_character__--w_320_--h_448.png b/artworks/midjourney/83f1436e-ee6f-43d9-aafc-964a211d82e1_Metallica_DD_character__--w_320_--h_448.png deleted file mode 100644 index 671c829fef..0000000000 Binary files a/artworks/midjourney/83f1436e-ee6f-43d9-aafc-964a211d82e1_Metallica_DD_character__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/8527fc24-59af-4d11-962e-dd861df8d039_hellraiser_pinhead_apple.png b/artworks/midjourney/8527fc24-59af-4d11-962e-dd861df8d039_hellraiser_pinhead_apple.png deleted file mode 100644 index 75228328c8..0000000000 Binary files a/artworks/midjourney/8527fc24-59af-4d11-962e-dd861df8d039_hellraiser_pinhead_apple.png and /dev/null differ diff --git a/artworks/midjourney/855d21a6-67a6-43af-9c6b-5f56e80db7ff_t-shirt._by_dan_mumford.png b/artworks/midjourney/855d21a6-67a6-43af-9c6b-5f56e80db7ff_t-shirt._by_dan_mumford.png deleted file mode 100644 index 79e04e7d29..0000000000 Binary files a/artworks/midjourney/855d21a6-67a6-43af-9c6b-5f56e80db7ff_t-shirt._by_dan_mumford.png and /dev/null differ diff --git a/artworks/midjourney/8653c379-16a8-4e50-98e1-61653263a047_Jonas_httpss.mj.runQsiXJS__At_least_you_would_look_human_now..png b/artworks/midjourney/8653c379-16a8-4e50-98e1-61653263a047_Jonas_httpss.mj.runQsiXJS__At_least_you_would_look_human_now..png deleted file mode 100644 index 72cc838072..0000000000 Binary files a/artworks/midjourney/8653c379-16a8-4e50-98e1-61653263a047_Jonas_httpss.mj.runQsiXJS__At_least_you_would_look_human_now..png and /dev/null differ diff --git a/artworks/midjourney/8718da18-0cbb-4427-a956-cddba4ed058a_Jonas_lord_of_the_kings.png b/artworks/midjourney/8718da18-0cbb-4427-a956-cddba4ed058a_Jonas_lord_of_the_kings.png deleted file mode 100644 index a0e3fc509b..0000000000 Binary files a/artworks/midjourney/8718da18-0cbb-4427-a956-cddba4ed058a_Jonas_lord_of_the_kings.png and /dev/null differ diff --git a/artworks/midjourney/877fc720-9f6e-4c13-bf78-2c58da2f9ac7_no_influence._by_Bek.sins.ki.png b/artworks/midjourney/877fc720-9f6e-4c13-bf78-2c58da2f9ac7_no_influence._by_Bek.sins.ki.png deleted file mode 100644 index d1125c3140..0000000000 Binary files a/artworks/midjourney/877fc720-9f6e-4c13-bf78-2c58da2f9ac7_no_influence._by_Bek.sins.ki.png and /dev/null differ diff --git a/artworks/midjourney/87a8c770-2ddb-4e6f-ba24-e0f4de2f58bc_Jonas_irradiant_laloquence.png b/artworks/midjourney/87a8c770-2ddb-4e6f-ba24-e0f4de2f58bc_Jonas_irradiant_laloquence.png deleted file mode 100644 index baa759e093..0000000000 Binary files a/artworks/midjourney/87a8c770-2ddb-4e6f-ba24-e0f4de2f58bc_Jonas_irradiant_laloquence.png and /dev/null differ diff --git a/artworks/midjourney/87c64ec9-104b-4231-92db-fd404ebea3f8_propaganda_poster_for_the_advancement_of_illuminati.png b/artworks/midjourney/87c64ec9-104b-4231-92db-fd404ebea3f8_propaganda_poster_for_the_advancement_of_illuminati.png deleted file mode 100644 index de73053a7c..0000000000 Binary files a/artworks/midjourney/87c64ec9-104b-4231-92db-fd404ebea3f8_propaganda_poster_for_the_advancement_of_illuminati.png and /dev/null differ diff --git a/artworks/midjourney/880e7222-d1d9-47ec-bbb1-578ea2e2f378_httpss.mj.runw4GtBx__yoda_with_lipstick.png b/artworks/midjourney/880e7222-d1d9-47ec-bbb1-578ea2e2f378_httpss.mj.runw4GtBx__yoda_with_lipstick.png deleted file mode 100644 index 01f3978569..0000000000 Binary files a/artworks/midjourney/880e7222-d1d9-47ec-bbb1-578ea2e2f378_httpss.mj.runw4GtBx__yoda_with_lipstick.png and /dev/null differ diff --git a/artworks/midjourney/88931f8f-36e8-4ec8-9f79-6a8d749645f2_Jonas_httpss.mj.runZluh6h_httpss.mj.runZluh6h_httpss.mj.runZluh6h.png b/artworks/midjourney/88931f8f-36e8-4ec8-9f79-6a8d749645f2_Jonas_httpss.mj.runZluh6h_httpss.mj.runZluh6h_httpss.mj.runZluh6h.png deleted file mode 100644 index dcaff22ff4..0000000000 Binary files a/artworks/midjourney/88931f8f-36e8-4ec8-9f79-6a8d749645f2_Jonas_httpss.mj.runZluh6h_httpss.mj.runZluh6h_httpss.mj.runZluh6h.png and /dev/null differ diff --git a/artworks/midjourney/88a01c16-6ffc-4bf5-9255-88d77d332519_native_indian._vintage_photograph_--hq_--nostretch__--w_512_--h_768_--hd.png b/artworks/midjourney/88a01c16-6ffc-4bf5-9255-88d77d332519_native_indian._vintage_photograph_--hq_--nostretch__--w_512_--h_768_--hd.png deleted file mode 100644 index 93e476aaee..0000000000 Binary files a/artworks/midjourney/88a01c16-6ffc-4bf5-9255-88d77d332519_native_indian._vintage_photograph_--hq_--nostretch__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/88eb0cb3-e715-4250-b99b-2a158a7bf8c6_beacon_of_light_in_the_darkness._by_james_gurney_matte_painting_CGSociety_realistic_materials_photo_realistic_postprocessing_cute.png b/artworks/midjourney/88eb0cb3-e715-4250-b99b-2a158a7bf8c6_beacon_of_light_in_the_darkness._by_james_gurney_matte_painting_CGSociety_realistic_materials_photo_realistic_postprocessing_cute.png deleted file mode 100644 index 0b025c9fe0..0000000000 Binary files a/artworks/midjourney/88eb0cb3-e715-4250-b99b-2a158a7bf8c6_beacon_of_light_in_the_darkness._by_james_gurney_matte_painting_CGSociety_realistic_materials_photo_realistic_postprocessing_cute.png and /dev/null differ diff --git a/artworks/midjourney/8923d629-17a0-43f8-be96-9ab4f80c38ef_Jonas_a_city_razed__--w_768_--h_512_--hd.png b/artworks/midjourney/8923d629-17a0-43f8-be96-9ab4f80c38ef_Jonas_a_city_razed__--w_768_--h_512_--hd.png deleted file mode 100644 index da106730db..0000000000 Binary files a/artworks/midjourney/8923d629-17a0-43f8-be96-9ab4f80c38ef_Jonas_a_city_razed__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/8980090b-d646-4daa-a286-253323dfbcc7_the_time_lord_--hq.png b/artworks/midjourney/8980090b-d646-4daa-a286-253323dfbcc7_the_time_lord_--hq.png deleted file mode 100644 index 84b790d98a..0000000000 Binary files a/artworks/midjourney/8980090b-d646-4daa-a286-253323dfbcc7_the_time_lord_--hq.png and /dev/null differ diff --git a/artworks/midjourney/8982ef0d-199c-4cfb-9ed2-fca960b96cea_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k.png b/artworks/midjourney/8982ef0d-199c-4cfb-9ed2-fca960b96cea_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k.png deleted file mode 100644 index 299930aa71..0000000000 Binary files a/artworks/midjourney/8982ef0d-199c-4cfb-9ed2-fca960b96cea_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k.png and /dev/null differ diff --git a/artworks/midjourney/89c5ecd7-f065-4736-b224-909ab1d73238_httpss.mj.runu0CTIH__near-death_experience_into_the_light_by_WLOP_artstation_--seed_78923.png b/artworks/midjourney/89c5ecd7-f065-4736-b224-909ab1d73238_httpss.mj.runu0CTIH__near-death_experience_into_the_light_by_WLOP_artstation_--seed_78923.png deleted file mode 100644 index 2ebcb687b0..0000000000 Binary files a/artworks/midjourney/89c5ecd7-f065-4736-b224-909ab1d73238_httpss.mj.runu0CTIH__near-death_experience_into_the_light_by_WLOP_artstation_--seed_78923.png and /dev/null differ diff --git a/artworks/midjourney/89d67417-824b-4991-bddb-535c4c0b000f_what_if_there_is_no_tomorrow_fighting_on_the_edge_war_is_hell.png b/artworks/midjourney/89d67417-824b-4991-bddb-535c4c0b000f_what_if_there_is_no_tomorrow_fighting_on_the_edge_war_is_hell.png deleted file mode 100644 index 7efb6197d6..0000000000 Binary files a/artworks/midjourney/89d67417-824b-4991-bddb-535c4c0b000f_what_if_there_is_no_tomorrow_fighting_on_the_edge_war_is_hell.png and /dev/null differ diff --git a/artworks/midjourney/8ae3222e-b40f-40c8-9420-6fdc16ae7a54_Jonas_batman_pop_art_Retro_style_by_Roy_Lichtenstein.png b/artworks/midjourney/8ae3222e-b40f-40c8-9420-6fdc16ae7a54_Jonas_batman_pop_art_Retro_style_by_Roy_Lichtenstein.png deleted file mode 100644 index 808813ed95..0000000000 Binary files a/artworks/midjourney/8ae3222e-b40f-40c8-9420-6fdc16ae7a54_Jonas_batman_pop_art_Retro_style_by_Roy_Lichtenstein.png and /dev/null differ diff --git a/artworks/midjourney/8af9768e-1aad-4876-ad3e-70d007b5a84e_far_out_AWESOME.png b/artworks/midjourney/8af9768e-1aad-4876-ad3e-70d007b5a84e_far_out_AWESOME.png deleted file mode 100644 index 14fc04a66c..0000000000 Binary files a/artworks/midjourney/8af9768e-1aad-4876-ad3e-70d007b5a84e_far_out_AWESOME.png and /dev/null differ diff --git a/artworks/midjourney/8b19e820-5f2a-4ca2-aa38-751e3fc08845_Jonas_httpss.mj.runfAOGx5__I_dont_believe_nicholas_cage_post-processing_highly_detailed_matte_painting_4k_.png b/artworks/midjourney/8b19e820-5f2a-4ca2-aa38-751e3fc08845_Jonas_httpss.mj.runfAOGx5__I_dont_believe_nicholas_cage_post-processing_highly_detailed_matte_painting_4k_.png deleted file mode 100644 index 1dab3ee291..0000000000 Binary files a/artworks/midjourney/8b19e820-5f2a-4ca2-aa38-751e3fc08845_Jonas_httpss.mj.runfAOGx5__I_dont_believe_nicholas_cage_post-processing_highly_detailed_matte_painting_4k_.png and /dev/null differ diff --git a/artworks/midjourney/8b7d9fdc-4c0c-4b8c-be80-e5acb813991b_gateway_to_doom_--no_happy_--w_320_--h_256.png b/artworks/midjourney/8b7d9fdc-4c0c-4b8c-be80-e5acb813991b_gateway_to_doom_--no_happy_--w_320_--h_256.png deleted file mode 100644 index fdc2f058bd..0000000000 Binary files a/artworks/midjourney/8b7d9fdc-4c0c-4b8c-be80-e5acb813991b_gateway_to_doom_--no_happy_--w_320_--h_256.png and /dev/null differ diff --git a/artworks/midjourney/8b9d820d-c7f3-4b62-bd8e-5b114c7ce9da_Jonas_I_dont_believe_nicholas_cage_post-processing_highly_detailed_matte_painting_4k_--w_768_--h_512_--hd.png b/artworks/midjourney/8b9d820d-c7f3-4b62-bd8e-5b114c7ce9da_Jonas_I_dont_believe_nicholas_cage_post-processing_highly_detailed_matte_painting_4k_--w_768_--h_512_--hd.png deleted file mode 100644 index 3f9102d087..0000000000 Binary files a/artworks/midjourney/8b9d820d-c7f3-4b62-bd8e-5b114c7ce9da_Jonas_I_dont_believe_nicholas_cage_post-processing_highly_detailed_matte_painting_4k_--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/8bd7deac-e0f1-4b7c-940c-c6a5c20d586a_bravo.png b/artworks/midjourney/8bd7deac-e0f1-4b7c-940c-c6a5c20d586a_bravo.png deleted file mode 100644 index 3f97d93f3c..0000000000 Binary files a/artworks/midjourney/8bd7deac-e0f1-4b7c-940c-c6a5c20d586a_bravo.png and /dev/null differ diff --git a/artworks/midjourney/8c13b99a-0e19-41b6-bc22-d03f2f663508_Jonas_four-eyed_monster_httpss.mj.runW0b1Re.png b/artworks/midjourney/8c13b99a-0e19-41b6-bc22-d03f2f663508_Jonas_four-eyed_monster_httpss.mj.runW0b1Re.png deleted file mode 100644 index c0bd838fb2..0000000000 Binary files a/artworks/midjourney/8c13b99a-0e19-41b6-bc22-d03f2f663508_Jonas_four-eyed_monster_httpss.mj.runW0b1Re.png and /dev/null differ diff --git a/artworks/midjourney/8c277c74-cdfa-4314-9443-a7c8d0711ba3_beautiful_--no_ugly__--w_320_--h_448.png b/artworks/midjourney/8c277c74-cdfa-4314-9443-a7c8d0711ba3_beautiful_--no_ugly__--w_320_--h_448.png deleted file mode 100644 index 73c625dbe7..0000000000 Binary files a/artworks/midjourney/8c277c74-cdfa-4314-9443-a7c8d0711ba3_beautiful_--no_ugly__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/8de31b41-907f-400b-8132-9557073ffcb9_Jonas_love_the_entropy_within.png b/artworks/midjourney/8de31b41-907f-400b-8132-9557073ffcb9_Jonas_love_the_entropy_within.png deleted file mode 100644 index edfdd8f83b..0000000000 Binary files a/artworks/midjourney/8de31b41-907f-400b-8132-9557073ffcb9_Jonas_love_the_entropy_within.png and /dev/null differ diff --git a/artworks/midjourney/8de415af-df41-44f0-b133-f6809450600b_harbinger_of_light_darkness_shall_forever_cede_to_the_light__--w_768_--h_512_--hd.png b/artworks/midjourney/8de415af-df41-44f0-b133-f6809450600b_harbinger_of_light_darkness_shall_forever_cede_to_the_light__--w_768_--h_512_--hd.png deleted file mode 100644 index 7792a33fbd..0000000000 Binary files a/artworks/midjourney/8de415af-df41-44f0-b133-f6809450600b_harbinger_of_light_darkness_shall_forever_cede_to_the_light__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/8e21982b-8f94-4a18-8582-54481b8ea560_water_tank_The_Prestige__--w_320_--h_448.png b/artworks/midjourney/8e21982b-8f94-4a18-8582-54481b8ea560_water_tank_The_Prestige__--w_320_--h_448.png deleted file mode 100644 index 471d37eba2..0000000000 Binary files a/artworks/midjourney/8e21982b-8f94-4a18-8582-54481b8ea560_water_tank_The_Prestige__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/8f9c2680-baa5-4900-bddd-d989d82cdd22_Jonas_grains_of_crystallite_sand_water_in_your_eyes.png b/artworks/midjourney/8f9c2680-baa5-4900-bddd-d989d82cdd22_Jonas_grains_of_crystallite_sand_water_in_your_eyes.png deleted file mode 100644 index 40bcbd716e..0000000000 Binary files a/artworks/midjourney/8f9c2680-baa5-4900-bddd-d989d82cdd22_Jonas_grains_of_crystallite_sand_water_in_your_eyes.png and /dev/null differ diff --git a/artworks/midjourney/8fc5e4c2-c5c5-4d66-9208-0bc95e399ad8_Jonas_cigarettes_box_with_warning_label_highly_detailed_ultra_photorealistic__--w_320_--h_448.png b/artworks/midjourney/8fc5e4c2-c5c5-4d66-9208-0bc95e399ad8_Jonas_cigarettes_box_with_warning_label_highly_detailed_ultra_photorealistic__--w_320_--h_448.png deleted file mode 100644 index 4700bf7496..0000000000 Binary files a/artworks/midjourney/8fc5e4c2-c5c5-4d66-9208-0bc95e399ad8_Jonas_cigarettes_box_with_warning_label_highly_detailed_ultra_photorealistic__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/8fde9d44-daa3-46f6-9482-2bb6061f916b_harbinger_of_light_darkness_shall_forever_cede_to_the_light__--w_768_--h_512_--hd.png b/artworks/midjourney/8fde9d44-daa3-46f6-9482-2bb6061f916b_harbinger_of_light_darkness_shall_forever_cede_to_the_light__--w_768_--h_512_--hd.png deleted file mode 100644 index 66f67f353e..0000000000 Binary files a/artworks/midjourney/8fde9d44-daa3-46f6-9482-2bb6061f916b_harbinger_of_light_darkness_shall_forever_cede_to_the_light__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/906d3105-7292-4823-9f7c-d95b5f8b4f46_O.png b/artworks/midjourney/906d3105-7292-4823-9f7c-d95b5f8b4f46_O.png deleted file mode 100644 index bdc91c5bad..0000000000 Binary files a/artworks/midjourney/906d3105-7292-4823-9f7c-d95b5f8b4f46_O.png and /dev/null differ diff --git a/artworks/midjourney/910a7574-9112-479b-a65c-68dca1817a6d_sculpture_made_out_of_jpeg_artefacts__--w_512_--h_768_--hd.png b/artworks/midjourney/910a7574-9112-479b-a65c-68dca1817a6d_sculpture_made_out_of_jpeg_artefacts__--w_512_--h_768_--hd.png deleted file mode 100644 index 27199b98d1..0000000000 Binary files a/artworks/midjourney/910a7574-9112-479b-a65c-68dca1817a6d_sculpture_made_out_of_jpeg_artefacts__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/9170f697-b502-4468-98bb-fe1f764a6701_Jonas_When_I_leave_this_body_I_go_on_what_is_called_through_the_black_hole._Its_above_the_Milky_Way_galaxy.png b/artworks/midjourney/9170f697-b502-4468-98bb-fe1f764a6701_Jonas_When_I_leave_this_body_I_go_on_what_is_called_through_the_black_hole._Its_above_the_Milky_Way_galaxy.png deleted file mode 100644 index a4b3d9bc3a..0000000000 Binary files a/artworks/midjourney/9170f697-b502-4468-98bb-fe1f764a6701_Jonas_When_I_leave_this_body_I_go_on_what_is_called_through_the_black_hole._Its_above_the_Milky_Way_galaxy.png and /dev/null differ diff --git a/artworks/midjourney/9212bf9c-e341-4756-b775-dcbfd59ffd55_blob_of_horror_absorbed_by_bright_light_in_the_darkness.png b/artworks/midjourney/9212bf9c-e341-4756-b775-dcbfd59ffd55_blob_of_horror_absorbed_by_bright_light_in_the_darkness.png deleted file mode 100644 index 30a66101a2..0000000000 Binary files a/artworks/midjourney/9212bf9c-e341-4756-b775-dcbfd59ffd55_blob_of_horror_absorbed_by_bright_light_in_the_darkness.png and /dev/null differ diff --git a/artworks/midjourney/9226dd8a-de5a-4088-9841-37fffa4180de_scary_clown_face_business_manager_httpss.mj.runx6CPUa__--w_320_--h_448.png b/artworks/midjourney/9226dd8a-de5a-4088-9841-37fffa4180de_scary_clown_face_business_manager_httpss.mj.runx6CPUa__--w_320_--h_448.png deleted file mode 100644 index bd93545f4f..0000000000 Binary files a/artworks/midjourney/9226dd8a-de5a-4088-9841-37fffa4180de_scary_clown_face_business_manager_httpss.mj.runx6CPUa__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/92757272-a66a-469c-b93c-c5fa95be17da_sad_panda_holding_sign_that_reads_Putin_Stop_the_war_photograph__--w_320_--h_448.png b/artworks/midjourney/92757272-a66a-469c-b93c-c5fa95be17da_sad_panda_holding_sign_that_reads_Putin_Stop_the_war_photograph__--w_320_--h_448.png deleted file mode 100644 index 13b04b447b..0000000000 Binary files a/artworks/midjourney/92757272-a66a-469c-b93c-c5fa95be17da_sad_panda_holding_sign_that_reads_Putin_Stop_the_war_photograph__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/93535f83-7f38-4bb5-8984-1748ac19bbf9_repent_sinners_painting_by_Mark_Bradford.png b/artworks/midjourney/93535f83-7f38-4bb5-8984-1748ac19bbf9_repent_sinners_painting_by_Mark_Bradford.png deleted file mode 100644 index 8b5decf02b..0000000000 Binary files a/artworks/midjourney/93535f83-7f38-4bb5-8984-1748ac19bbf9_repent_sinners_painting_by_Mark_Bradford.png and /dev/null differ diff --git a/artworks/midjourney/9387625b-1882-4a36-87c1-429d29e0d387_the_foundations_of_origin_matte_painting_genesis_trending_on_artstation_high_resolution.png b/artworks/midjourney/9387625b-1882-4a36-87c1-429d29e0d387_the_foundations_of_origin_matte_painting_genesis_trending_on_artstation_high_resolution.png deleted file mode 100644 index 39385987c4..0000000000 Binary files a/artworks/midjourney/9387625b-1882-4a36-87c1-429d29e0d387_the_foundations_of_origin_matte_painting_genesis_trending_on_artstation_high_resolution.png and /dev/null differ diff --git a/artworks/midjourney/93a18163-8f0e-4b14-8b8a-240d40a19f1d_nooooo11.png b/artworks/midjourney/93a18163-8f0e-4b14-8b8a-240d40a19f1d_nooooo11.png deleted file mode 100644 index cac73b4f08..0000000000 Binary files a/artworks/midjourney/93a18163-8f0e-4b14-8b8a-240d40a19f1d_nooooo11.png and /dev/null differ diff --git a/artworks/midjourney/93e71965-2bca-42b2-9eec-9f3fd1818caa_why_why_why.png b/artworks/midjourney/93e71965-2bca-42b2-9eec-9f3fd1818caa_why_why_why.png deleted file mode 100644 index f9b9cba2c1..0000000000 Binary files a/artworks/midjourney/93e71965-2bca-42b2-9eec-9f3fd1818caa_why_why_why.png and /dev/null differ diff --git a/artworks/midjourney/9490c31f-2e85-43c3-8d38-805da075e19c_Jonas_synthesis_engines_have_passed_through_the_uncanny_valley.png b/artworks/midjourney/9490c31f-2e85-43c3-8d38-805da075e19c_Jonas_synthesis_engines_have_passed_through_the_uncanny_valley.png deleted file mode 100644 index db049273dc..0000000000 Binary files a/artworks/midjourney/9490c31f-2e85-43c3-8d38-805da075e19c_Jonas_synthesis_engines_have_passed_through_the_uncanny_valley.png and /dev/null differ diff --git a/artworks/midjourney/95c3149c-e400-4d09-be90-8851e8e7e36c_gnarly.png b/artworks/midjourney/95c3149c-e400-4d09-be90-8851e8e7e36c_gnarly.png deleted file mode 100644 index b1fe3d3b5e..0000000000 Binary files a/artworks/midjourney/95c3149c-e400-4d09-be90-8851e8e7e36c_gnarly.png and /dev/null differ diff --git a/artworks/midjourney/95d2e837-8932-4f65-af7c-c6ce3e6dcebc_poster_of_a_hydrophobic_banana_--w_512_--h_768_--hd.png b/artworks/midjourney/95d2e837-8932-4f65-af7c-c6ce3e6dcebc_poster_of_a_hydrophobic_banana_--w_512_--h_768_--hd.png deleted file mode 100644 index 560fb54029..0000000000 Binary files a/artworks/midjourney/95d2e837-8932-4f65-af7c-c6ce3e6dcebc_poster_of_a_hydrophobic_banana_--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/9625225c-04f3-4e6c-afb6-1eebcfd0a989_ancient_goddess._plumage.png b/artworks/midjourney/9625225c-04f3-4e6c-afb6-1eebcfd0a989_ancient_goddess._plumage.png deleted file mode 100644 index e2bb67ab91..0000000000 Binary files a/artworks/midjourney/9625225c-04f3-4e6c-afb6-1eebcfd0a989_ancient_goddess._plumage.png and /dev/null differ diff --git a/artworks/midjourney/966de4d6-9f1b-4afd-b42b-28af52541bc4_photographic_evidence_that_god_exists.png b/artworks/midjourney/966de4d6-9f1b-4afd-b42b-28af52541bc4_photographic_evidence_that_god_exists.png deleted file mode 100644 index f4cb50363c..0000000000 Binary files a/artworks/midjourney/966de4d6-9f1b-4afd-b42b-28af52541bc4_photographic_evidence_that_god_exists.png and /dev/null differ diff --git a/artworks/midjourney/967a714c-d1ec-4154-bbdb-68557561d560_Jonas_four-eyed_monster_httpss.mj.runW0b1Re.png b/artworks/midjourney/967a714c-d1ec-4154-bbdb-68557561d560_Jonas_four-eyed_monster_httpss.mj.runW0b1Re.png deleted file mode 100644 index beb19ebcf3..0000000000 Binary files a/artworks/midjourney/967a714c-d1ec-4154-bbdb-68557561d560_Jonas_four-eyed_monster_httpss.mj.runW0b1Re.png and /dev/null differ diff --git a/artworks/midjourney/971878e1-f815-4a94-aab4-a5fbb109e98a_Jonas_polaroid_picture_of_a_human.png b/artworks/midjourney/971878e1-f815-4a94-aab4-a5fbb109e98a_Jonas_polaroid_picture_of_a_human.png deleted file mode 100644 index b2708ed990..0000000000 Binary files a/artworks/midjourney/971878e1-f815-4a94-aab4-a5fbb109e98a_Jonas_polaroid_picture_of_a_human.png and /dev/null differ diff --git a/artworks/midjourney/97321826-0bae-45c8-8c1c-41570e1b0f06_dont_mess_with_the_Jesus.png b/artworks/midjourney/97321826-0bae-45c8-8c1c-41570e1b0f06_dont_mess_with_the_Jesus.png deleted file mode 100644 index 79c642b18f..0000000000 Binary files a/artworks/midjourney/97321826-0bae-45c8-8c1c-41570e1b0f06_dont_mess_with_the_Jesus.png and /dev/null differ diff --git a/artworks/midjourney/975acf29-3b46-4188-9118-2b7cf6c4dfc2_people_bow_to_the_demon._matte_painting_detailed.png b/artworks/midjourney/975acf29-3b46-4188-9118-2b7cf6c4dfc2_people_bow_to_the_demon._matte_painting_detailed.png deleted file mode 100644 index 40f8698eef..0000000000 Binary files a/artworks/midjourney/975acf29-3b46-4188-9118-2b7cf6c4dfc2_people_bow_to_the_demon._matte_painting_detailed.png and /dev/null differ diff --git a/artworks/midjourney/97e6773a-49e0-4029-9758-75b84686b6ee_systematic_mapping_of_the_eclectic_mind.png b/artworks/midjourney/97e6773a-49e0-4029-9758-75b84686b6ee_systematic_mapping_of_the_eclectic_mind.png deleted file mode 100644 index 5975b7d056..0000000000 Binary files a/artworks/midjourney/97e6773a-49e0-4029-9758-75b84686b6ee_systematic_mapping_of_the_eclectic_mind.png and /dev/null differ diff --git a/artworks/midjourney/980b4218-0c5f-44de-bcc0-9f856846cd2d_the_future_is_female.png b/artworks/midjourney/980b4218-0c5f-44de-bcc0-9f856846cd2d_the_future_is_female.png deleted file mode 100644 index 06e990700b..0000000000 Binary files a/artworks/midjourney/980b4218-0c5f-44de-bcc0-9f856846cd2d_the_future_is_female.png and /dev/null differ diff --git a/artworks/midjourney/98119658-3a65-42df-bf7a-5611626ed998_trans_yoda.png b/artworks/midjourney/98119658-3a65-42df-bf7a-5611626ed998_trans_yoda.png deleted file mode 100644 index 9e68c4d5eb..0000000000 Binary files a/artworks/midjourney/98119658-3a65-42df-bf7a-5611626ed998_trans_yoda.png and /dev/null differ diff --git a/artworks/midjourney/98374012-9526-4fcf-bf2b-68e02a06d809_perkele.png b/artworks/midjourney/98374012-9526-4fcf-bf2b-68e02a06d809_perkele.png deleted file mode 100644 index 60e0301f3e..0000000000 Binary files a/artworks/midjourney/98374012-9526-4fcf-bf2b-68e02a06d809_perkele.png and /dev/null differ diff --git a/artworks/midjourney/983d66c8-96fc-4d7c-8dfa-f265683a6cc6_Lucius_At_least_you_would_look_human_now..png b/artworks/midjourney/983d66c8-96fc-4d7c-8dfa-f265683a6cc6_Lucius_At_least_you_would_look_human_now..png deleted file mode 100644 index cca1b9ab18..0000000000 Binary files a/artworks/midjourney/983d66c8-96fc-4d7c-8dfa-f265683a6cc6_Lucius_At_least_you_would_look_human_now..png and /dev/null differ diff --git a/artworks/midjourney/98c2d285-722e-400e-b757-a415aa9e73cb_fantastic_goddess_spreads_her_wings._plumage_photo_realistic.png b/artworks/midjourney/98c2d285-722e-400e-b757-a415aa9e73cb_fantastic_goddess_spreads_her_wings._plumage_photo_realistic.png deleted file mode 100644 index abeee741b8..0000000000 Binary files a/artworks/midjourney/98c2d285-722e-400e-b757-a415aa9e73cb_fantastic_goddess_spreads_her_wings._plumage_photo_realistic.png and /dev/null differ diff --git a/artworks/midjourney/9903102b-77cf-42a2-9a1c-f62b25ec8b15_hwhite_man__--w_320_--h_448.png b/artworks/midjourney/9903102b-77cf-42a2-9a1c-f62b25ec8b15_hwhite_man__--w_320_--h_448.png deleted file mode 100644 index 9d663d72b0..0000000000 Binary files a/artworks/midjourney/9903102b-77cf-42a2-9a1c-f62b25ec8b15_hwhite_man__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/99463030-e06b-473a-acf7-a1b64c49cb0b_cyril_DD_bestiary_httpst.lygx5r.png b/artworks/midjourney/99463030-e06b-473a-acf7-a1b64c49cb0b_cyril_DD_bestiary_httpst.lygx5r.png deleted file mode 100644 index 2ca22f6030..0000000000 Binary files a/artworks/midjourney/99463030-e06b-473a-acf7-a1b64c49cb0b_cyril_DD_bestiary_httpst.lygx5r.png and /dev/null differ diff --git a/artworks/midjourney/99b59d10-3ba8-4370-b587-7a7998a2c050_the_fabled_creator_wades_through_its_creation.png b/artworks/midjourney/99b59d10-3ba8-4370-b587-7a7998a2c050_the_fabled_creator_wades_through_its_creation.png deleted file mode 100644 index 142c38eb50..0000000000 Binary files a/artworks/midjourney/99b59d10-3ba8-4370-b587-7a7998a2c050_the_fabled_creator_wades_through_its_creation.png and /dev/null differ diff --git a/artworks/midjourney/99cd56c2-6b69-4c78-918c-308ed2ec14fe_fractal_intrusion.png b/artworks/midjourney/99cd56c2-6b69-4c78-918c-308ed2ec14fe_fractal_intrusion.png deleted file mode 100644 index f07ded8485..0000000000 Binary files a/artworks/midjourney/99cd56c2-6b69-4c78-918c-308ed2ec14fe_fractal_intrusion.png and /dev/null differ diff --git a/artworks/midjourney/9a4eaea3-0e8f-48da-8eff-9a15031065db_circular_language_arrival_movie.png b/artworks/midjourney/9a4eaea3-0e8f-48da-8eff-9a15031065db_circular_language_arrival_movie.png deleted file mode 100644 index af7199f5d6..0000000000 Binary files a/artworks/midjourney/9a4eaea3-0e8f-48da-8eff-9a15031065db_circular_language_arrival_movie.png and /dev/null differ diff --git a/artworks/midjourney/9b30998b-e0fe-4970-9ff5-c7ee0aefc3ac_the_redheaded_muse_takes_a_bath_httpss.mj.runW4MXg8.png b/artworks/midjourney/9b30998b-e0fe-4970-9ff5-c7ee0aefc3ac_the_redheaded_muse_takes_a_bath_httpss.mj.runW4MXg8.png deleted file mode 100644 index 46efb0fe6d..0000000000 Binary files a/artworks/midjourney/9b30998b-e0fe-4970-9ff5-c7ee0aefc3ac_the_redheaded_muse_takes_a_bath_httpss.mj.runW4MXg8.png and /dev/null differ diff --git a/artworks/midjourney/9c3b1e45-c07b-4868-938a-88d77e92bd7c_Jonas_the_end_is_nigh_brace_yourself.png b/artworks/midjourney/9c3b1e45-c07b-4868-938a-88d77e92bd7c_Jonas_the_end_is_nigh_brace_yourself.png deleted file mode 100644 index 2a16b6aeba..0000000000 Binary files a/artworks/midjourney/9c3b1e45-c07b-4868-938a-88d77e92bd7c_Jonas_the_end_is_nigh_brace_yourself.png and /dev/null differ diff --git a/artworks/midjourney/9c5e016c-6820-4d47-8a74-f67cd63b0947_eclectic_interior_of_the_mind.png b/artworks/midjourney/9c5e016c-6820-4d47-8a74-f67cd63b0947_eclectic_interior_of_the_mind.png deleted file mode 100644 index 4fcef6981b..0000000000 Binary files a/artworks/midjourney/9c5e016c-6820-4d47-8a74-f67cd63b0947_eclectic_interior_of_the_mind.png and /dev/null differ diff --git a/artworks/midjourney/9c702950-c906-4cfa-8403-f4415e78d578_the_interior_of_the_imaginative_mind_stretch_the_soulful_experience.png b/artworks/midjourney/9c702950-c906-4cfa-8403-f4415e78d578_the_interior_of_the_imaginative_mind_stretch_the_soulful_experience.png deleted file mode 100644 index 764ccfee4e..0000000000 Binary files a/artworks/midjourney/9c702950-c906-4cfa-8403-f4415e78d578_the_interior_of_the_imaginative_mind_stretch_the_soulful_experience.png and /dev/null differ diff --git a/artworks/midjourney/9c8e1fa9-cdbd-4d06-b6ff-4bc65bba9963_seraphim_protect_the_throne_of_god._by_james_gurney_matte_painting_fantasy_colorful_CGSociety_realistic_materials_photo_realistic_postprocessing_amazing.png b/artworks/midjourney/9c8e1fa9-cdbd-4d06-b6ff-4bc65bba9963_seraphim_protect_the_throne_of_god._by_james_gurney_matte_painting_fantasy_colorful_CGSociety_realistic_materials_photo_realistic_postprocessing_amazing.png deleted file mode 100644 index bff8b2732d..0000000000 Binary files a/artworks/midjourney/9c8e1fa9-cdbd-4d06-b6ff-4bc65bba9963_seraphim_protect_the_throne_of_god._by_james_gurney_matte_painting_fantasy_colorful_CGSociety_realistic_materials_photo_realistic_postprocessing_amazing.png and /dev/null differ diff --git a/artworks/midjourney/9d023c51-950b-4ae0-a3a2-e1c5288038d4_Jonas_Irredentism.png b/artworks/midjourney/9d023c51-950b-4ae0-a3a2-e1c5288038d4_Jonas_Irredentism.png deleted file mode 100644 index 04d7138c48..0000000000 Binary files a/artworks/midjourney/9d023c51-950b-4ae0-a3a2-e1c5288038d4_Jonas_Irredentism.png and /dev/null differ diff --git a/artworks/midjourney/9d2dd61d-1599-483f-b8f2-d77f4ebd7ffe_propaganda_poster_for_the_advancement_of_illuminati.png b/artworks/midjourney/9d2dd61d-1599-483f-b8f2-d77f4ebd7ffe_propaganda_poster_for_the_advancement_of_illuminati.png deleted file mode 100644 index a0ebbda552..0000000000 Binary files a/artworks/midjourney/9d2dd61d-1599-483f-b8f2-d77f4ebd7ffe_propaganda_poster_for_the_advancement_of_illuminati.png and /dev/null differ diff --git a/artworks/midjourney/9db56bb2-0419-4455-ae39-1eeb96e23e11_Jonas_keep_calm_and_wait_on__--w_512_--h_768_--hd.png b/artworks/midjourney/9db56bb2-0419-4455-ae39-1eeb96e23e11_Jonas_keep_calm_and_wait_on__--w_512_--h_768_--hd.png deleted file mode 100644 index ec6a887d7e..0000000000 Binary files a/artworks/midjourney/9db56bb2-0419-4455-ae39-1eeb96e23e11_Jonas_keep_calm_and_wait_on__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/9e980d42-7089-4d98-b806-36cf9545b1c8_yesterday_just_a_dream_I_dont_remember.png b/artworks/midjourney/9e980d42-7089-4d98-b806-36cf9545b1c8_yesterday_just_a_dream_I_dont_remember.png deleted file mode 100644 index a7b12eda93..0000000000 Binary files a/artworks/midjourney/9e980d42-7089-4d98-b806-36cf9545b1c8_yesterday_just_a_dream_I_dont_remember.png and /dev/null differ diff --git a/artworks/midjourney/9e9aa575-8eff-4a19-bdf9-6685ce3c0153_the_Illuminati.png b/artworks/midjourney/9e9aa575-8eff-4a19-bdf9-6685ce3c0153_the_Illuminati.png deleted file mode 100644 index 05d5d04916..0000000000 Binary files a/artworks/midjourney/9e9aa575-8eff-4a19-bdf9-6685ce3c0153_the_Illuminati.png and /dev/null differ diff --git a/artworks/midjourney/9ed0e328-1b56-4f83-80dc-1166700e5779_Jonas_box_of_cigarettes_with_warning_label_highly_detailed_ultra_photorealistic--mp.png b/artworks/midjourney/9ed0e328-1b56-4f83-80dc-1166700e5779_Jonas_box_of_cigarettes_with_warning_label_highly_detailed_ultra_photorealistic--mp.png deleted file mode 100644 index 337eeb9e7f..0000000000 Binary files a/artworks/midjourney/9ed0e328-1b56-4f83-80dc-1166700e5779_Jonas_box_of_cigarettes_with_warning_label_highly_detailed_ultra_photorealistic--mp.png and /dev/null differ diff --git a/artworks/midjourney/9f30838e-af05-45d6-8135-29cb8301796f_Jonas_epic_library_of_the_inner_sanctuary.png b/artworks/midjourney/9f30838e-af05-45d6-8135-29cb8301796f_Jonas_epic_library_of_the_inner_sanctuary.png deleted file mode 100644 index 8527e3a6cd..0000000000 Binary files a/artworks/midjourney/9f30838e-af05-45d6-8135-29cb8301796f_Jonas_epic_library_of_the_inner_sanctuary.png and /dev/null differ diff --git a/artworks/midjourney/9f9838d0-a806-4fe9-8503-6896668a3500_harbinger_of_light_darkness_shall_forever_cede_to_the_light__--w_768_--h_512_--hd.png b/artworks/midjourney/9f9838d0-a806-4fe9-8503-6896668a3500_harbinger_of_light_darkness_shall_forever_cede_to_the_light__--w_768_--h_512_--hd.png deleted file mode 100644 index af158e90ce..0000000000 Binary files a/artworks/midjourney/9f9838d0-a806-4fe9-8503-6896668a3500_harbinger_of_light_darkness_shall_forever_cede_to_the_light__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/Bullshit Titles/26405ddb-a90a-4219-a2e3-fe3c90b6ebf1_the_pathological_interior.png b/artworks/midjourney/Bullshit Titles/26405ddb-a90a-4219-a2e3-fe3c90b6ebf1_the_pathological_interior.png deleted file mode 100644 index c8475d04fe..0000000000 Binary files a/artworks/midjourney/Bullshit Titles/26405ddb-a90a-4219-a2e3-fe3c90b6ebf1_the_pathological_interior.png and /dev/null differ diff --git a/artworks/midjourney/Bullshit Titles/362d0136-88dc-459f-adb0-6ef102674b86_The_Pathological_Interior_abstract_art.png b/artworks/midjourney/Bullshit Titles/362d0136-88dc-459f-adb0-6ef102674b86_The_Pathological_Interior_abstract_art.png deleted file mode 100644 index 8ed06fbd7b..0000000000 Binary files a/artworks/midjourney/Bullshit Titles/362d0136-88dc-459f-adb0-6ef102674b86_The_Pathological_Interior_abstract_art.png and /dev/null differ diff --git a/artworks/midjourney/Bullshit Titles/4bd2eaba-d18c-4fbc-854f-59ec2b9163a3_The_Pathological_Interior_abstract.png b/artworks/midjourney/Bullshit Titles/4bd2eaba-d18c-4fbc-854f-59ec2b9163a3_The_Pathological_Interior_abstract.png deleted file mode 100644 index 5617dfe6f9..0000000000 Binary files a/artworks/midjourney/Bullshit Titles/4bd2eaba-d18c-4fbc-854f-59ec2b9163a3_The_Pathological_Interior_abstract.png and /dev/null differ diff --git a/artworks/midjourney/Bullshit Titles/740311f3-edde-498f-8611-01aaaf505019_The_Pathological_Interior_abstract.png b/artworks/midjourney/Bullshit Titles/740311f3-edde-498f-8611-01aaaf505019_The_Pathological_Interior_abstract.png deleted file mode 100644 index 891e1e9f25..0000000000 Binary files a/artworks/midjourney/Bullshit Titles/740311f3-edde-498f-8611-01aaaf505019_The_Pathological_Interior_abstract.png and /dev/null differ diff --git a/artworks/midjourney/Bullshit Titles/7a91d88f-562a-470b-8148-99e023bcaa6e_the_pathological_interior.png b/artworks/midjourney/Bullshit Titles/7a91d88f-562a-470b-8148-99e023bcaa6e_the_pathological_interior.png deleted file mode 100644 index 45dbbadfac..0000000000 Binary files a/artworks/midjourney/Bullshit Titles/7a91d88f-562a-470b-8148-99e023bcaa6e_the_pathological_interior.png and /dev/null differ diff --git a/artworks/midjourney/Chars/04d3128a-5114-4369-96e4-58e38938b0e5_pyramid.png b/artworks/midjourney/Chars/04d3128a-5114-4369-96e4-58e38938b0e5_pyramid.png deleted file mode 100644 index bdb3418f11..0000000000 Binary files a/artworks/midjourney/Chars/04d3128a-5114-4369-96e4-58e38938b0e5_pyramid.png and /dev/null differ diff --git a/artworks/midjourney/Chars/1a8f697c-a42c-4751-825b-51e043159fc5_X.png b/artworks/midjourney/Chars/1a8f697c-a42c-4751-825b-51e043159fc5_X.png deleted file mode 100644 index a43354601c..0000000000 Binary files a/artworks/midjourney/Chars/1a8f697c-a42c-4751-825b-51e043159fc5_X.png and /dev/null differ diff --git a/artworks/midjourney/Chars/1f4c6a47-6f2a-4e8e-b30c-8213cda73253_infinity.png b/artworks/midjourney/Chars/1f4c6a47-6f2a-4e8e-b30c-8213cda73253_infinity.png deleted file mode 100644 index e573e61ccd..0000000000 Binary files a/artworks/midjourney/Chars/1f4c6a47-6f2a-4e8e-b30c-8213cda73253_infinity.png and /dev/null differ diff --git a/artworks/midjourney/Chars/31406893-fac3-4482-b76a-3b082d6a3225_X.png b/artworks/midjourney/Chars/31406893-fac3-4482-b76a-3b082d6a3225_X.png deleted file mode 100644 index 8e4052dd4e..0000000000 Binary files a/artworks/midjourney/Chars/31406893-fac3-4482-b76a-3b082d6a3225_X.png and /dev/null differ diff --git a/artworks/midjourney/Chars/39e86ee4-1cc8-4a64-9cda-f0362f11cfc0_V.png b/artworks/midjourney/Chars/39e86ee4-1cc8-4a64-9cda-f0362f11cfc0_V.png deleted file mode 100644 index f8c6229fd8..0000000000 Binary files a/artworks/midjourney/Chars/39e86ee4-1cc8-4a64-9cda-f0362f11cfc0_V.png and /dev/null differ diff --git a/artworks/midjourney/Chars/6f03af00-b02e-4a25-8d76-d8b5d12f7a45__infinity_by_James_Gurney.png b/artworks/midjourney/Chars/6f03af00-b02e-4a25-8d76-d8b5d12f7a45__infinity_by_James_Gurney.png deleted file mode 100644 index caee2150b1..0000000000 Binary files a/artworks/midjourney/Chars/6f03af00-b02e-4a25-8d76-d8b5d12f7a45__infinity_by_James_Gurney.png and /dev/null differ diff --git a/artworks/midjourney/Chars/7e22ae19-1ccf-4290-9653-11295a77f659_six-infinity-symbols-3.png b/artworks/midjourney/Chars/7e22ae19-1ccf-4290-9653-11295a77f659_six-infinity-symbols-3.png deleted file mode 100644 index ed0736a058..0000000000 Binary files a/artworks/midjourney/Chars/7e22ae19-1ccf-4290-9653-11295a77f659_six-infinity-symbols-3.png and /dev/null differ diff --git a/artworks/midjourney/Chars/80e801b7-d2e6-4fd5-ba7d-bb357941f4df__infinity --w_512.png b/artworks/midjourney/Chars/80e801b7-d2e6-4fd5-ba7d-bb357941f4df__infinity --w_512.png deleted file mode 100644 index 65b5bcedde..0000000000 Binary files a/artworks/midjourney/Chars/80e801b7-d2e6-4fd5-ba7d-bb357941f4df__infinity --w_512.png and /dev/null differ diff --git a/artworks/midjourney/Chars/92772b05-d18f-47a6-96fb-deef061412eb_pyramid.png b/artworks/midjourney/Chars/92772b05-d18f-47a6-96fb-deef061412eb_pyramid.png deleted file mode 100644 index 775db75f6f..0000000000 Binary files a/artworks/midjourney/Chars/92772b05-d18f-47a6-96fb-deef061412eb_pyramid.png and /dev/null differ diff --git a/artworks/midjourney/Chars/O-2.png b/artworks/midjourney/Chars/O-2.png deleted file mode 100644 index 396dda72b1..0000000000 Binary files a/artworks/midjourney/Chars/O-2.png and /dev/null differ diff --git a/artworks/midjourney/Chars/O.png b/artworks/midjourney/Chars/O.png deleted file mode 100644 index d228e5461e..0000000000 Binary files a/artworks/midjourney/Chars/O.png and /dev/null differ diff --git a/artworks/midjourney/Chars/aeb0e10c-3f55-45ae-9ee7-6f0e30e00e03_pyramid.png b/artworks/midjourney/Chars/aeb0e10c-3f55-45ae-9ee7-6f0e30e00e03_pyramid.png deleted file mode 100644 index 00a32b1b6e..0000000000 Binary files a/artworks/midjourney/Chars/aeb0e10c-3f55-45ae-9ee7-6f0e30e00e03_pyramid.png and /dev/null differ diff --git a/artworks/midjourney/FOCD4d5XIAQ67bH.png b/artworks/midjourney/FOCD4d5XIAQ67bH.png deleted file mode 100644 index 1a21c25f98..0000000000 Binary files a/artworks/midjourney/FOCD4d5XIAQ67bH.png and /dev/null differ diff --git a/artworks/midjourney/FOmnF2uWYAQJujg-quatumn.png b/artworks/midjourney/FOmnF2uWYAQJujg-quatumn.png deleted file mode 100644 index 6795aabe79..0000000000 Binary files a/artworks/midjourney/FOmnF2uWYAQJujg-quatumn.png and /dev/null differ diff --git a/artworks/midjourney/FOmpH_tXoAM6WVY.png b/artworks/midjourney/FOmpH_tXoAM6WVY.png deleted file mode 100644 index 4392f798b5..0000000000 Binary files a/artworks/midjourney/FOmpH_tXoAM6WVY.png and /dev/null differ diff --git a/artworks/midjourney/Indeterminate Art/0d15a785-db42-46ca-bdfc-30ce427fa99b_Jonas_httpss.mj.run4Q3uCn__the_most_valuable_painting_in_the_world.png b/artworks/midjourney/Indeterminate Art/0d15a785-db42-46ca-bdfc-30ce427fa99b_Jonas_httpss.mj.run4Q3uCn__the_most_valuable_painting_in_the_world.png deleted file mode 100644 index 2e3db2335b..0000000000 Binary files a/artworks/midjourney/Indeterminate Art/0d15a785-db42-46ca-bdfc-30ce427fa99b_Jonas_httpss.mj.run4Q3uCn__the_most_valuable_painting_in_the_world.png and /dev/null differ diff --git a/artworks/midjourney/Indeterminate Art/4acbf202-4e09-4e1b-993c-b34459272397_Jonas_exciting_painting.png b/artworks/midjourney/Indeterminate Art/4acbf202-4e09-4e1b-993c-b34459272397_Jonas_exciting_painting.png deleted file mode 100644 index dfdb0af373..0000000000 Binary files a/artworks/midjourney/Indeterminate Art/4acbf202-4e09-4e1b-993c-b34459272397_Jonas_exciting_painting.png and /dev/null differ diff --git a/artworks/midjourney/Indeterminate Art/4f932cd3-5751-4708-bdcf-671c941914bd_Jonas_Epoxy_Resin_Diorama.png b/artworks/midjourney/Indeterminate Art/4f932cd3-5751-4708-bdcf-671c941914bd_Jonas_Epoxy_Resin_Diorama.png deleted file mode 100644 index 04abaf32ae..0000000000 Binary files a/artworks/midjourney/Indeterminate Art/4f932cd3-5751-4708-bdcf-671c941914bd_Jonas_Epoxy_Resin_Diorama.png and /dev/null differ diff --git a/artworks/midjourney/Indeterminate Art/6e1db87f-bb7b-460c-81a7-3f6c6fcce31a_Jonas_exciting_painting.png b/artworks/midjourney/Indeterminate Art/6e1db87f-bb7b-460c-81a7-3f6c6fcce31a_Jonas_exciting_painting.png deleted file mode 100644 index 939fc9ee97..0000000000 Binary files a/artworks/midjourney/Indeterminate Art/6e1db87f-bb7b-460c-81a7-3f6c6fcce31a_Jonas_exciting_painting.png and /dev/null differ diff --git a/artworks/midjourney/Indeterminate Art/b9c12395-bd94-4cc1-bbb0-17318d997054_Jonas_dissolve_all_control.png b/artworks/midjourney/Indeterminate Art/b9c12395-bd94-4cc1-bbb0-17318d997054_Jonas_dissolve_all_control.png deleted file mode 100644 index b2876b3501..0000000000 Binary files a/artworks/midjourney/Indeterminate Art/b9c12395-bd94-4cc1-bbb0-17318d997054_Jonas_dissolve_all_control.png and /dev/null differ diff --git a/artworks/midjourney/Indeterminate Art/bec4b52f-2748-479b-a2ac-70137f3cdb48_Jonas_the_most_valuable_painting_in_the_world.png b/artworks/midjourney/Indeterminate Art/bec4b52f-2748-479b-a2ac-70137f3cdb48_Jonas_the_most_valuable_painting_in_the_world.png deleted file mode 100644 index a6d3b68d72..0000000000 Binary files a/artworks/midjourney/Indeterminate Art/bec4b52f-2748-479b-a2ac-70137f3cdb48_Jonas_the_most_valuable_painting_in_the_world.png and /dev/null differ diff --git a/artworks/midjourney/Indeterminate Art/d2b48074-9ef3-4ea3-9ea4-f98b33292070_Jonas_exciting_painting.png b/artworks/midjourney/Indeterminate Art/d2b48074-9ef3-4ea3-9ea4-f98b33292070_Jonas_exciting_painting.png deleted file mode 100644 index eab53cad0e..0000000000 Binary files a/artworks/midjourney/Indeterminate Art/d2b48074-9ef3-4ea3-9ea4-f98b33292070_Jonas_exciting_painting.png and /dev/null differ diff --git a/artworks/midjourney/Indeterminate Art/d72959f4-da49-4ebf-89c9-3bf60a5d9f07_Jonas_unreal_painting_wow.png b/artworks/midjourney/Indeterminate Art/d72959f4-da49-4ebf-89c9-3bf60a5d9f07_Jonas_unreal_painting_wow.png deleted file mode 100644 index d6b19adb84..0000000000 Binary files a/artworks/midjourney/Indeterminate Art/d72959f4-da49-4ebf-89c9-3bf60a5d9f07_Jonas_unreal_painting_wow.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/07bc78f6-b66a-44d3-a57c-6eb2be2a8031_Some_of_those_that_work_forces_Are_the_same_that_burn_crosses.png b/artworks/midjourney/Lyrics/07bc78f6-b66a-44d3-a57c-6eb2be2a8031_Some_of_those_that_work_forces_Are_the_same_that_burn_crosses.png deleted file mode 100644 index ffa320238b..0000000000 Binary files a/artworks/midjourney/Lyrics/07bc78f6-b66a-44d3-a57c-6eb2be2a8031_Some_of_those_that_work_forces_Are_the_same_that_burn_crosses.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/09454838-a33c-427a-8880-78134c30a16d_How_long_will_this_take_baba_And_how_long_have_we_been_sleeping_Do_you_see_me_hanging_on_to_every_word_you_say_How_soon_will_I_be_holy_How_much_will_this_cost_guru_How_much_longer_till_you_completely_.png b/artworks/midjourney/Lyrics/09454838-a33c-427a-8880-78134c30a16d_How_long_will_this_take_baba_And_how_long_have_we_been_sleeping_Do_you_see_me_hanging_on_to_every_word_you_say_How_soon_will_I_be_holy_How_much_will_this_cost_guru_How_much_longer_till_you_completely_.png deleted file mode 100644 index 63f1b3a229..0000000000 Binary files a/artworks/midjourney/Lyrics/09454838-a33c-427a-8880-78134c30a16d_How_long_will_this_take_baba_And_how_long_have_we_been_sleeping_Do_you_see_me_hanging_on_to_every_word_you_say_How_soon_will_I_be_holy_How_much_will_this_cost_guru_How_much_longer_till_you_completely_.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/171eb17b-d30a-46ab-bc5f-b7d7521b009c_And_I_will_stay_up_through_the_night_Lets_be_clear_wont_close_my_eyes_And_I_know_that_I_can_survive_Ill_walk_through_fire_to_save_my_life.png b/artworks/midjourney/Lyrics/171eb17b-d30a-46ab-bc5f-b7d7521b009c_And_I_will_stay_up_through_the_night_Lets_be_clear_wont_close_my_eyes_And_I_know_that_I_can_survive_Ill_walk_through_fire_to_save_my_life.png deleted file mode 100644 index 46ab90be5a..0000000000 Binary files a/artworks/midjourney/Lyrics/171eb17b-d30a-46ab-bc5f-b7d7521b009c_And_I_will_stay_up_through_the_night_Lets_be_clear_wont_close_my_eyes_And_I_know_that_I_can_survive_Ill_walk_through_fire_to_save_my_life.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/332f75af-0506-4a70-9b99-370ea6fd85aa_You_see_my_pain_is_real_Watch_my_world_dissolve_artstation.png b/artworks/midjourney/Lyrics/332f75af-0506-4a70-9b99-370ea6fd85aa_You_see_my_pain_is_real_Watch_my_world_dissolve_artstation.png deleted file mode 100644 index 333a825871..0000000000 Binary files a/artworks/midjourney/Lyrics/332f75af-0506-4a70-9b99-370ea6fd85aa_You_see_my_pain_is_real_Watch_my_world_dissolve_artstation.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/3b4c9ae2-95b0-4d78-9563-f80812ee345c_And_I_am_frightened_by_the_corrupted_ways_of_this_land_If_only_I_could_meet_the_maker.png b/artworks/midjourney/Lyrics/3b4c9ae2-95b0-4d78-9563-f80812ee345c_And_I_am_frightened_by_the_corrupted_ways_of_this_land_If_only_I_could_meet_the_maker.png deleted file mode 100644 index 4dc7d6da19..0000000000 Binary files a/artworks/midjourney/Lyrics/3b4c9ae2-95b0-4d78-9563-f80812ee345c_And_I_am_frightened_by_the_corrupted_ways_of_this_land_If_only_I_could_meet_the_maker.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/4071c4c4-8c62-4328-9749-257daf71cd0e_And_I_am_frightened_by_the_corrupted_ways_of_this_land_If_only_I_could_meet_the_maker.png b/artworks/midjourney/Lyrics/4071c4c4-8c62-4328-9749-257daf71cd0e_And_I_am_frightened_by_the_corrupted_ways_of_this_land_If_only_I_could_meet_the_maker.png deleted file mode 100644 index 312440b32c..0000000000 Binary files a/artworks/midjourney/Lyrics/4071c4c4-8c62-4328-9749-257daf71cd0e_And_I_am_frightened_by_the_corrupted_ways_of_this_land_If_only_I_could_meet_the_maker.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/41d139ef-bb01-482f-985b-a8f59c6c08ca_Ive_got_thick_skin_and_an_elastic_heart.png b/artworks/midjourney/Lyrics/41d139ef-bb01-482f-985b-a8f59c6c08ca_Ive_got_thick_skin_and_an_elastic_heart.png deleted file mode 100644 index 5a228bcd11..0000000000 Binary files a/artworks/midjourney/Lyrics/41d139ef-bb01-482f-985b-a8f59c6c08ca_Ive_got_thick_skin_and_an_elastic_heart.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/54d2b09d-da24-42a4-82c3-f96a0339655a_I_feel_like_a_bull_in_a_big_arena.png b/artworks/midjourney/Lyrics/54d2b09d-da24-42a4-82c3-f96a0339655a_I_feel_like_a_bull_in_a_big_arena.png deleted file mode 100644 index 50a33812cf..0000000000 Binary files a/artworks/midjourney/Lyrics/54d2b09d-da24-42a4-82c3-f96a0339655a_I_feel_like_a_bull_in_a_big_arena.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/65046b78-67b4-405c-9fec-6e68c8baee16_He_ma_belle_juste_un_rayon_de_lumiere._Ta_chaleur_sucree_sur_ma_peau_salee..png b/artworks/midjourney/Lyrics/65046b78-67b4-405c-9fec-6e68c8baee16_He_ma_belle_juste_un_rayon_de_lumiere._Ta_chaleur_sucree_sur_ma_peau_salee..png deleted file mode 100644 index 91e640eeb7..0000000000 Binary files a/artworks/midjourney/Lyrics/65046b78-67b4-405c-9fec-6e68c8baee16_He_ma_belle_juste_un_rayon_de_lumiere._Ta_chaleur_sucree_sur_ma_peau_salee..png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/83f9ea3d-2a2d-478d-ae8c-c172ccda5b06_inka_inka_bottles_of_ink_paintings_of_rebellion.png b/artworks/midjourney/Lyrics/83f9ea3d-2a2d-478d-ae8c-c172ccda5b06_inka_inka_bottles_of_ink_paintings_of_rebellion.png deleted file mode 100644 index 795d24b136..0000000000 Binary files a/artworks/midjourney/Lyrics/83f9ea3d-2a2d-478d-ae8c-c172ccda5b06_inka_inka_bottles_of_ink_paintings_of_rebellion.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/Nine Inch Nails/466544c4-4d98-41f5-a2e5-2cc327fc0be9_What_if_everything_around_you_isnt_quite_as_it_seems_What_if_all_the_world_you_used_to_know_Is_an_elaborate_dream_Painting_by_Haralampi_Oroschakoff_trending_on_wikiart.png b/artworks/midjourney/Lyrics/Nine Inch Nails/466544c4-4d98-41f5-a2e5-2cc327fc0be9_What_if_everything_around_you_isnt_quite_as_it_seems_What_if_all_the_world_you_used_to_know_Is_an_elaborate_dream_Painting_by_Haralampi_Oroschakoff_trending_on_wikiart.png deleted file mode 100644 index d7b874a311..0000000000 Binary files a/artworks/midjourney/Lyrics/Nine Inch Nails/466544c4-4d98-41f5-a2e5-2cc327fc0be9_What_if_everything_around_you_isnt_quite_as_it_seems_What_if_all_the_world_you_used_to_know_Is_an_elaborate_dream_Painting_by_Haralampi_Oroschakoff_trending_on_wikiart.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/Nine Inch Nails/6371f488-0e26-4cb3-a9d1-a45712bb8c6d_What_if_everything_around_you_isnt_quite_as_it_seems_What_if_all_the_world_you_used_to_know_Is_an_elaborate_dream_Painting_by_Haralampi_Oroschakoff_trending_on_wikiart.png b/artworks/midjourney/Lyrics/Nine Inch Nails/6371f488-0e26-4cb3-a9d1-a45712bb8c6d_What_if_everything_around_you_isnt_quite_as_it_seems_What_if_all_the_world_you_used_to_know_Is_an_elaborate_dream_Painting_by_Haralampi_Oroschakoff_trending_on_wikiart.png deleted file mode 100644 index 155743476e..0000000000 Binary files a/artworks/midjourney/Lyrics/Nine Inch Nails/6371f488-0e26-4cb3-a9d1-a45712bb8c6d_What_if_everything_around_you_isnt_quite_as_it_seems_What_if_all_the_world_you_used_to_know_Is_an_elaborate_dream_Painting_by_Haralampi_Oroschakoff_trending_on_wikiart.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/a67c4da7-363c-49b8-927b-e3f914b2fb4e_opportunity.png b/artworks/midjourney/Lyrics/a67c4da7-363c-49b8-927b-e3f914b2fb4e_opportunity.png deleted file mode 100644 index 5a1085b1e9..0000000000 Binary files a/artworks/midjourney/Lyrics/a67c4da7-363c-49b8-927b-e3f914b2fb4e_opportunity.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/aaef20b6-917c-4069-bb63-464f58dac4c9_As_long_as_thats_true_As_long_as_thats_true_As_long_as_thats_true_As_long_as_thats_true_I_can_get_over_you._oil_painting_by_Glenn_Retkuwski_rart.png b/artworks/midjourney/Lyrics/aaef20b6-917c-4069-bb63-464f58dac4c9_As_long_as_thats_true_As_long_as_thats_true_As_long_as_thats_true_As_long_as_thats_true_I_can_get_over_you._oil_painting_by_Glenn_Retkuwski_rart.png deleted file mode 100644 index 2c48301748..0000000000 Binary files a/artworks/midjourney/Lyrics/aaef20b6-917c-4069-bb63-464f58dac4c9_As_long_as_thats_true_As_long_as_thats_true_As_long_as_thats_true_As_long_as_thats_true_I_can_get_over_you._oil_painting_by_Glenn_Retkuwski_rart.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/b99eeaa6-717a-477e-ae04-b5caff4daf23_Apocalyptic_little_predictable_Opportunity_hypocritical.png b/artworks/midjourney/Lyrics/b99eeaa6-717a-477e-ae04-b5caff4daf23_Apocalyptic_little_predictable_Opportunity_hypocritical.png deleted file mode 100644 index 4cffd4a759..0000000000 Binary files a/artworks/midjourney/Lyrics/b99eeaa6-717a-477e-ae04-b5caff4daf23_Apocalyptic_little_predictable_Opportunity_hypocritical.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/d26354d4-ec23-4d7f-92ad-6ad9ce2173ff_What_if_everything_around_you_isnt_quite_as_it_seems_What_if_all_the_world_you_used_to_know_Is_an_elaborate_dream.png b/artworks/midjourney/Lyrics/d26354d4-ec23-4d7f-92ad-6ad9ce2173ff_What_if_everything_around_you_isnt_quite_as_it_seems_What_if_all_the_world_you_used_to_know_Is_an_elaborate_dream.png deleted file mode 100644 index 422b359090..0000000000 Binary files a/artworks/midjourney/Lyrics/d26354d4-ec23-4d7f-92ad-6ad9ce2173ff_What_if_everything_around_you_isnt_quite_as_it_seems_What_if_all_the_world_you_used_to_know_Is_an_elaborate_dream.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/d5d4edb5-a910-43c7-b6e4-09d92b02ebb8_Ive_got_thick_skin_and_an_elastic_heart.png b/artworks/midjourney/Lyrics/d5d4edb5-a910-43c7-b6e4-09d92b02ebb8_Ive_got_thick_skin_and_an_elastic_heart.png deleted file mode 100644 index 2a4ce2b2cc..0000000000 Binary files a/artworks/midjourney/Lyrics/d5d4edb5-a910-43c7-b6e4-09d92b02ebb8_Ive_got_thick_skin_and_an_elastic_heart.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/d65929d1-4358-4298-bc2c-ae2c2f4f5cf4_As_I_walk_through_the_valley_of_the_shadow_of_death_I_take_a_look_at_my_life_and_realize_theres_nothing_left.png b/artworks/midjourney/Lyrics/d65929d1-4358-4298-bc2c-ae2c2f4f5cf4_As_I_walk_through_the_valley_of_the_shadow_of_death_I_take_a_look_at_my_life_and_realize_theres_nothing_left.png deleted file mode 100644 index 6c14700394..0000000000 Binary files a/artworks/midjourney/Lyrics/d65929d1-4358-4298-bc2c-ae2c2f4f5cf4_As_I_walk_through_the_valley_of_the_shadow_of_death_I_take_a_look_at_my_life_and_realize_theres_nothing_left.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/db184958-af66-4632-9921-d72c1f663a16_Hungry_people_dont_stay_hungry_for_long_They_get_hope_from_fire_and_smoke_as_they_reach_for_the_dawn.png b/artworks/midjourney/Lyrics/db184958-af66-4632-9921-d72c1f663a16_Hungry_people_dont_stay_hungry_for_long_They_get_hope_from_fire_and_smoke_as_they_reach_for_the_dawn.png deleted file mode 100644 index 58ce4b761a..0000000000 Binary files a/artworks/midjourney/Lyrics/db184958-af66-4632-9921-d72c1f663a16_Hungry_people_dont_stay_hungry_for_long_They_get_hope_from_fire_and_smoke_as_they_reach_for_the_dawn.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/df4add73-8e23-46a4-881c-141a81d584d0_Im_sitting_on_the_edge_of_the_bubble_Just_waiting_for_it_to_burst.png b/artworks/midjourney/Lyrics/df4add73-8e23-46a4-881c-141a81d584d0_Im_sitting_on_the_edge_of_the_bubble_Just_waiting_for_it_to_burst.png deleted file mode 100644 index 385aa0e0b0..0000000000 Binary files a/artworks/midjourney/Lyrics/df4add73-8e23-46a4-881c-141a81d584d0_Im_sitting_on_the_edge_of_the_bubble_Just_waiting_for_it_to_burst.png and /dev/null differ diff --git a/artworks/midjourney/Lyrics/progress_image_08a7fd5e-6b8a-4673-ba0e-2dffef9ec651_73.webp b/artworks/midjourney/Lyrics/progress_image_08a7fd5e-6b8a-4673-ba0e-2dffef9ec651_73.webp deleted file mode 100644 index 2cba2e7fde..0000000000 Binary files a/artworks/midjourney/Lyrics/progress_image_08a7fd5e-6b8a-4673-ba0e-2dffef9ec651_73.webp and /dev/null differ diff --git a/artworks/midjourney/Lyrics/progress_image_24b4383a-80ad-4a2a-a34b-70defb3a4a17_65.webp b/artworks/midjourney/Lyrics/progress_image_24b4383a-80ad-4a2a-a34b-70defb3a4a17_65.webp deleted file mode 100644 index 0858adcd50..0000000000 Binary files a/artworks/midjourney/Lyrics/progress_image_24b4383a-80ad-4a2a-a34b-70defb3a4a17_65.webp and /dev/null differ diff --git a/artworks/midjourney/Lyrics/progress_image_2c0333fd-81b7-42c6-8825-f9870dd4dba8_94.webp b/artworks/midjourney/Lyrics/progress_image_2c0333fd-81b7-42c6-8825-f9870dd4dba8_94.webp deleted file mode 100644 index 4b574805e3..0000000000 Binary files a/artworks/midjourney/Lyrics/progress_image_2c0333fd-81b7-42c6-8825-f9870dd4dba8_94.webp and /dev/null differ diff --git a/artworks/midjourney/Lyrics/progress_image_2c2a0ede-5dca-42c6-92c2-983557ebef79_40.webp b/artworks/midjourney/Lyrics/progress_image_2c2a0ede-5dca-42c6-92c2-983557ebef79_40.webp deleted file mode 100644 index 683744d483..0000000000 Binary files a/artworks/midjourney/Lyrics/progress_image_2c2a0ede-5dca-42c6-92c2-983557ebef79_40.webp and /dev/null differ diff --git a/artworks/midjourney/Lyrics/progress_image_8518dcd3-b0c0-4975-929a-a69249470e8c_40.webp b/artworks/midjourney/Lyrics/progress_image_8518dcd3-b0c0-4975-929a-a69249470e8c_40.webp deleted file mode 100644 index da1fb28677..0000000000 Binary files a/artworks/midjourney/Lyrics/progress_image_8518dcd3-b0c0-4975-929a-a69249470e8c_40.webp and /dev/null differ diff --git a/artworks/midjourney/Lyrics/progress_image_b3c26603-b45e-49da-9f13-37ca9301fe44_62.webp b/artworks/midjourney/Lyrics/progress_image_b3c26603-b45e-49da-9f13-37ca9301fe44_62.webp deleted file mode 100644 index 2e45bd9f09..0000000000 Binary files a/artworks/midjourney/Lyrics/progress_image_b3c26603-b45e-49da-9f13-37ca9301fe44_62.webp and /dev/null differ diff --git a/artworks/midjourney/Lyrics/progress_image_b96a7be9-92c1-49d0-be68-bc8592a37091_54.webp b/artworks/midjourney/Lyrics/progress_image_b96a7be9-92c1-49d0-be68-bc8592a37091_54.webp deleted file mode 100644 index 593a578a1f..0000000000 Binary files a/artworks/midjourney/Lyrics/progress_image_b96a7be9-92c1-49d0-be68-bc8592a37091_54.webp and /dev/null differ diff --git a/artworks/midjourney/Lyrics/progress_image_c46c6ec1-5dc1-46cc-890d-0533efb7b47c_52.webp b/artworks/midjourney/Lyrics/progress_image_c46c6ec1-5dc1-46cc-890d-0533efb7b47c_52.webp deleted file mode 100644 index c40f75bf61..0000000000 Binary files a/artworks/midjourney/Lyrics/progress_image_c46c6ec1-5dc1-46cc-890d-0533efb7b47c_52.webp and /dev/null differ diff --git a/artworks/midjourney/Lyrics/progress_image_e96922db-bdea-4842-8fc3-993c008dcf5b_40.webp b/artworks/midjourney/Lyrics/progress_image_e96922db-bdea-4842-8fc3-993c008dcf5b_40.webp deleted file mode 100644 index 0529f08f02..0000000000 Binary files a/artworks/midjourney/Lyrics/progress_image_e96922db-bdea-4842-8fc3-993c008dcf5b_40.webp and /dev/null differ diff --git a/artworks/midjourney/Lyrics/progress_image_eede1ebe-7e21-479d-973b-95f35713fbc2_53.webp b/artworks/midjourney/Lyrics/progress_image_eede1ebe-7e21-479d-973b-95f35713fbc2_53.webp deleted file mode 100644 index d4ef61a29d..0000000000 Binary files a/artworks/midjourney/Lyrics/progress_image_eede1ebe-7e21-479d-973b-95f35713fbc2_53.webp and /dev/null differ diff --git a/artworks/midjourney/Propaganda/633b30ad-e7bd-4f72-9b0c-3f2c5f7e00ab_propaganda_tarot_colorful.png b/artworks/midjourney/Propaganda/633b30ad-e7bd-4f72-9b0c-3f2c5f7e00ab_propaganda_tarot_colorful.png deleted file mode 100644 index 6da3125d72..0000000000 Binary files a/artworks/midjourney/Propaganda/633b30ad-e7bd-4f72-9b0c-3f2c5f7e00ab_propaganda_tarot_colorful.png and /dev/null differ diff --git a/artworks/midjourney/Propaganda/79168122-58bb-401b-bcc5-9225c713cf9b_society_for_the_advancement_of_the_male_gaze._propaganda_poster_matte_painting_wikiart.png b/artworks/midjourney/Propaganda/79168122-58bb-401b-bcc5-9225c713cf9b_society_for_the_advancement_of_the_male_gaze._propaganda_poster_matte_painting_wikiart.png deleted file mode 100644 index 92132b2cb1..0000000000 Binary files a/artworks/midjourney/Propaganda/79168122-58bb-401b-bcc5-9225c713cf9b_society_for_the_advancement_of_the_male_gaze._propaganda_poster_matte_painting_wikiart.png and /dev/null differ diff --git a/artworks/midjourney/Smilies/0fded849-95e2-46fe-b1ac-fe734323d2db_.png b/artworks/midjourney/Smilies/0fded849-95e2-46fe-b1ac-fe734323d2db_.png deleted file mode 100644 index 58d8d4dedc..0000000000 Binary files a/artworks/midjourney/Smilies/0fded849-95e2-46fe-b1ac-fe734323d2db_.png and /dev/null differ diff --git a/artworks/midjourney/Smilies/99c854eb-4488-45e8-99fb-6de0177b18c8_.png b/artworks/midjourney/Smilies/99c854eb-4488-45e8-99fb-6de0177b18c8_.png deleted file mode 100644 index 5eb7145d08..0000000000 Binary files a/artworks/midjourney/Smilies/99c854eb-4488-45e8-99fb-6de0177b18c8_.png and /dev/null differ diff --git a/artworks/midjourney/Smilies/bc923eb1-c174-42bc-97f9-3273e0cdae73_.png b/artworks/midjourney/Smilies/bc923eb1-c174-42bc-97f9-3273e0cdae73_.png deleted file mode 100644 index 0b6ec8be4c..0000000000 Binary files a/artworks/midjourney/Smilies/bc923eb1-c174-42bc-97f9-3273e0cdae73_.png and /dev/null differ diff --git a/artworks/midjourney/Smilies/ed61ef71-93c1-4626-89d3-4d2739aad486_smiling-face-with-sunglasses.png b/artworks/midjourney/Smilies/ed61ef71-93c1-4626-89d3-4d2739aad486_smiling-face-with-sunglasses.png deleted file mode 100644 index d8be9c8d3d..0000000000 Binary files a/artworks/midjourney/Smilies/ed61ef71-93c1-4626-89d3-4d2739aad486_smiling-face-with-sunglasses.png and /dev/null differ diff --git a/artworks/midjourney/Smilies/f8b32abe-5e9d-47dd-838c-8f48b1d46a45_.png b/artworks/midjourney/Smilies/f8b32abe-5e9d-47dd-838c-8f48b1d46a45_.png deleted file mode 100644 index c68c4b2a50..0000000000 Binary files a/artworks/midjourney/Smilies/f8b32abe-5e9d-47dd-838c-8f48b1d46a45_.png and /dev/null differ diff --git a/artworks/midjourney/War/Soldier/5bc5ca99-b76f-4b9f-a79b-83147629f2ba_portrait_of_a_soldier_world_war_2_soldier_trending_on_artstation.png b/artworks/midjourney/War/Soldier/5bc5ca99-b76f-4b9f-a79b-83147629f2ba_portrait_of_a_soldier_world_war_2_soldier_trending_on_artstation.png deleted file mode 100644 index c7bf5cb75e..0000000000 Binary files a/artworks/midjourney/War/Soldier/5bc5ca99-b76f-4b9f-a79b-83147629f2ba_portrait_of_a_soldier_world_war_2_soldier_trending_on_artstation.png and /dev/null differ diff --git a/artworks/midjourney/Words/510c5db3-5ff3-4d92-997f-1c9e36e645dd_limitless.png b/artworks/midjourney/Words/510c5db3-5ff3-4d92-997f-1c9e36e645dd_limitless.png deleted file mode 100644 index 5528c0dc25..0000000000 Binary files a/artworks/midjourney/Words/510c5db3-5ff3-4d92-997f-1c9e36e645dd_limitless.png and /dev/null differ diff --git a/artworks/midjourney/Words/5cb1af6c-915a-4352-88e2-2b7175846528_limitless.png b/artworks/midjourney/Words/5cb1af6c-915a-4352-88e2-2b7175846528_limitless.png deleted file mode 100644 index d4aae40f6e..0000000000 Binary files a/artworks/midjourney/Words/5cb1af6c-915a-4352-88e2-2b7175846528_limitless.png and /dev/null differ diff --git a/artworks/midjourney/Words/ae904457-f8fe-4104-a652-7b07155c3cec_limitless.png b/artworks/midjourney/Words/ae904457-f8fe-4104-a652-7b07155c3cec_limitless.png deleted file mode 100644 index 9790cc1855..0000000000 Binary files a/artworks/midjourney/Words/ae904457-f8fe-4104-a652-7b07155c3cec_limitless.png and /dev/null differ diff --git a/artworks/midjourney/Words/bc342704-6eb7-45ed-a3e7-38f01a9abc17_limitless.png b/artworks/midjourney/Words/bc342704-6eb7-45ed-a3e7-38f01a9abc17_limitless.png deleted file mode 100644 index 1d83238c6b..0000000000 Binary files a/artworks/midjourney/Words/bc342704-6eb7-45ed-a3e7-38f01a9abc17_limitless.png and /dev/null differ diff --git a/artworks/midjourney/Words/bf68f250-0c35-4464-8d1d-cb4eb1e89084_daydreaming.png b/artworks/midjourney/Words/bf68f250-0c35-4464-8d1d-cb4eb1e89084_daydreaming.png deleted file mode 100644 index c3c807574f..0000000000 Binary files a/artworks/midjourney/Words/bf68f250-0c35-4464-8d1d-cb4eb1e89084_daydreaming.png and /dev/null differ diff --git a/artworks/midjourney/a046bc30-24c5-4cf8-b01a-51a1f63ef4fd_one_ugly_dude_--no_beauty__--w_320_--h_448.png b/artworks/midjourney/a046bc30-24c5-4cf8-b01a-51a1f63ef4fd_one_ugly_dude_--no_beauty__--w_320_--h_448.png deleted file mode 100644 index 932df2b160..0000000000 Binary files a/artworks/midjourney/a046bc30-24c5-4cf8-b01a-51a1f63ef4fd_one_ugly_dude_--no_beauty__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/a09ca923-dfaa-4568-91c9-50ae51d0e468_insurmountable_differences_--hq.png b/artworks/midjourney/a09ca923-dfaa-4568-91c9-50ae51d0e468_insurmountable_differences_--hq.png deleted file mode 100644 index 4674ed8844..0000000000 Binary files a/artworks/midjourney/a09ca923-dfaa-4568-91c9-50ae51d0e468_insurmountable_differences_--hq.png and /dev/null differ diff --git a/artworks/midjourney/a11c51ff-a002-456a-b0bc-08d52ecd7f4a_httpss.mj.run0ovZvG__groteskly_cute_furby.png b/artworks/midjourney/a11c51ff-a002-456a-b0bc-08d52ecd7f4a_httpss.mj.run0ovZvG__groteskly_cute_furby.png deleted file mode 100644 index 466783ec75..0000000000 Binary files a/artworks/midjourney/a11c51ff-a002-456a-b0bc-08d52ecd7f4a_httpss.mj.run0ovZvG__groteskly_cute_furby.png and /dev/null differ diff --git a/artworks/midjourney/a13a3abc-63c3-4c91-a236-628b6c3a8b71_Jonas_The_Impossible_Image.png b/artworks/midjourney/a13a3abc-63c3-4c91-a236-628b6c3a8b71_Jonas_The_Impossible_Image.png deleted file mode 100644 index 9f832c545a..0000000000 Binary files a/artworks/midjourney/a13a3abc-63c3-4c91-a236-628b6c3a8b71_Jonas_The_Impossible_Image.png and /dev/null differ diff --git a/artworks/midjourney/a144cb35-60e0-4fd4-87d1-c67da8931df2_Jonas_brual_rage_unreal__--w_448_--h_320.png b/artworks/midjourney/a144cb35-60e0-4fd4-87d1-c67da8931df2_Jonas_brual_rage_unreal__--w_448_--h_320.png deleted file mode 100644 index 5620d75dfc..0000000000 Binary files a/artworks/midjourney/a144cb35-60e0-4fd4-87d1-c67da8931df2_Jonas_brual_rage_unreal__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/a19d0dbb-2bc9-43eb-a00a-c3a8821ec88e_primal_scream_concept_art.png b/artworks/midjourney/a19d0dbb-2bc9-43eb-a00a-c3a8821ec88e_primal_scream_concept_art.png deleted file mode 100644 index b9b9e6ee49..0000000000 Binary files a/artworks/midjourney/a19d0dbb-2bc9-43eb-a00a-c3a8821ec88e_primal_scream_concept_art.png and /dev/null differ diff --git a/artworks/midjourney/a301a977-33f0-4659-8c1b-8d6a1612cc4a_ceci_nest_pas_art.png b/artworks/midjourney/a301a977-33f0-4659-8c1b-8d6a1612cc4a_ceci_nest_pas_art.png deleted file mode 100644 index 307b404ee9..0000000000 Binary files a/artworks/midjourney/a301a977-33f0-4659-8c1b-8d6a1612cc4a_ceci_nest_pas_art.png and /dev/null differ diff --git a/artworks/midjourney/a3912432-4ea6-46ef-b526-ae6b327841e4_hwhite_man__--w_320_--h_448.png b/artworks/midjourney/a3912432-4ea6-46ef-b526-ae6b327841e4_hwhite_man__--w_320_--h_448.png deleted file mode 100644 index ea63726056..0000000000 Binary files a/artworks/midjourney/a3912432-4ea6-46ef-b526-ae6b327841e4_hwhite_man__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/a44d53cb-da73-465e-a303-7daed96f1211_Viva_los_bio_dome.png b/artworks/midjourney/a44d53cb-da73-465e-a303-7daed96f1211_Viva_los_bio_dome.png deleted file mode 100644 index a218231032..0000000000 Binary files a/artworks/midjourney/a44d53cb-da73-465e-a303-7daed96f1211_Viva_los_bio_dome.png and /dev/null differ diff --git a/artworks/midjourney/a490e7e1-95ef-4ae2-9fa6-b8b7cd7d555e_the_eye_of_the_beholder._painting_ultra_photorealistic_wow_CGSociety_fantasy_artstation_postprocessing.png b/artworks/midjourney/a490e7e1-95ef-4ae2-9fa6-b8b7cd7d555e_the_eye_of_the_beholder._painting_ultra_photorealistic_wow_CGSociety_fantasy_artstation_postprocessing.png deleted file mode 100644 index ad1c042ecb..0000000000 Binary files a/artworks/midjourney/a490e7e1-95ef-4ae2-9fa6-b8b7cd7d555e_the_eye_of_the_beholder._painting_ultra_photorealistic_wow_CGSociety_fantasy_artstation_postprocessing.png and /dev/null differ diff --git a/artworks/midjourney/a4b79cdc-6c49-40ef-b303-f666a40feb1e_Jonas_the_gulf_of_war.png b/artworks/midjourney/a4b79cdc-6c49-40ef-b303-f666a40feb1e_Jonas_the_gulf_of_war.png deleted file mode 100644 index 2314359b25..0000000000 Binary files a/artworks/midjourney/a4b79cdc-6c49-40ef-b303-f666a40feb1e_Jonas_the_gulf_of_war.png and /dev/null differ diff --git a/artworks/midjourney/a55a92b2-7d8a-49ab-bb1b-ca3c8e0475d0_transhumanistic_tendency_by_WLOP_matte_painting__--w_320_--h_448.png b/artworks/midjourney/a55a92b2-7d8a-49ab-bb1b-ca3c8e0475d0_transhumanistic_tendency_by_WLOP_matte_painting__--w_320_--h_448.png deleted file mode 100644 index 7451c97e4f..0000000000 Binary files a/artworks/midjourney/a55a92b2-7d8a-49ab-bb1b-ca3c8e0475d0_transhumanistic_tendency_by_WLOP_matte_painting__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/a585bd9f-f909-49d6-a8cc-ad3c43cd6aaa_Jonas_armchair_in_the_shape_of_a_human_hand.png b/artworks/midjourney/a585bd9f-f909-49d6-a8cc-ad3c43cd6aaa_Jonas_armchair_in_the_shape_of_a_human_hand.png deleted file mode 100644 index 97bc9dc1f0..0000000000 Binary files a/artworks/midjourney/a585bd9f-f909-49d6-a8cc-ad3c43cd6aaa_Jonas_armchair_in_the_shape_of_a_human_hand.png and /dev/null differ diff --git a/artworks/midjourney/a5e8ac52-56ed-4216-acd2-51ae67a64495_amoeba_supernova_space.png b/artworks/midjourney/a5e8ac52-56ed-4216-acd2-51ae67a64495_amoeba_supernova_space.png deleted file mode 100644 index cf8c5de060..0000000000 Binary files a/artworks/midjourney/a5e8ac52-56ed-4216-acd2-51ae67a64495_amoeba_supernova_space.png and /dev/null differ diff --git a/artworks/midjourney/a6df6114-0f83-469e-b139-d71cc9384e78_fantastic_wardrobe_of_the_inner_sanctuary_comes_to_life_in_giant_birtation_of_the_soul__--w_448_--h_.png b/artworks/midjourney/a6df6114-0f83-469e-b139-d71cc9384e78_fantastic_wardrobe_of_the_inner_sanctuary_comes_to_life_in_giant_birtation_of_the_soul__--w_448_--h_.png deleted file mode 100644 index 361684cb4b..0000000000 Binary files a/artworks/midjourney/a6df6114-0f83-469e-b139-d71cc9384e78_fantastic_wardrobe_of_the_inner_sanctuary_comes_to_life_in_giant_birtation_of_the_soul__--w_448_--h_.png and /dev/null differ diff --git a/artworks/midjourney/a799fd14-0f82-406f-9853-ab15d9c68ebe_the_prompt_engineers_laboratory.png b/artworks/midjourney/a799fd14-0f82-406f-9853-ab15d9c68ebe_the_prompt_engineers_laboratory.png deleted file mode 100644 index 73ef477ec8..0000000000 Binary files a/artworks/midjourney/a799fd14-0f82-406f-9853-ab15d9c68ebe_the_prompt_engineers_laboratory.png and /dev/null differ diff --git a/artworks/midjourney/a7e47d0d-9ca8-45f5-bc72-419d647d6495_davoir_raison.png b/artworks/midjourney/a7e47d0d-9ca8-45f5-bc72-419d647d6495_davoir_raison.png deleted file mode 100644 index a23980c902..0000000000 Binary files a/artworks/midjourney/a7e47d0d-9ca8-45f5-bc72-419d647d6495_davoir_raison.png and /dev/null differ diff --git a/artworks/midjourney/a829b770-f8e9-45e9-ae66-6503076dd1e9_Jonas_httpss.mj.runJeUvhi__post-truth_wormhole.png b/artworks/midjourney/a829b770-f8e9-45e9-ae66-6503076dd1e9_Jonas_httpss.mj.runJeUvhi__post-truth_wormhole.png deleted file mode 100644 index 540434a435..0000000000 Binary files a/artworks/midjourney/a829b770-f8e9-45e9-ae66-6503076dd1e9_Jonas_httpss.mj.runJeUvhi__post-truth_wormhole.png and /dev/null differ diff --git a/artworks/midjourney/a84313a3-59a6-4dd1-9296-509f0ca32c20_sauron_httpss.mj.runBKOdpF.png b/artworks/midjourney/a84313a3-59a6-4dd1-9296-509f0ca32c20_sauron_httpss.mj.runBKOdpF.png deleted file mode 100644 index a2488b7cca..0000000000 Binary files a/artworks/midjourney/a84313a3-59a6-4dd1-9296-509f0ca32c20_sauron_httpss.mj.runBKOdpF.png and /dev/null differ diff --git a/artworks/midjourney/a8cfa092-ef68-4c72-a9db-4d38bf6037b6_goth_monk.png b/artworks/midjourney/a8cfa092-ef68-4c72-a9db-4d38bf6037b6_goth_monk.png deleted file mode 100644 index 6e9da22505..0000000000 Binary files a/artworks/midjourney/a8cfa092-ef68-4c72-a9db-4d38bf6037b6_goth_monk.png and /dev/null differ diff --git a/artworks/midjourney/a8d44b72-4589-4ee0-9a03-09f940da22b5_Jonas_entropy_within.png b/artworks/midjourney/a8d44b72-4589-4ee0-9a03-09f940da22b5_Jonas_entropy_within.png deleted file mode 100644 index 0934c722cc..0000000000 Binary files a/artworks/midjourney/a8d44b72-4589-4ee0-9a03-09f940da22b5_Jonas_entropy_within.png and /dev/null differ diff --git a/artworks/midjourney/a8d9a0a8-4acc-4287-a917-01cafc28d49c_untitled._oil_painting_watercolor_line_drawing_by_Darth_Vader_Luke_Sywalk_and_Zdzislaw_Beksinski_-.png b/artworks/midjourney/a8d9a0a8-4acc-4287-a917-01cafc28d49c_untitled._oil_painting_watercolor_line_drawing_by_Darth_Vader_Luke_Sywalk_and_Zdzislaw_Beksinski_-.png deleted file mode 100644 index a5818f9cdc..0000000000 Binary files a/artworks/midjourney/a8d9a0a8-4acc-4287-a917-01cafc28d49c_untitled._oil_painting_watercolor_line_drawing_by_Darth_Vader_Luke_Sywalk_and_Zdzislaw_Beksinski_-.png and /dev/null differ diff --git a/artworks/midjourney/a97e87fb-f6c6-4737-a0b6-04be2ab5b95e_Jonas_irradiant_laloquence.png b/artworks/midjourney/a97e87fb-f6c6-4737-a0b6-04be2ab5b95e_Jonas_irradiant_laloquence.png deleted file mode 100644 index 23ad4044b1..0000000000 Binary files a/artworks/midjourney/a97e87fb-f6c6-4737-a0b6-04be2ab5b95e_Jonas_irradiant_laloquence.png and /dev/null differ diff --git a/artworks/midjourney/a9cd67ef-315a-45ec-9f97-ab93eb07e61b_VR_painting.png b/artworks/midjourney/a9cd67ef-315a-45ec-9f97-ab93eb07e61b_VR_painting.png deleted file mode 100644 index 3f84387795..0000000000 Binary files a/artworks/midjourney/a9cd67ef-315a-45ec-9f97-ab93eb07e61b_VR_painting.png and /dev/null differ diff --git a/artworks/midjourney/a9fd063e-81ad-4bcb-9e9d-00d0699a9fec_mugshot.png b/artworks/midjourney/a9fd063e-81ad-4bcb-9e9d-00d0699a9fec_mugshot.png deleted file mode 100644 index e35b8007b2..0000000000 Binary files a/artworks/midjourney/a9fd063e-81ad-4bcb-9e9d-00d0699a9fec_mugshot.png and /dev/null differ diff --git a/artworks/midjourney/aa47bbd7-4b31-442d-a0cd-0e5a54515ec1_wap_bot_sha_kul.png b/artworks/midjourney/aa47bbd7-4b31-442d-a0cd-0e5a54515ec1_wap_bot_sha_kul.png deleted file mode 100644 index 7f714c7b2a..0000000000 Binary files a/artworks/midjourney/aa47bbd7-4b31-442d-a0cd-0e5a54515ec1_wap_bot_sha_kul.png and /dev/null differ diff --git a/artworks/midjourney/aabbc510-fb22-49d6-a6dd-6d7ba792add9_mugshot_of_a_happy_native_american_indian.png b/artworks/midjourney/aabbc510-fb22-49d6-a6dd-6d7ba792add9_mugshot_of_a_happy_native_american_indian.png deleted file mode 100644 index e4a5c7b717..0000000000 Binary files a/artworks/midjourney/aabbc510-fb22-49d6-a6dd-6d7ba792add9_mugshot_of_a_happy_native_american_indian.png and /dev/null differ diff --git a/artworks/midjourney/aaefed10-f87a-4da5-b13b-2e1b6d3d1f62_metallica._logo.png b/artworks/midjourney/aaefed10-f87a-4da5-b13b-2e1b6d3d1f62_metallica._logo.png deleted file mode 100644 index 5c74b5b72f..0000000000 Binary files a/artworks/midjourney/aaefed10-f87a-4da5-b13b-2e1b6d3d1f62_metallica._logo.png and /dev/null differ diff --git a/artworks/midjourney/ab02ba94-c7d6-4525-88ef-c02df2165c4e_such_is_the_passage_of_time.png b/artworks/midjourney/ab02ba94-c7d6-4525-88ef-c02df2165c4e_such_is_the_passage_of_time.png deleted file mode 100644 index 84bd6a8d7c..0000000000 Binary files a/artworks/midjourney/ab02ba94-c7d6-4525-88ef-c02df2165c4e_such_is_the_passage_of_time.png and /dev/null differ diff --git a/artworks/midjourney/ab0b5209-14c4-447e-8020-ce9253c4ad62_Lucius_At_least_you_would_look_human_then..png b/artworks/midjourney/ab0b5209-14c4-447e-8020-ce9253c4ad62_Lucius_At_least_you_would_look_human_then..png deleted file mode 100644 index 739bbe1600..0000000000 Binary files a/artworks/midjourney/ab0b5209-14c4-447e-8020-ce9253c4ad62_Lucius_At_least_you_would_look_human_then..png and /dev/null differ diff --git a/artworks/midjourney/ab236532-d5cd-442e-af96-62670e85e0ae_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k__--w_768_.png b/artworks/midjourney/ab236532-d5cd-442e-af96-62670e85e0ae_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k__--w_768_.png deleted file mode 100644 index fd1eb10845..0000000000 Binary files a/artworks/midjourney/ab236532-d5cd-442e-af96-62670e85e0ae_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k__--w_768_.png and /dev/null differ diff --git a/artworks/midjourney/ab252578-2c47-4192-90ce-1f321002398b_this_is_serious.png b/artworks/midjourney/ab252578-2c47-4192-90ce-1f321002398b_this_is_serious.png deleted file mode 100644 index f7255b5154..0000000000 Binary files a/artworks/midjourney/ab252578-2c47-4192-90ce-1f321002398b_this_is_serious.png and /dev/null differ diff --git a/artworks/midjourney/ab9c1e74-15d2-415c-8235-2bbfb515833d_person_portrait_far.png b/artworks/midjourney/ab9c1e74-15d2-415c-8235-2bbfb515833d_person_portrait_far.png deleted file mode 100644 index 56dbcf49d2..0000000000 Binary files a/artworks/midjourney/ab9c1e74-15d2-415c-8235-2bbfb515833d_person_portrait_far.png and /dev/null differ diff --git a/artworks/midjourney/abf3f20a-7d3f-46a2-8882-e930269d7b50_long_hallway_of_sanctuary_ward_forcibly_melting_into_negligence_and_decay.png b/artworks/midjourney/abf3f20a-7d3f-46a2-8882-e930269d7b50_long_hallway_of_sanctuary_ward_forcibly_melting_into_negligence_and_decay.png deleted file mode 100644 index cd3058b516..0000000000 Binary files a/artworks/midjourney/abf3f20a-7d3f-46a2-8882-e930269d7b50_long_hallway_of_sanctuary_ward_forcibly_melting_into_negligence_and_decay.png and /dev/null differ diff --git a/artworks/midjourney/ad000659-81bc-42a7-9117-e90a3a6d9e5d_brutalist_beach_house_httpss.mj.runGNE4b0.png b/artworks/midjourney/ad000659-81bc-42a7-9117-e90a3a6d9e5d_brutalist_beach_house_httpss.mj.runGNE4b0.png deleted file mode 100644 index 1bc8dff180..0000000000 Binary files a/artworks/midjourney/ad000659-81bc-42a7-9117-e90a3a6d9e5d_brutalist_beach_house_httpss.mj.runGNE4b0.png and /dev/null differ diff --git a/artworks/midjourney/ad046044-80d5-4f7e-a73f-a505f1b2333e_Jonas_king_of_bongobongo.png b/artworks/midjourney/ad046044-80d5-4f7e-a73f-a505f1b2333e_Jonas_king_of_bongobongo.png deleted file mode 100644 index bd384f2857..0000000000 Binary files a/artworks/midjourney/ad046044-80d5-4f7e-a73f-a505f1b2333e_Jonas_king_of_bongobongo.png and /dev/null differ diff --git a/artworks/midjourney/ad363785-f542-43ba-9c08-5ff15e1c5d20_Jonas_post-truth_worm_hole.png b/artworks/midjourney/ad363785-f542-43ba-9c08-5ff15e1c5d20_Jonas_post-truth_worm_hole.png deleted file mode 100644 index 2a681d3bc2..0000000000 Binary files a/artworks/midjourney/ad363785-f542-43ba-9c08-5ff15e1c5d20_Jonas_post-truth_worm_hole.png and /dev/null differ diff --git a/artworks/midjourney/aeedb40d-042f-4714-8dea-564fb24d20c3_perkele._by_Bartolome_Bermejo.png b/artworks/midjourney/aeedb40d-042f-4714-8dea-564fb24d20c3_perkele._by_Bartolome_Bermejo.png deleted file mode 100644 index 41746fcb3e..0000000000 Binary files a/artworks/midjourney/aeedb40d-042f-4714-8dea-564fb24d20c3_perkele._by_Bartolome_Bermejo.png and /dev/null differ diff --git a/artworks/midjourney/aef8ee32-fa9f-4ba5-908f-cc8ce8dc00cc_eclectic_interior_of_the_mind.png b/artworks/midjourney/aef8ee32-fa9f-4ba5-908f-cc8ce8dc00cc_eclectic_interior_of_the_mind.png deleted file mode 100644 index de80bf2522..0000000000 Binary files a/artworks/midjourney/aef8ee32-fa9f-4ba5-908f-cc8ce8dc00cc_eclectic_interior_of_the_mind.png and /dev/null differ diff --git a/artworks/midjourney/af45b64c-5579-4510-a9be-f4ae2e616b17_Jonas_grounded_theory.png b/artworks/midjourney/af45b64c-5579-4510-a9be-f4ae2e616b17_Jonas_grounded_theory.png deleted file mode 100644 index 38841a5646..0000000000 Binary files a/artworks/midjourney/af45b64c-5579-4510-a9be-f4ae2e616b17_Jonas_grounded_theory.png and /dev/null differ diff --git a/artworks/midjourney/af5eaa2b-cbdf-4a76-bb4b-4cb14dba7752_fantastic_wardrobe_of_the_inner_sanctuary_comes_to_life_in_giant_birtation_of_the_soul__--w_448_--h_.png b/artworks/midjourney/af5eaa2b-cbdf-4a76-bb4b-4cb14dba7752_fantastic_wardrobe_of_the_inner_sanctuary_comes_to_life_in_giant_birtation_of_the_soul__--w_448_--h_.png deleted file mode 100644 index 0fa1ea3020..0000000000 Binary files a/artworks/midjourney/af5eaa2b-cbdf-4a76-bb4b-4cb14dba7752_fantastic_wardrobe_of_the_inner_sanctuary_comes_to_life_in_giant_birtation_of_the_soul__--w_448_--h_.png and /dev/null differ diff --git a/artworks/midjourney/b00790fe-711c-496e-88f4-c238e1e3584b_skull_wearing_rayban_glasses.png b/artworks/midjourney/b00790fe-711c-496e-88f4-c238e1e3584b_skull_wearing_rayban_glasses.png deleted file mode 100644 index a8b9528e9d..0000000000 Binary files a/artworks/midjourney/b00790fe-711c-496e-88f4-c238e1e3584b_skull_wearing_rayban_glasses.png and /dev/null differ diff --git a/artworks/midjourney/b00b8597-9749-4a67-8b3a-68bb9220e415_canibal_squirrel.png b/artworks/midjourney/b00b8597-9749-4a67-8b3a-68bb9220e415_canibal_squirrel.png deleted file mode 100644 index 07a0009b77..0000000000 Binary files a/artworks/midjourney/b00b8597-9749-4a67-8b3a-68bb9220e415_canibal_squirrel.png and /dev/null differ diff --git a/artworks/midjourney/b03f8828-7214-4660-9a51-89acaf7fe573_the_arc_of_the_covenant_--w_412.png b/artworks/midjourney/b03f8828-7214-4660-9a51-89acaf7fe573_the_arc_of_the_covenant_--w_412.png deleted file mode 100644 index 339e860642..0000000000 Binary files a/artworks/midjourney/b03f8828-7214-4660-9a51-89acaf7fe573_the_arc_of_the_covenant_--w_412.png and /dev/null differ diff --git a/artworks/midjourney/b04887ba-e906-46be-b67b-2a00c8aa8c36_Jonas_Russians_They_Live.png b/artworks/midjourney/b04887ba-e906-46be-b67b-2a00c8aa8c36_Jonas_Russians_They_Live.png deleted file mode 100644 index 07b9b4ec62..0000000000 Binary files a/artworks/midjourney/b04887ba-e906-46be-b67b-2a00c8aa8c36_Jonas_Russians_They_Live.png and /dev/null differ diff --git a/artworks/midjourney/b06c31f4-ca23-4201-844a-9ced0ac0d60b_Jonas_second_coming_rapture_of_souls.png b/artworks/midjourney/b06c31f4-ca23-4201-844a-9ced0ac0d60b_Jonas_second_coming_rapture_of_souls.png deleted file mode 100644 index d166fb89c8..0000000000 Binary files a/artworks/midjourney/b06c31f4-ca23-4201-844a-9ced0ac0d60b_Jonas_second_coming_rapture_of_souls.png and /dev/null differ diff --git a/artworks/midjourney/b09ee525-1ddf-4e44-b22e-4867ce8c14cd_Jonas_httpss.mj.runZg5lFr__uncertainty_of_entry.png b/artworks/midjourney/b09ee525-1ddf-4e44-b22e-4867ce8c14cd_Jonas_httpss.mj.runZg5lFr__uncertainty_of_entry.png deleted file mode 100644 index ec2ec7121d..0000000000 Binary files a/artworks/midjourney/b09ee525-1ddf-4e44-b22e-4867ce8c14cd_Jonas_httpss.mj.runZg5lFr__uncertainty_of_entry.png and /dev/null differ diff --git a/artworks/midjourney/b0ae375a-6650-4e27-9b59-a47495f757ea_Jonas_fractals_Great_Wave_off_Kanagawa.png b/artworks/midjourney/b0ae375a-6650-4e27-9b59-a47495f757ea_Jonas_fractals_Great_Wave_off_Kanagawa.png deleted file mode 100644 index f85c027ac7..0000000000 Binary files a/artworks/midjourney/b0ae375a-6650-4e27-9b59-a47495f757ea_Jonas_fractals_Great_Wave_off_Kanagawa.png and /dev/null differ diff --git a/artworks/midjourney/b193058b-c0d5-4c9d-89ce-e6c1ed6ebacf_Jonas_an_Australian_Cattle_Dog.png b/artworks/midjourney/b193058b-c0d5-4c9d-89ce-e6c1ed6ebacf_Jonas_an_Australian_Cattle_Dog.png deleted file mode 100644 index d1076a5f9a..0000000000 Binary files a/artworks/midjourney/b193058b-c0d5-4c9d-89ce-e6c1ed6ebacf_Jonas_an_Australian_Cattle_Dog.png and /dev/null differ diff --git a/artworks/midjourney/b1be2a7c-5d35-4711-be7c-311876109b04_the_opensource_algorithm_reads_your_soul.png b/artworks/midjourney/b1be2a7c-5d35-4711-be7c-311876109b04_the_opensource_algorithm_reads_your_soul.png deleted file mode 100644 index 86fdf1aed1..0000000000 Binary files a/artworks/midjourney/b1be2a7c-5d35-4711-be7c-311876109b04_the_opensource_algorithm_reads_your_soul.png and /dev/null differ diff --git a/artworks/midjourney/b1f5b58e-2144-43a1-9e4e-7ab6515d357a_family_childrens_drawing.png b/artworks/midjourney/b1f5b58e-2144-43a1-9e4e-7ab6515d357a_family_childrens_drawing.png deleted file mode 100644 index f75150cb9e..0000000000 Binary files a/artworks/midjourney/b1f5b58e-2144-43a1-9e4e-7ab6515d357a_family_childrens_drawing.png and /dev/null differ diff --git a/artworks/midjourney/b21727fd-3daa-4fdd-83e6-712b56019294_Jonas_Cthulhu_in_bubble_bath_tub_on_a_lazy_sunday_afternoon__--w_448_--h_320.png b/artworks/midjourney/b21727fd-3daa-4fdd-83e6-712b56019294_Jonas_Cthulhu_in_bubble_bath_tub_on_a_lazy_sunday_afternoon__--w_448_--h_320.png deleted file mode 100644 index 35b35c4edf..0000000000 Binary files a/artworks/midjourney/b21727fd-3daa-4fdd-83e6-712b56019294_Jonas_Cthulhu_in_bubble_bath_tub_on_a_lazy_sunday_afternoon__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/b24c227a-f171-4f76-917e-23f40f92920c_peau_salee.png b/artworks/midjourney/b24c227a-f171-4f76-917e-23f40f92920c_peau_salee.png deleted file mode 100644 index 5462dc49fd..0000000000 Binary files a/artworks/midjourney/b24c227a-f171-4f76-917e-23f40f92920c_peau_salee.png and /dev/null differ diff --git a/artworks/midjourney/b2644e96-11b4-4c4d-b53f-c4bcb2d073a9_Jonas_quake_II_pixel_art.png b/artworks/midjourney/b2644e96-11b4-4c4d-b53f-c4bcb2d073a9_Jonas_quake_II_pixel_art.png deleted file mode 100644 index 3afff249fe..0000000000 Binary files a/artworks/midjourney/b2644e96-11b4-4c4d-b53f-c4bcb2d073a9_Jonas_quake_II_pixel_art.png and /dev/null differ diff --git a/artworks/midjourney/b2710b35-b7b7-4eac-9ffb-8d87d0b7f2be_near-death_experience_into_the_light_by_WLOP_--seed_78923.png b/artworks/midjourney/b2710b35-b7b7-4eac-9ffb-8d87d0b7f2be_near-death_experience_into_the_light_by_WLOP_--seed_78923.png deleted file mode 100644 index b2c1ebce8d..0000000000 Binary files a/artworks/midjourney/b2710b35-b7b7-4eac-9ffb-8d87d0b7f2be_near-death_experience_into_the_light_by_WLOP_--seed_78923.png and /dev/null differ diff --git a/artworks/midjourney/b2ba2b70-f1e0-4954-8a29-37a161d76a5e_blob_of_horror_absorbed_by_bright_light_in_the_darkness.png b/artworks/midjourney/b2ba2b70-f1e0-4954-8a29-37a161d76a5e_blob_of_horror_absorbed_by_bright_light_in_the_darkness.png deleted file mode 100644 index 2ff9cdced9..0000000000 Binary files a/artworks/midjourney/b2ba2b70-f1e0-4954-8a29-37a161d76a5e_blob_of_horror_absorbed_by_bright_light_in_the_darkness.png and /dev/null differ diff --git a/artworks/midjourney/b37dd84f-90da-4915-b1e6-52e2cbc3847d_diva_with_gas_mask.png b/artworks/midjourney/b37dd84f-90da-4915-b1e6-52e2cbc3847d_diva_with_gas_mask.png deleted file mode 100644 index 5fedf26c73..0000000000 Binary files a/artworks/midjourney/b37dd84f-90da-4915-b1e6-52e2cbc3847d_diva_with_gas_mask.png and /dev/null differ diff --git a/artworks/midjourney/b39344a3-1ace-4299-97dd-269edeb81a0c_mirror_memorial.png b/artworks/midjourney/b39344a3-1ace-4299-97dd-269edeb81a0c_mirror_memorial.png deleted file mode 100644 index ad096bd286..0000000000 Binary files a/artworks/midjourney/b39344a3-1ace-4299-97dd-269edeb81a0c_mirror_memorial.png and /dev/null differ diff --git a/artworks/midjourney/b3a5f795-aaaf-4e0d-96db-47cb24cb01f8_near-death_experience_into_the_light_by_WLOP_--seed_78923.png b/artworks/midjourney/b3a5f795-aaaf-4e0d-96db-47cb24cb01f8_near-death_experience_into_the_light_by_WLOP_--seed_78923.png deleted file mode 100644 index cc8bba5678..0000000000 Binary files a/artworks/midjourney/b3a5f795-aaaf-4e0d-96db-47cb24cb01f8_near-death_experience_into_the_light_by_WLOP_--seed_78923.png and /dev/null differ diff --git a/artworks/midjourney/b3d5102d-f2b5-485b-b89c-4c14ca146b88_It_is_by_will_alone_I_set_my_mind_in_motion.png b/artworks/midjourney/b3d5102d-f2b5-485b-b89c-4c14ca146b88_It_is_by_will_alone_I_set_my_mind_in_motion.png deleted file mode 100644 index 5edca877c2..0000000000 Binary files a/artworks/midjourney/b3d5102d-f2b5-485b-b89c-4c14ca146b88_It_is_by_will_alone_I_set_my_mind_in_motion.png and /dev/null differ diff --git a/artworks/midjourney/b3e56412-db16-4f45-a877-674bee387472_Jonas_dia_de_los_muertos_httpss.mj.rune8jbLN.png b/artworks/midjourney/b3e56412-db16-4f45-a877-674bee387472_Jonas_dia_de_los_muertos_httpss.mj.rune8jbLN.png deleted file mode 100644 index f969c8ef9d..0000000000 Binary files a/artworks/midjourney/b3e56412-db16-4f45-a877-674bee387472_Jonas_dia_de_los_muertos_httpss.mj.rune8jbLN.png and /dev/null differ diff --git a/artworks/midjourney/b3ee5cdb-9302-4497-b724-50e8cfeccbac_back_to_zero_--w_512.png b/artworks/midjourney/b3ee5cdb-9302-4497-b724-50e8cfeccbac_back_to_zero_--w_512.png deleted file mode 100644 index cf7e6e8411..0000000000 Binary files a/artworks/midjourney/b3ee5cdb-9302-4497-b724-50e8cfeccbac_back_to_zero_--w_512.png and /dev/null differ diff --git a/artworks/midjourney/b532f2c2-ab89-44c0-972c-00b73c4e7f0a_Jonas_brual_rage_unreal__--w_448_--h_320.png b/artworks/midjourney/b532f2c2-ab89-44c0-972c-00b73c4e7f0a_Jonas_brual_rage_unreal__--w_448_--h_320.png deleted file mode 100644 index 4ec795a287..0000000000 Binary files a/artworks/midjourney/b532f2c2-ab89-44c0-972c-00b73c4e7f0a_Jonas_brual_rage_unreal__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/b5a4c37a-e1b0-4e8a-9e49-cec892d1de50_Jonas_irradiant_laloquence.png b/artworks/midjourney/b5a4c37a-e1b0-4e8a-9e49-cec892d1de50_Jonas_irradiant_laloquence.png deleted file mode 100644 index 8cabe6496b..0000000000 Binary files a/artworks/midjourney/b5a4c37a-e1b0-4e8a-9e49-cec892d1de50_Jonas_irradiant_laloquence.png and /dev/null differ diff --git a/artworks/midjourney/b5ce920f-c5fd-406a-b8d5-556743d34839_Jonas_httpss.mj.run8LUpZH__post-truth_wormhole.png b/artworks/midjourney/b5ce920f-c5fd-406a-b8d5-556743d34839_Jonas_httpss.mj.run8LUpZH__post-truth_wormhole.png deleted file mode 100644 index d4f1cb3b51..0000000000 Binary files a/artworks/midjourney/b5ce920f-c5fd-406a-b8d5-556743d34839_Jonas_httpss.mj.run8LUpZH__post-truth_wormhole.png and /dev/null differ diff --git a/artworks/midjourney/b6125a16-ecdc-4d9f-ba28-100b07273772_httpss.mj.runCKy7xw.png b/artworks/midjourney/b6125a16-ecdc-4d9f-ba28-100b07273772_httpss.mj.runCKy7xw.png deleted file mode 100644 index 5711010afc..0000000000 Binary files a/artworks/midjourney/b6125a16-ecdc-4d9f-ba28-100b07273772_httpss.mj.runCKy7xw.png and /dev/null differ diff --git a/artworks/midjourney/b63ebd22-4eb4-4e24-b695-655c2adf962d_intricate_labyrinth__--w_448_--h_320.png b/artworks/midjourney/b63ebd22-4eb4-4e24-b695-655c2adf962d_intricate_labyrinth__--w_448_--h_320.png deleted file mode 100644 index e1ff137de0..0000000000 Binary files a/artworks/midjourney/b63ebd22-4eb4-4e24-b695-655c2adf962d_intricate_labyrinth__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/b6436a9f-7bee-49d6-a63f-eba955dbf020_Jonas_visions_in_my_eye.png b/artworks/midjourney/b6436a9f-7bee-49d6-a63f-eba955dbf020_Jonas_visions_in_my_eye.png deleted file mode 100644 index 95969e627c..0000000000 Binary files a/artworks/midjourney/b6436a9f-7bee-49d6-a63f-eba955dbf020_Jonas_visions_in_my_eye.png and /dev/null differ diff --git a/artworks/midjourney/b65d9042-6cde-4a2e-8d01-76935d8a8bc6_there_is_no_hope_etching_detailed.png b/artworks/midjourney/b65d9042-6cde-4a2e-8d01-76935d8a8bc6_there_is_no_hope_etching_detailed.png deleted file mode 100644 index 60ff5f10c6..0000000000 Binary files a/artworks/midjourney/b65d9042-6cde-4a2e-8d01-76935d8a8bc6_there_is_no_hope_etching_detailed.png and /dev/null differ diff --git a/artworks/midjourney/b697b889-0e67-4e06-a6ee-d907df51f3b9_sad_panda_holding_sign_that_reads_Putin_stop_the_war_photograph.png b/artworks/midjourney/b697b889-0e67-4e06-a6ee-d907df51f3b9_sad_panda_holding_sign_that_reads_Putin_stop_the_war_photograph.png deleted file mode 100644 index bf55ddd7c5..0000000000 Binary files a/artworks/midjourney/b697b889-0e67-4e06-a6ee-d907df51f3b9_sad_panda_holding_sign_that_reads_Putin_stop_the_war_photograph.png and /dev/null differ diff --git a/artworks/midjourney/b6a0a776-d2da-436e-96b1-479f4d397674_Jonas_Rick_Rubin_Boris_Boglodite_httpss.mj.runHhSP1G_--w_360_--h_450.png b/artworks/midjourney/b6a0a776-d2da-436e-96b1-479f4d397674_Jonas_Rick_Rubin_Boris_Boglodite_httpss.mj.runHhSP1G_--w_360_--h_450.png deleted file mode 100644 index 8c3a682342..0000000000 Binary files a/artworks/midjourney/b6a0a776-d2da-436e-96b1-479f4d397674_Jonas_Rick_Rubin_Boris_Boglodite_httpss.mj.runHhSP1G_--w_360_--h_450.png and /dev/null differ diff --git a/artworks/midjourney/b70e552c-6615-4f47-a0e2-377428a4fbfd_Jonas_portrait_of_orc_bully__--w_320_--h_448.png b/artworks/midjourney/b70e552c-6615-4f47-a0e2-377428a4fbfd_Jonas_portrait_of_orc_bully__--w_320_--h_448.png deleted file mode 100644 index 1b28376441..0000000000 Binary files a/artworks/midjourney/b70e552c-6615-4f47-a0e2-377428a4fbfd_Jonas_portrait_of_orc_bully__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/b76de4fd-28f5-406d-88ea-b61d23a3a910_the_foundations_of_origin_void_of_existence_matte_painting_genesis_trending_on_artstation_high_resolution.png b/artworks/midjourney/b76de4fd-28f5-406d-88ea-b61d23a3a910_the_foundations_of_origin_void_of_existence_matte_painting_genesis_trending_on_artstation_high_resolution.png deleted file mode 100644 index e7e007c5c9..0000000000 Binary files a/artworks/midjourney/b76de4fd-28f5-406d-88ea-b61d23a3a910_the_foundations_of_origin_void_of_existence_matte_painting_genesis_trending_on_artstation_high_resolution.png and /dev/null differ diff --git a/artworks/midjourney/b79a73db-a901-4ed2-8e3c-7558160b2f47_Olympus_Has_Fallen.png b/artworks/midjourney/b79a73db-a901-4ed2-8e3c-7558160b2f47_Olympus_Has_Fallen.png deleted file mode 100644 index 800788719f..0000000000 Binary files a/artworks/midjourney/b79a73db-a901-4ed2-8e3c-7558160b2f47_Olympus_Has_Fallen.png and /dev/null differ diff --git a/artworks/midjourney/b7bc7a2f-f8cf-4758-8fac-1a34e815b7dd_the_fabled_creator_rests_on_the_seventh_day_of_creation.png b/artworks/midjourney/b7bc7a2f-f8cf-4758-8fac-1a34e815b7dd_the_fabled_creator_rests_on_the_seventh_day_of_creation.png deleted file mode 100644 index 2f3d8bd4e4..0000000000 Binary files a/artworks/midjourney/b7bc7a2f-f8cf-4758-8fac-1a34e815b7dd_the_fabled_creator_rests_on_the_seventh_day_of_creation.png and /dev/null differ diff --git a/artworks/midjourney/b7e44f23-2b40-4155-8d62-337dc86a16a7_karmasutra.png b/artworks/midjourney/b7e44f23-2b40-4155-8d62-337dc86a16a7_karmasutra.png deleted file mode 100644 index 6df1d10f2e..0000000000 Binary files a/artworks/midjourney/b7e44f23-2b40-4155-8d62-337dc86a16a7_karmasutra.png and /dev/null differ diff --git a/artworks/midjourney/b804d421-2f79-44b8-9d79-088c0c699d61_monolith_supernova__--w_448_--h_320.png b/artworks/midjourney/b804d421-2f79-44b8-9d79-088c0c699d61_monolith_supernova__--w_448_--h_320.png deleted file mode 100644 index 324fdb650f..0000000000 Binary files a/artworks/midjourney/b804d421-2f79-44b8-9d79-088c0c699d61_monolith_supernova__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/b831381d-1a2e-421f-ae8e-1b59332caec7_Jonas_hypnocat.png b/artworks/midjourney/b831381d-1a2e-421f-ae8e-1b59332caec7_Jonas_hypnocat.png deleted file mode 100644 index bb75a0f04a..0000000000 Binary files a/artworks/midjourney/b831381d-1a2e-421f-ae8e-1b59332caec7_Jonas_hypnocat.png and /dev/null differ diff --git a/artworks/midjourney/b83a9861-0f21-4b20-9c18-87b77bcf9da4_gateway_to_doom_--no_happy_--w_320_--h_256.png b/artworks/midjourney/b83a9861-0f21-4b20-9c18-87b77bcf9da4_gateway_to_doom_--no_happy_--w_320_--h_256.png deleted file mode 100644 index 0df275537c..0000000000 Binary files a/artworks/midjourney/b83a9861-0f21-4b20-9c18-87b77bcf9da4_gateway_to_doom_--no_happy_--w_320_--h_256.png and /dev/null differ diff --git a/artworks/midjourney/b893bce6-edd9-470c-b04e-c1ba7dcbbd1d_Jonas_Seraphim_angelarium__--w_320_--h_448.png b/artworks/midjourney/b893bce6-edd9-470c-b04e-c1ba7dcbbd1d_Jonas_Seraphim_angelarium__--w_320_--h_448.png deleted file mode 100644 index dae70a1fa4..0000000000 Binary files a/artworks/midjourney/b893bce6-edd9-470c-b04e-c1ba7dcbbd1d_Jonas_Seraphim_angelarium__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/b8c3bdc4-9e74-4ddc-8345-b76b41b7d16e_Jonas_throne_made_out_of_swords.png b/artworks/midjourney/b8c3bdc4-9e74-4ddc-8345-b76b41b7d16e_Jonas_throne_made_out_of_swords.png deleted file mode 100644 index e4d534cc62..0000000000 Binary files a/artworks/midjourney/b8c3bdc4-9e74-4ddc-8345-b76b41b7d16e_Jonas_throne_made_out_of_swords.png and /dev/null differ diff --git a/artworks/midjourney/b8d6fd79-7d3d-4f46-a0cd-15540c0e5816_futuristic_city._by_Albert_Uderzo_and_Rene_Goscinny.png b/artworks/midjourney/b8d6fd79-7d3d-4f46-a0cd-15540c0e5816_futuristic_city._by_Albert_Uderzo_and_Rene_Goscinny.png deleted file mode 100644 index bac6d98759..0000000000 Binary files a/artworks/midjourney/b8d6fd79-7d3d-4f46-a0cd-15540c0e5816_futuristic_city._by_Albert_Uderzo_and_Rene_Goscinny.png and /dev/null differ diff --git a/artworks/midjourney/b9171061-bb80-45c0-8024-7c0de40920eb_new_friend._by_S._Atan_and_Beksinski.png b/artworks/midjourney/b9171061-bb80-45c0-8024-7c0de40920eb_new_friend._by_S._Atan_and_Beksinski.png deleted file mode 100644 index 68448dd540..0000000000 Binary files a/artworks/midjourney/b9171061-bb80-45c0-8024-7c0de40920eb_new_friend._by_S._Atan_and_Beksinski.png and /dev/null differ diff --git a/artworks/midjourney/b921e9a4-3850-4735-b424-4855bd97ecc2_Jonas_portrait_of_an_evil_genius_rendered_in_octane_cgsociety_artstation_8k.png b/artworks/midjourney/b921e9a4-3850-4735-b424-4855bd97ecc2_Jonas_portrait_of_an_evil_genius_rendered_in_octane_cgsociety_artstation_8k.png deleted file mode 100644 index 6bf2f87e21..0000000000 Binary files a/artworks/midjourney/b921e9a4-3850-4735-b424-4855bd97ecc2_Jonas_portrait_of_an_evil_genius_rendered_in_octane_cgsociety_artstation_8k.png and /dev/null differ diff --git a/artworks/midjourney/b94ca39a-e718-4fbc-980d-9f26dd9b0cbd_nuclear_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png b/artworks/midjourney/b94ca39a-e718-4fbc-980d-9f26dd9b0cbd_nuclear_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png deleted file mode 100644 index bb3b0bcf6e..0000000000 Binary files a/artworks/midjourney/b94ca39a-e718-4fbc-980d-9f26dd9b0cbd_nuclear_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/b97b8eaa-ce23-413f-9781-a8a6f8b65ce2_httpss.mj.runeFBEBo__Nymphomaniac_--w_320_--h_448.png b/artworks/midjourney/b97b8eaa-ce23-413f-9781-a8a6f8b65ce2_httpss.mj.runeFBEBo__Nymphomaniac_--w_320_--h_448.png deleted file mode 100644 index 18e1c28d3e..0000000000 Binary files a/artworks/midjourney/b97b8eaa-ce23-413f-9781-a8a6f8b65ce2_httpss.mj.runeFBEBo__Nymphomaniac_--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/b9a50e19-fb4d-4d94-843a-373c39bb44ac_davoir_raison.png b/artworks/midjourney/b9a50e19-fb4d-4d94-843a-373c39bb44ac_davoir_raison.png deleted file mode 100644 index 56d79c92f1..0000000000 Binary files a/artworks/midjourney/b9a50e19-fb4d-4d94-843a-373c39bb44ac_davoir_raison.png and /dev/null differ diff --git a/artworks/midjourney/b9b1ac71-0d19-458b-b234-8dba6ceb39d6_symmetrical_alien_visitor__--w_320_--h_448.png b/artworks/midjourney/b9b1ac71-0d19-458b-b234-8dba6ceb39d6_symmetrical_alien_visitor__--w_320_--h_448.png deleted file mode 100644 index ea908c728b..0000000000 Binary files a/artworks/midjourney/b9b1ac71-0d19-458b-b234-8dba6ceb39d6_symmetrical_alien_visitor__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/b9cba810-f0de-480c-963d-3ac97d193487_enlightenment.png b/artworks/midjourney/b9cba810-f0de-480c-963d-3ac97d193487_enlightenment.png deleted file mode 100644 index 7e839c8042..0000000000 Binary files a/artworks/midjourney/b9cba810-f0de-480c-963d-3ac97d193487_enlightenment.png and /dev/null differ diff --git a/artworks/midjourney/ba1f3f33-165c-45ff-b570-4678587c6f0c_escher_monument__--w_320_--h_448.png b/artworks/midjourney/ba1f3f33-165c-45ff-b570-4678587c6f0c_escher_monument__--w_320_--h_448.png deleted file mode 100644 index 8f6cc8068a..0000000000 Binary files a/artworks/midjourney/ba1f3f33-165c-45ff-b570-4678587c6f0c_escher_monument__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/ba40cdbb-2d08-4071-a41d-5e0b63c416ee___science_art.png b/artworks/midjourney/ba40cdbb-2d08-4071-a41d-5e0b63c416ee___science_art.png deleted file mode 100644 index 0bc4b19931..0000000000 Binary files a/artworks/midjourney/ba40cdbb-2d08-4071-a41d-5e0b63c416ee___science_art.png and /dev/null differ diff --git a/artworks/midjourney/ba63fda7-3a5a-4a87-9460-5a23e595d015_dia_de_muertos_skull_CGSociety_detailed.png b/artworks/midjourney/ba63fda7-3a5a-4a87-9460-5a23e595d015_dia_de_muertos_skull_CGSociety_detailed.png deleted file mode 100644 index a4007339c3..0000000000 Binary files a/artworks/midjourney/ba63fda7-3a5a-4a87-9460-5a23e595d015_dia_de_muertos_skull_CGSociety_detailed.png and /dev/null differ diff --git a/artworks/midjourney/ba7349b5-d2f5-4744-adf2-53b359a8db2f_sleeping_rough_on_the_street_in_the_rain__--w_768_--h_512_--hd.png b/artworks/midjourney/ba7349b5-d2f5-4744-adf2-53b359a8db2f_sleeping_rough_on_the_street_in_the_rain__--w_768_--h_512_--hd.png deleted file mode 100644 index 880aef7857..0000000000 Binary files a/artworks/midjourney/ba7349b5-d2f5-4744-adf2-53b359a8db2f_sleeping_rough_on_the_street_in_the_rain__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/bae0e1c7-df5b-4030-8da7-3c28ffca2342_bio_dome_luxury_villa_.png b/artworks/midjourney/bae0e1c7-df5b-4030-8da7-3c28ffca2342_bio_dome_luxury_villa_.png deleted file mode 100644 index fba356627e..0000000000 Binary files a/artworks/midjourney/bae0e1c7-df5b-4030-8da7-3c28ffca2342_bio_dome_luxury_villa_.png and /dev/null differ diff --git a/artworks/midjourney/bafbe011-f631-4fcf-aa17-1df0bf0cbd67_Jonas_entropy_within.png b/artworks/midjourney/bafbe011-f631-4fcf-aa17-1df0bf0cbd67_Jonas_entropy_within.png deleted file mode 100644 index 224a5b3298..0000000000 Binary files a/artworks/midjourney/bafbe011-f631-4fcf-aa17-1df0bf0cbd67_Jonas_entropy_within.png and /dev/null differ diff --git a/artworks/midjourney/bb17c589-7881-40e0-87be-c3977b6456b8_Jonas_a_sophisticated_dog_reads_newspaper_in_a_cafe__--w_320_--h_448.png b/artworks/midjourney/bb17c589-7881-40e0-87be-c3977b6456b8_Jonas_a_sophisticated_dog_reads_newspaper_in_a_cafe__--w_320_--h_448.png deleted file mode 100644 index 4325fe0c2c..0000000000 Binary files a/artworks/midjourney/bb17c589-7881-40e0-87be-c3977b6456b8_Jonas_a_sophisticated_dog_reads_newspaper_in_a_cafe__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/bb6dbfb9-d57e-4c75-be81-ec2bcb3ea730_transhumanistic_tendency_by_WLOP_matte_painting__--w_320_--h_448.png b/artworks/midjourney/bb6dbfb9-d57e-4c75-be81-ec2bcb3ea730_transhumanistic_tendency_by_WLOP_matte_painting__--w_320_--h_448.png deleted file mode 100644 index b43d53b933..0000000000 Binary files a/artworks/midjourney/bb6dbfb9-d57e-4c75-be81-ec2bcb3ea730_transhumanistic_tendency_by_WLOP_matte_painting__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/bb6e14bd-d06a-47ba-af57-5b00c9b0d8ce_Jonas_the_rumor_of_doors_uncertainty_visualization.png b/artworks/midjourney/bb6e14bd-d06a-47ba-af57-5b00c9b0d8ce_Jonas_the_rumor_of_doors_uncertainty_visualization.png deleted file mode 100644 index 3a7bd3551b..0000000000 Binary files a/artworks/midjourney/bb6e14bd-d06a-47ba-af57-5b00c9b0d8ce_Jonas_the_rumor_of_doors_uncertainty_visualization.png and /dev/null differ diff --git a/artworks/midjourney/bbc15be9-d23a-4f95-9eba-90437672ef71_Jonas_a_huge_sycophant__--w_448_--h_320.png b/artworks/midjourney/bbc15be9-d23a-4f95-9eba-90437672ef71_Jonas_a_huge_sycophant__--w_448_--h_320.png deleted file mode 100644 index fc704677b2..0000000000 Binary files a/artworks/midjourney/bbc15be9-d23a-4f95-9eba-90437672ef71_Jonas_a_huge_sycophant__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/bbd8d0f0-f481-474a-988d-562f2e091b91_buck_Hudson_River_School_--w_512.png b/artworks/midjourney/bbd8d0f0-f481-474a-988d-562f2e091b91_buck_Hudson_River_School_--w_512.png deleted file mode 100644 index 8b7d44d684..0000000000 Binary files a/artworks/midjourney/bbd8d0f0-f481-474a-988d-562f2e091b91_buck_Hudson_River_School_--w_512.png and /dev/null differ diff --git a/artworks/midjourney/bc626cd5-98c4-4e26-b45d-8530f6a46174_Jonas_Mama_look_a_boo_boo.png b/artworks/midjourney/bc626cd5-98c4-4e26-b45d-8530f6a46174_Jonas_Mama_look_a_boo_boo.png deleted file mode 100644 index af65bcc6fa..0000000000 Binary files a/artworks/midjourney/bc626cd5-98c4-4e26-b45d-8530f6a46174_Jonas_Mama_look_a_boo_boo.png and /dev/null differ diff --git a/artworks/midjourney/bd2a8fb5-d31b-42e7-9831-13947280b8cb_Jonas_irradiant_eloquence.png b/artworks/midjourney/bd2a8fb5-d31b-42e7-9831-13947280b8cb_Jonas_irradiant_eloquence.png deleted file mode 100644 index 9e3d15aa09..0000000000 Binary files a/artworks/midjourney/bd2a8fb5-d31b-42e7-9831-13947280b8cb_Jonas_irradiant_eloquence.png and /dev/null differ diff --git a/artworks/midjourney/bd479498-e673-41ee-866b-117099423a94_scientific_visualization.png b/artworks/midjourney/bd479498-e673-41ee-866b-117099423a94_scientific_visualization.png deleted file mode 100644 index 557f2816b0..0000000000 Binary files a/artworks/midjourney/bd479498-e673-41ee-866b-117099423a94_scientific_visualization.png and /dev/null differ diff --git a/artworks/midjourney/bd90bed6-3065-45ad-b5e7-6dffde46999b_fantastic_journey._by_Beksinski_and_T._Burgler.png b/artworks/midjourney/bd90bed6-3065-45ad-b5e7-6dffde46999b_fantastic_journey._by_Beksinski_and_T._Burgler.png deleted file mode 100644 index c546c3c1c3..0000000000 Binary files a/artworks/midjourney/bd90bed6-3065-45ad-b5e7-6dffde46999b_fantastic_journey._by_Beksinski_and_T._Burgler.png and /dev/null differ diff --git a/artworks/midjourney/bdcbd1b6-4b22-4fa4-b924-e778ef40c4f9_Jonas_to_be_totally_gomez_with_you_we_cannot_assort_this.png b/artworks/midjourney/bdcbd1b6-4b22-4fa4-b924-e778ef40c4f9_Jonas_to_be_totally_gomez_with_you_we_cannot_assort_this.png deleted file mode 100644 index e21526e7a8..0000000000 Binary files a/artworks/midjourney/bdcbd1b6-4b22-4fa4-b924-e778ef40c4f9_Jonas_to_be_totally_gomez_with_you_we_cannot_assort_this.png and /dev/null differ diff --git a/artworks/midjourney/be2c0bb7-afbe-49d5-a6f8-d5ee4213565d_glass_box_of_horrors.png b/artworks/midjourney/be2c0bb7-afbe-49d5-a6f8-d5ee4213565d_glass_box_of_horrors.png deleted file mode 100644 index 9569399345..0000000000 Binary files a/artworks/midjourney/be2c0bb7-afbe-49d5-a6f8-d5ee4213565d_glass_box_of_horrors.png and /dev/null differ diff --git a/artworks/midjourney/bef037d8-712d-47d0-ada0-8f4b80109a42_I_think_I_just_diedd_inside.png b/artworks/midjourney/bef037d8-712d-47d0-ada0-8f4b80109a42_I_think_I_just_diedd_inside.png deleted file mode 100644 index e788728804..0000000000 Binary files a/artworks/midjourney/bef037d8-712d-47d0-ada0-8f4b80109a42_I_think_I_just_diedd_inside.png and /dev/null differ diff --git a/artworks/midjourney/bf2c073a-738a-47c9-8e17-22d96c586b03_enlightenment.png b/artworks/midjourney/bf2c073a-738a-47c9-8e17-22d96c586b03_enlightenment.png deleted file mode 100644 index c78cc27cf0..0000000000 Binary files a/artworks/midjourney/bf2c073a-738a-47c9-8e17-22d96c586b03_enlightenment.png and /dev/null differ diff --git a/artworks/midjourney/bf3c9e2c-c6e6-4e35-a06f-7510a5f660cb_entropy_of_the_unknown.png b/artworks/midjourney/bf3c9e2c-c6e6-4e35-a06f-7510a5f660cb_entropy_of_the_unknown.png deleted file mode 100644 index f07a8a23c9..0000000000 Binary files a/artworks/midjourney/bf3c9e2c-c6e6-4e35-a06f-7510a5f660cb_entropy_of_the_unknown.png and /dev/null differ diff --git a/artworks/midjourney/bf64626d-de60-464b-806d-485806ad23b5_primal_scream_concept_art.png b/artworks/midjourney/bf64626d-de60-464b-806d-485806ad23b5_primal_scream_concept_art.png deleted file mode 100644 index 00f166b30a..0000000000 Binary files a/artworks/midjourney/bf64626d-de60-464b-806d-485806ad23b5_primal_scream_concept_art.png and /dev/null differ diff --git a/artworks/midjourney/bf7f10ef-2975-402c-9b31-40792a0bb8e5_inkedin.png b/artworks/midjourney/bf7f10ef-2975-402c-9b31-40792a0bb8e5_inkedin.png deleted file mode 100644 index 73dac20825..0000000000 Binary files a/artworks/midjourney/bf7f10ef-2975-402c-9b31-40792a0bb8e5_inkedin.png and /dev/null differ diff --git a/artworks/midjourney/bf839982-ef2b-4584-9e37-c5a53ae95e2b_art_on_the_wall__--w_448_--h_320.png b/artworks/midjourney/bf839982-ef2b-4584-9e37-c5a53ae95e2b_art_on_the_wall__--w_448_--h_320.png deleted file mode 100644 index 79778f0f1c..0000000000 Binary files a/artworks/midjourney/bf839982-ef2b-4584-9e37-c5a53ae95e2b_art_on_the_wall__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/bf90a4b5-3011-48d1-86b2-7923a8485111_entropy_of_lost_souls.png b/artworks/midjourney/bf90a4b5-3011-48d1-86b2-7923a8485111_entropy_of_lost_souls.png deleted file mode 100644 index 51a4314290..0000000000 Binary files a/artworks/midjourney/bf90a4b5-3011-48d1-86b2-7923a8485111_entropy_of_lost_souls.png and /dev/null differ diff --git a/artworks/midjourney/bfced2ee-dc4a-4367-bd9f-839c844f1965_new_friend._by_S._Atan_and_Beksinski.png b/artworks/midjourney/bfced2ee-dc4a-4367-bd9f-839c844f1965_new_friend._by_S._Atan_and_Beksinski.png deleted file mode 100644 index 6de98bccec..0000000000 Binary files a/artworks/midjourney/bfced2ee-dc4a-4367-bd9f-839c844f1965_new_friend._by_S._Atan_and_Beksinski.png and /dev/null differ diff --git a/artworks/midjourney/c00a9d3c-beaa-4e6c-9644-c62b2ae12b75_devil_mugshot.png b/artworks/midjourney/c00a9d3c-beaa-4e6c-9644-c62b2ae12b75_devil_mugshot.png deleted file mode 100644 index 7f7198cdab..0000000000 Binary files a/artworks/midjourney/c00a9d3c-beaa-4e6c-9644-c62b2ae12b75_devil_mugshot.png and /dev/null differ diff --git a/artworks/midjourney/c0214d80-79b2-4eaa-86f6-659cd1f90e45_harbinger_of_light__--w_320_--h_256.png b/artworks/midjourney/c0214d80-79b2-4eaa-86f6-659cd1f90e45_harbinger_of_light__--w_320_--h_256.png deleted file mode 100644 index 70fc4f4fa6..0000000000 Binary files a/artworks/midjourney/c0214d80-79b2-4eaa-86f6-659cd1f90e45_harbinger_of_light__--w_320_--h_256.png and /dev/null differ diff --git a/artworks/midjourney/c03400b0-dce1-476a-bf93-d7c216daf8af_the_art_of_science.png b/artworks/midjourney/c03400b0-dce1-476a-bf93-d7c216daf8af_the_art_of_science.png deleted file mode 100644 index 4733561c4c..0000000000 Binary files a/artworks/midjourney/c03400b0-dce1-476a-bf93-d7c216daf8af_the_art_of_science.png and /dev/null differ diff --git a/artworks/midjourney/c03992f1-0288-4030-b056-e5fd92674ffa_diva_with_gas_mask.png b/artworks/midjourney/c03992f1-0288-4030-b056-e5fd92674ffa_diva_with_gas_mask.png deleted file mode 100644 index be1b607fb9..0000000000 Binary files a/artworks/midjourney/c03992f1-0288-4030-b056-e5fd92674ffa_diva_with_gas_mask.png and /dev/null differ diff --git a/artworks/midjourney/c0e2b9a7-e553-4eaa-bf08-2d891467bd28_entropy_of_the_soul.png b/artworks/midjourney/c0e2b9a7-e553-4eaa-bf08-2d891467bd28_entropy_of_the_soul.png deleted file mode 100644 index 30dfa62482..0000000000 Binary files a/artworks/midjourney/c0e2b9a7-e553-4eaa-bf08-2d891467bd28_entropy_of_the_soul.png and /dev/null differ diff --git a/artworks/midjourney/c12a1fd7-e70f-4195-9eb3-cfd422fa4a4d_robot_by_WLOP__--w_320_--h_448.png b/artworks/midjourney/c12a1fd7-e70f-4195-9eb3-cfd422fa4a4d_robot_by_WLOP__--w_320_--h_448.png deleted file mode 100644 index a53ea2d714..0000000000 Binary files a/artworks/midjourney/c12a1fd7-e70f-4195-9eb3-cfd422fa4a4d_robot_by_WLOP__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/c156208d-14df-4c6f-b676-2775c18b3c0d_Jonas_httpss.mj.runFfhBkJ_portrait_of_Nite_Owl_watchmen.png b/artworks/midjourney/c156208d-14df-4c6f-b676-2775c18b3c0d_Jonas_httpss.mj.runFfhBkJ_portrait_of_Nite_Owl_watchmen.png deleted file mode 100644 index e6293d20d2..0000000000 Binary files a/artworks/midjourney/c156208d-14df-4c6f-b676-2775c18b3c0d_Jonas_httpss.mj.runFfhBkJ_portrait_of_Nite_Owl_watchmen.png and /dev/null differ diff --git a/artworks/midjourney/c16369b0-86a5-4b65-9df7-d5c84d8d8ace_medusa_tarot_card__--w_320_--h_448.png b/artworks/midjourney/c16369b0-86a5-4b65-9df7-d5c84d8d8ace_medusa_tarot_card__--w_320_--h_448.png deleted file mode 100644 index ce7988cf80..0000000000 Binary files a/artworks/midjourney/c16369b0-86a5-4b65-9df7-d5c84d8d8ace_medusa_tarot_card__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/c1c18606-619f-42ae-b5cc-11314a1b2c9a_album_cover_Aubrey_Powell_photograph.png b/artworks/midjourney/c1c18606-619f-42ae-b5cc-11314a1b2c9a_album_cover_Aubrey_Powell_photograph.png deleted file mode 100644 index 9460239470..0000000000 Binary files a/artworks/midjourney/c1c18606-619f-42ae-b5cc-11314a1b2c9a_album_cover_Aubrey_Powell_photograph.png and /dev/null differ diff --git a/artworks/midjourney/c290136c-1219-486b-9c3b-be6b51e3d617_gateway_to_doom__--w_320_--h_256.png b/artworks/midjourney/c290136c-1219-486b-9c3b-be6b51e3d617_gateway_to_doom__--w_320_--h_256.png deleted file mode 100644 index ba629e9530..0000000000 Binary files a/artworks/midjourney/c290136c-1219-486b-9c3b-be6b51e3d617_gateway_to_doom__--w_320_--h_256.png and /dev/null differ diff --git a/artworks/midjourney/c2993a37-7749-4abd-8b8c-7b69eb10a0d6_carcinogenic_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png b/artworks/midjourney/c2993a37-7749-4abd-8b8c-7b69eb10a0d6_carcinogenic_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png deleted file mode 100644 index 7f8abd414d..0000000000 Binary files a/artworks/midjourney/c2993a37-7749-4abd-8b8c-7b69eb10a0d6_carcinogenic_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/c29ea3b5-ef26-4a81-8540-8b02421e8636_the_sound_of_now_is_evermore.png b/artworks/midjourney/c29ea3b5-ef26-4a81-8540-8b02421e8636_the_sound_of_now_is_evermore.png deleted file mode 100644 index c23870d5bb..0000000000 Binary files a/artworks/midjourney/c29ea3b5-ef26-4a81-8540-8b02421e8636_the_sound_of_now_is_evermore.png and /dev/null differ diff --git a/artworks/midjourney/c2dc9642-3b96-47b1-ad57-85bcdf2fbe8b_the_art_of_science_httpsstorage.googleapis.comdream-machines-outputc03400b0-dce1-476a-bf93-d7c216daf8af0_0.png.png b/artworks/midjourney/c2dc9642-3b96-47b1-ad57-85bcdf2fbe8b_the_art_of_science_httpsstorage.googleapis.comdream-machines-outputc03400b0-dce1-476a-bf93-d7c216daf8af0_0.png.png deleted file mode 100644 index 9f65f4fb6d..0000000000 Binary files a/artworks/midjourney/c2dc9642-3b96-47b1-ad57-85bcdf2fbe8b_the_art_of_science_httpsstorage.googleapis.comdream-machines-outputc03400b0-dce1-476a-bf93-d7c216daf8af0_0.png.png and /dev/null differ diff --git a/artworks/midjourney/c303cecd-967e-476a-8f81-eafa966e534b_water_tank_The_Prestige__--w_320_--h_448.png b/artworks/midjourney/c303cecd-967e-476a-8f81-eafa966e534b_water_tank_The_Prestige__--w_320_--h_448.png deleted file mode 100644 index 73b673be55..0000000000 Binary files a/artworks/midjourney/c303cecd-967e-476a-8f81-eafa966e534b_water_tank_The_Prestige__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/c30b16cf-0319-463d-8afe-1901b55ce71e_Jonas_httpss.mj.runFfhBkJ_portrait_of_Nite_Owl_watchmen.png b/artworks/midjourney/c30b16cf-0319-463d-8afe-1901b55ce71e_Jonas_httpss.mj.runFfhBkJ_portrait_of_Nite_Owl_watchmen.png deleted file mode 100644 index 17f5946bd8..0000000000 Binary files a/artworks/midjourney/c30b16cf-0319-463d-8afe-1901b55ce71e_Jonas_httpss.mj.runFfhBkJ_portrait_of_Nite_Owl_watchmen.png and /dev/null differ diff --git a/artworks/midjourney/c3787a78-9415-46fa-b0bb-09a68f38c44a_Lucius_httpss.mj.runQsiXJS__At_least_you_would_look_human_now..png b/artworks/midjourney/c3787a78-9415-46fa-b0bb-09a68f38c44a_Lucius_httpss.mj.runQsiXJS__At_least_you_would_look_human_now..png deleted file mode 100644 index 3ed0052802..0000000000 Binary files a/artworks/midjourney/c3787a78-9415-46fa-b0bb-09a68f38c44a_Lucius_httpss.mj.runQsiXJS__At_least_you_would_look_human_now..png and /dev/null differ diff --git a/artworks/midjourney/c426b101-aac5-456a-b242-940c3456f313_raider_of_the_lost_art_portrait_painting_intricate_digital_art__--w_320_--h_448.png b/artworks/midjourney/c426b101-aac5-456a-b242-940c3456f313_raider_of_the_lost_art_portrait_painting_intricate_digital_art__--w_320_--h_448.png deleted file mode 100644 index c31023b797..0000000000 Binary files a/artworks/midjourney/c426b101-aac5-456a-b242-940c3456f313_raider_of_the_lost_art_portrait_painting_intricate_digital_art__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/c45d6ccd-e449-4a22-b930-f743bfc2fa9e_photographic_evidence_that_god_exists.png b/artworks/midjourney/c45d6ccd-e449-4a22-b930-f743bfc2fa9e_photographic_evidence_that_god_exists.png deleted file mode 100644 index 76c6cd1c2d..0000000000 Binary files a/artworks/midjourney/c45d6ccd-e449-4a22-b930-f743bfc2fa9e_photographic_evidence_that_god_exists.png and /dev/null differ diff --git a/artworks/midjourney/c4960db1-b8ff-4183-a1c9-a9a21a93a3c3_Jonas_Jalapeno-colored_bio_dome_shelter.png b/artworks/midjourney/c4960db1-b8ff-4183-a1c9-a9a21a93a3c3_Jonas_Jalapeno-colored_bio_dome_shelter.png deleted file mode 100644 index 9adc1481fe..0000000000 Binary files a/artworks/midjourney/c4960db1-b8ff-4183-a1c9-a9a21a93a3c3_Jonas_Jalapeno-colored_bio_dome_shelter.png and /dev/null differ diff --git a/artworks/midjourney/c506a158-e9b7-4db2-8a99-833c4acb129f_Jonas_creepy_creepo_httpss.mj.runevimu3.png b/artworks/midjourney/c506a158-e9b7-4db2-8a99-833c4acb129f_Jonas_creepy_creepo_httpss.mj.runevimu3.png deleted file mode 100644 index e07915f278..0000000000 Binary files a/artworks/midjourney/c506a158-e9b7-4db2-8a99-833c4acb129f_Jonas_creepy_creepo_httpss.mj.runevimu3.png and /dev/null differ diff --git a/artworks/midjourney/c51688a1-a5bc-4ebf-8695-ab7043e58201_goddess_of_plumage.png b/artworks/midjourney/c51688a1-a5bc-4ebf-8695-ab7043e58201_goddess_of_plumage.png deleted file mode 100644 index 4fdef09984..0000000000 Binary files a/artworks/midjourney/c51688a1-a5bc-4ebf-8695-ab7043e58201_goddess_of_plumage.png and /dev/null differ diff --git a/artworks/midjourney/c5a8bc05-d80a-43f6-b229-911242a5be17_Jonas_hypnodog.png b/artworks/midjourney/c5a8bc05-d80a-43f6-b229-911242a5be17_Jonas_hypnodog.png deleted file mode 100644 index 7949015916..0000000000 Binary files a/artworks/midjourney/c5a8bc05-d80a-43f6-b229-911242a5be17_Jonas_hypnodog.png and /dev/null differ diff --git a/artworks/midjourney/c61c7eb2-d789-4ff9-a975-b15efc2f2d8d_primal_scream_poster_art.png b/artworks/midjourney/c61c7eb2-d789-4ff9-a975-b15efc2f2d8d_primal_scream_poster_art.png deleted file mode 100644 index 1c77e47fab..0000000000 Binary files a/artworks/midjourney/c61c7eb2-d789-4ff9-a975-b15efc2f2d8d_primal_scream_poster_art.png and /dev/null differ diff --git a/artworks/midjourney/c69bef5f-b0b7-41a1-b2e6-a5c8ee95ccfc_genesis_of_the_mind.png b/artworks/midjourney/c69bef5f-b0b7-41a1-b2e6-a5c8ee95ccfc_genesis_of_the_mind.png deleted file mode 100644 index 02aafb6f4d..0000000000 Binary files a/artworks/midjourney/c69bef5f-b0b7-41a1-b2e6-a5c8ee95ccfc_genesis_of_the_mind.png and /dev/null differ diff --git a/artworks/midjourney/c6d98aec-aa6a-42ef-aa2a-3775ed62ed6b__oil_painting_watercolor_line_drawing_by_James_Gurney_.png b/artworks/midjourney/c6d98aec-aa6a-42ef-aa2a-3775ed62ed6b__oil_painting_watercolor_line_drawing_by_James_Gurney_.png deleted file mode 100644 index ea87fe055d..0000000000 Binary files a/artworks/midjourney/c6d98aec-aa6a-42ef-aa2a-3775ed62ed6b__oil_painting_watercolor_line_drawing_by_James_Gurney_.png and /dev/null differ diff --git a/artworks/midjourney/c768c7a5-7250-430b-9e48-71beeba3b142_Jonas_Seraphim_angelarium__--w_320_--h_448.png b/artworks/midjourney/c768c7a5-7250-430b-9e48-71beeba3b142_Jonas_Seraphim_angelarium__--w_320_--h_448.png deleted file mode 100644 index ca904987ee..0000000000 Binary files a/artworks/midjourney/c768c7a5-7250-430b-9e48-71beeba3b142_Jonas_Seraphim_angelarium__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/c7f7bec7-6336-4260-aeeb-9abd67e094bb_raider_of_the_lost_art_portrait_painting_intricate_digital_art__--w_320_--h_448.png b/artworks/midjourney/c7f7bec7-6336-4260-aeeb-9abd67e094bb_raider_of_the_lost_art_portrait_painting_intricate_digital_art__--w_320_--h_448.png deleted file mode 100644 index bf48226021..0000000000 Binary files a/artworks/midjourney/c7f7bec7-6336-4260-aeeb-9abd67e094bb_raider_of_the_lost_art_portrait_painting_intricate_digital_art__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/c7ff62b7-e3f2-4733-b084-b437fbc0abfc_embodied_soul_by_Ben_Bauchau.png b/artworks/midjourney/c7ff62b7-e3f2-4733-b084-b437fbc0abfc_embodied_soul_by_Ben_Bauchau.png deleted file mode 100644 index 7f0aa3e3e5..0000000000 Binary files a/artworks/midjourney/c7ff62b7-e3f2-4733-b084-b437fbc0abfc_embodied_soul_by_Ben_Bauchau.png and /dev/null differ diff --git a/artworks/midjourney/c8e4d309-c63c-46db-8ae2-39074f95c713_scary_clown_face_business_manager_httpss.mj.runx6CPUa__--w_320_--h_448.png b/artworks/midjourney/c8e4d309-c63c-46db-8ae2-39074f95c713_scary_clown_face_business_manager_httpss.mj.runx6CPUa__--w_320_--h_448.png deleted file mode 100644 index b9fcabb80b..0000000000 Binary files a/artworks/midjourney/c8e4d309-c63c-46db-8ae2-39074f95c713_scary_clown_face_business_manager_httpss.mj.runx6CPUa__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/c92e23e8-774b-4f40-8c38-20fa7ebf398e_Jonas_portrait_of_a_world_war_soldier_on_artstation.png b/artworks/midjourney/c92e23e8-774b-4f40-8c38-20fa7ebf398e_Jonas_portrait_of_a_world_war_soldier_on_artstation.png deleted file mode 100644 index 0f9e0885ca..0000000000 Binary files a/artworks/midjourney/c92e23e8-774b-4f40-8c38-20fa7ebf398e_Jonas_portrait_of_a_world_war_soldier_on_artstation.png and /dev/null differ diff --git a/artworks/midjourney/c93e3a55-14be-48b2-891c-492b6e7a6fa8_I_love_this_processing_generativeart_geometric_abstract.png b/artworks/midjourney/c93e3a55-14be-48b2-891c-492b6e7a6fa8_I_love_this_processing_generativeart_geometric_abstract.png deleted file mode 100644 index 6c775e91b7..0000000000 Binary files a/artworks/midjourney/c93e3a55-14be-48b2-891c-492b6e7a6fa8_I_love_this_processing_generativeart_geometric_abstract.png and /dev/null differ diff --git a/artworks/midjourney/c97f0df6-e362-426c-bacb-b0169aa277ac_carcinogenic_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png b/artworks/midjourney/c97f0df6-e362-426c-bacb-b0169aa277ac_carcinogenic_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png deleted file mode 100644 index 7764b30902..0000000000 Binary files a/artworks/midjourney/c97f0df6-e362-426c-bacb-b0169aa277ac_carcinogenic_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/c98fd5d0-e9e7-4624-bec6-c9cacb1efa82_the_creativogenic_society.png b/artworks/midjourney/c98fd5d0-e9e7-4624-bec6-c9cacb1efa82_the_creativogenic_society.png deleted file mode 100644 index c23a8fbd52..0000000000 Binary files a/artworks/midjourney/c98fd5d0-e9e7-4624-bec6-c9cacb1efa82_the_creativogenic_society.png and /dev/null differ diff --git a/artworks/midjourney/c9f16975-6e2c-41b5-bde4-ec54f97d11ed_O.png b/artworks/midjourney/c9f16975-6e2c-41b5-bde4-ec54f97d11ed_O.png deleted file mode 100644 index c7b281d700..0000000000 Binary files a/artworks/midjourney/c9f16975-6e2c-41b5-bde4-ec54f97d11ed_O.png and /dev/null differ diff --git a/artworks/midjourney/c9f3e6dd-64ff-49eb-a996-5136aa131083_science_art.png b/artworks/midjourney/c9f3e6dd-64ff-49eb-a996-5136aa131083_science_art.png deleted file mode 100644 index 641f3a0c2d..0000000000 Binary files a/artworks/midjourney/c9f3e6dd-64ff-49eb-a996-5136aa131083_science_art.png and /dev/null differ diff --git a/artworks/midjourney/c9fa2ab1-07f8-40f1-be28-eafff8ee2d25_Jonas_bye_bye_LUNA_cryptocurrency_crash.png b/artworks/midjourney/c9fa2ab1-07f8-40f1-be28-eafff8ee2d25_Jonas_bye_bye_LUNA_cryptocurrency_crash.png deleted file mode 100644 index 627de53733..0000000000 Binary files a/artworks/midjourney/c9fa2ab1-07f8-40f1-be28-eafff8ee2d25_Jonas_bye_bye_LUNA_cryptocurrency_crash.png and /dev/null differ diff --git a/artworks/midjourney/ca15c039-eba1-42a7-bfc4-f5a1470bdbaa_Jonas_rogue_assassin.png b/artworks/midjourney/ca15c039-eba1-42a7-bfc4-f5a1470bdbaa_Jonas_rogue_assassin.png deleted file mode 100644 index e7e2e14ce1..0000000000 Binary files a/artworks/midjourney/ca15c039-eba1-42a7-bfc4-f5a1470bdbaa_Jonas_rogue_assassin.png and /dev/null differ diff --git a/artworks/midjourney/cab17760-b1eb-4b2d-8798-05dfb81185e2___science_art.png b/artworks/midjourney/cab17760-b1eb-4b2d-8798-05dfb81185e2___science_art.png deleted file mode 100644 index 9012136b65..0000000000 Binary files a/artworks/midjourney/cab17760-b1eb-4b2d-8798-05dfb81185e2___science_art.png and /dev/null differ diff --git a/artworks/midjourney/cadbebd0-5548-45a6-8f18-a68c27a64bb6_gateway_to_doom__--w_320_--h_256.png b/artworks/midjourney/cadbebd0-5548-45a6-8f18-a68c27a64bb6_gateway_to_doom__--w_320_--h_256.png deleted file mode 100644 index 2cd3865491..0000000000 Binary files a/artworks/midjourney/cadbebd0-5548-45a6-8f18-a68c27a64bb6_gateway_to_doom__--w_320_--h_256.png and /dev/null differ diff --git a/artworks/midjourney/cb2d1491-5d08-42bb-aa30-2d7bafe8d2d6_Jonas_httpss.mj.run91nKZp__the_dude.png b/artworks/midjourney/cb2d1491-5d08-42bb-aa30-2d7bafe8d2d6_Jonas_httpss.mj.run91nKZp__the_dude.png deleted file mode 100644 index bb1db1d76c..0000000000 Binary files a/artworks/midjourney/cb2d1491-5d08-42bb-aa30-2d7bafe8d2d6_Jonas_httpss.mj.run91nKZp__the_dude.png and /dev/null differ diff --git a/artworks/midjourney/cb3eda39-07c9-4086-bada-750e770dde0c_Jonas_httpss.mj.runUxvYeS__Russians_They_Live.png b/artworks/midjourney/cb3eda39-07c9-4086-bada-750e770dde0c_Jonas_httpss.mj.runUxvYeS__Russians_They_Live.png deleted file mode 100644 index 41fc1c1832..0000000000 Binary files a/artworks/midjourney/cb3eda39-07c9-4086-bada-750e770dde0c_Jonas_httpss.mj.runUxvYeS__Russians_They_Live.png and /dev/null differ diff --git a/artworks/midjourney/cbed54bb-1884-4d20-b4b8-941ecb9454f7_eclectic_interior_of_the_mind.png b/artworks/midjourney/cbed54bb-1884-4d20-b4b8-941ecb9454f7_eclectic_interior_of_the_mind.png deleted file mode 100644 index 7a713b7030..0000000000 Binary files a/artworks/midjourney/cbed54bb-1884-4d20-b4b8-941ecb9454f7_eclectic_interior_of_the_mind.png and /dev/null differ diff --git a/artworks/midjourney/cbf5bc81-2ddf-4ed6-81ca-af3f23f71dc2_Jonas_httpss.mj.runAGQ2KW__I_stumbled_into_you_Accidentally_And_yet_Feels_as_though_you_were_Sent_to_me.png b/artworks/midjourney/cbf5bc81-2ddf-4ed6-81ca-af3f23f71dc2_Jonas_httpss.mj.runAGQ2KW__I_stumbled_into_you_Accidentally_And_yet_Feels_as_though_you_were_Sent_to_me.png deleted file mode 100644 index 080f83791c..0000000000 Binary files a/artworks/midjourney/cbf5bc81-2ddf-4ed6-81ca-af3f23f71dc2_Jonas_httpss.mj.runAGQ2KW__I_stumbled_into_you_Accidentally_And_yet_Feels_as_though_you_were_Sent_to_me.png and /dev/null differ diff --git a/artworks/midjourney/cc61e83f-2c07-4b4b-9bcb-5678939917e6_The_Merovingian_--no_hiphop__--w_320_--h_448.png b/artworks/midjourney/cc61e83f-2c07-4b4b-9bcb-5678939917e6_The_Merovingian_--no_hiphop__--w_320_--h_448.png deleted file mode 100644 index 06d3d58b6e..0000000000 Binary files a/artworks/midjourney/cc61e83f-2c07-4b4b-9bcb-5678939917e6_The_Merovingian_--no_hiphop__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/cc99ee61-484b-4518-a94e-9e924501924d_sculture_made_out_of_jpeg_artefacts_--hq__--w_512_--h_768_--hd.png b/artworks/midjourney/cc99ee61-484b-4518-a94e-9e924501924d_sculture_made_out_of_jpeg_artefacts_--hq__--w_512_--h_768_--hd.png deleted file mode 100644 index 9c99b304b7..0000000000 Binary files a/artworks/midjourney/cc99ee61-484b-4518-a94e-9e924501924d_sculture_made_out_of_jpeg_artefacts_--hq__--w_512_--h_768_--hd.png and /dev/null differ diff --git a/artworks/midjourney/ccf26e9b-de99-4483-af78-9570903bff2b_Jonas_vqganclip.png b/artworks/midjourney/ccf26e9b-de99-4483-af78-9570903bff2b_Jonas_vqganclip.png deleted file mode 100644 index 86cfd418c9..0000000000 Binary files a/artworks/midjourney/ccf26e9b-de99-4483-af78-9570903bff2b_Jonas_vqganclip.png and /dev/null differ diff --git a/artworks/midjourney/cd0e7484-a899-4620-aad3-c7700fa9f5a0_fantastic_wardrobe_of_the_inner_sanctuary_comes_to_life_in_giant_birtation_of_the_soul__--w_448_--h_.png b/artworks/midjourney/cd0e7484-a899-4620-aad3-c7700fa9f5a0_fantastic_wardrobe_of_the_inner_sanctuary_comes_to_life_in_giant_birtation_of_the_soul__--w_448_--h_.png deleted file mode 100644 index 923f12c253..0000000000 Binary files a/artworks/midjourney/cd0e7484-a899-4620-aad3-c7700fa9f5a0_fantastic_wardrobe_of_the_inner_sanctuary_comes_to_life_in_giant_birtation_of_the_soul__--w_448_--h_.png and /dev/null differ diff --git a/artworks/midjourney/cd0e973f-2fc0-48aa-9126-beb7b76b9842_monolith_supernova__--w_448_--h_320.png b/artworks/midjourney/cd0e973f-2fc0-48aa-9126-beb7b76b9842_monolith_supernova__--w_448_--h_320.png deleted file mode 100644 index a305144208..0000000000 Binary files a/artworks/midjourney/cd0e973f-2fc0-48aa-9126-beb7b76b9842_monolith_supernova__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/cd27be2c-5731-4eed-a2df-ab5b4c5eb778_trans_c3po.png b/artworks/midjourney/cd27be2c-5731-4eed-a2df-ab5b4c5eb778_trans_c3po.png deleted file mode 100644 index d480ce5328..0000000000 Binary files a/artworks/midjourney/cd27be2c-5731-4eed-a2df-ab5b4c5eb778_trans_c3po.png and /dev/null differ diff --git a/artworks/midjourney/cd487234-5e29-421b-9ec9-330136bf6d9c_Jonas_black_engineer.png b/artworks/midjourney/cd487234-5e29-421b-9ec9-330136bf6d9c_Jonas_black_engineer.png deleted file mode 100644 index 2a6f1b5b94..0000000000 Binary files a/artworks/midjourney/cd487234-5e29-421b-9ec9-330136bf6d9c_Jonas_black_engineer.png and /dev/null differ diff --git a/artworks/midjourney/cd83060c-15b9-4611-b167-312a59d91f6a_mindful_wondrous_cavernous_existing_ludicrous_object_--hq.png b/artworks/midjourney/cd83060c-15b9-4611-b167-312a59d91f6a_mindful_wondrous_cavernous_existing_ludicrous_object_--hq.png deleted file mode 100644 index aba7d0c442..0000000000 Binary files a/artworks/midjourney/cd83060c-15b9-4611-b167-312a59d91f6a_mindful_wondrous_cavernous_existing_ludicrous_object_--hq.png and /dev/null differ diff --git a/artworks/midjourney/ce109cf5-d0e3-4f52-82e7-18f3cf9513dc_Jonas_httpss.mj.runElMVUZ__Battal_Ebru_by_Mustafa_Duzgunman.png b/artworks/midjourney/ce109cf5-d0e3-4f52-82e7-18f3cf9513dc_Jonas_httpss.mj.runElMVUZ__Battal_Ebru_by_Mustafa_Duzgunman.png deleted file mode 100644 index 8bc8b6f739..0000000000 Binary files a/artworks/midjourney/ce109cf5-d0e3-4f52-82e7-18f3cf9513dc_Jonas_httpss.mj.runElMVUZ__Battal_Ebru_by_Mustafa_Duzgunman.png and /dev/null differ diff --git a/artworks/midjourney/ce7d8731-10fa-400a-96ef-17ff50d44e13_mirror_memorial.png b/artworks/midjourney/ce7d8731-10fa-400a-96ef-17ff50d44e13_mirror_memorial.png deleted file mode 100644 index d8e78f9a17..0000000000 Binary files a/artworks/midjourney/ce7d8731-10fa-400a-96ef-17ff50d44e13_mirror_memorial.png and /dev/null differ diff --git a/artworks/midjourney/ce85da65-8625-4ae8-b6ea-c84bd906c9ea_80s_woman_polaroid.png b/artworks/midjourney/ce85da65-8625-4ae8-b6ea-c84bd906c9ea_80s_woman_polaroid.png deleted file mode 100644 index 1f21101512..0000000000 Binary files a/artworks/midjourney/ce85da65-8625-4ae8-b6ea-c84bd906c9ea_80s_woman_polaroid.png and /dev/null differ diff --git a/artworks/midjourney/ceb5b2f0-100f-496f-b77d-719dc4162a35_beavis_bunghead_DD_beastiary_httpst.lyqa4H.png b/artworks/midjourney/ceb5b2f0-100f-496f-b77d-719dc4162a35_beavis_bunghead_DD_beastiary_httpst.lyqa4H.png deleted file mode 100644 index a907d0dd49..0000000000 Binary files a/artworks/midjourney/ceb5b2f0-100f-496f-b77d-719dc4162a35_beavis_bunghead_DD_beastiary_httpst.lyqa4H.png and /dev/null differ diff --git a/artworks/midjourney/cebfaac3-edac-4763-82a4-07cb94d62d3d_Jonas_httpss.mj.run91nKZp__the_dude.png b/artworks/midjourney/cebfaac3-edac-4763-82a4-07cb94d62d3d_Jonas_httpss.mj.run91nKZp__the_dude.png deleted file mode 100644 index 9e74a1c008..0000000000 Binary files a/artworks/midjourney/cebfaac3-edac-4763-82a4-07cb94d62d3d_Jonas_httpss.mj.run91nKZp__the_dude.png and /dev/null differ diff --git a/artworks/midjourney/cf086420-3f96-4f04-add3-454d28276ad8_Jonas_portrait_picture_of_evil_genius_rendered_in_octane_CGsociety_cool.png b/artworks/midjourney/cf086420-3f96-4f04-add3-454d28276ad8_Jonas_portrait_picture_of_evil_genius_rendered_in_octane_CGsociety_cool.png deleted file mode 100644 index fcfd664cdb..0000000000 Binary files a/artworks/midjourney/cf086420-3f96-4f04-add3-454d28276ad8_Jonas_portrait_picture_of_evil_genius_rendered_in_octane_CGsociety_cool.png and /dev/null differ diff --git a/artworks/midjourney/cf3c0200-a471-4497-9758-dc13516100e1_massive_degeneration_of_the_human_soul_leads_to_fluctuations_of_incumbent_incense.png b/artworks/midjourney/cf3c0200-a471-4497-9758-dc13516100e1_massive_degeneration_of_the_human_soul_leads_to_fluctuations_of_incumbent_incense.png deleted file mode 100644 index 906f74cb21..0000000000 Binary files a/artworks/midjourney/cf3c0200-a471-4497-9758-dc13516100e1_massive_degeneration_of_the_human_soul_leads_to_fluctuations_of_incumbent_incense.png and /dev/null differ diff --git a/artworks/midjourney/cf51a63e-8747-4bc4-b7fb-44c4486e3b6c_Jonas_httpss.mj.runUxvYeS__Russians_They_Live.png b/artworks/midjourney/cf51a63e-8747-4bc4-b7fb-44c4486e3b6c_Jonas_httpss.mj.runUxvYeS__Russians_They_Live.png deleted file mode 100644 index ccd309432b..0000000000 Binary files a/artworks/midjourney/cf51a63e-8747-4bc4-b7fb-44c4486e3b6c_Jonas_httpss.mj.runUxvYeS__Russians_They_Live.png and /dev/null differ diff --git a/artworks/midjourney/cf5bfaef-a37c-4dd5-8315-72697c6b9650_lobject_dadmiration__--w_320_--h_448.png b/artworks/midjourney/cf5bfaef-a37c-4dd5-8315-72697c6b9650_lobject_dadmiration__--w_320_--h_448.png deleted file mode 100644 index f39b20bf0f..0000000000 Binary files a/artworks/midjourney/cf5bfaef-a37c-4dd5-8315-72697c6b9650_lobject_dadmiration__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/cf81afd8-c40f-4513-b001-8e73934825cc_godly_otherworld_artstation_painting_detailed.png b/artworks/midjourney/cf81afd8-c40f-4513-b001-8e73934825cc_godly_otherworld_artstation_painting_detailed.png deleted file mode 100644 index 7e39a36326..0000000000 Binary files a/artworks/midjourney/cf81afd8-c40f-4513-b001-8e73934825cc_godly_otherworld_artstation_painting_detailed.png and /dev/null differ diff --git a/artworks/midjourney/cfe12363-bb3b-4c1d-ac53-6fe442fa5a7c_I_want_to_believe.png b/artworks/midjourney/cfe12363-bb3b-4c1d-ac53-6fe442fa5a7c_I_want_to_believe.png deleted file mode 100644 index d29f34aac4..0000000000 Binary files a/artworks/midjourney/cfe12363-bb3b-4c1d-ac53-6fe442fa5a7c_I_want_to_believe.png and /dev/null differ diff --git a/artworks/midjourney/d0098627-4f24-4083-a47e-fd303fa160e3_entropy_of_the_soul.png b/artworks/midjourney/d0098627-4f24-4083-a47e-fd303fa160e3_entropy_of_the_soul.png deleted file mode 100644 index 92d245b172..0000000000 Binary files a/artworks/midjourney/d0098627-4f24-4083-a47e-fd303fa160e3_entropy_of_the_soul.png and /dev/null differ diff --git a/artworks/midjourney/d017dbb2-189d-4bee-a87c-60fc837a2068_Nymphomaniac__--w_320_--h_448.png b/artworks/midjourney/d017dbb2-189d-4bee-a87c-60fc837a2068_Nymphomaniac__--w_320_--h_448.png deleted file mode 100644 index fe19692350..0000000000 Binary files a/artworks/midjourney/d017dbb2-189d-4bee-a87c-60fc837a2068_Nymphomaniac__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/d0af9525-621e-4714-9944-5789406fa170_the_arc_of_the_covenant_--w_412_--newclip.png b/artworks/midjourney/d0af9525-621e-4714-9944-5789406fa170_the_arc_of_the_covenant_--w_412_--newclip.png deleted file mode 100644 index a35d96f7c1..0000000000 Binary files a/artworks/midjourney/d0af9525-621e-4714-9944-5789406fa170_the_arc_of_the_covenant_--w_412_--newclip.png and /dev/null differ diff --git a/artworks/midjourney/d0deb63b-5898-4f0b-8db9-7e4ff9293b99_microplastic_seasoning.png b/artworks/midjourney/d0deb63b-5898-4f0b-8db9-7e4ff9293b99_microplastic_seasoning.png deleted file mode 100644 index 8d0012f716..0000000000 Binary files a/artworks/midjourney/d0deb63b-5898-4f0b-8db9-7e4ff9293b99_microplastic_seasoning.png and /dev/null differ diff --git a/artworks/midjourney/d0f9d1d4-25c2-49f2-aa9a-43653eb493c6_mirror_memorial.png b/artworks/midjourney/d0f9d1d4-25c2-49f2-aa9a-43653eb493c6_mirror_memorial.png deleted file mode 100644 index 7d1f621280..0000000000 Binary files a/artworks/midjourney/d0f9d1d4-25c2-49f2-aa9a-43653eb493c6_mirror_memorial.png and /dev/null differ diff --git a/artworks/midjourney/d12e9ab8-1fe2-40f8-b603-0fad74210565_Jonas_shark_attack_scary_JAWS.png b/artworks/midjourney/d12e9ab8-1fe2-40f8-b603-0fad74210565_Jonas_shark_attack_scary_JAWS.png deleted file mode 100644 index 3532846f8f..0000000000 Binary files a/artworks/midjourney/d12e9ab8-1fe2-40f8-b603-0fad74210565_Jonas_shark_attack_scary_JAWS.png and /dev/null differ diff --git a/artworks/midjourney/d1328632-771b-40e0-8055-4d584db06317_Jonas_an_avocado_with_a_simple_coloured_background.png b/artworks/midjourney/d1328632-771b-40e0-8055-4d584db06317_Jonas_an_avocado_with_a_simple_coloured_background.png deleted file mode 100644 index a29fd752f1..0000000000 Binary files a/artworks/midjourney/d1328632-771b-40e0-8055-4d584db06317_Jonas_an_avocado_with_a_simple_coloured_background.png and /dev/null differ diff --git a/artworks/midjourney/d184c288-c256-448d-8f5b-a6deb2c315ad_great_wave_t-shirt.png b/artworks/midjourney/d184c288-c256-448d-8f5b-a6deb2c315ad_great_wave_t-shirt.png deleted file mode 100644 index 6d88267a7a..0000000000 Binary files a/artworks/midjourney/d184c288-c256-448d-8f5b-a6deb2c315ad_great_wave_t-shirt.png and /dev/null differ diff --git a/artworks/midjourney/d1ce0c7c-66a7-4769-a5cb-dea200eb99ea_Jonas_majestic_pyramid_in_Egypt_crystallite_sand_wind.png b/artworks/midjourney/d1ce0c7c-66a7-4769-a5cb-dea200eb99ea_Jonas_majestic_pyramid_in_Egypt_crystallite_sand_wind.png deleted file mode 100644 index d50a88d3ca..0000000000 Binary files a/artworks/midjourney/d1ce0c7c-66a7-4769-a5cb-dea200eb99ea_Jonas_majestic_pyramid_in_Egypt_crystallite_sand_wind.png and /dev/null differ diff --git a/artworks/midjourney/d1e9640d-abbe-4580-b9fc-65c49e52ed01_Jonas_fractures_of_mind.png b/artworks/midjourney/d1e9640d-abbe-4580-b9fc-65c49e52ed01_Jonas_fractures_of_mind.png deleted file mode 100644 index 0060e1cfdc..0000000000 Binary files a/artworks/midjourney/d1e9640d-abbe-4580-b9fc-65c49e52ed01_Jonas_fractures_of_mind.png and /dev/null differ diff --git a/artworks/midjourney/d29af4e3-ba68-415e-8d11-9501de155cdb_O.png b/artworks/midjourney/d29af4e3-ba68-415e-8d11-9501de155cdb_O.png deleted file mode 100644 index 19c025ad27..0000000000 Binary files a/artworks/midjourney/d29af4e3-ba68-415e-8d11-9501de155cdb_O.png and /dev/null differ diff --git a/artworks/midjourney/d2fb2de8-b108-4f5f-a1ff-6a41f9900eac_Jonas_the_ruthless_edit_by_Rick_Rubin.png b/artworks/midjourney/d2fb2de8-b108-4f5f-a1ff-6a41f9900eac_Jonas_the_ruthless_edit_by_Rick_Rubin.png deleted file mode 100644 index 848be66d28..0000000000 Binary files a/artworks/midjourney/d2fb2de8-b108-4f5f-a1ff-6a41f9900eac_Jonas_the_ruthless_edit_by_Rick_Rubin.png and /dev/null differ diff --git a/artworks/midjourney/d35d7c61-dbd1-461f-b3c3-4afd090f758c_Jonas_bro_THIS_IS_STEAK_SAUCE.png b/artworks/midjourney/d35d7c61-dbd1-461f-b3c3-4afd090f758c_Jonas_bro_THIS_IS_STEAK_SAUCE.png deleted file mode 100644 index 8990ad0624..0000000000 Binary files a/artworks/midjourney/d35d7c61-dbd1-461f-b3c3-4afd090f758c_Jonas_bro_THIS_IS_STEAK_SAUCE.png and /dev/null differ diff --git a/artworks/midjourney/d37c8ed1-19b7-48a6-9fb2-e6f11c8221a9_Jonas_the_end_is_nigh_brace_yourself.png b/artworks/midjourney/d37c8ed1-19b7-48a6-9fb2-e6f11c8221a9_Jonas_the_end_is_nigh_brace_yourself.png deleted file mode 100644 index a7adc58891..0000000000 Binary files a/artworks/midjourney/d37c8ed1-19b7-48a6-9fb2-e6f11c8221a9_Jonas_the_end_is_nigh_brace_yourself.png and /dev/null differ diff --git a/artworks/midjourney/d3c71b72-395c-47e8-87ec-af99ea0242c1_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k__--w_768_.png b/artworks/midjourney/d3c71b72-395c-47e8-87ec-af99ea0242c1_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k__--w_768_.png deleted file mode 100644 index 98739eed3e..0000000000 Binary files a/artworks/midjourney/d3c71b72-395c-47e8-87ec-af99ea0242c1_Jonas_I_dont_believe_in_an_interventionist_god_post-processing_highly_detailed_matte_painting_4k__--w_768_.png and /dev/null differ diff --git a/artworks/midjourney/d4284a7d-2182-4613-8dbb-64974f3a0918_Jonas_apocalypse_now_colonel_kurtz__--w_320_--h_448.png b/artworks/midjourney/d4284a7d-2182-4613-8dbb-64974f3a0918_Jonas_apocalypse_now_colonel_kurtz__--w_320_--h_448.png deleted file mode 100644 index 1937ff9df2..0000000000 Binary files a/artworks/midjourney/d4284a7d-2182-4613-8dbb-64974f3a0918_Jonas_apocalypse_now_colonel_kurtz__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/d4328c0b-0c8e-489e-8d1e-a78694409ca9_Jonas_advanced_wizardry_of_the_fearful_apprentice_wizard__--w_448_--h_320.png b/artworks/midjourney/d4328c0b-0c8e-489e-8d1e-a78694409ca9_Jonas_advanced_wizardry_of_the_fearful_apprentice_wizard__--w_448_--h_320.png deleted file mode 100644 index f76cc896ff..0000000000 Binary files a/artworks/midjourney/d4328c0b-0c8e-489e-8d1e-a78694409ca9_Jonas_advanced_wizardry_of_the_fearful_apprentice_wizard__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/d476111b-a9a3-4f2b-91ab-8e920ae4748d_there_is_no_hope_etching_detailed.png b/artworks/midjourney/d476111b-a9a3-4f2b-91ab-8e920ae4748d_there_is_no_hope_etching_detailed.png deleted file mode 100644 index 787698e99a..0000000000 Binary files a/artworks/midjourney/d476111b-a9a3-4f2b-91ab-8e920ae4748d_there_is_no_hope_etching_detailed.png and /dev/null differ diff --git a/artworks/midjourney/d4d1af5e-28f1-46ad-8776-7c03ddaf3dea_powerlaw_text-0.5.png b/artworks/midjourney/d4d1af5e-28f1-46ad-8776-7c03ddaf3dea_powerlaw_text-0.5.png deleted file mode 100644 index 8dec89ffba..0000000000 Binary files a/artworks/midjourney/d4d1af5e-28f1-46ad-8776-7c03ddaf3dea_powerlaw_text-0.5.png and /dev/null differ diff --git a/artworks/midjourney/d515bd49-6b1d-4b7d-9a2b-7517e9d65de4_the_foundations_of_origin_matte_painting_genesis_trending_on_artstation_high_resolution.png b/artworks/midjourney/d515bd49-6b1d-4b7d-9a2b-7517e9d65de4_the_foundations_of_origin_matte_painting_genesis_trending_on_artstation_high_resolution.png deleted file mode 100644 index 16097d524e..0000000000 Binary files a/artworks/midjourney/d515bd49-6b1d-4b7d-9a2b-7517e9d65de4_the_foundations_of_origin_matte_painting_genesis_trending_on_artstation_high_resolution.png and /dev/null differ diff --git a/artworks/midjourney/d5abdbe4-c15d-4226-9868-4764aa647cf3_Jonas_razed_city__--w_768_--h_512_--hd.png b/artworks/midjourney/d5abdbe4-c15d-4226-9868-4764aa647cf3_Jonas_razed_city__--w_768_--h_512_--hd.png deleted file mode 100644 index b1703335a7..0000000000 Binary files a/artworks/midjourney/d5abdbe4-c15d-4226-9868-4764aa647cf3_Jonas_razed_city__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/d5d53171-fdf2-44b7-8d49-d8b548f2e55a_the_Worlds_end._by_james_gurney_matte_painting_CGSociety_fantasy_full_of_colors_wow_ultra_photorealistic_wow_postprocessing.png b/artworks/midjourney/d5d53171-fdf2-44b7-8d49-d8b548f2e55a_the_Worlds_end._by_james_gurney_matte_painting_CGSociety_fantasy_full_of_colors_wow_ultra_photorealistic_wow_postprocessing.png deleted file mode 100644 index 32885091dc..0000000000 Binary files a/artworks/midjourney/d5d53171-fdf2-44b7-8d49-d8b548f2e55a_the_Worlds_end._by_james_gurney_matte_painting_CGSociety_fantasy_full_of_colors_wow_ultra_photorealistic_wow_postprocessing.png and /dev/null differ diff --git a/artworks/midjourney/d6094a82-d40d-437b-972d-4a38d8dc218d_Jonas_Twitter_Tesla_Logo_Design.png b/artworks/midjourney/d6094a82-d40d-437b-972d-4a38d8dc218d_Jonas_Twitter_Tesla_Logo_Design.png deleted file mode 100644 index e8f2129b6b..0000000000 Binary files a/artworks/midjourney/d6094a82-d40d-437b-972d-4a38d8dc218d_Jonas_Twitter_Tesla_Logo_Design.png and /dev/null differ diff --git a/artworks/midjourney/d667dbb4-c354-4985-9a1b-09a91f31edbe_the_Illuminati.png b/artworks/midjourney/d667dbb4-c354-4985-9a1b-09a91f31edbe_the_Illuminati.png deleted file mode 100644 index cf788b78b2..0000000000 Binary files a/artworks/midjourney/d667dbb4-c354-4985-9a1b-09a91f31edbe_the_Illuminati.png and /dev/null differ diff --git a/artworks/midjourney/d6c1a288-5c23-4fb1-baea-ce7755726a3b_httpss.mj.runsDGcQ5___entropy.png b/artworks/midjourney/d6c1a288-5c23-4fb1-baea-ce7755726a3b_httpss.mj.runsDGcQ5___entropy.png deleted file mode 100644 index e391cfc63b..0000000000 Binary files a/artworks/midjourney/d6c1a288-5c23-4fb1-baea-ce7755726a3b_httpss.mj.runsDGcQ5___entropy.png and /dev/null differ diff --git a/artworks/midjourney/d6e5aba3-bf41-45a4-b7f7-486b0c12f609_httpss.mj.runbEcDZ4__Mentat_from_Dune_portrait.png b/artworks/midjourney/d6e5aba3-bf41-45a4-b7f7-486b0c12f609_httpss.mj.runbEcDZ4__Mentat_from_Dune_portrait.png deleted file mode 100644 index 1185e66d2f..0000000000 Binary files a/artworks/midjourney/d6e5aba3-bf41-45a4-b7f7-486b0c12f609_httpss.mj.runbEcDZ4__Mentat_from_Dune_portrait.png and /dev/null differ diff --git a/artworks/midjourney/d6ea062b-5894-4d1a-b2a4-f283c9f1dc6a_skull_waring_rayban.png b/artworks/midjourney/d6ea062b-5894-4d1a-b2a4-f283c9f1dc6a_skull_waring_rayban.png deleted file mode 100644 index a5e0234698..0000000000 Binary files a/artworks/midjourney/d6ea062b-5894-4d1a-b2a4-f283c9f1dc6a_skull_waring_rayban.png and /dev/null differ diff --git a/artworks/midjourney/d7152c5d-2c69-4b7c-bec5-5457fe33aff4_yakuza_t-shirt.png b/artworks/midjourney/d7152c5d-2c69-4b7c-bec5-5457fe33aff4_yakuza_t-shirt.png deleted file mode 100644 index 572be19803..0000000000 Binary files a/artworks/midjourney/d7152c5d-2c69-4b7c-bec5-5457fe33aff4_yakuza_t-shirt.png and /dev/null differ diff --git a/artworks/midjourney/d72608a6-56d1-4015-976c-81f2c3b4a268_tidal_wave_matte_painting_rendered_in_octance_ghibli_8k_epic_wow_trending_on_wikiart_--w_768_--h_512_--hd.png b/artworks/midjourney/d72608a6-56d1-4015-976c-81f2c3b4a268_tidal_wave_matte_painting_rendered_in_octance_ghibli_8k_epic_wow_trending_on_wikiart_--w_768_--h_512_--hd.png deleted file mode 100644 index bf44b7dd3c..0000000000 Binary files a/artworks/midjourney/d72608a6-56d1-4015-976c-81f2c3b4a268_tidal_wave_matte_painting_rendered_in_octance_ghibli_8k_epic_wow_trending_on_wikiart_--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/d8666fa9-e886-4e84-ad88-19803bb5c8f5_harbinger_of_sorrow_--no_happy.png b/artworks/midjourney/d8666fa9-e886-4e84-ad88-19803bb5c8f5_harbinger_of_sorrow_--no_happy.png deleted file mode 100644 index ee52a81bef..0000000000 Binary files a/artworks/midjourney/d8666fa9-e886-4e84-ad88-19803bb5c8f5_harbinger_of_sorrow_--no_happy.png and /dev/null differ diff --git a/artworks/midjourney/d8af3449-8669-45de-8bac-93fd620b23e1_science_art.png b/artworks/midjourney/d8af3449-8669-45de-8bac-93fd620b23e1_science_art.png deleted file mode 100644 index 5e27c61c95..0000000000 Binary files a/artworks/midjourney/d8af3449-8669-45de-8bac-93fd620b23e1_science_art.png and /dev/null differ diff --git a/artworks/midjourney/d8d1df18-07d6-4f45-b985-711027b7d844_Jonas_predator_hunter_of_skulls__portrait_detailed_Unreal--mp.png b/artworks/midjourney/d8d1df18-07d6-4f45-b985-711027b7d844_Jonas_predator_hunter_of_skulls__portrait_detailed_Unreal--mp.png deleted file mode 100644 index a4c1bc9fd6..0000000000 Binary files a/artworks/midjourney/d8d1df18-07d6-4f45-b985-711027b7d844_Jonas_predator_hunter_of_skulls__portrait_detailed_Unreal--mp.png and /dev/null differ diff --git a/artworks/midjourney/d9066e48-cce5-4e54-b42a-bcc9bbd4a191_cyril_DD_bestiary_httpst.lyup1v.png b/artworks/midjourney/d9066e48-cce5-4e54-b42a-bcc9bbd4a191_cyril_DD_bestiary_httpst.lyup1v.png deleted file mode 100644 index 2a22bba2bc..0000000000 Binary files a/artworks/midjourney/d9066e48-cce5-4e54-b42a-bcc9bbd4a191_cyril_DD_bestiary_httpst.lyup1v.png and /dev/null differ diff --git a/artworks/midjourney/d9210833-c3cb-48ec-9dac-eccb68d497b0_ancient_goddess._plumage.png b/artworks/midjourney/d9210833-c3cb-48ec-9dac-eccb68d497b0_ancient_goddess._plumage.png deleted file mode 100644 index 7bb25ac0d6..0000000000 Binary files a/artworks/midjourney/d9210833-c3cb-48ec-9dac-eccb68d497b0_ancient_goddess._plumage.png and /dev/null differ diff --git a/artworks/midjourney/d99d92ca-db31-46d6-a4d0-bdb1ce9a71a9_Jonas_predator_hunter_of_skulls__portrait_detailed_Unreal--mp.png b/artworks/midjourney/d99d92ca-db31-46d6-a4d0-bdb1ce9a71a9_Jonas_predator_hunter_of_skulls__portrait_detailed_Unreal--mp.png deleted file mode 100644 index 35a464b488..0000000000 Binary files a/artworks/midjourney/d99d92ca-db31-46d6-a4d0-bdb1ce9a71a9_Jonas_predator_hunter_of_skulls__portrait_detailed_Unreal--mp.png and /dev/null differ diff --git a/artworks/midjourney/d9a8c95a-ec93-40d1-baaf-fe2a076e1e3a_the_scream_80s_polaroid_--hq.png b/artworks/midjourney/d9a8c95a-ec93-40d1-baaf-fe2a076e1e3a_the_scream_80s_polaroid_--hq.png deleted file mode 100644 index 3be224262f..0000000000 Binary files a/artworks/midjourney/d9a8c95a-ec93-40d1-baaf-fe2a076e1e3a_the_scream_80s_polaroid_--hq.png and /dev/null differ diff --git a/artworks/midjourney/d9bd7b42-a09c-47d3-92e5-e7086f4df4f7_Jonas_overture_httpss.mj.runt0akby.png b/artworks/midjourney/d9bd7b42-a09c-47d3-92e5-e7086f4df4f7_Jonas_overture_httpss.mj.runt0akby.png deleted file mode 100644 index 365947ea5a..0000000000 Binary files a/artworks/midjourney/d9bd7b42-a09c-47d3-92e5-e7086f4df4f7_Jonas_overture_httpss.mj.runt0akby.png and /dev/null differ diff --git a/artworks/midjourney/d9c6c8a1-a0ee-4270-83dc-939bc5dc40a1_Jonas_httpss.mj.runxqgPrT__epophantic_mind.png b/artworks/midjourney/d9c6c8a1-a0ee-4270-83dc-939bc5dc40a1_Jonas_httpss.mj.runxqgPrT__epophantic_mind.png deleted file mode 100644 index 41a3209fd2..0000000000 Binary files a/artworks/midjourney/d9c6c8a1-a0ee-4270-83dc-939bc5dc40a1_Jonas_httpss.mj.runxqgPrT__epophantic_mind.png and /dev/null differ diff --git a/artworks/midjourney/d9e2cec0-f621-4581-853e-f23fae7b9763_ugly_--no_beautiful_--no_text_--w_320_--h_448.png b/artworks/midjourney/d9e2cec0-f621-4581-853e-f23fae7b9763_ugly_--no_beautiful_--no_text_--w_320_--h_448.png deleted file mode 100644 index 501e0a07f1..0000000000 Binary files a/artworks/midjourney/d9e2cec0-f621-4581-853e-f23fae7b9763_ugly_--no_beautiful_--no_text_--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/da0834ea-c9d3-41fe-9303-88b12bfe88b6_intergalactic_califragilic_gumpf.png b/artworks/midjourney/da0834ea-c9d3-41fe-9303-88b12bfe88b6_intergalactic_califragilic_gumpf.png deleted file mode 100644 index 3b57676870..0000000000 Binary files a/artworks/midjourney/da0834ea-c9d3-41fe-9303-88b12bfe88b6_intergalactic_califragilic_gumpf.png and /dev/null differ diff --git a/artworks/midjourney/da596fcf-68a1-4562-8187-f23b87323ce1_Jonas_second_coming_rapture_of_souls.png b/artworks/midjourney/da596fcf-68a1-4562-8187-f23b87323ce1_Jonas_second_coming_rapture_of_souls.png deleted file mode 100644 index d4f2c4a6e2..0000000000 Binary files a/artworks/midjourney/da596fcf-68a1-4562-8187-f23b87323ce1_Jonas_second_coming_rapture_of_souls.png and /dev/null differ diff --git a/artworks/midjourney/da74f815-45f0-4bc0-86bc-3b912b5d322e_nuclear_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png b/artworks/midjourney/da74f815-45f0-4bc0-86bc-3b912b5d322e_nuclear_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png deleted file mode 100644 index d08af8915f..0000000000 Binary files a/artworks/midjourney/da74f815-45f0-4bc0-86bc-3b912b5d322e_nuclear_angel_matte_painting_by_Hiroshi_Yoshida__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/dbf57574-603d-410a-bb87-93e957dd4ac2_escher_monument_--w_448_--h_320.png b/artworks/midjourney/dbf57574-603d-410a-bb87-93e957dd4ac2_escher_monument_--w_448_--h_320.png deleted file mode 100644 index c52182a9dc..0000000000 Binary files a/artworks/midjourney/dbf57574-603d-410a-bb87-93e957dd4ac2_escher_monument_--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/dc041321-e20d-4fca-98ab-926450149f2d_colorama_.png b/artworks/midjourney/dc041321-e20d-4fca-98ab-926450149f2d_colorama_.png deleted file mode 100644 index 33bf647a26..0000000000 Binary files a/artworks/midjourney/dc041321-e20d-4fca-98ab-926450149f2d_colorama_.png and /dev/null differ diff --git a/artworks/midjourney/dca389a5-89df-415c-a021-a207bea2d550_Jonas_fractured_portrait.png b/artworks/midjourney/dca389a5-89df-415c-a021-a207bea2d550_Jonas_fractured_portrait.png deleted file mode 100644 index a195604880..0000000000 Binary files a/artworks/midjourney/dca389a5-89df-415c-a021-a207bea2d550_Jonas_fractured_portrait.png and /dev/null differ diff --git a/artworks/midjourney/dd18e31d-59bb-4e83-ad6e-f04f9d06e531_art_on_wall__--w_448_--h_320.png b/artworks/midjourney/dd18e31d-59bb-4e83-ad6e-f04f9d06e531_art_on_wall__--w_448_--h_320.png deleted file mode 100644 index 03e981994d..0000000000 Binary files a/artworks/midjourney/dd18e31d-59bb-4e83-ad6e-f04f9d06e531_art_on_wall__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/dd45568e-46e0-48ce-845d-f87f557b2c70_perkele.png b/artworks/midjourney/dd45568e-46e0-48ce-845d-f87f557b2c70_perkele.png deleted file mode 100644 index f98f4ea72d..0000000000 Binary files a/artworks/midjourney/dd45568e-46e0-48ce-845d-f87f557b2c70_perkele.png and /dev/null differ diff --git a/artworks/midjourney/de0f2882-4ea1-42db-a561-b9c6b329ee37_on_the_arts_in_science.png b/artworks/midjourney/de0f2882-4ea1-42db-a561-b9c6b329ee37_on_the_arts_in_science.png deleted file mode 100644 index b31b6bfdbc..0000000000 Binary files a/artworks/midjourney/de0f2882-4ea1-42db-a561-b9c6b329ee37_on_the_arts_in_science.png and /dev/null differ diff --git a/artworks/midjourney/df13b91f-0293-4ccd-8a19-91332f3f2369_Jonas_wicked_mind.png b/artworks/midjourney/df13b91f-0293-4ccd-8a19-91332f3f2369_Jonas_wicked_mind.png deleted file mode 100644 index fa988346ad..0000000000 Binary files a/artworks/midjourney/df13b91f-0293-4ccd-8a19-91332f3f2369_Jonas_wicked_mind.png and /dev/null differ diff --git a/artworks/midjourney/df43969d-f666-40e5-94d7-068fd257f6e0_medusa_DD_tarot_card__--w_320_--h_448.png b/artworks/midjourney/df43969d-f666-40e5-94d7-068fd257f6e0_medusa_DD_tarot_card__--w_320_--h_448.png deleted file mode 100644 index 689e682ea9..0000000000 Binary files a/artworks/midjourney/df43969d-f666-40e5-94d7-068fd257f6e0_medusa_DD_tarot_card__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/df4e185c-a500-4fb4-ab8e-35d8593101b2_Jonas_httpss.mj.run44NQ4A__bathroom_with_square_tiles_escher_painting_line_drawing.png b/artworks/midjourney/df4e185c-a500-4fb4-ab8e-35d8593101b2_Jonas_httpss.mj.run44NQ4A__bathroom_with_square_tiles_escher_painting_line_drawing.png deleted file mode 100644 index f02141097c..0000000000 Binary files a/artworks/midjourney/df4e185c-a500-4fb4-ab8e-35d8593101b2_Jonas_httpss.mj.run44NQ4A__bathroom_with_square_tiles_escher_painting_line_drawing.png and /dev/null differ diff --git a/artworks/midjourney/df64eb30-a1a6-4f46-90a4-36571ec73d86_Jonas_Rick_Rubin_Boris_Boglodite_httpss.mj.runHhSP1G_--w_360_--h_450.png b/artworks/midjourney/df64eb30-a1a6-4f46-90a4-36571ec73d86_Jonas_Rick_Rubin_Boris_Boglodite_httpss.mj.runHhSP1G_--w_360_--h_450.png deleted file mode 100644 index fa832990c0..0000000000 Binary files a/artworks/midjourney/df64eb30-a1a6-4f46-90a4-36571ec73d86_Jonas_Rick_Rubin_Boris_Boglodite_httpss.mj.runHhSP1G_--w_360_--h_450.png and /dev/null differ diff --git a/artworks/midjourney/df995226-3b5f-40f5-a550-baf1a36d4325_the_fabled_creator_rests_on_the_seventh_day_of_creation_--w_412.png b/artworks/midjourney/df995226-3b5f-40f5-a550-baf1a36d4325_the_fabled_creator_rests_on_the_seventh_day_of_creation_--w_412.png deleted file mode 100644 index 711f8246ed..0000000000 Binary files a/artworks/midjourney/df995226-3b5f-40f5-a550-baf1a36d4325_the_fabled_creator_rests_on_the_seventh_day_of_creation_--w_412.png and /dev/null differ diff --git a/artworks/midjourney/e0192fc6-cffb-4c54-8003-ede9f659eb2a_mr_pink.png b/artworks/midjourney/e0192fc6-cffb-4c54-8003-ede9f659eb2a_mr_pink.png deleted file mode 100644 index 8df62adc3a..0000000000 Binary files a/artworks/midjourney/e0192fc6-cffb-4c54-8003-ede9f659eb2a_mr_pink.png and /dev/null differ diff --git a/artworks/midjourney/e085d4d6-2de2-45e9-ae7c-c1603a277747_A_warm_welcome_to_all_new_earthlings.png b/artworks/midjourney/e085d4d6-2de2-45e9-ae7c-c1603a277747_A_warm_welcome_to_all_new_earthlings.png deleted file mode 100644 index 57130a5208..0000000000 Binary files a/artworks/midjourney/e085d4d6-2de2-45e9-ae7c-c1603a277747_A_warm_welcome_to_all_new_earthlings.png and /dev/null differ diff --git a/artworks/midjourney/e0a1463a-ef17-4631-aeb6-af9a97525b23_entropy_of_the_unknown.png b/artworks/midjourney/e0a1463a-ef17-4631-aeb6-af9a97525b23_entropy_of_the_unknown.png deleted file mode 100644 index 47f0af86d8..0000000000 Binary files a/artworks/midjourney/e0a1463a-ef17-4631-aeb6-af9a97525b23_entropy_of_the_unknown.png and /dev/null differ diff --git a/artworks/midjourney/e151175f-dfed-42e7-94b4-3e6968949198_Jonas_httpss.mj.runqMpaYq__Donnie_Darko_bunny__--w_320_--h_448.png b/artworks/midjourney/e151175f-dfed-42e7-94b4-3e6968949198_Jonas_httpss.mj.runqMpaYq__Donnie_Darko_bunny__--w_320_--h_448.png deleted file mode 100644 index a7a1c170f2..0000000000 Binary files a/artworks/midjourney/e151175f-dfed-42e7-94b4-3e6968949198_Jonas_httpss.mj.runqMpaYq__Donnie_Darko_bunny__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/e1cd49e0-f4dc-413d-922a-0a05414c118f_skull_wearing_rayban_glasses.png b/artworks/midjourney/e1cd49e0-f4dc-413d-922a-0a05414c118f_skull_wearing_rayban_glasses.png deleted file mode 100644 index fcf551c332..0000000000 Binary files a/artworks/midjourney/e1cd49e0-f4dc-413d-922a-0a05414c118f_skull_wearing_rayban_glasses.png and /dev/null differ diff --git a/artworks/midjourney/e2a8c62d-507b-42a5-a4ba-e8b41b2e9c68_beavis_bunghead_DD_beastiary__--w_320_--h_448.png b/artworks/midjourney/e2a8c62d-507b-42a5-a4ba-e8b41b2e9c68_beavis_bunghead_DD_beastiary__--w_320_--h_448.png deleted file mode 100644 index 7128664713..0000000000 Binary files a/artworks/midjourney/e2a8c62d-507b-42a5-a4ba-e8b41b2e9c68_beavis_bunghead_DD_beastiary__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/e2cad033-5d7c-4b42-bc6d-7159b159e4da_wall_painting_made_out_of_cocaine__--w_448_--h_320.png b/artworks/midjourney/e2cad033-5d7c-4b42-bc6d-7159b159e4da_wall_painting_made_out_of_cocaine__--w_448_--h_320.png deleted file mode 100644 index a80ecec310..0000000000 Binary files a/artworks/midjourney/e2cad033-5d7c-4b42-bc6d-7159b159e4da_wall_painting_made_out_of_cocaine__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/e3010841-481e-4728-89dc-d5d2a7f73214_Jonas_advanced_wizardry_of_the_fearful_apprentice_wizard__--w_448_--h_320.png b/artworks/midjourney/e3010841-481e-4728-89dc-d5d2a7f73214_Jonas_advanced_wizardry_of_the_fearful_apprentice_wizard__--w_448_--h_320.png deleted file mode 100644 index 18efdd1f3d..0000000000 Binary files a/artworks/midjourney/e3010841-481e-4728-89dc-d5d2a7f73214_Jonas_advanced_wizardry_of_the_fearful_apprentice_wizard__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/e32a1154-8f31-46b6-ab65-18caea429b25_photographic_evidence_that_god_exists.png b/artworks/midjourney/e32a1154-8f31-46b6-ab65-18caea429b25_photographic_evidence_that_god_exists.png deleted file mode 100644 index 7b86fc6d4e..0000000000 Binary files a/artworks/midjourney/e32a1154-8f31-46b6-ab65-18caea429b25_photographic_evidence_that_god_exists.png and /dev/null differ diff --git a/artworks/midjourney/e34c4a21-1ca3-4bda-a4fb-65222724f68e_httpss.mj.runauSbNH__canibal_squirrel.png b/artworks/midjourney/e34c4a21-1ca3-4bda-a4fb-65222724f68e_httpss.mj.runauSbNH__canibal_squirrel.png deleted file mode 100644 index 4091bdc8b5..0000000000 Binary files a/artworks/midjourney/e34c4a21-1ca3-4bda-a4fb-65222724f68e_httpss.mj.runauSbNH__canibal_squirrel.png and /dev/null differ diff --git a/artworks/midjourney/e380fa1d-93fa-4d40-a6a8-e67590c12ea9_monument_obelisk_supernova__--w_320_--h_448.png b/artworks/midjourney/e380fa1d-93fa-4d40-a6a8-e67590c12ea9_monument_obelisk_supernova__--w_320_--h_448.png deleted file mode 100644 index d6ccb44737..0000000000 Binary files a/artworks/midjourney/e380fa1d-93fa-4d40-a6a8-e67590c12ea9_monument_obelisk_supernova__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/e452ad14-eba9-45a4-9d52-cfc60e01a410_Jonas_epophantic_mind.png b/artworks/midjourney/e452ad14-eba9-45a4-9d52-cfc60e01a410_Jonas_epophantic_mind.png deleted file mode 100644 index a2fc889699..0000000000 Binary files a/artworks/midjourney/e452ad14-eba9-45a4-9d52-cfc60e01a410_Jonas_epophantic_mind.png and /dev/null differ diff --git a/artworks/midjourney/e46c159e-dac5-4ba8-966f-d68ff896f67c_Jonas_httpss.mj.runxqgPrT__epophantic_mind.png b/artworks/midjourney/e46c159e-dac5-4ba8-966f-d68ff896f67c_Jonas_httpss.mj.runxqgPrT__epophantic_mind.png deleted file mode 100644 index 533e5b5576..0000000000 Binary files a/artworks/midjourney/e46c159e-dac5-4ba8-966f-d68ff896f67c_Jonas_httpss.mj.runxqgPrT__epophantic_mind.png and /dev/null differ diff --git a/artworks/midjourney/e4a48e41-18af-48f6-8f3f-216ff731debd_blumento_pferde__--w_768_--h_512_--hd.png b/artworks/midjourney/e4a48e41-18af-48f6-8f3f-216ff731debd_blumento_pferde__--w_768_--h_512_--hd.png deleted file mode 100644 index 1dd5efb689..0000000000 Binary files a/artworks/midjourney/e4a48e41-18af-48f6-8f3f-216ff731debd_blumento_pferde__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/e4f16d77-b9e0-40dc-9ec7-f07d2140ce08_genesis_of_the_mind.png b/artworks/midjourney/e4f16d77-b9e0-40dc-9ec7-f07d2140ce08_genesis_of_the_mind.png deleted file mode 100644 index 1e6aac07c8..0000000000 Binary files a/artworks/midjourney/e4f16d77-b9e0-40dc-9ec7-f07d2140ce08_genesis_of_the_mind.png and /dev/null differ diff --git a/artworks/midjourney/e4f944e7-edb5-4d96-aa01-2c318b273eb7_Jonas_a_city_razed__--w_768_--h_512_--hd.png b/artworks/midjourney/e4f944e7-edb5-4d96-aa01-2c318b273eb7_Jonas_a_city_razed__--w_768_--h_512_--hd.png deleted file mode 100644 index 13c9bab238..0000000000 Binary files a/artworks/midjourney/e4f944e7-edb5-4d96-aa01-2c318b273eb7_Jonas_a_city_razed__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/e57a402e-b50b-48f3-b755-ff96c028877f_Jonas_an_Australian_Cattle_Dog.png b/artworks/midjourney/e57a402e-b50b-48f3-b755-ff96c028877f_Jonas_an_Australian_Cattle_Dog.png deleted file mode 100644 index e8d2167eec..0000000000 Binary files a/artworks/midjourney/e57a402e-b50b-48f3-b755-ff96c028877f_Jonas_an_Australian_Cattle_Dog.png and /dev/null differ diff --git a/artworks/midjourney/e5ce408b-660d-4176-ae43-df8e4c703320_teddy_bear_holding_sign_that_reads_I_love_nuts_photograph.png b/artworks/midjourney/e5ce408b-660d-4176-ae43-df8e4c703320_teddy_bear_holding_sign_that_reads_I_love_nuts_photograph.png deleted file mode 100644 index d0b0f6dc98..0000000000 Binary files a/artworks/midjourney/e5ce408b-660d-4176-ae43-df8e4c703320_teddy_bear_holding_sign_that_reads_I_love_nuts_photograph.png and /dev/null differ diff --git a/artworks/midjourney/e6c609c0-54a4-420a-b1f5-856c0f65004c_creativogenics.png b/artworks/midjourney/e6c609c0-54a4-420a-b1f5-856c0f65004c_creativogenics.png deleted file mode 100644 index 0bed4ae819..0000000000 Binary files a/artworks/midjourney/e6c609c0-54a4-420a-b1f5-856c0f65004c_creativogenics.png and /dev/null differ diff --git a/artworks/midjourney/e7325ed3-5195-4c6f-957e-cb5cda7ee44d_yoda_with_lipstick (1).png b/artworks/midjourney/e7325ed3-5195-4c6f-957e-cb5cda7ee44d_yoda_with_lipstick (1).png deleted file mode 100644 index 7861b9c17c..0000000000 Binary files a/artworks/midjourney/e7325ed3-5195-4c6f-957e-cb5cda7ee44d_yoda_with_lipstick (1).png and /dev/null differ diff --git a/artworks/midjourney/e73d2d60-345c-41d5-a665-7e4ccb189946_what_if_there_is_no_tomorrow_fighting_on_the_edge_war_is_hell.png b/artworks/midjourney/e73d2d60-345c-41d5-a665-7e4ccb189946_what_if_there_is_no_tomorrow_fighting_on_the_edge_war_is_hell.png deleted file mode 100644 index 98b35c0d81..0000000000 Binary files a/artworks/midjourney/e73d2d60-345c-41d5-a665-7e4ccb189946_what_if_there_is_no_tomorrow_fighting_on_the_edge_war_is_hell.png and /dev/null differ diff --git a/artworks/midjourney/e75cc4b2-a988-48c2-b23e-b9fe68a07426_Jonas_httpss.mj.runkTISKs__my_octopuss_teacher.png b/artworks/midjourney/e75cc4b2-a988-48c2-b23e-b9fe68a07426_Jonas_httpss.mj.runkTISKs__my_octopuss_teacher.png deleted file mode 100644 index c7adf77d53..0000000000 Binary files a/artworks/midjourney/e75cc4b2-a988-48c2-b23e-b9fe68a07426_Jonas_httpss.mj.runkTISKs__my_octopuss_teacher.png and /dev/null differ diff --git a/artworks/midjourney/e7b718ce-1d5f-442d-b68e-0437153c3f12_long_hallway_of_sanctuary_ward_forcibly_melting_into_negligence_and_decay.png b/artworks/midjourney/e7b718ce-1d5f-442d-b68e-0437153c3f12_long_hallway_of_sanctuary_ward_forcibly_melting_into_negligence_and_decay.png deleted file mode 100644 index 7bb7a1b2a0..0000000000 Binary files a/artworks/midjourney/e7b718ce-1d5f-442d-b68e-0437153c3f12_long_hallway_of_sanctuary_ward_forcibly_melting_into_negligence_and_decay.png and /dev/null differ diff --git a/artworks/midjourney/e7c06a12-69ba-4e2f-ad4d-dee49f4fff1c_Jonas_majestic_pyramid_in_Egypt_crystallite_sand_wind.png b/artworks/midjourney/e7c06a12-69ba-4e2f-ad4d-dee49f4fff1c_Jonas_majestic_pyramid_in_Egypt_crystallite_sand_wind.png deleted file mode 100644 index e141082faa..0000000000 Binary files a/artworks/midjourney/e7c06a12-69ba-4e2f-ad4d-dee49f4fff1c_Jonas_majestic_pyramid_in_Egypt_crystallite_sand_wind.png and /dev/null differ diff --git a/artworks/midjourney/e7c8af3c-c814-4c02-a42b-802031c08f45_Jonas_Seraphim_angelarium__--w_320_--h_448.png b/artworks/midjourney/e7c8af3c-c814-4c02-a42b-802031c08f45_Jonas_Seraphim_angelarium__--w_320_--h_448.png deleted file mode 100644 index 2380fd1701..0000000000 Binary files a/artworks/midjourney/e7c8af3c-c814-4c02-a42b-802031c08f45_Jonas_Seraphim_angelarium__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/e85d4d48-3184-49b9-bd01-af3cb8746054_Jonas_I_stumbled_into_you_Accidentally_And_yet_Feels_as_though_you_were_Sent_to_me.png b/artworks/midjourney/e85d4d48-3184-49b9-bd01-af3cb8746054_Jonas_I_stumbled_into_you_Accidentally_And_yet_Feels_as_though_you_were_Sent_to_me.png deleted file mode 100644 index 1fb4363d70..0000000000 Binary files a/artworks/midjourney/e85d4d48-3184-49b9-bd01-af3cb8746054_Jonas_I_stumbled_into_you_Accidentally_And_yet_Feels_as_though_you_were_Sent_to_me.png and /dev/null differ diff --git a/artworks/midjourney/e92cd343-0174-4d9e-921c-290f9e5c49dd_karma.png b/artworks/midjourney/e92cd343-0174-4d9e-921c-290f9e5c49dd_karma.png deleted file mode 100644 index 239bf80562..0000000000 Binary files a/artworks/midjourney/e92cd343-0174-4d9e-921c-290f9e5c49dd_karma.png and /dev/null differ diff --git a/artworks/midjourney/e93240ba-2377-49f0-823b-0b962d9dd7bc_Jonas_miniature_quarantine_station.png b/artworks/midjourney/e93240ba-2377-49f0-823b-0b962d9dd7bc_Jonas_miniature_quarantine_station.png deleted file mode 100644 index 295e0ff4c8..0000000000 Binary files a/artworks/midjourney/e93240ba-2377-49f0-823b-0b962d9dd7bc_Jonas_miniature_quarantine_station.png and /dev/null differ diff --git a/artworks/midjourney/e95c6c48-f60c-4426-8dcb-5719be19e052_money_by_Storm_Thorgerson.png b/artworks/midjourney/e95c6c48-f60c-4426-8dcb-5719be19e052_money_by_Storm_Thorgerson.png deleted file mode 100644 index 6095ac3cc3..0000000000 Binary files a/artworks/midjourney/e95c6c48-f60c-4426-8dcb-5719be19e052_money_by_Storm_Thorgerson.png and /dev/null differ diff --git a/artworks/midjourney/e9896062-8965-48ac-aea9-fbafa35143fa_httpss.mj.runYio8pA__red_yoda.png b/artworks/midjourney/e9896062-8965-48ac-aea9-fbafa35143fa_httpss.mj.runYio8pA__red_yoda.png deleted file mode 100644 index 6c22bf9f0e..0000000000 Binary files a/artworks/midjourney/e9896062-8965-48ac-aea9-fbafa35143fa_httpss.mj.runYio8pA__red_yoda.png and /dev/null differ diff --git a/artworks/midjourney/e9d89516-1ea8-4c3f-86e1-e0fe75bf4e09_london_in_1900_etching_detailed.png b/artworks/midjourney/e9d89516-1ea8-4c3f-86e1-e0fe75bf4e09_london_in_1900_etching_detailed.png deleted file mode 100644 index 054fac2a63..0000000000 Binary files a/artworks/midjourney/e9d89516-1ea8-4c3f-86e1-e0fe75bf4e09_london_in_1900_etching_detailed.png and /dev/null differ diff --git a/artworks/midjourney/e9d98401-de28-4676-aaab-a7f25a9b2a4e_Jonas_black_engineer.png b/artworks/midjourney/e9d98401-de28-4676-aaab-a7f25a9b2a4e_Jonas_black_engineer.png deleted file mode 100644 index fe209bcc89..0000000000 Binary files a/artworks/midjourney/e9d98401-de28-4676-aaab-a7f25a9b2a4e_Jonas_black_engineer.png and /dev/null differ diff --git a/artworks/midjourney/ea04811d-8a36-484c-a5bb-c872efe6be35_fractal_intrusion.png b/artworks/midjourney/ea04811d-8a36-484c-a5bb-c872efe6be35_fractal_intrusion.png deleted file mode 100644 index 239fcaa533..0000000000 Binary files a/artworks/midjourney/ea04811d-8a36-484c-a5bb-c872efe6be35_fractal_intrusion.png and /dev/null differ diff --git a/artworks/midjourney/ea6bdcb9-b7e3-4aa9-bdfd-871047c94e51_the_end_of_the_World._by_james_gurney_matte_painting_CGSociety_fantasy_full_of_colors_wow_ultra_photorealistic_wow_postprocessing.png b/artworks/midjourney/ea6bdcb9-b7e3-4aa9-bdfd-871047c94e51_the_end_of_the_World._by_james_gurney_matte_painting_CGSociety_fantasy_full_of_colors_wow_ultra_photorealistic_wow_postprocessing.png deleted file mode 100644 index 40533a58b9..0000000000 Binary files a/artworks/midjourney/ea6bdcb9-b7e3-4aa9-bdfd-871047c94e51_the_end_of_the_World._by_james_gurney_matte_painting_CGSociety_fantasy_full_of_colors_wow_ultra_photorealistic_wow_postprocessing.png and /dev/null differ diff --git a/artworks/midjourney/ea81e6c9-aee6-4e5e-ab62-f7c12509f333_we_bring_bright_light_but_I_could_be_a_devil_to_you.png b/artworks/midjourney/ea81e6c9-aee6-4e5e-ab62-f7c12509f333_we_bring_bright_light_but_I_could_be_a_devil_to_you.png deleted file mode 100644 index 0cc1107e28..0000000000 Binary files a/artworks/midjourney/ea81e6c9-aee6-4e5e-ab62-f7c12509f333_we_bring_bright_light_but_I_could_be_a_devil_to_you.png and /dev/null differ diff --git a/artworks/midjourney/eabf7472-9213-4b89-81b7-1ad977773c84_Jonas_artificial_intelligence_abducted_me_and_probed_me_and_experimented_on_me.png b/artworks/midjourney/eabf7472-9213-4b89-81b7-1ad977773c84_Jonas_artificial_intelligence_abducted_me_and_probed_me_and_experimented_on_me.png deleted file mode 100644 index ca63505fe5..0000000000 Binary files a/artworks/midjourney/eabf7472-9213-4b89-81b7-1ad977773c84_Jonas_artificial_intelligence_abducted_me_and_probed_me_and_experimented_on_me.png and /dev/null differ diff --git a/artworks/midjourney/ead53b7a-3446-4d06-819a-e6e27a59b790_tidal_wave_matte_painting_rendered_in_octance_artstation_8k_epic_wow__trending_on_rart__--w_768_--h_512_--hd.png b/artworks/midjourney/ead53b7a-3446-4d06-819a-e6e27a59b790_tidal_wave_matte_painting_rendered_in_octance_artstation_8k_epic_wow__trending_on_rart__--w_768_--h_512_--hd.png deleted file mode 100644 index 3bf764b1ca..0000000000 Binary files a/artworks/midjourney/ead53b7a-3446-4d06-819a-e6e27a59b790_tidal_wave_matte_painting_rendered_in_octance_artstation_8k_epic_wow__trending_on_rart__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/eae73d0f-0c2b-40c9-a516-0201118443e8_Jonas_OBEY_Andre_the_giant.png b/artworks/midjourney/eae73d0f-0c2b-40c9-a516-0201118443e8_Jonas_OBEY_Andre_the_giant.png deleted file mode 100644 index 7844c3d451..0000000000 Binary files a/artworks/midjourney/eae73d0f-0c2b-40c9-a516-0201118443e8_Jonas_OBEY_Andre_the_giant.png and /dev/null differ diff --git a/artworks/midjourney/eaffe2fd-a0db-45d9-821b-510e4362a3da_the_arc_of_the_covenant_--w_412.png b/artworks/midjourney/eaffe2fd-a0db-45d9-821b-510e4362a3da_the_arc_of_the_covenant_--w_412.png deleted file mode 100644 index fdc36a4380..0000000000 Binary files a/artworks/midjourney/eaffe2fd-a0db-45d9-821b-510e4362a3da_the_arc_of_the_covenant_--w_412.png and /dev/null differ diff --git a/artworks/midjourney/ece2ab70-1a60-4fbf-aab8-986df60c6851_Jonas_saint_of_angels_by_Glenn_Fabry.png b/artworks/midjourney/ece2ab70-1a60-4fbf-aab8-986df60c6851_Jonas_saint_of_angels_by_Glenn_Fabry.png deleted file mode 100644 index 64fd5b457d..0000000000 Binary files a/artworks/midjourney/ece2ab70-1a60-4fbf-aab8-986df60c6851_Jonas_saint_of_angels_by_Glenn_Fabry.png and /dev/null differ diff --git a/artworks/midjourney/ecf75b16-c24d-4dd3-9dda-0bd29c66508a_fashion_model._by_Dante_Gabriel_Rossetti.png b/artworks/midjourney/ecf75b16-c24d-4dd3-9dda-0bd29c66508a_fashion_model._by_Dante_Gabriel_Rossetti.png deleted file mode 100644 index 5b10257246..0000000000 Binary files a/artworks/midjourney/ecf75b16-c24d-4dd3-9dda-0bd29c66508a_fashion_model._by_Dante_Gabriel_Rossetti.png and /dev/null differ diff --git a/artworks/midjourney/ed2fa365-0140-4eac-8221-910cc5a11b88_Jonas_The_4chan_brothers.png b/artworks/midjourney/ed2fa365-0140-4eac-8221-910cc5a11b88_Jonas_The_4chan_brothers.png deleted file mode 100644 index 19c604b18d..0000000000 Binary files a/artworks/midjourney/ed2fa365-0140-4eac-8221-910cc5a11b88_Jonas_The_4chan_brothers.png and /dev/null differ diff --git a/artworks/midjourney/edc3961f-c0a3-44d9-a133-72cfed7d6f1b_t-shirt._by_dan_mumford.png b/artworks/midjourney/edc3961f-c0a3-44d9-a133-72cfed7d6f1b_t-shirt._by_dan_mumford.png deleted file mode 100644 index 18d4891470..0000000000 Binary files a/artworks/midjourney/edc3961f-c0a3-44d9-a133-72cfed7d6f1b_t-shirt._by_dan_mumford.png and /dev/null differ diff --git a/artworks/midjourney/edd1b713-91ce-4a30-a021-908ce02febf7_mirror_memorial.png b/artworks/midjourney/edd1b713-91ce-4a30-a021-908ce02febf7_mirror_memorial.png deleted file mode 100644 index 21371ff5df..0000000000 Binary files a/artworks/midjourney/edd1b713-91ce-4a30-a021-908ce02febf7_mirror_memorial.png and /dev/null differ diff --git a/artworks/midjourney/edee4d4b-5968-4572-9a8f-0d0264567e84_vikings._by_Dan_Mumford_matte_painting_Studio_Ghibli_--w_768_--h_512_--hd.png b/artworks/midjourney/edee4d4b-5968-4572-9a8f-0d0264567e84_vikings._by_Dan_Mumford_matte_painting_Studio_Ghibli_--w_768_--h_512_--hd.png deleted file mode 100644 index 4c24e4fd44..0000000000 Binary files a/artworks/midjourney/edee4d4b-5968-4572-9a8f-0d0264567e84_vikings._by_Dan_Mumford_matte_painting_Studio_Ghibli_--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/ee27af38-424c-4adf-9601-49b7f7ca5396_infographic_on_how_the_world_ends__--w_320_--h_448.png b/artworks/midjourney/ee27af38-424c-4adf-9601-49b7f7ca5396_infographic_on_how_the_world_ends__--w_320_--h_448.png deleted file mode 100644 index 9efc2c4d30..0000000000 Binary files a/artworks/midjourney/ee27af38-424c-4adf-9601-49b7f7ca5396_infographic_on_how_the_world_ends__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/ee615cc3-1981-4588-9923-342e4a5ed57e_transhumanistic_tendency_by_WLOP_matte_painting__--w_320_--h_448.png b/artworks/midjourney/ee615cc3-1981-4588-9923-342e4a5ed57e_transhumanistic_tendency_by_WLOP_matte_painting__--w_320_--h_448.png deleted file mode 100644 index aef1b5b22e..0000000000 Binary files a/artworks/midjourney/ee615cc3-1981-4588-9923-342e4a5ed57e_transhumanistic_tendency_by_WLOP_matte_painting__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/ee69de05-73c2-460f-b00c-48810dcaa186_my_preciousss.png b/artworks/midjourney/ee69de05-73c2-460f-b00c-48810dcaa186_my_preciousss.png deleted file mode 100644 index 19ac537ab7..0000000000 Binary files a/artworks/midjourney/ee69de05-73c2-460f-b00c-48810dcaa186_my_preciousss.png and /dev/null differ diff --git a/artworks/midjourney/ee8ac5cb-3ef0-40fd-bce5-4edc29922419_Jonas_httpss.mj.runMVo3MB__nuclear_explosion_cloud_like_a_skull_--w_320_--h_448.png b/artworks/midjourney/ee8ac5cb-3ef0-40fd-bce5-4edc29922419_Jonas_httpss.mj.runMVo3MB__nuclear_explosion_cloud_like_a_skull_--w_320_--h_448.png deleted file mode 100644 index c7608ff79f..0000000000 Binary files a/artworks/midjourney/ee8ac5cb-3ef0-40fd-bce5-4edc29922419_Jonas_httpss.mj.runMVo3MB__nuclear_explosion_cloud_like_a_skull_--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/eec760ed-4fd7-447b-8703-d398e6d477ab_supernova_gumpf.png b/artworks/midjourney/eec760ed-4fd7-447b-8703-d398e6d477ab_supernova_gumpf.png deleted file mode 100644 index fd5603f4a9..0000000000 Binary files a/artworks/midjourney/eec760ed-4fd7-447b-8703-d398e6d477ab_supernova_gumpf.png and /dev/null differ diff --git a/artworks/midjourney/eeed59cc-4727-437d-a846-8dbf54a5068e_the_fabled_creator_rests_on_the_seventh_day_of_creation_--w_412.png b/artworks/midjourney/eeed59cc-4727-437d-a846-8dbf54a5068e_the_fabled_creator_rests_on_the_seventh_day_of_creation_--w_412.png deleted file mode 100644 index 363d83ffe9..0000000000 Binary files a/artworks/midjourney/eeed59cc-4727-437d-a846-8dbf54a5068e_the_fabled_creator_rests_on_the_seventh_day_of_creation_--w_412.png and /dev/null differ diff --git a/artworks/midjourney/ef2ef655-cd07-4aa2-803e-dfc7fb3219d7_Jonas_king_of_bongobongo.png b/artworks/midjourney/ef2ef655-cd07-4aa2-803e-dfc7fb3219d7_Jonas_king_of_bongobongo.png deleted file mode 100644 index 6726403c6a..0000000000 Binary files a/artworks/midjourney/ef2ef655-cd07-4aa2-803e-dfc7fb3219d7_Jonas_king_of_bongobongo.png and /dev/null differ diff --git a/artworks/midjourney/ef3f98cc-d1a7-4bda-9b45-7e8ff4ca053a__hole.png b/artworks/midjourney/ef3f98cc-d1a7-4bda-9b45-7e8ff4ca053a__hole.png deleted file mode 100644 index 9eab36951f..0000000000 Binary files a/artworks/midjourney/ef3f98cc-d1a7-4bda-9b45-7e8ff4ca053a__hole.png and /dev/null differ diff --git a/artworks/midjourney/f0936247-209a-46bc-98b7-bd2c5b78abb4_Jonas_four-eyed_monster_httpss.mj.runW0b1Re.png b/artworks/midjourney/f0936247-209a-46bc-98b7-bd2c5b78abb4_Jonas_four-eyed_monster_httpss.mj.runW0b1Re.png deleted file mode 100644 index 8c03a4662c..0000000000 Binary files a/artworks/midjourney/f0936247-209a-46bc-98b7-bd2c5b78abb4_Jonas_four-eyed_monster_httpss.mj.runW0b1Re.png and /dev/null differ diff --git a/artworks/midjourney/f0e00258-9a89-4cf8-bd9d-4c18936e2771_Jonas_httpss.mj.runisNzvg__the_ruthless_edit_by_Rick_Rubin.png b/artworks/midjourney/f0e00258-9a89-4cf8-bd9d-4c18936e2771_Jonas_httpss.mj.runisNzvg__the_ruthless_edit_by_Rick_Rubin.png deleted file mode 100644 index 14032063b0..0000000000 Binary files a/artworks/midjourney/f0e00258-9a89-4cf8-bd9d-4c18936e2771_Jonas_httpss.mj.runisNzvg__the_ruthless_edit_by_Rick_Rubin.png and /dev/null differ diff --git a/artworks/midjourney/f0e66351-b18c-4491-8b86-8c090589ed6f_radiant_bomba.png b/artworks/midjourney/f0e66351-b18c-4491-8b86-8c090589ed6f_radiant_bomba.png deleted file mode 100644 index 46ef9ac56b..0000000000 Binary files a/artworks/midjourney/f0e66351-b18c-4491-8b86-8c090589ed6f_radiant_bomba.png and /dev/null differ diff --git a/artworks/midjourney/f1973fbd-16bd-4d07-9ea5-a3f5d6c898b4_aggressive_aggressor.png b/artworks/midjourney/f1973fbd-16bd-4d07-9ea5-a3f5d6c898b4_aggressive_aggressor.png deleted file mode 100644 index 2b7b376b63..0000000000 Binary files a/artworks/midjourney/f1973fbd-16bd-4d07-9ea5-a3f5d6c898b4_aggressive_aggressor.png and /dev/null differ diff --git a/artworks/midjourney/f1e19f8c-3d76-4962-b054-75df6f782653_Castle_Eltz_Wierschem.png b/artworks/midjourney/f1e19f8c-3d76-4962-b054-75df6f782653_Castle_Eltz_Wierschem.png deleted file mode 100644 index 03e70eda0a..0000000000 Binary files a/artworks/midjourney/f1e19f8c-3d76-4962-b054-75df6f782653_Castle_Eltz_Wierschem.png and /dev/null differ diff --git a/artworks/midjourney/f1f4cdbd-2b92-4712-92bf-ab38e0624276_suprafragil.png b/artworks/midjourney/f1f4cdbd-2b92-4712-92bf-ab38e0624276_suprafragil.png deleted file mode 100644 index 603452ea67..0000000000 Binary files a/artworks/midjourney/f1f4cdbd-2b92-4712-92bf-ab38e0624276_suprafragil.png and /dev/null differ diff --git a/artworks/midjourney/f232ef28-894b-4f9c-9573-caa79e183484_Jonas_miniature_quarantine_station.png b/artworks/midjourney/f232ef28-894b-4f9c-9573-caa79e183484_Jonas_miniature_quarantine_station.png deleted file mode 100644 index 8b8dd23b92..0000000000 Binary files a/artworks/midjourney/f232ef28-894b-4f9c-9573-caa79e183484_Jonas_miniature_quarantine_station.png and /dev/null differ diff --git a/artworks/midjourney/f2621a68-01ac-469c-a5a8-a0e6de4d7cc8_on_the_arts_in_science.png b/artworks/midjourney/f2621a68-01ac-469c-a5a8-a0e6de4d7cc8_on_the_arts_in_science.png deleted file mode 100644 index b4d2188cde..0000000000 Binary files a/artworks/midjourney/f2621a68-01ac-469c-a5a8-a0e6de4d7cc8_on_the_arts_in_science.png and /dev/null differ diff --git a/artworks/midjourney/f2a9b465-81da-439b-942a-e7929fbdc49a_the_prompt_engineers_lab.png b/artworks/midjourney/f2a9b465-81da-439b-942a-e7929fbdc49a_the_prompt_engineers_lab.png deleted file mode 100644 index 32d28f800e..0000000000 Binary files a/artworks/midjourney/f2a9b465-81da-439b-942a-e7929fbdc49a_the_prompt_engineers_lab.png and /dev/null differ diff --git a/artworks/midjourney/f2c9fe95-a3df-44ca-b4db-8b8cece3ea26_scientific_visualization.png b/artworks/midjourney/f2c9fe95-a3df-44ca-b4db-8b8cece3ea26_scientific_visualization.png deleted file mode 100644 index f84dfa853e..0000000000 Binary files a/artworks/midjourney/f2c9fe95-a3df-44ca-b4db-8b8cece3ea26_scientific_visualization.png and /dev/null differ diff --git a/artworks/midjourney/f33f63be-3a56-4079-8d96-c44bd89825cd_Jonas_MF_Doom.png b/artworks/midjourney/f33f63be-3a56-4079-8d96-c44bd89825cd_Jonas_MF_Doom.png deleted file mode 100644 index 486b72b9b9..0000000000 Binary files a/artworks/midjourney/f33f63be-3a56-4079-8d96-c44bd89825cd_Jonas_MF_Doom.png and /dev/null differ diff --git a/artworks/midjourney/f37beb2e-fe8c-46bf-8ed5-9fb16f09d427___science_art.png b/artworks/midjourney/f37beb2e-fe8c-46bf-8ed5-9fb16f09d427___science_art.png deleted file mode 100644 index 2f74bf4584..0000000000 Binary files a/artworks/midjourney/f37beb2e-fe8c-46bf-8ed5-9fb16f09d427___science_art.png and /dev/null differ diff --git a/artworks/midjourney/f38ed1e9-c10c-4a56-9e47-0c120186823c_Jonas_httpss.mj.runTRQGsj__fractures_of_mind.png b/artworks/midjourney/f38ed1e9-c10c-4a56-9e47-0c120186823c_Jonas_httpss.mj.runTRQGsj__fractures_of_mind.png deleted file mode 100644 index 9da8659c31..0000000000 Binary files a/artworks/midjourney/f38ed1e9-c10c-4a56-9e47-0c120186823c_Jonas_httpss.mj.runTRQGsj__fractures_of_mind.png and /dev/null differ diff --git a/artworks/midjourney/f4983b39-9c9b-4ab3-8bbd-b8f421908ee1_ragnarok._by_Dan_Mumford_matte_painting_Studio_Ghibli.png b/artworks/midjourney/f4983b39-9c9b-4ab3-8bbd-b8f421908ee1_ragnarok._by_Dan_Mumford_matte_painting_Studio_Ghibli.png deleted file mode 100644 index 017d5644b5..0000000000 Binary files a/artworks/midjourney/f4983b39-9c9b-4ab3-8bbd-b8f421908ee1_ragnarok._by_Dan_Mumford_matte_painting_Studio_Ghibli.png and /dev/null differ diff --git a/artworks/midjourney/f52e22ca-7e23-4a28-8b38-1f69553a1d9d_polaroid_photograph_80s.png b/artworks/midjourney/f52e22ca-7e23-4a28-8b38-1f69553a1d9d_polaroid_photograph_80s.png deleted file mode 100644 index 7c58500844..0000000000 Binary files a/artworks/midjourney/f52e22ca-7e23-4a28-8b38-1f69553a1d9d_polaroid_photograph_80s.png and /dev/null differ diff --git a/artworks/midjourney/f560010f-a6b0-44f4-b8c6-329e6338b15a_no_hope_etching_detailed.png b/artworks/midjourney/f560010f-a6b0-44f4-b8c6-329e6338b15a_no_hope_etching_detailed.png deleted file mode 100644 index 75ca28892d..0000000000 Binary files a/artworks/midjourney/f560010f-a6b0-44f4-b8c6-329e6338b15a_no_hope_etching_detailed.png and /dev/null differ diff --git a/artworks/midjourney/f590f31e-aaf8-46d5-9448-14eebb0f7136_alien_seen_through_sniper_rifle_scope.png b/artworks/midjourney/f590f31e-aaf8-46d5-9448-14eebb0f7136_alien_seen_through_sniper_rifle_scope.png deleted file mode 100644 index b364b48610..0000000000 Binary files a/artworks/midjourney/f590f31e-aaf8-46d5-9448-14eebb0f7136_alien_seen_through_sniper_rifle_scope.png and /dev/null differ diff --git a/artworks/midjourney/f5a677bb-bd7c-4dce-8fc4-a582d82e9532_80s_cool_polaroid.png b/artworks/midjourney/f5a677bb-bd7c-4dce-8fc4-a582d82e9532_80s_cool_polaroid.png deleted file mode 100644 index f5fabd9220..0000000000 Binary files a/artworks/midjourney/f5a677bb-bd7c-4dce-8fc4-a582d82e9532_80s_cool_polaroid.png and /dev/null differ diff --git a/artworks/midjourney/f5af4d65-ad88-4299-bf39-5464a442f99e_Jonas_synthesis_engines_have_passed_through_the_uncanny_valley_rendered_in_octane_post-processing_highly_d.png b/artworks/midjourney/f5af4d65-ad88-4299-bf39-5464a442f99e_Jonas_synthesis_engines_have_passed_through_the_uncanny_valley_rendered_in_octane_post-processing_highly_d.png deleted file mode 100644 index fae14edcec..0000000000 Binary files a/artworks/midjourney/f5af4d65-ad88-4299-bf39-5464a442f99e_Jonas_synthesis_engines_have_passed_through_the_uncanny_valley_rendered_in_octane_post-processing_highly_d.png and /dev/null differ diff --git a/artworks/midjourney/f6a67c3d-b5ba-48b2-9a68-ce92b70e938d_Jonas_the_dude.png b/artworks/midjourney/f6a67c3d-b5ba-48b2-9a68-ce92b70e938d_Jonas_the_dude.png deleted file mode 100644 index 33903f6635..0000000000 Binary files a/artworks/midjourney/f6a67c3d-b5ba-48b2-9a68-ce92b70e938d_Jonas_the_dude.png and /dev/null differ diff --git a/artworks/midjourney/f7172b86-26bc-49c1-acdb-cf68c1264d8c_mr_pink.png b/artworks/midjourney/f7172b86-26bc-49c1-acdb-cf68c1264d8c_mr_pink.png deleted file mode 100644 index 361f68c4d7..0000000000 Binary files a/artworks/midjourney/f7172b86-26bc-49c1-acdb-cf68c1264d8c_mr_pink.png and /dev/null differ diff --git a/artworks/midjourney/f75b629c-bded-4c17-a323-fff0c55695a9_plumage_of_Sappho.png b/artworks/midjourney/f75b629c-bded-4c17-a323-fff0c55695a9_plumage_of_Sappho.png deleted file mode 100644 index 941ef17680..0000000000 Binary files a/artworks/midjourney/f75b629c-bded-4c17-a323-fff0c55695a9_plumage_of_Sappho.png and /dev/null differ diff --git a/artworks/midjourney/f771722d-486a-48b9-b169-dadfbf3b09df_to_hell_in_a_handbasket._oil_painting_watercolor_line_drawing_by_James_Gurney.png b/artworks/midjourney/f771722d-486a-48b9-b169-dadfbf3b09df_to_hell_in_a_handbasket._oil_painting_watercolor_line_drawing_by_James_Gurney.png deleted file mode 100644 index 7df2119604..0000000000 Binary files a/artworks/midjourney/f771722d-486a-48b9-b169-dadfbf3b09df_to_hell_in_a_handbasket._oil_painting_watercolor_line_drawing_by_James_Gurney.png and /dev/null differ diff --git a/artworks/midjourney/f7798b3a-1c33-4f1e-936d-3ec529421c53_httpss.mj.runsDGcQ5___entropy.png b/artworks/midjourney/f7798b3a-1c33-4f1e-936d-3ec529421c53_httpss.mj.runsDGcQ5___entropy.png deleted file mode 100644 index 88255a67c4..0000000000 Binary files a/artworks/midjourney/f7798b3a-1c33-4f1e-936d-3ec529421c53_httpss.mj.runsDGcQ5___entropy.png and /dev/null differ diff --git a/artworks/midjourney/f77dd992-bd44-4e62-9bb1-2a8a7e49cada_powerlaw_text-0.5.png b/artworks/midjourney/f77dd992-bd44-4e62-9bb1-2a8a7e49cada_powerlaw_text-0.5.png deleted file mode 100644 index 1469ebff06..0000000000 Binary files a/artworks/midjourney/f77dd992-bd44-4e62-9bb1-2a8a7e49cada_powerlaw_text-0.5.png and /dev/null differ diff --git a/artworks/midjourney/f87cab8d-f7d2-4e58-8c79-f1b09417493c_the_redheaded_muse_takes_a_bath_httpss.mj.runW4MXg8.png b/artworks/midjourney/f87cab8d-f7d2-4e58-8c79-f1b09417493c_the_redheaded_muse_takes_a_bath_httpss.mj.runW4MXg8.png deleted file mode 100644 index 040e16aa3f..0000000000 Binary files a/artworks/midjourney/f87cab8d-f7d2-4e58-8c79-f1b09417493c_the_redheaded_muse_takes_a_bath_httpss.mj.runW4MXg8.png and /dev/null differ diff --git a/artworks/midjourney/f89d0dec-7707-46b7-8807-ac82572c493f_Jonas_the_osman_threatens_security_of_Europe_on_artstation_wikiart.png b/artworks/midjourney/f89d0dec-7707-46b7-8807-ac82572c493f_Jonas_the_osman_threatens_security_of_Europe_on_artstation_wikiart.png deleted file mode 100644 index a8ea2a7b29..0000000000 Binary files a/artworks/midjourney/f89d0dec-7707-46b7-8807-ac82572c493f_Jonas_the_osman_threatens_security_of_Europe_on_artstation_wikiart.png and /dev/null differ diff --git a/artworks/midjourney/f8af7e21-e5a0-4dfe-aae2-a0fbf585ef58_karma.png b/artworks/midjourney/f8af7e21-e5a0-4dfe-aae2-a0fbf585ef58_karma.png deleted file mode 100644 index 596e413a1c..0000000000 Binary files a/artworks/midjourney/f8af7e21-e5a0-4dfe-aae2-a0fbf585ef58_karma.png and /dev/null differ diff --git a/artworks/midjourney/f93d0cbf-0a74-46dc-b39d-f6f51f456c45_I_fake_art.png b/artworks/midjourney/f93d0cbf-0a74-46dc-b39d-f6f51f456c45_I_fake_art.png deleted file mode 100644 index 6f46b631f9..0000000000 Binary files a/artworks/midjourney/f93d0cbf-0a74-46dc-b39d-f6f51f456c45_I_fake_art.png and /dev/null differ diff --git a/artworks/midjourney/f9afa965-1538-43b9-b2b2-d2ab602cff60_sauron_httpss.mj.runBKOdpF.png b/artworks/midjourney/f9afa965-1538-43b9-b2b2-d2ab602cff60_sauron_httpss.mj.runBKOdpF.png deleted file mode 100644 index eecc317bba..0000000000 Binary files a/artworks/midjourney/f9afa965-1538-43b9-b2b2-d2ab602cff60_sauron_httpss.mj.runBKOdpF.png and /dev/null differ diff --git a/artworks/midjourney/f9d99d7e-c66f-4d26-9abf-cfa21fe9e796_Jonas_predator_hunter_of_skulls__portrait_detailed_Unreal--mp.png b/artworks/midjourney/f9d99d7e-c66f-4d26-9abf-cfa21fe9e796_Jonas_predator_hunter_of_skulls__portrait_detailed_Unreal--mp.png deleted file mode 100644 index 8a69d20178..0000000000 Binary files a/artworks/midjourney/f9d99d7e-c66f-4d26-9abf-cfa21fe9e796_Jonas_predator_hunter_of_skulls__portrait_detailed_Unreal--mp.png and /dev/null differ diff --git a/artworks/midjourney/f9e63b42-7de6-4f75-b4ca-a353a0e342f9_trans_c3po.png b/artworks/midjourney/f9e63b42-7de6-4f75-b4ca-a353a0e342f9_trans_c3po.png deleted file mode 100644 index 2b6fa9ad4b..0000000000 Binary files a/artworks/midjourney/f9e63b42-7de6-4f75-b4ca-a353a0e342f9_trans_c3po.png and /dev/null differ diff --git a/artworks/midjourney/fa34a875-97fb-4d87-b682-a6c82030e52b_I_want_to_believe.png b/artworks/midjourney/fa34a875-97fb-4d87-b682-a6c82030e52b_I_want_to_believe.png deleted file mode 100644 index 935ea93def..0000000000 Binary files a/artworks/midjourney/fa34a875-97fb-4d87-b682-a6c82030e52b_I_want_to_believe.png and /dev/null differ diff --git a/artworks/midjourney/fa49b47b-6dfd-4358-8a91-f48abfd5a413_Jonas_slum_dog_billionaire.png b/artworks/midjourney/fa49b47b-6dfd-4358-8a91-f48abfd5a413_Jonas_slum_dog_billionaire.png deleted file mode 100644 index 1a5df07d8d..0000000000 Binary files a/artworks/midjourney/fa49b47b-6dfd-4358-8a91-f48abfd5a413_Jonas_slum_dog_billionaire.png and /dev/null differ diff --git a/artworks/midjourney/fa84291e-a9ac-4f36-a69e-392d1aa75aea_Jonas_bubble_wrap_mummie_portrait.png b/artworks/midjourney/fa84291e-a9ac-4f36-a69e-392d1aa75aea_Jonas_bubble_wrap_mummie_portrait.png deleted file mode 100644 index 1ac220d9de..0000000000 Binary files a/artworks/midjourney/fa84291e-a9ac-4f36-a69e-392d1aa75aea_Jonas_bubble_wrap_mummie_portrait.png and /dev/null differ diff --git a/artworks/midjourney/fa942264-1b40-43a4-ae9b-f656b0171555___diffusion.png b/artworks/midjourney/fa942264-1b40-43a4-ae9b-f656b0171555___diffusion.png deleted file mode 100644 index 6c37b7f23e..0000000000 Binary files a/artworks/midjourney/fa942264-1b40-43a4-ae9b-f656b0171555___diffusion.png and /dev/null differ diff --git a/artworks/midjourney/fab6d4f7-c3ef-4127-9591-344e82ed0f1d_Jonas_fractal_Great_Wave_off_Kanagawa.png b/artworks/midjourney/fab6d4f7-c3ef-4127-9591-344e82ed0f1d_Jonas_fractal_Great_Wave_off_Kanagawa.png deleted file mode 100644 index d1a78a0da6..0000000000 Binary files a/artworks/midjourney/fab6d4f7-c3ef-4127-9591-344e82ed0f1d_Jonas_fractal_Great_Wave_off_Kanagawa.png and /dev/null differ diff --git a/artworks/midjourney/fb7112b4-c566-46a4-ad8f-ccc91b02b619_Jonas_httpss.mj.runZg5lFr__uncertainty_of_entry.png b/artworks/midjourney/fb7112b4-c566-46a4-ad8f-ccc91b02b619_Jonas_httpss.mj.runZg5lFr__uncertainty_of_entry.png deleted file mode 100644 index 14fe665e33..0000000000 Binary files a/artworks/midjourney/fb7112b4-c566-46a4-ad8f-ccc91b02b619_Jonas_httpss.mj.runZg5lFr__uncertainty_of_entry.png and /dev/null differ diff --git a/artworks/midjourney/fb7c6536-a4ca-42a2-97ac-2ae7b0e52c7b_Jonas_grounded_theory.png b/artworks/midjourney/fb7c6536-a4ca-42a2-97ac-2ae7b0e52c7b_Jonas_grounded_theory.png deleted file mode 100644 index d32a482e65..0000000000 Binary files a/artworks/midjourney/fb7c6536-a4ca-42a2-97ac-2ae7b0e52c7b_Jonas_grounded_theory.png and /dev/null differ diff --git a/artworks/midjourney/fba4f81b-fd1c-407f-bdc7-254afcb075da_paradox_implicit_mass_theorem_fractal_absorption.png b/artworks/midjourney/fba4f81b-fd1c-407f-bdc7-254afcb075da_paradox_implicit_mass_theorem_fractal_absorption.png deleted file mode 100644 index 1c8e4124db..0000000000 Binary files a/artworks/midjourney/fba4f81b-fd1c-407f-bdc7-254afcb075da_paradox_implicit_mass_theorem_fractal_absorption.png and /dev/null differ diff --git a/artworks/midjourney/fbbcb22b-70ea-4406-beaf-588ea706785d_fantastagorc__--w_320_--h_448.png b/artworks/midjourney/fbbcb22b-70ea-4406-beaf-588ea706785d_fantastagorc__--w_320_--h_448.png deleted file mode 100644 index 696469f540..0000000000 Binary files a/artworks/midjourney/fbbcb22b-70ea-4406-beaf-588ea706785d_fantastagorc__--w_320_--h_448.png and /dev/null differ diff --git a/artworks/midjourney/fbbe5949-f284-4eb9-943c-e942e2e5dadd_harbinger_of_light_darkness_shall_forever_cede_to_the_light__--w_768_--h_512_--hd.png b/artworks/midjourney/fbbe5949-f284-4eb9-943c-e942e2e5dadd_harbinger_of_light_darkness_shall_forever_cede_to_the_light__--w_768_--h_512_--hd.png deleted file mode 100644 index 6c36a0db3d..0000000000 Binary files a/artworks/midjourney/fbbe5949-f284-4eb9-943c-e942e2e5dadd_harbinger_of_light_darkness_shall_forever_cede_to_the_light__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/fbbe8673-1ed4-459e-a3b1-c18d043b4072_watch_me_shine_like_the_world_is_mine.png b/artworks/midjourney/fbbe8673-1ed4-459e-a3b1-c18d043b4072_watch_me_shine_like_the_world_is_mine.png deleted file mode 100644 index fcaaea9041..0000000000 Binary files a/artworks/midjourney/fbbe8673-1ed4-459e-a3b1-c18d043b4072_watch_me_shine_like_the_world_is_mine.png and /dev/null differ diff --git a/artworks/midjourney/fc2d5d47-c420-41da-837f-754fbde3f9ea_tardigrade_supernova__--w_448_--h_320.png b/artworks/midjourney/fc2d5d47-c420-41da-837f-754fbde3f9ea_tardigrade_supernova__--w_448_--h_320.png deleted file mode 100644 index 9b2ae0c3b3..0000000000 Binary files a/artworks/midjourney/fc2d5d47-c420-41da-837f-754fbde3f9ea_tardigrade_supernova__--w_448_--h_320.png and /dev/null differ diff --git a/artworks/midjourney/fc8c4724-97dd-4790-bde0-d86d2c1befff_O.png b/artworks/midjourney/fc8c4724-97dd-4790-bde0-d86d2c1befff_O.png deleted file mode 100644 index 468a7ca669..0000000000 Binary files a/artworks/midjourney/fc8c4724-97dd-4790-bde0-d86d2c1befff_O.png and /dev/null differ diff --git a/artworks/midjourney/fcbef9c3-02d7-469e-8559-f194b259ce52_octopus_beautiful_wondrous_symmetrical_intelligent__--w_768_--h_512_--hd.png b/artworks/midjourney/fcbef9c3-02d7-469e-8559-f194b259ce52_octopus_beautiful_wondrous_symmetrical_intelligent__--w_768_--h_512_--hd.png deleted file mode 100644 index 39359ebc6e..0000000000 Binary files a/artworks/midjourney/fcbef9c3-02d7-469e-8559-f194b259ce52_octopus_beautiful_wondrous_symmetrical_intelligent__--w_768_--h_512_--hd.png and /dev/null differ diff --git a/artworks/midjourney/fd3fe6c0-2b08-42e8-a9f7-ffdda0bf25a1_algorithmic_squirrel.png b/artworks/midjourney/fd3fe6c0-2b08-42e8-a9f7-ffdda0bf25a1_algorithmic_squirrel.png deleted file mode 100644 index a33801a678..0000000000 Binary files a/artworks/midjourney/fd3fe6c0-2b08-42e8-a9f7-ffdda0bf25a1_algorithmic_squirrel.png and /dev/null differ diff --git a/artworks/midjourney/fd8e82fa-3a6c-48b1-a599-44a5849ca714_donald_trump_--no_beard_httpss.mj.run9r20Yb.png b/artworks/midjourney/fd8e82fa-3a6c-48b1-a599-44a5849ca714_donald_trump_--no_beard_httpss.mj.run9r20Yb.png deleted file mode 100644 index 9309549dfd..0000000000 Binary files a/artworks/midjourney/fd8e82fa-3a6c-48b1-a599-44a5849ca714_donald_trump_--no_beard_httpss.mj.run9r20Yb.png and /dev/null differ diff --git a/artworks/midjourney/fdb3cbd0-2be4-4f3a-846e-d7f81a1697d9_httpss.mj.run0ovZvG__groteskly_cute_furby.png b/artworks/midjourney/fdb3cbd0-2be4-4f3a-846e-d7f81a1697d9_httpss.mj.run0ovZvG__groteskly_cute_furby.png deleted file mode 100644 index fbe402e617..0000000000 Binary files a/artworks/midjourney/fdb3cbd0-2be4-4f3a-846e-d7f81a1697d9_httpss.mj.run0ovZvG__groteskly_cute_furby.png and /dev/null differ diff --git a/artworks/midjourney/fe4bd619-8b14-4ccd-a479-1e6fe6e6bd02_just_cause_CGSociety_postprocessing_war.png b/artworks/midjourney/fe4bd619-8b14-4ccd-a479-1e6fe6e6bd02_just_cause_CGSociety_postprocessing_war.png deleted file mode 100644 index cf93d3e72b..0000000000 Binary files a/artworks/midjourney/fe4bd619-8b14-4ccd-a479-1e6fe6e6bd02_just_cause_CGSociety_postprocessing_war.png and /dev/null differ diff --git a/artworks/midjourney/ff455b55-ea30-4cd0-b8fb-96c50a43f4ba_blob_of_horror_NFT_4k_--hq_--nostretch.png b/artworks/midjourney/ff455b55-ea30-4cd0-b8fb-96c50a43f4ba_blob_of_horror_NFT_4k_--hq_--nostretch.png deleted file mode 100644 index c388e81fb9..0000000000 Binary files a/artworks/midjourney/ff455b55-ea30-4cd0-b8fb-96c50a43f4ba_blob_of_horror_NFT_4k_--hq_--nostretch.png and /dev/null differ diff --git a/artworks/midjourney/ffc154d5-2dcf-4802-a873-3092b0a14e7b_Jonas_httpss.mj.run7h0DhI__When_I_leave_this_body_I_go_on_what_is_called_through_the_black_hole._Its_above.png b/artworks/midjourney/ffc154d5-2dcf-4802-a873-3092b0a14e7b_Jonas_httpss.mj.run7h0DhI__When_I_leave_this_body_I_go_on_what_is_called_through_the_black_hole._Its_above.png deleted file mode 100644 index bdbe42a67f..0000000000 Binary files a/artworks/midjourney/ffc154d5-2dcf-4802-a873-3092b0a14e7b_Jonas_httpss.mj.run7h0DhI__When_I_leave_this_body_I_go_on_what_is_called_through_the_black_hole._Its_above.png and /dev/null differ diff --git a/artworks/midjourney/ffe7acc9-75ba-439d-932a-f278f4e72308_Jonas_grains_of_crystallite_sand_wind_in_your_eyes.png b/artworks/midjourney/ffe7acc9-75ba-439d-932a-f278f4e72308_Jonas_grains_of_crystallite_sand_wind_in_your_eyes.png deleted file mode 100644 index ceb14fa19e..0000000000 Binary files a/artworks/midjourney/ffe7acc9-75ba-439d-932a-f278f4e72308_Jonas_grains_of_crystallite_sand_wind_in_your_eyes.png and /dev/null differ diff --git a/artworks/ruDALLE/Macedonian Sun/Screenshot from 2021-11-10 09-07-41.jpg b/artworks/ruDALLE/Macedonian Sun/Screenshot from 2021-11-10 09-07-41.jpg deleted file mode 100644 index 6a2196f34d..0000000000 Binary files a/artworks/ruDALLE/Macedonian Sun/Screenshot from 2021-11-10 09-07-41.jpg and /dev/null differ diff --git a/fix-publications-json.py b/fix-publications-json.py new file mode 100644 index 0000000000..04682a9786 --- /dev/null +++ b/fix-publications-json.py @@ -0,0 +1,26 @@ +#!/usr/bin/python3 +# -*- coding: utf-8 -*- + +import sys +import os +import json + +# fix the publisher field: +# split into howpublished and publisher + +f = open('./src/bibliography/publications.json') +data = json.load(f) +f.close() + +for obj in data: + try: + howpublished, publisher = obj['publisher'].split(";") + howpublished = howpublished.strip() + publisher = publisher.strip() + except: + continue + obj['howpublished'] = howpublished + obj['publisher'] = publisher + +with open('./src/bibliography/publications.json', 'w') as f: + json.dump(data, f, indent=2, sort_keys=True) diff --git a/gatsby-browser.js b/gatsby-browser.js new file mode 100644 index 0000000000..f0ff1259f2 --- /dev/null +++ b/gatsby-browser.js @@ -0,0 +1,11 @@ +import React from 'react' +import RootWrapper from './src/components/root-wrapper' + +// Wraps every page in a Layout +// exports.wrapPageElement = ({ element, props }) => { +// return {element} +// } + +export const wrapRootElement = ({ element }) => { + return {element} +} diff --git a/gatsby-config.js b/gatsby-config.js index 2a519e3f56..b33e8eb306 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -3,41 +3,92 @@ // }) module.exports = { + flags: { + PARALLEL_SOURCING: false, + FAST_DEV: true, + // QUERY_ON_DEMAND: true, + // LAZY_IMAGES: true, + // PRESERVE_WEBPACK_CACHE: true, + // DEV_WEBPACK_CACHE: true, + PRESERVE_FILE_DOWNLOAD_CACHE: true, + // https://www.gatsbyjs.com/docs/how-to/performance/partial-hydration/ + // PARTIAL_HYDRATION: true, + // trying to lower memory requirements during build + // LMDB_STORE: true, // store nodes in a persistent embedded database (vs in-memory). Lowers peak memory usage. Requires Node v14.10 or above. + // PARALLEL_QUERY_RUNNING: false, + // GATSBY_CPU_COUNT: 2, + // PARTIAL_HYDRATION: true, + }, plugins: [ + // replace react with preact + // "gatsby-plugin-preact", // not compatible with React 18 + // do not generate source maps "gatsby-plugin-no-sourcemaps", + // "gatsby-plugin-react-helmet" + `gatsby-plugin-react-head`, `gatsby-plugin-image`, - { - resolve: `gatsby-plugin-sharp`, - options: { - // Defaults used for gatsbyImageData and StaticImage - defaults: { - backgroundColor: "#EDEDED", - placeholder: "dominantColor", - }, - // Set to false to allow builds to continue on image errors - failOnError: false, - // deprecated options and their defaults: - stripMetadata: true, - }, - }, - { - resolve: `gatsby-transformer-sharp`, - options: { - checkSupportedExtensions: true, - }, - }, - { - resolve: `gatsby-source-filesystem`, - options: { - name: `artworks`, - path: `${__dirname}/artworks/`, - ignore: [`**/info.txt`], - }, - }, - "gatsby-plugin-react-helmet" + // performance monitoring + // "gatsby-plugin-perf-budgets", + // { + // resolve: "gatsby-plugin-webpack-bundle-analyser-v2", + // options: { + // devMode: true, + // disable: false, + // }, + // }, + // { + // resolve: `gatsby-plugin-sharp`, + // options: { + // defaults: { + // backgroundColor: "#EDEDED", + // placeholder: "dominantColor", + // breakpoints: [300, 400], + // }, + // // Set to false to allow builds to continue on image errors + // failOn: `none`, + // // deprecated options and their defaults: + // stripMetadata: true, + // }, + // }, + // { + // resolve: `gatsby-transformer-sharp`, + // options: { + // checkSupportedExtensions: true, + // }, + // }, + // { + // resolve: `gatsby-source-filesystem`, + // options: { + // name: `artworks`, + // path: `${__dirname}/artworks/`, + // ignore: [`**/info.txt`], + // }, + // }, + // { + // resolve: 'gatsby-plugin-minify-html', + // options: { + // debug: false, // debug optional, default false + // config: { + // collapseWhitespace: false, + // minifyCSS: true, + // minifyJS: true, + // removeComments: true, + // removeScriptTypeAttributes: true, + // removeStyleLinkTypeAttributes: true, + // // Disabled default by html-minifier-terser + // sortAttributes: false, + // useShortDoctype: true, + // } + // } + // }, + 'gatsby-plugin-remove-generator', + `gatsby-plugin-remove-fingerprints`, // <-- breaks some pages + // `gatsby-plugin-purgecss`, ], siteMetadata: { - url: "https://www.jonaso.de", // No trailing slash allowed! - twitterUsername: "@duesynapse" + siteUrl: "https://www.jonaso.de", // No trailing slash allowed! + twitterUsername: "@duesynapse", + title: 'jonaso.de', + description: '', } -} \ No newline at end of file +} diff --git a/gatsby-node.js b/gatsby-node.js index 2ad0265de8..138bb02a75 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -1,8 +1,144 @@ const rimraf = require('rimraf'); - const PUBLIC_FOLDER = `${__dirname}/public`; - exports.onPreBuild = () => { // empty /public folder rimraf.sync(PUBLIC_FOLDER + '/*'); }; + + +// fix build errors related to react-force-graph on /research/network page +// WebpackError: ReferenceError: self is not defined +/* +exports.onCreateWebpackConfig = ({ stage, loaders, actions }) => { + if (stage === "build-html" || stage === "develop-html") { + actions.setWebpackConfig({ + module: { + rules: [ + { + test: /aframe/, + use: loaders.null(), + }, + // { + // test: /3d-force-graph-vr/, + // use: loaders.null(), + // }, + // { + // test: /three-forcegraph/, + // use: loaders.null(), + // }, + // { + // test: /three-render-objects/, + // use: loaders.null(), + // }, + // { + // test: /3d-force-graph/, + // use: loaders.null(), + // }, + // { + // test: /force-graph/, + // use: loaders.null(), + // }, + ], + }, + }) + } +} +*/ + + +// replace react with preact +// exports.onCreateWebpackConfig = ({ actions }) => { +// // React-dom is hardcoded as part of react-hot-loader +// // in the development server. So we either avoid Preact +// // during development or switch to fast-refresh and loose +// // hot reloading capabilities. +// actions.setWebpackConfig({ +// resolve: { +// alias: { +// react: `preact/compat`, +// "react-dom": `preact/compat`, +// "react-dom/server": `preact/compat`, +// }, +// }, +// }) +// } + +// https://blog.greenroots.info/gatsby-the-window-is-not-defined-error-what-and-how-to-fix-it +// skip file during server-side rendering +// exports.onCreateWebpackConfig = ({ stage, loaders, actions }) => { +// if (stage === "build-html") { +// actions.setWebpackConfig({ +// module: { +// rules: [ +// { +// test: 'ResponsiveMenu', +// use: loaders.null(), +// }, +// ], +// }, +// }) +// } +// } + + +// PAGINATION +// const path = require("path") +// // const { createFilePath } = require("gatsby-source-filesystem") +// exports.createPages = async ({ graphql, actions, reporter }) => { +// const { createPage } = actions +// const testResult = await graphql( +// `{ +// allFile( +// sort: {fields: birthTime, order: DESC} +// filter: { +// extension: { regex: "/(jpg)|(png)/" } +// absolutePath: { regex: "/midjourney/" } +// } +// limit: 100 +// ) { +// edges { +// node { +// childImageSharp { +// gatsbyImageData( +// width: 400 +// placeholder: DOMINANT_COLOR +// ) +// } +// } +// } +// } +// }` +// ) +// if (testResult.errors) { +// reporter.panicOnBuild(`Error while running GraphQL query.`) +// return +// } +// const posts = testResult.data.allFile.edges +// const postsPerPage = 25 +// const numPages = 4 // Math.ceil(posts.length / postsPerPage) +// Array.from({ length: numPages }).forEach((_, i) => { +// createPage({ +// path: `/artworks/midjourney/${i + 1}`, +// component: path.resolve("./src/components/page-template.js"), +// context: { +// limit: postsPerPage, +// skip: i * postsPerPage, +// numPages, +// currentPage: i + 1, +// }, +// }) +// }) + +// } +// // exports.onCreateNode = ({ node, actions, getNode }) => { +// // const { createNodeField } = actions +// // if (node.internal.type === `MarkdownRemark`) { +// // const value = createFilePath({ node, getNode }) +// // createNodeField({ +// // name: `slug`, +// // node, +// // value, +// // }) +// // } +// // } + diff --git a/gatsby-ssr.js b/gatsby-ssr.js new file mode 100644 index 0000000000..f0ff1259f2 --- /dev/null +++ b/gatsby-ssr.js @@ -0,0 +1,11 @@ +import React from 'react' +import RootWrapper from './src/components/root-wrapper' + +// Wraps every page in a Layout +// exports.wrapPageElement = ({ element, props }) => { +// return {element} +// } + +export const wrapRootElement = ({ element }) => { + return {element} +} diff --git a/libs/academicons b/libs/academicons index e0a3c7e9e9..bdcfcda570 160000 --- a/libs/academicons +++ b/libs/academicons @@ -1 +1 @@ -Subproject commit e0a3c7e9e9de4ed3b7010c6810bd8e4c4c5934bf +Subproject commit bdcfcda5700b931b436dd665df7f3ed544da3a96 diff --git a/libs/bibtex2html b/libs/bibtex2html index 98d551dbb0..c138eb2994 160000 --- a/libs/bibtex2html +++ b/libs/bibtex2html @@ -1 +1 @@ -Subproject commit 98d551dbb01cf586ac284cb8e9dd45d1dfdb708e +Subproject commit c138eb299466b57eefa3639955c7a17ff46a5436 diff --git a/package.json b/package.json index aa6ac97ab4..df5524e53f 100644 --- a/package.json +++ b/package.json @@ -1,51 +1,72 @@ { - "name": "jonas.de", + "name": "jonaso.de", "description": "jonaso.de", "license": "MIT", "scripts": { - "dev": "yarn pubjson && yarn develop", - "dev-with-art": "cp -r ./src/img/artworks ./public/static && ", + "dev": "export NODE_OPTIONS=--no-experimental-fetch yarn pubjson && yarn develop", "develop": "gatsby develop --open", - "build": "gatsby clean && make pre-build && gatsby build && yarn pubjson && make post-build && yarn push", - "pubjson": "make refs", - "serve": "gatsby serve", + "clean": "gatsby clean", + "invalidate": "aws cloudfront create-invalidation --distribution-id E1F8XE39H6VFRU --paths \"/*\"", + "build": "make pre-build && GATSBY_CPU_COUNT=2 NODE_OPTIONS=--max-old-space-size=4096 gatsby build && make post-build && make publish && yarn push", + "build-profiling": "GATSBY_CPU_COUNT=1 NODE_OPTIONS=--max-old-space-size=4096 gatsby clean && make pre-build && npx process-top ./node_modules/.bin/gatsby build && make post-build && git add -A && sh -c 'git commit -m \"${0}\"' && git push", "push": "git add -A && git commit && git push", - "prod": "yarn build && yarn serve", + "serve": "gatsby serve", + "prod": "make pre-build && make process-artworks && GATSBY_CPU_COUNT=2 NODE_OPTIONS=--max-old-space-size=4096 gatsby build && make post-build && yarn serve", "bundle-map": "bundle-buddy public/*.map" }, "dependencies": { - "@artsy/fresnel": "^3.0.2", - "gatsby": "^4.0.0", - "gatsby-cli": "^4.0.0", - "gatsby-plugin-image": "^2.15.1", - "gatsby-plugin-no-sourcemaps": "^3.14.0", - "gatsby-plugin-nprogress": "^3.14.0", - "gatsby-plugin-react-helmet": "^4.14.0", - "gatsby-plugin-sharp": "^4.15.1", - "gatsby-source-filesystem": "^4.15.0", - "gatsby-transformer-sharp": "^4.15.1", + "@artsy/fresnel": "^6.1.0", + "@babel/core": "^7.20.12", + "@loadable/component": "^5.15.2", + "@tanstack/react-query": "^4.28.0", + "babel-eslint": "^10.0.0", + "gatsby": "^5.4.1", + "gatsby-cli": "^5.4.0", + "gatsby-plugin-image": "^3.7.0", + "gatsby-plugin-minify-html": "^1.0.4", + "gatsby-plugin-no-sourcemaps": "^5.7.0", + "gatsby-plugin-nprogress": "^5.7.0", + "gatsby-plugin-perf-budgets": "^0.0.18", + "gatsby-plugin-purgecss": "^6.2.1", + "gatsby-plugin-react-head": "^1.1.0", + "gatsby-plugin-remove-fingerprints": "^0.0.2", + "gatsby-plugin-remove-generator": "^1.3.0", + "gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.30", + "gatsby-source-filesystem": "^5.7.0", "hoist-non-react-statics": "^3.3.2", - "latex.js": "^0.11.1", + "latex.js": "^0.12.4", "md5": "^2.2.1", - "moment": "2.29.1", + "moment": "^2.29.3", "moment-range": "^4.0.2", + "next": "^13.2.4", "process": "^0.11.10", - "puppeteer": "^2.1.1", - "randomcolor": "^0.5.4", - "react": "^17.0.2", - "react-dom": "^17.0.2", - "react-helmet": "^6.1.0", - "react-loading-skeleton": "^2.0.1", + "puppeteer": "^19.7.5", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-force-graph": "^1.42.0", + "react-force-graph-2d": "^1.23.15", + "react-head": "^3.4.2", + "react-loading-skeleton": "^3.2.0", "react-masonry-css": "^1.0.16", + "react-svg-worldmap": "^2.0.0-alpha.16", "react-tag-cloud": "^1.3.2", - "recharts": "^2.1.4", - "rimraf": "^3.0.2", - "semantic-ui-css": "^2.4.1", - "semantic-ui-react": "^2.1.2", - "simple-react-lightbox": "^3.6.9-0", + "recharts": "^2.5.0", + "rimraf": "^4.4.0", + "semantic-ui-css": "^2.5.0", + "semantic-ui-react": "^2.1.4", + "sharp": "^0.31.3", "use-detect-print": "^0.0.2" }, "devDependencies": { "bundle-buddy": "^0.2.2" + }, + "BAK": { + "react-head": "^3.4.2", + "gatsby-plugin-react-head": "^1.1.0", + "gatsby-plugin-react-helmet": "^6.7.0", + "react-query": "^3.39.2", + "gatsby-plugin-sharp": "^5.4.0", + "gatsby-transformer-sharp": "^5.4.0", + "randomcolor": "^0.6.2" } } diff --git a/processImages.py b/processImages.py new file mode 100755 index 0000000000..0d97975127 --- /dev/null +++ b/processImages.py @@ -0,0 +1,174 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Resize images and copy them to the static folder +""" + +import os, sys +import json +import shutil +from PIL import Image +import numpy as np +import urllib.parse +# for getting dominany color +# from colorthief import ColorThief + +IMAGECUTOFF = 100 + + +try: + os.makedirs('artworks-json') +except FileExistsError: + pass + + +# PARSE IMAGES + +root = 'artworks' +filetypes = ['png', 'jpg', 'jpeg', 'webp'] + +images = {} + +imagecounter = {} + +for path, subdirs, files in os.walk(root): + for name in files: + ending = name.split(".")[-1] + if not ending in filetypes: + continue + cat = path.split("/")[1] + img_path = os.path.join(path, name) + mod_date = int(os.path.getmtime(img_path)) + try: + images[cat].append( (img_path, mod_date) ) + except: + images[cat] = [ (img_path, mod_date) ] + + +for cat in images.keys(): + # sort by modification date + images[cat].sort(key=lambda x: int(x[1]), reverse=True) + + # only process the latest x = IMAGECUTOFF images for each category + if IMAGECUTOFF: + images[cat] = images[cat][0:IMAGECUTOFF] + + outfile = f'artworks-json/{cat}.json' + with open(outfile, 'w') as f: + json.dump(images[cat], f) + print(f"({len(images[cat])})\t{cat}: {outfile}") + + +# special processing for the latest images (because there is no folder for them) +# get latest 50 images +latest = [] +for cat in images.keys(): + for img in images[cat]: + latest.append(img) +latest.sort(key=lambda x: int(x[1]), reverse=True) +latest = latest[0:49] +with open(f'artworks-json/latest.json', 'w') as f: + json.dump(latest, f) + + + +def rgb_to_hex(r, g, b): + return ('{:X}{:X}{:X}').format(r, g, b) + + +# PROCESS IMAGES + +root = 'artworks-json' +filetypes = ['json'] +outroot = 'public' +chunkspath = 'public/artworks/json' + +try: + os.makedirs(chunkspath) +except FileExistsError: + pass + + + +for path, subdirs, files in os.walk(root): + imagecounter = 0 + for name in files: + jsonfile = os.path.join(path, name) + imgs = json.load(open(jsonfile, 'r')) + convertedimgs = [] + for info in imgs: + imgpath = info[0] + + if name == 'latest.json': + cat = 'latest' + else: + cat = imgpath.split('/')[1] + + outpath = os.path.join(outroot, imgpath) + + webpoutpath = outpath.split('.') + webpoutpath[-1] = "webp" + webpoutpath = ".".join(webpoutpath) + + im = Image.open(imgpath) + + # resize with aspect ratio + w, h = im.size + ar = w/h + + width = 400 + height = int(400/ar) + + try: + average_color_row = np.average(im, axis=0) + average_color = np.average(average_color_row, axis=0) + average_color = [ int(x) for x in average_color ] + average_color = "#" + rgb_to_hex(average_color[0], average_color[1], average_color[2]) + except: + average_color = "#" + rgb_to_hex(222, 222, 222) + + # cache check - skip if file already exists + if not os.path.isfile(webpoutpath): + im400 = im.resize((width,height)) + try: + os.makedirs(os.path.dirname(outpath)) + except FileExistsError: + pass + im400.save(webpoutpath, "webp") + + # encode e.g. spaces and hashtags in filename + webpoutpath = urllib.parse.quote(webpoutpath) + print(webpoutpath) + + # remove 'public/' from output path + webpoutpath = webpoutpath.split('/')[1:] + # encode e.g. hashtags and spaces + webpoutpath = "https://www.jonaso.de/" + "/".join(webpoutpath) + + convertedimgs.append((webpoutpath, width, height, average_color)) + + # write json with webp + json.dump(convertedimgs, open(os.path.join(outroot, 'artworks', 'json', f'webp-{cat}.json'), 'w')) + + chunksize = 100 + chunks = [convertedimgs[x:x+100] for x in range(0, len(convertedimgs), 100)] + total = len(convertedimgs) + + k = 0 + for batch in chunks: + # detect last iteration + outbatch = { + 'total': total, + 'items': batch, + } + if k == len(chunks) - 1: + outbatch['next'] = False + else: + outbatch['next'] = k+1 + json.dump(outbatch, open(os.path.join(chunkspath, f'webp-{cat}-{k}.json'), 'w')) + k += 1 + + +shutil.rmtree('artworks-json', ignore_errors=True) + + diff --git a/public/01d618afbcdd130b5a8da8660cabb900ced88889-a8f132410e064b0835c9.js b/public/01d618afbcdd130b5a8da8660cabb900ced88889-a8f132410e064b0835c9.js deleted file mode 100644 index f3f0302d98..0000000000 --- a/public/01d618afbcdd130b5a8da8660cabb900ced88889-a8f132410e064b0835c9.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 01d618afbcdd130b5a8da8660cabb900ced88889-a8f132410e064b0835c9.js.LICENSE.txt */ -(self.webpackChunkjonas_de=self.webpackChunkjonas_de||[]).push([[654],{59349:function(t){var e={px:{px:1,cm:96/2.54,mm:96/25.4,in:96,pt:96/72,pc:16},cm:{px:2.54/96,cm:1,mm:.1,in:2.54,pt:2.54/72,pc:2.54/6},mm:{px:25.4/96,cm:10,mm:1,in:25.4,pt:25.4/72,pc:25.4/6},in:{px:1/96,cm:1/2.54,mm:1/25.4,in:1,pt:1/72,pc:1/6},pt:{px:.75,cm:72/2.54,mm:72/25.4,in:72,pt:1,pc:12},pc:{px:6/96,cm:6/2.54,mm:6/25.4,in:6,pt:6/72,pc:1},deg:{deg:1,grad:.9,rad:180/Math.PI,turn:360},grad:{deg:400/360,grad:1,rad:200/Math.PI,turn:400},rad:{deg:Math.PI/180,grad:Math.PI/200,rad:1,turn:2*Math.PI},turn:{deg:1/360,grad:1/400,rad:.5/Math.PI,turn:1},s:{s:1,ms:.001},ms:{s:1e3,ms:1},Hz:{Hz:1,kHz:1e3},kHz:{Hz:.001,kHz:1},dpi:{dpi:1,dpcm:1/2.54,dppx:1/96},dpcm:{dpi:2.54,dpcm:1,dppx:2.54/96},dppx:{dpi:96,dpcm:96/2.54,dppx:1}};t.exports=function(t,r,n,i){if(!e.hasOwnProperty(n))throw new Error("Cannot convert to "+n);if(!e[n].hasOwnProperty(r))throw new Error("Cannot convert from "+r+" to "+n);var o=e[n][r]*t;return!1!==i?(i=Math.pow(10,parseInt(i)||5),Math.round(o*i)/i):o}},65556:function(t){"use strict";var e=Object.prototype.hasOwnProperty,r="~";function n(){}function i(t,e,r){this.fn=t,this.context=e,this.once=r||!1}function o(t,e,n,o,a){if("function"!=typeof n)throw new TypeError("The listener must be a function");var s=new i(n,o||t,a),c=r?r+e:e;return t._events[c]?t._events[c].fn?t._events[c]=[t._events[c],s]:t._events[c].push(s):(t._events[c]=s,t._eventsCount++),t}function a(t,e){0==--t._eventsCount?t._events=new n:delete t._events[e]}function s(){this._events=new n,this._eventsCount=0}Object.create&&(n.prototype=Object.create(null),(new n).__proto__||(r=!1)),s.prototype.eventNames=function(){var t,n,i=[];if(0===this._eventsCount)return i;for(n in t=this._events)e.call(t,n)&&i.push(r?n.slice(1):n);return Object.getOwnPropertySymbols?i.concat(Object.getOwnPropertySymbols(t)):i},s.prototype.listeners=function(t){var e=r?r+t:t,n=this._events[e];if(!n)return[];if(n.fn)return[n.fn];for(var i=0,o=n.length,a=new Array(o);it.length)&&(e=t.length);for(var r=0,n=new Array(e);r=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function O(t){var e=t.offset,r=t.layout,n=t.width,i=t.dataKey,o=t.data,a=t.dataPointFormatter,s=t.xAxis,c=t.yAxis,l=_(t,["offset","layout","width","dataKey","data","dataPointFormatter","xAxis","yAxis"]),u=(0,g.L6)(l),f=o.map((function(t,o){var l=a(t,i),f=l.x,p=l.y,d=l.value,y=l.errorVal;if(!y)return null;var g,b,_=[];if(Array.isArray(y)){var O=x(y,2);g=O[0],b=O[1]}else g=b=y;if("vertical"===r){var w=s.scale,k=p+e,E=k+n,A=k-n,P=w(d-g),j=w(d+b);_.push({x1:j,y1:E,x2:j,y2:A}),_.push({x1:P,y1:k,x2:j,y2:k}),_.push({x1:P,y1:E,x2:P,y2:A})}else if("horizontal"===r){var S=c.scale,I=f+e,T=I-n,M=I+n,C=S(d-g),R=S(d+b);_.push({x1:T,y1:R,x2:M,y2:R}),_.push({x1:I,y1:C,x2:I,y2:R}),_.push({x1:T,y1:C,x2:M,y2:C})}return h.createElement(v.m,m({className:"recharts-errorBar",key:"bar-".concat(o)},u),_.map((function(t,e){return h.createElement("line",m({},t,{key:"line-".concat(e)}))})))}));return h.createElement(v.m,{className:"recharts-errorBars"},f)}O.defaultProps={stroke:"black",strokeWidth:1.5,width:5,offset:0,layout:"horizontal"},O.displayName="ErrorBar";var w=function(t){return null};w.displayName="Cell";var k=r(31157),E=r(2562),A=r(70483),P=r(18441),j=r(44053);function S(t){return S="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},S(t)}function I(t,e){if(null==t)return{};var r,n,i=function(t,e){if(null==t)return{};var r,n,i={},o=Object.keys(t);for(n=0;n=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function T(){return T=Object.assign||function(t){for(var e=1;e0&&Math.abs(m)0&&Math.abs(v)=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function h(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function f(t){for(var e=1;e=0;--e)i[e]=(a[e]-i[e+1])/o[e];for(o[n-1]=(t[n]+i[n-1])/2,e=0;e=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var r=this._x*(1-this._t)+t*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,e)}}this._x=t,this._y=e}};var K=r(56940),q=r(73759),J=r(21235);function Q(t){return t[0]}function tt(t){return t[1]}function et(t,e){var r=(0,J.Z)(!0),n=null,i=V,o=null;function a(a){var s,c,l,u=(a=(0,q.Z)(a)).length,h=!1;for(null==n&&(o=i(l=(0,K.Z)())),s=0;s<=u;++s)!(s=u;--h)s.point(v[h],g[h]);s.lineEnd(),s.areaEnd()}y&&(v[l]=+t(f,l,c),g[l]=+e(f,l,c),s.point(n?+n(f,l,c):v[l],r?+r(f,l,c):g[l]))}if(p)return s=null,p+""||null}function l(){return et().defined(i).curve(a).context(o)}return t="function"==typeof t?t:void 0===t?Q:(0,J.Z)(+t),e="function"==typeof e?e:void 0===e?(0,J.Z)(0):(0,J.Z)(+e),r="function"==typeof r?r:void 0===r?tt:(0,J.Z)(+r),c.x=function(e){return arguments.length?(t="function"==typeof e?e:(0,J.Z)(+e),n=null,c):t},c.x0=function(e){return arguments.length?(t="function"==typeof e?e:(0,J.Z)(+e),c):t},c.x1=function(t){return arguments.length?(n=null==t?null:"function"==typeof t?t:(0,J.Z)(+t),c):n},c.y=function(t){return arguments.length?(e="function"==typeof t?t:(0,J.Z)(+t),r=null,c):e},c.y0=function(t){return arguments.length?(e="function"==typeof t?t:(0,J.Z)(+t),c):e},c.y1=function(t){return arguments.length?(r=null==t?null:"function"==typeof t?t:(0,J.Z)(+t),c):r},c.lineX0=c.lineY0=function(){return l().x(t).y(e)},c.lineY1=function(){return l().x(t).y(r)},c.lineX1=function(){return l().x(n).y(e)},c.defined=function(t){return arguments.length?(i="function"==typeof t?t:(0,J.Z)(!!t),c):i},c.curve=function(t){return arguments.length?(a=t,null!=o&&(s=a(o)),c):a},c.context=function(t){return arguments.length?(null==t?o=s=null:s=a(o=t),c):o},c}var nt=r(3463),it=r(2562);function ot(t){return ot="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ot(t)}function at(){return at=Object.assign||function(t){for(var e=1;e180),",").concat(+(o>s),",\n ").concat(l.x,",").concat(l.y,"\n ");if(n>0){var h=(0,It.op)(e,r,n,o),f=(0,It.op)(e,r,n,s);u+="L ".concat(f.x,",").concat(f.y,"\n A ").concat(n,",").concat(n,",0,\n ").concat(+(Math.abs(a)>180),",").concat(+(o<=s),",\n ").concat(h.x,",").concat(h.y," Z")}else u+="L ".concat(e,",").concat(r," Z");return u},Ft=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&Nt(t,e)}(o,t);var e,r,n,i=Lt(o);function o(){return Ct(this,o),i.apply(this,arguments)}return e=o,r=[{key:"render",value:function(){var t=this.props,e=t.cx,r=t.cy,n=t.innerRadius,i=t.outerRadius,o=t.cornerRadius,a=t.forceCornerRadius,s=t.cornerIsExternal,c=t.startAngle,l=t.endAngle,u=t.className;if(i0&&Math.abs(c-l)<360?function(t){var e=t.cx,r=t.cy,n=t.innerRadius,i=t.outerRadius,o=t.cornerRadius,a=t.forceCornerRadius,s=t.cornerIsExternal,c=t.startAngle,l=t.endAngle,u=(0,it.uY)(l-c),h=Vt({cx:e,cy:r,radius:i,angle:c,sign:u,cornerRadius:o,cornerIsExternal:s}),f=h.circleTangency,p=h.lineTangency,d=h.theta,y=Vt({cx:e,cy:r,radius:i,angle:l,sign:-u,cornerRadius:o,cornerIsExternal:s}),v=y.circleTangency,g=y.lineTangency,m=y.theta,x=s?Math.abs(c-l):Math.abs(c-l)-d-m;if(x<0)return a?"M ".concat(p.x,",").concat(p.y,"\n a").concat(o,",").concat(o,",0,0,1,").concat(2*o,",0\n a").concat(o,",").concat(o,",0,0,1,").concat(2*-o,",0\n "):zt({cx:e,cy:r,innerRadius:n,outerRadius:i,startAngle:c,endAngle:l});var b="M ".concat(p.x,",").concat(p.y,"\n A").concat(o,",").concat(o,",0,0,").concat(+(u<0),",").concat(f.x,",").concat(f.y,"\n A").concat(i,",").concat(i,",0,").concat(+(x>180),",").concat(+(u<0),",").concat(v.x,",").concat(v.y,"\n A").concat(o,",").concat(o,",0,0,").concat(+(u<0),",").concat(g.x,",").concat(g.y,"\n ");if(n>0){var _=Vt({cx:e,cy:r,radius:n,angle:c,sign:u,isExternal:!0,cornerRadius:o,cornerIsExternal:s}),O=_.circleTangency,w=_.lineTangency,k=_.theta,E=Vt({cx:e,cy:r,radius:n,angle:l,sign:-u,isExternal:!0,cornerRadius:o,cornerIsExternal:s}),A=E.circleTangency,P=E.lineTangency,j=E.theta,S=s?Math.abs(c-l):Math.abs(c-l)-k-j;if(S<0&&0===o)return"".concat(b,"L").concat(e,",").concat(r,"Z");b+="L".concat(P.x,",").concat(P.y,"\n A").concat(o,",").concat(o,",0,0,").concat(+(u<0),",").concat(A.x,",").concat(A.y,"\n A").concat(n,",").concat(n,",0,").concat(+(S>180),",").concat(+(u>0),",").concat(O.x,",").concat(O.y,"\n A").concat(o,",").concat(o,",0,0,").concat(+(u<0),",").concat(w.x,",").concat(w.y,"Z")}else b+="L".concat(e,",").concat(r,"Z");return b}({cx:e,cy:r,innerRadius:n,outerRadius:i,cornerRadius:Math.min(d,p/2),forceCornerRadius:a,cornerIsExternal:s,startAngle:c,endAngle:l}):zt({cx:e,cy:r,innerRadius:n,outerRadius:i,startAngle:c,endAngle:l}),w.createElement("path",Mt({},(0,nt.L6)(this.props,!0),{className:f,d:h}))}}],r&&Rt(e.prototype,r),n&&Rt(e,n),o}(w.PureComponent);function Gt(t){return Gt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Gt(t)}function Xt(){return Xt=Object.assign||function(t){for(var e=1;e=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function ue(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function he(t,e){for(var r=0;r0?i(this.props):i(l)),r<=0||n<=0||!u||!u.length?null:w.createElement(P.m,{className:E()("recharts-cartesian-axis",o)},e&&this.renderAxisLine(),this.renderTicks(u),re._.renderCallByParent(this.props))}}],n=[{key:"getTicks",value:function(t){var e=t.tick,r=t.ticks,n=t.viewBox,i=t.minTickGap,a=t.orientation,s=t.interval,c=t.tickFormatter,l=t.unit;return r&&r.length&&e?(0,it.hj)(s)||ne.x.isSsr?o.getNumberIntervalTicks(r,"number"==typeof s&&(0,it.hj)(s)?s:0):"preserveStartEnd"===s?o.getTicksStart({ticks:r,tickFormatter:c,viewBox:n,orientation:a,minTickGap:i,unit:l},!0):"preserveStart"===s?o.getTicksStart({ticks:r,tickFormatter:c,viewBox:n,orientation:a,minTickGap:i,unit:l}):o.getTicksEnd({ticks:r,tickFormatter:c,viewBox:n,orientation:a,minTickGap:i,unit:l}):[]}},{key:"getNumberIntervalTicks",value:function(t,e){return t.filter((function(t,r){return r%(e+1)==0}))}},{key:"getTicksStart",value:function(t,e){var r,n,i=t.ticks,o=t.tickFormatter,a=t.viewBox,s=t.orientation,l=t.minTickGap,u=t.unit,h=a.x,f=a.y,p=a.width,d=a.height,y="top"===s||"bottom"===s?"width":"height",v=(i||[]).slice(),g=u&&"width"===y?(0,te.xE)(u)[y]:0,m=v.length,x=m>=2?(0,it.uY)(v[1].coordinate-v[0].coordinate):1;if(1===x?(r="width"===y?h:f,n="width"===y?h+p:f+d):(r="width"===y?h+p:f+d,n="width"===y?h:f),e){var b=i[m-1],_=c()(o)?o(b.value,m-1):b.value,O=(0,te.xE)(_)[y]+g,w=x*(b.coordinate+x*O/2-n);v[m-1]=b=se(se({},b),{},{tickCoord:w>0?b.coordinate-w*x:b.coordinate}),x*(b.tickCoord-x*O/2-r)>=0&&x*(b.tickCoord+x*O/2-n)<=0&&(n=b.tickCoord-x*(O/2+l),v[m-1]=se(se({},b),{},{isShow:!0}))}for(var k=e?m-1:m,E=0;E=0&&x*(A.tickCoord+x*j/2-n)<=0&&(r=A.tickCoord+x*(j/2+l),v[E]=se(se({},A),{},{isShow:!0}))}return v.filter((function(t){return t.isShow}))}},{key:"getTicksEnd",value:function(t){var e,r,n=t.ticks,i=t.tickFormatter,o=t.viewBox,a=t.orientation,s=t.minTickGap,l=t.unit,u=o.x,h=o.y,f=o.width,p=o.height,d="top"===a||"bottom"===a?"width":"height",y=l&&"width"===d?(0,te.xE)(l)[d]:0,v=(n||[]).slice(),g=v.length,m=g>=2?(0,it.uY)(v[1].coordinate-v[0].coordinate):1;1===m?(e="width"===d?u:h,r="width"===d?u+f:h+p):(e="width"===d?u+f:h+p,r="width"===d?u:h);for(var x=g-1;x>=0;x--){var b=v[x],_=c()(i)?i(b.value,g-x-1):b.value,O=(0,te.xE)(_)[d]+y;if(x===g-1){var w=m*(b.coordinate+m*O/2-r);v[x]=b=se(se({},b),{},{tickCoord:w>0?b.coordinate-w*m:b.coordinate})}else v[x]=b=se(se({},b),{},{tickCoord:b.coordinate});m*(b.tickCoord-m*O/2-e)>=0&&m*(b.tickCoord+m*O/2-r)<=0&&(r=b.tickCoord-m*(O/2+s),v[x]=se(se({},b),{},{isShow:!0}))}return v.filter((function(t){return t.isShow}))}},{key:"renderTickItem",value:function(t,e,r){return w.isValidElement(t)?w.cloneElement(t,e):c()(t)?t(e):w.createElement(ee.x,oe({},e,{className:"recharts-cartesian-axis-tick-value"}),r)}}],r&&he(e.prototype,r),n&&he(e,n),o}(w.Component);ve.displayName="CartesianAxis",ve.defaultProps={x:0,y:0,width:0,height:0,viewBox:{x:0,y:0,width:0,height:0},orientation:"bottom",ticks:[],stroke:"#666",tickLine:!0,axisLine:!0,tick:!0,mirror:!1,minTickGap:5,tickSize:6,tickMargin:2,interval:"preserveEnd"};var ge=r(87286),me=r(44053);function xe(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function be(t){for(var e=1;e0&&e.handleDrag(t.changedTouches[0])},e.handleDragEnd=function(){e.setState({isTravellerMoving:!1,isSlideMoving:!1}),e.detachDragEndListener()},e.handleLeaveWrapper=function(){(e.state.isTravellerMoving||e.state.isSlideMoving)&&(e.leaveTimer=window.setTimeout(e.handleDragEnd,e.props.leaveTimeOut))},e.handleEnterSlideOrTraveller=function(){e.setState({isTextActive:!0})},e.handleLeaveSlideOrTraveller=function(){e.setState({isTextActive:!1})},e.handleSlideDragStart=function(t){var r=Re(t)?t.changedTouches[0]:t;e.setState({isTravellerMoving:!1,isSlideMoving:!0,slideMoveStartX:r.pageX}),e.attachDragEndListener()},e.travellerDragStartHandlers={startX:e.handleTravellerDragStart.bind(Me(e),"startX"),endX:e.handleTravellerDragStart.bind(Me(e),"endX")},e.state={},e}return e=o,n=[{key:"renderDefaultTraveller",value:function(t){var e=t.x,r=t.y,n=t.width,i=t.height,o=t.stroke,a=Math.floor(r+i/2)-1;return w.createElement(w.Fragment,null,w.createElement("rect",{x:e,y:r,width:n,height:i,fill:o,stroke:"none"}),w.createElement("line",{x1:e+1,y1:a,x2:e+n-1,y2:a,fill:"none",stroke:"#fff"}),w.createElement("line",{x1:e+1,y1:a+2,x2:e+n-1,y2:a+2,fill:"none",stroke:"#fff"}))}},{key:"renderTraveller",value:function(t,e){return w.isValidElement(t)?w.cloneElement(t,e):c()(t)?t(e):o.renderDefaultTraveller(e)}},{key:"getDerivedStateFromProps",value:function(t,e){var r=t.data,n=t.width,i=t.x,o=t.travellerWidth,a=t.updateId,s=t.startIndex,c=t.endIndex;if(r!==e.prevData||a!==e.prevUpdateId)return Ae({prevData:r,prevTravellerWidth:o,prevUpdateId:a,prevX:i,prevWidth:n},r&&r.length?function(t){var e=t.data,r=t.startIndex,n=t.endIndex,i=t.x,o=t.width,a=t.travellerWidth;if(!e||!e.length)return{};var s=e.length,c=(0,ge.x)().domain(v()(0,s)).range([i,i+o-a]),l=c.domain().map((function(t){return c(t)}));return{isTextActive:!1,isSlideMoving:!1,isTravellerMoving:!1,startX:c(r),endX:c(n),scale:c,scaleValues:l}}({data:r,width:n,x:i,travellerWidth:o,startIndex:s,endIndex:c}):{scale:null,scaleValues:null});if(e.scale&&(n!==e.prevWidth||i!==e.prevX||o!==e.prevTravellerWidth)){e.scale.range([i,i+n-o]);var l=e.scale.domain().map((function(t){return e.scale(t)}));return{prevData:r,prevTravellerWidth:o,prevUpdateId:a,prevX:i,prevWidth:n,startX:e.scale(t.startIndex),endX:e.scale(t.endIndex),scaleValues:l}}return null}},{key:"getIndexInRange",value:function(t,e){for(var r=0,n=t.length-1;n-r>1;){var i=Math.floor((r+n)/2);t[i]>e?n=i:r=i}return e>=t[n]?n:r}}],(r=[{key:"componentWillUnmount",value:function(){this.leaveTimer&&(clearTimeout(this.leaveTimer),this.leaveTimer=null),this.detachDragEndListener()}},{key:"getIndex",value:function(t){var e=t.startX,r=t.endX,n=this.state.scaleValues,i=this.props,a=i.gap,s=i.data.length-1,c=Math.min(e,r),l=Math.max(e,r),u=o.getIndexInRange(n,c),h=o.getIndexInRange(n,l);return{startIndex:u-u%a,endIndex:h===s?s:h-h%a}}},{key:"getTextOfTick",value:function(t){var e=this.props,r=e.data,n=e.tickFormatter,i=e.dataKey,o=(0,me.F$)(r[t],i,t);return c()(n)?n(o,t):o}},{key:"attachDragEndListener",value:function(){window.addEventListener("mouseup",this.handleDragEnd,!0),window.addEventListener("touchend",this.handleDragEnd,!0)}},{key:"detachDragEndListener",value:function(){window.removeEventListener("mouseup",this.handleDragEnd,!0),window.removeEventListener("touchend",this.handleDragEnd,!0)}},{key:"handleSlideDrag",value:function(t){var e=this.state,r=e.slideMoveStartX,n=e.startX,i=e.endX,o=this.props,a=o.x,s=o.width,c=o.travellerWidth,l=o.startIndex,u=o.endIndex,h=o.onChange,f=t.pageX-r;f>0?f=Math.min(f,a+s-c-i,a+s-c-n):f<0&&(f=Math.max(f,a-n,a-i));var p=this.getIndex({startX:n+f,endX:i+f});p.startIndex===l&&p.endIndex===u||!h||h(p),this.setState({startX:n+f,endX:i+f,slideMoveStartX:t.pageX})}},{key:"handleTravellerDragStart",value:function(t,e){var r=Re(e)?e.changedTouches[0]:e;this.setState({isSlideMoving:!1,isTravellerMoving:!0,movingTravellerId:t,brushMoveStartX:r.pageX}),this.attachDragEndListener()}},{key:"handleTravellerMove",value:function(t){var e,r=this.state,n=r.brushMoveStartX,i=r.movingTravellerId,o=r.endX,a=r.startX,s=this.state[i],c=this.props,l=c.x,u=c.width,h=c.travellerWidth,f=c.onChange,p=c.gap,d=c.data,y={startX:this.state.startX,endX:this.state.endX},v=t.pageX-n;v>0?v=Math.min(v,l+u-h-s):v<0&&(v=Math.max(v,l-s)),y[i]=s+v;var g=this.getIndex(y),m=g.startIndex,x=g.endIndex;this.setState((Pe(e={},i,s+v),Pe(e,"brushMoveStartX",t.pageX),e),(function(){var t;f&&(t=d.length-1,("startX"===i&&(o>a?m%p==0:x%p==0)||oa?x%p==0:m%p==0)||o>a&&x===t)&&f(g))}))}},{key:"renderBackground",value:function(){var t=this.props,e=t.x,r=t.y,n=t.width,i=t.height,o=t.fill,a=t.stroke;return w.createElement("rect",{stroke:a,fill:o,x:e,y:r,width:n,height:i})}},{key:"renderPanorama",value:function(){var t=this.props,e=t.x,r=t.y,n=t.width,i=t.height,o=t.data,a=t.children,s=t.padding,c=w.Children.only(a);return c?w.cloneElement(c,{x:e,y:r,width:n,height:i,margin:s,compact:!0,data:o}):null}},{key:"renderTravellerLayer",value:function(t,e){var r=this.props,n=r.y,i=r.travellerWidth,a=r.height,s=r.traveller,c=Math.max(t,this.props.x),l=Ae(Ae({},(0,nt.L6)(this.props)),{},{x:c,y:n,width:i,height:a});return w.createElement(P.m,{className:"recharts-brush-traveller",onMouseEnter:this.handleEnterSlideOrTraveller,onMouseLeave:this.handleLeaveSlideOrTraveller,onMouseDown:this.travellerDragStartHandlers[e],onTouchStart:this.travellerDragStartHandlers[e],style:{cursor:"col-resize"}},o.renderTraveller(s,l))}},{key:"renderSlide",value:function(t,e){var r=this.props,n=r.y,i=r.height,o=r.stroke,a=r.travellerWidth,s=Math.min(t,e)+a,c=Math.max(Math.abs(e-t)-a,0);return w.createElement("rect",{className:"recharts-brush-slide",onMouseEnter:this.handleEnterSlideOrTraveller,onMouseLeave:this.handleLeaveSlideOrTraveller,onMouseDown:this.handleSlideDragStart,onTouchStart:this.handleSlideDragStart,style:{cursor:"move"},stroke:"none",fill:o,fillOpacity:.2,x:s,y:n,width:c,height:i})}},{key:"renderText",value:function(){var t=this.props,e=t.startIndex,r=t.endIndex,n=t.y,i=t.height,o=t.travellerWidth,a=t.stroke,s=this.state,c=s.startX,l=s.endX,u={pointerEvents:"none",fill:a};return w.createElement(P.m,{className:"recharts-brush-texts"},w.createElement(ee.x,ke({textAnchor:"end",verticalAnchor:"middle",x:Math.min(c,l)-5,y:n+i/2},u),this.getTextOfTick(e)),w.createElement(ee.x,ke({textAnchor:"start",verticalAnchor:"middle",x:Math.max(c,l)+o+5,y:n+i/2},u),this.getTextOfTick(r)))}},{key:"render",value:function(){var t=this.props,e=t.data,r=t.className,n=t.children,i=t.x,o=t.y,a=t.width,s=t.height,c=t.alwaysShowText,l=this.state,u=l.startX,h=l.endX,f=l.isTextActive,p=l.isSlideMoving,d=l.isTravellerMoving;if(!e||!e.length||!(0,it.hj)(i)||!(0,it.hj)(o)||!(0,it.hj)(a)||!(0,it.hj)(s)||a<=0||s<=0)return null;var y=E()("recharts-brush",r),v=1===w.Children.count(n),g=function(t,e){if(!t)return null;var r=t.replace(/(\w)/,(function(t){return t.toUpperCase()})),n=Oe.reduce((function(t,n){return be(be({},t),{},_e({},n+r,e))}),{});return n[t]=e,n}("userSelect","none");return w.createElement(P.m,{className:y,onMouseMove:this.handleDrag,onMouseLeave:this.handleLeaveWrapper,onTouchMove:this.handleTouchMove,style:g},this.renderBackground(),v&&this.renderPanorama(),this.renderSlide(u,h),this.renderTravellerLayer(u,"startX"),this.renderTravellerLayer(h,"endX"),(f||p||d||c)&&this.renderText())}}])&&je(e.prototype,r),n&&je(e,n),o}(w.PureComponent);Ne.displayName="Brush",Ne.defaultProps={height:40,travellerWidth:5,gap:1,fill:"#fff",stroke:"#666",padding:{top:1,right:1,bottom:1,left:1},leaveTimeOut:1e3,alwaysShowText:!1};var Le=function(t,e){var r=t.alwaysShow,n=t.ifOverflow;return r&&(n="extendDomain"),n===e},De=r(66604),Be=r.n(De);function Ve(t,e){for(var r=0;r1&&void 0!==arguments[1]?arguments[1]:{},r=e.bandAware,n=e.position;if(void 0!==t){if(n)switch(n){case"start":default:return this.scale(t);case"middle":var i=this.bandwidth?this.bandwidth()/2:0;return this.scale(t)+i;case"end":var o=this.bandwidth?this.bandwidth():0;return this.scale(t)+o}if(r){var a=this.bandwidth?this.bandwidth()/2:0;return this.scale(t)+a}return this.scale(t)}}},{key:"isInRange",value:function(t){var e=this.range(),r=e[0],n=e[e.length-1];return r<=n?t>=r&&t<=n:t>=n&&t<=r}}],n=[{key:"create",value:function(e){return new t(e)}}],r&&Ve(e.prototype,r),n&&Ve(e,n),t}();We.EPS=1e-4;var $e=function(t){var e=Object.keys(t).reduce((function(e,r){return Fe(Fe({},e),{},Ge({},r,We.create(t[r])))}),{});return Fe(Fe({},e),{},{apply:function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=r.bandAware,i=r.position;return Be()(t,(function(t,r){return e[r].apply(t,{bandAware:n,position:i})}))},isInRange:function(t){return i()(t,(function(t,r){return e[r].isInRange(t)}))}})},Ye=r(40742);function He(){return He=Object.assign||function(t){for(var e=1;et.length)&&(e=t.length);for(var r=0,n=new Array(e);r=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function br(t,e){for(var r=0;rt.length)&&(e=t.length);for(var r=0,n=new Array(e);r0?a:r&&r.props&&r.props.data&&r.props.data.length>0?r.props.data:t&&t.length&&(0,it.hj)(i)&&(0,it.hj)(o)?t.slice(i,o+1):[]},Br=function(t,e,r,n){var i=t.graphicalItems,o=t.tooltipAxis,a=Dr(e,t);return r<0||!i||!i.length||r>=a.length?null:i.reduce((function(t,e){if(e.props.hide)return t;var i,s=e.props.data;if(o.dataKey&&!o.allowDuplicatedCategory){var c=void 0===s?a:s;i=(0,it.Ap)(c,o.dataKey,n)}else i=s&&s[r]||a[r];return i?[].concat(Ar(t),[(0,me.Qo)(e,i)]):t}),[])},Vr=function(t,e,r,n){var i=n||{x:t.chartX,y:t.chartY},o=function(t,e){return"horizontal"===e?t.x:"vertical"===e?t.y:"centric"===e?t.angle:t.radius}(i,r),a=t.orderedTooltipTicks,s=t.tooltipAxis,c=t.tooltipTicks,l=(0,me.VO)(o,a,c,s);if(l>=0&&c){var u=c[l]&&c[l].value,h=Br(t,e,l,u),f=function(t,e,r,n){var i=e.find((function(t){return t&&t.index===r}));if(i){if("horizontal"===t)return{x:i.coordinate,y:n.y};if("vertical"===t)return{x:n.x,y:i.coordinate};if("centric"===t){var o=i.coordinate,a=n.radius;return Ir(Ir(Ir({},n),(0,It.op)(n.cx,n.cy,a,o)),{},{angle:o,radius:a})}var s=i.coordinate,c=n.angle;return Ir(Ir(Ir({},n),(0,It.op)(n.cx,n.cy,s,c)),{},{angle:c,radius:s})}return Cr}(r,a,l,i);return{activeTooltipIndex:l,activeLabel:u,activePayload:h,activeCoordinate:f}}return null},zr=function(t,e){var r=e.axisType,n=void 0===r?"xAxis":r,i=e.AxisComp,o=e.graphicalItems,a=e.stackGroups,s=e.dataStartIndex,c=e.dataEndIndex,l=t.children,u="".concat(n,"Id"),h=(0,Jt.NN)(l,i),f={};return h&&h.length?f=function(t,e){var r=e.axes,n=e.graphicalItems,i=e.axisType,o=e.axisIdKey,a=e.stackGroups,s=e.dataStartIndex,c=e.dataEndIndex,l=t.layout,u=t.children,h=t.stackOffset,f=(0,me.NA)(l,i);return r.reduce((function(e,r){var p=r.props,d=p.type,y=p.dataKey,g=p.allowDataOverflow,x=p.allowDuplicatedCategory,b=p.scale,_=p.ticks,O=r.props[o],w=Dr(t.data,{graphicalItems:n.filter((function(t){return t.props[o]===O})),dataStartIndex:s,dataEndIndex:c}),k=w.length;if(!e[O]){var E,A,P;if(y){if(E=(0,me.gF)(w,y,d),"category"===d&&f){var j=(0,it.bv)(E);x&&j?(A=E,E=v()(0,k)):x||(E=(0,me.ko)(r.props.domain,E,r).reduce((function(t,e){return t.indexOf(e)>=0?t:[].concat(Ar(t),[e])}),[]))}else if("category"===d)E=x?E.filter((function(t){return""!==t&&!m()(t)})):(0,me.ko)(r.props.domain,E,r).reduce((function(t,e){return t.indexOf(e)>=0||""===e||m()(e)?t:[].concat(Ar(t),[e])}),[]);else if("number"===d){var S=(0,me.ZI)(w,n.filter((function(t){return t.props[o]===O&&!t.props.hide})),y,i);S&&(E=S)}!f||"number"!==d&&"auto"===b||(P=(0,me.gF)(w,y,"category"))}else E=f?v()(0,k):a&&a[O]&&a[O].hasStack&&"number"===d?"expand"===h?[0,1]:(0,me.EB)(a[O].stackGroups,s,c):(0,me.s6)(w,n.filter((function(t){return t.props[o]===O&&!t.props.hide})),d,!0);if("number"===d)E=fr(u,E,O,i,_),r.props.domain&&(E=(0,me.LG)(r.props.domain,E,g));else if("category"===d&&r.props.domain){var I=r.props.domain;E.every((function(t){return I.indexOf(t)>=0}))&&(E=I)}return Ir(Ir({},e),{},Tr({},O,Ir(Ir({},r.props),{},{axisType:i,domain:E,categoricalDomain:P,duplicateDomain:A,originalDomain:r.props.domain,isCategorical:f,layout:l})))}return e}),{})}(t,{axes:h,graphicalItems:o,axisType:n,axisIdKey:u,stackGroups:a,dataStartIndex:s,dataEndIndex:c}):o&&o.length&&(f=function(t,e){var r=e.graphicalItems,n=e.Axis,i=e.axisType,o=e.axisIdKey,a=e.stackGroups,s=e.dataStartIndex,c=e.dataEndIndex,l=t.layout,u=t.children,h=Dr(t.data,{graphicalItems:r,dataStartIndex:s,dataEndIndex:c}),f=h.length,p=(0,me.NA)(l,i),y=-1;return r.reduce((function(t,e){var g,m=e.props[o];return t[m]?t:(y++,p?g=v()(0,f):a&&a[m]&&a[m].hasStack?(g=(0,me.EB)(a[m].stackGroups,s,c),g=fr(u,g,m,i)):(g=(0,me.LG)(n.defaultProps.domain,(0,me.s6)(h,r.filter((function(t){return t.props[o]===m&&!t.props.hide})),"number"),n.defaultProps.allowDataOverflow),g=fr(u,g,m,i)),Ir(Ir({},t),{},Tr({},m,Ir(Ir({axisType:i},n.defaultProps),{},{hide:!0,orientation:d()(Mr,"".concat(i,".").concat(y%2),null),domain:g,originalDomain:n.defaultProps.domain,isCategorical:p,layout:l}))))}),{})}(t,{Axis:i,graphicalItems:o,axisType:n,axisIdKey:u,stackGroups:a,dataStartIndex:s,dataEndIndex:c})),f},Fr=function(t){var e=t.children,r=t.defaultShowTooltip,n=(0,Jt.sP)(e,Ne.displayName);return{chartX:0,chartY:0,dataStartIndex:n&&n.props&&n.props.startIndex||0,dataEndIndex:n&&n.props&&n.props.endIndex||t.data&&t.data.length-1||0,activeTooltipIndex:-1,isTooltipActive:!m()(r)&&r}},Gr=function(t){return"horizontal"===t?{numericAxisName:"yAxis",cateAxisName:"xAxis"}:"vertical"===t?{numericAxisName:"xAxis",cateAxisName:"yAxis"}:"centric"===t?{numericAxisName:"radiusAxis",cateAxisName:"angleAxis"}:{numericAxisName:"angleAxis",cateAxisName:"radiusAxis"}},Xr=r(38462),Wr=r(33108),$r=r(80206),Yr=function(t){var e,r,n=t.chartName,o=t.GraphicalChild,s=t.defaultTooltipEventType,l=void 0===s?"axis":s,h=t.validateTooltipEventTypes,p=void 0===h?["axis"]:h,y=t.axisComponents,v=t.legendContent,g=t.formatAxisMap,x=t.defaultProps,_=function(t,e){var r=e.graphicalItems,n=e.stackGroups,i=e.offset,o=e.updateId,a=e.dataStartIndex,s=e.dataEndIndex,c=t.barSize,l=t.layout,u=t.barGap,h=t.barCategoryGap,f=t.maxBarSize,p=Gr(l),d=p.numericAxisName,v=p.cateAxisName,g=function(t){return!(!t||!t.length)&&t.some((function(t){var e=(0,Jt.Gf)(t&&t.type);return e&&e.indexOf("Bar")>=0}))}(r),x=g&&(0,me.pt)({barSize:c,stackGroups:n}),b=[];return r.forEach((function(r,c){var p=Dr(t.data,{dataStartIndex:a,dataEndIndex:s},r),g=r.props,_=g.dataKey,O=g.maxBarSize,w=r.props["".concat(d,"Id")],k=r.props["".concat(v,"Id")],E=y.reduce((function(t,n){var i,o=e["".concat(n.axisType,"Map")],a=r.props["".concat(n.axisType,"Id")],s=o&&o[a];return Ir(Ir({},t),{},(Tr(i={},n.axisType,s),Tr(i,"".concat(n.axisType,"Ticks"),(0,me.uY)(s)),i))}),{}),A=E[v],P=E["".concat(v,"Ticks")],j=n&&n[w]&&n[w].hasStack&&(0,me.O3)(r,n[w].stackGroups),S=(0,Jt.Gf)(r.type).indexOf("Bar")>=0,I=(0,me.zT)(A,P),T=[];if(S){var M,C,R=m()(O)?f:O,N=null!==(M=null!==(C=(0,me.zT)(A,P,!0))&&void 0!==C?C:R)&&void 0!==M?M:0;T=(0,me.qz)({barGap:u,barCategoryGap:h,bandSize:N!==I?N:I,sizeList:x[k],maxBarSize:R}),N!==I&&(T=T.map((function(t){return Ir(Ir({},t),{},{position:Ir(Ir({},t.position),{},{offset:t.position.offset-N/2})})})))}var L,D=r&&r.type&&r.type.getComposedData;D&&b.push({props:Ir(Ir({},D(Ir(Ir({},E),{},{displayedData:p,props:t,dataKey:_,item:r,bandSize:I,barPosition:T,offset:i,stackedData:j,layout:l,dataStartIndex:a,dataEndIndex:s}))),{},(L={key:r.key||"item-".concat(c)},Tr(L,d,E[d]),Tr(L,v,E[v]),Tr(L,"animationId",o),L)),childIndex:(0,Jt.$R)(r,t.children),item:r})})),b},k=function(t,e){var r=t.props,i=t.dataStartIndex,a=t.dataEndIndex,s=t.updateId;if(!(0,Jt.TT)({props:r}))return null;var c=r.children,l=r.layout,u=r.stackOffset,h=r.data,p=r.reverseStackOrder,v=Gr(l),m=v.numericAxisName,x=v.cateAxisName,b=(0,Jt.NN)(c,o),O=(0,me.wh)(h,b,"".concat(m,"Id"),"".concat(x,"Id"),u,p),w=y.reduce((function(t,e){var n="".concat(e.axisType,"Map");return Ir(Ir({},t),{},Tr({},n,zr(r,Ir(Ir({},e),{},{graphicalItems:b,stackGroups:e.axisType===m&&O,dataStartIndex:i,dataEndIndex:a}))))}),{}),k=function(t,e){var r=t.props,n=t.graphicalItems,i=t.xAxisMap,o=void 0===i?{}:i,a=t.yAxisMap,s=void 0===a?{}:a,c=r.width,l=r.height,u=r.children,h=r.margin||{},f=(0,Jt.sP)(u,Ne.displayName),p=(0,Jt.sP)(u,S.D.displayName),y=Object.keys(s).reduce((function(t,e){var r=s[e],n=r.orientation;return r.mirror||r.hide?t:Ir(Ir({},t),{},Tr({},n,t[n]+r.width))}),{left:h.left||0,right:h.right||0}),v=Object.keys(o).reduce((function(t,e){var r=o[e],n=r.orientation;return r.mirror||r.hide?t:Ir(Ir({},t),{},Tr({},n,d()(t,"".concat(n))+r.height))}),{top:h.top||0,bottom:h.bottom||0}),g=Ir(Ir({},v),y),m=g.bottom;return f&&(g.bottom+=f.props.height||Ne.defaultProps.height),p&&e&&(g=(0,me.By)(g,n,r,e)),Ir(Ir({brushBottom:m},g),{},{width:c-g.left-g.right,height:l-g.top-g.bottom})}(Ir(Ir({},w),{},{props:r,graphicalItems:b}),null==e?void 0:e.legendBBox);Object.keys(w).forEach((function(t){w[t]=g(r,w[t],k,t.replace("Map",""),n)}));var E,A,P,j=w["".concat(x,"Map")],I=(E=j,A=(0,it.Kt)(E),{tooltipTicks:P=(0,me.uY)(A,!1,!0),orderedTooltipTicks:f()(P,(function(t){return t.coordinate})),tooltipAxis:A,tooltipAxisBandSize:(0,me.zT)(A,P)}),T=_(r,Ir(Ir({},w),{},{dataStartIndex:i,dataEndIndex:a,updateId:s,graphicalItems:b,stackGroups:O,offset:k}));return Ir(Ir({formattedGraphicalItems:T,graphicalItems:b,offset:k,stackGroups:O},I),w)};return r=e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&_r(t,e)}(h,t);var e,r,o,s=Or(h);function h(t){var e;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,h),(e=s.call(this,t)).uniqueChartId=void 0,e.clipPathId=void 0,e.legendInstance=void 0,e.deferId=void 0,e.container=void 0,e.clearDeferId=function(){!m()(e.deferId)&&Lr&&Lr(e.deferId),e.deferId=null},e.handleLegendBBoxUpdate=function(t){if(t){var r=e.state,n=r.dataStartIndex,i=r.dataEndIndex,o=r.updateId;e.setState(Ir({legendBBox:t},k({props:e.props,dataStartIndex:n,dataEndIndex:i,updateId:o},Ir(Ir({},e.state),{},{legendBBox:t}))))}},e.handleReceiveSyncEvent=function(t,r,n){e.props.syncId===t&&r!==e.uniqueChartId&&(e.clearDeferId(),e.deferId=Nr&&Nr(e.applySyncEvent.bind(kr(e),n)))},e.handleBrushChange=function(t){var r=t.startIndex,n=t.endIndex;if(r!==e.state.dataStartIndex||n!==e.state.dataEndIndex){var i=e.state.updateId;e.setState((function(){return Ir({dataStartIndex:r,dataEndIndex:n},k({props:e.props,dataStartIndex:r,dataEndIndex:n,updateId:i},e.state))})),e.triggerSyncEvent({dataStartIndex:r,dataEndIndex:n})}},e.handleMouseEnter=function(t){var r=e.props.onMouseEnter,n=e.getMouseInfo(t);if(n){var i=Ir(Ir({},n),{},{isTooltipActive:!0});e.setState(i),e.triggerSyncEvent(i),c()(r)&&r(i,t)}},e.triggeredAfterMouseMove=function(t){var r=e.props.onMouseMove,n=e.getMouseInfo(t),i=n?Ir(Ir({},n),{},{isTooltipActive:!0}):{isTooltipActive:!1};e.setState(i),e.triggerSyncEvent(i),c()(r)&&r(i,t)},e.handleItemMouseEnter=function(t){e.setState((function(){return{isTooltipActive:!0,activeItem:t,activePayload:t.tooltipPayload,activeCoordinate:t.tooltipPosition||{x:t.cx,y:t.cy}}}))},e.handleItemMouseLeave=function(){e.setState((function(){return{isTooltipActive:!1}}))},e.handleMouseMove=function(t){t&&c()(t.persist)&&t.persist(),e.triggeredAfterMouseMove(t)},e.handleMouseLeave=function(t){var r=e.props.onMouseLeave,n={isTooltipActive:!1};e.setState(n),e.triggerSyncEvent(n),c()(r)&&r(n,t),e.cancelThrottledTriggerAfterMouseMove()},e.handleOuterEvent=function(t){var r=(0,Jt.Bh)(t),n=d()(e.props,"".concat(r));r&&c()(n)&&n(/.*touch.*/i.test(r)?e.getMouseInfo(t.changedTouches[0]):e.getMouseInfo(t),t)},e.handleClick=function(t){var r=e.props.onClick,n=e.getMouseInfo(t);if(n){var i=Ir(Ir({},n),{},{isTooltipActive:!0});e.setState(i),e.triggerSyncEvent(i),c()(r)&&r(i,t)}},e.handleMouseDown=function(t){var r=e.props.onMouseDown;c()(r)&&r(e.getMouseInfo(t),t)},e.handleMouseUp=function(t){var r=e.props.onMouseUp;c()(r)&&r(e.getMouseInfo(t),t)},e.handleTouchMove=function(t){null!=t.changedTouches&&t.changedTouches.length>0&&e.handleMouseMove(t.changedTouches[0])},e.handleTouchStart=function(t){null!=t.changedTouches&&t.changedTouches.length>0&&e.handleMouseDown(t.changedTouches[0])},e.handleTouchEnd=function(t){null!=t.changedTouches&&t.changedTouches.length>0&&e.handleMouseUp(t.changedTouches[0])},e.verticalCoordinatesGenerator=function(t){var e=t.xAxis,r=t.width,n=t.height,i=t.offset;return(0,me.Rf)(ve.getTicks(Ir(Ir(Ir({},ve.defaultProps),e),{},{ticks:(0,me.uY)(e,!0),viewBox:{x:0,y:0,width:r,height:n}})),i.left,i.left+i.width)},e.horizontalCoordinatesGenerator=function(t){var e=t.yAxis,r=t.width,n=t.height,i=t.offset;return(0,me.Rf)(ve.getTicks(Ir(Ir(Ir({},ve.defaultProps),e),{},{ticks:(0,me.uY)(e,!0),viewBox:{x:0,y:0,width:r,height:n}})),i.top,i.top+i.height)},e.axesTicksGenerator=function(t){return(0,me.uY)(t,!0)},e.renderCursor=function(t){var r=e.state,i=r.isTooltipActive,o=r.activeCoordinate,a=r.activePayload,s=r.offset,c=r.activeTooltipIndex,l=e.getTooltipEventType();if(!t||!t.props.cursor||!i||!o||"ScatterChart"!==n&&"axis"!==l)return null;var u,h=e.props.layout,f=bt;if("ScatterChart"===n)u=o,f=St;else if("BarChart"===n)u=e.getCursorRectangle(),f=qt.A;else if("radial"===h){var p=e.getCursorPoints(),d=p.cx,y=p.cy,v=p.radius;u={cx:d,cy:y,startAngle:p.startAngle,endAngle:p.endAngle,innerRadius:v,outerRadius:v},f=Ft}else u={points:e.getCursorPoints()},f=bt;var g=t.key||"_recharts-cursor",m=Ir(Ir(Ir(Ir({stroke:"#ccc",pointerEvents:"none"},s),u),(0,nt.L6)(t.props.cursor)),{},{payload:a,payloadIndex:c,key:g,className:"recharts-tooltip-cursor"});return(0,w.isValidElement)(t.props.cursor)?(0,w.cloneElement)(t.props.cursor,m):(0,w.createElement)(f,m)},e.renderPolarAxis=function(t,r,n){var i=d()(t,"type.axisType"),o=d()(e.state,"".concat(i,"Map"))[t.props["".concat(i,"Id")]];return(0,w.cloneElement)(t,Ir(Ir({},o),{},{className:i,key:t.key||"".concat(r,"-").concat(n),ticks:(0,me.uY)(o,!0)}))},e.renderXAxis=function(t,r,n){var i=e.state.xAxisMap[t.props.xAxisId];return e.renderAxis(i,t,r,n)},e.renderYAxis=function(t,r,n){var i=e.state.yAxisMap[t.props.yAxisId];return e.renderAxis(i,t,r,n)},e.renderGrid=function(t){var r=e.state,n=r.xAxisMap,o=r.yAxisMap,s=r.offset,c=e.props,l=c.width,u=c.height,h=(0,it.Kt)(n),f=a()(o,(function(t){return i()(t.domain,Rr)}))||(0,it.Kt)(o),p=t.props||{};return(0,w.cloneElement)(t,{key:t.key||"grid",x:(0,it.hj)(p.x)?p.x:s.left,y:(0,it.hj)(p.y)?p.y:s.top,width:(0,it.hj)(p.width)?p.width:s.width,height:(0,it.hj)(p.height)?p.height:s.height,xAxis:h,yAxis:f,offset:s,chartWidth:l,chartHeight:u,verticalCoordinatesGenerator:p.verticalCoordinatesGenerator||e.verticalCoordinatesGenerator,horizontalCoordinatesGenerator:p.horizontalCoordinatesGenerator||e.horizontalCoordinatesGenerator})},e.renderPolarGrid=function(t){var r=t.props,n=r.radialLines,i=r.polarAngles,o=r.polarRadius,a=e.state,s=a.radiusAxisMap,c=a.angleAxisMap,l=(0,it.Kt)(s),u=(0,it.Kt)(c),h=u.cx,f=u.cy,p=u.innerRadius,d=u.outerRadius;return(0,w.cloneElement)(t,{polarAngles:O()(i)?i:(0,me.uY)(u,!0).map((function(t){return t.coordinate})),polarRadius:O()(o)?o:(0,me.uY)(l,!0).map((function(t){return t.coordinate})),cx:h,cy:f,innerRadius:p,outerRadius:d,key:t.key||"polar-grid",radialLines:n})},e.renderLegend=function(){var t=e.state.formattedGraphicalItems,r=e.props,n=r.children,i=r.width,o=r.height,a=e.props.margin||{},s=i-(a.left||0)-(a.right||0),c=(0,me.zp)({children:n,formattedGraphicalItems:t,legendWidth:s,legendContent:v});if(!c)return null;var l=c.item,u=xr(c,["item"]);return(0,w.cloneElement)(l,Ir(Ir({},u),{},{chartWidth:i,chartHeight:o,margin:a,ref:function(t){e.legendInstance=t},onBBoxUpdate:e.handleLegendBBoxUpdate}))},e.renderTooltip=function(){var t=e.props.children,r=(0,Jt.sP)(t,j.u.displayName);if(!r)return null;var n=e.state,i=n.isTooltipActive,o=n.activeCoordinate,a=n.activePayload,s=n.activeLabel,c=n.offset;return(0,w.cloneElement)(r,{viewBox:Ir(Ir({},c),{},{x:c.left,y:c.top}),active:i,label:s,payload:i?a:[],coordinate:o})},e.renderBrush=function(t){var r=e.props,n=r.margin,i=r.data,o=e.state,a=o.offset,s=o.dataStartIndex,c=o.dataEndIndex,l=o.updateId;return(0,w.cloneElement)(t,{key:t.key||"_recharts-brush",onChange:(0,me.DO)(e.handleBrushChange,null,t.props.onChange),data:i,x:(0,it.hj)(t.props.x)?t.props.x:a.left,y:(0,it.hj)(t.props.y)?t.props.y:a.top+a.height+a.brushBottom-(n.bottom||0),width:(0,it.hj)(t.props.width)?t.props.width:a.width,startIndex:s,endIndex:c,updateId:"brush-".concat(l)})},e.renderReferenceElement=function(t,r,n){if(!t)return null;var i=kr(e).clipPathId,o=e.state,a=o.xAxisMap,s=o.yAxisMap,c=o.offset,l=t.props,u=l.xAxisId,h=l.yAxisId;return(0,w.cloneElement)(t,{key:t.key||"".concat(r,"-").concat(n),xAxis:a[u],yAxis:s[h],viewBox:{x:c.left,y:c.top,width:c.width,height:c.height},clipPathId:i})},e.renderActivePoints=function(t){var e=t.item,r=t.activePoint,n=t.basePoint,i=t.childIndex,o=t.isRange,a=[],s=e.props.key,c=e.item.props,l=c.activeDot,u=Ir(Ir({index:i,dataKey:c.dataKey,cx:r.x,cy:r.y,r:4,fill:(0,me.fk)(e.item),strokeWidth:2,stroke:"#fff",payload:r.payload,value:r.value,key:"".concat(s,"-activePoint-").concat(i)},(0,nt.L6)(l)),(0,nt.Ym)(l));return a.push(h.renderActiveDot(l,u)),n?a.push(h.renderActiveDot(l,Ir(Ir({},u),{},{cx:n.x,cy:n.y,key:"".concat(s,"-basePoint-").concat(i)}))):o&&a.push(null),a},e.renderGraphicChild=function(t,r,n){var i=e.filterFormatItem(t,r,n);if(!i)return null;var o=e.getTooltipEventType(),a=e.state,s=a.isTooltipActive,c=a.tooltipAxis,l=a.activeTooltipIndex,u=a.activeLabel,h=e.props.children,f=(0,Jt.sP)(h,j.u.displayName),p=i.props,d=p.points,y=p.isRange,v=p.baseLine,g=i.item.props,x=g.activeDot,b=!g.hide&&s&&f&&x&&l>=0,_={};"axis"!==o&&f&&"click"===f.props.trigger?_={onClick:(0,me.DO)(e.handleItemMouseEnter,null,t.props.onCLick)}:"axis"!==o&&(_={onMouseLeave:(0,me.DO)(e.handleItemMouseLeave,null,t.props.onMouseLeave),onMouseEnter:(0,me.DO)(e.handleItemMouseEnter,null,t.props.onMouseEnter)});var O=(0,w.cloneElement)(t,Ir(Ir({},i.props),_));if(b){var k,E;if(c.dataKey&&!c.allowDuplicatedCategory){var A="function"==typeof c.dataKey?function(t){return"function"==typeof c.dataKey?c.dataKey(t.payload):null}:"payload.".concat(c.dataKey.toString());k=(0,it.Ap)(d,A,u),E=y&&v&&(0,it.Ap)(v,A,u)}else k=d[l],E=y&&v&&v[l];if(!m()(k))return[O].concat(Ar(e.renderActivePoints({item:i,activePoint:k,basePoint:E,childIndex:l,isRange:y})))}return y?[O,null,null]:[O,null]},e.renderCustomized=function(t,r,n){return(0,w.cloneElement)(t,Ir(Ir({key:"recharts-customized-".concat(n)},e.props),e.state))},e.uniqueChartId=m()(t.id)?(0,it.EL)("recharts"):t.id,e.clipPathId="".concat(e.uniqueChartId,"-clip"),t.throttleDelay&&(e.triggeredAfterMouseMove=u()(e.triggeredAfterMouseMove,t.throttleDelay)),e.state={},e}return e=h,(r=[{key:"componentDidMount",value:function(){m()(this.props.syncId)||this.addListener()}},{key:"componentDidUpdate",value:function(t){m()(t.syncId)&&!m()(this.props.syncId)&&this.addListener(),!m()(t.syncId)&&m()(this.props.syncId)&&this.removeListener()}},{key:"componentWillUnmount",value:function(){this.clearDeferId(),m()(this.props.syncId)||this.removeListener(),this.cancelThrottledTriggerAfterMouseMove()}},{key:"cancelThrottledTriggerAfterMouseMove",value:function(){"function"==typeof this.triggeredAfterMouseMove.cancel&&this.triggeredAfterMouseMove.cancel()}},{key:"getTooltipEventType",value:function(){var t=(0,Jt.sP)(this.props.children,j.u.displayName);if(t&&b()(t.props.shared)){var e=t.props.shared?"axis":"item";return p.indexOf(e)>=0?e:l}return l}},{key:"getMouseInfo",value:function(t){if(!this.container)return null;var e=(0,te.os)(this.container),r=(0,te.IR)(t,e),n=this.inRange(r.chartX,r.chartY);if(!n)return null;var i=this.state,o=i.xAxisMap,a=i.yAxisMap;if("axis"!==this.getTooltipEventType()&&o&&a){var s=(0,it.Kt)(o).scale,c=(0,it.Kt)(a).scale,l=s&&s.invert?s.invert(r.chartX):null,u=c&&c.invert?c.invert(r.chartY):null;return Ir(Ir({},r),{},{xValue:l,yValue:u})}var h=Vr(this.state,this.props.data,this.props.layout,n);return h?Ir(Ir({},r),h):null}},{key:"getCursorRectangle",value:function(){var t=this.props.layout,e=this.state,r=e.activeCoordinate,n=e.offset,i=e.tooltipAxisBandSize,o=i/2;return{stroke:"none",fill:"#ccc",x:"horizontal"===t?r.x-o:n.left+.5,y:"horizontal"===t?n.top+.5:r.y-o,width:"horizontal"===t?i:n.width-1,height:"horizontal"===t?n.height-1:i}}},{key:"getCursorPoints",value:function(){var t,e,r,n,i=this.props.layout,o=this.state,a=o.activeCoordinate,s=o.offset;if("horizontal"===i)r=t=a.x,e=s.top,n=s.top+s.height;else if("vertical"===i)n=e=a.y,t=s.left,r=s.left+s.width;else if(!m()(a.cx)||!m()(a.cy)){if("centric"!==i){var c=a.cx,l=a.cy,u=a.radius,h=a.startAngle,f=a.endAngle;return{points:[(0,It.op)(c,l,u,h),(0,It.op)(c,l,u,f)],cx:c,cy:l,radius:u,startAngle:h,endAngle:f}}var p=a.cx,d=a.cy,y=a.innerRadius,v=a.outerRadius,g=a.angle,x=(0,It.op)(p,d,y,g),b=(0,It.op)(p,d,v,g);t=x.x,e=x.y,r=b.x,n=b.y}return[{x:t,y:e},{x:r,y:n}]}},{key:"inRange",value:function(t,e){var r=this.props.layout;if("horizontal"===r||"vertical"===r){var n=this.state.offset;return t>=n.left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height?{x:t,y:e}:null}var i=this.state,o=i.angleAxisMap,a=i.radiusAxisMap;if(o&&a){var s=(0,it.Kt)(o);return(0,It.z3)({x:t,y:e},s)}return null}},{key:"parseEventsOfWrapper",value:function(){var t=this.props.children,e=this.getTooltipEventType(),r=(0,Jt.sP)(t,j.u.displayName),n={};return r&&"axis"===e&&(n="click"===r.props.trigger?{onClick:this.handleClick}:{onMouseEnter:this.handleMouseEnter,onMouseMove:this.handleMouseMove,onMouseLeave:this.handleMouseLeave,onTouchMove:this.handleTouchMove,onTouchStart:this.handleTouchStart,onTouchEnd:this.handleTouchEnd}),Ir(Ir({},(0,nt.Ym)(this.props,this.handleOuterEvent)),n)}},{key:"addListener",value:function(){dr.on(yr,this.handleReceiveSyncEvent),dr.setMaxListeners&&dr._maxListeners&&dr.setMaxListeners(dr._maxListeners+1)}},{key:"removeListener",value:function(){dr.removeListener(yr,this.handleReceiveSyncEvent),dr.setMaxListeners&&dr._maxListeners&&dr.setMaxListeners(dr._maxListeners-1)}},{key:"triggerSyncEvent",value:function(t){var e=this.props.syncId;m()(e)||dr.emit(yr,e,this.uniqueChartId,t)}},{key:"applySyncEvent",value:function(t){var e=this.props,r=e.layout,n=e.syncMethod,i=this.state.updateId,o=t.dataStartIndex,a=t.dataEndIndex;if(m()(t.dataStartIndex)&&m()(t.dataEndIndex))if(m()(t.activeTooltipIndex))this.setState(t);else{var s=t.chartX,c=t.chartY,l=t.activeTooltipIndex,u=this.state,h=u.offset,f=u.tooltipTicks;if(!h)return;if("function"==typeof n)l=n(f,t);else if("value"===n){l=-1;for(var p=0;p0&&(k=Math.min((t||0)-(E[e-1]||0),k))}));var A=k/w,P="vertical"===y.layout?r.height:r.width;if("gap"===y.padding&&(c=A*P/2),"no-gap"===y.padding){var j=(0,it.h1)(t.barCategoryGap,A*P),S=A*P/2;c=S-j-(S-j)/P*j}}l="xAxis"===n?[r.left+(x.left||0)+(c||0),r.left+r.width-(x.right||0)-(c||0)]:"yAxis"===n?"horizontal"===s?[r.top+r.height-(x.bottom||0),r.top+(x.top||0)]:[r.top+(x.top||0)+(c||0),r.top+r.height-(x.bottom||0)-(c||0)]:y.range,_&&(l=[l[1],l[0]]);var I=(0,me.Hq)(y,i,h),T=I.scale,M=I.realScaleType;T.domain(g).range(l),(0,me.zF)(T);var C=(0,me.g$)(T,Fe(Fe({},y),{},{realScaleType:M}));"xAxis"===n?(d="top"===v&&!b||"bottom"===v&&b,f=r.left,p=u[O]-d*y.height):"yAxis"===n&&(d="left"===v&&!b||"right"===v&&b,f=u[O]-d*y.width,p=r.top);var R=Fe(Fe(Fe({},y),C),{},{realScaleType:M,x:f,y:p,scale:T,width:"xAxis"===n?r.width:y.width,height:"yAxis"===n?r.height:y.height});return R.bandSize=(0,me.zT)(R,C),y.hide||"xAxis"!==n?y.hide||(u[O]+=(d?-1:1)*R.width):u[O]+=(d?-1:1)*R.height,Fe(Fe({},o),{},Ge({},a,R))}),{})}})},38517:function(t,e,r){"use strict";r.d(e,{_:function(){return k}});var n=r(13218),i=r.n(n),o=r(23560),a=r.n(o),s=r(14293),c=r.n(s),l=r(67294),u=r(75900),h=r.n(u),f=r(94961),p=r(70483),d=r(2562),y=r(22459),v=r(3463);function g(t){return function(t){if(Array.isArray(t))return m(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return m(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return m(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r=0?1:-1;"insideStart"===o?(n=x+E*s,i=_):"insideEnd"===o?(n=b-E*s,i=!_):"end"===o&&(n=b+E*s,i=_),i=k<=0?i:!i;var A=(0,y.op)(p,v,w,n),P=(0,y.op)(p,v,w,n+359*(i?1:-1)),j="M".concat(A.x,",").concat(A.y,"\n A").concat(w,",").concat(w,",0,1,").concat(i?0:1,",\n ").concat(P.x,",").concat(P.y),S=c()(t.id)?(0,d.EL)("recharts-radial-line-"):t.id;return l.createElement("text",O({},r,{dominantBaseline:"central",className:h()("recharts-radial-bar-label",u)}),l.createElement("defs",null,l.createElement("path",{id:S,d:j})),l.createElement("textPath",{xlinkHref:"#".concat(S)},e))};function k(t){var e,r=t.viewBox,n=t.position,o=t.value,s=t.children,u=t.content,p=t.className,g=void 0===p?"":p,m=t.textBreakAll;if(!r||c()(o)&&c()(s)&&!(0,l.isValidElement)(u)&&!a()(u))return null;if((0,l.isValidElement)(u))return(0,l.cloneElement)(u,t);if(a()(u)){if(e=(0,l.createElement)(u,t),(0,l.isValidElement)(e))return e}else e=function(t){var e=t.value,r=t.formatter,n=c()(t.children)?e:t.children;return a()(r)?r(n):n}(t);var x=function(t){return(0,d.hj)(t.cx)}(r),_=(0,v.L6)(t,!0);if(x&&("insideStart"===n||"insideEnd"===n||"end"===n))return w(t,e,_);var k=x?function(t){var e=t.viewBox,r=t.offset,n=t.position,i=e,o=i.cx,a=i.cy,s=i.innerRadius,c=i.outerRadius,l=(i.startAngle+i.endAngle)/2;if("outside"===n){var u=(0,y.op)(o,a,c+r,l),h=u.x;return{x:h,y:u.y,textAnchor:h>=o?"start":"end",verticalAnchor:"middle"}}if("center"===n)return{x:o,y:a,textAnchor:"middle",verticalAnchor:"middle"};if("centerTop"===n)return{x:o,y:a,textAnchor:"middle",verticalAnchor:"start"};if("centerBottom"===n)return{x:o,y:a,textAnchor:"middle",verticalAnchor:"end"};var f=(s+c)/2,p=(0,y.op)(o,a,f,l);return{x:p.x,y:p.y,textAnchor:"middle",verticalAnchor:"middle"}}(t):function(t){var e=t.viewBox,r=t.parentViewBox,n=t.offset,o=t.position,a=e,s=a.x,c=a.y,l=a.width,u=a.height,h=u>=0?1:-1,f=h*n,p=h>0?"end":"start",y=h>0?"start":"end",v=l>=0?1:-1,g=v*n,m=v>0?"end":"start",x=v>0?"start":"end";if("top"===o)return b(b({},{x:s+l/2,y:c-h*n,textAnchor:"middle",verticalAnchor:p}),r?{height:Math.max(c-r.y,0),width:l}:{});if("bottom"===o)return b(b({},{x:s+l/2,y:c+u+f,textAnchor:"middle",verticalAnchor:y}),r?{height:Math.max(r.y+r.height-(c+u),0),width:l}:{});if("left"===o){var _={x:s-g,y:c+u/2,textAnchor:m,verticalAnchor:"middle"};return b(b({},_),r?{width:Math.max(_.x-r.x,0),height:u}:{})}if("right"===o){var O={x:s+l+g,y:c+u/2,textAnchor:x,verticalAnchor:"middle"};return b(b({},O),r?{width:Math.max(r.x+r.width-O.x,0),height:u}:{})}var w=r?{width:l,height:u}:{};return"insideLeft"===o?b({x:s+g,y:c+u/2,textAnchor:x,verticalAnchor:"middle"},w):"insideRight"===o?b({x:s+l-g,y:c+u/2,textAnchor:m,verticalAnchor:"middle"},w):"insideTop"===o?b({x:s+l/2,y:c+f,textAnchor:"middle",verticalAnchor:y},w):"insideBottom"===o?b({x:s+l/2,y:c+u-f,textAnchor:"middle",verticalAnchor:p},w):"insideTopLeft"===o?b({x:s+g,y:c+f,textAnchor:x,verticalAnchor:y},w):"insideTopRight"===o?b({x:s+l-g,y:c+f,textAnchor:m,verticalAnchor:y},w):"insideBottomLeft"===o?b({x:s+g,y:c+u-f,textAnchor:x,verticalAnchor:p},w):"insideBottomRight"===o?b({x:s+l-g,y:c+u-f,textAnchor:m,verticalAnchor:p},w):i()(o)&&((0,d.hj)(o.x)||(0,d.hU)(o.x))&&((0,d.hj)(o.y)||(0,d.hU)(o.y))?b({x:s+(0,d.h1)(o.x,l),y:c+(0,d.h1)(o.y,u),textAnchor:"end",verticalAnchor:"end"},w):b({x:s+l/2,y:c+u/2,textAnchor:"middle",verticalAnchor:"middle"},w)}(t);return l.createElement(f.x,O({className:h()("recharts-label",g)},_,k,{breakAll:m}),e)}k.displayName="Label",k.defaultProps={offset:5};var E=function(t){var e=t.cx,r=t.cy,n=t.angle,i=t.startAngle,o=t.endAngle,a=t.r,s=t.radius,c=t.innerRadius,l=t.outerRadius,u=t.x,h=t.y,f=t.top,p=t.left,y=t.width,v=t.height,g=t.clockWise,m=t.labelViewBox;if(m)return m;if((0,d.hj)(y)&&(0,d.hj)(v)){if((0,d.hj)(u)&&(0,d.hj)(h))return{x:u,y:h,width:y,height:v};if((0,d.hj)(f)&&(0,d.hj)(p))return{x:f,y:p,width:y,height:v}}return(0,d.hj)(u)&&(0,d.hj)(h)?{x:u,y:h,width:0,height:0}:(0,d.hj)(e)&&(0,d.hj)(r)?{cx:e,cy:r,startAngle:i||n||0,endAngle:o||n||0,innerRadius:c||0,outerRadius:l||s||a||0,clockWise:g}:t.viewBox?t.viewBox:{}},A=function(t,e){return t?!0===t?l.createElement(k,{key:"label-implicit",viewBox:e}):(0,d.P2)(t)?l.createElement(k,{key:"label-implicit",viewBox:e,value:t}):(0,l.isValidElement)(t)?t.type===k?(0,l.cloneElement)(t,{key:"label-implicit",viewBox:e}):l.createElement(k,{key:"label-implicit",content:t,viewBox:e}):a()(t)?l.createElement(k,{key:"label-implicit",content:t,viewBox:e}):i()(t)?l.createElement(k,O({viewBox:e},t,{key:"label-implicit"})):null:null};k.parseViewBox=E,k.renderCallByParent=function(t,e){var r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];if(!t||!t.children&&r&&!t.label)return null;var n=t.children,i=E(t),o=(0,p.NN)(n,k.displayName).map((function(t,r){return(0,l.cloneElement)(t,{viewBox:e||i,key:"label-".concat(r)})}));if(!r)return o;var a=A(t.label,e||i);return[a].concat(g(o))}},31157:function(t,e,r){"use strict";r.d(e,{e:function(){return P}});var n=r(13218),i=r.n(n),o=r(23560),a=r.n(o),s=r(14293),c=r.n(s),l=r(10928),u=r.n(l),h=r(1469),f=r.n(h),p=r(67294),d=r(38517),y=r(85160),v=r(70483),g=r(44053),m=r(3463);function x(t){return function(t){if(Array.isArray(t))return b(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return b(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return b(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}var A={valueAccessor:function(t){return f()(t.value)?u()(t.value):t.value}};function P(t){var e=t.data,r=t.valueAccessor,n=t.dataKey,i=t.clockWise,o=t.id,a=t.textBreakAll,s=E(t,["data","valueAccessor","dataKey","clockWise","id","textBreakAll"]);return e&&e.length?p.createElement(y.m,{className:"recharts-label-list"},e.map((function(t,e){var l=c()(n)?r(t,e):(0,g.F$)(t&&t.payload,n),u=c()(o)?{}:{id:"".concat(o,"-").concat(e)};return p.createElement(d._,_({},(0,m.L6)(t,!0),s,u,{parentViewBox:t.parentViewBox,index:e,value:l,textBreakAll:a,viewBox:d._.parseViewBox(c()(i)?t:w(w({},t),{},{clockWise:i})),key:"label-".concat(e)}))}))):null}function j(t,e){return t?!0===t?p.createElement(P,{key:"labelList-implicit",data:e}):p.isValidElement(t)||a()(t)?p.createElement(P,{key:"labelList-implicit",data:e,content:t}):i()(t)?p.createElement(P,_({data:e},t,{key:"labelList-implicit"})):null:null}P.displayName="LabelList",P.renderCallByParent=function(t,e){var r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];if(!t||!t.children&&r&&!t.label)return null;var n=t.children,i=(0,v.NN)(n,P.displayName).map((function(t,r){return(0,p.cloneElement)(t,{data:e,key:"labelList-".concat(r)})}));if(!r)return i;var o=j(t.label,e);return[o].concat(x(i))},P.defaultProps=A},94961:function(t,e,r){"use strict";r.d(e,{x:function(){return M}});var n=r(14293),i=r.n(n),o=r(67294),a=r(17538),s=r.n(a),c=r(75900),l=r.n(c),u=r(2562),h=r(18441),f=r(3463),p=r(29365);function d(t){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},d(t)}function y(){return y=Object.assign||function(t){for(var e=1;e=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function g(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function m(t,e){for(var r=0;rt.length)&&(e=t.length);for(var r=0,n=new Array(e);r0&&void 0!==arguments[0]?arguments[0]:[]).reduce((function(t,e){var o=e.word,a=e.width,s=t[t.length-1];if(s&&(null==n||i||s.width+a+rt.maxLines||function(t){return t.reduce((function(t,e){return t.width>e.width?t:e}))}(o).width>n;return[c,o]},f=0,p=a.length-1,d=0;f<=p&&d<=a.length-1;){var y=Math.floor((f+p)/2),v=w(h(y-1),2),g=v[0],m=v[1],x=w(h(y),1)[0];if(g||x||(f=y+1),g&&x&&(p=y-1),!g&&x){l=m;break}d++}return l||c}(t,r.wordsWithComputedWidth,r.spaceWidth,t.width,t.scaleToFit):I(t.children)}return I(t.children)},M=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&x(t,e)}(a,t);var e,r,n,i=b(a);function a(){var t;g(this,a);for(var e=arguments.length,r=new Array(e),n=0;nf&&(y=2*Math.PI-y),{radius:p,angle:s(y),angleInRadian:y}},u=function(t,e){var r=e.startAngle,n=e.endAngle,i=Math.floor(r/360),o=Math.floor(n/360);return t+360*Math.min(i,o)},h=function(t,e){var r=t.x,n=t.y,o=l({x:r,y:n},e),a=o.radius,s=o.angle,c=e.innerRadius,h=e.outerRadius;if(ah)return!1;if(0===a)return!0;var f,p=function(t){var e=t.startAngle,r=t.endAngle,n=Math.floor(e/360),i=Math.floor(r/360),o=Math.min(n,i);return{startAngle:e-360*o,endAngle:r-360*o}}(e),d=p.startAngle,y=p.endAngle,v=s;if(d<=y){for(;v>y;)v-=360;for(;v=d&&v<=y}else{for(;v>d;)v-=360;for(;v=y&&v<=d}return f?i(i({},e),{},{radius:a,angle:u(v,e)}):null}},17538:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=s(r(2603)),i=r(31409),o=s(r(89195)),a=s(r(19427));function s(t){return t&&t.__esModule?t:{default:t}}var c=/((?:\-[a-z]+\-)?calc)/;e.default=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:5;return(0,n.default)(t).walk((function(t){if("function"===t.type&&c.test(t.value)){var r=n.default.stringify(t.nodes);if(!(r.indexOf("constant")>=0||r.indexOf("env")>=0)){var s=i.parser.parse(r),l=(0,o.default)(s,e);t.type="word",t.value=(0,a.default)(t.value,l,e)}}}),!0).toString()},t.exports=e.default},83566:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n,i=r(59349),o=(n=i)&&n.__esModule?n:{default:n};e.default=function(t,e,r){switch(t.type){case"LengthValue":case"AngleValue":case"TimeValue":case"FrequencyValue":case"ResolutionValue":return function(t,e,r){e.type===t.type&&(e={type:t.type,value:(0,o.default)(e.value,e.unit,t.unit,r),unit:t.unit});return{left:t,right:e}}(t,e,r);default:return{left:t,right:e}}},t.exports=e.default},89195:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.flip=l;var n,i=r(83566),o=(n=i)&&n.__esModule?n:{default:n};function a(t,e){return"MathExpression"===t.type?function(t,e){switch(t=function(t,e){var r=(0,o.default)(t.left,t.right,e),n=a(r.left,e),i=a(r.right,e);"MathExpression"===n.type&&"MathExpression"===i.type&&("/"===n.operator&&"*"===i.operator||"-"===n.operator&&"+"===i.operator||"*"===n.operator&&"/"===i.operator||"+"===n.operator&&"-"===i.operator)&&(s(n.right,i.right)?r=(0,o.default)(n.left,i.left,e):s(n.right,i.left)&&(r=(0,o.default)(n.left,i.right,e)),n=a(r.left,e),i=a(r.right,e));return t.left=n,t.right=i,t}(t,e),t.operator){case"+":case"-":return function(t,e){var r=t,n=r.left,i=r.right,o=r.operator;if("CssVariable"===n.type||"CssVariable"===i.type)return t;if(0===i.value)return n;if(0===n.value&&"+"===o)return i;if(0===n.value&&"-"===o)return u(i);n.type===i.type&&c(n.type)&&((t=Object.assign({},n)).value="+"===o?n.value+i.value:n.value-i.value);if(c(n.type)&&("+"===i.operator||"-"===i.operator)&&"MathExpression"===i.type){if(n.type===i.left.type)return(t=Object.assign({},t)).left=a({type:"MathExpression",operator:o,left:n,right:i.left},e),t.right=i.right,t.operator="-"===o?l(i.operator):i.operator,a(t,e);if(n.type===i.right.type)return(t=Object.assign({},t)).left=a({type:"MathExpression",operator:"-"===o?l(i.operator):i.operator,left:n,right:i.right},e),t.right=i.left,a(t,e)}if("MathExpression"===n.type&&("+"===n.operator||"-"===n.operator)&&c(i.type)){if(i.type===n.left.type)return(t=Object.assign({},n)).left=a({type:"MathExpression",operator:o,left:n.left,right:i},e),a(t,e);if(i.type===n.right.type)return t=Object.assign({},n),"-"===n.operator?(t.right=a({type:"MathExpression",operator:"-"===o?"+":"-",left:i,right:n.right},e),t.operator="-"===o?"-":"+"):t.right=a({type:"MathExpression",operator:o,left:n.right,right:i},e),t.right.value<0&&(t.right.value*=-1,t.operator="-"===t.operator?"+":"-"),a(t,e)}return t}(t,e);case"/":return function(t,e){if(!c(t.right.type))return t;if("Value"!==t.right.type)throw new Error('Cannot divide by "'+t.right.unit+'", number expected');if(0===t.right.value)throw new Error("Cannot divide by zero");if("MathExpression"===t.left.type)return c(t.left.left.type)&&c(t.left.right.type)?(t.left.left.value/=t.right.value,t.left.right.value/=t.right.value,a(t.left,e)):t;if(c(t.left.type))return t.left.value/=t.right.value,t.left;return t}(t,e);case"*":return function(t){if("MathExpression"===t.left.type&&"Value"===t.right.type){if(c(t.left.left.type)&&c(t.left.right.type))return t.left.left.value*=t.right.value,t.left.right.value*=t.right.value,t.left}else{if(c(t.left.type)&&"Value"===t.right.type)return t.left.value*=t.right.value,t.left;if("Value"===t.left.type&&"MathExpression"===t.right.type){if(c(t.right.left.type)&&c(t.right.right.type))return t.right.left.value*=t.left.value,t.right.right.value*=t.left.value,t.right}else if("Value"===t.left.type&&c(t.right.type))return t.right.value*=t.left.value,t.right}return t}(t)}return t}(t,e):"Calc"===t.type?a(t.value,e):t}function s(t,e){return t.type===e.type&&t.value===e.value}function c(t){switch(t){case"LengthValue":case"AngleValue":case"TimeValue":case"FrequencyValue":case"ResolutionValue":case"EmValue":case"ExValue":case"ChValue":case"RemValue":case"VhValue":case"VwValue":case"VminValue":case"VmaxValue":case"PercentageValue":case"Value":return!0}return!1}function l(t){return"+"===t?"-":"+"}function u(t){return c(t.type)?t.value=-t.value:"MathExpression"==t.type&&(t.left=u(t.left),t.right=u(t.right)),t}e.default=a},19427:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t,e,r){var n=a(e,r);return"MathExpression"===e.type&&(n=t+"("+n+")"),n};var n=r(89195),i={"*":0,"/":0,"+":1,"-":1};function o(t,e){if(!1!==e){var r=Math.pow(10,e);return Math.round(t*r)/r}return t}function a(t,e){switch(t.type){case"MathExpression":var r=t.left,s=t.right,c=t.operator,l="";return"MathExpression"===r.type&&i[c]1)return t;if(e.cleanupAfterLex&&e.cleanupAfterLex(a),h&&(h.lexer=void 0,h.parser=void 0,e.yy===h&&(e.yy=void 0)),h=void 0,this.parseError=this.originalParseError,this.quoteName=this.originalQuoteName,n.length=0,i.length=0,o.length=0,s=0,!a){for(var u=this.__error_infos.length-1;u>=0;u--){var f=this.__error_infos[u];f&&"function"==typeof f.destroy&&f.destroy()}this.__error_infos.length=0}return t},this.constructParseErrorInfo=function(t,r,a,l){var u={errStr:t,exception:r,text:e.match,value:e.yytext,token:this.describeSymbol(c)||c,token_id:c,line:e.yylineno,expected:a,recoverable:l,state:p,action:d,new_state:b,symbol_stack:n,state_stack:i,value_stack:o,stack_pointer:s,yy:h,lexer:e,parser:this,destroy:function(){var t=!!this.recoverable;for(var e in this)this.hasOwnProperty(e)&&"object"==typeof e&&(this[e]=void 0);this.recoverable=t}};return this.__error_infos.push(u),u};var p,d,y,v,g,m,x,b,_=function(){var t=e.lex();return"number"!=typeof t&&(t=r.symbols_[t]||t),t||l},O={$:!0,_$:void 0,yy:h},w=!1;try{if(this.__reentrant_call_depth++,e.setInput(t,h),"function"==typeof e.canIUse)e.canIUse().fastLex&&(_=f);for(o[s]=null,i[s]=0,n[s]=0,++s,this.pre_parse&&this.pre_parse.call(this,h),h.pre_parse&&h.pre_parse.call(this,h),b=i[s-1];;){if(p=b,this.defaultActions[p])d=2,b=this.defaultActions[p];else if(c||(c=_()),v=a[p]&&a[p][c]||u,b=v[1],!(d=v[0])){var k,E=this.describeSymbol(c)||c,A=this.collect_expected_token_set(p);k="number"==typeof e.yylineno?"Parse error on line "+(e.yylineno+1)+": ":"Parse error: ","function"==typeof e.showPosition&&(k+="\n"+e.showPosition(69,10)+"\n"),A.length?k+="Expecting "+A.join(", ")+", got unexpected "+E:k+="Unexpected "+E,g=this.constructParseErrorInfo(k,null,A,!1),void 0!==(y=this.parseError(g.errStr,g,this.JisonParserError))&&(w=y);break}switch(d){default:if(d instanceof Array){g=this.constructParseErrorInfo("Parse Error: multiple actions possible at state: "+p+", token: "+c,null,null,!1),void 0!==(y=this.parseError(g.errStr,g,this.JisonParserError))&&(w=y);break}g=this.constructParseErrorInfo("Parsing halted. No viable error recovery approach available due to internal system failure.",null,null,!1),void 0!==(y=this.parseError(g.errStr,g,this.JisonParserError))&&(w=y);break;case 1:n[s]=c,o[s]=e.yytext,i[s]=b,++s,c=0;continue;case 2:if(m=(x=this.productions_[b-1])[1],void 0!==(y=this.performAction.call(O,b,s-1,o))){w=y;break}s-=m;var P=x[0];n[s]=P,o[s]=O.$,b=a[i[s-1]][P],i[s]=b,++s;continue;case 3:-2!==s&&(w=!0,s--,void 0!==o[s]&&(w=o[s]))}break}}catch(j){if(j instanceof this.JisonParserError)throw j;if(e&&"function"==typeof e.JisonLexerError&&j instanceof e.JisonLexerError)throw j;g=this.constructParseErrorInfo("Parsing aborted due to exception.",j,null,!1),w=!1,void 0!==(y=this.parseError(g.errStr,g,this.JisonParserError))&&(w=y)}finally{w=this.cleanupAfterParse(w,!0,!0),this.__reentrant_call_depth--}return w}};i.originalParseError=i.parseError,i.originalQuoteName=i.quoteName;var o=function(){function t(t,e){var r;if(Object.defineProperty(this,"name",{enumerable:!1,writable:!1,value:"JisonLexerError"}),null==t&&(t="???"),Object.defineProperty(this,"message",{enumerable:!1,writable:!0,value:t}),this.hash=e,e&&e.exception instanceof Error){var n=e.exception;this.message=n.message||t,r=n.stack}r||(Error.hasOwnProperty("captureStackTrace")?Error.captureStackTrace(this,this.constructor):r=new Error(t).stack),r&&Object.defineProperty(this,"stack",{enumerable:!1,writable:!1,value:r})}"function"==typeof Object.setPrototypeOf?Object.setPrototypeOf(t.prototype,Error.prototype):t.prototype=Object.create(Error.prototype),t.prototype.constructor=t,t.prototype.name="JisonLexerError";var e={EOF:1,ERROR:2,__currentRuleSet__:null,__error_infos:[],__decompressed:!1,done:!1,_backtrack:!1,_input:"",_more:!1,_signaled_error_token:!1,conditionStack:[],match:"",matched:"",matches:!1,yytext:"",offset:0,yyleng:0,yylineno:0,yylloc:null,constructLexErrorInfo:function(t,e,r){if(t=""+t,null==r&&(r=!(t.indexOf("\n")>0&&t.indexOf("^")>0)),this.yylloc&&r)if("function"==typeof this.prettyPrintRange){this.prettyPrintRange(this.yylloc);/\n\s*$/.test(t)||(t+="\n"),t+="\n Erroneous area:\n"+this.prettyPrintRange(this.yylloc)}else if("function"==typeof this.showPosition){var n=this.showPosition();n&&(t.length&&"\n"!==t[t.length-1]&&"\n"!==n[0]?t+="\n"+n:t+=n)}var i={errStr:t,recoverable:!!e,text:this.match,token:null,line:this.yylineno,loc:this.yylloc,yy:this.yy,lexer:this,destroy:function(){var t=!!this.recoverable;for(var e in this)this.hasOwnProperty(e)&&"object"==typeof e&&(this[e]=void 0);this.recoverable=t}};return this.__error_infos.push(i),i},parseError:function(t,e,r){if(r||(r=this.JisonLexerError),this.yy){if(this.yy.parser&&"function"==typeof this.yy.parser.parseError)return this.yy.parser.parseError.call(this,t,e,r)||this.ERROR;if("function"==typeof this.yy.parseError)return this.yy.parseError.call(this,t,e,r)||this.ERROR}throw new r(t,e)},yyerror:function(t){var e="";this.yylloc&&(e=" on line "+(this.yylineno+1));var r=this.constructLexErrorInfo("Lexical error"+e+": "+t,this.options.lexerErrorsAreRecoverable),n=Array.prototype.slice.call(arguments,1);return n.length&&(r.extra_error_attributes=n),this.parseError(r.errStr,r,this.JisonLexerError)||this.ERROR},cleanupAfterLex:function(t){if(this.setInput("",{}),!t){for(var e=this.__error_infos.length-1;e>=0;e--){var r=this.__error_infos[e];r&&"function"==typeof r.destroy&&r.destroy()}this.__error_infos.length=0}return this},clear:function(){this.yytext="",this.yyleng=0,this.match="",this.matches=!1,this._more=!1,this._backtrack=!1;var t=this.yylloc?this.yylloc.last_column:0;this.yylloc={first_line:this.yylineno+1,first_column:t,last_line:this.yylineno+1,last_column:t,range:[this.offset,this.offset]}},setInput:function(t,e){if(this.yy=e||this.yy||{},!this.__decompressed){for(var r=this.rules,n=0,i=r.length;n1){this.yylineno-=r.length-1,this.yylloc.last_line=this.yylineno+1;var n=this.match,i=n.split(/(?:\r\n?|\n)/g);1===i.length&&(i=(n=this.matched).split(/(?:\r\n?|\n)/g)),this.yylloc.last_column=i[i.length-1].length}else this.yylloc.last_column-=e;return this.yylloc.range[1]=this.yylloc.range[0]+this.yyleng,this.done=!1,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else{var t="";this.yylloc&&(t=" on line "+(this.yylineno+1));var e=this.constructLexErrorInfo("Lexical error"+t+": You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).",!1);this._signaled_error_token=this.parseError(e.errStr,e,this.JisonLexerError)||this.ERROR}return this},less:function(t){return this.unput(this.match.slice(t))},pastInput:function(t,e){var r=this.matched.substring(0,this.matched.length-this.match.length);t<0?t=r.length:t||(t=20),e<0?e=r.length:e||(e=1);var n=(r=r.substr(2*-t-2)).replace(/\r\n|\r/g,"\n").split("\n");return(r=(n=n.slice(-e)).join("\n")).length>t&&(r="..."+r.substr(-t)),r},upcomingInput:function(t,e){var r=this.match;t<0?t=r.length+this._input.length:t||(t=20),e<0?e=t:e||(e=1),r.length<2*t+2&&(r+=this._input.substring(0,2*t+2));var n=r.replace(/\r\n|\r/g,"\n").split("\n");return(r=(n=n.slice(0,e)).join("\n")).length>t&&(r=r.substring(0,t)+"..."),r},showPosition:function(t,e){var r=this.pastInput(t).replace(/\s/g," "),n=new Array(r.length+1).join("-");return r+this.upcomingInput(e).replace(/\s/g," ")+"\n"+n+"^"},deriveLocationInfo:function(t,e,r,n){var i={first_line:1,first_column:0,last_line:1,last_column:0,range:[0,0]};return t&&(i.first_line=0|t.first_line,i.last_line=0|t.last_line,i.first_column=0|t.first_column,i.last_column=0|t.last_column,t.range&&(i.range[0]=0|t.range[0],i.range[1]=0|t.range[1])),(i.first_line<=0||i.last_line=i.first_line)&&(i.last_line=0|n.last_line,i.last_column=0|n.last_column,n.range&&(i.range[1]=0|n.range[1]))),i.last_line<=0&&(i.first_line<=0?(i.first_line=this.yylloc.first_line,i.last_line=this.yylloc.last_line,i.first_column=this.yylloc.first_column,i.last_column=this.yylloc.last_column,i.range[0]=this.yylloc.range[0],i.range[1]=this.yylloc.range[1]):(i.last_line=this.yylloc.last_line,i.last_column=this.yylloc.last_column,i.range[1]=this.yylloc.range[1])),i.first_line<=0&&(i.first_line=i.last_line,i.first_column=0,i.range[1]=i.range[0]),i.first_column<0&&(i.first_column=0),i.last_column<0&&(i.last_column=i.first_column>0?i.first_column:80),i},prettyPrintRange:function(t,e,r){t=this.deriveLocationInfo(t,e,r);var n=(this.matched+this._input).split("\n"),i=Math.max(1,e?e.first_line:t.first_line-3),o=Math.max(1,r?r.last_line:t.last_line+1),a=1+Math.log10(1|o)|0,s=new Array(a).join(" "),c=[],l=n.slice(i-1,o+1).map((function(e,r){var n=r+i,o=(s+n).substr(-a)+": "+e,l=new Array(a+1).join("^"),u=3,h=0;(n===t.first_line?(u+=t.first_column,h=Math.max(2,(n===t.last_line?t.last_column:e.length)-t.first_column+1)):n===t.last_line?h=Math.max(2,t.last_column+1):n>t.first_line&&n0&&c.push(r));return o=o.replace(/\t/g," ")}));if(c.length>4){var u=c[1]+1,h=c[c.length-2]-1,f=new Array(a+1).join(" ")+" (...continued...)";f+="\n"+new Array(a+1).join("-")+" (---------------)",l.splice(u,h-u+1,f)}return l.join("\n")},describeYYLLOC:function(t,e){var r,n=t.first_line,i=t.last_line,o=t.first_column,a=t.last_column;if(0===i-n?(r="line "+n+", ",r+=a-o<=1?"column "+o:"columns "+o+" .. "+a):r="lines "+n+"(column "+o+") .. "+i+"(column "+a+")",t.range&&e){var s=t.range[0],c=t.range[1]-1;r+=c<=s?" {String Offset: "+s+"}":" {String Offset range: "+s+" .. "+c+"}"}return r},test_match:function(t,e){var r,n,i,o,a;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.yylloc.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column,range:this.yylloc.range.slice(0)},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done}),a=(o=t[0]).length,(n=o.split(/(?:\r\n?|\n)/g)).length>1?(this.yylineno+=n.length-1,this.yylloc.last_line=this.yylineno+1,this.yylloc.last_column=n[n.length-1].length):this.yylloc.last_column+=a,this.yytext+=o,this.match+=o,this.matched+=o,this.matches=t,this.yyleng=this.yytext.length,this.yylloc.range[1]+=a,this.offset+=a,this._more=!1,this._backtrack=!1,this._input=this._input.slice(a),r=this.performAction.call(this,this.yy,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),r)return r;if(this._backtrack){for(var s in i)this[s]=i[s];return this.__currentRuleSet__=null,!1}return!!this._signaled_error_token&&(r=this._signaled_error_token,this._signaled_error_token=!1,r)},next:function(){if(this.done)return this.clear(),this.EOF;var t,e,r,n;this._input||(this.done=!0),this._more||this.clear();var i=this.__currentRuleSet__;if(!(i||(i=this.__currentRuleSet__=this._currentRules())&&i.rules)){var o="";this.options.trackPosition&&(o=" on line "+(this.yylineno+1));var a=this.constructLexErrorInfo("Internal lexer engine error"+o+': The lex grammar programmer pushed a non-existing condition name "'+this.topState()+'"; this is a fatal error and should be reported to the application programmer team!',!1);return this.parseError(a.errStr,a,this.JisonLexerError)||this.ERROR}for(var s=i.rules,c=i.__rule_regexes,l=i.__rule_count,u=1;u<=l;u++)if((r=this._input.match(c[u]))&&(!e||r[0].length>e[0].length)){if(e=r,n=u,this.options.backtrack_lexer){if(!1!==(t=this.test_match(r,s[u])))return t;if(this._backtrack){e=void 0;continue}return!1}if(!this.options.flex)break}if(e)return!1!==(t=this.test_match(e,s[n]))&&t;if(this._input){o="";this.options.trackPosition&&(o=" on line "+(this.yylineno+1));a=this.constructLexErrorInfo("Lexical error"+o+": Unrecognized text.",this.options.lexerErrorsAreRecoverable);var h=this._input,f=this.topState(),p=this.conditionStack.length;return(t=this.parseError(a.errStr,a,this.JisonLexerError)||this.ERROR)===this.ERROR&&(this.matches||h!==this._input||f!==this.topState()||p!==this.conditionStack.length||this.input()),t}return this.done=!0,this.clear(),this.EOF},lex:function(){var t;for("function"==typeof this.pre_lex&&(t=this.pre_lex.call(this,0)),"function"==typeof this.options.pre_lex&&(t=this.options.pre_lex.call(this,t)||t),this.yy&&"function"==typeof this.yy.pre_lex&&(t=this.yy.pre_lex.call(this,t)||t);!t;)t=this.next();return this.yy&&"function"==typeof this.yy.post_lex&&(t=this.yy.post_lex.call(this,t)||t),"function"==typeof this.options.post_lex&&(t=this.options.post_lex.call(this,t)||t),"function"==typeof this.post_lex&&(t=this.post_lex.call(this,t)||t),t},fastLex:function(){for(var t;!t;)t=this.next();return t},canIUse:function(){return{fastLex:!("function"==typeof this.pre_lex||"function"==typeof this.options.pre_lex||this.yy&&"function"==typeof this.yy.pre_lex||this.yy&&"function"==typeof this.yy.post_lex||"function"==typeof this.options.post_lex||"function"==typeof this.post_lex)&&"function"==typeof this.fastLex}},begin:function(t){return this.pushState(t)},pushState:function(t){return this.conditionStack.push(t),this.__currentRuleSet__=null,this},popState:function(){return this.conditionStack.length-1>0?(this.__currentRuleSet__=null,this.conditionStack.pop()):this.conditionStack[0]},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]]:this.conditions.INITIAL},stateStackSize:function(){return this.conditionStack.length},options:{trackPosition:!0},JisonLexerError:t,performAction:function(t,e,r){if(1!==e)return this.simpleCaseActionClusters[e]},simpleCaseActionClusters:{0:13,2:5,3:6,4:3,5:4,6:15,7:15,8:15,9:15,10:15,11:15,12:16,13:16,14:16,15:16,16:17,17:17,18:18,19:18,20:19,21:19,22:19,23:20,24:21,25:22,26:23,27:25,28:24,29:26,30:27,31:28,32:11,33:9,34:12,35:10,36:7,37:8,38:14,39:1},rules:[/^(?:(--[\d\-A-Za-z]*))/,/^(?:\s+)/,/^(?:\*)/,/^(?:\/)/,/^(?:\+)/,/^(?:-)/,/^(?:(\d+(\.\d*)?|\.\d+)px\b)/,/^(?:(\d+(\.\d*)?|\.\d+)cm\b)/,/^(?:(\d+(\.\d*)?|\.\d+)mm\b)/,/^(?:(\d+(\.\d*)?|\.\d+)in\b)/,/^(?:(\d+(\.\d*)?|\.\d+)pt\b)/,/^(?:(\d+(\.\d*)?|\.\d+)pc\b)/,/^(?:(\d+(\.\d*)?|\.\d+)deg\b)/,/^(?:(\d+(\.\d*)?|\.\d+)grad\b)/,/^(?:(\d+(\.\d*)?|\.\d+)rad\b)/,/^(?:(\d+(\.\d*)?|\.\d+)turn\b)/,/^(?:(\d+(\.\d*)?|\.\d+)s\b)/,/^(?:(\d+(\.\d*)?|\.\d+)ms\b)/,/^(?:(\d+(\.\d*)?|\.\d+)Hz\b)/,/^(?:(\d+(\.\d*)?|\.\d+)kHz\b)/,/^(?:(\d+(\.\d*)?|\.\d+)dpi\b)/,/^(?:(\d+(\.\d*)?|\.\d+)dpcm\b)/,/^(?:(\d+(\.\d*)?|\.\d+)dppx\b)/,/^(?:(\d+(\.\d*)?|\.\d+)em\b)/,/^(?:(\d+(\.\d*)?|\.\d+)ex\b)/,/^(?:(\d+(\.\d*)?|\.\d+)ch\b)/,/^(?:(\d+(\.\d*)?|\.\d+)rem\b)/,/^(?:(\d+(\.\d*)?|\.\d+)vw\b)/,/^(?:(\d+(\.\d*)?|\.\d+)vh\b)/,/^(?:(\d+(\.\d*)?|\.\d+)vmin\b)/,/^(?:(\d+(\.\d*)?|\.\d+)vmax\b)/,/^(?:(\d+(\.\d*)?|\.\d+)%)/,/^(?:(\d+(\.\d*)?|\.\d+)\b)/,/^(?:(calc))/,/^(?:(var))/,/^(?:([a-z]+))/,/^(?:\()/,/^(?:\))/,/^(?:,)/,/^(?:$)/],conditions:{INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39],inclusive:!0}}};return e}();function a(){this.yy={}}return i.lexer=o,a.prototype=i,i.Parser=a,new a}();e.parser=r,e.Parser=r.Parser,e.parse=function(){return r.parse.apply(r,arguments)}},2603:function(t,e,r){var n=r(59012),i=r(13525),o=r(98513);function a(t){return this instanceof a?(this.nodes=n(t),this):new a(t)}a.prototype.toString=function(){return Array.isArray(this.nodes)?o(this.nodes):""},a.prototype.walk=function(t,e){return i(this.nodes,t,e),this},a.unit=r(72938),a.walk=i,a.stringify=o,t.exports=a},59012:function(t){var e="(".charCodeAt(0),r=")".charCodeAt(0),n="'".charCodeAt(0),i='"'.charCodeAt(0),o="\\".charCodeAt(0),a="/".charCodeAt(0),s=",".charCodeAt(0),c=":".charCodeAt(0),l="*".charCodeAt(0);t.exports=function(t){for(var u,h,f,p,d,y,v,g,m=[],x=t,b=0,_=x.charCodeAt(b),O=x.length,w=[{nodes:m}],k=0,E="",A="",P="";b=48&&a<=57)h=!0;else if(a===i||a===o){if(u>-1)break;u=s}else if(a===n){if(l)break;l=!0}else{if(a!==r&&a!==e)break;if(0!==s)break}s+=1}return u+1===s&&s--,!!h&&{number:t.slice(0,s),unit:t.slice(s)}}},13525:function(t){t.exports=function t(e,r,n){var i,o,a,s;for(i=0,o=e.length;i-1?s[c?e[l]:l]:void 0}}},47445:function(t,e,r){var n=r(40098),i=r(16612),o=r(18601);t.exports=function(t){return function(e,r,a){return a&&"number"!=typeof a&&i(e,r,a)&&(r=a=void 0),e=o(e),void 0===r?(r=e,e=0):r=o(r),a=void 0===a?e-1?c[s?e[l]:l]:void 0}}},7445:function(t,e,r){var n=r(98),i=r(6612),o=r(8601);t.exports=function(t){return function(e,r,a){return a&&"number"!=typeof a&&i(e,r,a)&&(r=a=void 0),e=o(e),void 0===r?(r=e,e=0):r=o(r),a=void 0===a?e=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function k(){return k=Object.assign?Object.assign.bind():function(t){for(var e=1;e0&&Math.abs(b)0&&Math.abs(v)=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function h(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function p(t){for(var e=1;e=2?(0,P.uY)(b[1].coordinate-b[0].coordinate):1;if(1===_?(r="width"===m?p:d,n="width"===m?p+y:d+v):(r="width"===m?p+y:d+v,n="width"===m?p:d),e){var w=i[x-1],O=s()(o)?o(w.value,x-1):w.value,S=(0,E.xE)(O,{fontSize:f,letterSpacing:h})[m]+g,j=_*(w.coordinate+_*S/2-n);b[x-1]=w=M(M({},w),{},{tickCoord:j>0?w.coordinate-j*_:w.coordinate}),_*(w.tickCoord-_*S/2-r)>=0&&_*(w.tickCoord+_*S/2-n)<=0&&(n=w.tickCoord-_*(S/2+l),b[x-1]=M(M({},w),{},{isShow:!0}))}for(var k=e?x-1:x,A=0;A=0&&_*(T.tickCoord+_*C/2-n)<=0&&(r=T.tickCoord+_*(C/2+l),b[A]=M(M({},T),{},{isShow:!0}))}return b}function N(t,e,r){var n=t.tick,i=t.ticks,o=t.viewBox,a=t.minTickGap,c=t.orientation,l=t.interval,u=t.tickFormatter,f=t.unit;if(!i||!i.length||!n)return[];if((0,P.hj)(l)||k.x.isSsr)return function(t,e){return A(t,e+1)}(i,"number"==typeof l&&(0,P.hj)(l)?l:0);var h=[];return"equidistantPreserveStart"===l?function(t){for(var e=1,r=A(t,e,(function(t){return t.isShow}));e<=t.length;){if(void 0!==r)return r;r=A(t,++e,(function(t){return t.isShow}))}return t.slice(0,1)}(h=R({ticks:i,tickFormatter:u,viewBox:o,orientation:c,minTickGap:a,unit:f,fontSize:e,letterSpacing:r})):(h="preserveStart"===l||"preserveStartEnd"===l?R({ticks:i,tickFormatter:u,viewBox:o,orientation:c,minTickGap:a,unit:f,fontSize:e,letterSpacing:r},"preserveStartEnd"===l):function(t){var e,r,n=t.ticks,i=t.tickFormatter,o=t.viewBox,a=t.orientation,c=t.minTickGap,l=t.unit,u=t.fontSize,f=t.letterSpacing,h=o.x,p=o.y,d=o.width,y=o.height,v="top"===a||"bottom"===a?"width":"height",m=l&&"width"===v?(0,E.xE)(l,{fontSize:u,letterSpacing:f})[v]:0,b=(n||[]).slice(),g=b.length,x=g>=2?(0,P.uY)(b[1].coordinate-b[0].coordinate):1;1===x?(e="width"===v?h:p,r="width"===v?h+d:p+y):(e="width"===v?h+d:p+y,r="width"===v?h:p);for(var _=g-1;_>=0;_--){var w=b[_],O=s()(i)?i(w.value,g-_-1):w.value,S=(0,E.xE)(O,{fontSize:u,letterSpacing:f})[v]+m;if(_===g-1){var j=x*(w.coordinate+x*S/2-r);b[_]=w=M(M({},w),{},{tickCoord:j>0?w.coordinate-j*x:w.coordinate})}else b[_]=w=M(M({},w),{},{tickCoord:w.coordinate});x*(w.tickCoord-x*S/2-e)>=0&&x*(w.tickCoord+x*S/2-r)<=0&&(r=w.tickCoord-x*(S/2+c),b[_]=M(M({},w),{},{isShow:!0}))}return b}({ticks:i,tickFormatter:u,viewBox:o,orientation:c,minTickGap:a,unit:f,fontSize:e,letterSpacing:r}),h.filter((function(t){return t.isShow})))}var D=r(514),L=r(8710),B=r(9307),z=r(8312),V=r(5469),F=r(2017);function G(t){return G="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},G(t)}function X(){return X=Object.assign?Object.assign.bind():function(t){for(var e=1;e180),",").concat(+(o>c),",\n ").concat(l.x,",").concat(l.y,"\n ");if(n>0){var f=(0,Q.op)(e,r,n,o),h=(0,Q.op)(e,r,n,c);u+="L ".concat(h.x,",").concat(h.y,"\n A ").concat(n,",").concat(n,",0,\n ").concat(+(Math.abs(a)>180),",").concat(+(o<=c),",\n ").concat(f.x,",").concat(f.y," Z")}else u+="L ".concat(e,",").concat(r," Z");return u},lt=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&nt(t,e)}(o,t);var e,r,n,i=it(o);function o(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,o),i.apply(this,arguments)}return e=o,(r=[{key:"render",value:function(){var t=this.props,e=t.cx,r=t.cy,n=t.innerRadius,i=t.outerRadius,o=t.cornerRadius,a=t.forceCornerRadius,c=t.cornerIsExternal,s=t.startAngle,l=t.endAngle,u=t.className;if(i0&&Math.abs(s-l)<360?function(t){var e=t.cx,r=t.cy,n=t.innerRadius,i=t.outerRadius,o=t.cornerRadius,a=t.forceCornerRadius,c=t.cornerIsExternal,s=t.startAngle,l=t.endAngle,u=(0,P.uY)(l-s),f=ct({cx:e,cy:r,radius:i,angle:s,sign:u,cornerRadius:o,cornerIsExternal:c}),h=f.circleTangency,p=f.lineTangency,d=f.theta,y=ct({cx:e,cy:r,radius:i,angle:l,sign:-u,cornerRadius:o,cornerIsExternal:c}),v=y.circleTangency,m=y.lineTangency,b=y.theta,g=c?Math.abs(s-l):Math.abs(s-l)-d-b;if(g<0)return a?"M ".concat(p.x,",").concat(p.y,"\n a").concat(o,",").concat(o,",0,0,1,").concat(2*o,",0\n a").concat(o,",").concat(o,",0,0,1,").concat(2*-o,",0\n "):st({cx:e,cy:r,innerRadius:n,outerRadius:i,startAngle:s,endAngle:l});var x="M ".concat(p.x,",").concat(p.y,"\n A").concat(o,",").concat(o,",0,0,").concat(+(u<0),",").concat(h.x,",").concat(h.y,"\n A").concat(i,",").concat(i,",0,").concat(+(g>180),",").concat(+(u<0),",").concat(v.x,",").concat(v.y,"\n A").concat(o,",").concat(o,",0,0,").concat(+(u<0),",").concat(m.x,",").concat(m.y,"\n ");if(n>0){var _=ct({cx:e,cy:r,radius:n,angle:s,sign:u,isExternal:!0,cornerRadius:o,cornerIsExternal:c}),w=_.circleTangency,O=_.lineTangency,S=_.theta,j=ct({cx:e,cy:r,radius:n,angle:l,sign:-u,isExternal:!0,cornerRadius:o,cornerIsExternal:c}),E=j.circleTangency,k=j.lineTangency,A=j.theta,T=c?Math.abs(s-l):Math.abs(s-l)-S-A;if(T<0&&0===o)return"".concat(x,"L").concat(e,",").concat(r,"Z");x+="L".concat(k.x,",").concat(k.y,"\n A").concat(o,",").concat(o,",0,0,").concat(+(u<0),",").concat(E.x,",").concat(E.y,"\n A").concat(n,",").concat(n,",0,").concat(+(T>180),",").concat(+(u>0),",").concat(w.x,",").concat(w.y,"\n A").concat(o,",").concat(o,",0,0,").concat(+(u<0),",").concat(O.x,",").concat(O.y,"Z")}else x+="L".concat(e,",").concat(r,"Z");return x}({cx:e,cy:r,innerRadius:n,outerRadius:i,cornerRadius:Math.min(d,p/2),forceCornerRadius:a,cornerIsExternal:c,startAngle:s,endAngle:l}):st({cx:e,cy:r,innerRadius:n,outerRadius:i,startAngle:s,endAngle:l}),O.createElement("path",et({},(0,F.L6)(this.props,!0),{className:h,d:f,role:"img"}))}}])&&rt(e.prototype,r),n&&rt(e,n),Object.defineProperty(e,"prototype",{writable:!1}),o}(O.PureComponent);!function(t,e,r){(e=at(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r}(lt,"defaultProps",{cx:0,cy:0,innerRadius:0,outerRadius:0,startAngle:0,endAngle:0,cornerRadius:0,forceCornerRadius:!1,cornerIsExternal:!1});var ut=r(3061),ft=r(3481),ht=r(791),pt=r(8169),dt=r(5048),yt=r(9896),vt=["viewBox"],mt=["viewBox"],bt=["ticks"];function gt(t){return gt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},gt(t)}function xt(){return xt=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function St(t,e){for(var r=0;r0?o(this.props):o(u)),n<=0||i<=0||!f||!f.length?null:O.createElement(L.m,{className:j()("recharts-cartesian-axis",a),ref:function(e){t.layerReference=e}},r&&this.renderAxisLine(),this.renderTicks(f,this.state.fontSize,this.state.letterSpacing),dt._.renderCallByParent(this.props))}}])&&St(e.prototype,r),n&&St(e,n),Object.defineProperty(e,"prototype",{writable:!1}),o}(O.Component);kt(Tt,"displayName","CartesianAxis"),kt(Tt,"defaultProps",{x:0,y:0,width:0,height:0,viewBox:{x:0,y:0,width:0,height:0},orientation:"bottom",ticks:[],stroke:"#666",tickLine:!0,axisLine:!0,tick:!0,mirror:!1,minTickGap:5,tickSize:6,tickMargin:2,interval:"preserveEnd"});var It=r(996),Mt=r(6822);function Ct(t){return Ct="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ct(t)}function Rt(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Nt(t){for(var e=1;e0&&e.handleDrag(t.changedTouches[0])})),Ht($t(e),"handleDragEnd",(function(){e.setState({isTravellerMoving:!1,isSlideMoving:!1}),e.detachDragEndListener()})),Ht($t(e),"handleLeaveWrapper",(function(){(e.state.isTravellerMoving||e.state.isSlideMoving)&&(e.leaveTimer=window.setTimeout(e.handleDragEnd,e.props.leaveTimeOut))})),Ht($t(e),"handleEnterSlideOrTraveller",(function(){e.setState({isTextActive:!0})})),Ht($t(e),"handleLeaveSlideOrTraveller",(function(){e.setState({isTextActive:!1})})),Ht($t(e),"handleSlideDragStart",(function(t){var r=Ut(t)?t.changedTouches[0]:t;e.setState({isTravellerMoving:!1,isSlideMoving:!0,slideMoveStartX:r.pageX}),e.attachDragEndListener()})),e.travellerDragStartHandlers={startX:e.handleTravellerDragStart.bind($t(e),"startX"),endX:e.handleTravellerDragStart.bind($t(e),"endX")},e.state={},e}return e=o,r=[{key:"componentWillUnmount",value:function(){this.leaveTimer&&(clearTimeout(this.leaveTimer),this.leaveTimer=null),this.detachDragEndListener()}},{key:"getIndex",value:function(t){var e=t.startX,r=t.endX,n=this.state.scaleValues,i=this.props,a=i.gap,c=i.data.length-1,s=Math.min(e,r),l=Math.max(e,r),u=o.getIndexInRange(n,s),f=o.getIndexInRange(n,l);return{startIndex:u-u%a,endIndex:f===c?c:f-f%a}}},{key:"getTextOfTick",value:function(t){var e=this.props,r=e.data,n=e.tickFormatter,i=e.dataKey,o=(0,Mt.F$)(r[t],i,t);return s()(n)?n(o,t):o}},{key:"attachDragEndListener",value:function(){window.addEventListener("mouseup",this.handleDragEnd,!0),window.addEventListener("touchend",this.handleDragEnd,!0),window.addEventListener("mousemove",this.handleDrag,!0)}},{key:"detachDragEndListener",value:function(){window.removeEventListener("mouseup",this.handleDragEnd,!0),window.removeEventListener("touchend",this.handleDragEnd,!0),window.removeEventListener("mousemove",this.handleDrag,!0)}},{key:"handleSlideDrag",value:function(t){var e=this.state,r=e.slideMoveStartX,n=e.startX,i=e.endX,o=this.props,a=o.x,c=o.width,s=o.travellerWidth,l=o.startIndex,u=o.endIndex,f=o.onChange,h=t.pageX-r;h>0?h=Math.min(h,a+c-s-i,a+c-s-n):h<0&&(h=Math.max(h,a-n,a-i));var p=this.getIndex({startX:n+h,endX:i+h});p.startIndex===l&&p.endIndex===u||!f||f(p),this.setState({startX:n+h,endX:i+h,slideMoveStartX:t.pageX})}},{key:"handleTravellerDragStart",value:function(t,e){var r=Ut(e)?e.changedTouches[0]:e;this.setState({isSlideMoving:!1,isTravellerMoving:!0,movingTravellerId:t,brushMoveStartX:r.pageX}),this.attachDragEndListener()}},{key:"handleTravellerMove",value:function(t){var e,r=this.state,n=r.brushMoveStartX,i=r.movingTravellerId,o=r.endX,a=r.startX,c=this.state[i],s=this.props,l=s.x,u=s.width,f=s.travellerWidth,h=s.onChange,p=s.gap,d=s.data,y={startX:this.state.startX,endX:this.state.endX},v=t.pageX-n;v>0?v=Math.min(v,l+u-f-c):v<0&&(v=Math.max(v,l-c)),y[i]=c+v;var m=this.getIndex(y),b=m.startIndex,g=m.endIndex;this.setState((Ht(e={},i,c+v),Ht(e,"brushMoveStartX",t.pageX),e),(function(){var t;h&&(t=d.length-1,("startX"===i&&(o>a?b%p==0:g%p==0)||oa?g%p==0:b%p==0)||o>a&&g===t)&&h(m))}))}},{key:"renderBackground",value:function(){var t=this.props,e=t.x,r=t.y,n=t.width,i=t.height,o=t.fill,a=t.stroke;return O.createElement("rect",{stroke:a,fill:o,x:e,y:r,width:n,height:i})}},{key:"renderPanorama",value:function(){var t=this.props,e=t.x,r=t.y,n=t.width,i=t.height,o=t.data,a=t.children,c=t.padding,s=O.Children.only(a);return s?O.cloneElement(s,{x:e,y:r,width:n,height:i,margin:c,compact:!0,data:o}):null}},{key:"renderTravellerLayer",value:function(t,e){var r=this.props,n=r.y,i=r.travellerWidth,a=r.height,c=r.traveller,s=Math.max(t,this.props.x),l=Ft(Ft({},(0,F.L6)(this.props)),{},{x:s,y:n,width:i,height:a});return O.createElement(L.m,{className:"recharts-brush-traveller",onMouseEnter:this.handleEnterSlideOrTraveller,onMouseLeave:this.handleLeaveSlideOrTraveller,onMouseDown:this.travellerDragStartHandlers[e],onTouchStart:this.travellerDragStartHandlers[e],style:{cursor:"col-resize"}},o.renderTraveller(c,l))}},{key:"renderSlide",value:function(t,e){var r=this.props,n=r.y,i=r.height,o=r.stroke,a=r.travellerWidth,c=Math.min(t,e)+a,s=Math.max(Math.abs(e-t)-a,0);return O.createElement("rect",{className:"recharts-brush-slide",onMouseEnter:this.handleEnterSlideOrTraveller,onMouseLeave:this.handleLeaveSlideOrTraveller,onMouseDown:this.handleSlideDragStart,onTouchStart:this.handleSlideDragStart,style:{cursor:"move"},stroke:"none",fill:o,fillOpacity:.2,x:c,y:n,width:s,height:i})}},{key:"renderText",value:function(){var t=this.props,e=t.startIndex,r=t.endIndex,n=t.y,i=t.height,o=t.travellerWidth,a=t.stroke,c=this.state,s=c.startX,l=c.endX,u={pointerEvents:"none",fill:a};return O.createElement(L.m,{className:"recharts-brush-texts"},O.createElement(pt.x,zt({textAnchor:"end",verticalAnchor:"middle",x:Math.min(s,l)-5,y:n+i/2},u),this.getTextOfTick(e)),O.createElement(pt.x,zt({textAnchor:"start",verticalAnchor:"middle",x:Math.max(s,l)+o+5,y:n+i/2},u),this.getTextOfTick(r)))}},{key:"render",value:function(){var t=this.props,e=t.data,r=t.className,n=t.children,i=t.x,o=t.y,a=t.width,c=t.height,s=t.alwaysShowText,l=this.state,u=l.startX,f=l.endX,h=l.isTextActive,p=l.isSlideMoving,d=l.isTravellerMoving;if(!e||!e.length||!(0,P.hj)(i)||!(0,P.hj)(o)||!(0,P.hj)(a)||!(0,P.hj)(c)||a<=0||c<=0)return null;var y=j()("recharts-brush",r),v=1===O.Children.count(n),m=function(t,e){if(!t)return null;var r=t.replace(/(\w)/,(function(t){return t.toUpperCase()})),n=Lt.reduce((function(t,n){return Nt(Nt({},t),{},Dt({},n+r,e))}),{});return n[t]=e,n}("userSelect","none");return O.createElement(L.m,{className:y,onMouseLeave:this.handleLeaveWrapper,onTouchMove:this.handleTouchMove,style:m},this.renderBackground(),v&&this.renderPanorama(),this.renderSlide(u,f),this.renderTravellerLayer(u,"startX"),this.renderTravellerLayer(f,"endX"),(h||p||d||s)&&this.renderText())}}],n=[{key:"renderDefaultTraveller",value:function(t){var e=t.x,r=t.y,n=t.width,i=t.height,o=t.stroke,a=Math.floor(r+i/2)-1;return O.createElement(O.Fragment,null,O.createElement("rect",{x:e,y:r,width:n,height:i,fill:o,stroke:"none"}),O.createElement("line",{x1:e+1,y1:a,x2:e+n-1,y2:a,fill:"none",stroke:"#fff"}),O.createElement("line",{x1:e+1,y1:a+2,x2:e+n-1,y2:a+2,fill:"none",stroke:"#fff"}))}},{key:"renderTraveller",value:function(t,e){return O.isValidElement(t)?O.cloneElement(t,e):s()(t)?t(e):o.renderDefaultTraveller(e)}},{key:"getDerivedStateFromProps",value:function(t,e){var r=t.data,n=t.width,i=t.x,o=t.travellerWidth,a=t.updateId,c=t.startIndex,s=t.endIndex;if(r!==e.prevData||a!==e.prevUpdateId)return Ft({prevData:r,prevTravellerWidth:o,prevUpdateId:a,prevX:i,prevWidth:n},r&&r.length?function(t){var e=t.data,r=t.startIndex,n=t.endIndex,i=t.x,o=t.width,a=t.travellerWidth;if(!e||!e.length)return{};var c=e.length,s=(0,It.x)().domain(v()(0,c)).range([i,i+o-a]),l=s.domain().map((function(t){return s(t)}));return{isTextActive:!1,isSlideMoving:!1,isTravellerMoving:!1,startX:s(r),endX:s(n),scale:s,scaleValues:l}}({data:r,width:n,x:i,travellerWidth:o,startIndex:c,endIndex:s}):{scale:null,scaleValues:null});if(e.scale&&(n!==e.prevWidth||i!==e.prevX||o!==e.prevTravellerWidth)){e.scale.range([i,i+n-o]);var l=e.scale.domain().map((function(t){return e.scale(t)}));return{prevData:r,prevTravellerWidth:o,prevUpdateId:a,prevX:i,prevWidth:n,startX:e.scale(t.startIndex),endX:e.scale(t.endIndex),scaleValues:l}}return null}},{key:"getIndexInRange",value:function(t,e){for(var r=0,n=t.length-1;n-r>1;){var i=Math.floor((r+n)/2);t[i]>e?n=i:r=i}return e>=t[n]?n:r}}],r&&Gt(e.prototype,r),n&&Gt(e,n),Object.defineProperty(e,"prototype",{writable:!1}),o}(O.PureComponent);Ht(Zt,"displayName","Brush"),Ht(Zt,"defaultProps",{height:40,travellerWidth:5,gap:1,fill:"#fff",stroke:"#666",padding:{top:1,right:1,bottom:1,left:1},leaveTimeOut:1e3,alwaysShowText:!1});var qt=function(t,e){var r=t.alwaysShow,n=t.ifOverflow;return r&&(n="extendDomain"),n===e},Jt=r(7187),Qt=r(6213);function te(t){return te="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},te(t)}function ee(){return ee=Object.assign?Object.assign.bind():function(t){for(var e=1;et.length)&&(e=t.length);for(var r=0,n=new Array(e);rt.length)&&(e=t.length);for(var r=0,n=new Array(e);r=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function Be(t,e){for(var r=0;rt.length)&&(e=t.length);for(var r=0,n=new Array(e);r0?a:r&&r.props&&r.props.data&&r.props.data.length>0?r.props.data:t&&t.length&&(0,P.hj)(i)&&(0,P.hj)(o)?t.slice(i,o+1):[]};function rr(t){return"number"===t?[0,"auto"]:void 0}var nr=function(t,e,r,n){var i=t.graphicalItems,o=t.tooltipAxis,a=er(e,t);return r<0||!i||!i.length||r>=a.length?null:i.reduce((function(t,e){if(e.props.hide)return t;var i,c=e.props.data;if(o.dataKey&&!o.allowDuplicatedCategory){var s=void 0===c?a:c;i=(0,P.Ap)(s,o.dataKey,n)}else i=c&&c[r]||a[r];return i?[].concat(Xe(t),[(0,Mt.Qo)(e,i)]):t}),[])},ir=function(t,e,r,n){var i=n||{x:t.chartX,y:t.chartY},o=function(t,e){return"horizontal"===e?t.x:"vertical"===e?t.y:"centric"===e?t.angle:t.radius}(i,r),a=t.orderedTooltipTicks,c=t.tooltipAxis,s=t.tooltipTicks,l=(0,Mt.VO)(o,a,s,c);if(l>=0&&s){var u=s[l]&&s[l].value,f=nr(t,e,l,u),h=function(t,e,r,n){var i=e.find((function(t){return t&&t.index===r}));if(i){if("horizontal"===t)return{x:i.coordinate,y:n.y};if("vertical"===t)return{x:n.x,y:i.coordinate};if("centric"===t){var o=i.coordinate,a=n.radius;return He(He(He({},n),(0,Q.op)(n.cx,n.cy,a,o)),{},{angle:o,radius:a})}var c=i.coordinate,s=n.angle;return He(He(He({},n),(0,Q.op)(n.cx,n.cy,c,s)),{},{angle:s,radius:c})}return qe}(r,a,l,i);return{activeTooltipIndex:l,activeLabel:u,activePayload:f,activeCoordinate:h}}return null},or=function(t,e){var r=e.axes,n=e.graphicalItems,i=e.axisType,o=e.axisIdKey,a=e.stackGroups,c=e.dataStartIndex,s=e.dataEndIndex,l=t.layout,u=t.children,f=t.stackOffset,h=(0,Mt.NA)(l,i);return r.reduce((function(e,r){var p,d=r.props,y=d.type,m=d.dataKey,g=d.allowDataOverflow,x=d.allowDuplicatedCategory,_=d.scale,w=d.ticks,O=d.includeHidden,S=r.props[o];if(e[S])return e;var j,E,k,A=er(t.data,{graphicalItems:n.filter((function(t){return t.props[o]===S})),dataStartIndex:c,dataEndIndex:s}),T=A.length;(function(t,e,r){if("number"===r&&!0===e&&Array.isArray(t)){var n=null==t?void 0:t[0],i=null==t?void 0:t[1];if(n&&i&&(0,P.hj)(n)&&(0,P.hj)(i))return!0}return!1})(r.props.domain,g,y)&&(j=(0,Mt.LG)(r.props.domain,null,g),!h||"number"!==y&&"auto"===_||(k=(0,Mt.gF)(A,m,"category")));var I=rr(y);if(!j||0===j.length){var M,C=null!==(M=r.props.domain)&&void 0!==M?M:I;if(m){if(j=(0,Mt.gF)(A,m,y),"category"===y&&h){var R=(0,P.bv)(j);x&&R?(E=j,j=v()(0,T)):x||(j=(0,Mt.ko)(C,j,r).reduce((function(t,e){return t.indexOf(e)>=0?t:[].concat(Xe(t),[e])}),[]))}else if("category"===y)j=x?j.filter((function(t){return""!==t&&!b()(t)})):(0,Mt.ko)(C,j,r).reduce((function(t,e){return t.indexOf(e)>=0||""===e||b()(e)?t:[].concat(Xe(t),[e])}),[]);else if("number"===y){var N=(0,Mt.ZI)(A,n.filter((function(t){return t.props[o]===S&&(O||!t.props.hide)})),m,i,l);N&&(j=N)}!h||"number"!==y&&"auto"===_||(k=(0,Mt.gF)(A,m,"category"))}else j=h?v()(0,T):a&&a[S]&&a[S].hasStack&&"number"===y?"expand"===f?[0,1]:(0,Mt.EB)(a[S].stackGroups,c,s):(0,Mt.s6)(A,n.filter((function(t){return t.props[o]===S&&(O||!t.props.hide)})),y,l,!0);if("number"===y)j=ke(u,j,S,i,w),C&&(j=(0,Mt.LG)(C,j,g));else if("category"===y&&C){var D=C;j.every((function(t){return D.indexOf(t)>=0}))&&(j=D)}}return He(He({},e),{},Ke({},S,He(He({},r.props),{},{axisType:i,domain:j,categoricalDomain:k,duplicateDomain:E,originalDomain:null!==(p=r.props.domain)&&void 0!==p?p:I,isCategorical:h,layout:l})))}),{})},ar=function(t,e){var r=e.axisType,n=void 0===r?"xAxis":r,i=e.AxisComp,o=e.graphicalItems,a=e.stackGroups,c=e.dataStartIndex,s=e.dataEndIndex,l=t.children,u="".concat(n,"Id"),f=(0,F.NN)(l,i),h={};return f&&f.length?h=or(t,{axes:f,graphicalItems:o,axisType:n,axisIdKey:u,stackGroups:a,dataStartIndex:c,dataEndIndex:s}):o&&o.length&&(h=function(t,e){var r=e.graphicalItems,n=e.Axis,i=e.axisType,o=e.axisIdKey,a=e.stackGroups,c=e.dataStartIndex,s=e.dataEndIndex,l=t.layout,u=t.children,f=er(t.data,{graphicalItems:r,dataStartIndex:c,dataEndIndex:s}),h=f.length,p=(0,Mt.NA)(l,i),y=-1;return r.reduce((function(t,e){var m,b=e.props[o],g=rr("number");return t[b]?t:(y++,p?m=v()(0,h):a&&a[b]&&a[b].hasStack?(m=(0,Mt.EB)(a[b].stackGroups,c,s),m=ke(u,m,b,i)):(m=(0,Mt.LG)(g,(0,Mt.s6)(f,r.filter((function(t){return t.props[o]===b&&!t.props.hide})),"number",l),n.defaultProps.allowDataOverflow),m=ke(u,m,b,i)),He(He({},t),{},Ke({},b,He(He({axisType:i},n.defaultProps),{},{hide:!0,orientation:d()(Ze,"".concat(i,".").concat(y%2),null),domain:m,originalDomain:g,isCategorical:p,layout:l}))))}),{})}(t,{Axis:i,graphicalItems:o,axisType:n,axisIdKey:u,stackGroups:a,dataStartIndex:c,dataEndIndex:s})),h},cr=function(t){var e,r,n=t.children,i=t.defaultShowTooltip,o=(0,F.sP)(n,Zt);return{chartX:0,chartY:0,dataStartIndex:o&&o.props&&o.props.startIndex||0,dataEndIndex:void 0!==(null==o||null===(e=o.props)||void 0===e?void 0:e.endIndex)?null==o||null===(r=o.props)||void 0===r?void 0:r.endIndex:t.data&&t.data.length-1||0,activeTooltipIndex:-1,isTooltipActive:!b()(i)&&i}},sr=function(t){return"horizontal"===t?{numericAxisName:"yAxis",cateAxisName:"xAxis"}:"vertical"===t?{numericAxisName:"xAxis",cateAxisName:"yAxis"}:"centric"===t?{numericAxisName:"radiusAxis",cateAxisName:"angleAxis"}:{numericAxisName:"angleAxis",cateAxisName:"radiusAxis"}},lr=function(t){var e,r=t.chartName,n=t.GraphicalChild,o=t.defaultTooltipEventType,c=void 0===o?"axis":o,l=t.validateTooltipEventTypes,f=void 0===l?["axis"]:l,p=t.axisComponents,y=t.legendContent,v=t.formatAxisMap,m=t.defaultProps,g=function(t,e){var r=e.graphicalItems,n=e.stackGroups,i=e.offset,o=e.updateId,a=e.dataStartIndex,c=e.dataEndIndex,s=t.barSize,l=t.layout,u=t.barGap,f=t.barCategoryGap,h=t.maxBarSize,d=sr(l),y=d.numericAxisName,v=d.cateAxisName,m=function(t){return!(!t||!t.length)&&t.some((function(t){var e=(0,F.Gf)(t&&t.type);return e&&e.indexOf("Bar")>=0}))}(r),g=m&&(0,Mt.pt)({barSize:s,stackGroups:n}),x=[];return r.forEach((function(r,s){var d=er(t.data,{dataStartIndex:a,dataEndIndex:c},r),m=r.props,_=m.dataKey,w=m.maxBarSize,O=r.props["".concat(y,"Id")],S=r.props["".concat(v,"Id")],j=p.reduce((function(t,n){var i,o=e["".concat(n.axisType,"Map")],a=r.props["".concat(n.axisType,"Id")],c=o&&o[a];return He(He({},t),{},(Ke(i={},n.axisType,c),Ke(i,"".concat(n.axisType,"Ticks"),(0,Mt.uY)(c)),i))}),{}),P=j[v],E=j["".concat(v,"Ticks")],k=n&&n[O]&&n[O].hasStack&&(0,Mt.O3)(r,n[O].stackGroups),A=(0,F.Gf)(r.type).indexOf("Bar")>=0,T=(0,Mt.zT)(P,E),I=[];if(A){var M,C,R=b()(w)?h:w,N=null!==(M=null!==(C=(0,Mt.zT)(P,E,!0))&&void 0!==C?C:R)&&void 0!==M?M:0;I=(0,Mt.qz)({barGap:u,barCategoryGap:f,bandSize:N!==T?N:T,sizeList:g[S],maxBarSize:R}),N!==T&&(I=I.map((function(t){return He(He({},t),{},{position:He(He({},t.position),{},{offset:t.position.offset-N/2})})})))}var D,L=r&&r.type&&r.type.getComposedData;L&&x.push({props:He(He({},L(He(He({},j),{},{displayedData:d,props:t,dataKey:_,item:r,bandSize:T,barPosition:I,offset:i,stackedData:k,layout:l,dataStartIndex:a,dataEndIndex:c}))),{},(D={key:r.key||"item-".concat(s)},Ke(D,y,j[y]),Ke(D,v,j[v]),Ke(D,"animationId",o),D)),childIndex:(0,F.$R)(r,t.children),item:r})})),x},_=function(t,e){var i=t.props,o=t.dataStartIndex,a=t.dataEndIndex,c=t.updateId;if(!(0,F.TT)({props:i}))return null;var s=i.children,l=i.layout,u=i.stackOffset,f=i.data,y=i.reverseStackOrder,m=sr(l),b=m.numericAxisName,x=m.cateAxisName,_=(0,F.NN)(s,n),w=(0,Mt.wh)(f,_,"".concat(b,"Id"),"".concat(x,"Id"),u,y),O=p.reduce((function(t,e){var r="".concat(e.axisType,"Map");return He(He({},t),{},Ke({},r,ar(i,He(He({},e),{},{graphicalItems:_,stackGroups:e.axisType===b&&w,dataStartIndex:o,dataEndIndex:a}))))}),{}),S=function(t,e){var r=t.props,n=t.graphicalItems,i=t.xAxisMap,o=void 0===i?{}:i,a=t.yAxisMap,c=void 0===a?{}:a,s=r.width,l=r.height,u=r.children,f=r.margin||{},h=(0,F.sP)(u,Zt),p=(0,F.sP)(u,z.D),y=Object.keys(c).reduce((function(t,e){var r=c[e],n=r.orientation;return r.mirror||r.hide?t:He(He({},t),{},Ke({},n,t[n]+r.width))}),{left:f.left||0,right:f.right||0}),v=Object.keys(o).reduce((function(t,e){var r=o[e],n=r.orientation;return r.mirror||r.hide?t:He(He({},t),{},Ke({},n,d()(t,"".concat(n))+r.height))}),{top:f.top||0,bottom:f.bottom||0}),m=He(He({},v),y),b=m.bottom;return h&&(m.bottom+=h.props.height||Zt.defaultProps.height),p&&e&&(m=(0,Mt.By)(m,n,r,e)),He(He({brushBottom:b},m),{},{width:s-m.left-m.right,height:l-m.top-m.bottom})}(He(He({},O),{},{props:i,graphicalItems:_}),null==e?void 0:e.legendBBox);Object.keys(O).forEach((function(t){O[t]=v(i,O[t],S,t.replace("Map",""),r)}));var j,E,k,A=O["".concat(x,"Map")],T=(j=A,E=(0,P.Kt)(j),{tooltipTicks:k=(0,Mt.uY)(E,!1,!0),orderedTooltipTicks:h()(k,(function(t){return t.coordinate})),tooltipAxis:E,tooltipAxisBandSize:(0,Mt.zT)(E,k)}),I=g(i,He(He({},O),{},{dataStartIndex:o,dataEndIndex:a,updateId:c,graphicalItems:_,stackGroups:w,offset:S}));return He(He({formattedGraphicalItems:I,graphicalItems:_,offset:S,stackGroups:w},T),O)};return e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ze(t,e)}(h,t);var e,n,o,l=Ve(h);function h(t){var e;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,h),Ke(Fe(e=l.call(this,t)),"clearDeferId",(function(){!b()(e.deferId)&&tr&&tr(e.deferId),e.deferId=null})),Ke(Fe(e),"handleLegendBBoxUpdate",(function(t){if(t){var r=e.state,n=r.dataStartIndex,i=r.dataEndIndex,o=r.updateId;e.setState(He({legendBBox:t},_({props:e.props,dataStartIndex:n,dataEndIndex:i,updateId:o},He(He({},e.state),{},{legendBBox:t}))))}})),Ke(Fe(e),"handleReceiveSyncEvent",(function(t,r,n){e.props.syncId===t&&r!==e.uniqueChartId&&(e.clearDeferId(),e.deferId=Qe&&Qe(e.applySyncEvent.bind(Fe(e),n)))})),Ke(Fe(e),"handleBrushChange",(function(t){var r=t.startIndex,n=t.endIndex;if(r!==e.state.dataStartIndex||n!==e.state.dataEndIndex){var i=e.state.updateId;e.setState((function(){return He({dataStartIndex:r,dataEndIndex:n},_({props:e.props,dataStartIndex:r,dataEndIndex:n,updateId:i},e.state))})),e.triggerSyncEvent({dataStartIndex:r,dataEndIndex:n})}})),Ke(Fe(e),"handleMouseEnter",(function(t){var r=e.props.onMouseEnter,n=e.getMouseInfo(t);if(n){var i=He(He({},n),{},{isTooltipActive:!0});e.setState(i),e.triggerSyncEvent(i),s()(r)&&r(i,t)}})),Ke(Fe(e),"triggeredAfterMouseMove",(function(t){var r=e.props.onMouseMove,n=e.getMouseInfo(t),i=n?He(He({},n),{},{isTooltipActive:!0}):{isTooltipActive:!1};e.setState(i),e.triggerSyncEvent(i),s()(r)&&r(i,t)})),Ke(Fe(e),"handleItemMouseEnter",(function(t){e.setState((function(){return{isTooltipActive:!0,activeItem:t,activePayload:t.tooltipPayload,activeCoordinate:t.tooltipPosition||{x:t.cx,y:t.cy}}}))})),Ke(Fe(e),"handleItemMouseLeave",(function(){e.setState((function(){return{isTooltipActive:!1}}))})),Ke(Fe(e),"handleMouseMove",(function(t){t&&s()(t.persist)&&t.persist(),e.triggeredAfterMouseMove(t)})),Ke(Fe(e),"handleMouseLeave",(function(t){var r=e.props.onMouseLeave,n={isTooltipActive:!1};e.setState(n),e.triggerSyncEvent(n),s()(r)&&r(n,t),e.cancelThrottledTriggerAfterMouseMove()})),Ke(Fe(e),"handleOuterEvent",(function(t){var r=(0,F.Bh)(t),n=d()(e.props,"".concat(r));r&&s()(n)&&n(/.*touch.*/i.test(r)?e.getMouseInfo(t.changedTouches[0]):e.getMouseInfo(t),t)})),Ke(Fe(e),"handleClick",(function(t){var r=e.props.onClick,n=e.getMouseInfo(t);if(n){var i=He(He({},n),{},{isTooltipActive:!0});e.setState(i),e.triggerSyncEvent(i),s()(r)&&r(i,t)}})),Ke(Fe(e),"handleMouseDown",(function(t){var r=e.props.onMouseDown;s()(r)&&r(e.getMouseInfo(t),t)})),Ke(Fe(e),"handleMouseUp",(function(t){var r=e.props.onMouseUp;s()(r)&&r(e.getMouseInfo(t),t)})),Ke(Fe(e),"handleTouchMove",(function(t){null!=t.changedTouches&&t.changedTouches.length>0&&e.handleMouseMove(t.changedTouches[0])})),Ke(Fe(e),"handleTouchStart",(function(t){null!=t.changedTouches&&t.changedTouches.length>0&&e.handleMouseDown(t.changedTouches[0])})),Ke(Fe(e),"handleTouchEnd",(function(t){null!=t.changedTouches&&t.changedTouches.length>0&&e.handleMouseUp(t.changedTouches[0])})),Ke(Fe(e),"verticalCoordinatesGenerator",(function(t){var e=t.xAxis,r=t.width,n=t.height,i=t.offset;return(0,Mt.Rf)(N(He(He(He({},Tt.defaultProps),e),{},{ticks:(0,Mt.uY)(e,!0),viewBox:{x:0,y:0,width:r,height:n}})),i.left,i.left+i.width)})),Ke(Fe(e),"horizontalCoordinatesGenerator",(function(t){var e=t.yAxis,r=t.width,n=t.height,i=t.offset;return(0,Mt.Rf)(N(He(He(He({},Tt.defaultProps),e),{},{ticks:(0,Mt.uY)(e,!0),viewBox:{x:0,y:0,width:r,height:n}})),i.top,i.top+i.height)})),Ke(Fe(e),"axesTicksGenerator",(function(t){return(0,Mt.uY)(t,!0)})),Ke(Fe(e),"renderCursor",(function(t){var n=e.state,i=n.isTooltipActive,o=n.activeCoordinate,a=n.activePayload,c=n.offset,s=n.activeTooltipIndex,l=e.getTooltipEventType();if(!t||!t.props.cursor||!i||!o||"ScatterChart"!==r&&"axis"!==l)return null;var u,f=e.props.layout,h=V.H;if("ScatterChart"===r)u=o,h=J;else if("BarChart"===r)u=e.getCursorRectangle(),h=ft.A;else if("radial"===f){var p=e.getCursorPoints(),d=p.cx,y=p.cy,v=p.radius;u={cx:d,cy:y,startAngle:p.startAngle,endAngle:p.endAngle,innerRadius:v,outerRadius:v},h=lt}else u={points:e.getCursorPoints()},h=V.H;var m=t.key||"_recharts-cursor",b=He(He(He(He({stroke:"#ccc",pointerEvents:"none"},c),u),(0,F.L6)(t.props.cursor)),{},{payload:a,payloadIndex:s,key:m,className:"recharts-tooltip-cursor"});return(0,O.isValidElement)(t.props.cursor)?(0,O.cloneElement)(t.props.cursor,b):(0,O.createElement)(h,b)})),Ke(Fe(e),"renderPolarAxis",(function(t,r,n){var i=d()(t,"type.axisType"),o=d()(e.state,"".concat(i,"Map")),a=o&&o[t.props["".concat(i,"Id")]];return(0,O.cloneElement)(t,He(He({},a),{},{className:i,key:t.key||"".concat(r,"-").concat(n),ticks:(0,Mt.uY)(a,!0)}))})),Ke(Fe(e),"renderXAxis",(function(t,r,n){var i=e.state.xAxisMap[t.props.xAxisId];return e.renderAxis(i,t,r,n)})),Ke(Fe(e),"renderYAxis",(function(t,r,n){var i=e.state.yAxisMap[t.props.yAxisId];return e.renderAxis(i,t,r,n)})),Ke(Fe(e),"renderGrid",(function(t){var r=e.state,n=r.xAxisMap,o=r.yAxisMap,c=r.offset,s=e.props,l=s.width,u=s.height,f=(0,P.Kt)(n),h=a()(o,(function(t){return i()(t.domain,Je)}))||(0,P.Kt)(o),p=t.props||{};return(0,O.cloneElement)(t,{key:t.key||"grid",x:(0,P.hj)(p.x)?p.x:c.left,y:(0,P.hj)(p.y)?p.y:c.top,width:(0,P.hj)(p.width)?p.width:c.width,height:(0,P.hj)(p.height)?p.height:c.height,xAxis:f,yAxis:h,offset:c,chartWidth:l,chartHeight:u,verticalCoordinatesGenerator:p.verticalCoordinatesGenerator||e.verticalCoordinatesGenerator,horizontalCoordinatesGenerator:p.horizontalCoordinatesGenerator||e.horizontalCoordinatesGenerator})})),Ke(Fe(e),"renderPolarGrid",(function(t){var r=t.props,n=r.radialLines,i=r.polarAngles,o=r.polarRadius,a=e.state,c=a.radiusAxisMap,s=a.angleAxisMap,l=(0,P.Kt)(c),u=(0,P.Kt)(s),f=u.cx,h=u.cy,p=u.innerRadius,d=u.outerRadius;return(0,O.cloneElement)(t,{polarAngles:w()(i)?i:(0,Mt.uY)(u,!0).map((function(t){return t.coordinate})),polarRadius:w()(o)?o:(0,Mt.uY)(l,!0).map((function(t){return t.coordinate})),cx:f,cy:h,innerRadius:p,outerRadius:d,key:t.key||"polar-grid",radialLines:n})})),Ke(Fe(e),"renderLegend",(function(){var t=e.state.formattedGraphicalItems,r=e.props,n=r.children,i=r.width,o=r.height,a=e.props.margin||{},c=i-(a.left||0)-(a.right||0),s=(0,Mt.zp)({children:n,formattedGraphicalItems:t,legendWidth:c,legendContent:y});if(!s)return null;var l=s.item,u=Le(s,Me);return(0,O.cloneElement)(l,He(He({},u),{},{chartWidth:i,chartHeight:o,margin:a,ref:function(t){e.legendInstance=t},onBBoxUpdate:e.handleLegendBBoxUpdate}))})),Ke(Fe(e),"renderTooltip",(function(){var t=e.props.children,r=(0,F.sP)(t,B.u);if(!r)return null;var n=e.state,i=n.isTooltipActive,o=n.activeCoordinate,a=n.activePayload,c=n.activeLabel,s=n.offset;return(0,O.cloneElement)(r,{viewBox:He(He({},s),{},{x:s.left,y:s.top}),active:i,label:c,payload:i?a:[],coordinate:o})})),Ke(Fe(e),"renderBrush",(function(t){var r=e.props,n=r.margin,i=r.data,o=e.state,a=o.offset,c=o.dataStartIndex,s=o.dataEndIndex,l=o.updateId;return(0,O.cloneElement)(t,{key:t.key||"_recharts-brush",onChange:(0,Mt.DO)(e.handleBrushChange,null,t.props.onChange),data:i,x:(0,P.hj)(t.props.x)?t.props.x:a.left,y:(0,P.hj)(t.props.y)?t.props.y:a.top+a.height+a.brushBottom-(n.bottom||0),width:(0,P.hj)(t.props.width)?t.props.width:a.width,startIndex:c,endIndex:s,updateId:"brush-".concat(l)})})),Ke(Fe(e),"renderReferenceElement",(function(t,r,n){if(!t)return null;var i=Fe(e).clipPathId,o=e.state,a=o.xAxisMap,c=o.yAxisMap,s=o.offset,l=t.props,u=l.xAxisId,f=l.yAxisId;return(0,O.cloneElement)(t,{key:t.key||"".concat(r,"-").concat(n),xAxis:a[u],yAxis:c[f],viewBox:{x:s.left,y:s.top,width:s.width,height:s.height},clipPathId:i})})),Ke(Fe(e),"renderActivePoints",(function(t){var e=t.item,r=t.activePoint,n=t.basePoint,i=t.childIndex,o=t.isRange,a=[],c=e.props.key,s=e.item.props,l=s.activeDot,u=He(He({index:i,dataKey:s.dataKey,cx:r.x,cy:r.y,r:4,fill:(0,Mt.fk)(e.item),strokeWidth:2,stroke:"#fff",payload:r.payload,value:r.value,key:"".concat(c,"-activePoint-").concat(i)},(0,F.L6)(l)),(0,yt.Ym)(l));return a.push(h.renderActiveDot(l,u)),n?a.push(h.renderActiveDot(l,He(He({},u),{},{cx:n.x,cy:n.y,key:"".concat(c,"-basePoint-").concat(i)}))):o&&a.push(null),a})),Ke(Fe(e),"renderGraphicChild",(function(t,r,n){var i=e.filterFormatItem(t,r,n);if(!i)return null;var o=e.getTooltipEventType(),a=e.state,c=a.isTooltipActive,s=a.tooltipAxis,l=a.activeTooltipIndex,u=a.activeLabel,f=e.props.children,h=(0,F.sP)(f,B.u),p=i.props,d=p.points,y=p.isRange,v=p.baseLine,m=i.item.props,g=m.activeDot,x=!m.hide&&c&&h&&g&&l>=0,_={};"axis"!==o&&h&&"click"===h.props.trigger?_={onClick:(0,Mt.DO)(e.handleItemMouseEnter,null,t.props.onCLick)}:"axis"!==o&&(_={onMouseLeave:(0,Mt.DO)(e.handleItemMouseLeave,null,t.props.onMouseLeave),onMouseEnter:(0,Mt.DO)(e.handleItemMouseEnter,null,t.props.onMouseEnter)});var w=(0,O.cloneElement)(t,He(He({},i.props),_));if(x){var S,j;if(s.dataKey&&!s.allowDuplicatedCategory){var E="function"==typeof s.dataKey?function(t){return"function"==typeof s.dataKey?s.dataKey(t.payload):null}:"payload.".concat(s.dataKey.toString());S=(0,P.Ap)(d,E,u),j=y&&v&&(0,P.Ap)(v,E,u)}else S=d[l],j=y&&v&&v[l];if(!b()(S))return[w].concat(Xe(e.renderActivePoints({item:i,activePoint:S,basePoint:j,childIndex:l,isRange:y})))}return y?[w,null,null]:[w,null]})),Ke(Fe(e),"renderCustomized",(function(t,r,n){return(0,O.cloneElement)(t,He(He({key:"recharts-customized-".concat(n)},e.props),e.state))})),e.uniqueChartId=b()(t.id)?(0,P.EL)("recharts"):t.id,e.clipPathId="".concat(e.uniqueChartId,"-clip"),t.throttleDelay&&(e.triggeredAfterMouseMove=u()(e.triggeredAfterMouseMove,t.throttleDelay)),e.state={},e}return e=h,(n=[{key:"componentDidMount",value:function(){b()(this.props.syncId)||this.addListener()}},{key:"componentDidUpdate",value:function(t){b()(t.syncId)&&!b()(this.props.syncId)&&this.addListener(),!b()(t.syncId)&&b()(this.props.syncId)&&this.removeListener()}},{key:"componentWillUnmount",value:function(){this.clearDeferId(),b()(this.props.syncId)||this.removeListener(),this.cancelThrottledTriggerAfterMouseMove()}},{key:"cancelThrottledTriggerAfterMouseMove",value:function(){"function"==typeof this.triggeredAfterMouseMove.cancel&&this.triggeredAfterMouseMove.cancel()}},{key:"getTooltipEventType",value:function(){var t=(0,F.sP)(this.props.children,B.u);if(t&&x()(t.props.shared)){var e=t.props.shared?"axis":"item";return f.indexOf(e)>=0?e:c}return c}},{key:"getMouseInfo",value:function(t){if(!this.container)return null;var e=(0,E.os)(this.container),r=(0,E.IR)(t,e),n=this.inRange(r.chartX,r.chartY);if(!n)return null;var i=this.state,o=i.xAxisMap,a=i.yAxisMap;if("axis"!==this.getTooltipEventType()&&o&&a){var c=(0,P.Kt)(o).scale,s=(0,P.Kt)(a).scale,l=c&&c.invert?c.invert(r.chartX):null,u=s&&s.invert?s.invert(r.chartY):null;return He(He({},r),{},{xValue:l,yValue:u})}var f=ir(this.state,this.props.data,this.props.layout,n);return f?He(He({},r),f):null}},{key:"getCursorRectangle",value:function(){var t=this.props.layout,e=this.state,r=e.activeCoordinate,n=e.offset,i=e.tooltipAxisBandSize,o=i/2;return{stroke:"none",fill:"#ccc",x:"horizontal"===t?r.x-o:n.left+.5,y:"horizontal"===t?n.top+.5:r.y-o,width:"horizontal"===t?i:n.width-1,height:"horizontal"===t?n.height-1:i}}},{key:"getCursorPoints",value:function(){var t,e,r,n,i=this.props.layout,o=this.state,a=o.activeCoordinate,c=o.offset;if("horizontal"===i)r=t=a.x,e=c.top,n=c.top+c.height;else if("vertical"===i)n=e=a.y,t=c.left,r=c.left+c.width;else if(!b()(a.cx)||!b()(a.cy)){if("centric"!==i){var s=a.cx,l=a.cy,u=a.radius,f=a.startAngle,h=a.endAngle;return{points:[(0,Q.op)(s,l,u,f),(0,Q.op)(s,l,u,h)],cx:s,cy:l,radius:u,startAngle:f,endAngle:h}}var p=a.cx,d=a.cy,y=a.innerRadius,v=a.outerRadius,m=a.angle,g=(0,Q.op)(p,d,y,m),x=(0,Q.op)(p,d,v,m);t=g.x,e=g.y,r=x.x,n=x.y}return[{x:t,y:e},{x:r,y:n}]}},{key:"inRange",value:function(t,e){var r=this.props.layout;if("horizontal"===r||"vertical"===r){var n=this.state.offset;return t>=n.left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height?{x:t,y:e}:null}var i=this.state,o=i.angleAxisMap,a=i.radiusAxisMap;if(o&&a){var c=(0,P.Kt)(o);return(0,Q.z3)({x:t,y:e},c)}return null}},{key:"parseEventsOfWrapper",value:function(){var t=this.props.children,e=this.getTooltipEventType(),r=(0,F.sP)(t,B.u),n={};return r&&"axis"===e&&(n="click"===r.props.trigger?{onClick:this.handleClick}:{onMouseEnter:this.handleMouseEnter,onMouseMove:this.handleMouseMove,onMouseLeave:this.handleMouseLeave,onTouchMove:this.handleTouchMove,onTouchStart:this.handleTouchStart,onTouchEnd:this.handleTouchEnd}),He(He({},(0,yt.Ym)(this.props,this.handleOuterEvent)),n)}},{key:"addListener",value:function(){Te.on(Ie,this.handleReceiveSyncEvent),Te.setMaxListeners&&Te._maxListeners&&Te.setMaxListeners(Te._maxListeners+1)}},{key:"removeListener",value:function(){Te.removeListener(Ie,this.handleReceiveSyncEvent),Te.setMaxListeners&&Te._maxListeners&&Te.setMaxListeners(Te._maxListeners-1)}},{key:"triggerSyncEvent",value:function(t){var e=this.props.syncId;b()(e)||Te.emit(Ie,e,this.uniqueChartId,t)}},{key:"applySyncEvent",value:function(t){var e=this.props,r=e.layout,n=e.syncMethod,i=this.state.updateId,o=t.dataStartIndex,a=t.dataEndIndex;if(b()(t.dataStartIndex)&&b()(t.dataEndIndex))if(b()(t.activeTooltipIndex))this.setState(t);else{var c=t.chartX,s=t.chartY,l=t.activeTooltipIndex,u=this.state,f=u.offset,h=u.tooltipTicks;if(!f)return;if("function"==typeof n)l=n(h,t);else if("value"===n){l=-1;for(var p=0;pt.length)&&(e=t.length);for(var r=0,n=new Array(e);r=0?1:-1;"insideStart"===o?(n=g+j*c,i=_):"insideEnd"===o?(n=x-j*c,i=!_):"end"===o&&(n=x+j*c,i=_),i=S<=0?i:!i;var P=(0,y.op)(p,v,O,n),E=(0,y.op)(p,v,O,n+359*(i?1:-1)),k="M".concat(P.x,",").concat(P.y,"\n A").concat(O,",").concat(O,",0,1,").concat(i?0:1,",\n ").concat(E.x,",").concat(E.y),A=s()(t.id)?(0,d.EL)("recharts-radial-line-"):t.id;return l.createElement("text",w({},r,{dominantBaseline:"central",className:f()("recharts-radial-bar-label",u)}),l.createElement("defs",null,l.createElement("path",{id:A,d:k})),l.createElement("textPath",{xlinkHref:"#".concat(A)},e))},j=function(t){var e=t.viewBox,r=t.offset,n=t.position,i=e,o=i.cx,a=i.cy,c=i.innerRadius,s=i.outerRadius,l=(i.startAngle+i.endAngle)/2;if("outside"===n){var u=(0,y.op)(o,a,s+r,l),f=u.x;return{x:f,y:u.y,textAnchor:f>=o?"start":"end",verticalAnchor:"middle"}}if("center"===n)return{x:o,y:a,textAnchor:"middle",verticalAnchor:"middle"};if("centerTop"===n)return{x:o,y:a,textAnchor:"middle",verticalAnchor:"start"};if("centerBottom"===n)return{x:o,y:a,textAnchor:"middle",verticalAnchor:"end"};var h=(c+s)/2,p=(0,y.op)(o,a,h,l);return{x:p.x,y:p.y,textAnchor:"middle",verticalAnchor:"middle"}},P=function(t){var e=t.viewBox,r=t.parentViewBox,n=t.offset,o=t.position,a=e,c=a.x,s=a.y,l=a.width,u=a.height,f=u>=0?1:-1,h=f*n,p=f>0?"end":"start",y=f>0?"start":"end",v=l>=0?1:-1,m=v*n,b=v>0?"end":"start",g=v>0?"start":"end";if("top"===o)return x(x({},{x:c+l/2,y:s-f*n,textAnchor:"middle",verticalAnchor:p}),r?{height:Math.max(s-r.y,0),width:l}:{});if("bottom"===o)return x(x({},{x:c+l/2,y:s+u+h,textAnchor:"middle",verticalAnchor:y}),r?{height:Math.max(r.y+r.height-(s+u),0),width:l}:{});if("left"===o){var _={x:c-m,y:s+u/2,textAnchor:b,verticalAnchor:"middle"};return x(x({},_),r?{width:Math.max(_.x-r.x,0),height:u}:{})}if("right"===o){var w={x:c+l+m,y:s+u/2,textAnchor:g,verticalAnchor:"middle"};return x(x({},w),r?{width:Math.max(r.x+r.width-w.x,0),height:u}:{})}var O=r?{width:l,height:u}:{};return"insideLeft"===o?x({x:c+m,y:s+u/2,textAnchor:g,verticalAnchor:"middle"},O):"insideRight"===o?x({x:c+l-m,y:s+u/2,textAnchor:b,verticalAnchor:"middle"},O):"insideTop"===o?x({x:c+l/2,y:s+h,textAnchor:"middle",verticalAnchor:y},O):"insideBottom"===o?x({x:c+l/2,y:s+u-h,textAnchor:"middle",verticalAnchor:p},O):"insideTopLeft"===o?x({x:c+m,y:s+h,textAnchor:g,verticalAnchor:y},O):"insideTopRight"===o?x({x:c+l-m,y:s+h,textAnchor:b,verticalAnchor:y},O):"insideBottomLeft"===o?x({x:c+m,y:s+u-h,textAnchor:g,verticalAnchor:p},O):"insideBottomRight"===o?x({x:c+l-m,y:s+u-h,textAnchor:b,verticalAnchor:p},O):i()(o)&&((0,d.hj)(o.x)||(0,d.hU)(o.x))&&((0,d.hj)(o.y)||(0,d.hU)(o.y))?x({x:c+(0,d.h1)(o.x,l),y:s+(0,d.h1)(o.y,u),textAnchor:"end",verticalAnchor:"end"},O):x({x:c+l/2,y:s+u/2,textAnchor:"middle",verticalAnchor:"middle"},O)},E=function(t){return"cx"in t&&(0,d.hj)(t.cx)};function k(t){var e,r=t.viewBox,n=t.position,i=t.value,o=t.children,c=t.content,u=t.className,d=void 0===u?"":u,y=t.textBreakAll;if(!r||s()(i)&&s()(o)&&!(0,l.isValidElement)(c)&&!a()(c))return null;if((0,l.isValidElement)(c))return(0,l.cloneElement)(c,t);if(a()(c)){if(e=(0,l.createElement)(c,t),(0,l.isValidElement)(e))return e}else e=O(t);var v=E(r),m=(0,p.L6)(t,!0);if(v&&("insideStart"===n||"insideEnd"===n||"end"===n))return S(t,e,m);var b=v?j(t):P(t);return l.createElement(h.x,w({className:f()("recharts-label",d)},m,b,{breakAll:y}),e)}k.displayName="Label",k.defaultProps={offset:5};var A=function(t){var e=t.cx,r=t.cy,n=t.angle,i=t.startAngle,o=t.endAngle,a=t.r,c=t.radius,s=t.innerRadius,l=t.outerRadius,u=t.x,f=t.y,h=t.top,p=t.left,y=t.width,v=t.height,m=t.clockWise,b=t.labelViewBox;if(b)return b;if((0,d.hj)(y)&&(0,d.hj)(v)){if((0,d.hj)(u)&&(0,d.hj)(f))return{x:u,y:f,width:y,height:v};if((0,d.hj)(h)&&(0,d.hj)(p))return{x:h,y:p,width:y,height:v}}return(0,d.hj)(u)&&(0,d.hj)(f)?{x:u,y:f,width:0,height:0}:(0,d.hj)(e)&&(0,d.hj)(r)?{cx:e,cy:r,startAngle:i||n||0,endAngle:o||n||0,innerRadius:s||0,outerRadius:l||c||a||0,clockWise:m}:t.viewBox?t.viewBox:{}};k.parseViewBox=A,k.renderCallByParent=function(t,e){var r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];if(!t||!t.children&&r&&!t.label)return null;var n=t.children,o=A(t),c=(0,p.NN)(n,k).map((function(t,r){return(0,l.cloneElement)(t,{viewBox:e||o,key:"label-".concat(r)})}));if(!r)return c;var s=function(t,e){return t?!0===t?l.createElement(k,{key:"label-implicit",viewBox:e}):(0,d.P2)(t)?l.createElement(k,{key:"label-implicit",viewBox:e,value:t}):(0,l.isValidElement)(t)?t.type===k?(0,l.cloneElement)(t,{key:"label-implicit",viewBox:e}):l.createElement(k,{key:"label-implicit",content:t,viewBox:e}):a()(t)?l.createElement(k,{key:"label-implicit",content:t,viewBox:e}):i()(t)?l.createElement(k,w({viewBox:e},t,{key:"label-implicit"})):null:null}(t.label,e||o);return[s].concat(m(c))}},2763:function(t,e,r){"use strict";r.d(e,{e:function(){return k}});var n=r(3218),i=r.n(n),o=r(3560),a=r.n(o),c=r(4293),s=r.n(c),l=r(928),u=r.n(l),f=r(1469),h=r.n(f),p=r(7294),d=r(5048),y=r(8710),v=r(2017),m=r(6822);function b(t){return b="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},b(t)}var g=["data","valueAccessor","dataKey","clockWise","id","textBreakAll"];function x(t){return function(t){if(Array.isArray(t))return _(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return _(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return _(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function _(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}var E={valueAccessor:function(t){return h()(t.value)?u()(t.value):t.value}};function k(t){var e=t.data,r=t.valueAccessor,n=t.dataKey,i=t.clockWise,o=t.id,a=t.textBreakAll,c=P(t,g);return e&&e.length?p.createElement(y.m,{className:"recharts-label-list"},e.map((function(t,e){var l=s()(n)?r(t,e):(0,m.F$)(t&&t.payload,n),u=s()(o)?{}:{id:"".concat(o,"-").concat(e)};return p.createElement(d._,w({},(0,v.L6)(t,!0),c,u,{parentViewBox:t.parentViewBox,index:e,value:l,textBreakAll:a,viewBox:d._.parseViewBox(s()(i)?t:S(S({},t),{},{clockWise:i})),key:"label-".concat(e)}))}))):null}k.displayName="LabelList",k.renderCallByParent=function(t,e){var r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];if(!t||!t.children&&r&&!t.label)return null;var n=t.children,o=(0,v.NN)(n,k).map((function(t,r){return(0,p.cloneElement)(t,{data:e,key:"labelList-".concat(r)})}));return r?[function(t,e){return t?!0===t?p.createElement(k,{key:"labelList-implicit",data:e}):p.isValidElement(t)||a()(t)?p.createElement(k,{key:"labelList-implicit",data:e,content:t}):i()(t)?p.createElement(k,w({data:e},t,{key:"labelList-implicit"})):null:null}(t.label,e)].concat(x(o)):o},k.defaultProps=E},8169:function(t,e,r){"use strict";r.d(e,{x:function(){return C}});var n=r(4293),i=r.n(n),o=r(7294),a=r(4275),c=r.n(a),s=r(4184),l=r.n(s),u=r(9055),f=r(7523),h=r(2017),p=r(1209),d=["dx","dy","textAnchor","verticalAnchor","scaleToFit","angle","lineHeight","capHeight","className","breakAll"];function y(t){return y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},y(t)}function v(){return v=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function b(t,e){for(var r=0;rt.length)&&(e=t.length);for(var r=0,n=new Array(e);r0&&void 0!==arguments[0]?arguments[0]:[]).reduce((function(t,e){var o=e.word,a=e.width,c=t[t.length-1];if(c&&(null==n||i||c.width+a+rt.maxLines||function(t){return t.reduce((function(t,e){return t.width>e.width?t:e}))}(o).width>n;return[s,o]},h=0,p=a.length-1,d=0;h<=p&&d<=a.length-1;){var y=Math.floor((h+p)/2),v=O(f(y-1),2),m=v[0],b=v[1],g=O(f(y),1)[0];if(m||g||(h=y+1),m&&g&&(p=y-1),!m&&g){l=b;break}d++}return l||s}(t,r.wordsWithComputedWidth,r.spaceWidth,t.width,t.scaleToFit):I(t.children)}return I(t.children)},C=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&g(t,e)}(a,t);var e,r,n,i=x(a);function a(){var t;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a);for(var e=arguments.length,r=new Array(e),n=0;n=0;--e)i[e]=(a[e]-i[e+1])/o[e];for(o[n-1]=(t[n]+i[n-1])/2,e=0;e=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var r=this._x*(1-this._t)+t*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,e)}}this._x=t,this._y=e}};var k=r(4788),A=r(309),T=r(633);function I(t){return t[0]}function M(t){return t[1]}function C(t,e){var r=(0,A.Z)(!0),n=null,i=m,o=null,a=(0,T.d)(c);function c(c){var s,l,u,f=(c=(0,k.Z)(c)).length,h=!1;for(null==n&&(o=i(u=a())),s=0;s<=f;++s)!(s=f;--h)c.point(m[h],b[h]);c.lineEnd(),c.areaEnd()}v&&(m[u]=+t(p,u,l),b[u]=+e(p,u,l),c.point(n?+n(p,u,l):m[u],r?+r(p,u,l):b[u]))}if(d)return c=null,d+""||null}function u(){return C().defined(i).curve(a).context(o)}return t="function"==typeof t?t:void 0===t?I:(0,A.Z)(+t),e="function"==typeof e?e:void 0===e?(0,A.Z)(0):(0,A.Z)(+e),r="function"==typeof r?r:void 0===r?M:(0,A.Z)(+r),l.x=function(e){return arguments.length?(t="function"==typeof e?e:(0,A.Z)(+e),n=null,l):t},l.x0=function(e){return arguments.length?(t="function"==typeof e?e:(0,A.Z)(+e),l):t},l.x1=function(t){return arguments.length?(n=null==t?null:"function"==typeof t?t:(0,A.Z)(+t),l):n},l.y=function(t){return arguments.length?(e="function"==typeof t?t:(0,A.Z)(+t),r=null,l):e},l.y0=function(t){return arguments.length?(e="function"==typeof t?t:(0,A.Z)(+t),l):e},l.y1=function(t){return arguments.length?(r=null==t?null:"function"==typeof t?t:(0,A.Z)(+t),l):r},l.lineX0=l.lineY0=function(){return u().x(t).y(e)},l.lineY1=function(){return u().x(t).y(r)},l.lineX1=function(){return u().x(n).y(e)},l.defined=function(t){return arguments.length?(i="function"==typeof t?t:(0,A.Z)(!!t),l):i},l.curve=function(t){return arguments.length?(a=t,null!=o&&(c=a(o)),l):a},l.context=function(t){return arguments.length?(null==t?o=c=null:c=a(o=t),l):o},l}var N=r(4184),D=r.n(N),L=r(9896),B=r(2017),z=r(9055);function V(t){return V="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},V(t)}function F(){return F=Object.assign?Object.assign.bind():function(t){for(var e=1;e0&&(k=Math.min((t||0)-(A[e-1]||0),k))}));var T=k/E,I="vertical"===g.layout?r.height:r.width;if("gap"===g.padding&&(s=T*I/2),"no-gap"===g.padding){var M=(0,l.h1)(t.barCategoryGap,T*I),C=T*I/2;s=C-M-(C-M)/I*M}}u="xAxis"===n?[r.left+(O.left||0)+(s||0),r.left+r.width-(O.right||0)-(s||0)]:"yAxis"===n?"horizontal"===f?[r.top+r.height-(O.bottom||0),r.top+(O.top||0)]:[r.top+(O.top||0)+(s||0),r.top+r.height-(O.bottom||0)-(s||0)]:g.range,j&&(u=[u[1],u[0]]);var R=(0,c.Hq)(g,i,m),N=R.scale,D=R.realScaleType;N.domain(_).range(u),(0,c.zF)(N);var L=(0,c.g$)(N,d(d({},g),{},{realScaleType:D}));"xAxis"===n?(b="top"===x&&!S||"bottom"===x&&S,h=r.left,p=v[P]-b*g.height):"yAxis"===n&&(b="left"===x&&!S||"right"===x&&S,h=v[P]-b*g.width,p=r.top);var B=d(d(d({},g),L),{},{realScaleType:D,x:h,y:p,scale:N,width:"xAxis"===n?r.width:g.width,height:"yAxis"===n?r.height:g.height});return B.bandSize=(0,c.zT)(B,L),g.hide||"xAxis"!==n?g.hide||(v[P]+=(b?-1:1)*B.width):v[P]+=(b?-1:1)*B.height,d(d({},o),{},y({},a,B))}),{})},b=function(t,e){var r=t.x,n=t.y,i=e.x,o=e.y;return{x:Math.min(r,i),y:Math.min(n,o),width:Math.abs(i-r),height:Math.abs(o-n)}},g=function(t){var e=t.x1,r=t.y1,n=t.x2,i=t.y2;return b({x:e,y:r},{x:n,y:i})},x=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.scale=e}var e,r,n;return e=t,r=[{key:"domain",get:function(){return this.scale.domain}},{key:"range",get:function(){return this.scale.range}},{key:"rangeMin",get:function(){return this.range()[0]}},{key:"rangeMax",get:function(){return this.range()[1]}},{key:"bandwidth",get:function(){return this.scale.bandwidth}},{key:"apply",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=e.bandAware,n=e.position;if(void 0!==t){if(n)switch(n){case"start":default:return this.scale(t);case"middle":var i=this.bandwidth?this.bandwidth()/2:0;return this.scale(t)+i;case"end":var o=this.bandwidth?this.bandwidth():0;return this.scale(t)+o}if(r){var a=this.bandwidth?this.bandwidth()/2:0;return this.scale(t)+a}return this.scale(t)}}},{key:"isInRange",value:function(t){var e=this.range(),r=e[0],n=e[e.length-1];return r<=n?t>=r&&t<=n:t>=n&&t<=r}}],n=[{key:"create",value:function(e){return new t(e)}}],r&&h(e.prototype,r),n&&h(e,n),Object.defineProperty(e,"prototype",{writable:!1}),t}();y(x,"EPS",1e-4);var _=function(t){var e=Object.keys(t).reduce((function(e,r){return d(d({},e),{},y({},r,x.create(t[r])))}),{});return d(d({},e),{},{apply:function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=r.bandAware,i=r.position;return a()(t,(function(t,r){return e[r].apply(t,{bandAware:n,position:i})}))},isInRange:function(t){return i()(t,(function(t,r){return e[r].isInRange(t)}))}})}},48:function(t,e,r){"use strict";r.d(e,{Wk:function(){return c},op:function(){return l},z3:function(){return h}});r(4293);function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}function i(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function o(t){for(var e=1;eh&&(y=2*Math.PI-y),{radius:p,angle:s(y),angleInRadian:y}},f=function(t,e){var r=e.startAngle,n=e.endAngle,i=Math.floor(r/360),o=Math.floor(n/360);return t+360*Math.min(i,o)},h=function(t,e){var r=t.x,n=t.y,i=u({x:r,y:n},e),a=i.radius,c=i.angle,s=e.innerRadius,l=e.outerRadius;if(al)return!1;if(0===a)return!0;var h,p=function(t){var e=t.startAngle,r=t.endAngle,n=Math.floor(e/360),i=Math.floor(r/360),o=Math.min(n,i);return{startAngle:e-360*o,endAngle:r-360*o}}(e),d=p.startAngle,y=p.endAngle,v=c;if(d<=y){for(;v>y;)v-=360;for(;v=d&&v<=y}else{for(;v>d;)v-=360;for(;v=y&&v<=d}return h?o(o({},e),{},{radius:a,angle:f(v,e)}):null}},4275:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=c(r(8336)),i=r(210),o=c(r(174)),a=c(r(3697));function c(t){return t&&t.__esModule?t:{default:t}}var s=/((?:\-[a-z]+\-)?calc)/;e.default=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:5;return(0,n.default)(t).walk((function(t){if("function"===t.type&&s.test(t.value)){var r=n.default.stringify(t.nodes);if(!(r.indexOf("constant")>=0||r.indexOf("env")>=0)){var c=i.parser.parse(r),l=(0,o.default)(c,e);t.type="word",t.value=(0,a.default)(t.value,l,e)}}}),!0).toString()},t.exports=e.default},460:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n,i=r(3258),o=(n=i)&&n.__esModule?n:{default:n};e.default=function(t,e,r){switch(t.type){case"LengthValue":case"AngleValue":case"TimeValue":case"FrequencyValue":case"ResolutionValue":return function(t,e,r){e.type===t.type&&(e={type:t.type,value:(0,o.default)(e.value,e.unit,t.unit,r),unit:t.unit});return{left:t,right:e}}(t,e,r);default:return{left:t,right:e}}},t.exports=e.default},174:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.flip=l;var n,i=r(460),o=(n=i)&&n.__esModule?n:{default:n};function a(t,e){return"MathExpression"===t.type?function(t,e){switch(t=function(t,e){var r=(0,o.default)(t.left,t.right,e),n=a(r.left,e),i=a(r.right,e);"MathExpression"===n.type&&"MathExpression"===i.type&&("/"===n.operator&&"*"===i.operator||"-"===n.operator&&"+"===i.operator||"*"===n.operator&&"/"===i.operator||"+"===n.operator&&"-"===i.operator)&&(c(n.right,i.right)?r=(0,o.default)(n.left,i.left,e):c(n.right,i.left)&&(r=(0,o.default)(n.left,i.right,e)),n=a(r.left,e),i=a(r.right,e));return t.left=n,t.right=i,t}(t,e),t.operator){case"+":case"-":return function(t,e){var r=t,n=r.left,i=r.right,o=r.operator;if("CssVariable"===n.type||"CssVariable"===i.type)return t;if(0===i.value)return n;if(0===n.value&&"+"===o)return i;if(0===n.value&&"-"===o)return u(i);n.type===i.type&&s(n.type)&&((t=Object.assign({},n)).value="+"===o?n.value+i.value:n.value-i.value);if(s(n.type)&&("+"===i.operator||"-"===i.operator)&&"MathExpression"===i.type){if(n.type===i.left.type)return(t=Object.assign({},t)).left=a({type:"MathExpression",operator:o,left:n,right:i.left},e),t.right=i.right,t.operator="-"===o?l(i.operator):i.operator,a(t,e);if(n.type===i.right.type)return(t=Object.assign({},t)).left=a({type:"MathExpression",operator:"-"===o?l(i.operator):i.operator,left:n,right:i.right},e),t.right=i.left,a(t,e)}if("MathExpression"===n.type&&("+"===n.operator||"-"===n.operator)&&s(i.type)){if(i.type===n.left.type)return(t=Object.assign({},n)).left=a({type:"MathExpression",operator:o,left:n.left,right:i},e),a(t,e);if(i.type===n.right.type)return t=Object.assign({},n),"-"===n.operator?(t.right=a({type:"MathExpression",operator:"-"===o?"+":"-",left:i,right:n.right},e),t.operator="-"===o?"-":"+"):t.right=a({type:"MathExpression",operator:o,left:n.right,right:i},e),t.right.value<0&&(t.right.value*=-1,t.operator="-"===t.operator?"+":"-"),a(t,e)}return t}(t,e);case"/":return function(t,e){if(!s(t.right.type))return t;if("Value"!==t.right.type)throw new Error('Cannot divide by "'+t.right.unit+'", number expected');if(0===t.right.value)throw new Error("Cannot divide by zero");if("MathExpression"===t.left.type)return s(t.left.left.type)&&s(t.left.right.type)?(t.left.left.value/=t.right.value,t.left.right.value/=t.right.value,a(t.left,e)):t;if(s(t.left.type))return t.left.value/=t.right.value,t.left;return t}(t,e);case"*":return function(t){if("MathExpression"===t.left.type&&"Value"===t.right.type){if(s(t.left.left.type)&&s(t.left.right.type))return t.left.left.value*=t.right.value,t.left.right.value*=t.right.value,t.left}else{if(s(t.left.type)&&"Value"===t.right.type)return t.left.value*=t.right.value,t.left;if("Value"===t.left.type&&"MathExpression"===t.right.type){if(s(t.right.left.type)&&s(t.right.right.type))return t.right.left.value*=t.left.value,t.right.right.value*=t.left.value,t.right}else if("Value"===t.left.type&&s(t.right.type))return t.right.value*=t.left.value,t.right}return t}(t)}return t}(t,e):"Calc"===t.type?a(t.value,e):t}function c(t,e){return t.type===e.type&&t.value===e.value}function s(t){switch(t){case"LengthValue":case"AngleValue":case"TimeValue":case"FrequencyValue":case"ResolutionValue":case"EmValue":case"ExValue":case"ChValue":case"RemValue":case"VhValue":case"VwValue":case"VminValue":case"VmaxValue":case"PercentageValue":case"Value":return!0}return!1}function l(t){return"+"===t?"-":"+"}function u(t){return s(t.type)?t.value=-t.value:"MathExpression"==t.type&&(t.left=u(t.left),t.right=u(t.right)),t}e.default=a},3697:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t,e,r){var n=a(e,r);return"MathExpression"===e.type&&(n=t+"("+n+")"),n};var n=r(174),i={"*":0,"/":0,"+":1,"-":1};function o(t,e){if(!1!==e){var r=Math.pow(10,e);return Math.round(t*r)/r}return t}function a(t,e){switch(t.type){case"MathExpression":var r=t.left,c=t.right,s=t.operator,l="";return"MathExpression"===r.type&&i[s]1)return t;if(e.cleanupAfterLex&&e.cleanupAfterLex(a),f&&(f.lexer=void 0,f.parser=void 0,e.yy===f&&(e.yy=void 0)),f=void 0,this.parseError=this.originalParseError,this.quoteName=this.originalQuoteName,n.length=0,i.length=0,o.length=0,c=0,!a){for(var u=this.__error_infos.length-1;u>=0;u--){var h=this.__error_infos[u];h&&"function"==typeof h.destroy&&h.destroy()}this.__error_infos.length=0}return t},this.constructParseErrorInfo=function(t,r,a,l){var u={errStr:t,exception:r,text:e.match,value:e.yytext,token:this.describeSymbol(s)||s,token_id:s,line:e.yylineno,expected:a,recoverable:l,state:p,action:d,new_state:x,symbol_stack:n,state_stack:i,value_stack:o,stack_pointer:c,yy:f,lexer:e,parser:this,destroy:function(){var t=!!this.recoverable;for(var e in this)this.hasOwnProperty(e)&&"object"==typeof e&&(this[e]=void 0);this.recoverable=t}};return this.__error_infos.push(u),u};var p,d,y,v,m,b,g,x,_=function(){var t=e.lex();return"number"!=typeof t&&(t=r.symbols_[t]||t),t||l},w={$:!0,_$:void 0,yy:f},O=!1;try{if(this.__reentrant_call_depth++,e.setInput(t,f),"function"==typeof e.canIUse)e.canIUse().fastLex&&(_=h);for(o[c]=null,i[c]=0,n[c]=0,++c,this.pre_parse&&this.pre_parse.call(this,f),f.pre_parse&&f.pre_parse.call(this,f),x=i[c-1];;){if(p=x,this.defaultActions[p])d=2,x=this.defaultActions[p];else if(s||(s=_()),v=a[p]&&a[p][s]||u,x=v[1],!(d=v[0])){var S,j=this.describeSymbol(s)||s,P=this.collect_expected_token_set(p);S="number"==typeof e.yylineno?"Parse error on line "+(e.yylineno+1)+": ":"Parse error: ","function"==typeof e.showPosition&&(S+="\n"+e.showPosition(69,10)+"\n"),P.length?S+="Expecting "+P.join(", ")+", got unexpected "+j:S+="Unexpected "+j,m=this.constructParseErrorInfo(S,null,P,!1),void 0!==(y=this.parseError(m.errStr,m,this.JisonParserError))&&(O=y);break}switch(d){default:if(d instanceof Array){m=this.constructParseErrorInfo("Parse Error: multiple actions possible at state: "+p+", token: "+s,null,null,!1),void 0!==(y=this.parseError(m.errStr,m,this.JisonParserError))&&(O=y);break}m=this.constructParseErrorInfo("Parsing halted. No viable error recovery approach available due to internal system failure.",null,null,!1),void 0!==(y=this.parseError(m.errStr,m,this.JisonParserError))&&(O=y);break;case 1:n[c]=s,o[c]=e.yytext,i[c]=x,++c,s=0;continue;case 2:if(b=(g=this.productions_[x-1])[1],void 0!==(y=this.performAction.call(w,x,c-1,o))){O=y;break}c-=b;var E=g[0];n[c]=E,o[c]=w.$,x=a[i[c-1]][E],i[c]=x,++c;continue;case 3:-2!==c&&(O=!0,c--,void 0!==o[c]&&(O=o[c]))}break}}catch(k){if(k instanceof this.JisonParserError)throw k;if(e&&"function"==typeof e.JisonLexerError&&k instanceof e.JisonLexerError)throw k;m=this.constructParseErrorInfo("Parsing aborted due to exception.",k,null,!1),O=!1,void 0!==(y=this.parseError(m.errStr,m,this.JisonParserError))&&(O=y)}finally{O=this.cleanupAfterParse(O,!0,!0),this.__reentrant_call_depth--}return O}};i.originalParseError=i.parseError,i.originalQuoteName=i.quoteName;var o=function(){function t(t,e){var r;if(Object.defineProperty(this,"name",{enumerable:!1,writable:!1,value:"JisonLexerError"}),null==t&&(t="???"),Object.defineProperty(this,"message",{enumerable:!1,writable:!0,value:t}),this.hash=e,e&&e.exception instanceof Error){var n=e.exception;this.message=n.message||t,r=n.stack}r||(Error.hasOwnProperty("captureStackTrace")?Error.captureStackTrace(this,this.constructor):r=new Error(t).stack),r&&Object.defineProperty(this,"stack",{enumerable:!1,writable:!1,value:r})}"function"==typeof Object.setPrototypeOf?Object.setPrototypeOf(t.prototype,Error.prototype):t.prototype=Object.create(Error.prototype),t.prototype.constructor=t,t.prototype.name="JisonLexerError";var e={EOF:1,ERROR:2,__currentRuleSet__:null,__error_infos:[],__decompressed:!1,done:!1,_backtrack:!1,_input:"",_more:!1,_signaled_error_token:!1,conditionStack:[],match:"",matched:"",matches:!1,yytext:"",offset:0,yyleng:0,yylineno:0,yylloc:null,constructLexErrorInfo:function(t,e,r){if(t=""+t,null==r&&(r=!(t.indexOf("\n")>0&&t.indexOf("^")>0)),this.yylloc&&r)if("function"==typeof this.prettyPrintRange){this.prettyPrintRange(this.yylloc);/\n\s*$/.test(t)||(t+="\n"),t+="\n Erroneous area:\n"+this.prettyPrintRange(this.yylloc)}else if("function"==typeof this.showPosition){var n=this.showPosition();n&&(t.length&&"\n"!==t[t.length-1]&&"\n"!==n[0]?t+="\n"+n:t+=n)}var i={errStr:t,recoverable:!!e,text:this.match,token:null,line:this.yylineno,loc:this.yylloc,yy:this.yy,lexer:this,destroy:function(){var t=!!this.recoverable;for(var e in this)this.hasOwnProperty(e)&&"object"==typeof e&&(this[e]=void 0);this.recoverable=t}};return this.__error_infos.push(i),i},parseError:function(t,e,r){if(r||(r=this.JisonLexerError),this.yy){if(this.yy.parser&&"function"==typeof this.yy.parser.parseError)return this.yy.parser.parseError.call(this,t,e,r)||this.ERROR;if("function"==typeof this.yy.parseError)return this.yy.parseError.call(this,t,e,r)||this.ERROR}throw new r(t,e)},yyerror:function(t){var e="";this.yylloc&&(e=" on line "+(this.yylineno+1));var r=this.constructLexErrorInfo("Lexical error"+e+": "+t,this.options.lexerErrorsAreRecoverable),n=Array.prototype.slice.call(arguments,1);return n.length&&(r.extra_error_attributes=n),this.parseError(r.errStr,r,this.JisonLexerError)||this.ERROR},cleanupAfterLex:function(t){if(this.setInput("",{}),!t){for(var e=this.__error_infos.length-1;e>=0;e--){var r=this.__error_infos[e];r&&"function"==typeof r.destroy&&r.destroy()}this.__error_infos.length=0}return this},clear:function(){this.yytext="",this.yyleng=0,this.match="",this.matches=!1,this._more=!1,this._backtrack=!1;var t=this.yylloc?this.yylloc.last_column:0;this.yylloc={first_line:this.yylineno+1,first_column:t,last_line:this.yylineno+1,last_column:t,range:[this.offset,this.offset]}},setInput:function(t,e){if(this.yy=e||this.yy||{},!this.__decompressed){for(var r=this.rules,n=0,i=r.length;n1){this.yylineno-=r.length-1,this.yylloc.last_line=this.yylineno+1;var n=this.match,i=n.split(/(?:\r\n?|\n)/g);1===i.length&&(i=(n=this.matched).split(/(?:\r\n?|\n)/g)),this.yylloc.last_column=i[i.length-1].length}else this.yylloc.last_column-=e;return this.yylloc.range[1]=this.yylloc.range[0]+this.yyleng,this.done=!1,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else{var t="";this.yylloc&&(t=" on line "+(this.yylineno+1));var e=this.constructLexErrorInfo("Lexical error"+t+": You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).",!1);this._signaled_error_token=this.parseError(e.errStr,e,this.JisonLexerError)||this.ERROR}return this},less:function(t){return this.unput(this.match.slice(t))},pastInput:function(t,e){var r=this.matched.substring(0,this.matched.length-this.match.length);t<0?t=r.length:t||(t=20),e<0?e=r.length:e||(e=1);var n=(r=r.substr(2*-t-2)).replace(/\r\n|\r/g,"\n").split("\n");return(r=(n=n.slice(-e)).join("\n")).length>t&&(r="..."+r.substr(-t)),r},upcomingInput:function(t,e){var r=this.match;t<0?t=r.length+this._input.length:t||(t=20),e<0?e=t:e||(e=1),r.length<2*t+2&&(r+=this._input.substring(0,2*t+2));var n=r.replace(/\r\n|\r/g,"\n").split("\n");return(r=(n=n.slice(0,e)).join("\n")).length>t&&(r=r.substring(0,t)+"..."),r},showPosition:function(t,e){var r=this.pastInput(t).replace(/\s/g," "),n=new Array(r.length+1).join("-");return r+this.upcomingInput(e).replace(/\s/g," ")+"\n"+n+"^"},deriveLocationInfo:function(t,e,r,n){var i={first_line:1,first_column:0,last_line:1,last_column:0,range:[0,0]};return t&&(i.first_line=0|t.first_line,i.last_line=0|t.last_line,i.first_column=0|t.first_column,i.last_column=0|t.last_column,t.range&&(i.range[0]=0|t.range[0],i.range[1]=0|t.range[1])),(i.first_line<=0||i.last_line=i.first_line)&&(i.last_line=0|n.last_line,i.last_column=0|n.last_column,n.range&&(i.range[1]=0|n.range[1]))),i.last_line<=0&&(i.first_line<=0?(i.first_line=this.yylloc.first_line,i.last_line=this.yylloc.last_line,i.first_column=this.yylloc.first_column,i.last_column=this.yylloc.last_column,i.range[0]=this.yylloc.range[0],i.range[1]=this.yylloc.range[1]):(i.last_line=this.yylloc.last_line,i.last_column=this.yylloc.last_column,i.range[1]=this.yylloc.range[1])),i.first_line<=0&&(i.first_line=i.last_line,i.first_column=0,i.range[1]=i.range[0]),i.first_column<0&&(i.first_column=0),i.last_column<0&&(i.last_column=i.first_column>0?i.first_column:80),i},prettyPrintRange:function(t,e,r){t=this.deriveLocationInfo(t,e,r);var n=(this.matched+this._input).split("\n"),i=Math.max(1,e?e.first_line:t.first_line-3),o=Math.max(1,r?r.last_line:t.last_line+1),a=1+Math.log10(1|o)|0,c=new Array(a).join(" "),s=[],l=n.slice(i-1,o+1).map((function(e,r){var n=r+i,o=(c+n).substr(-a)+": "+e,l=new Array(a+1).join("^"),u=3,f=0;(n===t.first_line?(u+=t.first_column,f=Math.max(2,(n===t.last_line?t.last_column:e.length)-t.first_column+1)):n===t.last_line?f=Math.max(2,t.last_column+1):n>t.first_line&&n0&&s.push(r));return o=o.replace(/\t/g," ")}));if(s.length>4){var u=s[1]+1,f=s[s.length-2]-1,h=new Array(a+1).join(" ")+" (...continued...)";h+="\n"+new Array(a+1).join("-")+" (---------------)",l.splice(u,f-u+1,h)}return l.join("\n")},describeYYLLOC:function(t,e){var r,n=t.first_line,i=t.last_line,o=t.first_column,a=t.last_column;if(0===i-n?(r="line "+n+", ",r+=a-o<=1?"column "+o:"columns "+o+" .. "+a):r="lines "+n+"(column "+o+") .. "+i+"(column "+a+")",t.range&&e){var c=t.range[0],s=t.range[1]-1;r+=s<=c?" {String Offset: "+c+"}":" {String Offset range: "+c+" .. "+s+"}"}return r},test_match:function(t,e){var r,n,i,o,a;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.yylloc.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column,range:this.yylloc.range.slice(0)},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done}),a=(o=t[0]).length,(n=o.split(/(?:\r\n?|\n)/g)).length>1?(this.yylineno+=n.length-1,this.yylloc.last_line=this.yylineno+1,this.yylloc.last_column=n[n.length-1].length):this.yylloc.last_column+=a,this.yytext+=o,this.match+=o,this.matched+=o,this.matches=t,this.yyleng=this.yytext.length,this.yylloc.range[1]+=a,this.offset+=a,this._more=!1,this._backtrack=!1,this._input=this._input.slice(a),r=this.performAction.call(this,this.yy,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),r)return r;if(this._backtrack){for(var c in i)this[c]=i[c];return this.__currentRuleSet__=null,!1}return!!this._signaled_error_token&&(r=this._signaled_error_token,this._signaled_error_token=!1,r)},next:function(){if(this.done)return this.clear(),this.EOF;var t,e,r,n;this._input||(this.done=!0),this._more||this.clear();var i=this.__currentRuleSet__;if(!(i||(i=this.__currentRuleSet__=this._currentRules())&&i.rules)){var o="";this.options.trackPosition&&(o=" on line "+(this.yylineno+1));var a=this.constructLexErrorInfo("Internal lexer engine error"+o+': The lex grammar programmer pushed a non-existing condition name "'+this.topState()+'"; this is a fatal error and should be reported to the application programmer team!',!1);return this.parseError(a.errStr,a,this.JisonLexerError)||this.ERROR}for(var c=i.rules,s=i.__rule_regexes,l=i.__rule_count,u=1;u<=l;u++)if((r=this._input.match(s[u]))&&(!e||r[0].length>e[0].length)){if(e=r,n=u,this.options.backtrack_lexer){if(!1!==(t=this.test_match(r,c[u])))return t;if(this._backtrack){e=void 0;continue}return!1}if(!this.options.flex)break}if(e)return!1!==(t=this.test_match(e,c[n]))&&t;if(this._input){o="";this.options.trackPosition&&(o=" on line "+(this.yylineno+1));a=this.constructLexErrorInfo("Lexical error"+o+": Unrecognized text.",this.options.lexerErrorsAreRecoverable);var f=this._input,h=this.topState(),p=this.conditionStack.length;return(t=this.parseError(a.errStr,a,this.JisonLexerError)||this.ERROR)===this.ERROR&&(this.matches||f!==this._input||h!==this.topState()||p!==this.conditionStack.length||this.input()),t}return this.done=!0,this.clear(),this.EOF},lex:function(){var t;for("function"==typeof this.pre_lex&&(t=this.pre_lex.call(this,0)),"function"==typeof this.options.pre_lex&&(t=this.options.pre_lex.call(this,t)||t),this.yy&&"function"==typeof this.yy.pre_lex&&(t=this.yy.pre_lex.call(this,t)||t);!t;)t=this.next();return this.yy&&"function"==typeof this.yy.post_lex&&(t=this.yy.post_lex.call(this,t)||t),"function"==typeof this.options.post_lex&&(t=this.options.post_lex.call(this,t)||t),"function"==typeof this.post_lex&&(t=this.post_lex.call(this,t)||t),t},fastLex:function(){for(var t;!t;)t=this.next();return t},canIUse:function(){return{fastLex:!("function"==typeof this.pre_lex||"function"==typeof this.options.pre_lex||this.yy&&"function"==typeof this.yy.pre_lex||this.yy&&"function"==typeof this.yy.post_lex||"function"==typeof this.options.post_lex||"function"==typeof this.post_lex)&&"function"==typeof this.fastLex}},begin:function(t){return this.pushState(t)},pushState:function(t){return this.conditionStack.push(t),this.__currentRuleSet__=null,this},popState:function(){return this.conditionStack.length-1>0?(this.__currentRuleSet__=null,this.conditionStack.pop()):this.conditionStack[0]},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]]:this.conditions.INITIAL},stateStackSize:function(){return this.conditionStack.length},options:{trackPosition:!0},JisonLexerError:t,performAction:function(t,e,r){if(1!==e)return this.simpleCaseActionClusters[e]},simpleCaseActionClusters:{0:13,2:5,3:6,4:3,5:4,6:15,7:15,8:15,9:15,10:15,11:15,12:16,13:16,14:16,15:16,16:17,17:17,18:18,19:18,20:19,21:19,22:19,23:20,24:21,25:22,26:23,27:25,28:24,29:26,30:27,31:28,32:11,33:9,34:12,35:10,36:7,37:8,38:14,39:1},rules:[/^(?:(--[\d\-A-Za-z]*))/,/^(?:\s+)/,/^(?:\*)/,/^(?:\/)/,/^(?:\+)/,/^(?:-)/,/^(?:(\d+(\.\d*)?|\.\d+)px\b)/,/^(?:(\d+(\.\d*)?|\.\d+)cm\b)/,/^(?:(\d+(\.\d*)?|\.\d+)mm\b)/,/^(?:(\d+(\.\d*)?|\.\d+)in\b)/,/^(?:(\d+(\.\d*)?|\.\d+)pt\b)/,/^(?:(\d+(\.\d*)?|\.\d+)pc\b)/,/^(?:(\d+(\.\d*)?|\.\d+)deg\b)/,/^(?:(\d+(\.\d*)?|\.\d+)grad\b)/,/^(?:(\d+(\.\d*)?|\.\d+)rad\b)/,/^(?:(\d+(\.\d*)?|\.\d+)turn\b)/,/^(?:(\d+(\.\d*)?|\.\d+)s\b)/,/^(?:(\d+(\.\d*)?|\.\d+)ms\b)/,/^(?:(\d+(\.\d*)?|\.\d+)Hz\b)/,/^(?:(\d+(\.\d*)?|\.\d+)kHz\b)/,/^(?:(\d+(\.\d*)?|\.\d+)dpi\b)/,/^(?:(\d+(\.\d*)?|\.\d+)dpcm\b)/,/^(?:(\d+(\.\d*)?|\.\d+)dppx\b)/,/^(?:(\d+(\.\d*)?|\.\d+)em\b)/,/^(?:(\d+(\.\d*)?|\.\d+)ex\b)/,/^(?:(\d+(\.\d*)?|\.\d+)ch\b)/,/^(?:(\d+(\.\d*)?|\.\d+)rem\b)/,/^(?:(\d+(\.\d*)?|\.\d+)vw\b)/,/^(?:(\d+(\.\d*)?|\.\d+)vh\b)/,/^(?:(\d+(\.\d*)?|\.\d+)vmin\b)/,/^(?:(\d+(\.\d*)?|\.\d+)vmax\b)/,/^(?:(\d+(\.\d*)?|\.\d+)%)/,/^(?:(\d+(\.\d*)?|\.\d+)\b)/,/^(?:(calc))/,/^(?:(var))/,/^(?:([a-z]+))/,/^(?:\()/,/^(?:\))/,/^(?:,)/,/^(?:$)/],conditions:{INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39],inclusive:!0}}};return e}();function a(){this.yy={}}return i.lexer=o,a.prototype=i,i.Parser=a,new a}();e.parser=r,e.Parser=r.Parser,e.parse=function(){return r.parse.apply(r,arguments)}},8336:function(t,e,r){var n=r(8219),i=r(6461),o=r(1088);function a(t){return this instanceof a?(this.nodes=n(t),this):new a(t)}a.prototype.toString=function(){return Array.isArray(this.nodes)?o(this.nodes):""},a.prototype.walk=function(t,e){return i(this.nodes,t,e),this},a.unit=r(4386),a.walk=i,a.stringify=o,t.exports=a},8219:function(t){var e="(".charCodeAt(0),r=")".charCodeAt(0),n="'".charCodeAt(0),i='"'.charCodeAt(0),o="\\".charCodeAt(0),a="/".charCodeAt(0),c=",".charCodeAt(0),s=":".charCodeAt(0),l="*".charCodeAt(0);t.exports=function(t){for(var u,f,h,p,d,y,v,m,b=[],g=t,x=0,_=g.charCodeAt(x),w=g.length,O=[{nodes:b}],S=0,j="",P="",E="";x=48&&a<=57)f=!0;else if(a===i||a===o){if(u>-1)break;u=c}else if(a===n){if(l)break;l=!0}else{if(a!==r&&a!==e)break;if(0!==c)break}c+=1}return u+1===c&&c--,!!f&&{number:t.slice(0,c),unit:t.slice(c)}}},6461:function(t){t.exports=function t(e,r,n){var i,o,a,c;for(i=0,o=e.length;i=0;--r){var o=this.tryEntries[r],a=o.completion;if("root"===o.tryLoc)return e("end");if(o.tryLoc<=this.prev){var u=i.call(o,"catchLoc"),c=i.call(o,"finallyLoc");if(u&&c){if(this.prev=0;--e){var r=this.tryEntries[e];if(r.tryLoc<=this.prev&&i.call(r,"finallyLoc")&&this.prev=0;--n){var e=this.tryEntries[n];if(e.finallyLoc===t)return this.complete(e.completion,e.afterLoc),S(e),h}},catch:function(t){for(var n=this.tryEntries.length-1;n>=0;--n){var e=this.tryEntries[n];if(e.tryLoc===t){var r=e.completion;if("throw"===r.type){var o=r.arg;S(e)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,n,e){return this.delegate={iterator:A(t),resultName:n,nextLoc:e},"next"===this.method&&(this.arg=void 0),h}},n}t.exports=o,t.exports.__esModule=!0,t.exports.default=t.exports},87757:function(t,n,e){var r=e(59591)();t.exports=r;try{regeneratorRuntime=r}catch(o){"object"==typeof globalThis?globalThis.regeneratorRuntime=r:Function("r","regeneratorRuntime = r")(r)}},75900:function(t,n){var e;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var t=[],n=0;no)if(Math.abs(p*f-l*s)>o&&a){var d=r-u,v=i-c,y=f*f+l*l,g=d*d+v*v,m=Math.sqrt(y),b=Math.sqrt(h),w=a*Math.tan((e-Math.acos((y+h-g)/(2*m*b)))/2),x=w/b,O=w/m;Math.abs(x-1)>o&&(this._+="L"+(t+x*s)+","+(n+x*p)),this._+="A"+a+","+a+",0,0,"+ +(p*d>s*v)+","+(this._x1=t+O*f)+","+(this._y1=n+O*l)}else this._+="L"+(this._x1=t)+","+(this._y1=n);else;},arc:function(t,n,a,u,c,f){t=+t,n=+n,f=!!f;var l=(a=+a)*Math.cos(u),s=a*Math.sin(u),p=t+l,h=n+s,d=1^f,v=f?u-c:c-u;if(a<0)throw new Error("negative radius: "+a);null===this._x1?this._+="M"+p+","+h:(Math.abs(this._x1-p)>o||Math.abs(this._y1-h)>o)&&(this._+="L"+p+","+h),a&&(v<0&&(v=v%r+r),v>i?this._+="A"+a+","+a+",0,1,"+d+","+(t-l)+","+(n-s)+"A"+a+","+a+",0,1,"+d+","+(this._x1=p)+","+(this._y1=h):v>o&&(this._+="A"+a+","+a+",0,"+ +(v>=e)+","+d+","+(this._x1=t+a*Math.cos(c))+","+(this._y1=n+a*Math.sin(c))))},rect:function(t,n,e,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)+"h"+ +e+"v"+ +r+"h"+-e+"Z"},toString:function(){return this._}},n.Z=u},87286:function(t,n,e){"use strict";e.d(n,{Z:function(){return u},x:function(){return f}});var r=e(70885);function o(t,n,e){t=+t,n=+n,e=(o=arguments.length)<2?(n=t,t=0,1):o<3?1:+e;for(var r=-1,o=0|Math.max(0,Math.ceil((n-t)/e)),i=new Array(o);++r=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,u=!0,c=!1;return{s:function(){e=e.call(t)},n:function(){var t=e.next();return u=t.done,t},e:function(t){c=!0,a=t},f:function(){try{u||null==e.return||e.return()}finally{if(c)throw a}}}}function i(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);e(u=(a=Math.ceil(p/7))>u?a+1:u+1)&&(i=u,r.length=1),r.reverse();i--;)r.push(0);r.reverse()}for((u=f.length)-(i=l.length)<0&&(i=u,r=l,l=f,f=r),e=0;i;)e=(f[--i]=f[i]+l[i]+e)/v|0,f[i]%=v;for(e&&(f.unshift(e),++o),u=f.length;0==f[--u];)f.pop();return n.d=f,n.e=o,c?k(n,p):n}function w(t,n,e){if(t!==~~t||te)throw Error(l+t)}function x(t){var n,e,r,o=t.length-1,i="",a=t[0];if(o>0){for(i+=a,n=1;nt.e^i.s<0?1:-1;for(n=0,e=(r=i.d.length)<(o=t.d.length)?r:o;nt.d[n]^i.s<0?1:-1;return r===o?0:r>o^i.s<0?1:-1},m.decimalPlaces=m.dp=function(){var t=this,n=t.d.length-1,e=7*(n-t.e);if(n=t.d[n])for(;n%10==0;n/=10)e--;return e<0?0:e},m.dividedBy=m.div=function(t){return O(this,new this.constructor(t))},m.dividedToIntegerBy=m.idiv=function(t){var n=this.constructor;return k(O(this,new n(t),0,1),n.precision)},m.equals=m.eq=function(t){return!this.cmp(t)},m.exponent=function(){return M(this)},m.greaterThan=m.gt=function(t){return this.cmp(t)>0},m.greaterThanOrEqualTo=m.gte=function(t){return this.cmp(t)>=0},m.isInteger=m.isint=function(){return this.e>this.d.length-2},m.isNegative=m.isneg=function(){return this.s<0},m.isPositive=m.ispos=function(){return this.s>0},m.isZero=function(){return 0===this.s},m.lessThan=m.lt=function(t){return this.cmp(t)<0},m.lessThanOrEqualTo=m.lte=function(t){return this.cmp(t)<1},m.logarithm=m.log=function(t){var n,e=this,r=e.constructor,o=r.precision,a=o+5;if(void 0===t)t=new r(10);else if((t=new r(t)).s<1||t.eq(i))throw Error(f+"NaN");if(e.s<1)throw Error(f+(e.s?"NaN":"-Infinity"));return e.eq(i)?new r(0):(c=!1,n=O(A(e,a),A(t,a),a),c=!0,k(n,o))},m.minus=m.sub=function(t){var n=this;return t=new n.constructor(t),n.s==t.s?T(n,t):b(n,(t.s=-t.s,t))},m.modulo=m.mod=function(t){var n,e=this,r=e.constructor,o=r.precision;if(!(t=new r(t)).s)throw Error(f+"NaN");return e.s?(c=!1,n=O(e,t,0,1).times(t),c=!0,e.minus(n)):k(new r(e),o)},m.naturalExponential=m.exp=function(){return j(this)},m.naturalLogarithm=m.ln=function(){return A(this)},m.negated=m.neg=function(){var t=new this.constructor(this);return t.s=-t.s||0,t},m.plus=m.add=function(t){var n=this;return t=new n.constructor(t),n.s==t.s?b(n,t):T(n,(t.s=-t.s,t))},m.precision=m.sd=function(t){var n,e,r,o=this;if(void 0!==t&&t!==!!t&&1!==t&&0!==t)throw Error(l+t);if(n=M(o)+1,e=7*(r=o.d.length-1)+1,r=o.d[r]){for(;r%10==0;r/=10)e--;for(r=o.d[0];r>=10;r/=10)e++}return t&&n>e?n:e},m.squareRoot=m.sqrt=function(){var t,n,e,r,o,i,a,u=this,l=u.constructor;if(u.s<1){if(!u.s)return new l(0);throw Error(f+"NaN")}for(t=M(u),c=!1,0==(o=Math.sqrt(+u))||o==1/0?(((n=x(u.d)).length+t)%2==0&&(n+="0"),o=Math.sqrt(n),t=p((t+1)/2)-(t<0||t%2),r=new l(n=o==1/0?"5e"+t:(n=o.toExponential()).slice(0,n.indexOf("e")+1)+t)):r=new l(o.toString()),o=a=(e=l.precision)+3;;)if(r=(i=r).plus(O(u,i,a+2)).times(.5),x(i.d).slice(0,a)===(n=x(r.d)).slice(0,a)){if(n=n.slice(a-3,a+1),o==a&&"4999"==n){if(k(i,e+1,0),i.times(i).eq(u)){r=i;break}}else if("9999"!=n)break;a+=4}return c=!0,k(r,e)},m.times=m.mul=function(t){var n,e,r,o,i,a,u,f,l,s=this,p=s.constructor,h=s.d,d=(t=new p(t)).d;if(!s.s||!t.s)return new p(0);for(t.s*=s.s,e=s.e+t.e,(f=h.length)<(l=d.length)&&(i=h,h=d,d=i,a=f,f=l,l=a),i=[],r=a=f+l;r--;)i.push(0);for(r=l;--r>=0;){for(n=0,o=f+r;o>r;)u=i[o]+d[r]*h[o-r-1]+n,i[o--]=u%v|0,n=u/v|0;i[o]=(i[o]+n)%v|0}for(;!i[--a];)i.pop();return n?++e:i.shift(),t.d=i,t.e=e,c?k(t,p.precision):t},m.toDecimalPlaces=m.todp=function(t,n){var e=this,r=e.constructor;return e=new r(e),void 0===t?e:(w(t,0,a),void 0===n?n=r.rounding:w(n,0,8),k(e,t+M(e)+1,n))},m.toExponential=function(t,n){var e,r=this,o=r.constructor;return void 0===t?e=P(r,!0):(w(t,0,a),void 0===n?n=o.rounding:w(n,0,8),e=P(r=k(new o(r),t+1,n),!0,t+1)),e},m.toFixed=function(t,n){var e,r,o=this,i=o.constructor;return void 0===t?P(o):(w(t,0,a),void 0===n?n=i.rounding:w(n,0,8),e=P((r=k(new i(o),t+M(o)+1,n)).abs(),!1,t+M(r)+1),o.isneg()&&!o.isZero()?"-"+e:e)},m.toInteger=m.toint=function(){var t=this,n=t.constructor;return k(new n(t),M(t)+1,n.rounding)},m.toNumber=function(){return+this},m.toPower=m.pow=function(t){var n,e,r,o,a,u,l=this,s=l.constructor,h=+(t=new s(t));if(!t.s)return new s(i);if(!(l=new s(l)).s){if(t.s<1)throw Error(f+"Infinity");return l}if(l.eq(i))return l;if(r=s.precision,t.eq(i))return k(l,r);if(u=(n=t.e)>=(e=t.d.length-1),a=l.s,u){if((e=h<0?-h:h)<=y){for(o=new s(i),n=Math.ceil(r/7+4),c=!1;e%2&&_((o=o.times(l)).d,n),0!==(e=p(e/2));)_((l=l.times(l)).d,n);return c=!0,t.s<0?new s(i).div(o):k(o,r)}}else if(a<0)throw Error(f+"NaN");return a=a<0&&1&t.d[Math.max(n,e)]?-1:1,l.s=1,c=!1,o=t.times(A(l,r+12)),c=!0,(o=j(o)).s=a,o},m.toPrecision=function(t,n){var e,r,o=this,i=o.constructor;return void 0===t?r=P(o,(e=M(o))<=i.toExpNeg||e>=i.toExpPos):(w(t,1,a),void 0===n?n=i.rounding:w(n,0,8),r=P(o=k(new i(o),t,n),t<=(e=M(o))||e<=i.toExpNeg,t)),r},m.toSignificantDigits=m.tosd=function(t,n){var e=this.constructor;return void 0===t?(t=e.precision,n=e.rounding):(w(t,1,a),void 0===n?n=e.rounding:w(n,0,8)),k(new e(this),t,n)},m.toString=m.valueOf=m.val=m.toJSON=function(){var t=this,n=M(t),e=t.constructor;return P(t,n<=e.toExpNeg||n>=e.toExpPos)};var O=function(){function t(t,n){var e,r=0,o=t.length;for(t=t.slice();o--;)e=t[o]*n+r,t[o]=e%v|0,r=e/v|0;return r&&t.unshift(r),t}function n(t,n,e,r){var o,i;if(e!=r)i=e>r?1:-1;else for(o=i=0;on[o]?1:-1;break}return i}function e(t,n,e){for(var r=0;e--;)t[e]-=r,r=t[e]1;)t.shift()}return function(r,o,i,a){var u,c,l,s,p,h,d,y,g,m,b,w,x,O,j,S,E,A,C=r.constructor,T=r.s==o.s?1:-1,P=r.d,_=o.d;if(!r.s)return new C(r);if(!o.s)throw Error(f+"Division by zero");for(c=r.e-o.e,E=_.length,j=P.length,y=(d=new C(T)).d=[],l=0;_[l]==(P[l]||0);)++l;if(_[l]>(P[l]||0)&&--c,(w=null==i?i=C.precision:a?i+(M(r)-M(o))+1:i)<0)return new C(0);if(w=w/7+2|0,l=0,1==E)for(s=0,_=_[0],w++;(l1&&(_=t(_,s),P=t(P,s),E=_.length,j=P.length),O=E,m=(g=P.slice(0,E)).length;m=v/2&&++S;do{s=0,(u=n(_,g,E,m))<0?(b=g[0],E!=m&&(b=b*v+(g[1]||0)),(s=b/S|0)>1?(s>=v&&(s=v-1),1==(u=n(p=t(_,s),g,h=p.length,m=g.length))&&(s--,e(p,E16)throw Error(s+M(t));if(!t.s)return new p(i);for(null==n?(c=!1,u=d):u=n,a=new p(.03125);t.abs().gte(.1);)t=t.times(a),l+=5;for(u+=Math.log(h(2,l))/Math.LN10*2+5|0,e=r=o=new p(i),p.precision=u;;){if(r=k(r.times(t),u),e=e.times(++f),x((a=o.plus(O(r,e,u))).d).slice(0,u)===x(o.d).slice(0,u)){for(;l--;)o=k(o.times(o),u);return p.precision=d,null==n?(c=!0,k(o,d)):o}o=a}}function M(t){for(var n=7*t.e,e=t.d[0];e>=10;e/=10)n++;return n}function S(t,n,e){if(n>t.LN10.sd())throw c=!0,e&&(t.precision=e),Error(f+"LN10 precision limit exceeded");return k(new t(t.LN10),n)}function E(t){for(var n="";t--;)n+="0";return n}function A(t,n){var e,r,o,a,u,l,s,p,h,d=1,v=t,y=v.d,g=v.constructor,m=g.precision;if(v.s<1)throw Error(f+(v.s?"NaN":"-Infinity"));if(v.eq(i))return new g(0);if(null==n?(c=!1,p=m):p=n,v.eq(10))return null==n&&(c=!0),S(g,p);if(p+=10,g.precision=p,r=(e=x(y)).charAt(0),a=M(v),!(Math.abs(a)<15e14))return s=S(g,p+2,m).times(a+""),v=A(new g(r+"."+e.slice(1)),p-10).plus(s),g.precision=m,null==n?(c=!0,k(v,m)):v;for(;r<7&&1!=r||1==r&&e.charAt(1)>3;)r=(e=x((v=v.times(t)).d)).charAt(0),d++;for(a=M(v),r>1?(v=new g("0."+e),a++):v=new g(r+"."+e.slice(1)),l=u=v=O(v.minus(i),v.plus(i),p),h=k(v.times(v),p),o=3;;){if(u=k(u.times(h),p),x((s=l.plus(O(u,new g(o),p))).d).slice(0,p)===x(l.d).slice(0,p))return l=l.times(2),0!==a&&(l=l.plus(S(g,p+2,m).times(a+""))),l=O(l,new g(d),p),g.precision=m,null==n?(c=!0,k(l,m)):l;l=s,o+=2}}function C(t,n){var e,r,o;for((e=n.indexOf("."))>-1&&(n=n.replace(".","")),(r=n.search(/e/i))>0?(e<0&&(e=r),e+=+n.slice(r+1),n=n.substring(0,r)):e<0&&(e=n.length),r=0;48===n.charCodeAt(r);)++r;for(o=n.length;48===n.charCodeAt(o-1);)--o;if(n=n.slice(r,o)){if(o-=r,e=e-r-1,t.e=p(e/7),t.d=[],r=(e+1)%7,e<0&&(r+=7),rg||t.e<-g))throw Error(s+e)}else t.s=0,t.e=0,t.d=[0];return t}function k(t,n,e){var r,o,i,a,u,f,l,d,y=t.d;for(a=1,i=y[0];i>=10;i/=10)a++;if((r=n-a)<0)r+=7,o=n,l=y[d=0];else{if((d=Math.ceil((r+1)/7))>=(i=y.length))return t;for(l=i=y[d],a=1;i>=10;i/=10)a++;o=(r%=7)-7+a}if(void 0!==e&&(u=l/(i=h(10,a-o-1))%10|0,f=n<0||void 0!==y[d+1]||l%i,f=e<4?(u||f)&&(0==e||e==(t.s<0?3:2)):u>5||5==u&&(4==e||f||6==e&&(r>0?o>0?l/h(10,a-o):0:y[d-1])%10&1||e==(t.s<0?8:7))),n<1||!y[0])return f?(i=M(t),y.length=1,n=n-i-1,y[0]=h(10,(7-n%7)%7),t.e=p(-n/7)||0):(y.length=1,y[0]=t.e=t.s=0),t;if(0==r?(y.length=d,i=1,d--):(y.length=d+1,i=h(10,7-r),y[d]=o>0?(l/h(10,a-o)%h(10,o)|0)*i:0),f)for(;;){if(0==d){(y[0]+=i)==v&&(y[0]=1,++t.e);break}if(y[d]+=i,y[d]!=v)break;y[d--]=0,i=1}for(r=y.length;0===y[--r];)y.pop();if(c&&(t.e>g||t.e<-g))throw Error(s+M(t));return t}function T(t,n){var e,r,o,i,a,u,f,l,s,p,h=t.constructor,d=h.precision;if(!t.s||!n.s)return n.s?n.s=-n.s:n=new h(t),c?k(n,d):n;if(f=t.d,p=n.d,r=n.e,l=t.e,f=f.slice(),a=l-r){for((s=a<0)?(e=f,a=-a,u=p.length):(e=p,r=l,u=f.length),a>(o=Math.max(Math.ceil(d/7),u)+2)&&(a=o,e.length=1),e.reverse(),o=a;o--;)e.push(0);e.reverse()}else{for((s=(o=f.length)<(u=p.length))&&(u=o),o=0;o0;--o)f[u++]=0;for(o=p.length;o>a;){if(f[--o]0?i=i.charAt(0)+"."+i.slice(1)+E(r):a>1&&(i=i.charAt(0)+"."+i.slice(1)),i=i+(o<0?"e":"e+")+o):o<0?(i="0."+E(-o-1)+i,e&&(r=e-a)>0&&(i+=E(r))):o>=a?(i+=E(o+1-a),e&&(r=e-o-1)>0&&(i=i+"."+E(r))):((r=o+1)0&&(o+1===a&&(i+="."),i+=E(r))),t.s<0?"-"+i:i}function _(t,n){if(t.length>n)return t.length=n,!0}function N(t){if(!t||"object"!=typeof t)throw Error(f+"Object expected");var n,e,r,o=["precision",1,a,"rounding",0,8,"toExpNeg",-1/0,0,"toExpPos",0,1/0];for(n=0;n=o[n+1]&&r<=o[n+2]))throw Error(l+e+": "+r);this[e]=r}if(void 0!==(r=t[e="LN10"])){if(r!=Math.LN10)throw Error(l+e+": "+r);this[e]=new this(r)}return this}u=function t(n){var e,r,o;function i(t){var n=this;if(!(n instanceof i))return new i(t);if(n.constructor=i,t instanceof i)return n.s=t.s,n.e=t.e,void(n.d=(t=t.d)?t.slice():t);if("number"==typeof t){if(0*t!=0)throw Error(l+t);if(t>0)n.s=1;else{if(!(t<0))return n.s=0,n.e=0,void(n.d=[0]);t=-t,n.s=-1}return t===~~t&&t<1e7?(n.e=0,void(n.d=[t])):C(n,t.toString())}if("string"!=typeof t)throw Error(l+t);if(45===t.charCodeAt(0)?(t=t.slice(1),n.s=-1):n.s=1,!d.test(t))throw Error(l+t);C(n,t)}if(i.prototype=m,i.ROUND_UP=0,i.ROUND_DOWN=1,i.ROUND_CEIL=2,i.ROUND_FLOOR=3,i.ROUND_HALF_UP=4,i.ROUND_HALF_DOWN=5,i.ROUND_HALF_EVEN=6,i.ROUND_HALF_CEIL=7,i.ROUND_HALF_FLOOR=8,i.clone=t,i.config=i.set=N,void 0===n&&(n={}),n)for(o=["precision","rounding","toExpNeg","toExpPos","LN10"],e=0;e0;)if(!e(t[o],n[o],r))return!1;return!0}function s(t,n,e,r){var o=t.size===n.size;if(o&&t.size){var i={};t.forEach((function(t,a){if(o){var u=!1,c=0;n.forEach((function(n,o){u||i[c]||(u=e(a,o,r)&&e(t,n,r))&&(i[c]=!0),c++})),o=u}}))}return o}var p="_owner",h=Function.prototype.bind.call(Function.prototype.call,Object.prototype.hasOwnProperty);function d(t,n,r,o){var i=e(t),u=i.length;if(e(n).length!==u)return!1;if(u)for(var c=void 0;u-- >0;){if((c=i[u])===p){var f=a(t),l=a(n);if((f||l)&&f!==l)return!1}if(!h(n,c)||!r(t[c],n[c],o))return!1}return!0}function v(t,n){return t.source===n.source&&t.global===n.global&&t.ignoreCase===n.ignoreCase&&t.multiline===n.multiline&&t.unicode===n.unicode&&t.sticky===n.sticky&&t.lastIndex===n.lastIndex}function y(t,n,e,r){var o=t.size===n.size;if(o&&t.size){var i={};t.forEach((function(t){if(o){var a=!1,u=0;n.forEach((function(n){a||i[u]||(a=e(t,n,r))&&(i[u]=!0),u++})),o=a}}))}return o}var g="function"==typeof Map,m="function"==typeof Set;function b(t){var n="function"==typeof t?t(e):e;function e(t,e,a){if(t===e)return!0;if(t&&e&&"object"==typeof t&&"object"==typeof e){if(o(t)&&o(e))return d(t,e,n,a);var u=Array.isArray(t),c=Array.isArray(e);return u||c?u===c&&l(t,e,n,a):(u=t instanceof Date,c=e instanceof Date,u||c?u===c&&r(t.getTime(),e.getTime()):(u=t instanceof RegExp,c=e instanceof RegExp,u||c?u===c&&v(t,e):i(t)||i(e)?t===e:g&&(u=t instanceof Map,c=e instanceof Map,u||c)?u===c&&s(t,e,n,a):m&&(u=t instanceof Set,c=e instanceof Set,u||c)?u===c&&y(t,e,n,a):d(t,e,n,a)))}return t!=t&&e!=e}return e}var w=b(),x=b((function(){return r})),O=b(f()),j=b(f(r));t.circularDeepEqual=O,t.circularShallowEqual=j,t.createCustomEqual=b,t.deepEqual=w,t.sameValueZeroEqual=r,t.shallowEqual=x,Object.defineProperty(t,"__esModule",{value:!0})}(n)},73186:function(t){(function(){var n,e,r,o,i,a;"undefined"!=typeof performance&&null!==performance&&performance.now?t.exports=function(){return performance.now()}:"undefined"!=typeof process&&null!==process&&process.hrtime?(t.exports=function(){return(n()-i)/1e6},e=process.hrtime,o=(n=function(){var t;return 1e9*(t=e())[0]+t[1]})(),a=1e9*process.uptime(),i=o-a):Date.now?(t.exports=function(){return Date.now()-r},r=Date.now()):(t.exports=function(){return(new Date).getTime()-r},r=(new Date).getTime())}).call(this)},8442:function(t,n,e){for(var r=e(73186),o="undefined"==typeof window?e.g:window,i=["moz","webkit"],a="AnimationFrame",u=o["request"+a],c=o["cancel"+a]||o["cancelRequest"+a],f=0;!u&&f=n||e<0||s&&t-f>=i}function y(){var t=Y();if(v(t))return g(t);u=setTimeout(y,function(t){var e=n-(t-c);return s?V(e,i-(t-f)):e}(t))}function g(t){return u=void 0,p&&r?h(t):(r=o=void 0,a)}function m(){var t=Y(),e=v(t);if(r=arguments,o=this,c=t,e){if(void 0===u)return d(c);if(s)return clearTimeout(u),u=setTimeout(y,n),h(c)}return void 0===u&&(u=setTimeout(y,n)),a}return n=$(n)||0,Z(e)&&(l=!!e.leading,i=(s="maxWait"in e)?G($(e.maxWait)||0,n):i,p="trailing"in e?!!e.trailing:p),m.cancel=function(){void 0!==u&&clearTimeout(u),f=0,r=c=o=u=void 0},m.flush=function(){return void 0===u?a:g(Y())},m},K=X,J=v;var Q=function(t,n,e){var r=!0,o=!0;if("function"!=typeof t)throw new TypeError("Expected a function");return J(e)&&(r="leading"in e?!!e.leading:r,o="trailing"in e?!!e.trailing:o),K(t,n,{leading:r,maxWait:n,trailing:o})},tt=function(t,n,e,r){switch(n){case"debounce":return X(t,e,r);case"throttle":return Q(t,e,r);default:return t}},nt=function(t){return"function"==typeof t},et=function(){return"undefined"==typeof window},rt=function(t){return t instanceof Element||t instanceof HTMLDocument},ot=function(t,n,e,r){return function(o){var i=o.width,a=o.height;n((function(n){return n.width===i&&n.height===a||n.width===i&&!r||n.height===a&&!e?n:(t&&nt(t)&&t(i,a),{width:i,height:a})}))}},it=function(t){function n(n){var e=t.call(this,n)||this;e.cancelHandler=function(){e.resizeHandler&&e.resizeHandler.cancel&&(e.resizeHandler.cancel(),e.resizeHandler=null)},e.attachObserver=function(){var t=e.props,n=t.targetRef,r=t.observerOptions;if(!et()){n&&n.current&&(e.targetRef.current=n.current);var o=e.getElement();o&&(e.observableElement&&e.observableElement===o||(e.observableElement=o,e.resizeObserver.observe(o,r)))}},e.getElement=function(){var t=e.props,n=t.querySelector,r=t.targetDomEl;if(et())return null;if(n)return document.querySelector(n);if(r&&rt(r))return r;if(e.targetRef&&rt(e.targetRef.current))return e.targetRef.current;var o=i.findDOMNode(e);if(!o)return null;switch(e.getRenderType()){case"renderProp":case"childFunction":case"child":case"childArray":return o;default:return o.parentElement}},e.createResizeHandler=function(t){var n=e.props,r=n.handleWidth,o=void 0===r||r,i=n.handleHeight,a=void 0===i||i,u=n.onResize;if(o||a){var c=ot(u,e.setState.bind(e),o,a);t.forEach((function(t){var n=t&&t.contentRect||{},r=n.width,o=n.height;!e.skipOnMount&&!et()&&c({width:r,height:o}),e.skipOnMount=!1}))}},e.getRenderType=function(){var t=e.props,n=t.render,r=t.children;return nt(n)?"renderProp":nt(r)?"childFunction":o.isValidElement(r)?"child":Array.isArray(r)?"childArray":"parent"};var r=n.skipOnMount,a=n.refreshMode,u=n.refreshRate,f=void 0===u?1e3:u,l=n.refreshOptions;return e.state={width:void 0,height:void 0},e.skipOnMount=r,e.targetRef=o.createRef(),e.observableElement=null,et()||(e.resizeHandler=tt(e.createResizeHandler,a,f,l),e.resizeObserver=new c.default(e.resizeHandler)),e}return s(n,t),n.prototype.componentDidMount=function(){this.attachObserver()},n.prototype.componentDidUpdate=function(){this.attachObserver()},n.prototype.componentWillUnmount=function(){et()||(this.resizeObserver.disconnect(),this.cancelHandler())},n.prototype.render=function(){var t,n=this.props,e=n.render,r=n.children,i=n.nodeType,a=void 0===i?"div":i,u=this.state,c={width:u.width,height:u.height,targetRef:this.targetRef};switch(this.getRenderType()){case"renderProp":return e&&e(c);case"childFunction":return(t=r)(c);case"child":if((t=r).type&&"string"==typeof t.type){var l=h(c,["targetRef"]);return o.cloneElement(t,l)}return o.cloneElement(t,c);case"childArray":return(t=r).map((function(t){return!!t&&o.cloneElement(t,c)}));default:return f.createElement(a,null)}},n}(o.PureComponent);var at=et()?o.useEffect:o.useLayoutEffect;n.ZP=it},20161:function(t,n,e){"use strict";e.d(n,{ZP:function(){return Ot},bO:function(){return w}});var r=e(67294),o=e(81578),i=e(8442),a=e.n(i);function u(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,e=-1,r=function r(o){e<0&&(e=o),o-e>n?(t(o),e=-1):a()(r)};a()(r)}function c(t){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},c(t)}function f(t){return function(t){if(Array.isArray(t))return t}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,n){if(!t)return;if("string"==typeof t)return l(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);"Object"===e&&t.constructor&&(e=t.constructor.name);if("Map"===e||"Set"===e)return Array.from(t);if("Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return l(t,n)}(t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);et.length)&&(n=t.length);for(var e=0,r=new Array(n);e=0&&t<=1}));var l=k(r,i),s=k(o,a),p=T(r,i),h=function(t){return t>1?1:t<0?0:t},d=function(t){for(var n=t>1?1:t,e=n,r=0;r<8;++r){var o=l(e)-n,i=p(e);if(Math.abs(o-n)0&&void 0!==arguments[0]?arguments[0]:{},n=t.stiff,e=void 0===n?100:n,r=t.damping,o=void 0===r?8:r,i=t.dt,a=void 0===i?17:i,u=function(t,n,r){var i=r+(-(t-n)*e-r*o)*a/1e3,u=r*a/1e3+t;return Math.abs(u-n)t.length)&&(n=t.length);for(var e=0,r=new Array(n);e=0||(o[e]=t[e]);return o}(t,n);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,e)&&(o[e]=t[e])}return o}function Y(t){return function(t){if(Array.isArray(t))return $(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,n){if(!t)return;if("string"==typeof t)return $(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);"Object"===e&&t.constructor&&(e=t.constructor.name);if("Map"===e||"Set"===e)return Array.from(t);if("Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return $(t,n)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function $(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);e0?e[o-1]:r,p=f||Object.keys(c);if("function"==typeof u||"spring"===u)return[].concat(Y(t),[n.runJSAnimation.bind(n,{from:s.style,to:c,duration:i,easing:u}),i]);var h=x(p,i,u),d=V(V(V({},s.style),c),{},{transition:h});return[].concat(Y(t),[d,i,l]).filter(m)}),[a,Math.max(c,r)])),[t.onAnimationEnd]))}},{key:"runAnimation",value:function(t){this.manager||(this.manager=s());var n=t.begin,e=t.duration,r=t.attributeName,o=t.to,i=t.easing,a=t.onAnimationStart,u=t.onAnimationEnd,c=t.steps,f=t.children,l=this.manager;if(this.unSubscribe=l.subscribe(this.handleStyleChange),"function"!=typeof i&&"function"!=typeof f&&"spring"!==i)if(c.length>1)this.runStepAnimation(t);else{var p=r?X({},r,o):o,h=x(Object.keys(p),e,i);l.start([a,n,V(V({},p),{},{transition:h}),e,u])}else this.runJSAnimation(t)}},{key:"handleStyleChange",value:function(t){this.changeStyle(t)}},{key:"changeStyle",value:function(t){this.mounted&&this.setState({style:t})}},{key:"render",value:function(){var t=this.props,n=t.children,e=(t.begin,t.duration,t.attributeName,t.easing,t.isActive),o=(t.steps,t.from,t.to,t.canBegin,t.onAnimationEnd,t.shouldReAnimate,t.onAnimationReStart,Z(t,["children","begin","duration","attributeName","easing","isActive","steps","from","to","canBegin","onAnimationEnd","shouldReAnimate","onAnimationReStart"])),i=r.Children.count(n),a=w(this.state.style);if("function"==typeof n)return n(a);if(!e||0===i)return n;var u=function(t){var n=t.props,e=n.style,i=void 0===e?{}:e,u=n.className;return(0,r.cloneElement)(t,V(V({},o),{},{style:V(V({},i),a),className:u}))};return 1===i?u(r.Children.only(n)):r.createElement("div",null,r.Children.map(n,(function(t){return u(t)})))}}],e&&K(n.prototype,e),i&&K(n,i),u}(r.PureComponent);rt.displayName="Animate",rt.defaultProps={begin:0,duration:1e3,from:"",to:"",attributeName:"",easing:"ease",isActive:!0,canBegin:!0,steps:[],onAnimationEnd:function(){},onAnimationStart:function(){}};var ot=rt,it=e(45999);function at(t){return at="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},at(t)}function ut(){return ut=Object.assign||function(t){for(var n=1;n=0||(o[e]=t[e]);return o}(t,n);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,e)&&(o[e]=t[e])}return o}function ft(t,n){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(t,n).enumerable}))),e.push.apply(e,r)}return e}function lt(t){for(var n=1;n0&&void 0!==arguments[0]?arguments[0]:{},n=t.steps,e=t.duration;return n&&n.length?n.reduce((function(t,n){return t+(Number.isFinite(n.duration)&&n.duration>0?n.duration:0)}),0):Number.isFinite(e)?e:0},bt=function(t){!function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(n&&n.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),n&&dt(t,n)}(a,t);var n,e,o,i=vt(a);function a(){var t;pt(this,a);for(var n=arguments.length,e=new Array(n),r=0;r=0||(o[e]=t[e]);return o}(t,["children","in"]),a=r.default.Children.toArray(n),u=a[0],c=a[1];return delete o.onEnter,delete o.onEntering,delete o.onEntered,delete o.onExit,delete o.onExiting,delete o.onExited,r.default.createElement(i.default,o,e?r.default.cloneElement(u,{key:"first",onEnter:this.handleEnter,onEntering:this.handleEntering,onEntered:this.handleEntered}):r.default.cloneElement(c,{key:"second",onEnter:this.handleExit,onEntering:this.handleExiting,onEntered:this.handleExited}))},a}(r.default.Component);u.propTypes={};var c=u;n.default=c,t.exports=n.default},88532:function(t,n,e){"use strict";n.__esModule=!0,n.default=n.EXITING=n.ENTERED=n.ENTERING=n.EXITED=n.UNMOUNTED=void 0;var r=function(t){if(t&&t.__esModule)return t;var n={};if(null!=t)for(var e in t)if(Object.prototype.hasOwnProperty.call(t,e)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(t,e):{};r.get||r.set?Object.defineProperty(n,e,r):n[e]=t[e]}return n.default=t,n}(e(45697)),o=u(e(67294)),i=u(e(73935)),a=e(9712);e(30279);function u(t){return t&&t.__esModule?t:{default:t}}var c="unmounted";n.UNMOUNTED=c;var f="exited";n.EXITED=f;var l="entering";n.ENTERING=l;var s="entered";n.ENTERED=s;var p="exiting";n.EXITING=p;var h=function(t){var n,e;function r(n,e){var r;r=t.call(this,n,e)||this;var o,i=e.transitionGroup,a=i&&!i.isMounting?n.enter:n.appear;return r.appearStatus=null,n.in?a?(o=f,r.appearStatus=l):o=s:o=n.unmountOnExit||n.mountOnEnter?c:f,r.state={status:o},r.nextCallback=null,r}e=t,(n=r).prototype=Object.create(e.prototype),n.prototype.constructor=n,n.__proto__=e;var a=r.prototype;return a.getChildContext=function(){return{transitionGroup:null}},r.getDerivedStateFromProps=function(t,n){return t.in&&n.status===c?{status:f}:null},a.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},a.componentDidUpdate=function(t){var n=null;if(t!==this.props){var e=this.state.status;this.props.in?e!==l&&e!==s&&(n=l):e!==l&&e!==s||(n=p)}this.updateStatus(!1,n)},a.componentWillUnmount=function(){this.cancelNextCallback()},a.getTimeouts=function(){var t,n,e,r=this.props.timeout;return t=n=e=r,null!=r&&"number"!=typeof r&&(t=r.exit,n=r.enter,e=void 0!==r.appear?r.appear:n),{exit:t,enter:n,appear:e}},a.updateStatus=function(t,n){if(void 0===t&&(t=!1),null!==n){this.cancelNextCallback();var e=i.default.findDOMNode(this);n===l?this.performEnter(e,t):this.performExit(e)}else this.props.unmountOnExit&&this.state.status===f&&this.setState({status:c})},a.performEnter=function(t,n){var e=this,r=this.props.enter,o=this.context.transitionGroup?this.context.transitionGroup.isMounting:n,i=this.getTimeouts(),a=o?i.appear:i.enter;n||r?(this.props.onEnter(t,o),this.safeSetState({status:l},(function(){e.props.onEntering(t,o),e.onTransitionEnd(t,a,(function(){e.safeSetState({status:s},(function(){e.props.onEntered(t,o)}))}))}))):this.safeSetState({status:s},(function(){e.props.onEntered(t)}))},a.performExit=function(t){var n=this,e=this.props.exit,r=this.getTimeouts();e?(this.props.onExit(t),this.safeSetState({status:p},(function(){n.props.onExiting(t),n.onTransitionEnd(t,r.exit,(function(){n.safeSetState({status:f},(function(){n.props.onExited(t)}))}))}))):this.safeSetState({status:f},(function(){n.props.onExited(t)}))},a.cancelNextCallback=function(){null!==this.nextCallback&&(this.nextCallback.cancel(),this.nextCallback=null)},a.safeSetState=function(t,n){n=this.setNextCallback(n),this.setState(t,n)},a.setNextCallback=function(t){var n=this,e=!0;return this.nextCallback=function(r){e&&(e=!1,n.nextCallback=null,t(r))},this.nextCallback.cancel=function(){e=!1},this.nextCallback},a.onTransitionEnd=function(t,n,e){this.setNextCallback(e);var r=null==n&&!this.props.addEndListener;t&&!r?(this.props.addEndListener&&this.props.addEndListener(t,this.nextCallback),null!=n&&setTimeout(this.nextCallback,n)):setTimeout(this.nextCallback,0)},a.render=function(){var t=this.state.status;if(t===c)return null;var n=this.props,e=n.children,r=function(t,n){if(null==t)return{};var e,r,o={},i=Object.keys(t);for(r=0;r=0||(o[e]=t[e]);return o}(n,["children"]);if(delete r.in,delete r.mountOnEnter,delete r.unmountOnExit,delete r.appear,delete r.enter,delete r.exit,delete r.timeout,delete r.addEndListener,delete r.onEnter,delete r.onEntering,delete r.onEntered,delete r.onExit,delete r.onExiting,delete r.onExited,"function"==typeof e)return e(t,r);var i=o.default.Children.only(e);return o.default.cloneElement(i,r)},r}(o.default.Component);function d(){}h.contextTypes={transitionGroup:r.object},h.childContextTypes={transitionGroup:function(){}},h.propTypes={},h.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:d,onEntering:d,onEntered:d,onExit:d,onExiting:d,onExited:d},h.UNMOUNTED=0,h.EXITED=1,h.ENTERING=2,h.ENTERED=3,h.EXITING=4;var v=(0,a.polyfill)(h);n.default=v},62643:function(t,n,e){"use strict";n.__esModule=!0,n.default=void 0;var r=u(e(45697)),o=u(e(67294)),i=e(9712),a=e(81777);function u(t){return t&&t.__esModule?t:{default:t}}function c(){return c=Object.assign||function(t){for(var n=1;n=0||(o[e]=t[e]);return o}(t,["component","childFactory"]),i=l(this.state.children).map(e);return delete r.appear,delete r.enter,delete r.exit,null===n?i:o.default.createElement(n,r,i)},r}(o.default.Component);s.childContextTypes={transitionGroup:r.default.object.isRequired},s.propTypes={},s.defaultProps={component:"div",childFactory:function(t){return t}};var p=(0,i.polyfill)(s);n.default=p,t.exports=n.default},45999:function(t,n,e){"use strict";var r=u(e(18090)),o=u(e(18577)),i=u(e(62643)),a=u(e(88532));function u(t){return t&&t.__esModule?t:{default:t}}t.exports={Transition:a.default,TransitionGroup:i.default,ReplaceTransition:o.default,CSSTransition:r.default}},81777:function(t,n,e){"use strict";n.__esModule=!0,n.getChildMapping=o,n.mergeChildMappings=i,n.getInitialChildMapping=function(t,n){return o(t.children,(function(e){return(0,r.cloneElement)(e,{onExited:n.bind(null,e),in:!0,appear:a(e,"appear",t),enter:a(e,"enter",t),exit:a(e,"exit",t)})}))},n.getNextChildMapping=function(t,n,e){var u=o(t.children),c=i(n,u);return Object.keys(c).forEach((function(o){var i=c[o];if((0,r.isValidElement)(i)){var f=o in n,l=o in u,s=n[o],p=(0,r.isValidElement)(s)&&!s.props.in;!l||f&&!p?l||!f||p?l&&f&&(0,r.isValidElement)(s)&&(c[o]=(0,r.cloneElement)(i,{onExited:e.bind(null,i),in:s.props.in,exit:a(i,"exit",t),enter:a(i,"enter",t)})):c[o]=(0,r.cloneElement)(i,{in:!1}):c[o]=(0,r.cloneElement)(i,{onExited:e.bind(null,i),in:!0,exit:a(i,"exit",t),enter:a(i,"enter",t)})}})),c};var r=e(67294);function o(t,n){var e=Object.create(null);return t&&r.Children.map(t,(function(t){return t})).forEach((function(t){e[t.key]=function(t){return n&&(0,r.isValidElement)(t)?n(t):t}(t)})),e}function i(t,n){function e(e){return e in n?n[e]:t[e]}t=t||{},n=n||{};var r,o=Object.create(null),i=[];for(var a in t)a in n?i.length&&(o[a]=i,i=[]):i.push(a);var u={};for(var c in n){if(o[c])for(r=0;r=0||(o[e]=t[e]);return o}(t,n);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,e)&&(o[e]=t[e])}return o}function yt(t){return t.value}function gt(t,n){return!0===t?a()(n,yt):o()(t)?a()(n,t):n}var mt=function(t){!function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(n&&n.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),n&&st(t,n)}(a,t);var n,e,r,i=pt(a);function a(){var t;ft(this,a);for(var n=arguments.length,e=new Array(n),r=0;r=0&&e>=0?{width:n,height:e}:null}},{key:"getDefaultPosition",value:function(t){var n,e,r=this.props,o=r.layout,i=r.align,a=r.verticalAlign,u=r.margin,c=r.chartWidth,f=r.chartHeight;return t&&(void 0!==t.left&&null!==t.left||void 0!==t.right&&null!==t.right)||(n="center"===i&&"vertical"===o?{left:((c||0)-(this.getBBoxSnapshot()||{width:0}).width)/2}:"right"===i?{right:u&&u.right||0}:{left:u&&u.left||0}),t&&(void 0!==t.top&&null!==t.top||void 0!==t.bottom&&null!==t.bottom)||(e="middle"===a?{top:((f||0)-(this.getBBoxSnapshot()||{height:0}).height)/2}:"bottom"===a?{bottom:u&&u.bottom||0}:{top:u&&u.top||0}),ut(ut({},n),e)}},{key:"updateBBox",value:function(){var t=this.state,n=t.boxWidth,e=t.boxHeight,r=this.props.onBBoxUpdate;if(this.wrapperNode&&this.wrapperNode.getBoundingClientRect){var o=this.wrapperNode.getBoundingClientRect();(Math.abs(o.width-n)>1||Math.abs(o.height-e)>1)&&this.setState({boxWidth:o.width,boxHeight:o.height},(function(){r&&r(o)}))}else-1===n&&-1===e||this.setState({boxWidth:-1,boxHeight:-1},(function(){r&&r(null)}))}},{key:"render",value:function(){var t=this,n=this.props,e=n.content,r=n.width,i=n.height,a=n.wrapperStyle,c=n.payloadUniqBy,f=n.payload,l=ut(ut({position:"absolute",width:r||"auto",height:i||"auto"},this.getDefaultPosition(a)),a);return u.createElement("div",{className:"recharts-legend-wrapper",style:l,ref:function(n){t.wrapperNode=n}},function(t,n){if(u.isValidElement(t))return u.cloneElement(t,n);if(o()(t))return u.createElement(t,n);n.ref;var e=vt(n,["ref"]);return u.createElement(rt,e)}(e,ut(ut({},this.props),{},{payload:gt(c,f)})))}}])&<(n.prototype,e),r&<(n,r),a}(u.PureComponent);mt.displayName="Legend",mt.defaultProps={iconSize:14,layout:"horizontal",align:"center",verticalAlign:"bottom"}},35832:function(t,n,e){"use strict";e.d(n,{h:function(){return d}});var r=e(23279),o=e.n(r),i=e(75900),a=e.n(i),u=e(67294),c=e(70169),f=e(2562),l=e(40742);function s(){return s=Object.assign||function(t){for(var n=1;nt.length)&&(n=t.length);for(var e=0,r=new Array(n);e0?o()(P,w):P;(0,u.useEffect)((function(){if(C){var t=T();t&&S(t)}}),[C]),(0,u.useEffect)((function(){k(!0)}),[]);var N={width:i,height:d,minWidth:v,minHeight:y,maxHeight:g};return u.createElement(c.ZP,{handleWidth:!0,handleHeight:!0,onResize:_,targetRef:E},u.createElement("div",s({},null!=x?{id:"".concat(x)}:{},{className:a()("recharts-responsive-container",O),style:N,ref:E}),function(){var t=M.containerWidth,n=M.containerHeight;if(t<0||n<0)return null;(0,l.Z)((0,f.hU)(i)||(0,f.hU)(d),"The width(%s) and height(%s) are both fixed numbers,\n maybe you don't need to use a ResponsiveContainer.",i,d),(0,l.Z)(!e||e>0,"The aspect(%s) must be greater than zero.",e);var r=(0,f.hU)(i)?t:i,o=(0,f.hU)(d)?n:d;return e&&e>0&&(r?o=r/e:o&&(r=o*e),g&&o>g&&(o=g)),(0,l.Z)(r>0||o>0,"The width(%s) and height(%s) of chart should be greater than 0,\n please check the style of container, or the props width(%s) and height(%s),\n or add a minWidth(%s) or minHeight(%s) or use aspect(%s) to control the\n height and width.",r,o,i,d,v,y,e),(0,u.cloneElement)(m,{width:r,height:o})}()))}))},72346:function(t,n,e){"use strict";e.d(n,{u:function(){return Z}});var r=e(14293),o=e.n(r),i=e(23560),a=e.n(i),u=e(45578),c=e.n(u),f=e(67294),l=e(20161),s=e(75900),p=e.n(s),h=e(89734),d=e.n(h),v=e(1469),y=e.n(v),g=e(2562);function m(t){return m="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},m(t)}function b(t,n){return function(t){if(Array.isArray(t))return t}(t)||function(t,n){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(t)))return;var e=[],r=!0,o=!1,i=void 0;try{for(var a,u=t[Symbol.iterator]();!(r=(a=u.next()).done)&&(e.push(a.value),!n||e.length!==n);r=!0);}catch(c){o=!0,i=c}finally{try{r||null==u.return||u.return()}finally{if(o)throw i}}return e}(t,n)||function(t,n){if(!t)return;if("string"==typeof t)return w(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);"Object"===e&&t.constructor&&(e=t.constructor.name);if("Map"===e||"Set"===e)return Array.from(t);if("Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return w(t,n)}(t,n)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);el[e]+o?Math.max(s,l[e]):Math.max(p,l[e])},t}return n=u,(e=[{key:"componentDidMount",value:function(){this.updateBBox()}},{key:"componentDidUpdate",value:function(){this.updateBBox()}},{key:"updateBBox",value:function(){var t=this.state,n=t.boxWidth,e=t.boxHeight;if(this.wrapperNode&&this.wrapperNode.getBoundingClientRect){var r=this.wrapperNode.getBoundingClientRect();(Math.abs(r.width-n)>1||Math.abs(r.height-e)>1)&&this.setState({boxWidth:r.width,boxHeight:r.height})}else-1===n&&-1===e||this.setState({boxWidth:-1,boxHeight:-1})}},{key:"render",value:function(){var t,n,e,r=this,i=this.props,u=i.payload,s=i.isAnimationActive,h=i.animationDuration,d=i.animationEasing,v=i.filterNull,y=function(t,n){return!0===t?c()(n,W):a()(t)?c()(n,t):n}(i.payloadUniqBy,v&&u&&u.length?u.filter((function(t){return!o()(t.value)})):u),m=y&&y.length,b=this.props,w=b.content,x=b.viewBox,O=b.coordinate,j=b.position,M=b.active,S=L({pointerEvents:"none",visibility:M&&m?"visible":"hidden",position:"absolute",top:0,left:0},b.wrapperStyle);if(j&&(0,g.hj)(j.x)&&(0,g.hj)(j.y))n=j.x,e=j.y;else{var E=this.state,A=E.boxWidth,C=E.boxHeight;A>0&&C>0&&O?(n=this.getTranslate({key:"x",tooltipDimension:A,viewBoxDimension:x.width}),e=this.getTranslate({key:"y",tooltipDimension:C,viewBoxDimension:x.height})):S.visibility="hidden"}S=L(L({},(0,l.bO)({transform:this.props.useTranslate3d?"translate3d(".concat(n,"px, ").concat(e,"px, 0)"):"translate(".concat(n,"px, ").concat(e,"px)")})),S),s&&M&&(S=L(L({},(0,l.bO)({transition:"transform ".concat(h,"ms ").concat(d)})),S));var k=p()(H,(R(t={},"".concat(H,"-right"),(0,g.hj)(n)&&O&&(0,g.hj)(O.x)&&n>=O.x),R(t,"".concat(H,"-left"),(0,g.hj)(n)&&O&&(0,g.hj)(O.x)&&n=O.y),R(t,"".concat(H,"-top"),(0,g.hj)(e)&&O&&(0,g.hj)(O.y)&&e=0||(o[e]=t[e]);return o}(t,n);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,e)&&(o[e]=t[e])}return o}function f(t){var n=t.children,e=t.className,o=c(t,["children","className"]),f=i()("recharts-layer",e);return r.createElement("g",u({className:f},(0,a.L6)(o,!0)),n)}},89780:function(t,n,e){"use strict";e.d(n,{T:function(){return f}});var r=e(67294),o=e(75900),i=e.n(o),a=e(3463);function u(){return u=Object.assign||function(t){for(var n=1;n=0||(o[e]=t[e]);return o}(t,n);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,e)&&(o[e]=t[e])}return o}function f(t){var n=t.children,e=t.width,o=t.height,f=t.viewBox,l=t.className,s=t.style,p=c(t,["children","width","height","viewBox","className","style"]),h=f||{width:e,height:o,x:0,y:0},d=i()("recharts-surface",l);return r.createElement("svg",u({},(0,a.L6)(p,!0,!0),{className:d,width:e,height:o,style:s,viewBox:"".concat(h.x," ").concat(h.y," ").concat(h.width," ").concat(h.height),version:"1.1"}),n)}},39739:function(t,n,e){"use strict";e.d(n,{A:function(){return m},X:function(){return g}});var r=e(67294),o=e(75900),i=e.n(o),a=e(20161),u=e(3463);function c(t){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},c(t)}function f(){return f=Object.assign||function(t){for(var n=1;n=0?1:-1,c=e>=0?1:-1,f=r>=0&&e>=0||r<0&&e<0?1:0;if(a>0&&o instanceof Array){for(var l=[0,0,0,0],s=0;s<4;s++)l[s]=o[s]>a?a:o[s];i="M".concat(t,",").concat(n+u*l[0]),l[0]>0&&(i+="A ".concat(l[0],",").concat(l[0],",0,0,").concat(f,",").concat(t+c*l[0],",").concat(n)),i+="L ".concat(t+e-c*l[1],",").concat(n),l[1]>0&&(i+="A ".concat(l[1],",").concat(l[1],",0,0,").concat(f,",\n ").concat(t+e,",").concat(n+u*l[1])),i+="L ".concat(t+e,",").concat(n+r-u*l[2]),l[2]>0&&(i+="A ".concat(l[2],",").concat(l[2],",0,0,").concat(f,",\n ").concat(t+e-c*l[2],",").concat(n+r)),i+="L ".concat(t+c*l[3],",").concat(n+r),l[3]>0&&(i+="A ".concat(l[3],",").concat(l[3],",0,0,").concat(f,",\n ").concat(t,",").concat(n+r-u*l[3])),i+="Z"}else if(a>0&&o===+o&&o>0){var p=Math.min(a,o);i="M ".concat(t,",").concat(n+u*p,"\n A ").concat(p,",").concat(p,",0,0,").concat(f,",").concat(t+c*p,",").concat(n,"\n L ").concat(t+e-c*p,",").concat(n,"\n A ").concat(p,",").concat(p,",0,0,").concat(f,",").concat(t+e,",").concat(n+u*p,"\n L ").concat(t+e,",").concat(n+r-u*p,"\n A ").concat(p,",").concat(p,",0,0,").concat(f,",").concat(t+e-c*p,",").concat(n+r,"\n L ").concat(t+c*p,",").concat(n+r,"\n A ").concat(p,",").concat(p,",0,0,").concat(f,",").concat(t,",").concat(n+r-u*p," Z")}else i="M ".concat(t,",").concat(n," h ").concat(e," v ").concat(r," h ").concat(-e," Z");return i},g=function(t,n){if(!t||!n)return!1;var e=t.x,r=t.y,o=n.x,i=n.y,a=n.width,u=n.height;if(Math.abs(a)>0&&Math.abs(u)>0){var c=Math.min(o,o+a),f=Math.max(o,o+a),l=Math.min(i,i+u),s=Math.max(i,i+u);return e>=c&&e<=f&&r>=l&&r<=s}return!1},m=function(t){!function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(n&&n.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),n&&p(t,n)}(d,t);var n,e,o,c=h(d);function d(){var t;l(this,d);for(var n=arguments.length,e=new Array(n),r=0;r0,from:{width:c,height:l,x:e,y:o},to:{width:c,height:l,x:e,y:o},duration:g,animationEasing:v,isActive:w},(function(n){var e=n.width,o=n.height,i=n.x,c=n.y;return r.createElement(a.ZP,{canBegin:h>0,from:"0px ".concat(-1===h?1:h,"px"),to:"".concat(h,"px 0px"),attributeName:"strokeDasharray",begin:m,duration:g,isActive:b,easing:v},r.createElement("path",f({},(0,u.L6)(t.props,!0),{className:x,d:y(i,c,e,o,s),ref:function(n){t.node=n}})))})):r.createElement("path",f({},(0,u.L6)(this.props,!0),{className:x,d:y(e,o,c,l,s)}))}}])&&s(n.prototype,e),o&&s(n,o),d}(r.PureComponent);m.defaultProps={x:0,y:0,width:0,height:0,radius:0,isAnimationActive:!1,isUpdateAnimationActive:!1,animationBegin:0,animationDuration:1500,animationEasing:"ease"}},44053:function(t,n,e){"use strict";e.d(n,{By:function(){return Vi},VO:function(){return Wi},zF:function(){return ia},DO:function(){return ea},Bu:function(){return aa},zT:function(){return ba},qz:function(){return Gi},pt:function(){return $i},Yj:function(){return ha},Fy:function(){return pa},Rf:function(){return ta},gF:function(){return Hi},s6:function(){return Ji},EB:function(){return va},zp:function(){return Yi},fk:function(){return Zi},wh:function(){return la},O3:function(){return da},uY:function(){return na},g$:function(){return sa},Qo:function(){return xa},F$:function(){return qi},NA:function(){return Qi},ko:function(){return wa},ZI:function(){return Ki},Hq:function(){return ra},LG:function(){return ma},Vv:function(){return ua}});var r={};e.r(r),e.d(r,{scaleBand:function(){return tt.Z},scaleDiverging:function(){return wi},scaleDivergingLog:function(){return xi},scaleDivergingPow:function(){return ji},scaleDivergingSqrt:function(){return Mi},scaleDivergingSymlog:function(){return Oi},scaleIdentity:function(){return qn},scaleImplicit:function(){return ee.O},scaleLinear:function(){return Bn},scaleLog:function(){return Kn},scaleOrdinal:function(){return ee.Z},scalePoint:function(){return tt.x},scalePow:function(){return ue},scaleQuantile:function(){return Me},scaleQuantize:function(){return Ee},scaleRadial:function(){return se},scaleSequential:function(){return li},scaleSequentialLog:function(){return si},scaleSequentialPow:function(){return hi},scaleSequentialQuantile:function(){return gi},scaleSequentialSqrt:function(){return di},scaleSequentialSymlog:function(){return pi},scaleSqrt:function(){return ce},scaleSymlog:function(){return ne},scaleThreshold:function(){return Ae},scaleTime:function(){return ai},scaleUtc:function(){return ui},tickFormat:function(){return Fn}});var o=e(18446),i=e.n(o),a=e(89734),u=e.n(a),c=e(7654),f=e.n(c),l=e(11700),s=e.n(l),p=e(47037),h=e.n(p),d=e(1469),v=e.n(d),y=e(6162),g=e.n(y),m=e(53632),b=e.n(m),w=e(94654),x=e.n(w),O=e(23560),j=e.n(O),M=e(27361),S=e.n(M),E=e(14293),A=e.n(E),C=e(84416),k=e.n(C);function T(t){return function(t){if(Array.isArray(t))return P(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,n){if(!t)return;if("string"==typeof t)return P(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);"Object"===e&&t.constructor&&(e=t.constructor.name);if("Map"===e||"Set"===e)return Array.from(t);if("Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return P(t,n)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function P(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);e=n?e.apply(void 0,o):t(n-a,L((function(){for(var t=arguments.length,n=new Array(t),r=0;rt.length)&&(n=t.length);for(var e=0,r=new Array(n);er&&(o=r,i=e),[o,i]}function V(t,n,e){if(t.lte(0))return new(k())(0);var r=H.getDigitCount(t.toNumber()),o=new(k())(10).pow(r),i=t.div(o),a=1!==r?.05:.1,u=new(k())(Math.ceil(i.div(a).toNumber())).add(e).mul(a).mul(o);return n?u:new(k())(Math.ceil(u))}function X(t,n,e){var r=1,o=new(k())(t);if(!o.isint()&&e){var i=Math.abs(t);i<1?(r=new(k())(10).pow(H.getDigitCount(t)-1),o=new(k())(Math.floor(o.div(r).toNumber())).mul(r)):i>1&&(o=new(k())(Math.floor(t)))}else 0===t?o=new(k())(Math.floor((n-1)/2)):e||(o=new(k())(Math.floor(t)));var a=Math.floor((n-1)/2);return z(F((function(t){return o.add(new(k())(t-a).mul(r)).toNumber()})),U)(0,n)}function K(t,n,e,r){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0;if(!Number.isFinite((n-t)/(e-1)))return{step:new(k())(0),tickMin:new(k())(0),tickMax:new(k())(0)};var i,a=V(new(k())(n).sub(t).div(e-1),r,o);i=t<=0&&n>=0?new(k())(0):(i=new(k())(t).add(n).div(2)).sub(new(k())(i).mod(a));var u=Math.ceil(i.sub(t).div(a).toNumber()),c=Math.ceil(new(k())(n).sub(i).div(a).toNumber()),f=u+c+1;return f>e?K(t,n,e,r,o+1):(f0?c+(e-f):c,u=n>0?u:u+(e-f)),{step:a,tickMin:i.sub(new(k())(u).mul(a)),tickMax:i.add(new(k())(c).mul(a))})}var J=q((function(t){var n=Z(t,2),e=n[0],r=n[1],o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:6,i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=Math.max(o,2),u=G([e,r]),c=Z(u,2),f=c[0],l=c[1];if(f===-1/0||l===1/0){var s=l===1/0?[f].concat(W(U(0,o-1).map((function(){return 1/0})))):[].concat(W(U(0,o-1).map((function(){return-1/0}))),[l]);return e>r?B(s):s}if(f===l)return X(f,o,i);var p=K(f,l,a,i),h=p.step,d=p.tickMin,v=p.tickMax,y=H.rangeStep(d,v.add(new(k())(.1).mul(h)),h);return e>r?B(y):y})),Q=(q((function(t){var n=Z(t,2),e=n[0],r=n[1],o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:6,i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=Math.max(o,2),u=G([e,r]),c=Z(u,2),f=c[0],l=c[1];if(f===-1/0||l===1/0)return[e,r];if(f===l)return X(f,o,i);var s=V(new(k())(l).sub(f).div(a-1),i,0),p=z(F((function(t){return new(k())(f).add(new(k())(t).mul(s)).toNumber()})),U),h=p(0,a).filter((function(t){return t>=f&&t<=l}));return e>r?B(h):h})),q((function(t,n){var e=Z(t,2),r=e[0],o=e[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=G([r,o]),u=Z(a,2),c=u[0],f=u[1];if(c===-1/0||f===1/0)return[r,o];if(c===f)return[c];var l=Math.max(n,2),s=V(new(k())(f).sub(c).div(l-1),i,0),p=[].concat(W(H.rangeStep(new(k())(c),new(k())(f).sub(new(k())(.99).mul(s)),s)),[f]);return r>o?B(p):p}))),tt=e(87286),nt=Math.sqrt(50),et=Math.sqrt(10),rt=Math.sqrt(2);function ot(t,n,e){var r,o,i,a,u=-1;if(e=+e,(t=+t)===(n=+n)&&e>0)return[t];if((r=n0){var c=Math.round(t/a),f=Math.round(n/a);for(c*an&&--f,i=new Array(o=f-c+1);++un&&--s,i=new Array(o=s-l+1);++u=0?(i>=nt?10:i>=et?5:i>=rt?2:1)*Math.pow(10,o):-Math.pow(10,-o)/(i>=nt?10:i>=et?5:i>=rt?2:1)}function at(t,n,e){var r=Math.abs(n-t)/Math.max(0,e),o=Math.pow(10,Math.floor(Math.log(r)/Math.LN10)),i=r/o;return i>=nt?o*=10:i>=et?o*=5:i>=rt&&(o*=2),nn?1:t>=n?0:NaN}function ct(t){var n=t,e=t;function r(t,n,r,o){for(null==r&&(r=0),null==o&&(o=t.length);r>>1;e(t[i],n)<0?r=i+1:o=i}return r}return 1===t.length&&(n=function(n,e){return t(n)-e},e=function(t){return function(n,e){return ut(t(n),e)}}(t)),{left:r,center:function(t,e,o,i){null==o&&(o=0),null==i&&(i=t.length);var a=r(t,e,o,i-1);return a>o&&n(t[a-1],e)>-n(t[a],e)?a-1:a},right:function(t,n,r,o){for(null==r&&(r=0),null==o&&(o=t.length);r>>1;e(t[i],n)>0?o=i:r=i+1}return r}}}var ft=e(87757),lt=e.n(ft),st=lt().mark(vt);function pt(t,n){var e="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!e){if(Array.isArray(t)||(e=function(t,n){if(!t)return;if("string"==typeof t)return ht(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);"Object"===e&&t.constructor&&(e=t.constructor.name);if("Map"===e||"Set"===e)return Array.from(t);if("Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return ht(t,n)}(t))||n&&t&&"number"==typeof t.length){e&&(t=e);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){e=e.call(t)},n:function(){var t=e.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==e.return||e.return()}finally{if(u)throw i}}}}function ht(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);e=o)){f.next=9;break}return f.next=9,o;case 9:f.next=4;break;case 11:f.next=16;break;case 13:f.prev=13,f.t0=f.catch(2),e.e(f.t0);case 16:return f.prev=16,e.f(),f.finish(16);case 19:f.next=40;break;case 21:i=-1,a=pt(t),f.prev=23,a.s();case 25:if((u=a.n()).done){f.next=32;break}if(c=u.value,!(null!=(c=n(c,++i,t))&&(c=+c)>=c)){f.next=30;break}return f.next=30,c;case 30:f.next=25;break;case 32:f.next=37;break;case 34:f.prev=34,f.t1=f.catch(23),a.e(f.t1);case 37:return f.prev=37,a.f(),f.finish(37);case 40:case"end":return f.stop()}}),st,null,[[2,13,16,19],[23,34,37,40]])}var yt=ct(ut),gt=yt.right,mt=(yt.left,ct(dt).center,gt);function bt(t,n,e){t.prototype=n.prototype=e,e.constructor=t}function wt(t,n){var e=Object.create(t.prototype);for(var r in n)e[r]=n[r];return e}function xt(){}var Ot=.7,jt=1/Ot,Mt="\\s*([+-]?\\d+)\\s*",St="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",Et="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",At=/^#([0-9a-f]{3,8})$/,Ct=new RegExp("^rgb\\("+[Mt,Mt,Mt]+"\\)$"),kt=new RegExp("^rgb\\("+[Et,Et,Et]+"\\)$"),Tt=new RegExp("^rgba\\("+[Mt,Mt,Mt,St]+"\\)$"),Pt=new RegExp("^rgba\\("+[Et,Et,Et,St]+"\\)$"),_t=new RegExp("^hsl\\("+[St,Et,Et]+"\\)$"),Nt=new RegExp("^hsla\\("+[St,Et,Et,St]+"\\)$"),Dt={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function Lt(){return this.rgb().formatHex()}function Rt(){return this.rgb().formatRgb()}function It(t){var n,e;return t=(t+"").trim().toLowerCase(),(n=At.exec(t))?(e=n[1].length,n=parseInt(n[1],16),6===e?Ut(n):3===e?new qt(n>>8&15|n>>4&240,n>>4&15|240&n,(15&n)<<4|15&n,1):8===e?Ft(n>>24&255,n>>16&255,n>>8&255,(255&n)/255):4===e?Ft(n>>12&15|n>>8&240,n>>8&15|n>>4&240,n>>4&15|240&n,((15&n)<<4|15&n)/255):null):(n=Ct.exec(t))?new qt(n[1],n[2],n[3],1):(n=kt.exec(t))?new qt(255*n[1]/100,255*n[2]/100,255*n[3]/100,1):(n=Tt.exec(t))?Ft(n[1],n[2],n[3],n[4]):(n=Pt.exec(t))?Ft(255*n[1]/100,255*n[2]/100,255*n[3]/100,n[4]):(n=_t.exec(t))?Yt(n[1],n[2]/100,n[3]/100,1):(n=Nt.exec(t))?Yt(n[1],n[2]/100,n[3]/100,n[4]):Dt.hasOwnProperty(t)?Ut(Dt[t]):"transparent"===t?new qt(NaN,NaN,NaN,0):null}function Ut(t){return new qt(t>>16&255,t>>8&255,255&t,1)}function Ft(t,n,e,r){return r<=0&&(t=n=e=NaN),new qt(t,n,e,r)}function zt(t){return t instanceof xt||(t=It(t)),t?new qt((t=t.rgb()).r,t.g,t.b,t.opacity):new qt}function Bt(t,n,e,r){return 1===arguments.length?zt(t):new qt(t,n,e,null==r?1:r)}function qt(t,n,e,r){this.r=+t,this.g=+n,this.b=+e,this.opacity=+r}function Ht(){return"#"+Zt(this.r)+Zt(this.g)+Zt(this.b)}function Wt(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}function Zt(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function Yt(t,n,e,r){return r<=0?t=n=e=NaN:e<=0||e>=1?t=n=NaN:n<=0&&(t=NaN),new Gt(t,n,e,r)}function $t(t){if(t instanceof Gt)return new Gt(t.h,t.s,t.l,t.opacity);if(t instanceof xt||(t=It(t)),!t)return new Gt;if(t instanceof Gt)return t;var n=(t=t.rgb()).r/255,e=t.g/255,r=t.b/255,o=Math.min(n,e,r),i=Math.max(n,e,r),a=NaN,u=i-o,c=(i+o)/2;return u?(a=n===i?(e-r)/u+6*(e0&&c<1?0:a,new Gt(a,u,c,t.opacity)}function Gt(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Vt(t,n,e){return 255*(t<60?n+(e-n)*t/60:t<180?e:t<240?n+(e-n)*(240-t)/60:n)}function Xt(t,n,e,r,o){var i=t*t,a=i*t;return((1-3*t+3*i-a)*n+(4-6*i+3*a)*e+(1+3*t+3*i-3*a)*r+a*o)/6}bt(xt,It,{copy:function(t){return Object.assign(new this.constructor,this,t)},displayable:function(){return this.rgb().displayable()},hex:Lt,formatHex:Lt,formatHsl:function(){return $t(this).formatHsl()},formatRgb:Rt,toString:Rt}),bt(qt,Bt,wt(xt,{brighter:function(t){return t=null==t?jt:Math.pow(jt,t),new qt(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?Ot:Math.pow(Ot,t),new qt(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:Ht,formatHex:Ht,formatRgb:Wt,toString:Wt})),bt(Gt,(function(t,n,e,r){return 1===arguments.length?$t(t):new Gt(t,n,e,null==r?1:r)}),wt(xt,{brighter:function(t){return t=null==t?jt:Math.pow(jt,t),new Gt(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?Ot:Math.pow(Ot,t),new Gt(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),n=isNaN(t)||isNaN(this.s)?0:this.s,e=this.l,r=e+(e<.5?e:1-e)*n,o=2*e-r;return new qt(Vt(t>=240?t-240:t+120,o,r),Vt(t,o,r),Vt(t<120?t+240:t-120,o,r),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===t?")":", "+t+")")}}));var Kt=function(t){return function(){return t}};function Jt(t,n){return function(e){return t+e*n}}function Qt(t){return 1==(t=+t)?tn:function(n,e){return e-n?function(t,n,e){return t=Math.pow(t,e),n=Math.pow(n,e)-t,e=1/e,function(r){return Math.pow(t+r*n,e)}}(n,e,t):Kt(isNaN(n)?e:n)}}function tn(t,n){var e=n-t;return e?Jt(t,e):Kt(isNaN(t)?n:t)}var nn=function t(n){var e=Qt(n);function r(t,n){var r=e((t=Bt(t)).r,(n=Bt(n)).r),o=e(t.g,n.g),i=e(t.b,n.b),a=tn(t.opacity,n.opacity);return function(n){return t.r=r(n),t.g=o(n),t.b=i(n),t.opacity=a(n),t+""}}return r.gamma=t,r}(1);function en(t){return function(n){var e,r,o=n.length,i=new Array(o),a=new Array(o),u=new Array(o);for(e=0;e=1?(e=1,n-1):Math.floor(e*n),o=t[r],i=t[r+1],a=r>0?t[r-1]:2*o-i,u=ri&&(o=n.slice(i,o),u[a]?u[a]+=o:u[++a]=o),(e=e[0])===(r=r[0])?u[a]?u[a]+=r:u[++a]=r:(u[++a]=null,c.push({i:a,x:an(e,r)})),i=fn.lastIndex;return in&&(e=t,t=n,n=e),f=function(e){return Math.max(t,Math.min(n,e))}),r=c>2?bn:mn,o=i=null,s}function s(n){return null==n||isNaN(n=+n)?e:(o||(o=r(a.map(t),u,c)))(t(f(n)))}return s.invert=function(e){return f(n((i||(i=r(u,a.map(t),an)))(e)))},s.domain=function(t){return arguments.length?(a=Array.from(t,dn),l()):a.slice()},s.range=function(t){return arguments.length?(u=Array.from(t),l()):u.slice()},s.rangeRound=function(t){return u=Array.from(t),c=hn,l()},s.clamp=function(t){return arguments.length?(f=!!t||yn,l()):f!==yn},s.interpolate=function(t){return arguments.length?(c=t,l()):c},s.unknown=function(t){return arguments.length?(e=t,s):e},function(e,r){return t=e,n=r,l()}}function On(){return xn()(yn,yn)}var jn,Mn=e(39632),Sn=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function En(t){if(!(n=Sn.exec(t)))throw new Error("invalid format: "+t);var n;return new An({fill:n[1],align:n[2],sign:n[3],symbol:n[4],zero:n[5],width:n[6],comma:n[7],precision:n[8]&&n[8].slice(1),trim:n[9],type:n[10]})}function An(t){this.fill=void 0===t.fill?" ":t.fill+"",this.align=void 0===t.align?">":t.align+"",this.sign=void 0===t.sign?"-":t.sign+"",this.symbol=void 0===t.symbol?"":t.symbol+"",this.zero=!!t.zero,this.width=void 0===t.width?void 0:+t.width,this.comma=!!t.comma,this.precision=void 0===t.precision?void 0:+t.precision,this.trim=!!t.trim,this.type=void 0===t.type?"":t.type+""}function Cn(t,n){if((e=(t=n?t.toExponential(n-1):t.toExponential()).indexOf("e"))<0)return null;var e,r=t.slice(0,e);return[r.length>1?r[0]+r.slice(2):r,+t.slice(e+1)]}function kn(t){return(t=Cn(Math.abs(t)))?t[1]:NaN}function Tn(t,n){var e=Cn(t,n);if(!e)return t+"";var r=e[0],o=e[1];return o<0?"0."+new Array(-o).join("0")+r:r.length>o+1?r.slice(0,o+1)+"."+r.slice(o+1):r+new Array(o-r.length+2).join("0")}En.prototype=An.prototype,An.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var Pn={"%":function(t,n){return(100*t).toFixed(n)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:function(t){return Math.abs(t=Math.round(t))>=1e21?t.toLocaleString("en").replace(/,/g,""):t.toString(10)},e:function(t,n){return t.toExponential(n)},f:function(t,n){return t.toFixed(n)},g:function(t,n){return t.toPrecision(n)},o:function(t){return Math.round(t).toString(8)},p:function(t,n){return Tn(100*t,n)},r:Tn,s:function(t,n){var e=Cn(t,n);if(!e)return t+"";var r=e[0],o=e[1],i=o-(jn=3*Math.max(-8,Math.min(8,Math.floor(o/3))))+1,a=r.length;return i===a?r:i>a?r+new Array(i-a+1).join("0"):i>0?r.slice(0,i)+"."+r.slice(i):"0."+new Array(1-i).join("0")+Cn(t,Math.max(0,n+i-1))[0]},X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}};function _n(t){return t}var Nn,Dn,Ln,Rn=Array.prototype.map,In=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function Un(t){var n,e,r=void 0===t.grouping||void 0===t.thousands?_n:(n=Rn.call(t.grouping,Number),e=t.thousands+"",function(t,r){for(var o=t.length,i=[],a=0,u=n[0],c=0;o>0&&u>0&&(c+u+1>r&&(u=Math.max(1,r-c)),i.push(t.substring(o-=u,o+u)),!((c+=u+1)>r));)u=n[a=(a+1)%n.length];return i.reverse().join(e)}),o=void 0===t.currency?"":t.currency[0]+"",i=void 0===t.currency?"":t.currency[1]+"",a=void 0===t.decimal?".":t.decimal+"",u=void 0===t.numerals?_n:function(t){return function(n){return n.replace(/[0-9]/g,(function(n){return t[+n]}))}}(Rn.call(t.numerals,String)),c=void 0===t.percent?"%":t.percent+"",f=void 0===t.minus?"−":t.minus+"",l=void 0===t.nan?"NaN":t.nan+"";function s(t){var n=(t=En(t)).fill,e=t.align,s=t.sign,p=t.symbol,h=t.zero,d=t.width,v=t.comma,y=t.precision,g=t.trim,m=t.type;"n"===m?(v=!0,m="g"):Pn[m]||(void 0===y&&(y=12),g=!0,m="g"),(h||"0"===n&&"="===e)&&(h=!0,n="0",e="=");var b="$"===p?o:"#"===p&&/[boxX]/.test(m)?"0"+m.toLowerCase():"",w="$"===p?i:/[%p]/.test(m)?c:"",x=Pn[m],O=/[defgprs%]/.test(m);function j(t){var o,i,c,p=b,j=w;if("c"===m)j=x(t)+j,t="";else{var M=(t=+t)<0||1/t<0;if(t=isNaN(t)?l:x(Math.abs(t),y),g&&(t=function(t){t:for(var n,e=t.length,r=1,o=-1;r0&&(o=0)}return o>0?t.slice(0,o)+t.slice(n+1):t}(t)),M&&0==+t&&"+"!==s&&(M=!1),p=(M?"("===s?s:f:"-"===s||"("===s?"":s)+p,j=("s"===m?In[8+jn/3]:"")+j+(M&&"("===s?")":""),O)for(o=-1,i=t.length;++o(c=t.charCodeAt(o))||c>57){j=(46===c?a+t.slice(o+1):t.slice(o))+j,t=t.slice(0,o);break}}v&&!h&&(t=r(t,1/0));var S=p.length+t.length+j.length,E=S>1)+p+t+j+E.slice(S);break;default:t=E+p+t+j}return u(t)}return y=void 0===y?6:/[gprs]/.test(m)?Math.max(1,Math.min(21,y)):Math.max(0,Math.min(20,y)),j.toString=function(){return t+""},j}return{format:s,formatPrefix:function(t,n){var e=s(((t=En(t)).type="f",t)),r=3*Math.max(-8,Math.min(8,Math.floor(kn(n)/3))),o=Math.pow(10,-r),i=In[8+r/3];return function(t){return e(o*t)+i}}}}function Fn(t,n,e,r){var o,i=at(t,n,e);switch((r=En(null==r?",f":r)).type){case"s":var a=Math.max(Math.abs(t),Math.abs(n));return null!=r.precision||isNaN(o=function(t,n){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(kn(n)/3)))-kn(Math.abs(t)))}(i,a))||(r.precision=o),Ln(r,a);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(o=function(t,n){return t=Math.abs(t),n=Math.abs(n)-t,Math.max(0,kn(n)-kn(t))+1}(i,Math.max(Math.abs(t),Math.abs(n))))||(r.precision=o-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(o=function(t){return Math.max(0,-kn(Math.abs(t)))}(i))||(r.precision=o-2*("%"===r.type))}return Dn(r)}function zn(t){var n=t.domain;return t.ticks=function(t){var e=n();return ot(e[0],e[e.length-1],null==t?10:t)},t.tickFormat=function(t,e){var r=n();return Fn(r[0],r[r.length-1],null==t?10:t,e)},t.nice=function(e){null==e&&(e=10);var r,o,i=n(),a=0,u=i.length-1,c=i[a],f=i[u],l=10;for(f0;){if((o=it(c,f,e))===r)return i[a]=c,i[u]=f,n(i);if(o>0)c=Math.floor(c/o)*o,f=Math.ceil(f/o)*o;else{if(!(o<0))break;c=Math.ceil(c*o)/o,f=Math.floor(f*o)/o}r=o}return t},t}function Bn(){var t=On();return t.copy=function(){return wn(t,Bn())},Mn.o.apply(t,arguments),zn(t)}function qn(t){var n;function e(t){return null==t||isNaN(t=+t)?n:t}return e.invert=e,e.domain=e.range=function(n){return arguments.length?(t=Array.from(n,dn),e):t.slice()},e.unknown=function(t){return arguments.length?(n=t,e):n},e.copy=function(){return qn(t).unknown(n)},t=arguments.length?Array.from(t,dn):[0,1],zn(e)}function Hn(t,n){var e,r=0,o=(t=t.slice()).length-1,i=t[r],a=t[o];return a0){for(;p<=h;++p)for(l=1,f=e(p);lc)break;v.push(s)}}else for(;p<=h;++p)for(l=i-1,f=e(p);l>=1;--l)if(!((s=f*l)c)break;v.push(s)}2*v.length=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){e=e.call(t)},n:function(){var t=e.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==e.return||e.return()}finally{if(u)throw i}}}}function he(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);e=i)&&(e=i)}}catch(l){o.e(l)}finally{o.f()}}else{var a,u=-1,c=pe(t);try{for(c.s();!(a=c.n()).done;){var f=a.value;null!=(f=n(f,++u,t))&&(e=f)&&(e=f)}}catch(l){c.e(l)}finally{c.f()}}return e}function ve(t,n){var e="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!e){if(Array.isArray(t)||(e=function(t,n){if(!t)return;if("string"==typeof t)return ye(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);"Object"===e&&t.constructor&&(e=t.constructor.name);if("Map"===e||"Set"===e)return Array.from(t);if("Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return ye(t,n)}(t))||n&&t&&"number"==typeof t.length){e&&(t=e);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){e=e.call(t)},n:function(){var t=e.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==e.return||e.return()}finally{if(u)throw i}}}}function ye(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);ei||void 0===e&&i>=i)&&(e=i)}}catch(l){o.e(l)}finally{o.f()}}else{var a,u=-1,c=ve(t);try{for(c.s();!(a=c.n()).done;){var f=a.value;null!=(f=n(f,++u,t))&&(e>f||void 0===e&&f>=f)&&(e=f)}}catch(l){c.e(l)}finally{c.f()}}return e}function me(t,n){for(var e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:t.length-1,o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:ut;r>e;){if(r-e>600){var i=r-e+1,a=n-e+1,u=Math.log(i),c=.5*Math.exp(2*u/3),f=.5*Math.sqrt(u*c*(i-c)/i)*(a-i/2<0?-1:1),l=Math.max(e,Math.floor(n-a*c/i+f)),s=Math.min(r,Math.floor(n+(i-a)*c/i+f));me(t,n,l,s,o)}var p=t[n],h=e,d=r;for(be(t,e,n),o(t[r],p)>0&&be(t,e,r);h0;)--d}0===o(t[e],p)?be(t,e,d):be(t,++d,r),d<=n&&(e=d+1),n<=d&&(r=d-1)}return t}function be(t,n,e){var r=t[n];t[n]=t[e],t[e]=r}function we(t,n,e){if(r=(t=Float64Array.from(vt(t,e))).length){if((n=+n)<=0||r<2)return ge(t);if(n>=1)return de(t);var r,o=(r-1)*n,i=Math.floor(o),a=de(me(t,i).subarray(0,i+1));return a+(ge(t.subarray(i+1))-a)*(o-i)}}function xe(t,n){var e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:dt;if(r=t.length){if((n=+n)<=0||r<2)return+e(t[0],0,t);if(n>=1)return+e(t[r-1],r-1,t);var r,o=(r-1)*n,i=Math.floor(o),a=+e(t[i],i,t),u=+e(t[i+1],i+1,t);return a+(u-a)*(o-i)}}function Oe(t,n){var e="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!e){if(Array.isArray(t)||(e=function(t,n){if(!t)return;if("string"==typeof t)return je(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);"Object"===e&&t.constructor&&(e=t.constructor.name);if("Map"===e||"Set"===e)return Array.from(t);if("Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return je(t,n)}(t))||n&&t&&"number"==typeof t.length){e&&(t=e);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){e=e.call(t)},n:function(){var t=e.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==e.return||e.return()}finally{if(u)throw i}}}}function je(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);e0?r[o-1]:n[0],o=r?[o[r-1],e]:[o[a-1],o[a]]},a.unknown=function(n){return arguments.length?(t=n,a):a},a.thresholds=function(){return o.slice()},a.copy=function(){return Ee().domain([n,e]).range(i).unknown(t)},Mn.o.apply(zn(a),arguments)}function Ae(){var t,n=[.5],e=[0,1],r=1;function o(o){return null!=o&&o<=o?e[mt(n,o,0,r)]:t}return o.domain=function(t){return arguments.length?(n=Array.from(t),r=Math.min(n.length,e.length-1),o):n.slice()},o.range=function(t){return arguments.length?(e=Array.from(t),r=Math.min(n.length,e.length-1),o):e.slice()},o.invertExtent=function(t){var r=e.indexOf(t);return[n[r-1],n[r]]},o.unknown=function(n){return arguments.length?(t=n,o):t},o.copy=function(){return Ae().domain(n).range(e).unknown(t)},Mn.o.apply(o,arguments)}var Ce=1e3,ke=6e4,Te=36e5,Pe=864e5,_e=6048e5,Ne=2592e6,De=31536e6,Le=new Date,Re=new Date;function Ie(t,n,e,r){function o(n){return t(n=0===arguments.length?new Date:new Date(+n)),n}return o.floor=function(n){return t(n=new Date(+n)),n},o.ceil=function(e){return t(e=new Date(e-1)),n(e,1),t(e),e},o.round=function(t){var n=o(t),e=o.ceil(t);return t-n0))return u;do{u.push(a=new Date(+e)),n(e,i),t(e)}while(a=n)for(;t(n),!e(n);)n.setTime(n-1)}),(function(t,r){if(t>=t)if(r<0)for(;++r<=0;)for(;n(t,-1),!e(t););else for(;--r>=0;)for(;n(t,1),!e(t););}))},e&&(o.count=function(n,r){return Le.setTime(+n),Re.setTime(+r),t(Le),t(Re),Math.floor(e(Le,Re))},o.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?o.filter(r?function(n){return r(n)%t==0}:function(n){return o.count(0,n)%t==0}):o:null}),o}var Ue=Ie((function(){}),(function(t,n){t.setTime(+t+n)}),(function(t,n){return n-t}));Ue.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?Ie((function(n){n.setTime(Math.floor(n/t)*t)}),(function(n,e){n.setTime(+n+e*t)}),(function(n,e){return(e-n)/t})):Ue:null};var Fe=Ue,ze=(Ue.range,Ie((function(t){t.setTime(t-t.getMilliseconds())}),(function(t,n){t.setTime(+t+n*Ce)}),(function(t,n){return(n-t)/Ce}),(function(t){return t.getUTCSeconds()}))),Be=ze,qe=(ze.range,Ie((function(t){t.setTime(t-t.getMilliseconds()-t.getSeconds()*Ce)}),(function(t,n){t.setTime(+t+n*ke)}),(function(t,n){return(n-t)/ke}),(function(t){return t.getMinutes()}))),He=qe,We=(qe.range,Ie((function(t){t.setTime(t-t.getMilliseconds()-t.getSeconds()*Ce-t.getMinutes()*ke)}),(function(t,n){t.setTime(+t+n*Te)}),(function(t,n){return(n-t)/Te}),(function(t){return t.getHours()}))),Ze=We,Ye=(We.range,Ie((function(t){return t.setHours(0,0,0,0)}),(function(t,n){return t.setDate(t.getDate()+n)}),(function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*ke)/Pe}),(function(t){return t.getDate()-1}))),$e=Ye;Ye.range;function Ge(t){return Ie((function(n){n.setDate(n.getDate()-(n.getDay()+7-t)%7),n.setHours(0,0,0,0)}),(function(t,n){t.setDate(t.getDate()+7*n)}),(function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*ke)/_e}))}var Ve=Ge(0),Xe=Ge(1),Ke=Ge(2),Je=Ge(3),Qe=Ge(4),tr=Ge(5),nr=Ge(6),er=(Ve.range,Xe.range,Ke.range,Je.range,Qe.range,tr.range,nr.range,Ie((function(t){t.setDate(1),t.setHours(0,0,0,0)}),(function(t,n){t.setMonth(t.getMonth()+n)}),(function(t,n){return n.getMonth()-t.getMonth()+12*(n.getFullYear()-t.getFullYear())}),(function(t){return t.getMonth()}))),rr=er,or=(er.range,Ie((function(t){t.setMonth(0,1),t.setHours(0,0,0,0)}),(function(t,n){t.setFullYear(t.getFullYear()+n)}),(function(t,n){return n.getFullYear()-t.getFullYear()}),(function(t){return t.getFullYear()})));or.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Ie((function(n){n.setFullYear(Math.floor(n.getFullYear()/t)*t),n.setMonth(0,1),n.setHours(0,0,0,0)}),(function(n,e){n.setFullYear(n.getFullYear()+e*t)})):null};var ir=or,ar=(or.range,Ie((function(t){t.setUTCSeconds(0,0)}),(function(t,n){t.setTime(+t+n*ke)}),(function(t,n){return(n-t)/ke}),(function(t){return t.getUTCMinutes()}))),ur=ar,cr=(ar.range,Ie((function(t){t.setUTCMinutes(0,0,0)}),(function(t,n){t.setTime(+t+n*Te)}),(function(t,n){return(n-t)/Te}),(function(t){return t.getUTCHours()}))),fr=cr,lr=(cr.range,Ie((function(t){t.setUTCHours(0,0,0,0)}),(function(t,n){t.setUTCDate(t.getUTCDate()+n)}),(function(t,n){return(n-t)/Pe}),(function(t){return t.getUTCDate()-1}))),sr=lr;lr.range;function pr(t){return Ie((function(n){n.setUTCDate(n.getUTCDate()-(n.getUTCDay()+7-t)%7),n.setUTCHours(0,0,0,0)}),(function(t,n){t.setUTCDate(t.getUTCDate()+7*n)}),(function(t,n){return(n-t)/_e}))}var hr=pr(0),dr=pr(1),vr=pr(2),yr=pr(3),gr=pr(4),mr=pr(5),br=pr(6),wr=(hr.range,dr.range,vr.range,yr.range,gr.range,mr.range,br.range,Ie((function(t){t.setUTCDate(1),t.setUTCHours(0,0,0,0)}),(function(t,n){t.setUTCMonth(t.getUTCMonth()+n)}),(function(t,n){return n.getUTCMonth()-t.getUTCMonth()+12*(n.getUTCFullYear()-t.getUTCFullYear())}),(function(t){return t.getUTCMonth()}))),xr=wr,Or=(wr.range,Ie((function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)}),(function(t,n){t.setUTCFullYear(t.getUTCFullYear()+n)}),(function(t,n){return n.getUTCFullYear()-t.getUTCFullYear()}),(function(t){return t.getUTCFullYear()})));Or.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Ie((function(n){n.setUTCFullYear(Math.floor(n.getUTCFullYear()/t)*t),n.setUTCMonth(0,1),n.setUTCHours(0,0,0,0)}),(function(n,e){n.setUTCFullYear(n.getUTCFullYear()+e*t)})):null};var jr=Or;Or.range;function Mr(t,n,e,r,o,i){var a=[[Be,1,Ce],[Be,5,5e3],[Be,15,15e3],[Be,30,3e4],[i,1,ke],[i,5,3e5],[i,15,9e5],[i,30,18e5],[o,1,Te],[o,3,108e5],[o,6,216e5],[o,12,432e5],[r,1,Pe],[r,2,1728e5],[e,1,_e],[n,1,Ne],[n,3,7776e6],[t,1,De]];function u(n,e,r){var o=Math.abs(e-n)/r,i=ct((function(t){return(0,Se.Z)(t,3)[2]})).right(a,o);if(i===a.length)return t.every(at(n/De,e/De,r));if(0===i)return Fe.every(Math.max(at(n,e,r),1));var u=(0,Se.Z)(a[o/a[i-1][2]68?1900:2e3),e+r[0].length):-1}function to(t,n,e){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(n.slice(e,e+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),e+r[0].length):-1}function no(t,n,e){var r=zr.exec(n.slice(e,e+1));return r?(t.q=3*r[0]-3,e+r[0].length):-1}function eo(t,n,e){var r=zr.exec(n.slice(e,e+2));return r?(t.m=r[0]-1,e+r[0].length):-1}function ro(t,n,e){var r=zr.exec(n.slice(e,e+2));return r?(t.d=+r[0],e+r[0].length):-1}function oo(t,n,e){var r=zr.exec(n.slice(e,e+3));return r?(t.m=0,t.d=+r[0],e+r[0].length):-1}function io(t,n,e){var r=zr.exec(n.slice(e,e+2));return r?(t.H=+r[0],e+r[0].length):-1}function ao(t,n,e){var r=zr.exec(n.slice(e,e+2));return r?(t.M=+r[0],e+r[0].length):-1}function uo(t,n,e){var r=zr.exec(n.slice(e,e+2));return r?(t.S=+r[0],e+r[0].length):-1}function co(t,n,e){var r=zr.exec(n.slice(e,e+3));return r?(t.L=+r[0],e+r[0].length):-1}function fo(t,n,e){var r=zr.exec(n.slice(e,e+6));return r?(t.L=Math.floor(r[0]/1e3),e+r[0].length):-1}function lo(t,n,e){var r=Br.exec(n.slice(e,e+1));return r?e+r[0].length:-1}function so(t,n,e){var r=zr.exec(n.slice(e));return r?(t.Q=+r[0],e+r[0].length):-1}function po(t,n,e){var r=zr.exec(n.slice(e));return r?(t.s=+r[0],e+r[0].length):-1}function ho(t,n){return Hr(t.getDate(),n,2)}function vo(t,n){return Hr(t.getHours(),n,2)}function yo(t,n){return Hr(t.getHours()%12||12,n,2)}function go(t,n){return Hr(1+$e.count(ir(t),t),n,3)}function mo(t,n){return Hr(t.getMilliseconds(),n,3)}function bo(t,n){return mo(t,n)+"000"}function wo(t,n){return Hr(t.getMonth()+1,n,2)}function xo(t,n){return Hr(t.getMinutes(),n,2)}function Oo(t,n){return Hr(t.getSeconds(),n,2)}function jo(t){var n=t.getDay();return 0===n?7:n}function Mo(t,n){return Hr(Ve.count(ir(t)-1,t),n,2)}function So(t){var n=t.getDay();return n>=4||0===n?Qe(t):Qe.ceil(t)}function Eo(t,n){return t=So(t),Hr(Qe.count(ir(t),t)+(4===ir(t).getDay()),n,2)}function Ao(t){return t.getDay()}function Co(t,n){return Hr(Xe.count(ir(t)-1,t),n,2)}function ko(t,n){return Hr(t.getFullYear()%100,n,2)}function To(t,n){return Hr((t=So(t)).getFullYear()%100,n,2)}function Po(t,n){return Hr(t.getFullYear()%1e4,n,4)}function _o(t,n){var e=t.getDay();return Hr((t=e>=4||0===e?Qe(t):Qe.ceil(t)).getFullYear()%1e4,n,4)}function No(t){var n=t.getTimezoneOffset();return(n>0?"-":(n*=-1,"+"))+Hr(n/60|0,"0",2)+Hr(n%60,"0",2)}function Do(t,n){return Hr(t.getUTCDate(),n,2)}function Lo(t,n){return Hr(t.getUTCHours(),n,2)}function Ro(t,n){return Hr(t.getUTCHours()%12||12,n,2)}function Io(t,n){return Hr(1+sr.count(jr(t),t),n,3)}function Uo(t,n){return Hr(t.getUTCMilliseconds(),n,3)}function Fo(t,n){return Uo(t,n)+"000"}function zo(t,n){return Hr(t.getUTCMonth()+1,n,2)}function Bo(t,n){return Hr(t.getUTCMinutes(),n,2)}function qo(t,n){return Hr(t.getUTCSeconds(),n,2)}function Ho(t){var n=t.getUTCDay();return 0===n?7:n}function Wo(t,n){return Hr(hr.count(jr(t)-1,t),n,2)}function Zo(t){var n=t.getUTCDay();return n>=4||0===n?gr(t):gr.ceil(t)}function Yo(t,n){return t=Zo(t),Hr(gr.count(jr(t),t)+(4===jr(t).getUTCDay()),n,2)}function $o(t){return t.getUTCDay()}function Go(t,n){return Hr(dr.count(jr(t)-1,t),n,2)}function Vo(t,n){return Hr(t.getUTCFullYear()%100,n,2)}function Xo(t,n){return Hr((t=Zo(t)).getUTCFullYear()%100,n,2)}function Ko(t,n){return Hr(t.getUTCFullYear()%1e4,n,4)}function Jo(t,n){var e=t.getUTCDay();return Hr((t=e>=4||0===e?gr(t):gr.ceil(t)).getUTCFullYear()%1e4,n,4)}function Qo(){return"+0000"}function ti(){return"%"}function ni(t){return+t}function ei(t){return Math.floor(+t/1e3)}function ri(t){return new Date(t)}function oi(t){return t instanceof Date?+t:+new Date(+t)}function ii(t,n,e,r,o,i,a,u,c,f){var l=On(),s=l.invert,p=l.domain,h=f(".%L"),d=f(":%S"),v=f("%I:%M"),y=f("%I %p"),g=f("%a %d"),m=f("%b %d"),b=f("%B"),w=f("%Y");function x(t){return(c(t)=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){e=e.call(t)},n:function(){var t=e.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==e.return||e.return()}finally{if(u)throw i}}}}function yi(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);e1)for(var e,r,o,i=1,a=t[n[0]],u=a.length;i=12)]},q:function(t){return 1+~~(t.getMonth()/3)},Q:ni,s:ei,S:Oo,u:jo,U:Mo,V:Eo,w:Ao,W:Co,x:null,X:null,y:ko,Y:Po,Z:No,"%":ti},w={a:function(t){return a[t.getUTCDay()]},A:function(t){return i[t.getUTCDay()]},b:function(t){return c[t.getUTCMonth()]},B:function(t){return u[t.getUTCMonth()]},c:null,d:Do,e:Do,f:Fo,g:Xo,G:Jo,H:Lo,I:Ro,j:Io,L:Uo,m:zo,M:Bo,p:function(t){return o[+(t.getUTCHours()>=12)]},q:function(t){return 1+~~(t.getUTCMonth()/3)},Q:ni,s:ei,S:qo,u:Ho,U:Wo,V:Yo,w:$o,W:Go,x:null,X:null,y:Vo,Y:Ko,Z:Qo,"%":ti},x={a:function(t,n,e){var r=h.exec(n.slice(e));return r?(t.w=d.get(r[0].toLowerCase()),e+r[0].length):-1},A:function(t,n,e){var r=s.exec(n.slice(e));return r?(t.w=p.get(r[0].toLowerCase()),e+r[0].length):-1},b:function(t,n,e){var r=g.exec(n.slice(e));return r?(t.m=m.get(r[0].toLowerCase()),e+r[0].length):-1},B:function(t,n,e){var r=v.exec(n.slice(e));return r?(t.m=y.get(r[0].toLowerCase()),e+r[0].length):-1},c:function(t,e,r){return M(t,n,e,r)},d:ro,e:ro,f:fo,g:Qr,G:Jr,H:io,I:io,j:oo,L:co,m:eo,M:ao,p:function(t,n,e){var r=f.exec(n.slice(e));return r?(t.p=l.get(r[0].toLowerCase()),e+r[0].length):-1},q:no,Q:so,s:po,S:uo,u:Gr,U:Vr,V:Xr,w:$r,W:Kr,x:function(t,n,r){return M(t,e,n,r)},X:function(t,n,e){return M(t,r,n,e)},y:Qr,Y:Jr,Z:to,"%":lo};function O(t,n){return function(e){var r,o,i,a=[],u=-1,c=0,f=t.length;for(e instanceof Date||(e=new Date(+e));++u53)return null;"w"in i||(i.w=1),"Z"in i?(o=(r=Dr(Lr(i.y,0,1))).getUTCDay(),r=o>4||0===o?dr.ceil(r):dr(r),r=sr.offset(r,7*(i.V-1)),i.y=r.getUTCFullYear(),i.m=r.getUTCMonth(),i.d=r.getUTCDate()+(i.w+6)%7):(o=(r=Nr(Lr(i.y,0,1))).getDay(),r=o>4||0===o?Xe.ceil(r):Xe(r),r=$e.offset(r,7*(i.V-1)),i.y=r.getFullYear(),i.m=r.getMonth(),i.d=r.getDate()+(i.w+6)%7)}else("W"in i||"U"in i)&&("w"in i||(i.w="u"in i?i.u%7:"W"in i?1:0),o="Z"in i?Dr(Lr(i.y,0,1)).getUTCDay():Nr(Lr(i.y,0,1)).getDay(),i.m=0,i.d="W"in i?(i.w+6)%7+7*i.W-(o+5)%7:i.w+7*i.U-(o+6)%7);return"Z"in i?(i.H+=i.Z/100|0,i.M+=i.Z%100,Dr(i)):Nr(i)}}function M(t,n,e,r){for(var o,i,a=0,u=n.length,c=e.length;a=c)return-1;if(37===(o=n.charCodeAt(a++))){if(o=n.charAt(a++),!(i=x[o in Fr?n.charAt(a++):o])||(r=i(t,e,r))<0)return-1}else if(o!=e.charCodeAt(r++))return-1}return r}return b.x=O(e,b),b.X=O(r,b),b.c=O(n,b),w.x=O(e,w),w.X=O(r,w),w.c=O(n,w),{format:function(t){var n=O(t+="",b);return n.toString=function(){return t},n},parse:function(t){var n=j(t+="",!1);return n.toString=function(){return t},n},utcFormat:function(t){var n=O(t+="",w);return n.toString=function(){return t},n},utcParse:function(t){var n=j(t+="",!0);return n.toString=function(){return t},n}}}(t),Ir=Rr.format,Rr.parse,Ur=Rr.utcFormat,Rr.utcParse}({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});var Ei=e(73759),Ai=e(21235);function Ci(t){for(var n=t.length,e=new Array(n);--n>=0;)e[n]=n;return e}function ki(t,n){var e="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!e){if(Array.isArray(t)||(e=function(t,n){if(!t)return;if("string"==typeof t)return Ti(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);"Object"===e&&t.constructor&&(e=t.constructor.name);if("Map"===e||"Set"===e)return Array.from(t);if("Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return Ti(t,n)}(t))||n&&t&&"number"==typeof t.length){e&&(t=e);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,u=!1;return{s:function(){e=e.call(t)},n:function(){var t=e.next();return a=t.done,t},e:function(t){u=!0,i=t},f:function(){try{a||null==e.return||e.return()}finally{if(u)throw i}}}}function Ti(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);et.length)&&(n=t.length);for(var e=0,r=new Array(n);e1&&void 0!==arguments[1]?arguments[1]:[],r=arguments.length>2?arguments[2]:void 0,o=arguments.length>3?arguments[3]:void 0,i=-1,a=null!==(n=null==e?void 0:e.length)&&void 0!==n?n:0;if(a>1){if(o&&"angleAxis"===o.axisType&&Math.abs(Math.abs(o.range[1]-o.range[0])-360)<=1e-6)for(var u=o.range,c=0;c0?r[c-1].coordinate:r[a-1].coordinate,l=r[c].coordinate,s=c>=a-1?r[0].coordinate:r[c+1].coordinate,p=void 0;if((0,Ni.uY)(l-f)!==(0,Ni.uY)(s-l)){var h=[];if((0,Ni.uY)(s-l)===(0,Ni.uY)(u[1]-u[0])){p=s;var d=l+u[1]-u[0];h[0]=Math.min(d,(d+f)/2),h[1]=Math.max(d,(d+f)/2)}else{p=f;var v=s+u[1]-u[0];h[0]=Math.min(l,(v+l)/2),h[1]=Math.max(l,(v+l)/2)}var y=[Math.min(l,(p+l)/2),Math.max(l,(p+l)/2)];if(t>y[0]&&t<=y[1]||t>=h[0]&&t<=h[1]){i=r[c].index;break}}else{var g=Math.min(f,s),m=Math.max(f,s);if(t>(g+l)/2&&t<=(m+l)/2){i=r[c].index;break}}}else for(var b=0;b0&&b(e[b].coordinate+e[b-1].coordinate)/2&&t<=(e[b].coordinate+e[b+1].coordinate)/2||b===a-1&&t>(e[b].coordinate+e[b-1].coordinate)/2){i=e[b].index;break}}else i=0;return i},Zi=function(t){var n,e=t.type.displayName,r=t.props,o=r.stroke,i=r.fill;switch(e){case"Line":n=o;break;case"Area":case"Radar":n=o&&"none"!==o?o:i;break;default:n=i}return n},Yi=function(t){var n,e=t.children,r=t.formattedGraphicalItems,o=t.legendWidth,i=t.legendContent,a=(0,Li.sP)(e,Di.D.displayName);return a?(n=a.props&&a.props.payload?a.props&&a.props.payload:"children"===i?(r||[]).reduce((function(t,n){var e=n.item,r=n.props,o=r.sectors||r.data||[];return t.concat(o.map((function(t){return{type:a.props.iconType||e.props.legendType,value:t.name,color:t.fill,payload:t}})))}),[]):(r||[]).map((function(t){var n=t.item,e=n.props,r=e.dataKey,o=e.name,i=e.legendType;return{inactive:e.hide,dataKey:r,type:a.props.iconType||i||"square",color:Zi(n),value:o||r,payload:n.props}})),zi(zi(zi({},a.props),Di.D.getWithHeight(a,o)),{},{payload:n,item:a})):null},$i=function(t){var n=t.barSize,e=t.stackGroups,r=void 0===e?{}:e;if(!r)return{};for(var o={},i=Object.keys(r),a=0,u=i.length;a=0}));if(v&&v.length){var y=v[0].props.barSize,g=v[0].props[d];o[g]||(o[g]=[]),o[g].push({item:v[0],stackList:v.slice(1),barSize:A()(y)?n:y})}}return o},Gi=function(t){var n=t.barGap,e=t.barCategoryGap,r=t.bandSize,o=t.sizeList,i=void 0===o?[]:o,a=t.maxBarSize,u=i.length;if(u<1)return null;var c,f=(0,Ni.h1)(n,r,0,!0);if(i[0].barSize===+i[0].barSize){var l=!1,s=r/u,p=i.reduce((function(t,n){return t+n.barSize||0}),0);(p+=(u-1)*f)>=r&&(p-=(u-1)*f,f=0),p>=r&&s>0&&(l=!0,p=u*(s*=.9));var h={offset:((r-p)/2>>0)-f,size:0};c=i.reduce((function(t,n){var e=[].concat(Ii(t),[{item:n.item,position:{offset:h.offset+h.size+f,size:l?s:n.barSize}}]);return h=e[e.length-1].position,n.stackList&&n.stackList.length&&n.stackList.forEach((function(t){e.push({item:t,position:h})})),e}),[])}else{var d=(0,Ni.h1)(e,r,0,!0);r-2*d-(u-1)*f<=0&&(f=0);var v=(r-2*d-(u-1)*f)/u;v>1&&(v>>=0);var y=a===+a?Math.min(v,a):v;c=i.reduce((function(t,n,e){var r=[].concat(Ii(t),[{item:n.item,position:{offset:d+(v+f)*e+(v-y)/2,size:y}}]);return n.stackList&&n.stackList.length&&n.stackList.forEach((function(t){r.push({item:t,position:r[r.length-1].position})})),r}),[])}return c},Vi=function(t,n,e,r){var o=e.children,i=e.width,a=e.margin,u=i-(a.left||0)-(a.right||0),c=Yi({children:o,legendWidth:u}),f=t;if(c){var l=r||{},s=c.align,p=c.verticalAlign,h=c.layout;("vertical"===h||"horizontal"===h&&"center"===p)&&(0,Ni.hj)(t[s])&&(f=zi(zi({},t),{},Bi({},s,f[s]+(l.width||0)))),("horizontal"===h||"vertical"===h&&"center"===s)&&(0,Ni.hj)(t[p])&&(f=zi(zi({},t),{},Bi({},p,f[p]+(l.height||0))))}return f},Xi=function(t,n,e,r){var o=n.props.children,i=(0,Li.NN)(o,"ErrorBar").filter((function(t){var n=t.props.direction;return!(!A()(n)&&!A()(r))||r.indexOf(n)>=0}));if(i&&i.length){var a=i.map((function(t){return t.props.dataKey}));return t.reduce((function(t,n){var r=qi(n,e,0),o=v()(r)?[b()(r),g()(r)]:[r,r],i=a.reduce((function(t,e){var r=qi(n,e,0),i=o[0]-Math.abs(v()(r)?r[0]:r),a=o[1]+Math.abs(v()(r)?r[1]:r);return[Math.min(i,t[0]),Math.max(a,t[1])]}),[1/0,-1/0]);return[Math.min(i[0],t[0]),Math.max(i[1],t[1])]}),[1/0,-1/0])}return null},Ki=function(t,n,e,r){var o=n.map((function(n){return Xi(t,n,e,r)})).filter((function(t){return!A()(t)}));return o&&o.length?o.reduce((function(t,n){return[Math.min(t[0],n[0]),Math.max(t[1],n[1])]}),[1/0,-1/0]):null},Ji=function(t,n,e,r){var o=n.map((function(n){var o=n.props.dataKey;return"number"===e&&o&&Xi(t,n,o)||Hi(t,o,e,r)}));if("number"===e)return o.reduce((function(t,n){return[Math.min(t[0],n[0]),Math.max(t[1],n[1])]}),[1/0,-1/0]);var i={};return o.reduce((function(t,n){for(var e=0,r=n.length;e=0||n.indexOf("AreaChart")>=0||n.indexOf("ComposedChart")>=0&&!e)?{scale:tt.x(),realScaleType:"point"}:"category"===i?{scale:tt.Z(),realScaleType:"band"}:{scale:Bn(),realScaleType:"linear"};if(h()(o)){var c="scale".concat(s()(o));return{scale:(r[c]||tt.x)(),realScaleType:r[c]?c:"point"}}return j()(o)?{scale:o}:{scale:tt.x(),realScaleType:"point"}},oa=1e-4,ia=function(t){var n=t.domain();if(n&&!(n.length<=2)){var e=n.length,r=t.range(),o=Math.min(r[0],r[1])-oa,i=Math.max(r[0],r[1])+oa,a=t(n[0]),u=t(n[e-1]);(ai||ui)&&t.domain([n[0],n[e-1]])}},aa=function(t,n){if(!t)return null;for(var e=0,r=t.length;er)&&(o[1]=r),o[0]>r&&(o[0]=r),o[1]=0?(t[a][e][0]=o,t[a][e][1]=o+u,o=t[a][e][1]):(t[a][e][0]=i,t[a][e][1]=i+u,i=t[a][e][1])}},expand:function(t,n){if((r=t.length)>0){for(var e,r,o,i=0,a=t[0].length;i0){for(var e,r=0,o=t[n[0]],i=o.length;r0&&(r=(e=t[n[0]]).length)>0){for(var e,r,o,i=0,a=1;a=0?(t[i][e][0]=o,t[i][e][1]=o+a,o=t[i][e][1]):(t[i][e][0]=0,t[i][e][1]=0)}}},fa=function(t,n,e){var r=n.map((function(t){return t.props.dataKey})),o=function(){var t=(0,Ai.Z)([]),n=Ci,e=Si,r=Pi;function o(o){var i,a,u,c=Array.from(t.apply(this,arguments),_i),f=c.length,l=-1,s=ki(o);try{for(s.s();!(u=s.n()).done;){var p=u.value;for(i=0,++l;i=0?0:o<0?o:r}return e[0]},da=function(t,n){var e=t.props.stackId;if((0,Ni.P2)(e)){var r=n[e];if(r&&r.items.length){for(var o=-1,i=0,a=r.items.length;i=0?r.stackedData[o]:null}}return null},va=function(t,n,e){return Object.keys(t).reduce((function(r,o){var i=t[o].stackedData.reduce((function(t,r){var o=r.slice(n,e+1).reduce((function(t,n){return[b()(n.concat([t[0]]).filter(Ni.hj)),g()(n.concat([t[1]]).filter(Ni.hj))]}),[1/0,-1/0]);return[Math.min(t[0],o[0]),Math.max(t[1],o[1])]}),[1/0,-1/0]);return[Math.min(i[0],r[0]),Math.max(i[1],r[1])]}),[1/0,-1/0]).map((function(t){return t===1/0||t===-1/0?0:t}))},ya=/^dataMin[\s]*-[\s]*([0-9]+([.]{1}[0-9]+){0,1})$/,ga=/^dataMax[\s]*\+[\s]*([0-9]+([.]{1}[0-9]+){0,1})$/,ma=function(t,n,e){if(j()(t))return t(n,e);if(!v()(t))return n;var r=[];if((0,Ni.hj)(t[0]))r[0]=e?t[0]:Math.min(t[0],n[0]);else if(ya.test(t[0])){var o=+ya.exec(t[0])[1];r[0]=n[0]-o}else j()(t[0])?r[0]=t[0](n[0]):r[0]=n[0];if((0,Ni.hj)(t[1]))r[1]=e?t[1]:Math.max(t[1],n[1]);else if(ga.test(t[1])){var i=+ga.exec(t[1])[1];r[1]=n[1]+i}else j()(t[1])?r[1]=t[1](n[1]):r[1]=n[1];return r},ba=function(t,n,e){if(t&&t.scale&&t.scale.bandwidth){var r=t.scale.bandwidth();if(!e||r>0)return r}if(t&&n&&n.length>=2){for(var o=u()(n,(function(t){return t.coordinate})),i=1/0,a=1,c=o.length;at.length)&&(n=t.length);for(var e=0,r=new Array(n);e=0&&o===+o?"".concat(o,"px"):o),";");var r,o,i}),"")},d=function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(null==t||r.x.isSsr)return{width:0,height:0};var e="".concat(t),o=h(n),a="".concat(e,"-").concat(o);if(f.widthCache[a])return f.widthCache[a];try{var u=document.getElementById(p);u||((u=document.createElement("span")).setAttribute("id",p),u.setAttribute("aria-hidden","true"),document.body.appendChild(u));var c=i(i({},l),n);Object.keys(c).map((function(t){return u.style[t]=c[t],t})),u.textContent=e;var s=u.getBoundingClientRect(),d={width:s.width,height:s.height};return f.widthCache[a]=d,++f.cacheCount>2e3&&(f.cacheCount=0,f.widthCache={}),d}catch(v){return{width:0,height:0}}},v=function(t){var n=t.ownerDocument.documentElement,e={top:0,left:0};return void 0!==t.getBoundingClientRect&&(e=t.getBoundingClientRect()),{top:e.top+window.pageYOffset-n.clientTop,left:e.left+window.pageXOffset-n.clientLeft}},y=function(t,n){return{chartX:Math.round(t.pageX-n.left),chartY:Math.round(t.pageY-n.top)}}},2562:function(t,n,e){"use strict";e.d(n,{Ap:function(){return j},EL:function(){return m},Kt:function(){return w},P2:function(){return y},bv:function(){return x},h1:function(){return b},hU:function(){return d},hj:function(){return v},k4:function(){return O},uY:function(){return h}});var r=e(27361),o=e.n(r),i=e(1469),a=e.n(i),u=e(7654),c=e.n(u),f=e(81763),l=e.n(f),s=e(47037),p=e.n(s),h=function(t){return 0===t?0:t>0?1:-1},d=function(t){return p()(t)&&t.indexOf("%")===t.length-1},v=function(t){return l()(t)&&!c()(t)},y=function(t){return v(t)||p()(t)},g=0,m=function(t){var n=++g;return"".concat(t||"").concat(n)},b=function(t,n){var e,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,o=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!v(t)&&!p()(t))return r;if(d(t)){var i=t.indexOf("%");e=n*parseFloat(t.slice(0,i))/100}else e=+t;return c()(e)&&(e=r),o&&e>n&&(e=n),e},w=function(t){if(!t)return null;var n=Object.keys(t);return n&&n.length?t[n[0]]:null},x=function(t){if(!a()(t))return!1;for(var n=t.length,e={},r=0;r2?e-2:0),o=2;o=0||(o[e]=t[e]);return o}(t,n);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,e)&&(o[e]=t[e])}return o}var y={click:"onClick",mousedown:"onMouseDown",mouseup:"onMouseUp",mouseover:"onMouseOver",mousemove:"onMouseMove",mouseout:"onMouseOut",mouseenter:"onMouseEnter",mouseleave:"onMouseLeave",touchcancel:"onTouchCancel",touchend:"onTouchEnd",touchmove:"onTouchMove",touchstart:"onTouchStart"},g=function(t){return"string"==typeof t?t:t?t.displayName||t.name||"Component":""},m=null,b=null,w=function t(n){if(n===m&&l()(b))return b;var e=[];return s.Children.forEach(n,(function(n){c()(n)||((0,p.isFragment)(n)?e=e.concat(t(n.props.children)):e.push(n))})),b=e,m=n,e},x=function(t,n){var e=[],r=[];return r=l()(n)?n.map((function(t){return g(t)})):[g(n)],w(t).forEach((function(t){var n=a()(t,"type.displayName")||a()(t,"type.name");-1!==r.indexOf(n)&&e.push(t)})),e},O=function(t,n){var e=x(t,n);return e&&e[0]},j=function(t){if(!t||!t.props)return!1;var n=t.props,e=n.width,r=n.height;return!(!(0,h.hj)(e)||e<=0||!(0,h.hj)(r)||r<=0)},M=["a","altGlyph","altGlyphDef","altGlyphItem","animate","animateColor","animateMotion","animateTransform","circle","clipPath","color-profile","cursor","defs","desc","ellipse","feBlend","feColormatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","filter","font","font-face","font-face-format","font-face-name","font-face-url","foreignObject","g","glyph","glyphRef","hkern","image","line","lineGradient","marker","mask","metadata","missing-glyph","mpath","path","pattern","polygon","polyline","radialGradient","rect","script","set","stop","style","svg","switch","symbol","text","textPath","title","tref","tspan","use","view","vkern"],S=function(t){return t&&t.type&&o()(t.type)&&M.indexOf(t.type)>=0},E=function(t){var n=[];return w(t).forEach((function(t){S(t)&&n.push(t)})),n},A=function t(n,e){if(n===e)return!0;var r=s.Children.count(n);if(r!==s.Children.count(e))return!1;if(0===r)return!0;if(1===r)return C(l()(n)?n[0]:n,l()(e)?e[0]:e);for(var o=0;ol;)if((u=c[l++])!=u)return!0}else for(;f>l;l++)if((t||l in c)&&c[l]===e)return t||l||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},84326:function(t,n,e){var r=e(1702),o=r({}.toString),i=r("".slice);t.exports=function(t){return i(o(t),8,-1)}},99920:function(t,n,e){var r=e(92597),o=e(53887),i=e(31236),a=e(3070);t.exports=function(t,n,e){for(var u=o(n),c=a.f,f=i.f,l=0;l0&&r[0]<4?1:+(r[0]+r[1])),!o&&a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=+r[1]),t.exports=o},80748:function(t){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},82109:function(t,n,e){var r=e(17854),o=e(31236).f,i=e(68880),a=e(98052),u=e(13072),c=e(99920),f=e(96114);t.exports=function(t,n){var e,l,s,p,h,d=t.target,v=t.global,y=t.stat;if(e=v?r:y?r[d]||u(d,{}):(r[d]||{}).prototype)for(l in n){if(p=n[l],s=t.dontCallGetSet?(h=o(e,l))&&h.value:e[l],!f(v?l:d+(y?".":"#")+l,t.forced)&&void 0!==s){if(typeof p==typeof s)continue;c(p,s)}(t.sham||s&&s.sham)&&i(p,"sham",!0),a(e,l,p,t)}}},47293:function(t){t.exports=function(t){try{return!!t()}catch(n){return!0}}},34374:function(t,n,e){var r=e(47293);t.exports=!r((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},46916:function(t,n,e){var r=e(34374),o=Function.prototype.call;t.exports=r?o.bind(o):function(){return o.apply(o,arguments)}},76530:function(t,n,e){var r=e(19781),o=e(92597),i=Function.prototype,a=r&&Object.getOwnPropertyDescriptor,u=o(i,"name"),c=u&&"something"===function(){}.name,f=u&&(!r||r&&a(i,"name").configurable);t.exports={EXISTS:u,PROPER:c,CONFIGURABLE:f}},1702:function(t,n,e){var r=e(34374),o=Function.prototype,i=o.bind,a=o.call,u=r&&i.bind(a,a);t.exports=r?function(t){return t&&u(t)}:function(t){return t&&function(){return a.apply(t,arguments)}}},35005:function(t,n,e){var r=e(17854),o=e(60614),i=function(t){return o(t)?t:void 0};t.exports=function(t,n){return arguments.length<2?i(r[t]):r[t]&&r[t][n]}},58173:function(t,n,e){var r=e(19662);t.exports=function(t,n){var e=t[n];return null==e?void 0:r(e)}},17854:function(t,n,e){var r=function(t){return t&&t.Math==Math&&t};t.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof e.g&&e.g)||function(){return this}()||Function("return this")()},92597:function(t,n,e){var r=e(1702),o=e(47908),i=r({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,n){return i(o(t),n)}},3501:function(t){t.exports={}},64664:function(t,n,e){var r=e(19781),o=e(47293),i=e(80317);t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},68361:function(t,n,e){var r=e(1702),o=e(47293),i=e(84326),a=Object,u=r("".split);t.exports=o((function(){return!a("z").propertyIsEnumerable(0)}))?function(t){return"String"==i(t)?u(t,""):a(t)}:a},42788:function(t,n,e){var r=e(1702),o=e(60614),i=e(5465),a=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(t){return a(t)}),t.exports=i.inspectSource},29909:function(t,n,e){var r,o,i,a=e(68536),u=e(17854),c=e(1702),f=e(70111),l=e(68880),s=e(92597),p=e(5465),h=e(6200),d=e(3501),v="Object already initialized",y=u.TypeError,g=u.WeakMap;if(a||p.state){var m=p.state||(p.state=new g),b=c(m.get),w=c(m.has),x=c(m.set);r=function(t,n){if(w(m,t))throw new y(v);return n.facade=t,x(m,t,n),n},o=function(t){return b(m,t)||{}},i=function(t){return w(m,t)}}else{var O=h("state");d[O]=!0,r=function(t,n){if(s(t,O))throw new y(v);return n.facade=t,l(t,O,n),n},o=function(t){return s(t,O)?t[O]:{}},i=function(t){return s(t,O)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(n){var e;if(!f(n)||(e=o(n)).type!==t)throw y("Incompatible receiver, "+t+" required");return e}}}},60614:function(t){t.exports=function(t){return"function"==typeof t}},96114:function(t,n,e){var r=e(47293),o=e(60614),i=/#|\.prototype\./,a=function(t,n){var e=c[u(t)];return e==l||e!=f&&(o(n)?r(n):!!n)},u=a.normalize=function(t){return String(t).replace(i,".").toLowerCase()},c=a.data={},f=a.NATIVE="N",l=a.POLYFILL="P";t.exports=a},70111:function(t,n,e){var r=e(60614);t.exports=function(t){return"object"==typeof t?null!==t:r(t)}},31913:function(t){t.exports=!1},52190:function(t,n,e){var r=e(35005),o=e(60614),i=e(47976),a=e(43307),u=Object;t.exports=a?function(t){return"symbol"==typeof t}:function(t){var n=r("Symbol");return o(n)&&i(n.prototype,u(t))}},26244:function(t,n,e){var r=e(17466);t.exports=function(t){return r(t.length)}},56339:function(t,n,e){var r=e(47293),o=e(60614),i=e(92597),a=e(19781),u=e(76530).CONFIGURABLE,c=e(42788),f=e(29909),l=f.enforce,s=f.get,p=Object.defineProperty,h=a&&!r((function(){return 8!==p((function(){}),"length",{value:8}).length})),d=String(String).split("String"),v=t.exports=function(t,n,e){"Symbol("===String(n).slice(0,7)&&(n="["+String(n).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),e&&e.getter&&(n="get "+n),e&&e.setter&&(n="set "+n),(!i(t,"name")||u&&t.name!==n)&&p(t,"name",{value:n,configurable:!0}),h&&e&&i(e,"arity")&&t.length!==e.arity&&p(t,"length",{value:e.arity});try{e&&i(e,"constructor")&&e.constructor?a&&p(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(o){}var r=l(t);return i(r,"source")||(r.source=d.join("string"==typeof n?n:"")),t};Function.prototype.toString=v((function(){return o(this)&&s(this).source||c(this)}),"toString")},74758:function(t){var n=Math.ceil,e=Math.floor;t.exports=Math.trunc||function(t){var r=+t;return(r>0?e:n)(r)}},30133:function(t,n,e){var r=e(7392),o=e(47293);t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},68536:function(t,n,e){var r=e(17854),o=e(60614),i=e(42788),a=r.WeakMap;t.exports=o(a)&&/native code/.test(i(a))},3070:function(t,n,e){var r=e(19781),o=e(64664),i=e(3353),a=e(19670),u=e(34948),c=TypeError,f=Object.defineProperty,l=Object.getOwnPropertyDescriptor,s="enumerable",p="configurable",h="writable";n.f=r?i?function(t,n,e){if(a(t),n=u(n),a(e),"function"==typeof t&&"prototype"===n&&"value"in e&&h in e&&!e.writable){var r=l(t,n);r&&r.writable&&(t[n]=e.value,e={configurable:p in e?e.configurable:r.configurable,enumerable:s in e?e.enumerable:r.enumerable,writable:!1})}return f(t,n,e)}:f:function(t,n,e){if(a(t),n=u(n),a(e),o)try{return f(t,n,e)}catch(r){}if("get"in e||"set"in e)throw c("Accessors not supported");return"value"in e&&(t[n]=e.value),t}},31236:function(t,n,e){var r=e(19781),o=e(46916),i=e(55296),a=e(79114),u=e(45656),c=e(34948),f=e(92597),l=e(64664),s=Object.getOwnPropertyDescriptor;n.f=r?s:function(t,n){if(t=u(t),n=c(n),l)try{return s(t,n)}catch(e){}if(f(t,n))return a(!o(i.f,t,n),t[n])}},8006:function(t,n,e){var r=e(16324),o=e(80748).concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},25181:function(t,n){n.f=Object.getOwnPropertySymbols},47976:function(t,n,e){var r=e(1702);t.exports=r({}.isPrototypeOf)},16324:function(t,n,e){var r=e(1702),o=e(92597),i=e(45656),a=e(41318).indexOf,u=e(3501),c=r([].push);t.exports=function(t,n){var e,r=i(t),f=0,l=[];for(e in r)!o(u,e)&&o(r,e)&&c(l,e);for(;n.length>f;)o(r,e=n[f++])&&(~a(l,e)||c(l,e));return l}},55296:function(t,n){"use strict";var e={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,o=r&&!e.call({1:2},1);n.f=o?function(t){var n=r(this,t);return!!n&&n.enumerable}:e},92140:function(t,n,e){var r=e(46916),o=e(60614),i=e(70111),a=TypeError;t.exports=function(t,n){var e,u;if("string"===n&&o(e=t.toString)&&!i(u=r(e,t)))return u;if(o(e=t.valueOf)&&!i(u=r(e,t)))return u;if("string"!==n&&o(e=t.toString)&&!i(u=r(e,t)))return u;throw a("Can't convert object to primitive value")}},53887:function(t,n,e){var r=e(35005),o=e(1702),i=e(8006),a=e(25181),u=e(19670),c=o([].concat);t.exports=r("Reflect","ownKeys")||function(t){var n=i.f(u(t)),e=a.f;return e?c(n,e(t)):n}},84488:function(t){var n=TypeError;t.exports=function(t){if(null==t)throw n("Can't call method on "+t);return t}},6200:function(t,n,e){var r=e(72309),o=e(69711),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},5465:function(t,n,e){var r=e(17854),o=e(13072),i="__core-js_shared__",a=r[i]||o(i,{});t.exports=a},72309:function(t,n,e){var r=e(31913),o=e(5465);(t.exports=function(t,n){return o[t]||(o[t]=void 0!==n?n:{})})("versions",[]).push({version:"3.22.8",mode:r?"pure":"global",copyright:"© 2014-2022 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.22.8/LICENSE",source:"https://github.com/zloirock/core-js"})},51400:function(t,n,e){var r=e(19303),o=Math.max,i=Math.min;t.exports=function(t,n){var e=r(t);return e<0?o(e+n,0):i(e,n)}},45656:function(t,n,e){var r=e(68361),o=e(84488);t.exports=function(t){return r(o(t))}},19303:function(t,n,e){var r=e(74758);t.exports=function(t){var n=+t;return n!=n||0===n?0:r(n)}},17466:function(t,n,e){var r=e(19303),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},47908:function(t,n,e){var r=e(84488),o=Object;t.exports=function(t){return o(r(t))}},57593:function(t,n,e){var r=e(46916),o=e(70111),i=e(52190),a=e(58173),u=e(92140),c=e(5112),f=TypeError,l=c("toPrimitive");t.exports=function(t,n){if(!o(t)||i(t))return t;var e,c=a(t,l);if(c){if(void 0===n&&(n="default"),e=r(c,t,n),!o(e)||i(e))return e;throw f("Can't convert object to primitive value")}return void 0===n&&(n="number"),u(t,n)}},34948:function(t,n,e){var r=e(57593),o=e(52190);t.exports=function(t){var n=r(t,"string");return o(n)?n:n+""}},66330:function(t){var n=String;t.exports=function(t){try{return n(t)}catch(e){return"Object"}}},69711:function(t,n,e){var r=e(1702),o=0,i=Math.random(),a=r(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+a(++o+i,36)}},43307:function(t,n,e){var r=e(30133);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},3353:function(t,n,e){var r=e(19781),o=e(47293);t.exports=r&&o((function(){return 42!=Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},5112:function(t,n,e){var r=e(17854),o=e(72309),i=e(92597),a=e(69711),u=e(30133),c=e(43307),f=o("wks"),l=r.Symbol,s=l&&l.for,p=c?l:l&&l.withoutSetter||a;t.exports=function(t){if(!i(f,t)||!u&&"string"!=typeof f[t]){var n="Symbol."+t;u&&i(l,t)?f[t]=l[t]:f[t]=c&&s?s(n):p(n)}return f[t]}},35837:function(t,n,e){e(82109)({global:!0},{globalThis:e(17854)})},65743:function(t,n,e){e(35837)},98141:function(t,n,e){"use strict";var r=e(95318);n.__esModule=!0,n.default=function(t,n){t.classList?t.classList.add(n):(0,o.default)(t,n)||("string"==typeof t.className?t.className=t.className+" "+n:t.setAttribute("class",(t.className&&t.className.baseVal||"")+" "+n))};var o=r(e(90404));t.exports=n.default},90404:function(t,n){"use strict";n.__esModule=!0,n.default=function(t,n){return t.classList?!!n&&t.classList.contains(n):-1!==(" "+(t.className.baseVal||t.className)+" ").indexOf(" "+n+" ")},t.exports=n.default},10602:function(t){"use strict";function n(t,n){return t.replace(new RegExp("(^|\\s)"+n+"(?:\\s|$)","g"),"$1").replace(/\s+/g," ").replace(/^\s*|\s*$/g,"")}t.exports=function(t,e){t.classList?t.classList.remove(e):"string"==typeof t.className?t.className=n(t.className,e):t.setAttribute("class",n(t.className&&t.className.baseVal||"",e))}},18552:function(t,n,e){var r=e(10852)(e(55639),"DataView");t.exports=r},1989:function(t,n,e){var r=e(51789),o=e(80401),i=e(57667),a=e(21327),u=e(81866);function c(t){var n=-1,e=null==t?0:t.length;for(this.clear();++n-1}},1196:function(t){t.exports=function(t,n,e){for(var r=-1,o=null==t?0:t.length;++r0&&i(l)?e>1?t(l,e-1,i,a,u):r(u,l):a||(u[u.length]=l)}return u}},28483:function(t,n,e){var r=e(25063)();t.exports=r},47816:function(t,n,e){var r=e(28483),o=e(3674);t.exports=function(t,n){return t&&r(t,n,o)}},97786:function(t,n,e){var r=e(71811),o=e(40327);t.exports=function(t,n){for(var e=0,i=(n=r(n,t)).length;null!=t&&en}},13:function(t){t.exports=function(t,n){return null!=t&&n in Object(t)}},42118:function(t,n,e){var r=e(41848),o=e(62722),i=e(42351);t.exports=function(t,n,e){return n==n?i(t,n,e):r(t,o,e)}},9454:function(t,n,e){var r=e(44239),o=e(37005);t.exports=function(t){return o(t)&&"[object Arguments]"==r(t)}},90939:function(t,n,e){var r=e(2492),o=e(37005);t.exports=function t(n,e,i,a,u){return n===e||(null==n||null==e||!o(n)&&!o(e)?n!=n&&e!=e:r(n,e,i,a,t,u))}},2492:function(t,n,e){var r=e(46384),o=e(67114),i=e(18351),a=e(16096),u=e(64160),c=e(1469),f=e(44144),l=e(36719),s="[object Arguments]",p="[object Array]",h="[object Object]",d=Object.prototype.hasOwnProperty;t.exports=function(t,n,e,v,y,g){var m=c(t),b=c(n),w=m?p:u(t),x=b?p:u(n),O=(w=w==s?h:w)==h,j=(x=x==s?h:x)==h,M=w==x;if(M&&f(t)){if(!f(n))return!1;m=!0,O=!1}if(M&&!O)return g||(g=new r),m||l(t)?o(t,n,e,v,y,g):i(t,n,w,e,v,y,g);if(!(1&e)){var S=O&&d.call(t,"__wrapped__"),E=j&&d.call(n,"__wrapped__");if(S||E){var A=S?t.value():t,C=E?n.value():n;return g||(g=new r),y(A,C,e,v,g)}}return!!M&&(g||(g=new r),a(t,n,e,v,y,g))}},2958:function(t,n,e){var r=e(46384),o=e(90939);t.exports=function(t,n,e,i){var a=e.length,u=a,c=!i;if(null==t)return!u;for(t=Object(t);a--;){var f=e[a];if(c&&f[2]?f[1]!==t[f[0]]:!(f[0]in t))return!1}for(;++ao?0:o+n),(e=e>o?o:e)<0&&(e+=o),o=n>e?0:e-n>>>0,n>>>=0;for(var i=Array(o);++r=200){var v=n?null:u(t);if(v)return c(v);p=!1,l=a,d=new r}else d=n?[]:h;t:for(;++f=o?t:r(t,n,e)}},26393:function(t,n,e){var r=e(33448);t.exports=function(t,n){if(t!==n){var e=void 0!==t,o=null===t,i=t==t,a=r(t),u=void 0!==n,c=null===n,f=n==n,l=r(n);if(!c&&!l&&!a&&t>n||a&&u&&f&&!c&&!l||o&&u&&f||!e&&f||!i)return 1;if(!o&&!a&&!l&&t=c?f:f*("desc"==e[o]?-1:1)}return t.index-n.index}},14429:function(t,n,e){var r=e(55639)["__core-js_shared__"];t.exports=r},99291:function(t,n,e){var r=e(98612);t.exports=function(t,n){return function(e,o){if(null==e)return e;if(!r(e))return t(e,o);for(var i=e.length,a=n?i:-1,u=Object(e);(n?a--:++al))return!1;var p=c.get(t),h=c.get(n);if(p&&h)return p==n&&h==t;var d=-1,v=!0,y=2&e?new r:void 0;for(c.set(t,n),c.set(n,t);++d-1&&t%1==0&&t-1}},54705:function(t,n,e){var r=e(18470);t.exports=function(t,n){var e=this.__data__,o=r(e,t);return o<0?(++this.size,e.push([t,n])):e[o][1]=n,this}},24785:function(t,n,e){var r=e(1989),o=e(38407),i=e(57071);t.exports=function(){this.size=0,this.__data__={hash:new r,map:new(i||o),string:new r}}},11285:function(t,n,e){var r=e(45050);t.exports=function(t){var n=r(this,t).delete(t);return this.size-=n?1:0,n}},96e3:function(t,n,e){var r=e(45050);t.exports=function(t){return r(this,t).get(t)}},49916:function(t,n,e){var r=e(45050);t.exports=function(t){return r(this,t).has(t)}},95265:function(t,n,e){var r=e(45050);t.exports=function(t,n){var e=r(this,t),o=e.size;return e.set(t,n),this.size+=e.size==o?0:1,this}},68776:function(t){t.exports=function(t){var n=-1,e=Array(t.size);return t.forEach((function(t,r){e[++n]=[r,t]})),e}},42634:function(t){t.exports=function(t,n){return function(e){return null!=e&&(e[t]===n&&(void 0!==n||t in Object(e)))}}},24523:function(t,n,e){var r=e(88306);t.exports=function(t){var n=r(t,(function(t){return 500===e.size&&e.clear(),t})),e=n.cache;return n}},94536:function(t,n,e){var r=e(10852)(Object,"create");t.exports=r},86916:function(t,n,e){var r=e(5569)(Object.keys,Object);t.exports=r},31167:function(t,n,e){t=e.nmd(t);var r=e(31957),o=n&&!n.nodeType&&n,i=o&&t&&!t.nodeType&&t,a=i&&i.exports===o&&r.process,u=function(){try{var t=i&&i.require&&i.require("util").types;return t||a&&a.binding&&a.binding("util")}catch(n){}}();t.exports=u},2333:function(t){var n=Object.prototype.toString;t.exports=function(t){return n.call(t)}},5569:function(t){t.exports=function(t,n){return function(e){return t(n(e))}}},45357:function(t,n,e){var r=e(96874),o=Math.max;t.exports=function(t,n,e){return n=o(void 0===n?t.length-1:n,0),function(){for(var i=arguments,a=-1,u=o(i.length-n,0),c=Array(u);++a0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}},37465:function(t,n,e){var r=e(38407);t.exports=function(){this.__data__=new r,this.size=0}},63779:function(t){t.exports=function(t){var n=this.__data__,e=n.delete(t);return this.size=n.size,e}},67599:function(t){t.exports=function(t){return this.__data__.get(t)}},44758:function(t){t.exports=function(t){return this.__data__.has(t)}},34309:function(t,n,e){var r=e(38407),o=e(57071),i=e(83369);t.exports=function(t,n){var e=this.__data__;if(e instanceof r){var a=e.__data__;if(!o||a.length<199)return a.push([t,n]),this.size=++e.size,this;e=this.__data__=new i(a)}return e.set(t,n),this.size=e.size,this}},42351:function(t){t.exports=function(t,n,e){for(var r=e-1,o=t.length;++r=n||e<0||y&&t-d>=l}function x(){var t=o();if(w(t))return O(t);p=setTimeout(x,function(t){var e=n-(t-h);return y?u(e,l-(t-d)):e}(t))}function O(t){return p=void 0,g&&c?m(t):(c=f=void 0,s)}function j(){var t=o(),e=w(t);if(c=arguments,f=this,h=t,e){if(void 0===p)return b(h);if(y)return clearTimeout(p),p=setTimeout(x,n),m(h)}return void 0===p&&(p=setTimeout(x,n)),s}return n=i(n)||0,r(e)&&(v=!!e.leading,l=(y="maxWait"in e)?a(i(e.maxWait)||0,n):l,g="trailing"in e?!!e.trailing:g),j.cancel=function(){void 0!==p&&clearTimeout(p),d=0,c=h=f=p=void 0},j.flush=function(){return void 0===p?s:O(o())},j}},77813:function(t){t.exports=function(t,n){return t===n||t!=t&&n!=n}},94654:function(t,n,e){var r=e(21078),o=e(35161);t.exports=function(t,n){return r(o(t,n),1)}},27361:function(t,n,e){var r=e(97786);t.exports=function(t,n,e){var o=null==t?void 0:r(t,n);return void 0===o?e:o}},79095:function(t,n,e){var r=e(13),o=e(222);t.exports=function(t,n){return null!=t&&o(t,n,r)}},6557:function(t){t.exports=function(t){return t}},35694:function(t,n,e){var r=e(9454),o=e(37005),i=Object.prototype,a=i.hasOwnProperty,u=i.propertyIsEnumerable,c=r(function(){return arguments}())?r:function(t){return o(t)&&a.call(t,"callee")&&!u.call(t,"callee")};t.exports=c},1469:function(t){var n=Array.isArray;t.exports=n},98612:function(t,n,e){var r=e(23560),o=e(41780);t.exports=function(t){return null!=t&&o(t.length)&&!r(t)}},44144:function(t,n,e){t=e.nmd(t);var r=e(55639),o=e(95062),i=n&&!n.nodeType&&n,a=i&&t&&!t.nodeType&&t,u=a&&a.exports===i?r.Buffer:void 0,c=(u?u.isBuffer:void 0)||o;t.exports=c},18446:function(t,n,e){var r=e(90939);t.exports=function(t,n){return r(t,n)}},23560:function(t,n,e){var r=e(44239),o=e(13218);t.exports=function(t){if(!o(t))return!1;var n=r(t);return"[object Function]"==n||"[object GeneratorFunction]"==n||"[object AsyncFunction]"==n||"[object Proxy]"==n}},41780:function(t){t.exports=function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=9007199254740991}},7654:function(t,n,e){var r=e(81763);t.exports=function(t){return r(t)&&t!=+t}},14293:function(t){t.exports=function(t){return null==t}},81763:function(t,n,e){var r=e(44239),o=e(37005);t.exports=function(t){return"number"==typeof t||o(t)&&"[object Number]"==r(t)}},13218:function(t){t.exports=function(t){var n=typeof t;return null!=t&&("object"==n||"function"==n)}},37005:function(t){t.exports=function(t){return null!=t&&"object"==typeof t}},47037:function(t,n,e){var r=e(44239),o=e(1469),i=e(37005);t.exports=function(t){return"string"==typeof t||!o(t)&&i(t)&&"[object String]"==r(t)}},33448:function(t,n,e){var r=e(44239),o=e(37005);t.exports=function(t){return"symbol"==typeof t||o(t)&&"[object Symbol]"==r(t)}},36719:function(t,n,e){var r=e(38749),o=e(7518),i=e(31167),a=i&&i.isTypedArray,u=a?o(a):r;t.exports=u},3674:function(t,n,e){var r=e(14636),o=e(280),i=e(98612);t.exports=function(t){return i(t)?r(t):o(t)}},10928:function(t){t.exports=function(t){var n=null==t?0:t.length;return n?t[n-1]:void 0}},35161:function(t,n,e){var r=e(29932),o=e(67206),i=e(69199),a=e(1469);t.exports=function(t,n){return(a(t)?r:i)(t,o(n,3))}},6162:function(t,n,e){var r=e(56029),o=e(53325),i=e(6557);t.exports=function(t){return t&&t.length?r(t,i,o):void 0}},88306:function(t,n,e){var r=e(83369);function o(t,n){if("function"!=typeof t||null!=n&&"function"!=typeof n)throw new TypeError("Expected a function");var e=function(){var r=arguments,o=n?n.apply(this,r):r[0],i=e.cache;if(i.has(o))return i.get(o);var a=t.apply(this,r);return e.cache=i.set(o,a)||i,a};return e.cache=new(o.Cache||r),e}o.Cache=r,t.exports=o},53632:function(t,n,e){var r=e(56029),o=e(70433),i=e(6557);t.exports=function(t){return t&&t.length?r(t,i,o):void 0}},50308:function(t){t.exports=function(){}},7771:function(t,n,e){var r=e(55639);t.exports=function(){return r.Date.now()}},39601:function(t,n,e){var r=e(40371),o=e(79152),i=e(15403),a=e(40327);t.exports=function(t){return i(t)?r(a(t)):o(t)}},89734:function(t,n,e){var r=e(21078),o=e(82689),i=e(5976),a=e(16612),u=i((function(t,n){if(null==t)return[];var e=n.length;return e>1&&a(t,n[0],n[1])?n=[]:e>2&&a(n[0],n[1],n[2])&&(n=[n[0]]),o(t,r(n,1),[])}));t.exports=u},70479:function(t){t.exports=function(){return[]}},95062:function(t){t.exports=function(){return!1}},14841:function(t,n,e){var r=e(27561),o=e(13218),i=e(33448),a=/^[-+]0x[0-9a-f]+$/i,u=/^0b[01]+$/i,c=/^0o[0-7]+$/i,f=parseInt;t.exports=function(t){if("number"==typeof t)return t;if(i(t))return NaN;if(o(t)){var n="function"==typeof t.valueOf?t.valueOf():t;t=o(n)?n+"":n}if("string"!=typeof t)return 0===t?t:+t;t=r(t);var e=u.test(t);return e||c.test(t)?f(t.slice(2),e?2:8):a.test(t)?NaN:+t}},79833:function(t,n,e){var r=e(80531);t.exports=function(t){return null==t?"":r(t)}},45578:function(t,n,e){var r=e(67206),o=e(45652);t.exports=function(t,n){return t&&t.length?o(t,r(n,2)):[]}},11700:function(t,n,e){var r=e(98805)("toUpperCase");t.exports=r},70885:function(t,n,e){"use strict";e.d(n,{Z:function(){return o}});var r=e(40181);function o(t,n){return function(t){if(Array.isArray(t))return t}(t)||function(t,n){var e=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=e){var r,o,i=[],a=!0,u=!1;try{for(e=e.call(t);!(a=(r=e.next()).done)&&(i.push(r.value),!n||i.length!==n);a=!0);}catch(c){u=!0,o=c}finally{try{a||null==e.return||e.return()}finally{if(u)throw o}}return i}}(t,n)||(0,r.Z)(t,n)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}}}]); \ No newline at end of file diff --git a/public/15bee7f7990ca2643225932d7401c575bcac4bd3-62f4ba399dfd71419e0d.js.LICENSE.txt b/public/15bee7f7990ca2643225932d7401c575bcac4bd3-62f4ba399dfd71419e0d.js.LICENSE.txt deleted file mode 100644 index 7345f35f60..0000000000 --- a/public/15bee7f7990ca2643225932d7401c575bcac4bd3-62f4ba399dfd71419e0d.js.LICENSE.txt +++ /dev/null @@ -1,9 +0,0 @@ -/*! - Copyright (c) 2018 Jed Watson. - Licensed under the MIT License (MIT), see - http://jedwatson.github.io/classnames -*/ - -/*! decimal.js-light v2.5.1 https://github.com/MikeMcl/decimal.js-light/LICENCE */ - -/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ diff --git a/public/15bee7f7990ca2643225932d7401c575bcac4bd3.js b/public/15bee7f7990ca2643225932d7401c575bcac4bd3.js new file mode 100644 index 0000000000..8afe5c1d91 --- /dev/null +++ b/public/15bee7f7990ca2643225932d7401c575bcac4bd3.js @@ -0,0 +1,2 @@ +/*! For license information please see 15bee7f7990ca2643225932d7401c575bcac4bd3.js.LICENSE.txt */ +(self.webpackChunkjonaso_de=self.webpackChunkjonaso_de||[]).push([[664],{4184:function(t,e){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var t=[],e=0;e(u=(a=Math.ceil(p/v))>u?a+1:u+1)&&(i=u,r.length=1),r.reverse();i--;)r.push(0);r.reverse()}for((u=l.length)-(i=s.length)<0&&(i=u,r=s,s=l,l=r),n=0;i;)n=(l[--i]=l[i]+s[i]+n)/y|0,l[i]%=y;for(n&&(l.unshift(n),++o),u=l.length;0==l[--u];)l.pop();return e.d=l,e.e=o,c?k(e,p):e}function x(t,e,n){if(t!==~~t||tn)throw Error(s+t)}function O(t){var e,n,r,o=t.length-1,i="",a=t[0];if(o>0){for(i+=a,e=1;et.e^i.s<0?1:-1;for(e=0,n=(r=i.d.length)<(o=t.d.length)?r:o;et.d[e]^i.s<0?1:-1;return r===o?0:r>o^i.s<0?1:-1},b.decimalPlaces=b.dp=function(){var t=this,e=t.d.length-1,n=(e-t.e)*v;if(e=t.d[e])for(;e%10==0;e/=10)n--;return n<0?0:n},b.dividedBy=b.div=function(t){return j(this,new this.constructor(t))},b.dividedToIntegerBy=b.idiv=function(t){var e=this.constructor;return k(j(this,new e(t),0,1),e.precision)},b.equals=b.eq=function(t){return!this.cmp(t)},b.exponent=function(){return E(this)},b.greaterThan=b.gt=function(t){return this.cmp(t)>0},b.greaterThanOrEqualTo=b.gte=function(t){return this.cmp(t)>=0},b.isInteger=b.isint=function(){return this.e>this.d.length-2},b.isNegative=b.isneg=function(){return this.s<0},b.isPositive=b.ispos=function(){return this.s>0},b.isZero=function(){return 0===this.s},b.lessThan=b.lt=function(t){return this.cmp(t)<0},b.lessThanOrEqualTo=b.lte=function(t){return this.cmp(t)<1},b.logarithm=b.log=function(t){var e,n=this,r=n.constructor,o=r.precision,a=o+5;if(void 0===t)t=new r(10);else if((t=new r(t)).s<1||t.eq(i))throw Error(l+"NaN");if(n.s<1)throw Error(l+(n.s?"NaN":"-Infinity"));return n.eq(i)?new r(0):(c=!1,e=j(A(n,a),A(t,a),a),c=!0,k(e,o))},b.minus=b.sub=function(t){var e=this;return t=new e.constructor(t),e.s==t.s?T(e,t):w(e,(t.s=-t.s,t))},b.modulo=b.mod=function(t){var e,n=this,r=n.constructor,o=r.precision;if(!(t=new r(t)).s)throw Error(l+"NaN");return n.s?(c=!1,e=j(n,t,0,1).times(t),c=!0,n.minus(e)):k(new r(n),o)},b.naturalExponential=b.exp=function(){return S(this)},b.naturalLogarithm=b.ln=function(){return A(this)},b.negated=b.neg=function(){var t=new this.constructor(this);return t.s=-t.s||0,t},b.plus=b.add=function(t){var e=this;return t=new e.constructor(t),e.s==t.s?w(e,t):T(e,(t.s=-t.s,t))},b.precision=b.sd=function(t){var e,n,r,o=this;if(void 0!==t&&t!==!!t&&1!==t&&0!==t)throw Error(s+t);if(e=E(o)+1,n=(r=o.d.length-1)*v+1,r=o.d[r]){for(;r%10==0;r/=10)n--;for(r=o.d[0];r>=10;r/=10)n++}return t&&e>n?e:n},b.squareRoot=b.sqrt=function(){var t,e,n,r,o,i,a,u=this,s=u.constructor;if(u.s<1){if(!u.s)return new s(0);throw Error(l+"NaN")}for(t=E(u),c=!1,0==(o=Math.sqrt(+u))||o==1/0?(((e=O(u.d)).length+t)%2==0&&(e+="0"),o=Math.sqrt(e),t=p((t+1)/2)-(t<0||t%2),r=new s(e=o==1/0?"5e"+t:(e=o.toExponential()).slice(0,e.indexOf("e")+1)+t)):r=new s(o.toString()),o=a=(n=s.precision)+3;;)if(r=(i=r).plus(j(u,i,a+2)).times(.5),O(i.d).slice(0,a)===(e=O(r.d)).slice(0,a)){if(e=e.slice(a-3,a+1),o==a&&"4999"==e){if(k(i,n+1,0),i.times(i).eq(u)){r=i;break}}else if("9999"!=e)break;a+=4}return c=!0,k(r,n)},b.times=b.mul=function(t){var e,n,r,o,i,a,u,l,s,f=this,p=f.constructor,h=f.d,d=(t=new p(t)).d;if(!f.s||!t.s)return new p(0);for(t.s*=f.s,n=f.e+t.e,(l=h.length)<(s=d.length)&&(i=h,h=d,d=i,a=l,l=s,s=a),i=[],r=a=l+s;r--;)i.push(0);for(r=s;--r>=0;){for(e=0,o=l+r;o>r;)u=i[o]+d[r]*h[o-r-1]+e,i[o--]=u%y|0,e=u/y|0;i[o]=(i[o]+e)%y|0}for(;!i[--a];)i.pop();return e?++n:i.shift(),t.d=i,t.e=n,c?k(t,p.precision):t},b.toDecimalPlaces=b.todp=function(t,e){var n=this,r=n.constructor;return n=new r(n),void 0===t?n:(x(t,0,a),void 0===e?e=r.rounding:x(e,0,8),k(n,t+E(n)+1,e))},b.toExponential=function(t,e){var n,r=this,o=r.constructor;return void 0===t?n=_(r,!0):(x(t,0,a),void 0===e?e=o.rounding:x(e,0,8),n=_(r=k(new o(r),t+1,e),!0,t+1)),n},b.toFixed=function(t,e){var n,r,o=this,i=o.constructor;return void 0===t?_(o):(x(t,0,a),void 0===e?e=i.rounding:x(e,0,8),n=_((r=k(new i(o),t+E(o)+1,e)).abs(),!1,t+E(r)+1),o.isneg()&&!o.isZero()?"-"+n:n)},b.toInteger=b.toint=function(){var t=this,e=t.constructor;return k(new e(t),E(t)+1,e.rounding)},b.toNumber=function(){return+this},b.toPower=b.pow=function(t){var e,n,r,o,a,u,s=this,f=s.constructor,h=+(t=new f(t));if(!t.s)return new f(i);if(!(s=new f(s)).s){if(t.s<1)throw Error(l+"Infinity");return s}if(s.eq(i))return s;if(r=f.precision,t.eq(i))return k(s,r);if(u=(e=t.e)>=(n=t.d.length-1),a=s.s,u){if((n=h<0?-h:h)<=m){for(o=new f(i),e=Math.ceil(r/v+4),c=!1;n%2&&N((o=o.times(s)).d,e),0!==(n=p(n/2));)N((s=s.times(s)).d,e);return c=!0,t.s<0?new f(i).div(o):k(o,r)}}else if(a<0)throw Error(l+"NaN");return a=a<0&&1&t.d[Math.max(e,n)]?-1:1,s.s=1,c=!1,o=t.times(A(s,r+12)),c=!0,(o=S(o)).s=a,o},b.toPrecision=function(t,e){var n,r,o=this,i=o.constructor;return void 0===t?r=_(o,(n=E(o))<=i.toExpNeg||n>=i.toExpPos):(x(t,1,a),void 0===e?e=i.rounding:x(e,0,8),r=_(o=k(new i(o),t,e),t<=(n=E(o))||n<=i.toExpNeg,t)),r},b.toSignificantDigits=b.tosd=function(t,e){var n=this.constructor;return void 0===t?(t=n.precision,e=n.rounding):(x(t,1,a),void 0===e?e=n.rounding:x(e,0,8)),k(new n(this),t,e)},b.toString=b.valueOf=b.val=b.toJSON=function(){var t=this,e=E(t),n=t.constructor;return _(t,e<=n.toExpNeg||e>=n.toExpPos)};var j=function(){function t(t,e){var n,r=0,o=t.length;for(t=t.slice();o--;)n=t[o]*e+r,t[o]=n%y|0,r=n/y|0;return r&&t.unshift(r),t}function e(t,e,n,r){var o,i;if(n!=r)i=n>r?1:-1;else for(o=i=0;oe[o]?1:-1;break}return i}function n(t,e,n){for(var r=0;n--;)t[n]-=r,r=t[n]1;)t.shift()}return function(r,o,i,a){var u,c,s,f,p,h,d,m,g,b,w,x,O,j,S,M,C,A,P=r.constructor,T=r.s==o.s?1:-1,_=r.d,N=o.d;if(!r.s)return new P(r);if(!o.s)throw Error(l+"Division by zero");for(c=r.e-o.e,C=N.length,S=_.length,m=(d=new P(T)).d=[],s=0;N[s]==(_[s]||0);)++s;if(N[s]>(_[s]||0)&&--c,(x=null==i?i=P.precision:a?i+(E(r)-E(o))+1:i)<0)return new P(0);if(x=x/v+2|0,s=0,1==C)for(f=0,N=N[0],x++;(s1&&(N=t(N,f),_=t(_,f),C=N.length,S=_.length),j=C,b=(g=_.slice(0,C)).length;b=y/2&&++M;do{f=0,(u=e(N,g,C,b))<0?(w=g[0],C!=b&&(w=w*y+(g[1]||0)),(f=w/M|0)>1?(f>=y&&(f=y-1),1==(u=e(p=t(N,f),g,h=p.length,b=g.length))&&(f--,n(p,C16)throw Error(f+E(t));if(!t.s)return new p(i);for(null==e?(c=!1,u=d):u=e,a=new p(.03125);t.abs().gte(.1);)t=t.times(a),s+=5;for(u+=Math.log(h(2,s))/Math.LN10*2+5|0,n=r=o=new p(i),p.precision=u;;){if(r=k(r.times(t),u),n=n.times(++l),O((a=o.plus(j(r,n,u))).d).slice(0,u)===O(o.d).slice(0,u)){for(;s--;)o=k(o.times(o),u);return p.precision=d,null==e?(c=!0,k(o,d)):o}o=a}}function E(t){for(var e=t.e*v,n=t.d[0];n>=10;n/=10)e++;return e}function M(t,e,n){if(e>t.LN10.sd())throw c=!0,n&&(t.precision=n),Error(l+"LN10 precision limit exceeded");return k(new t(t.LN10),e)}function C(t){for(var e="";t--;)e+="0";return e}function A(t,e){var n,r,o,a,u,s,f,p,h,d=1,y=t,v=y.d,m=y.constructor,g=m.precision;if(y.s<1)throw Error(l+(y.s?"NaN":"-Infinity"));if(y.eq(i))return new m(0);if(null==e?(c=!1,p=g):p=e,y.eq(10))return null==e&&(c=!0),M(m,p);if(p+=10,m.precision=p,r=(n=O(v)).charAt(0),a=E(y),!(Math.abs(a)<15e14))return f=M(m,p+2,g).times(a+""),y=A(new m(r+"."+n.slice(1)),p-10).plus(f),m.precision=g,null==e?(c=!0,k(y,g)):y;for(;r<7&&1!=r||1==r&&n.charAt(1)>3;)r=(n=O((y=y.times(t)).d)).charAt(0),d++;for(a=E(y),r>1?(y=new m("0."+n),a++):y=new m(r+"."+n.slice(1)),s=u=y=j(y.minus(i),y.plus(i),p),h=k(y.times(y),p),o=3;;){if(u=k(u.times(h),p),O((f=s.plus(j(u,new m(o),p))).d).slice(0,p)===O(s.d).slice(0,p))return s=s.times(2),0!==a&&(s=s.plus(M(m,p+2,g).times(a+""))),s=j(s,new m(d),p),m.precision=g,null==e?(c=!0,k(s,g)):s;s=f,o+=2}}function P(t,e){var n,r,o;for((n=e.indexOf("."))>-1&&(e=e.replace(".","")),(r=e.search(/e/i))>0?(n<0&&(n=r),n+=+e.slice(r+1),e=e.substring(0,r)):n<0&&(n=e.length),r=0;48===e.charCodeAt(r);)++r;for(o=e.length;48===e.charCodeAt(o-1);)--o;if(e=e.slice(r,o)){if(o-=r,n=n-r-1,t.e=p(n/v),t.d=[],r=(n+1)%v,n<0&&(r+=v),rg||t.e<-g))throw Error(f+n)}else t.s=0,t.e=0,t.d=[0];return t}function k(t,e,n){var r,o,i,a,u,l,s,d,m=t.d;for(a=1,i=m[0];i>=10;i/=10)a++;if((r=e-a)<0)r+=v,o=e,s=m[d=0];else{if((d=Math.ceil((r+1)/v))>=(i=m.length))return t;for(s=i=m[d],a=1;i>=10;i/=10)a++;o=(r%=v)-v+a}if(void 0!==n&&(u=s/(i=h(10,a-o-1))%10|0,l=e<0||void 0!==m[d+1]||s%i,l=n<4?(u||l)&&(0==n||n==(t.s<0?3:2)):u>5||5==u&&(4==n||l||6==n&&(r>0?o>0?s/h(10,a-o):0:m[d-1])%10&1||n==(t.s<0?8:7))),e<1||!m[0])return l?(i=E(t),m.length=1,e=e-i-1,m[0]=h(10,(v-e%v)%v),t.e=p(-e/v)||0):(m.length=1,m[0]=t.e=t.s=0),t;if(0==r?(m.length=d,i=1,d--):(m.length=d+1,i=h(10,v-r),m[d]=o>0?(s/h(10,a-o)%h(10,o)|0)*i:0),l)for(;;){if(0==d){(m[0]+=i)==y&&(m[0]=1,++t.e);break}if(m[d]+=i,m[d]!=y)break;m[d--]=0,i=1}for(r=m.length;0===m[--r];)m.pop();if(c&&(t.e>g||t.e<-g))throw Error(f+E(t));return t}function T(t,e){var n,r,o,i,a,u,l,s,f,p,h=t.constructor,d=h.precision;if(!t.s||!e.s)return e.s?e.s=-e.s:e=new h(t),c?k(e,d):e;if(l=t.d,p=e.d,r=e.e,s=t.e,l=l.slice(),a=s-r){for((f=a<0)?(n=l,a=-a,u=p.length):(n=p,r=s,u=l.length),a>(o=Math.max(Math.ceil(d/v),u)+2)&&(a=o,n.length=1),n.reverse(),o=a;o--;)n.push(0);n.reverse()}else{for((f=(o=l.length)<(u=p.length))&&(u=o),o=0;o0;--o)l[u++]=0;for(o=p.length;o>a;){if(l[--o]0?i=i.charAt(0)+"."+i.slice(1)+C(r):a>1&&(i=i.charAt(0)+"."+i.slice(1)),i=i+(o<0?"e":"e+")+o):o<0?(i="0."+C(-o-1)+i,n&&(r=n-a)>0&&(i+=C(r))):o>=a?(i+=C(o+1-a),n&&(r=n-o-1)>0&&(i=i+"."+C(r))):((r=o+1)0&&(o+1===a&&(i+="."),i+=C(r))),t.s<0?"-"+i:i}function N(t,e){if(t.length>e)return t.length=e,!0}function D(t){if(!t||"object"!=typeof t)throw Error(l+"Object expected");var e,n,r,o=["precision",1,a,"rounding",0,8,"toExpNeg",-1/0,0,"toExpPos",0,1/0];for(e=0;e=o[e+1]&&r<=o[e+2]))throw Error(s+n+": "+r);this[n]=r}if(void 0!==(r=t[n="LN10"])){if(r!=Math.LN10)throw Error(s+n+": "+r);this[n]=new this(r)}return this}u=function t(e){var n,r,o;function i(t){var e=this;if(!(e instanceof i))return new i(t);if(e.constructor=i,t instanceof i)return e.s=t.s,e.e=t.e,void(e.d=(t=t.d)?t.slice():t);if("number"==typeof t){if(0*t!=0)throw Error(s+t);if(t>0)e.s=1;else{if(!(t<0))return e.s=0,e.e=0,void(e.d=[0]);t=-t,e.s=-1}return t===~~t&&t<1e7?(e.e=0,void(e.d=[t])):P(e,t.toString())}if("string"!=typeof t)throw Error(s+t);if(45===t.charCodeAt(0)?(t=t.slice(1),e.s=-1):e.s=1,!d.test(t))throw Error(s+t);P(e,t)}if(i.prototype=b,i.ROUND_UP=0,i.ROUND_DOWN=1,i.ROUND_CEIL=2,i.ROUND_FLOOR=3,i.ROUND_HALF_UP=4,i.ROUND_HALF_DOWN=5,i.ROUND_HALF_EVEN=6,i.ROUND_HALF_CEIL=7,i.ROUND_HALF_FLOOR=8,i.clone=t,i.config=i.set=D,void 0===e&&(e={}),e)for(o=["precision","rounding","toExpNeg","toExpPos","LN10"],n=0;n0;)if(!n(t[o],e[o],o,o,t,e,r))return!1;return!0}var b=n(g);function w(t,e){return a(t.valueOf(),e.valueOf())}function x(t,e,n,r){var o=t.size===e.size;if(!o)return!1;if(!t.size)return!0;var i={},a=0;return t.forEach((function(u,c){if(o){var l=!1,s=0;e.forEach((function(o,f){l||i[s]||!(l=n(c,f,a,s,t,e,r)&&n(u,o,c,f,t,e,r))||(i[s]=!0),s++})),a++,o=l}})),o}var O=n(x),j="_owner",S=Object.prototype.hasOwnProperty;function E(t,e,n,r){var o,i=Object.keys(t),a=i.length;if(Object.keys(e).length!==a)return!1;for(;a-- >0;){if((o=i[a])===j){var u=!!t.$$typeof,c=!!e.$$typeof;if((u||c)&&u!==c)return!1}if(!S.call(e,o)||!n(t[o],e[o],o,o,t,e,r))return!1}return!0}var M=n(E);function C(t,e){return t.source===e.source&&t.flags===e.flags}function A(t,e,n,r){var o=t.size===e.size;if(!o)return!1;if(!t.size)return!0;var i={};return t.forEach((function(a,u){if(o){var c=!1,l=0;e.forEach((function(o,s){c||i[l]||!(c=n(a,o,u,s,t,e,r))||(i[l]=!0),l++})),o=c}})),o}var P=n(A),k=Object.freeze({areArraysEqual:g,areDatesEqual:w,areMapsEqual:x,areObjectsEqual:E,areRegExpsEqual:C,areSetsEqual:A,createIsNestedEqual:e}),T=Object.freeze({areArraysEqual:b,areDatesEqual:w,areMapsEqual:O,areObjectsEqual:M,areRegExpsEqual:C,areSetsEqual:P,createIsNestedEqual:e}),_=m(k);function N(t,e){return _(t,e,void 0)}var D=m(r(k,{createIsNestedEqual:function(){return a}}));function R(t,e){return D(t,e,void 0)}var U=m(T);function I(t,e){return U(t,e,new WeakMap)}var L=m(r(T,{createIsNestedEqual:function(){return a}}));function $(t,e){return L(t,e,new WeakMap)}function z(t){return m(r(k,t(k)))}function B(t){var e=m(r(T,t(T)));return function(t,n,r){return void 0===r&&(r=new WeakMap),e(t,n,r)}}t.circularDeepEqual=I,t.circularShallowEqual=$,t.createCustomCircularEqual=B,t.createCustomEqual=z,t.deepEqual=N,t.sameValueZeroEqual=a,t.shallowEqual=R,Object.defineProperty(t,"__esModule",{value:!0})}(e)},9712:function(t,e){e.polyfill=t=>t},2076:function(t,e,n){"use strict";n.d(e,{EG:function(){return u},OF:function(){return c},S2:function(){return a},YC:function(){return i},ab:function(){return o},lD:function(){return l}});const r={nobottommargin:{marginBottom:0,paddingBottom:0},notopmargin:{marginTop:0,paddingTop:0},nobold:{fontWeight:"normal"},spacer:{height:"5em"},noMarginGrid:{marginRight:0,marginLeft:0}};const o={3:"red",2:"orange",1:"brown",0:"black"};function i(t,e){return t.sort((function(t,n){var r=t[e],o=n[e];return r>o?-1:rt||void 0)).join(e)}function u(t,e){let n="";return t[1]>t[2]&&(n="wide",e%5==0&&(n="big"),e%4==0&&(n="")),t[1](0,o.K2)("1640202326").site.siteMetadata;var a=r.createElement;function u({title:t,description:e,pathname:n,children:o}){const{title:u,description:c,image:l,siteUrl:s,twitterUsername:f}=i(),p={title:t||u,description:e||c,image:`${s}${l}`,url:`${s}${n||""}`,twitterUsername:f};return a(r.Fragment,null,a("meta",{key:"charSet",charSet:"utf-8"}),a("title",null,p.title),a("meta",{name:"description",content:p.description}),a("link",{rel:"icon",href:"data:image/svg+xml,👤"}),o)}},6782:function(t,e,n){"use strict";n.d(e,{Z:function(){return s}});var r=n(7294),o=n(4160),i=r.createElement;const a={navSpacer:{marginBottom:"2em"}},u=({active:t,handleItemClick:e,item:n,url:r=null})=>i("a",{key:n,className:"item"+(t?" active":""),name:n,url:r,onClick:e},n);function c(){const{0:t,1:e}=(0,r.useState)(""),{0:n,1:c}=(0,r.useState)(!1);function l(t){t.preventDefault();const n=t.target.name;let r=t.target.getAttribute("url");const i=n.toLowerCase();e(i),r?(r="/"===r.charAt(0)?r.slice(1):r,(0,o.c4)(`/${r}`)):"home"===i?(0,o.c4)("/"):(0,o.c4)(`/${i}`)}return(0,r.useEffect)((()=>{const t=function(t){return t.replace(/\//g,"").toLowerCase()}(window.location.pathname);e(t||"home");const n=t.startsWith("research")||t.startsWith("projects");c(n)}),[]),i("header",null,i("div",{id:"desktopmenu"},i("div",{className:"ui fluid pointing stackable seven item menu",primary:"true"},i(u,{key:"home",active:"home"===t,item:"Home",handleItemClick:l}),i(u,{key:"artworks",active:t.startsWith("artworks"),item:"Artworks",link:!1,header:!0,handleItemClick:l}),i(u,{key:"publications",active:"publications"===t,item:"Publications",handleItemClick:l}),i(u,{key:"research",active:t.startsWith("research")||"projects"===t,item:"Research",link:!1,header:!0,handleItemClick:l}),i(u,{key:"cv",active:"cv"===t,item:"CV",handleItemClick:l})),n&&i("div",{className:"ui small pointing secondary stackable seven item menu"},i(u,{key:"researchinterests",active:"research"===t||"researchinterests"===t,item:"Interests",url:"/research/interests",handleItemClick:l}),i(u,{key:"researchprojects",active:"researchprojects"===t,item:"Projects",url:"/research/projects",handleItemClick:l}),i(u,{key:"researchreading",active:"researchreading"===t,item:"Reading",url:"/research/reading",handleItemClick:l}),i(u,{key:"researchinfluences",active:"researchinfluences"===t,item:"Influences",url:"/research/influences",handleItemClick:l}))),i("div",{style:a.navSpacer}))}var l=r.createElement;function s({children:t}){return l("div",{style:{margin:"0 auto",maxWidth:1024}},l(c,null),t)}},8552:function(t,e,n){var r=n(852)(n(5639),"DataView");t.exports=r},1989:function(t,e,n){var r=n(1789),o=n(401),i=n(7667),a=n(1327),u=n(1866);function c(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e-1}},1196:function(t){t.exports=function(t,e,n){for(var r=-1,o=null==t?0:t.length;++r0&&i(s)?n>1?t(s,n-1,i,a,u):r(u,s):a||(u[u.length]=s)}return u}},8483:function(t,e,n){var r=n(5063)();t.exports=r},7816:function(t,e,n){var r=n(8483),o=n(3674);t.exports=function(t,e){return t&&r(t,e,o)}},7786:function(t,e,n){var r=n(1811),o=n(327);t.exports=function(t,e){for(var n=0,i=(e=r(e,t)).length;null!=t&&ne}},13:function(t){t.exports=function(t,e){return null!=t&&e in Object(t)}},2118:function(t,e,n){var r=n(1848),o=n(2722),i=n(2351);t.exports=function(t,e,n){return e==e?i(t,e,n):r(t,o,n)}},9454:function(t,e,n){var r=n(4239),o=n(7005),i="[object Arguments]";t.exports=function(t){return o(t)&&r(t)==i}},939:function(t,e,n){var r=n(2492),o=n(7005);t.exports=function t(e,n,i,a,u){return e===n||(null==e||null==n||!o(e)&&!o(n)?e!=e&&n!=n:r(e,n,i,a,t,u))}},2492:function(t,e,n){var r=n(6384),o=n(7114),i=n(8351),a=n(6096),u=n(8882),c=n(1469),l=n(4144),s=n(6719),f=1,p="[object Arguments]",h="[object Array]",d="[object Object]",y=Object.prototype.hasOwnProperty;t.exports=function(t,e,n,v,m,g){var b=c(t),w=c(e),x=b?h:u(t),O=w?h:u(e),j=(x=x==p?d:x)==d,S=(O=O==p?d:O)==d,E=x==O;if(E&&l(t)){if(!l(e))return!1;b=!0,j=!1}if(E&&!j)return g||(g=new r),b||s(t)?o(t,e,n,v,m,g):i(t,e,x,n,v,m,g);if(!(n&f)){var M=j&&y.call(t,"__wrapped__"),C=S&&y.call(e,"__wrapped__");if(M||C){var A=M?t.value():t,P=C?e.value():e;return g||(g=new r),m(A,P,n,v,g)}}return!!E&&(g||(g=new r),a(t,e,n,v,m,g))}},2958:function(t,e,n){var r=n(6384),o=n(939),i=1,a=2;t.exports=function(t,e,n,u){var c=n.length,l=c,s=!u;if(null==t)return!l;for(t=Object(t);c--;){var f=n[c];if(s&&f[2]?f[1]!==t[f[0]]:!(f[0]in t))return!1}for(;++co?0:o+e),(n=n>o?o:n)<0&&(n+=o),o=e>n?0:n-e>>>0,e>>>=0;for(var i=Array(o);++r=l){var v=e?null:u(t);if(v)return c(v);h=!1,f=a,y=new r}else y=e?[]:d;t:for(;++s=o?t:r(t,e,n)}},6393:function(t,e,n){var r=n(3448);t.exports=function(t,e){if(t!==e){var n=void 0!==t,o=null===t,i=t==t,a=r(t),u=void 0!==e,c=null===e,l=e==e,s=r(e);if(!c&&!s&&!a&&t>e||a&&u&&l&&!c&&!s||o&&u&&l||!n&&l||!i)return 1;if(!o&&!a&&!s&&t=c?l:l*("desc"==n[o]?-1:1)}return t.index-e.index}},4429:function(t,e,n){var r=n(5639)["__core-js_shared__"];t.exports=r},9291:function(t,e,n){var r=n(8612);t.exports=function(t,e){return function(n,o){if(null==n)return n;if(!r(n))return t(n,o);for(var i=n.length,a=e?i:-1,u=Object(n);(e?a--:++ap))return!1;var d=s.get(t),y=s.get(e);if(d&&y)return d==e&&y==t;var v=-1,m=!0,g=n&u?new r:void 0;for(s.set(t,e),s.set(e,t);++v-1&&t%1==0&&t-1}},4705:function(t,e,n){var r=n(8470);t.exports=function(t,e){var n=this.__data__,o=r(n,t);return o<0?(++this.size,n.push([t,e])):n[o][1]=e,this}},4785:function(t,e,n){var r=n(1989),o=n(8407),i=n(7071);t.exports=function(){this.size=0,this.__data__={hash:new r,map:new(i||o),string:new r}}},1285:function(t,e,n){var r=n(5050);t.exports=function(t){var e=r(this,t).delete(t);return this.size-=e?1:0,e}},6e3:function(t,e,n){var r=n(5050);t.exports=function(t){return r(this,t).get(t)}},9916:function(t,e,n){var r=n(5050);t.exports=function(t){return r(this,t).has(t)}},5265:function(t,e,n){var r=n(5050);t.exports=function(t,e){var n=r(this,t),o=n.size;return n.set(t,e),this.size+=n.size==o?0:1,this}},8776:function(t){t.exports=function(t){var e=-1,n=Array(t.size);return t.forEach((function(t,r){n[++e]=[r,t]})),n}},2634:function(t){t.exports=function(t,e){return function(n){return null!=n&&(n[t]===e&&(void 0!==e||t in Object(n)))}}},4523:function(t,e,n){var r=n(8306),o=500;t.exports=function(t){var e=r(t,(function(t){return n.size===o&&n.clear(),t})),n=e.cache;return e}},4536:function(t,e,n){var r=n(852)(Object,"create");t.exports=r},6916:function(t,e,n){var r=n(5569)(Object.keys,Object);t.exports=r},1167:function(t,e,n){t=n.nmd(t);var r=n(1957),o=e&&!e.nodeType&&e,i=o&&t&&!t.nodeType&&t,a=i&&i.exports===o&&r.process,u=function(){try{var t=i&&i.require&&i.require("util").types;return t||a&&a.binding&&a.binding("util")}catch(e){}}();t.exports=u},2333:function(t){var e=Object.prototype.toString;t.exports=function(t){return e.call(t)}},5569:function(t){t.exports=function(t,e){return function(n){return t(e(n))}}},5357:function(t,e,n){var r=n(6874),o=Math.max;t.exports=function(t,e,n){return e=o(void 0===e?t.length-1:e,0),function(){for(var i=arguments,a=-1,u=o(i.length-e,0),c=Array(u);++a0){if(++o>=e)return arguments[0]}else o=0;return t.apply(void 0,arguments)}}},7465:function(t,e,n){var r=n(8407);t.exports=function(){this.__data__=new r,this.size=0}},3779:function(t){t.exports=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n}},7599:function(t){t.exports=function(t){return this.__data__.get(t)}},4758:function(t){t.exports=function(t){return this.__data__.has(t)}},4309:function(t,e,n){var r=n(8407),o=n(7071),i=n(3369),a=200;t.exports=function(t,e){var n=this.__data__;if(n instanceof r){var u=n.__data__;if(!o||u.length=e||n<0||m&&t-y>=f}function x(){var t=o();if(w(t))return O(t);h=setTimeout(x,function(t){var n=e-(t-d);return m?c(n,f-(t-y)):n}(t))}function O(t){return h=void 0,g&&l?b(t):(l=s=void 0,p)}function j(){var t=o(),n=w(t);if(l=arguments,s=this,d=t,n){if(void 0===h)return function(t){return y=t,h=setTimeout(x,e),v?b(t):p}(d);if(m)return clearTimeout(h),h=setTimeout(x,e),b(d)}return void 0===h&&(h=setTimeout(x,e)),p}return e=i(e)||0,r(n)&&(v=!!n.leading,f=(m="maxWait"in n)?u(i(n.maxWait)||0,e):f,g="trailing"in n?!!n.trailing:g),j.cancel=function(){void 0!==h&&clearTimeout(h),y=0,l=d=s=h=void 0},j.flush=function(){return void 0===h?p:O(o())},j}},7813:function(t){t.exports=function(t,e){return t===e||t!=t&&e!=e}},4654:function(t,e,n){var r=n(1078),o=n(5161);t.exports=function(t,e){return r(o(t,e),1)}},7361:function(t,e,n){var r=n(7786);t.exports=function(t,e,n){var o=null==t?void 0:r(t,e);return void 0===o?n:o}},9095:function(t,e,n){var r=n(13),o=n(222);t.exports=function(t,e){return null!=t&&o(t,e,r)}},6557:function(t){t.exports=function(t){return t}},5694:function(t,e,n){var r=n(9454),o=n(7005),i=Object.prototype,a=i.hasOwnProperty,u=i.propertyIsEnumerable,c=r(function(){return arguments}())?r:function(t){return o(t)&&a.call(t,"callee")&&!u.call(t,"callee")};t.exports=c},1469:function(t){var e=Array.isArray;t.exports=e},8612:function(t,e,n){var r=n(3560),o=n(1780);t.exports=function(t){return null!=t&&o(t.length)&&!r(t)}},4144:function(t,e,n){t=n.nmd(t);var r=n(5639),o=n(5062),i=e&&!e.nodeType&&e,a=i&&t&&!t.nodeType&&t,u=a&&a.exports===i?r.Buffer:void 0,c=(u?u.isBuffer:void 0)||o;t.exports=c},8446:function(t,e,n){var r=n(939);t.exports=function(t,e){return r(t,e)}},3560:function(t,e,n){var r=n(4239),o=n(3218),i="[object AsyncFunction]",a="[object Function]",u="[object GeneratorFunction]",c="[object Proxy]";t.exports=function(t){if(!o(t))return!1;var e=r(t);return e==a||e==u||e==i||e==c}},1780:function(t){var e=9007199254740991;t.exports=function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=e}},7654:function(t,e,n){var r=n(1763);t.exports=function(t){return r(t)&&t!=+t}},4293:function(t){t.exports=function(t){return null==t}},1763:function(t,e,n){var r=n(4239),o=n(7005),i="[object Number]";t.exports=function(t){return"number"==typeof t||o(t)&&r(t)==i}},3218:function(t){t.exports=function(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}},7005:function(t){t.exports=function(t){return null!=t&&"object"==typeof t}},7037:function(t,e,n){var r=n(4239),o=n(1469),i=n(7005),a="[object String]";t.exports=function(t){return"string"==typeof t||!o(t)&&i(t)&&r(t)==a}},3448:function(t,e,n){var r=n(4239),o=n(7005),i="[object Symbol]";t.exports=function(t){return"symbol"==typeof t||o(t)&&r(t)==i}},6719:function(t,e,n){var r=n(8749),o=n(1717),i=n(1167),a=i&&i.isTypedArray,u=a?o(a):r;t.exports=u},3674:function(t,e,n){var r=n(4636),o=n(280),i=n(8612);t.exports=function(t){return i(t)?r(t):o(t)}},928:function(t){t.exports=function(t){var e=null==t?0:t.length;return e?t[e-1]:void 0}},5161:function(t,e,n){var r=n(9932),o=n(7206),i=n(9199),a=n(1469);t.exports=function(t,e){return(a(t)?r:i)(t,o(e,3))}},6162:function(t,e,n){var r=n(6029),o=n(3325),i=n(6557);t.exports=function(t){return t&&t.length?r(t,i,o):void 0}},8306:function(t,e,n){var r=n(3369),o="Expected a function";function i(t,e){if("function"!=typeof t||null!=e&&"function"!=typeof e)throw new TypeError(o);var n=function(){var r=arguments,o=e?e.apply(this,r):r[0],i=n.cache;if(i.has(o))return i.get(o);var a=t.apply(this,r);return n.cache=i.set(o,a)||i,a};return n.cache=new(i.Cache||r),n}i.Cache=r,t.exports=i},3632:function(t,e,n){var r=n(6029),o=n(433),i=n(6557);t.exports=function(t){return t&&t.length?r(t,i,o):void 0}},308:function(t){t.exports=function(){}},7771:function(t,e,n){var r=n(5639);t.exports=function(){return r.Date.now()}},9601:function(t,e,n){var r=n(371),o=n(9152),i=n(5403),a=n(327);t.exports=function(t){return i(t)?r(a(t)):o(t)}},9734:function(t,e,n){var r=n(1078),o=n(2689),i=n(5976),a=n(6612),u=i((function(t,e){if(null==t)return[];var n=e.length;return n>1&&a(t,e[0],e[1])?e=[]:n>2&&a(e[0],e[1],e[2])&&(e=[e[0]]),o(t,r(e,1),[])}));t.exports=u},479:function(t){t.exports=function(){return[]}},5062:function(t){t.exports=function(){return!1}},3493:function(t,e,n){var r=n(3279),o=n(3218),i="Expected a function";t.exports=function(t,e,n){var a=!0,u=!0;if("function"!=typeof t)throw new TypeError(i);return o(n)&&(a="leading"in n?!!n.leading:a,u="trailing"in n?!!n.trailing:u),r(t,e,{leading:a,maxWait:e,trailing:u})}},4841:function(t,e,n){var r=n(7561),o=n(3218),i=n(3448),a=NaN,u=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,l=/^0o[0-7]+$/i,s=parseInt;t.exports=function(t){if("number"==typeof t)return t;if(i(t))return a;if(o(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=o(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=r(t);var n=c.test(t);return n||l.test(t)?s(t.slice(2),n?2:8):u.test(t)?a:+t}},9833:function(t,e,n){var r=n(531);t.exports=function(t){return null==t?"":r(t)}},5578:function(t,e,n){var r=n(7206),o=n(5652);t.exports=function(t,e){return t&&t.length?o(t,r(e,2)):[]}},1700:function(t,e,n){var r=n(8805)("toUpperCase");t.exports=r},9921:function(t,e){"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,i=n?Symbol.for("react.fragment"):60107,a=n?Symbol.for("react.strict_mode"):60108,u=n?Symbol.for("react.profiler"):60114,c=n?Symbol.for("react.provider"):60109,l=n?Symbol.for("react.context"):60110,s=n?Symbol.for("react.async_mode"):60111,f=n?Symbol.for("react.concurrent_mode"):60111,p=n?Symbol.for("react.forward_ref"):60112,h=n?Symbol.for("react.suspense"):60113,d=n?Symbol.for("react.suspense_list"):60120,y=n?Symbol.for("react.memo"):60115,v=n?Symbol.for("react.lazy"):60116,m=n?Symbol.for("react.block"):60121,g=n?Symbol.for("react.fundamental"):60117,b=n?Symbol.for("react.responder"):60118,w=n?Symbol.for("react.scope"):60119;function x(t){if("object"==typeof t&&null!==t){var e=t.$$typeof;switch(e){case r:switch(t=t.type){case s:case f:case i:case u:case a:case h:return t;default:switch(t=t&&t.$$typeof){case l:case p:case v:case y:case c:return t;default:return e}}case o:return e}}}function O(t){return x(t)===f}e.AsyncMode=s,e.ConcurrentMode=f,e.ContextConsumer=l,e.ContextProvider=c,e.Element=r,e.ForwardRef=p,e.Fragment=i,e.Lazy=v,e.Memo=y,e.Portal=o,e.Profiler=u,e.StrictMode=a,e.Suspense=h,e.isAsyncMode=function(t){return O(t)||x(t)===s},e.isConcurrentMode=O,e.isContextConsumer=function(t){return x(t)===l},e.isContextProvider=function(t){return x(t)===c},e.isElement=function(t){return"object"==typeof t&&null!==t&&t.$$typeof===r},e.isForwardRef=function(t){return x(t)===p},e.isFragment=function(t){return x(t)===i},e.isLazy=function(t){return x(t)===v},e.isMemo=function(t){return x(t)===y},e.isPortal=function(t){return x(t)===o},e.isProfiler=function(t){return x(t)===u},e.isStrictMode=function(t){return x(t)===a},e.isSuspense=function(t){return x(t)===h},e.isValidElementType=function(t){return"string"==typeof t||"function"==typeof t||t===i||t===f||t===u||t===a||t===h||t===d||"object"==typeof t&&null!==t&&(t.$$typeof===v||t.$$typeof===y||t.$$typeof===c||t.$$typeof===l||t.$$typeof===p||t.$$typeof===g||t.$$typeof===b||t.$$typeof===w||t.$$typeof===m)},e.typeOf=x},9864:function(t,e,n){"use strict";t.exports=n(9921)},8181:function(t,e,n){"use strict";n.d(e,{ZP:function(){return Mt},bO:function(){return x}});var r=n(7294),o=n(5697),i=n.n(o),a=n(8367);function u(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=-1;requestAnimationFrame((function r(o){n<0&&(n=o),o-n>e?(t(o),n=-1):requestAnimationFrame(r)}))}function c(t){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},c(t)}function l(t){return function(t){if(Array.isArray(t))return t}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(t,e)}(t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);nt.length)&&(e=t.length);for(var n=0,r=new Array(e);n=0&&t<=1}));var l,s,f=k(r,i),p=k(o,a),h=(l=r,s=i,function(t){var e=A(l,s),n=[].concat(S(e.map((function(t,e){return t*e})).slice(1)),[0]);return P(n,t)}),d=function(t){for(var e,n=t>1?1:t,r=n,o=0;o<8;++o){var i=f(r)-n,a=h(r);if(Math.abs(i-n)1?1:e<0?0:e}return p(r)};return d.isStepper=!1,d},_=function(){for(var t=arguments.length,e=new Array(t),n=0;n0&&void 0!==arguments[0]?arguments[0]:{},e=t.stiff,n=void 0===e?100:e,r=t.damping,o=void 0===r?8:r,i=t.dt,a=void 0===i?17:i,u=function(t,e,r){var i=r+(-(t-e)*n-r*o)*a/1e3,u=r*a/1e3+t;return Math.abs(u-e)t.length)&&(e=t.length);for(var n=0,r=new Array(e);n=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}function G(t){return function(t){if(Array.isArray(t))return V(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return V(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return V(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function V(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n0?n[o-1]:r,p=l||Object.keys(c);if("function"==typeof u||"spring"===u)return[].concat(G(t),[e.runJSAnimation.bind(e,{from:f.style,to:c,duration:i,easing:u}),i]);var h=O(p,i,u),d=X(X(X({},f.style),c),{},{transition:h});return[].concat(G(t),[d,i,s]).filter(b)}),[a,Math.max(c,r)])),[t.onAnimationEnd]))}},{key:"runAnimation",value:function(t){this.manager||(this.manager=f());var e=t.begin,n=t.duration,r=t.attributeName,o=t.to,i=t.easing,a=t.onAnimationStart,u=t.onAnimationEnd,c=t.steps,l=t.children,s=this.manager;if(this.unSubscribe=s.subscribe(this.handleStyleChange),"function"!=typeof i&&"function"!=typeof l&&"spring"!==i)if(c.length>1)this.runStepAnimation(t);else{var p=r?ot({},r,o):o,h=O(Object.keys(p),n,i);s.start([a,e,X(X({},p),{},{transition:h}),n,u])}else this.runJSAnimation(t)}},{key:"handleStyleChange",value:function(t){this.changeStyle(t)}},{key:"changeStyle",value:function(t){this.mounted&&this.setState({style:t})}},{key:"render",value:function(){var t=this.props,e=t.children,n=(t.begin,t.duration,t.attributeName,t.easing,t.isActive),o=(t.steps,t.from,t.to,t.canBegin,t.onAnimationEnd,t.shouldReAnimate,t.onAnimationReStart,Y(t,W)),i=r.Children.count(e),a=x(this.state.style);if("function"==typeof e)return e(a);if(!n||0===i)return e;var u=function(t){var e=t.props,n=e.style,i=void 0===n?{}:n,u=e.className;return(0,r.cloneElement)(t,X(X({},o),{},{style:X(X({},i),a),className:u}))};return 1===i?u(r.Children.only(e)):r.createElement("div",null,r.Children.map(e,(function(t){return u(t)})))}}])&&J(e.prototype,n),o&&J(e,o),Object.defineProperty(e,"prototype",{writable:!1}),u}(r.PureComponent);ot(at,"displayName","Animate"),ot(at,"propTypes",{from:i().oneOfType([i().object,i().string]),to:i().oneOfType([i().object,i().string]),attributeName:i().string,duration:i().number,begin:i().number,easing:i().oneOfType([i().string,i().func]),steps:i().arrayOf(i().shape({duration:i().number.isRequired,style:i().object.isRequired,easing:i().oneOfType([i().oneOf(["ease","ease-in","ease-out","ease-in-out","linear"]),i().func]),properties:i().arrayOf("string"),onAnimationEnd:i().func})),children:i().oneOfType([i().node,i().func]),isActive:i().bool,canBegin:i().bool,onAnimationEnd:i().func,shouldReAnimate:i().bool,onAnimationStart:i().func,onAnimationReStart:i().func}),ot(at,"defaultProps",{begin:0,duration:1e3,from:"",to:"",attributeName:"",easing:"ease",isActive:!0,canBegin:!0,steps:[],onAnimationEnd:function(){},onAnimationStart:function(){}});var ut=at,ct=n(4317),lt=["children","appearOptions","enterOptions","leaveOptions"];function st(t){return st="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},st(t)}function ft(){return ft=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}function ht(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function dt(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:{},e=t.steps,n=t.duration;return e&&e.length?e.reduce((function(t,e){return t+(Number.isFinite(e.duration)&&e.duration>0?e.duration:0)}),0):Number.isFinite(n)?n:0},jt=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&vt(t,e)}(a,t);var e,n,o,i=mt(a);function a(){var t;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a);for(var e=arguments.length,n=new Array(e),r=0;r=0||(o[n]=t[n]);return o}(t,["children","in"]),a=r.default.Children.toArray(e),u=a[0],c=a[1];return delete o.onEnter,delete o.onEntering,delete o.onEntered,delete o.onExit,delete o.onExiting,delete o.onExited,r.default.createElement(i.default,o,n?r.default.cloneElement(u,{key:"first",onEnter:this.handleEnter,onEntering:this.handleEntering,onEntered:this.handleEntered}):r.default.cloneElement(c,{key:"second",onEnter:this.handleExit,onEntering:this.handleExiting,onEntered:this.handleExited}))},a}(r.default.Component);u.propTypes={};var c=u;e.default=c,t.exports=e.default},644:function(t,e,n){"use strict";e.__esModule=!0,e.default=e.EXITING=e.ENTERED=e.ENTERING=e.EXITED=e.UNMOUNTED=void 0;var r=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)if(Object.prototype.hasOwnProperty.call(t,n)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(t,n):{};r.get||r.set?Object.defineProperty(e,n,r):e[n]=t[n]}return e.default=t,e}(n(5697)),o=u(n(7294)),i=u(n(3935)),a=n(9712);n(4726);function u(t){return t&&t.__esModule?t:{default:t}}var c="unmounted";e.UNMOUNTED=c;var l="exited";e.EXITED=l;var s="entering";e.ENTERING=s;var f="entered";e.ENTERED=f;var p="exiting";e.EXITING=p;var h=function(t){var e,n;function r(e,n){var r;r=t.call(this,e,n)||this;var o,i=n.transitionGroup,a=i&&!i.isMounting?e.enter:e.appear;return r.appearStatus=null,e.in?a?(o=l,r.appearStatus=s):o=f:o=e.unmountOnExit||e.mountOnEnter?c:l,r.state={status:o},r.nextCallback=null,r}n=t,(e=r).prototype=Object.create(n.prototype),e.prototype.constructor=e,e.__proto__=n;var a=r.prototype;return a.getChildContext=function(){return{transitionGroup:null}},r.getDerivedStateFromProps=function(t,e){return t.in&&e.status===c?{status:l}:null},a.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},a.componentDidUpdate=function(t){var e=null;if(t!==this.props){var n=this.state.status;this.props.in?n!==s&&n!==f&&(e=s):n!==s&&n!==f||(e=p)}this.updateStatus(!1,e)},a.componentWillUnmount=function(){this.cancelNextCallback()},a.getTimeouts=function(){var t,e,n,r=this.props.timeout;return t=e=n=r,null!=r&&"number"!=typeof r&&(t=r.exit,e=r.enter,n=void 0!==r.appear?r.appear:e),{exit:t,enter:e,appear:n}},a.updateStatus=function(t,e){if(void 0===t&&(t=!1),null!==e){this.cancelNextCallback();var n=i.default.findDOMNode(this);e===s?this.performEnter(n,t):this.performExit(n)}else this.props.unmountOnExit&&this.state.status===l&&this.setState({status:c})},a.performEnter=function(t,e){var n=this,r=this.props.enter,o=this.context.transitionGroup?this.context.transitionGroup.isMounting:e,i=this.getTimeouts(),a=o?i.appear:i.enter;e||r?(this.props.onEnter(t,o),this.safeSetState({status:s},(function(){n.props.onEntering(t,o),n.onTransitionEnd(t,a,(function(){n.safeSetState({status:f},(function(){n.props.onEntered(t,o)}))}))}))):this.safeSetState({status:f},(function(){n.props.onEntered(t)}))},a.performExit=function(t){var e=this,n=this.props.exit,r=this.getTimeouts();n?(this.props.onExit(t),this.safeSetState({status:p},(function(){e.props.onExiting(t),e.onTransitionEnd(t,r.exit,(function(){e.safeSetState({status:l},(function(){e.props.onExited(t)}))}))}))):this.safeSetState({status:l},(function(){e.props.onExited(t)}))},a.cancelNextCallback=function(){null!==this.nextCallback&&(this.nextCallback.cancel(),this.nextCallback=null)},a.safeSetState=function(t,e){e=this.setNextCallback(e),this.setState(t,e)},a.setNextCallback=function(t){var e=this,n=!0;return this.nextCallback=function(r){n&&(n=!1,e.nextCallback=null,t(r))},this.nextCallback.cancel=function(){n=!1},this.nextCallback},a.onTransitionEnd=function(t,e,n){this.setNextCallback(n);var r=null==e&&!this.props.addEndListener;t&&!r?(this.props.addEndListener&&this.props.addEndListener(t,this.nextCallback),null!=e&&setTimeout(this.nextCallback,e)):setTimeout(this.nextCallback,0)},a.render=function(){var t=this.state.status;if(t===c)return null;var e=this.props,n=e.children,r=function(t,e){if(null==t)return{};var n,r,o={},i=Object.keys(t);for(r=0;r=0||(o[n]=t[n]);return o}(e,["children"]);if(delete r.in,delete r.mountOnEnter,delete r.unmountOnExit,delete r.appear,delete r.enter,delete r.exit,delete r.timeout,delete r.addEndListener,delete r.onEnter,delete r.onEntering,delete r.onEntered,delete r.onExit,delete r.onExiting,delete r.onExited,"function"==typeof n)return n(t,r);var i=o.default.Children.only(n);return o.default.cloneElement(i,r)},r}(o.default.Component);function d(){}h.contextTypes={transitionGroup:r.object},h.childContextTypes={transitionGroup:function(){}},h.propTypes={},h.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:d,onEntering:d,onEntered:d,onExit:d,onExiting:d,onExited:d},h.UNMOUNTED=0,h.EXITED=1,h.ENTERING=2,h.ENTERED=3,h.EXITING=4;var y=(0,a.polyfill)(h);e.default=y},2381:function(t,e,n){"use strict";e.__esModule=!0,e.default=void 0;var r=u(n(5697)),o=u(n(7294)),i=n(9712),a=n(537);function u(t){return t&&t.__esModule?t:{default:t}}function c(){return c=Object.assign||function(t){for(var e=1;e=0||(o[n]=t[n]);return o}(t,["component","childFactory"]),i=s(this.state.children).map(n);return delete r.appear,delete r.enter,delete r.exit,null===e?i:o.default.createElement(e,r,i)},r}(o.default.Component);f.childContextTypes={transitionGroup:r.default.object.isRequired},f.propTypes={},f.defaultProps={component:"div",childFactory:function(t){return t}};var p=(0,i.polyfill)(f);e.default=p,t.exports=e.default},4317:function(t,e,n){"use strict";var r=u(n(129)),o=u(n(6093)),i=u(n(2381)),a=u(n(644));function u(t){return t&&t.__esModule?t:{default:t}}t.exports={Transition:a.default,TransitionGroup:i.default,ReplaceTransition:o.default,CSSTransition:r.default}},537:function(t,e,n){"use strict";e.__esModule=!0,e.getChildMapping=o,e.mergeChildMappings=i,e.getInitialChildMapping=function(t,e){return o(t.children,(function(n){return(0,r.cloneElement)(n,{onExited:e.bind(null,n),in:!0,appear:a(n,"appear",t),enter:a(n,"enter",t),exit:a(n,"exit",t)})}))},e.getNextChildMapping=function(t,e,n){var u=o(t.children),c=i(e,u);return Object.keys(c).forEach((function(o){var i=c[o];if((0,r.isValidElement)(i)){var l=o in e,s=o in u,f=e[o],p=(0,r.isValidElement)(f)&&!f.props.in;!s||l&&!p?s||!l||p?s&&l&&(0,r.isValidElement)(f)&&(c[o]=(0,r.cloneElement)(i,{onExited:n.bind(null,i),in:f.props.in,exit:a(i,"exit",t),enter:a(i,"enter",t)})):c[o]=(0,r.cloneElement)(i,{in:!1}):c[o]=(0,r.cloneElement)(i,{onExited:n.bind(null,i),in:!0,exit:a(i,"exit",t),enter:a(i,"enter",t)})}})),c};var r=n(7294);function o(t,e){var n=Object.create(null);return t&&r.Children.map(t,(function(t){return t})).forEach((function(t){n[t.key]=function(t){return e&&(0,r.isValidElement)(t)?e(t):t}(t)})),n}function i(t,e){function n(n){return n in e?e[n]:t[n]}t=t||{},e=e||{};var r,o=Object.create(null),i=[];for(var a in t)a in e?i.length&&(o[a]=i,i=[]):i.push(a);var u={};for(var c in e){if(o[c])for(r=0;rt.length)&&(e=t.length);for(var n=0,r=new Array(e);n=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}function f(t){var e=t.offset,n=t.layout,l=t.width,f=t.dataKey,p=t.data,h=t.dataPointFormatter,d=t.xAxis,y=t.yAxis,v=s(t,a),m=(0,i.L6)(v),g=p.map((function(t,i){var a=h(t,f),s=a.x,p=a.y,v=a.value,g=a.errorVal;if(!g)return null;var b,w,x=[];if(Array.isArray(g)){var O=c(g,2);b=O[0],w=O[1]}else b=w=g;if("vertical"===n){var j=d.scale,S=p+e,E=S+l,M=S-l,C=j(v-b),A=j(v+w);x.push({x1:A,y1:E,x2:A,y2:M}),x.push({x1:C,y1:S,x2:A,y2:S}),x.push({x1:C,y1:E,x2:C,y2:M})}else if("horizontal"===n){var P=y.scale,k=s+e,T=k-l,_=k+l,N=P(v-b),D=P(v+w);x.push({x1:T,y1:D,x2:_,y2:D}),x.push({x1:k,y1:N,x2:k,y2:D}),x.push({x1:T,y1:N,x2:_,y2:N})}return r.createElement(o.m,u({className:"recharts-errorBar",key:"bar-".concat(i)},m),x.map((function(t,e){return r.createElement("line",u({},t,{key:"line-".concat(e)}))})))}));return r.createElement(o.m,{className:"recharts-errorBars"},g)}f.defaultProps={stroke:"black",strokeWidth:1.5,width:5,offset:0,layout:"horizontal"},f.displayName="ErrorBar"},8312:function(t,e,n){"use strict";n.d(e,{D:function(){return Ot}});var r=n(3560),o=n.n(r),i=n(5578),a=n.n(i),u=n(7294),c=n(4184),l=n.n(c),s=n(514),f=n(1700),p=n.n(f);Math.abs,Math.atan2;const h=Math.cos,d=(Math.max,Math.min,Math.sin),y=Math.sqrt,v=Math.PI,m=2*v;var g={draw(t,e){const n=y(e/v);t.moveTo(n,0),t.arc(0,0,n,0,m)}},b={draw(t,e){const n=y(e/5)/2;t.moveTo(-3*n,-n),t.lineTo(-n,-n),t.lineTo(-n,-3*n),t.lineTo(n,-3*n),t.lineTo(n,-n),t.lineTo(3*n,-n),t.lineTo(3*n,n),t.lineTo(n,n),t.lineTo(n,3*n),t.lineTo(-n,3*n),t.lineTo(-n,n),t.lineTo(-3*n,n),t.closePath()}};const w=y(1/3),x=2*w;var O={draw(t,e){const n=y(e/x),r=n*w;t.moveTo(0,-n),t.lineTo(r,0),t.lineTo(0,n),t.lineTo(-r,0),t.closePath()}},j={draw(t,e){const n=y(e),r=-n/2;t.rect(r,r,n,n)}};const S=d(v/10)/d(7*v/10),E=d(m/10)*S,M=-h(m/10)*S;var C={draw(t,e){const n=y(.8908130915292852*e),r=E*n,o=M*n;t.moveTo(0,-n),t.lineTo(r,o);for(let i=1;i<5;++i){const e=m*i/5,a=h(e),u=d(e);t.lineTo(u*n,-a*n),t.lineTo(a*r-u*o,u*r+a*o)}t.closePath()}};const A=y(3);var P={draw(t,e){const n=-y(e/(3*A));t.moveTo(0,2*n),t.lineTo(-A*n,-n),t.lineTo(A*n,-n),t.closePath()}};const k=-.5,T=y(3)/2,_=1/y(12),N=3*(_/2+1);var D={draw(t,e){const n=y(e/N),r=n/2,o=n*_,i=r,a=n*_+n,u=-i,c=a;t.moveTo(r,o),t.lineTo(i,a),t.lineTo(u,c),t.lineTo(k*r-T*o,T*r+k*o),t.lineTo(k*i-T*a,T*i+k*a),t.lineTo(k*u-T*c,T*u+k*c),t.lineTo(k*r+T*o,k*o-T*r),t.lineTo(k*i+T*a,k*a-T*i),t.lineTo(k*u+T*c,k*c-T*u),t.closePath()}},R=n(309),U=n(633);y(3);y(3);var I=n(2017);function L(t){return L="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},L(t)}function $(){return $=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}function wt(t){return t.value}function xt(t,e){return!0===t?a()(e,wt):o()(t)?a()(e,t):e}var Ot=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ht(t,e)}(a,t);var e,n,r,i=dt(a);function a(){var t;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a);for(var e=arguments.length,n=new Array(e),r=0;r=0&&n>=0?{width:e,height:n}:null}},{key:"getDefaultPosition",value:function(t){var e,n,r=this.props,o=r.layout,i=r.align,a=r.verticalAlign,u=r.margin,c=r.chartWidth,l=r.chartHeight;return t&&(void 0!==t.left&&null!==t.left||void 0!==t.right&&null!==t.right)||(e="center"===i&&"vertical"===o?{left:((c||0)-(this.getBBoxSnapshot()||{width:0}).width)/2}:"right"===i?{right:u&&u.right||0}:{left:u&&u.left||0}),t&&(void 0!==t.top&&null!==t.top||void 0!==t.bottom&&null!==t.bottom)||(n="middle"===a?{top:((l||0)-(this.getBBoxSnapshot()||{height:0}).height)/2}:"bottom"===a?{bottom:u&&u.bottom||0}:{top:u&&u.top||0}),ft(ft({},e),n)}},{key:"updateBBox",value:function(){var t=this.state,e=t.boxWidth,n=t.boxHeight,r=this.props.onBBoxUpdate;if(this.wrapperNode&&this.wrapperNode.getBoundingClientRect){var o=this.wrapperNode.getBoundingClientRect();(Math.abs(o.width-e)>1||Math.abs(o.height-n)>1)&&this.setState({boxWidth:o.width,boxHeight:o.height},(function(){r&&r(o)}))}else-1===e&&-1===n||this.setState({boxWidth:-1,boxHeight:-1},(function(){r&&r(null)}))}},{key:"render",value:function(){var t=this,e=this.props,n=e.content,r=e.width,i=e.height,a=e.wrapperStyle,c=e.payloadUniqBy,l=e.payload,s=ft(ft({position:"absolute",width:r||"auto",height:i||"auto"},this.getDefaultPosition(a)),a);return u.createElement("div",{className:"recharts-legend-wrapper",style:s,ref:function(e){t.wrapperNode=e}},function(t,e){if(u.isValidElement(t))return u.cloneElement(t,e);if(o()(t))return u.createElement(t,e);e.ref;var n=bt(e,lt);return u.createElement(at,n)}(n,ft(ft({},this.props),{},{payload:xt(c,l)})))}}])&&pt(e.prototype,n),r&&pt(e,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(u.PureComponent);mt(Ot,"displayName","Legend"),mt(Ot,"defaultProps",{iconSize:14,layout:"horizontal",align:"center",verticalAlign:"bottom"})},4965:function(t,e,n){"use strict";n.d(e,{h:function(){return E}});var r=n(4184),o=n.n(r),i=n(7294),a=n(3935),u=n(3279),c=n.n(u),l=n(3493),s=n.n(l),f=function(t,e){return f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])},f(t,e)};function p(t,e){function n(){this.constructor=t}f(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}function h(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(t);ot.length)&&(e=t.length);for(var n=0,r=new Array(e);n0,"The aspect(%s) must be greater than zero.",n);var r=(0,w.hU)(a)?t:a,o=(0,w.hU)(c)?e:c;return n&&n>0&&(r?o=r/n:o&&(r=o*n),p&&o>p&&(o=p)),(0,x.Z)(r>0||o>0,"The width(%s) and height(%s) of chart should be greater than 0,\n please check the style of container, or the props width(%s) and height(%s),\n or add a minWidth(%s) or minHeight(%s) or use aspect(%s) to control the\n height and width.",r,o,a,c,s,f,n),(0,i.cloneElement)(h,{width:r,height:o})}),[n,h,c,p,f,s,E,a]);(0,i.useEffect)((function(){var t=A();t&&M(t)}),[A]);var T={width:a,height:c,minWidth:s,minHeight:f,maxHeight:p};return i.createElement(b,{handleWidth:!0,handleHeight:!0,onResize:P,targetRef:C,refreshMode:y>0?"debounce":void 0,refreshRate:y},i.createElement("div",O({},null!=v?{id:"".concat(v)}:{},{className:o()("recharts-responsive-container",m),style:T,ref:C}),k))}))},9307:function(t,e,n){"use strict";n.d(e,{u:function(){return H}});var r=n(4293),o=n.n(r),i=n(3560),a=n.n(i),u=n(5578),c=n.n(u),l=n(7294),s=n(8181),f=n(4184),p=n.n(f),h=n(9734),d=n.n(h),y=n(1469),v=n.n(y),m=n(9055);function g(t){return g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},g(t)}function b(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=n){var r,o,i,a,u=[],c=!0,l=!1;try{if(i=(n=n.call(t)).next,0===e){if(Object(n)!==n)return;c=!1}else for(;!(c=(r=i.call(n)).done)&&(u.push(r.value),u.length!==e);c=!0);}catch(s){l=!0,o=s}finally{try{if(!c&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(l)throw o}}return u}}(t,e)||function(t,e){if(!t)return;if("string"==typeof t)return w(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return w(t,e)}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);nf[n]+o?Math.max(p,f[n]):Math.max(h,f[n])})),t}return e=u,(n=[{key:"componentDidMount",value:function(){this.updateBBox()}},{key:"componentDidUpdate",value:function(){this.updateBBox()}},{key:"updateBBox",value:function(){var t=this.state,e=t.boxWidth,n=t.boxHeight;if(t.dismissed?(this.wrapperNode.blur(),this.props.coordinate.x===this.state.dismissedAtCoordinate.x&&this.props.coordinate.y===this.state.dismissedAtCoordinate.y||this.setState({dismissed:!1})):this.wrapperNode.focus({preventScroll:!0}),this.wrapperNode&&this.wrapperNode.getBoundingClientRect){var r=this.wrapperNode.getBoundingClientRect();(Math.abs(r.width-e)>1||Math.abs(r.height-n)>1)&&this.setState({boxWidth:r.width,boxHeight:r.height})}else-1===e&&-1===n||this.setState({boxWidth:-1,boxHeight:-1})}},{key:"render",value:function(){var t,e,n,r=this,i=this.props,u=i.payload,f=i.isAnimationActive,h=i.animationDuration,d=i.animationEasing,y=i.filterNull,v=function(t,e){return!0===t?c()(e,q):a()(t)?c()(e,t):e}(i.payloadUniqBy,y&&u&&u.length?u.filter((function(t){return!o()(t.value)})):u),g=v&&v.length,b=this.props,w=b.content,x=b.viewBox,O=b.coordinate,j=b.position,S=b.active,E=b.wrapperStyle,M=D({pointerEvents:"none",visibility:!this.state.dismissed&&S&&g?"visible":"hidden",position:"absolute",top:0,left:0},E);if(j&&(0,m.hj)(j.x)&&(0,m.hj)(j.y))e=j.x,n=j.y;else{var C=this.state,A=C.boxWidth,P=C.boxHeight;A>0&&P>0&&O?(e=this.getTranslate({key:"x",tooltipDimension:A,viewBoxDimension:x.width}),n=this.getTranslate({key:"y",tooltipDimension:P,viewBoxDimension:x.height})):M.visibility="hidden"}M=D(D({},(0,s.bO)({transform:this.props.useTranslate3d?"translate3d(".concat(e,"px, ").concat(n,"px, 0)"):"translate(".concat(e,"px, ").concat(n,"px)")})),M),f&&S&&(M=D(D({},(0,s.bO)({transition:"transform ".concat(h,"ms ").concat(d)})),M));var T=p()(F,(z(t={},"".concat(F,"-right"),(0,m.hj)(e)&&O&&(0,m.hj)(O.x)&&e>=O.x),z(t,"".concat(F,"-left"),(0,m.hj)(e)&&O&&(0,m.hj)(O.x)&&e=O.y),z(t,"".concat(F,"-top"),(0,m.hj)(n)&&O&&(0,m.hj)(O.y)&&n=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}var s=r.forwardRef((function(t,e){var n=t.children,o=t.className,s=l(t,u),f=i()("recharts-layer",o);return r.createElement("g",c({className:f},(0,a.L6)(s,!0),{ref:e}),n)}))},514:function(t,e,n){"use strict";n.d(e,{T:function(){return s}});var r=n(7294),o=n(4184),i=n.n(o),a=n(2017),u=["children","width","height","viewBox","className","style"];function c(){return c=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}function s(t){var e=t.children,n=t.width,o=t.height,s=t.viewBox,f=t.className,p=t.style,h=l(t,u),d=s||{width:n,height:o,x:0,y:0},y=i()("recharts-surface",f);return r.createElement("svg",c({},(0,a.L6)(h,!0,"svg"),{className:y,width:n,height:o,style:p,viewBox:"".concat(d.x," ").concat(d.y," ").concat(d.width," ").concat(d.height)}),r.createElement("title",null,t.title),r.createElement("desc",null,t.desc),e)}},3481:function(t,e,n){"use strict";n.d(e,{A:function(){return b},X:function(){return g}});var r=n(7294),o=n(4184),i=n.n(o),a=n(8181),u=n(2017);function c(t){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},c(t)}function l(){return l=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0?1:-1,c=n>=0?1:-1,l=r>=0&&n>=0||r<0&&n<0?1:0;if(a>0&&o instanceof Array){for(var s=[0,0,0,0],f=0;f<4;f++)s[f]=o[f]>a?a:o[f];i="M".concat(t,",").concat(e+u*s[0]),s[0]>0&&(i+="A ".concat(s[0],",").concat(s[0],",0,0,").concat(l,",").concat(t+c*s[0],",").concat(e)),i+="L ".concat(t+n-c*s[1],",").concat(e),s[1]>0&&(i+="A ".concat(s[1],",").concat(s[1],",0,0,").concat(l,",\n ").concat(t+n,",").concat(e+u*s[1])),i+="L ".concat(t+n,",").concat(e+r-u*s[2]),s[2]>0&&(i+="A ".concat(s[2],",").concat(s[2],",0,0,").concat(l,",\n ").concat(t+n-c*s[2],",").concat(e+r)),i+="L ".concat(t+c*s[3],",").concat(e+r),s[3]>0&&(i+="A ".concat(s[3],",").concat(s[3],",0,0,").concat(l,",\n ").concat(t,",").concat(e+r-u*s[3])),i+="Z"}else if(a>0&&o===+o&&o>0){var p=Math.min(a,o);i="M ".concat(t,",").concat(e+u*p,"\n A ").concat(p,",").concat(p,",0,0,").concat(l,",").concat(t+c*p,",").concat(e,"\n L ").concat(t+n-c*p,",").concat(e,"\n A ").concat(p,",").concat(p,",0,0,").concat(l,",").concat(t+n,",").concat(e+u*p,"\n L ").concat(t+n,",").concat(e+r-u*p,"\n A ").concat(p,",").concat(p,",0,0,").concat(l,",").concat(t+n-c*p,",").concat(e+r,"\n L ").concat(t+c*p,",").concat(e+r,"\n A ").concat(p,",").concat(p,",0,0,").concat(l,",").concat(t,",").concat(e+r-u*p," Z")}else i="M ".concat(t,",").concat(e," h ").concat(n," v ").concat(r," h ").concat(-n," Z");return i},g=function(t,e){if(!t||!e)return!1;var n=t.x,r=t.y,o=e.x,i=e.y,a=e.width,u=e.height;if(Math.abs(a)>0&&Math.abs(u)>0){var c=Math.min(o,o+a),l=Math.max(o,o+a),s=Math.min(i,i+u),f=Math.max(i,i+u);return n>=c&&n<=l&&r>=s&&r<=f}return!1},b=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&f(t,e)}(d,t);var e,n,o,c=p(d);function d(){var t;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,d);for(var e=arguments.length,n=new Array(e),r=0;r0,from:{width:c,height:s,x:n,y:o},to:{width:c,height:s,x:n,y:o},duration:v,animationEasing:y,isActive:w},(function(e){var n=e.width,o=e.height,i=e.x,c=e.y;return r.createElement(a.ZP,{canBegin:h>0,from:"0px ".concat(-1===h?1:h,"px"),to:"".concat(h,"px 0px"),attributeName:"strokeDasharray",begin:g,duration:v,isActive:b,easing:y},r.createElement("path",l({},(0,u.L6)(t.props,!0),{className:x,d:m(i,c,n,o,f),ref:function(e){t.node=e}})))})):r.createElement("path",l({},(0,u.L6)(this.props,!0),{className:x,d:m(n,o,c,s,f)}))}}])&&s(e.prototype,n),o&&s(e,o),Object.defineProperty(e,"prototype",{writable:!1}),d}(r.PureComponent);y(b,"defaultProps",{x:0,y:0,width:0,height:0,radius:0,isAnimationActive:!1,isUpdateAnimationActive:!1,animationBegin:0,animationDuration:1500,animationEasing:"ease"})},6822:function(t,e,n){"use strict";n.d(e,{By:function(){return Lo},VO:function(){return No},zF:function(){return Go},DO:function(){return Wo},Bu:function(){return Vo},zT:function(){return li},qz:function(){return Io},pt:function(){return Uo},Yj:function(){return ri},Fy:function(){return ni},Hv:function(){return ei},Rf:function(){return qo},gF:function(){return _o},s6:function(){return Bo},EB:function(){return ii},zp:function(){return Ro},fk:function(){return Do},wh:function(){return Qo},O3:function(){return oi},uY:function(){return Ho},g$:function(){return ti},Qo:function(){return fi},F$:function(){return To},NA:function(){return Fo},ko:function(){return si},ZI:function(){return zo},Hq:function(){return Zo},LG:function(){return ci},Vv:function(){return Ko}});var r={};n.r(r),n.d(r,{scaleBand:function(){return A.Z},scaleDiverging:function(){return Ir},scaleDivergingLog:function(){return Lr},scaleDivergingPow:function(){return zr},scaleDivergingSqrt:function(){return Br},scaleDivergingSymlog:function(){return $r},scaleIdentity:function(){return Pt},scaleImplicit:function(){return qt.O},scaleLinear:function(){return At},scaleLog:function(){return Lt},scaleOrdinal:function(){return qt.Z},scalePoint:function(){return A.x},scalePow:function(){return Gt},scaleQuantile:function(){return ae},scaleQuantize:function(){return ue},scaleRadial:function(){return Xt},scaleSequential:function(){return kr},scaleSequentialLog:function(){return Tr},scaleSequentialPow:function(){return Nr},scaleSequentialQuantile:function(){return Rr},scaleSequentialSqrt:function(){return Dr},scaleSequentialSymlog:function(){return _r},scaleSqrt:function(){return Vt},scaleSymlog:function(){return Ft},scaleThreshold:function(){return ce},scaleTime:function(){return Mr},scaleUtc:function(){return Cr},tickFormat:function(){return Mt}});var o=n(8446),i=n.n(o),a=n(9734),u=n.n(a),c=n(1700),l=n.n(c),s=n(7037),f=n.n(s),p=n(7654),h=n.n(p),d=n(1469),y=n.n(d),v=n(6162),m=n.n(v),g=n(3632),b=n.n(g),w=n(4654),x=n.n(w),O=n(3560),j=n.n(O),S=n(7361),E=n.n(S),M=n(4293),C=n.n(M),A=n(996);const P=Math.sqrt(50),k=Math.sqrt(10),T=Math.sqrt(2);function _(t,e,n){const r=(e-t)/Math.max(0,n),o=Math.floor(Math.log10(r)),i=r/Math.pow(10,o),a=i>=P?10:i>=k?5:i>=T?2:1;let u,c,l;return o<0?(l=Math.pow(10,-o)/a,u=Math.round(t*l),c=Math.round(e*l),u/le&&--c,l=-l):(l=Math.pow(10,o)*a,u=Math.round(t/l),c=Math.round(e/l),u*le&&--c),c0))return[];if((t=+t)===(e=+e))return[t];const r=e=o))return[];const u=i-o+1,c=new Array(u);if(r)if(a<0)for(let l=0;le?1:t>=e?0:NaN}function I(t,e){return null==t||null==e?NaN:et?1:e>=t?0:NaN}function L(t){let e,n,r;function o(t,r,o=0,i=t.length){if(o>>1;n(t[e],r)<0?o=e+1:i=e}while(oU(t(e),n),r=(e,n)=>t(e)-n):(e=t===U||t===I?t:$,n=t,r=t),{left:o,center:function(t,e,n=0,i=t.length){const a=o(t,e,n,i-1);return a>n&&r(t[a-1],e)>-r(t[a],e)?a-1:a},right:function(t,r,o=0,i=t.length){if(o>>1;n(t[e],r)<=0?o=e+1:i=e}while(oe&&(n=t,t=e,e=n),l=function(n){return Math.max(t,Math.min(e,n))}),r=c>2?at:it,o=i=null,f}function f(e){return null==e||isNaN(e=+e)?n:(o||(o=r(a.map(t),u,c)))(t(l(e)))}return f.invert=function(n){return l(e((i||(i=r(u,a.map(t),G.Z)))(n)))},f.domain=function(t){return arguments.length?(a=Array.from(t,et),s()):a.slice()},f.range=function(t){return arguments.length?(u=Array.from(t),s()):u.slice()},f.rangeRound=function(t){return u=Array.from(t),c=tt,s()},f.clamp=function(t){return arguments.length?(l=!!t||rt,s()):l!==rt},f.interpolate=function(t){return arguments.length?(c=t,s()):c},f.unknown=function(t){return arguments.length?(n=t,f):n},function(n,r){return t=n,e=r,s()}}function lt(){return ct()(rt,rt)}var st,ft=n(4182),pt=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function ht(t){if(!(e=pt.exec(t)))throw new Error("invalid format: "+t);var e;return new dt({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}function dt(t){this.fill=void 0===t.fill?" ":t.fill+"",this.align=void 0===t.align?">":t.align+"",this.sign=void 0===t.sign?"-":t.sign+"",this.symbol=void 0===t.symbol?"":t.symbol+"",this.zero=!!t.zero,this.width=void 0===t.width?void 0:+t.width,this.comma=!!t.comma,this.precision=void 0===t.precision?void 0:+t.precision,this.trim=!!t.trim,this.type=void 0===t.type?"":t.type+""}function yt(t,e){if((n=(t=e?t.toExponential(e-1):t.toExponential()).indexOf("e"))<0)return null;var n,r=t.slice(0,n);return[r.length>1?r[0]+r.slice(2):r,+t.slice(n+1)]}function vt(t){return(t=yt(Math.abs(t)))?t[1]:NaN}function mt(t,e){var n=yt(t,e);if(!n)return t+"";var r=n[0],o=n[1];return o<0?"0."+new Array(-o).join("0")+r:r.length>o+1?r.slice(0,o+1)+"."+r.slice(o+1):r+new Array(o-r.length+2).join("0")}ht.prototype=dt.prototype,dt.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var gt={"%":(t,e)=>(100*t).toFixed(e),b:t=>Math.round(t).toString(2),c:t=>t+"",d:function(t){return Math.abs(t=Math.round(t))>=1e21?t.toLocaleString("en").replace(/,/g,""):t.toString(10)},e:(t,e)=>t.toExponential(e),f:(t,e)=>t.toFixed(e),g:(t,e)=>t.toPrecision(e),o:t=>Math.round(t).toString(8),p:(t,e)=>mt(100*t,e),r:mt,s:function(t,e){var n=yt(t,e);if(!n)return t+"";var r=n[0],o=n[1],i=o-(st=3*Math.max(-8,Math.min(8,Math.floor(o/3))))+1,a=r.length;return i===a?r:i>a?r+new Array(i-a+1).join("0"):i>0?r.slice(0,i)+"."+r.slice(i):"0."+new Array(1-i).join("0")+yt(t,Math.max(0,e+i-1))[0]},X:t=>Math.round(t).toString(16).toUpperCase(),x:t=>Math.round(t).toString(16)};function bt(t){return t}var wt,xt,Ot,jt=Array.prototype.map,St=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function Et(t){var e,n,r=void 0===t.grouping||void 0===t.thousands?bt:(e=jt.call(t.grouping,Number),n=t.thousands+"",function(t,r){for(var o=t.length,i=[],a=0,u=e[0],c=0;o>0&&u>0&&(c+u+1>r&&(u=Math.max(1,r-c)),i.push(t.substring(o-=u,o+u)),!((c+=u+1)>r));)u=e[a=(a+1)%e.length];return i.reverse().join(n)}),o=void 0===t.currency?"":t.currency[0]+"",i=void 0===t.currency?"":t.currency[1]+"",a=void 0===t.decimal?".":t.decimal+"",u=void 0===t.numerals?bt:function(t){return function(e){return e.replace(/[0-9]/g,(function(e){return t[+e]}))}}(jt.call(t.numerals,String)),c=void 0===t.percent?"%":t.percent+"",l=void 0===t.minus?"−":t.minus+"",s=void 0===t.nan?"NaN":t.nan+"";function f(t){var e=(t=ht(t)).fill,n=t.align,f=t.sign,p=t.symbol,h=t.zero,d=t.width,y=t.comma,v=t.precision,m=t.trim,g=t.type;"n"===g?(y=!0,g="g"):gt[g]||(void 0===v&&(v=12),m=!0,g="g"),(h||"0"===e&&"="===n)&&(h=!0,e="0",n="=");var b="$"===p?o:"#"===p&&/[boxX]/.test(g)?"0"+g.toLowerCase():"",w="$"===p?i:/[%p]/.test(g)?c:"",x=gt[g],O=/[defgprs%]/.test(g);function j(t){var o,i,c,p=b,j=w;if("c"===g)j=x(t)+j,t="";else{var S=(t=+t)<0||1/t<0;if(t=isNaN(t)?s:x(Math.abs(t),v),m&&(t=function(t){t:for(var e,n=t.length,r=1,o=-1;r0&&(o=0)}return o>0?t.slice(0,o)+t.slice(e+1):t}(t)),S&&0==+t&&"+"!==f&&(S=!1),p=(S?"("===f?f:l:"-"===f||"("===f?"":f)+p,j=("s"===g?St[8+st/3]:"")+j+(S&&"("===f?")":""),O)for(o=-1,i=t.length;++o(c=t.charCodeAt(o))||c>57){j=(46===c?a+t.slice(o+1):t.slice(o))+j,t=t.slice(0,o);break}}y&&!h&&(t=r(t,1/0));var E=p.length+t.length+j.length,M=E>1)+p+t+j+M.slice(E);break;default:t=M+p+t+j}return u(t)}return v=void 0===v?6:/[gprs]/.test(g)?Math.max(1,Math.min(21,v)):Math.max(0,Math.min(20,v)),j.toString=function(){return t+""},j}return{format:f,formatPrefix:function(t,e){var n=f(((t=ht(t)).type="f",t)),r=3*Math.max(-8,Math.min(8,Math.floor(vt(e)/3))),o=Math.pow(10,-r),i=St[8+r/3];return function(t){return n(o*t)+i}}}}function Mt(t,e,n,r){var o,i=R(t,e,n);switch((r=ht(null==r?",f":r)).type){case"s":var a=Math.max(Math.abs(t),Math.abs(e));return null!=r.precision||isNaN(o=function(t,e){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(vt(e)/3)))-vt(Math.abs(t)))}(i,a))||(r.precision=o),Ot(r,a);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(o=function(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,vt(e)-vt(t))+1}(i,Math.max(Math.abs(t),Math.abs(e))))||(r.precision=o-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(o=function(t){return Math.max(0,-vt(Math.abs(t)))}(i))||(r.precision=o-2*("%"===r.type))}return xt(r)}function Ct(t){var e=t.domain;return t.ticks=function(t){var n=e();return N(n[0],n[n.length-1],null==t?10:t)},t.tickFormat=function(t,n){var r=e();return Mt(r[0],r[r.length-1],null==t?10:t,n)},t.nice=function(n){null==n&&(n=10);var r,o,i=e(),a=0,u=i.length-1,c=i[a],l=i[u],s=10;for(l0;){if((o=D(c,l,n))===r)return i[a]=c,i[u]=l,e(i);if(o>0)c=Math.floor(c/o)*o,l=Math.ceil(l/o)*o;else{if(!(o<0))break;c=Math.ceil(c*o)/o,l=Math.floor(l*o)/o}r=o}return t},t}function At(){var t=lt();return t.copy=function(){return ut(t,At())},ft.o.apply(t,arguments),Ct(t)}function Pt(t){var e;function n(t){return null==t||isNaN(t=+t)?e:t}return n.invert=n,n.domain=n.range=function(e){return arguments.length?(t=Array.from(e,et),n):t.slice()},n.unknown=function(t){return arguments.length?(e=t,n):e},n.copy=function(){return Pt(t).unknown(e)},t=arguments.length?Array.from(t,et):[0,1],Ct(n)}function kt(t,e){var n,r=0,o=(t=t.slice()).length-1,i=t[r],a=t[o];return a-t(-e,n)}function It(t){const e=t(Tt,_t),n=e.domain;let r,o,i=10;function a(){return r=function(t){return t===Math.E?Math.log:10===t&&Math.log10||2===t&&Math.log2||(t=Math.log(t),e=>Math.log(e)/t)}(i),o=function(t){return 10===t?Rt:t===Math.E?Math.exp:e=>Math.pow(t,e)}(i),n()[0]<0?(r=Ut(r),o=Ut(o),t(Nt,Dt)):t(Tt,_t),e}return e.base=function(t){return arguments.length?(i=+t,a()):i},e.domain=function(t){return arguments.length?(n(t),a()):n()},e.ticks=t=>{const e=n();let a=e[0],u=e[e.length-1];const c=u0){for(;f<=p;++f)for(l=1;lu)break;d.push(s)}}else for(;f<=p;++f)for(l=i-1;l>=1;--l)if(s=f>0?l/o(-f):l*o(f),!(su)break;d.push(s)}2*d.length{if(null==t&&(t=10),null==n&&(n=10===i?"s":","),"function"!=typeof n&&(i%1||null!=(n=ht(n)).precision||(n.trim=!0),n=xt(n)),t===1/0)return n;const a=Math.max(1,i*t/e.ticks().length);return t=>{let e=t/o(Math.round(r(t)));return e*in(kt(n(),{floor:t=>o(Math.floor(r(t))),ceil:t=>o(Math.ceil(r(t)))})),e}function Lt(){const t=It(ct()).domain([1,10]);return t.copy=()=>ut(t,Lt()).base(t.base()),ft.o.apply(t,arguments),t}function $t(t){return function(e){return Math.sign(e)*Math.log1p(Math.abs(e/t))}}function zt(t){return function(e){return Math.sign(e)*Math.expm1(Math.abs(e))*t}}function Bt(t){var e=1,n=t($t(e),zt(e));return n.constant=function(n){return arguments.length?t($t(e=+n),zt(e)):e},Ct(n)}function Ft(){var t=Bt(ct());return t.copy=function(){return ut(t,Ft()).constant(t.constant())},ft.o.apply(t,arguments)}wt=Et({thousands:",",grouping:[3],currency:["$",""]}),xt=wt.format,Ot=wt.formatPrefix;var qt=n(780);function Ht(t){return function(e){return e<0?-Math.pow(-e,t):Math.pow(e,t)}}function Wt(t){return t<0?-Math.sqrt(-t):Math.sqrt(t)}function Zt(t){return t<0?-t*t:t*t}function Yt(t){var e=t(rt,rt),n=1;return e.exponent=function(e){return arguments.length?1===(n=+e)?t(rt,rt):.5===n?t(Wt,Zt):t(Ht(n),Ht(1/n)):n},Ct(e)}function Gt(){var t=Yt(ct());return t.copy=function(){return ut(t,Gt()).exponent(t.exponent())},ft.o.apply(t,arguments),t}function Vt(){return Gt.apply(null,arguments).exponent(.5)}function Kt(t){return Math.sign(t)*t*t}function Xt(){var t,e=lt(),n=[0,1],r=!1;function o(n){var o=function(t){return Math.sign(t)*Math.sqrt(Math.abs(t))}(e(n));return isNaN(o)?t:r?Math.round(o):o}return o.invert=function(t){return e.invert(Kt(t))},o.domain=function(t){return arguments.length?(e.domain(t),o):e.domain()},o.range=function(t){return arguments.length?(e.range((n=Array.from(t,et)).map(Kt)),o):n.slice()},o.rangeRound=function(t){return o.range(t).round(!0)},o.round=function(t){return arguments.length?(r=!!t,o):r},o.clamp=function(t){return arguments.length?(e.clamp(t),o):e.clamp()},o.unknown=function(e){return arguments.length?(t=e,o):t},o.copy=function(){return Xt(e.domain(),n).round(r).clamp(e.clamp()).unknown(t)},ft.o.apply(o,arguments),Ct(o)}var Jt=n(2400),Qt=n(8398);function te(t=U){if(t===U)return ee;if("function"!=typeof t)throw new TypeError("compare is not a function");return(e,n)=>{const r=t(e,n);return r||0===r?r:(0===t(n,n))-(0===t(e,e))}}function ee(t,e){return(null==t||!(t>=t))-(null==e||!(e>=e))||(te?1:0)}function ne(t,e,n=0,r=1/0,o){if(e=Math.floor(e),n=Math.floor(Math.max(0,n)),r=Math.floor(Math.min(t.length-1,r)),!(n<=e&&e<=r))return t;for(o=void 0===o?ee:te(o);r>n;){if(r-n>600){const i=r-n+1,a=e-n+1,u=Math.log(i),c=.5*Math.exp(2*u/3),l=.5*Math.sqrt(u*c*(i-c)/i)*(a-i/2<0?-1:1);ne(t,e,Math.max(n,Math.floor(e-a*c/i+l)),Math.min(r,Math.floor(e+(i-a)*c/i+l)),o)}const i=t[e];let a=n,u=r;for(re(t,n,e),o(t[r],i)>0&&re(t,n,r);a0;)--u}0===o(t[n],i)?re(t,n,u):(++u,re(t,u,r)),u<=e&&(n=u+1),e<=u&&(r=u-1)}return t}function re(t,e,n){const r=t[e];t[e]=t[n],t[n]=r}function oe(t,e,n){if(t=Float64Array.from(function*(t,e){if(void 0===e)for(let n of t)null!=n&&(n=+n)>=n&&(yield n);else{let n=-1;for(let r of t)null!=(r=e(r,++n,t))&&(r=+r)>=r&&(yield r)}}(t,n)),(r=t.length)&&!isNaN(e=+e)){if(e<=0||r<2)return(0,Qt.Z)(t);if(e>=1)return(0,Jt.Z)(t);var r,o=(r-1)*e,i=Math.floor(o),a=(0,Jt.Z)(ne(t,i).subarray(0,i+1));return a+((0,Qt.Z)(t.subarray(i+1))-a)*(o-i)}}function ie(t,e,n=z){if((r=t.length)&&!isNaN(e=+e)){if(e<=0||r<2)return+n(t[0],0,t);if(e>=1)return+n(t[r-1],r-1,t);var r,o=(r-1)*e,i=Math.floor(o),a=+n(t[i],i,t);return a+(+n(t[i+1],i+1,t)-a)*(o-i)}}function ae(){var t,e=[],n=[],r=[];function o(){var t=0,o=Math.max(1,n.length);for(r=new Array(o-1);++t0?r[o-1]:e[0],o=r?[o[r-1],n]:[o[a-1],o[a]]},a.unknown=function(e){return arguments.length?(t=e,a):a},a.thresholds=function(){return o.slice()},a.copy=function(){return ue().domain([e,n]).range(i).unknown(t)},ft.o.apply(Ct(a),arguments)}function ce(){var t,e=[.5],n=[0,1],r=1;function o(o){return null!=o&&o<=o?n[q(e,o,0,r)]:t}return o.domain=function(t){return arguments.length?(e=Array.from(t),r=Math.min(e.length,n.length-1),o):e.slice()},o.range=function(t){return arguments.length?(n=Array.from(t),r=Math.min(e.length,n.length-1),o):n.slice()},o.invertExtent=function(t){var r=n.indexOf(t);return[e[r-1],e[r]]},o.unknown=function(e){return arguments.length?(t=e,o):t},o.copy=function(){return ce().domain(e).range(n).unknown(t)},ft.o.apply(o,arguments)}const le=1e3,se=60*le,fe=60*se,pe=24*fe,he=7*pe,de=30*pe,ye=365*pe,ve=new Date,me=new Date;function ge(t,e,n,r){function o(e){return t(e=0===arguments.length?new Date:new Date(+e)),e}return o.floor=e=>(t(e=new Date(+e)),e),o.ceil=n=>(t(n=new Date(n-1)),e(n,1),t(n),n),o.round=t=>{const e=o(t),n=o.ceil(t);return t-e(e(t=new Date(+t),null==n?1:Math.floor(n)),t),o.range=(n,r,i)=>{const a=[];if(n=o.ceil(n),i=null==i?1:Math.floor(i),!(n0))return a;let u;do{a.push(u=new Date(+n)),e(n,i),t(n)}while(uge((e=>{if(e>=e)for(;t(e),!n(e);)e.setTime(e-1)}),((t,r)=>{if(t>=t)if(r<0)for(;++r<=0;)for(;e(t,-1),!n(t););else for(;--r>=0;)for(;e(t,1),!n(t););})),n&&(o.count=(e,r)=>(ve.setTime(+e),me.setTime(+r),t(ve),t(me),Math.floor(n(ve,me))),o.every=t=>(t=Math.floor(t),isFinite(t)&&t>0?t>1?o.filter(r?e=>r(e)%t==0:e=>o.count(0,e)%t==0):o:null)),o}const be=ge((()=>{}),((t,e)=>{t.setTime(+t+e)}),((t,e)=>e-t));be.every=t=>(t=Math.floor(t),isFinite(t)&&t>0?t>1?ge((e=>{e.setTime(Math.floor(e/t)*t)}),((e,n)=>{e.setTime(+e+n*t)}),((e,n)=>(n-e)/t)):be:null);be.range;const we=ge((t=>{t.setTime(t-t.getMilliseconds())}),((t,e)=>{t.setTime(+t+e*le)}),((t,e)=>(e-t)/le),(t=>t.getUTCSeconds())),xe=(we.range,ge((t=>{t.setTime(t-t.getMilliseconds()-t.getSeconds()*le)}),((t,e)=>{t.setTime(+t+e*se)}),((t,e)=>(e-t)/se),(t=>t.getMinutes()))),Oe=(xe.range,ge((t=>{t.setUTCSeconds(0,0)}),((t,e)=>{t.setTime(+t+e*se)}),((t,e)=>(e-t)/se),(t=>t.getUTCMinutes()))),je=(Oe.range,ge((t=>{t.setTime(t-t.getMilliseconds()-t.getSeconds()*le-t.getMinutes()*se)}),((t,e)=>{t.setTime(+t+e*fe)}),((t,e)=>(e-t)/fe),(t=>t.getHours()))),Se=(je.range,ge((t=>{t.setUTCMinutes(0,0,0)}),((t,e)=>{t.setTime(+t+e*fe)}),((t,e)=>(e-t)/fe),(t=>t.getUTCHours()))),Ee=(Se.range,ge((t=>t.setHours(0,0,0,0)),((t,e)=>t.setDate(t.getDate()+e)),((t,e)=>(e-t-(e.getTimezoneOffset()-t.getTimezoneOffset())*se)/pe),(t=>t.getDate()-1))),Me=(Ee.range,ge((t=>{t.setUTCHours(0,0,0,0)}),((t,e)=>{t.setUTCDate(t.getUTCDate()+e)}),((t,e)=>(e-t)/pe),(t=>t.getUTCDate()-1))),Ce=(Me.range,ge((t=>{t.setUTCHours(0,0,0,0)}),((t,e)=>{t.setUTCDate(t.getUTCDate()+e)}),((t,e)=>(e-t)/pe),(t=>Math.floor(t/pe))));Ce.range;function Ae(t){return ge((e=>{e.setDate(e.getDate()-(e.getDay()+7-t)%7),e.setHours(0,0,0,0)}),((t,e)=>{t.setDate(t.getDate()+7*e)}),((t,e)=>(e-t-(e.getTimezoneOffset()-t.getTimezoneOffset())*se)/he))}const Pe=Ae(0),ke=Ae(1),Te=Ae(2),_e=Ae(3),Ne=Ae(4),De=Ae(5),Re=Ae(6);Pe.range,ke.range,Te.range,_e.range,Ne.range,De.range,Re.range;function Ue(t){return ge((e=>{e.setUTCDate(e.getUTCDate()-(e.getUTCDay()+7-t)%7),e.setUTCHours(0,0,0,0)}),((t,e)=>{t.setUTCDate(t.getUTCDate()+7*e)}),((t,e)=>(e-t)/he))}const Ie=Ue(0),Le=Ue(1),$e=Ue(2),ze=Ue(3),Be=Ue(4),Fe=Ue(5),qe=Ue(6),He=(Ie.range,Le.range,$e.range,ze.range,Be.range,Fe.range,qe.range,ge((t=>{t.setDate(1),t.setHours(0,0,0,0)}),((t,e)=>{t.setMonth(t.getMonth()+e)}),((t,e)=>e.getMonth()-t.getMonth()+12*(e.getFullYear()-t.getFullYear())),(t=>t.getMonth()))),We=(He.range,ge((t=>{t.setUTCDate(1),t.setUTCHours(0,0,0,0)}),((t,e)=>{t.setUTCMonth(t.getUTCMonth()+e)}),((t,e)=>e.getUTCMonth()-t.getUTCMonth()+12*(e.getUTCFullYear()-t.getUTCFullYear())),(t=>t.getUTCMonth()))),Ze=(We.range,ge((t=>{t.setMonth(0,1),t.setHours(0,0,0,0)}),((t,e)=>{t.setFullYear(t.getFullYear()+e)}),((t,e)=>e.getFullYear()-t.getFullYear()),(t=>t.getFullYear())));Ze.every=t=>isFinite(t=Math.floor(t))&&t>0?ge((e=>{e.setFullYear(Math.floor(e.getFullYear()/t)*t),e.setMonth(0,1),e.setHours(0,0,0,0)}),((e,n)=>{e.setFullYear(e.getFullYear()+n*t)})):null;Ze.range;const Ye=ge((t=>{t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)}),((t,e)=>{t.setUTCFullYear(t.getUTCFullYear()+e)}),((t,e)=>e.getUTCFullYear()-t.getUTCFullYear()),(t=>t.getUTCFullYear()));Ye.every=t=>isFinite(t=Math.floor(t))&&t>0?ge((e=>{e.setUTCFullYear(Math.floor(e.getUTCFullYear()/t)*t),e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)}),((e,n)=>{e.setUTCFullYear(e.getUTCFullYear()+n*t)})):null;Ye.range;function Ge(t,e,n,r,o,i){const a=[[we,1,le],[we,5,5*le],[we,15,15*le],[we,30,30*le],[i,1,se],[i,5,5*se],[i,15,15*se],[i,30,30*se],[o,1,fe],[o,3,3*fe],[o,6,6*fe],[o,12,12*fe],[r,1,pe],[r,2,2*pe],[n,1,he],[e,1,de],[e,3,3*de],[t,1,ye]];function u(e,n,r){const o=Math.abs(n-e)/r,i=L((([,,t])=>t)).right(a,o);if(i===a.length)return t.every(R(e/ye,n/ye,r));if(0===i)return be.every(Math.max(R(e,n,r),1));const[u,c]=a[o/a[i-1][2][t.toLowerCase(),e])))}function dn(t,e,n){var r=un.exec(e.slice(n,n+1));return r?(t.w=+r[0],n+r[0].length):-1}function yn(t,e,n){var r=un.exec(e.slice(n,n+1));return r?(t.u=+r[0],n+r[0].length):-1}function vn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.U=+r[0],n+r[0].length):-1}function mn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.V=+r[0],n+r[0].length):-1}function gn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.W=+r[0],n+r[0].length):-1}function bn(t,e,n){var r=un.exec(e.slice(n,n+4));return r?(t.y=+r[0],n+r[0].length):-1}function wn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.y=+r[0]+(+r[0]>68?1900:2e3),n+r[0].length):-1}function xn(t,e,n){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(e.slice(n,n+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),n+r[0].length):-1}function On(t,e,n){var r=un.exec(e.slice(n,n+1));return r?(t.q=3*r[0]-3,n+r[0].length):-1}function jn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.m=r[0]-1,n+r[0].length):-1}function Sn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.d=+r[0],n+r[0].length):-1}function En(t,e,n){var r=un.exec(e.slice(n,n+3));return r?(t.m=0,t.d=+r[0],n+r[0].length):-1}function Mn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.H=+r[0],n+r[0].length):-1}function Cn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.M=+r[0],n+r[0].length):-1}function An(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.S=+r[0],n+r[0].length):-1}function Pn(t,e,n){var r=un.exec(e.slice(n,n+3));return r?(t.L=+r[0],n+r[0].length):-1}function kn(t,e,n){var r=un.exec(e.slice(n,n+6));return r?(t.L=Math.floor(r[0]/1e3),n+r[0].length):-1}function Tn(t,e,n){var r=cn.exec(e.slice(n,n+1));return r?n+r[0].length:-1}function _n(t,e,n){var r=un.exec(e.slice(n));return r?(t.Q=+r[0],n+r[0].length):-1}function Nn(t,e,n){var r=un.exec(e.slice(n));return r?(t.s=+r[0],n+r[0].length):-1}function Dn(t,e){return sn(t.getDate(),e,2)}function Rn(t,e){return sn(t.getHours(),e,2)}function Un(t,e){return sn(t.getHours()%12||12,e,2)}function In(t,e){return sn(1+Ee.count(Ze(t),t),e,3)}function Ln(t,e){return sn(t.getMilliseconds(),e,3)}function $n(t,e){return Ln(t,e)+"000"}function zn(t,e){return sn(t.getMonth()+1,e,2)}function Bn(t,e){return sn(t.getMinutes(),e,2)}function Fn(t,e){return sn(t.getSeconds(),e,2)}function qn(t){var e=t.getDay();return 0===e?7:e}function Hn(t,e){return sn(Pe.count(Ze(t)-1,t),e,2)}function Wn(t){var e=t.getDay();return e>=4||0===e?Ne(t):Ne.ceil(t)}function Zn(t,e){return t=Wn(t),sn(Ne.count(Ze(t),t)+(4===Ze(t).getDay()),e,2)}function Yn(t){return t.getDay()}function Gn(t,e){return sn(ke.count(Ze(t)-1,t),e,2)}function Vn(t,e){return sn(t.getFullYear()%100,e,2)}function Kn(t,e){return sn((t=Wn(t)).getFullYear()%100,e,2)}function Xn(t,e){return sn(t.getFullYear()%1e4,e,4)}function Jn(t,e){var n=t.getDay();return sn((t=n>=4||0===n?Ne(t):Ne.ceil(t)).getFullYear()%1e4,e,4)}function Qn(t){var e=t.getTimezoneOffset();return(e>0?"-":(e*=-1,"+"))+sn(e/60|0,"0",2)+sn(e%60,"0",2)}function tr(t,e){return sn(t.getUTCDate(),e,2)}function er(t,e){return sn(t.getUTCHours(),e,2)}function nr(t,e){return sn(t.getUTCHours()%12||12,e,2)}function rr(t,e){return sn(1+Me.count(Ye(t),t),e,3)}function or(t,e){return sn(t.getUTCMilliseconds(),e,3)}function ir(t,e){return or(t,e)+"000"}function ar(t,e){return sn(t.getUTCMonth()+1,e,2)}function ur(t,e){return sn(t.getUTCMinutes(),e,2)}function cr(t,e){return sn(t.getUTCSeconds(),e,2)}function lr(t){var e=t.getUTCDay();return 0===e?7:e}function sr(t,e){return sn(Ie.count(Ye(t)-1,t),e,2)}function fr(t){var e=t.getUTCDay();return e>=4||0===e?Be(t):Be.ceil(t)}function pr(t,e){return t=fr(t),sn(Be.count(Ye(t),t)+(4===Ye(t).getUTCDay()),e,2)}function hr(t){return t.getUTCDay()}function dr(t,e){return sn(Le.count(Ye(t)-1,t),e,2)}function yr(t,e){return sn(t.getUTCFullYear()%100,e,2)}function vr(t,e){return sn((t=fr(t)).getUTCFullYear()%100,e,2)}function mr(t,e){return sn(t.getUTCFullYear()%1e4,e,4)}function gr(t,e){var n=t.getUTCDay();return sn((t=n>=4||0===n?Be(t):Be.ceil(t)).getUTCFullYear()%1e4,e,4)}function br(){return"+0000"}function wr(){return"%"}function xr(t){return+t}function Or(t){return Math.floor(+t/1e3)}function jr(t){return new Date(t)}function Sr(t){return t instanceof Date?+t:+new Date(+t)}function Er(t,e,n,r,o,i,a,u,c,l){var s=lt(),f=s.invert,p=s.domain,h=l(".%L"),d=l(":%S"),y=l("%I:%M"),v=l("%I %p"),m=l("%a %d"),g=l("%b %d"),b=l("%B"),w=l("%Y");function x(t){return(c(t)e(r/(t.length-1))))},n.quantiles=function(e){return Array.from({length:e+1},((n,r)=>oe(t,r/e)))},n.copy=function(){return Rr(e).domain(t)},ft.O.apply(n,arguments)}function Ur(){var t,e,n,r,o,i,a,u=0,c=.5,l=1,s=1,f=rt,p=!1;function h(t){return isNaN(t=+t)?a:(t=.5+((t=+i(t))-e)*(s*t1)for(var n,r,o,i=1,a=t[e[0]],u=a.length;i=12)]},q:function(t){return 1+~~(t.getMonth()/3)},Q:xr,s:Or,S:Fn,u:qn,U:Hn,V:Zn,w:Yn,W:Gn,x:null,X:null,y:Vn,Y:Xn,Z:Qn,"%":wr},w={a:function(t){return a[t.getUTCDay()]},A:function(t){return i[t.getUTCDay()]},b:function(t){return c[t.getUTCMonth()]},B:function(t){return u[t.getUTCMonth()]},c:null,d:tr,e:tr,f:ir,g:vr,G:gr,H:er,I:nr,j:rr,L:or,m:ar,M:ur,p:function(t){return o[+(t.getUTCHours()>=12)]},q:function(t){return 1+~~(t.getUTCMonth()/3)},Q:xr,s:Or,S:cr,u:lr,U:sr,V:pr,w:hr,W:dr,x:null,X:null,y:yr,Y:mr,Z:br,"%":wr},x={a:function(t,e,n){var r=h.exec(e.slice(n));return r?(t.w=d.get(r[0].toLowerCase()),n+r[0].length):-1},A:function(t,e,n){var r=f.exec(e.slice(n));return r?(t.w=p.get(r[0].toLowerCase()),n+r[0].length):-1},b:function(t,e,n){var r=m.exec(e.slice(n));return r?(t.m=g.get(r[0].toLowerCase()),n+r[0].length):-1},B:function(t,e,n){var r=y.exec(e.slice(n));return r?(t.m=v.get(r[0].toLowerCase()),n+r[0].length):-1},c:function(t,n,r){return S(t,e,n,r)},d:Sn,e:Sn,f:kn,g:wn,G:bn,H:Mn,I:Mn,j:En,L:Pn,m:jn,M:Cn,p:function(t,e,n){var r=l.exec(e.slice(n));return r?(t.p=s.get(r[0].toLowerCase()),n+r[0].length):-1},q:On,Q:_n,s:Nn,S:An,u:yn,U:vn,V:mn,w:dn,W:gn,x:function(t,e,r){return S(t,n,e,r)},X:function(t,e,n){return S(t,r,e,n)},y:wn,Y:bn,Z:xn,"%":Tn};function O(t,e){return function(n){var r,o,i,a=[],u=-1,c=0,l=t.length;for(n instanceof Date||(n=new Date(+n));++u53)return null;"w"in i||(i.w=1),"Z"in i?(o=(r=tn(en(i.y,0,1))).getUTCDay(),r=o>4||0===o?Le.ceil(r):Le(r),r=Me.offset(r,7*(i.V-1)),i.y=r.getUTCFullYear(),i.m=r.getUTCMonth(),i.d=r.getUTCDate()+(i.w+6)%7):(o=(r=Qe(en(i.y,0,1))).getDay(),r=o>4||0===o?ke.ceil(r):ke(r),r=Ee.offset(r,7*(i.V-1)),i.y=r.getFullYear(),i.m=r.getMonth(),i.d=r.getDate()+(i.w+6)%7)}else("W"in i||"U"in i)&&("w"in i||(i.w="u"in i?i.u%7:"W"in i?1:0),o="Z"in i?tn(en(i.y,0,1)).getUTCDay():Qe(en(i.y,0,1)).getDay(),i.m=0,i.d="W"in i?(i.w+6)%7+7*i.W-(o+5)%7:i.w+7*i.U-(o+6)%7);return"Z"in i?(i.H+=i.Z/100|0,i.M+=i.Z%100,tn(i)):Qe(i)}}function S(t,e,n,r){for(var o,i,a=0,u=e.length,c=n.length;a=c)return-1;if(37===(o=e.charCodeAt(a++))){if(o=e.charAt(a++),!(i=x[o in an?e.charAt(a++):o])||(r=i(t,n,r))<0)return-1}else if(o!=n.charCodeAt(r++))return-1}return r}return b.x=O(n,b),b.X=O(r,b),b.c=O(e,b),w.x=O(n,w),w.X=O(r,w),w.c=O(e,w),{format:function(t){var e=O(t+="",b);return e.toString=function(){return t},e},parse:function(t){var e=j(t+="",!1);return e.toString=function(){return t},e},utcFormat:function(t){var e=O(t+="",w);return e.toString=function(){return t},e},utcParse:function(t){var e=j(t+="",!0);return e.toString=function(){return t},e}}}(t),rn=nn.format,nn.parse,on=nn.utcFormat,nn.utcParse}({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});var qr=n(4788),Hr=n(309);function Wr(t){for(var e=t.length,n=new Array(e);--e>=0;)n[e]=e;return n}function Zr(t,e){return t[e]}function Yr(t){const e=[];return e.key=t,e}var Gr=n(9887),Vr=n.n(Gr);function Kr(t){return function(t){if(Array.isArray(t))return Xr(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return Xr(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Xr(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Xr(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n=e?n.apply(void 0,o):t(e-a,eo((function(){for(var t=arguments.length,e=new Array(t),r=0;rt.length)&&(e=t.length);for(var n=0,r=new Array(e);nr&&(o=r,i=n),[o,i]}function vo(t,e,n){if(t.lte(0))return new(Vr())(0);var r=lo.getDigitCount(t.toNumber()),o=new(Vr())(10).pow(r),i=t.div(o),a=1!==r?.05:.1,u=new(Vr())(Math.ceil(i.div(a).toNumber())).add(n).mul(a).mul(o);return e?u:new(Vr())(Math.ceil(u))}function mo(t,e,n){var r=1,o=new(Vr())(t);if(!o.isint()&&n){var i=Math.abs(t);i<1?(r=new(Vr())(10).pow(lo.getDigitCount(t)-1),o=new(Vr())(Math.floor(o.div(r).toNumber())).mul(r)):i>1&&(o=new(Vr())(Math.floor(t)))}else 0===t?o=new(Vr())(Math.floor((e-1)/2)):n||(o=new(Vr())(Math.floor(t)));var a=Math.floor((e-1)/2);return ao(io((function(t){return o.add(new(Vr())(t-a).mul(r)).toNumber()})),oo)(0,e)}function go(t,e,n,r){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0;if(!Number.isFinite((e-t)/(n-1)))return{step:new(Vr())(0),tickMin:new(Vr())(0),tickMax:new(Vr())(0)};var i,a=vo(new(Vr())(e).sub(t).div(n-1),r,o);i=t<=0&&e>=0?new(Vr())(0):(i=new(Vr())(t).add(e).div(2)).sub(new(Vr())(i).mod(a));var u=Math.ceil(i.sub(t).div(a).toNumber()),c=Math.ceil(new(Vr())(e).sub(i).div(a).toNumber()),l=u+c+1;return l>n?go(t,e,n,r,o+1):(l0?c+(n-l):c,u=e>0?u:u+(n-l)),{step:a,tickMin:i.sub(new(Vr())(u).mul(a)),tickMax:i.add(new(Vr())(c).mul(a))})}var bo=co((function(t){var e=fo(t,2),n=e[0],r=e[1],o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:6,i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=Math.max(o,2),u=fo(yo([n,r]),2),c=u[0],l=u[1];if(c===-1/0||l===1/0){var s=l===1/0?[c].concat(so(oo(0,o-1).map((function(){return 1/0})))):[].concat(so(oo(0,o-1).map((function(){return-1/0}))),[l]);return n>r?uo(s):s}if(c===l)return mo(c,o,i);var f=go(c,l,a,i),p=f.step,h=f.tickMin,d=f.tickMax,y=lo.rangeStep(h,d.add(new(Vr())(.1).mul(p)),p);return n>r?uo(y):y})),wo=(co((function(t){var e=fo(t,2),n=e[0],r=e[1],o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:6,i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=Math.max(o,2),u=fo(yo([n,r]),2),c=u[0],l=u[1];if(c===-1/0||l===1/0)return[n,r];if(c===l)return mo(c,o,i);var s=vo(new(Vr())(l).sub(c).div(a-1),i,0),f=ao(io((function(t){return new(Vr())(c).add(new(Vr())(t).mul(s)).toNumber()})),oo)(0,a).filter((function(t){return t>=c&&t<=l}));return n>r?uo(f):f})),co((function(t,e){var n=fo(t,2),r=n[0],o=n[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=fo(yo([r,o]),2),u=a[0],c=a[1];if(u===-1/0||c===1/0)return[r,o];if(u===c)return[u];var l=Math.max(e,2),s=vo(new(Vr())(c).sub(u).div(l-1),i,0),f=[].concat(so(lo.rangeStep(new(Vr())(u),new(Vr())(c).sub(new(Vr())(.99).mul(s)),s)),[c]);return r>o?uo(f):f}))),xo=n(6641),Oo=n(8312),jo=n(9055),So=n(2017);function Eo(t){return Eo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Eo(t)}function Mo(t){return function(t){if(Array.isArray(t))return Co(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return Co(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Co(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Co(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n1&&void 0!==arguments[1]?arguments[1]:[],r=arguments.length>2?arguments[2]:void 0,o=arguments.length>3?arguments[3]:void 0,i=-1,a=null!==(e=null==n?void 0:n.length)&&void 0!==e?e:0;if(a<=1)return 0;if(o&&"angleAxis"===o.axisType&&Math.abs(Math.abs(o.range[1]-o.range[0])-360)<=1e-6)for(var u=o.range,c=0;c0?r[c-1].coordinate:r[a-1].coordinate,s=r[c].coordinate,f=c>=a-1?r[0].coordinate:r[c+1].coordinate,p=void 0;if((0,jo.uY)(s-l)!==(0,jo.uY)(f-s)){var h=[];if((0,jo.uY)(f-s)===(0,jo.uY)(u[1]-u[0])){p=f;var d=s+u[1]-u[0];h[0]=Math.min(d,(d+l)/2),h[1]=Math.max(d,(d+l)/2)}else{p=l;var y=f+u[1]-u[0];h[0]=Math.min(s,(y+s)/2),h[1]=Math.max(s,(y+s)/2)}var v=[Math.min(s,(p+s)/2),Math.max(s,(p+s)/2)];if(t>v[0]&&t<=v[1]||t>=h[0]&&t<=h[1]){i=r[c].index;break}}else{var m=Math.min(l,f),g=Math.max(l,f);if(t>(m+s)/2&&t<=(g+s)/2){i=r[c].index;break}}}else for(var b=0;b0&&b(n[b].coordinate+n[b-1].coordinate)/2&&t<=(n[b].coordinate+n[b+1].coordinate)/2||b===a-1&&t>(n[b].coordinate+n[b-1].coordinate)/2){i=n[b].index;break}return i},Do=function(t){var e,n=t.type.displayName,r=t.props,o=r.stroke,i=r.fill;switch(n){case"Line":e=o;break;case"Area":case"Radar":e=o&&"none"!==o?o:i;break;default:e=i}return e},Ro=function(t){var e,n=t.children,r=t.formattedGraphicalItems,o=t.legendWidth,i=t.legendContent,a=(0,So.sP)(n,Oo.D);return a?(e=a.props&&a.props.payload?a.props&&a.props.payload:"children"===i?(r||[]).reduce((function(t,e){var n=e.item,r=e.props,o=r.sectors||r.data||[];return t.concat(o.map((function(t){return{type:a.props.iconType||n.props.legendType,value:t.name,color:t.fill,payload:t}})))}),[]):(r||[]).map((function(t){var e=t.item,n=e.props,r=n.dataKey,o=n.name,i=n.legendType;return{inactive:n.hide,dataKey:r,type:a.props.iconType||i||"square",color:Do(e),value:o||r,payload:e.props}})),Po(Po(Po({},a.props),Oo.D.getWithHeight(a,o)),{},{payload:e,item:a})):null},Uo=function(t){var e=t.barSize,n=t.stackGroups,r=void 0===n?{}:n;if(!r)return{};for(var o={},i=Object.keys(r),a=0,u=i.length;a=0}));if(y&&y.length){var v=y[0].props.barSize,m=y[0].props[d];o[m]||(o[m]=[]),o[m].push({item:y[0],stackList:y.slice(1),barSize:C()(v)?e:v})}}return o},Io=function(t){var e=t.barGap,n=t.barCategoryGap,r=t.bandSize,o=t.sizeList,i=void 0===o?[]:o,a=t.maxBarSize,u=i.length;if(u<1)return null;var c,l=(0,jo.h1)(e,r,0,!0);if(i[0].barSize===+i[0].barSize){var s=!1,f=r/u,p=i.reduce((function(t,e){return t+e.barSize||0}),0);(p+=(u-1)*l)>=r&&(p-=(u-1)*l,l=0),p>=r&&f>0&&(s=!0,p=u*(f*=.9));var h={offset:((r-p)/2>>0)-l,size:0};c=i.reduce((function(t,e){var n=[].concat(Mo(t),[{item:e.item,position:{offset:h.offset+h.size+l,size:s?f:e.barSize}}]);return h=n[n.length-1].position,e.stackList&&e.stackList.length&&e.stackList.forEach((function(t){n.push({item:t,position:h})})),n}),[])}else{var d=(0,jo.h1)(n,r,0,!0);r-2*d-(u-1)*l<=0&&(l=0);var y=(r-2*d-(u-1)*l)/u;y>1&&(y>>=0);var v=a===+a?Math.min(y,a):y;c=i.reduce((function(t,e,n){var r=[].concat(Mo(t),[{item:e.item,position:{offset:d+(y+l)*n+(y-v)/2,size:v}}]);return e.stackList&&e.stackList.length&&e.stackList.forEach((function(t){r.push({item:t,position:r[r.length-1].position})})),r}),[])}return c},Lo=function(t,e,n,r){var o=n.children,i=n.width,a=n.margin,u=i-(a.left||0)-(a.right||0),c=Ro({children:o,legendWidth:u}),l=t;if(c){var s=r||{},f=c.align,p=c.verticalAlign,h=c.layout;("vertical"===h||"horizontal"===h&&"middle"===p)&&(0,jo.hj)(t[f])&&(l=Po(Po({},t),{},ko({},f,l[f]+(s.width||0)))),("horizontal"===h||"vertical"===h&&"center"===f)&&(0,jo.hj)(t[p])&&(l=Po(Po({},t),{},ko({},p,l[p]+(s.height||0))))}return l},$o=function(t,e,n,r,o){var i=e.props.children,a=(0,So.NN)(i,xo.W).filter((function(t){return function(t,e,n){return!!C()(e)||("horizontal"===t?"yAxis"===e:"vertical"===t||"x"===n?"xAxis"===e:"y"!==n||"yAxis"===e)}(r,o,t.props.direction)}));if(a&&a.length){var u=a.map((function(t){return t.props.dataKey}));return t.reduce((function(t,e){var r=To(e,n,0),o=y()(r)?[b()(r),m()(r)]:[r,r],i=u.reduce((function(t,n){var r=To(e,n,0),i=o[0]-Math.abs(y()(r)?r[0]:r),a=o[1]+Math.abs(y()(r)?r[1]:r);return[Math.min(i,t[0]),Math.max(a,t[1])]}),[1/0,-1/0]);return[Math.min(i[0],t[0]),Math.max(i[1],t[1])]}),[1/0,-1/0])}return null},zo=function(t,e,n,r,o){var i=e.map((function(e){return $o(t,e,n,o,r)})).filter((function(t){return!C()(t)}));return i&&i.length?i.reduce((function(t,e){return[Math.min(t[0],e[0]),Math.max(t[1],e[1])]}),[1/0,-1/0]):null},Bo=function(t,e,n,r,o){var i=e.map((function(e){var i=e.props.dataKey;return"number"===n&&i&&$o(t,e,i,r)||_o(t,i,n,o)}));if("number"===n)return i.reduce((function(t,e){return[Math.min(t[0],e[0]),Math.max(t[1],e[1])]}),[1/0,-1/0]);var a={};return i.reduce((function(t,e){for(var n=0,r=e.length;n=2?2*(0,jo.uY)(a[0]-a[1])*c:c,e&&(t.ticks||t.niceTicks)?(t.ticks||t.niceTicks).map((function(t){var e=o?o.indexOf(t):t;return{coordinate:r(e)+c,value:t,offset:c}})).filter((function(t){return!h()(t.coordinate)})):t.isCategorical&&t.categoricalDomain?t.categoricalDomain.map((function(t,e){return{coordinate:r(t)+c,value:t,index:e,offset:c}})):r.ticks&&!n?r.ticks(t.tickCount).map((function(t){return{coordinate:r(t)+c,value:t,offset:c}})):r.domain().map((function(t,e){return{coordinate:r(t)+c,value:o?o[t]:t,index:e,offset:c}}))},Wo=function(t,e,n){var r;return j()(n)?r=n:j()(e)&&(r=e),j()(t)||r?function(e,n,o,i){j()(t)&&t(e,n,o,i),j()(r)&&r(e,n,o,i)}:null},Zo=function(t,e,n){var o=t.scale,i=t.type,a=t.layout,u=t.axisType;if("auto"===o)return"radial"===a&&"radiusAxis"===u?{scale:A.Z(),realScaleType:"band"}:"radial"===a&&"angleAxis"===u?{scale:At(),realScaleType:"linear"}:"category"===i&&e&&(e.indexOf("LineChart")>=0||e.indexOf("AreaChart")>=0||e.indexOf("ComposedChart")>=0&&!n)?{scale:A.x(),realScaleType:"point"}:"category"===i?{scale:A.Z(),realScaleType:"band"}:{scale:At(),realScaleType:"linear"};if(f()(o)){var c="scale".concat(l()(o));return{scale:(r[c]||A.x)(),realScaleType:r[c]?c:"point"}}return j()(o)?{scale:o}:{scale:A.x(),realScaleType:"point"}},Yo=1e-4,Go=function(t){var e=t.domain();if(e&&!(e.length<=2)){var n=e.length,r=t.range(),o=Math.min(r[0],r[1])-Yo,i=Math.max(r[0],r[1])+Yo,a=t(e[0]),u=t(e[n-1]);(ai||ui)&&t.domain([e[0],e[n-1]])}},Vo=function(t,e){if(!t)return null;for(var n=0,r=t.length;nr)&&(o[1]=r),o[0]>r&&(o[0]=r),o[1]=0?(t[a][n][0]=o,t[a][n][1]=o+u,o=t[a][n][1]):(t[a][n][0]=i,t[a][n][1]=i+u,i=t[a][n][1])}},expand:function(t,e){if((r=t.length)>0){for(var n,r,o,i=0,a=t[0].length;i0){for(var n,r=0,o=t[e[0]],i=o.length;r0&&(r=(n=t[e[0]]).length)>0){for(var n,r,o,i=0,a=1;a=0?(t[i][n][0]=o,t[i][n][1]=o+a,o=t[i][n][1]):(t[i][n][0]=0,t[i][n][1]=0)}}},Jo=function(t,e,n){var r=e.map((function(t){return t.props.dataKey})),o=function(){var t=(0,Hr.Z)([]),e=Wr,n=Fr,r=Zr;function o(o){var i,a,u=Array.from(t.apply(this,arguments),Yr),c=u.length,l=-1;for(const t of o)for(i=0,++l;i=0?0:o<0?o:r}return n[0]},oi=function(t,e){var n=t.props.stackId;if((0,jo.P2)(n)){var r=e[n];if(r&&r.items.length){for(var o=-1,i=0,a=r.items.length;i=0?r.stackedData[o]:null}}return null},ii=function(t,e,n){return Object.keys(t).reduce((function(r,o){var i=t[o].stackedData.reduce((function(t,r){var o=r.slice(e,n+1).reduce((function(t,e){return[b()(e.concat([t[0]]).filter(jo.hj)),m()(e.concat([t[1]]).filter(jo.hj))]}),[1/0,-1/0]);return[Math.min(t[0],o[0]),Math.max(t[1],o[1])]}),[1/0,-1/0]);return[Math.min(i[0],r[0]),Math.max(i[1],r[1])]}),[1/0,-1/0]).map((function(t){return t===1/0||t===-1/0?0:t}))},ai=/^dataMin[\s]*-[\s]*([0-9]+([.]{1}[0-9]+){0,1})$/,ui=/^dataMax[\s]*\+[\s]*([0-9]+([.]{1}[0-9]+){0,1})$/,ci=function(t,e,n){if(j()(t))return t(e,n);if(!y()(t))return e;var r=[];if((0,jo.hj)(t[0]))r[0]=n?t[0]:Math.min(t[0],e[0]);else if(ai.test(t[0])){var o=+ai.exec(t[0])[1];r[0]=e[0]-o}else j()(t[0])?r[0]=t[0](e[0]):r[0]=e[0];if((0,jo.hj)(t[1]))r[1]=n?t[1]:Math.max(t[1],e[1]);else if(ui.test(t[1])){var i=+ui.exec(t[1])[1];r[1]=e[1]+i}else j()(t[1])?r[1]=t[1](e[1]):r[1]=e[1];return r},li=function(t,e,n){if(t&&t.scale&&t.scale.bandwidth){var r=t.scale.bandwidth();if(!n||r>0)return r}if(t&&e&&e.length>=2){for(var o=u()(e,(function(t){return t.coordinate})),i=1/0,a=1,c=o.length;at.length)&&(e=t.length);for(var n=0,r=new Array(e);n=0&&o===+o?"".concat(o,"px"):o),";");var r,o,i}),"")},y=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(null==t||r.x.isSsr)return{width:0,height:0};var n="".concat(t),o=d(e),i="".concat(n,"-").concat(o);if(s.widthCache[i])return s.widthCache[i];try{var u=document.getElementById(h);u||((u=document.createElement("span")).setAttribute("id",h),u.setAttribute("aria-hidden","true"),document.body.appendChild(u));var c=a(a({},f),e);Object.keys(c).map((function(t){return u.style[t]=c[t],t})),u.textContent=n;var l=u.getBoundingClientRect(),p={width:l.width,height:l.height};return s.widthCache[i]=p,++s.cacheCount>2e3&&(s.cacheCount=0,s.widthCache={}),p}catch(y){return{width:0,height:0}}},v=function(t){var e=t.ownerDocument.documentElement,n={top:0,left:0};return void 0!==t.getBoundingClientRect&&(n=t.getBoundingClientRect()),{top:n.top+window.pageYOffset-e.clientTop,left:n.left+window.pageXOffset-e.clientLeft}},m=function(t,e){return{chartX:Math.round(t.pageX-e.left),chartY:Math.round(t.pageY-e.top)}}},9055:function(t,e,n){"use strict";n.d(e,{Ap:function(){return j},EL:function(){return g},Kt:function(){return w},P2:function(){return v},bv:function(){return x},h1:function(){return b},hU:function(){return d},hj:function(){return y},k4:function(){return O},uY:function(){return h}});var r=n(7361),o=n.n(r),i=n(1469),a=n.n(i),u=n(7654),c=n.n(u),l=n(1763),s=n.n(l),f=n(7037),p=n.n(f),h=function(t){return 0===t?0:t>0?1:-1},d=function(t){return p()(t)&&t.indexOf("%")===t.length-1},y=function(t){return s()(t)&&!c()(t)},v=function(t){return y(t)||p()(t)},m=0,g=function(t){var e=++m;return"".concat(t||"").concat(e)},b=function(t,e){var n,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,o=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!y(t)&&!p()(t))return r;if(d(t)){var i=t.indexOf("%");n=e*parseFloat(t.slice(0,i))/100}else n=+t;return c()(n)&&(n=r),o&&n>e&&(n=e),n},w=function(t){if(!t)return null;var e=Object.keys(t);return e&&e.length?t[e[0]]:null},x=function(t){if(!a()(t))return!1;for(var e=t.length,n={},r=0;r2?n-2:0),o=2;o=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}var j={click:"onClick",mousedown:"onMouseDown",mouseup:"onMouseUp",mouseover:"onMouseOver",mousemove:"onMouseMove",mouseout:"onMouseOut",mouseenter:"onMouseEnter",mouseleave:"onMouseLeave",touchcancel:"onTouchCancel",touchend:"onTouchEnd",touchmove:"onTouchMove",touchstart:"onTouchStart"},S=function(t){return"string"==typeof t?t:t?t.displayName||t.name||"Component":""},E=null,M=null,C=function t(e){if(e===E&&d()(M))return M;var n=[];return y.Children.forEach(e,(function(e){p()(e)||((0,v.isFragment)(e)?n=n.concat(t(e.props.children)):n.push(e))})),M=n,E=e,n};function A(t,e){var n=[],r=[];return r=d()(e)?e.map((function(t){return S(t)})):[S(e)],C(t).forEach((function(t){var e=s()(t,"type.displayName")||s()(t,"type.name");-1!==r.indexOf(e)&&n.push(t)})),n}function P(t,e){var n=A(t,e);return n&&n[0]}var k=function(t){if(!t||!t.props)return!1;var e=t.props,n=e.width,r=e.height;return!(!(0,m.hj)(n)||n<=0||!(0,m.hj)(r)||r<=0)},T=["a","altGlyph","altGlyphDef","altGlyphItem","animate","animateColor","animateMotion","animateTransform","circle","clipPath","color-profile","cursor","defs","desc","ellipse","feBlend","feColormatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","filter","font","font-face","font-face-format","font-face-name","font-face-url","foreignObject","g","glyph","glyphRef","hkern","image","line","lineGradient","marker","mask","metadata","missing-glyph","mpath","path","pattern","polygon","polyline","radialGradient","rect","script","set","stop","style","svg","switch","symbol","text","textPath","title","tref","tspan","use","view","vkern"],_=function(t){return t&&t.type&&c()(t.type)&&T.indexOf(t.type)>=0},N=function(t){var e=[];return C(t).forEach((function(t){_(t)&&e.push(t)})),e},D=function(t,e,n){if(!t||"function"==typeof t||"boolean"==typeof t)return null;var r=t;if((0,y.isValidElement)(t)&&(r=t.props),!o()(r))return null;var i={};return Object.keys(r).forEach((function(t){var o;(function(t,e,n,r){var o,i=null!==(o=null===b.ry||void 0===b.ry?void 0:b.ry[r])&&void 0!==o?o:[];return!a()(t)&&(r&&i.includes(e)||b.Yh.includes(e))||n&&b.nv.includes(e)})(null===(o=r)||void 0===o?void 0:o[t],t,e,n)&&(i[t]=r[t])})),i},R=function t(e,n){if(e===n)return!0;var r=y.Children.count(e);if(r!==y.Children.count(n))return!1;if(0===r)return!0;if(1===r)return U(d()(e)?e[0]:e,d()(n)?n[0]:n);for(var o=0;o=0))throw new Error(`invalid digits: ${t}`);if(e>15)return u;const n=10**e;return function(t){this._+=t[0];for(let e=1,r=t.length;ei)if(Math.abs(p*l-s*f)>i&&a){let d=n-u,y=o-c,v=l*l+s*s,m=d*d+y*y,g=Math.sqrt(v),b=Math.sqrt(h),w=a*Math.tan((r-Math.acos((v+h-m)/(2*g*b)))/2),x=w/b,O=w/g;Math.abs(x-1)>i&&this._append`L${t+x*f},${e+x*p}`,this._append`A${a},${a},0,0,${+(p*d>f*y)},${this._x1=t+O*l},${this._y1=e+O*s}`}else this._append`L${this._x1=t},${this._y1=e}`;else;}arc(t,e,n,u,c,l){if(t=+t,e=+e,l=!!l,(n=+n)<0)throw new Error(`negative radius: ${n}`);let s=n*Math.cos(u),f=n*Math.sin(u),p=t+s,h=e+f,d=1^l,y=l?u-c:c-u;null===this._x1?this._append`M${p},${h}`:(Math.abs(this._x1-p)>i||Math.abs(this._y1-h)>i)&&this._append`L${p},${h}`,n&&(y<0&&(y=y%o+o),y>a?this._append`A${n},${n},0,1,${d},${t-s},${e-f}A${n},${n},0,1,${d},${this._x1=p},${this._y1=h}`:y>i&&this._append`A${n},${n},0,${+(y>=r)},${d},${this._x1=t+n*Math.cos(c)},${this._y1=e+n*Math.sin(c)}`)}rect(t,e,n,r){this._append`M${this._x0=this._x1=+t},${this._y0=this._y1=+e}h${n=+n}v${+r}h${-n}Z`}toString(){return this._}}function l(t){let e=3;return t.digits=function(n){if(!arguments.length)return e;if(null==n)e=null;else{const t=Math.floor(n);if(!(t>=0))throw new RangeError(`invalid digits: ${n}`);e=t}return t},()=>new c(e)}}}]); \ No newline at end of file diff --git a/public/15bee7f7990ca2643225932d7401c575bcac4bd3.js.LICENSE.txt b/public/15bee7f7990ca2643225932d7401c575bcac4bd3.js.LICENSE.txt new file mode 100644 index 0000000000..61d57f3cf5 --- /dev/null +++ b/public/15bee7f7990ca2643225932d7401c575bcac4bd3.js.LICENSE.txt @@ -0,0 +1,16 @@ +/*! + Copyright (c) 2018 Jed Watson. + Licensed under the MIT License (MIT), see + http://jedwatson.github.io/classnames +*/ + +/*! decimal.js-light v2.5.1 https://github.com/MikeMcl/decimal.js-light/LICENCE */ + +/** @license React v16.13.1 + * react-is.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ diff --git a/public/2107372e002862be1ce1192c4d0a6f8ef400df30.js b/public/2107372e002862be1ce1192c4d0a6f8ef400df30.js new file mode 100644 index 0000000000..6d8de3932f --- /dev/null +++ b/public/2107372e002862be1ce1192c4d0a6f8ef400df30.js @@ -0,0 +1,2 @@ +/*! For license information please see 2107372e002862be1ce1192c4d0a6f8ef400df30.js.LICENSE.txt */ +(self.webpackChunkjonaso_de=self.webpackChunkjonaso_de||[]).push([[585],{4184:function(t,e){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var t=[],e=0;e(u=(a=Math.ceil(p/v))>u?a+1:u+1)&&(i=u,r.length=1),r.reverse();i--;)r.push(0);r.reverse()}for((u=l.length)-(i=s.length)<0&&(i=u,r=s,s=l,l=r),n=0;i;)n=(l[--i]=l[i]+s[i]+n)/y|0,l[i]%=y;for(n&&(l.unshift(n),++o),u=l.length;0==l[--u];)l.pop();return e.d=l,e.e=o,c?k(e,p):e}function x(t,e,n){if(t!==~~t||tn)throw Error(s+t)}function O(t){var e,n,r,o=t.length-1,i="",a=t[0];if(o>0){for(i+=a,e=1;et.e^i.s<0?1:-1;for(e=0,n=(r=i.d.length)<(o=t.d.length)?r:o;et.d[e]^i.s<0?1:-1;return r===o?0:r>o^i.s<0?1:-1},b.decimalPlaces=b.dp=function(){var t=this,e=t.d.length-1,n=(e-t.e)*v;if(e=t.d[e])for(;e%10==0;e/=10)n--;return n<0?0:n},b.dividedBy=b.div=function(t){return j(this,new this.constructor(t))},b.dividedToIntegerBy=b.idiv=function(t){var e=this.constructor;return k(j(this,new e(t),0,1),e.precision)},b.equals=b.eq=function(t){return!this.cmp(t)},b.exponent=function(){return E(this)},b.greaterThan=b.gt=function(t){return this.cmp(t)>0},b.greaterThanOrEqualTo=b.gte=function(t){return this.cmp(t)>=0},b.isInteger=b.isint=function(){return this.e>this.d.length-2},b.isNegative=b.isneg=function(){return this.s<0},b.isPositive=b.ispos=function(){return this.s>0},b.isZero=function(){return 0===this.s},b.lessThan=b.lt=function(t){return this.cmp(t)<0},b.lessThanOrEqualTo=b.lte=function(t){return this.cmp(t)<1},b.logarithm=b.log=function(t){var e,n=this,r=n.constructor,o=r.precision,a=o+5;if(void 0===t)t=new r(10);else if((t=new r(t)).s<1||t.eq(i))throw Error(l+"NaN");if(n.s<1)throw Error(l+(n.s?"NaN":"-Infinity"));return n.eq(i)?new r(0):(c=!1,e=j(P(n,a),P(t,a),a),c=!0,k(e,o))},b.minus=b.sub=function(t){var e=this;return t=new e.constructor(t),e.s==t.s?T(e,t):w(e,(t.s=-t.s,t))},b.modulo=b.mod=function(t){var e,n=this,r=n.constructor,o=r.precision;if(!(t=new r(t)).s)throw Error(l+"NaN");return n.s?(c=!1,e=j(n,t,0,1).times(t),c=!0,n.minus(e)):k(new r(n),o)},b.naturalExponential=b.exp=function(){return S(this)},b.naturalLogarithm=b.ln=function(){return P(this)},b.negated=b.neg=function(){var t=new this.constructor(this);return t.s=-t.s||0,t},b.plus=b.add=function(t){var e=this;return t=new e.constructor(t),e.s==t.s?w(e,t):T(e,(t.s=-t.s,t))},b.precision=b.sd=function(t){var e,n,r,o=this;if(void 0!==t&&t!==!!t&&1!==t&&0!==t)throw Error(s+t);if(e=E(o)+1,n=(r=o.d.length-1)*v+1,r=o.d[r]){for(;r%10==0;r/=10)n--;for(r=o.d[0];r>=10;r/=10)n++}return t&&e>n?e:n},b.squareRoot=b.sqrt=function(){var t,e,n,r,o,i,a,u=this,s=u.constructor;if(u.s<1){if(!u.s)return new s(0);throw Error(l+"NaN")}for(t=E(u),c=!1,0==(o=Math.sqrt(+u))||o==1/0?(((e=O(u.d)).length+t)%2==0&&(e+="0"),o=Math.sqrt(e),t=p((t+1)/2)-(t<0||t%2),r=new s(e=o==1/0?"5e"+t:(e=o.toExponential()).slice(0,e.indexOf("e")+1)+t)):r=new s(o.toString()),o=a=(n=s.precision)+3;;)if(r=(i=r).plus(j(u,i,a+2)).times(.5),O(i.d).slice(0,a)===(e=O(r.d)).slice(0,a)){if(e=e.slice(a-3,a+1),o==a&&"4999"==e){if(k(i,n+1,0),i.times(i).eq(u)){r=i;break}}else if("9999"!=e)break;a+=4}return c=!0,k(r,n)},b.times=b.mul=function(t){var e,n,r,o,i,a,u,l,s,f=this,p=f.constructor,h=f.d,d=(t=new p(t)).d;if(!f.s||!t.s)return new p(0);for(t.s*=f.s,n=f.e+t.e,(l=h.length)<(s=d.length)&&(i=h,h=d,d=i,a=l,l=s,s=a),i=[],r=a=l+s;r--;)i.push(0);for(r=s;--r>=0;){for(e=0,o=l+r;o>r;)u=i[o]+d[r]*h[o-r-1]+e,i[o--]=u%y|0,e=u/y|0;i[o]=(i[o]+e)%y|0}for(;!i[--a];)i.pop();return e?++n:i.shift(),t.d=i,t.e=n,c?k(t,p.precision):t},b.toDecimalPlaces=b.todp=function(t,e){var n=this,r=n.constructor;return n=new r(n),void 0===t?n:(x(t,0,a),void 0===e?e=r.rounding:x(e,0,8),k(n,t+E(n)+1,e))},b.toExponential=function(t,e){var n,r=this,o=r.constructor;return void 0===t?n=_(r,!0):(x(t,0,a),void 0===e?e=o.rounding:x(e,0,8),n=_(r=k(new o(r),t+1,e),!0,t+1)),n},b.toFixed=function(t,e){var n,r,o=this,i=o.constructor;return void 0===t?_(o):(x(t,0,a),void 0===e?e=i.rounding:x(e,0,8),n=_((r=k(new i(o),t+E(o)+1,e)).abs(),!1,t+E(r)+1),o.isneg()&&!o.isZero()?"-"+n:n)},b.toInteger=b.toint=function(){var t=this,e=t.constructor;return k(new e(t),E(t)+1,e.rounding)},b.toNumber=function(){return+this},b.toPower=b.pow=function(t){var e,n,r,o,a,u,s=this,f=s.constructor,h=+(t=new f(t));if(!t.s)return new f(i);if(!(s=new f(s)).s){if(t.s<1)throw Error(l+"Infinity");return s}if(s.eq(i))return s;if(r=f.precision,t.eq(i))return k(s,r);if(u=(e=t.e)>=(n=t.d.length-1),a=s.s,u){if((n=h<0?-h:h)<=m){for(o=new f(i),e=Math.ceil(r/v+4),c=!1;n%2&&N((o=o.times(s)).d,e),0!==(n=p(n/2));)N((s=s.times(s)).d,e);return c=!0,t.s<0?new f(i).div(o):k(o,r)}}else if(a<0)throw Error(l+"NaN");return a=a<0&&1&t.d[Math.max(e,n)]?-1:1,s.s=1,c=!1,o=t.times(P(s,r+12)),c=!0,(o=S(o)).s=a,o},b.toPrecision=function(t,e){var n,r,o=this,i=o.constructor;return void 0===t?r=_(o,(n=E(o))<=i.toExpNeg||n>=i.toExpPos):(x(t,1,a),void 0===e?e=i.rounding:x(e,0,8),r=_(o=k(new i(o),t,e),t<=(n=E(o))||n<=i.toExpNeg,t)),r},b.toSignificantDigits=b.tosd=function(t,e){var n=this.constructor;return void 0===t?(t=n.precision,e=n.rounding):(x(t,1,a),void 0===e?e=n.rounding:x(e,0,8)),k(new n(this),t,e)},b.toString=b.valueOf=b.val=b.toJSON=function(){var t=this,e=E(t),n=t.constructor;return _(t,e<=n.toExpNeg||e>=n.toExpPos)};var j=function(){function t(t,e){var n,r=0,o=t.length;for(t=t.slice();o--;)n=t[o]*e+r,t[o]=n%y|0,r=n/y|0;return r&&t.unshift(r),t}function e(t,e,n,r){var o,i;if(n!=r)i=n>r?1:-1;else for(o=i=0;oe[o]?1:-1;break}return i}function n(t,e,n){for(var r=0;n--;)t[n]-=r,r=t[n]1;)t.shift()}return function(r,o,i,a){var u,c,s,f,p,h,d,m,g,b,w,x,O,j,S,M,C,P,A=r.constructor,T=r.s==o.s?1:-1,_=r.d,N=o.d;if(!r.s)return new A(r);if(!o.s)throw Error(l+"Division by zero");for(c=r.e-o.e,C=N.length,S=_.length,m=(d=new A(T)).d=[],s=0;N[s]==(_[s]||0);)++s;if(N[s]>(_[s]||0)&&--c,(x=null==i?i=A.precision:a?i+(E(r)-E(o))+1:i)<0)return new A(0);if(x=x/v+2|0,s=0,1==C)for(f=0,N=N[0],x++;(s1&&(N=t(N,f),_=t(_,f),C=N.length,S=_.length),j=C,b=(g=_.slice(0,C)).length;b=y/2&&++M;do{f=0,(u=e(N,g,C,b))<0?(w=g[0],C!=b&&(w=w*y+(g[1]||0)),(f=w/M|0)>1?(f>=y&&(f=y-1),1==(u=e(p=t(N,f),g,h=p.length,b=g.length))&&(f--,n(p,C16)throw Error(f+E(t));if(!t.s)return new p(i);for(null==e?(c=!1,u=d):u=e,a=new p(.03125);t.abs().gte(.1);)t=t.times(a),s+=5;for(u+=Math.log(h(2,s))/Math.LN10*2+5|0,n=r=o=new p(i),p.precision=u;;){if(r=k(r.times(t),u),n=n.times(++l),O((a=o.plus(j(r,n,u))).d).slice(0,u)===O(o.d).slice(0,u)){for(;s--;)o=k(o.times(o),u);return p.precision=d,null==e?(c=!0,k(o,d)):o}o=a}}function E(t){for(var e=t.e*v,n=t.d[0];n>=10;n/=10)e++;return e}function M(t,e,n){if(e>t.LN10.sd())throw c=!0,n&&(t.precision=n),Error(l+"LN10 precision limit exceeded");return k(new t(t.LN10),e)}function C(t){for(var e="";t--;)e+="0";return e}function P(t,e){var n,r,o,a,u,s,f,p,h,d=1,y=t,v=y.d,m=y.constructor,g=m.precision;if(y.s<1)throw Error(l+(y.s?"NaN":"-Infinity"));if(y.eq(i))return new m(0);if(null==e?(c=!1,p=g):p=e,y.eq(10))return null==e&&(c=!0),M(m,p);if(p+=10,m.precision=p,r=(n=O(v)).charAt(0),a=E(y),!(Math.abs(a)<15e14))return f=M(m,p+2,g).times(a+""),y=P(new m(r+"."+n.slice(1)),p-10).plus(f),m.precision=g,null==e?(c=!0,k(y,g)):y;for(;r<7&&1!=r||1==r&&n.charAt(1)>3;)r=(n=O((y=y.times(t)).d)).charAt(0),d++;for(a=E(y),r>1?(y=new m("0."+n),a++):y=new m(r+"."+n.slice(1)),s=u=y=j(y.minus(i),y.plus(i),p),h=k(y.times(y),p),o=3;;){if(u=k(u.times(h),p),O((f=s.plus(j(u,new m(o),p))).d).slice(0,p)===O(s.d).slice(0,p))return s=s.times(2),0!==a&&(s=s.plus(M(m,p+2,g).times(a+""))),s=j(s,new m(d),p),m.precision=g,null==e?(c=!0,k(s,g)):s;s=f,o+=2}}function A(t,e){var n,r,o;for((n=e.indexOf("."))>-1&&(e=e.replace(".","")),(r=e.search(/e/i))>0?(n<0&&(n=r),n+=+e.slice(r+1),e=e.substring(0,r)):n<0&&(n=e.length),r=0;48===e.charCodeAt(r);)++r;for(o=e.length;48===e.charCodeAt(o-1);)--o;if(e=e.slice(r,o)){if(o-=r,n=n-r-1,t.e=p(n/v),t.d=[],r=(n+1)%v,n<0&&(r+=v),rg||t.e<-g))throw Error(f+n)}else t.s=0,t.e=0,t.d=[0];return t}function k(t,e,n){var r,o,i,a,u,l,s,d,m=t.d;for(a=1,i=m[0];i>=10;i/=10)a++;if((r=e-a)<0)r+=v,o=e,s=m[d=0];else{if((d=Math.ceil((r+1)/v))>=(i=m.length))return t;for(s=i=m[d],a=1;i>=10;i/=10)a++;o=(r%=v)-v+a}if(void 0!==n&&(u=s/(i=h(10,a-o-1))%10|0,l=e<0||void 0!==m[d+1]||s%i,l=n<4?(u||l)&&(0==n||n==(t.s<0?3:2)):u>5||5==u&&(4==n||l||6==n&&(r>0?o>0?s/h(10,a-o):0:m[d-1])%10&1||n==(t.s<0?8:7))),e<1||!m[0])return l?(i=E(t),m.length=1,e=e-i-1,m[0]=h(10,(v-e%v)%v),t.e=p(-e/v)||0):(m.length=1,m[0]=t.e=t.s=0),t;if(0==r?(m.length=d,i=1,d--):(m.length=d+1,i=h(10,v-r),m[d]=o>0?(s/h(10,a-o)%h(10,o)|0)*i:0),l)for(;;){if(0==d){(m[0]+=i)==y&&(m[0]=1,++t.e);break}if(m[d]+=i,m[d]!=y)break;m[d--]=0,i=1}for(r=m.length;0===m[--r];)m.pop();if(c&&(t.e>g||t.e<-g))throw Error(f+E(t));return t}function T(t,e){var n,r,o,i,a,u,l,s,f,p,h=t.constructor,d=h.precision;if(!t.s||!e.s)return e.s?e.s=-e.s:e=new h(t),c?k(e,d):e;if(l=t.d,p=e.d,r=e.e,s=t.e,l=l.slice(),a=s-r){for((f=a<0)?(n=l,a=-a,u=p.length):(n=p,r=s,u=l.length),a>(o=Math.max(Math.ceil(d/v),u)+2)&&(a=o,n.length=1),n.reverse(),o=a;o--;)n.push(0);n.reverse()}else{for((f=(o=l.length)<(u=p.length))&&(u=o),o=0;o0;--o)l[u++]=0;for(o=p.length;o>a;){if(l[--o]0?i=i.charAt(0)+"."+i.slice(1)+C(r):a>1&&(i=i.charAt(0)+"."+i.slice(1)),i=i+(o<0?"e":"e+")+o):o<0?(i="0."+C(-o-1)+i,n&&(r=n-a)>0&&(i+=C(r))):o>=a?(i+=C(o+1-a),n&&(r=n-o-1)>0&&(i=i+"."+C(r))):((r=o+1)0&&(o+1===a&&(i+="."),i+=C(r))),t.s<0?"-"+i:i}function N(t,e){if(t.length>e)return t.length=e,!0}function D(t){if(!t||"object"!=typeof t)throw Error(l+"Object expected");var e,n,r,o=["precision",1,a,"rounding",0,8,"toExpNeg",-1/0,0,"toExpPos",0,1/0];for(e=0;e=o[e+1]&&r<=o[e+2]))throw Error(s+n+": "+r);this[n]=r}if(void 0!==(r=t[n="LN10"])){if(r!=Math.LN10)throw Error(s+n+": "+r);this[n]=new this(r)}return this}u=function t(e){var n,r,o;function i(t){var e=this;if(!(e instanceof i))return new i(t);if(e.constructor=i,t instanceof i)return e.s=t.s,e.e=t.e,void(e.d=(t=t.d)?t.slice():t);if("number"==typeof t){if(0*t!=0)throw Error(s+t);if(t>0)e.s=1;else{if(!(t<0))return e.s=0,e.e=0,void(e.d=[0]);t=-t,e.s=-1}return t===~~t&&t<1e7?(e.e=0,void(e.d=[t])):A(e,t.toString())}if("string"!=typeof t)throw Error(s+t);if(45===t.charCodeAt(0)?(t=t.slice(1),e.s=-1):e.s=1,!d.test(t))throw Error(s+t);A(e,t)}if(i.prototype=b,i.ROUND_UP=0,i.ROUND_DOWN=1,i.ROUND_CEIL=2,i.ROUND_FLOOR=3,i.ROUND_HALF_UP=4,i.ROUND_HALF_DOWN=5,i.ROUND_HALF_EVEN=6,i.ROUND_HALF_CEIL=7,i.ROUND_HALF_FLOOR=8,i.clone=t,i.config=i.set=D,void 0===e&&(e={}),e)for(o=["precision","rounding","toExpNeg","toExpPos","LN10"],n=0;n0;)if(!n(t[o],e[o],o,o,t,e,r))return!1;return!0}var b=n(g);function w(t,e){return a(t.valueOf(),e.valueOf())}function x(t,e,n,r){var o=t.size===e.size;if(!o)return!1;if(!t.size)return!0;var i={},a=0;return t.forEach((function(u,c){if(o){var l=!1,s=0;e.forEach((function(o,f){l||i[s]||!(l=n(c,f,a,s,t,e,r)&&n(u,o,c,f,t,e,r))||(i[s]=!0),s++})),a++,o=l}})),o}var O=n(x),j="_owner",S=Object.prototype.hasOwnProperty;function E(t,e,n,r){var o,i=Object.keys(t),a=i.length;if(Object.keys(e).length!==a)return!1;for(;a-- >0;){if((o=i[a])===j){var u=!!t.$$typeof,c=!!e.$$typeof;if((u||c)&&u!==c)return!1}if(!S.call(e,o)||!n(t[o],e[o],o,o,t,e,r))return!1}return!0}var M=n(E);function C(t,e){return t.source===e.source&&t.flags===e.flags}function P(t,e,n,r){var o=t.size===e.size;if(!o)return!1;if(!t.size)return!0;var i={};return t.forEach((function(a,u){if(o){var c=!1,l=0;e.forEach((function(o,s){c||i[l]||!(c=n(a,o,u,s,t,e,r))||(i[l]=!0),l++})),o=c}})),o}var A=n(P),k=Object.freeze({areArraysEqual:g,areDatesEqual:w,areMapsEqual:x,areObjectsEqual:E,areRegExpsEqual:C,areSetsEqual:P,createIsNestedEqual:e}),T=Object.freeze({areArraysEqual:b,areDatesEqual:w,areMapsEqual:O,areObjectsEqual:M,areRegExpsEqual:C,areSetsEqual:A,createIsNestedEqual:e}),_=m(k);function N(t,e){return _(t,e,void 0)}var D=m(r(k,{createIsNestedEqual:function(){return a}}));function R(t,e){return D(t,e,void 0)}var U=m(T);function I(t,e){return U(t,e,new WeakMap)}var L=m(r(T,{createIsNestedEqual:function(){return a}}));function $(t,e){return L(t,e,new WeakMap)}function z(t){return m(r(k,t(k)))}function B(t){var e=m(r(T,t(T)));return function(t,n,r){return void 0===r&&(r=new WeakMap),e(t,n,r)}}t.circularDeepEqual=I,t.circularShallowEqual=$,t.createCustomCircularEqual=B,t.createCustomEqual=z,t.deepEqual=N,t.sameValueZeroEqual=a,t.shallowEqual=R,Object.defineProperty(t,"__esModule",{value:!0})}(e)},9712:function(t,e){e.polyfill=t=>t},7810:function(t,e,n){"use strict";n.d(e,{p:function(){return u}});var r=n(7294),o=n(4160);const i=()=>(0,o.K2)("1640202326").site.siteMetadata;var a=r.createElement;function u({title:t,description:e,pathname:n,children:o}){const{title:u,description:c,image:l,siteUrl:s,twitterUsername:f}=i(),p={title:t||u,description:e||c,image:`${s}${l}`,url:`${s}${n||""}`,twitterUsername:f};return a(r.Fragment,null,a("meta",{key:"charSet",charSet:"utf-8"}),a("title",null,p.title),a("meta",{name:"description",content:p.description}),a("link",{rel:"icon",href:"data:image/svg+xml,👤"}),o)}},6782:function(t,e,n){"use strict";n.d(e,{Z:function(){return h}});var r=n(4572),o=n(7294),i=n(4160),a=o.createElement;const u={navSpacer:{marginBottom:"2em"}},c=({active:t,handleItemClick:e,item:n,url:r=null})=>a("a",{key:n,href:r,name:n,tabIndex:-42,role:"presentation",onClick:e,className:"item"+(t?" active":"")},n);function l(){const{0:t,1:e}=(0,o.useState)(""),{0:n,1:r}=(0,o.useState)(!1);function l(t){t.preventDefault();let n=t.target.getAttribute("href");const r=t.target.name.toLowerCase();e(r),n?(n="/"===n.charAt(0)?n.slice(1):n,(0,i.c4)(`/${n}`)):"home"===r?(0,i.c4)("/"):(0,i.c4)(`/${r}`)}return(0,o.useEffect)((()=>{const t=window.location.pathname.replace(/\//g,"").toLowerCase();e(t||"home");const n=t.startsWith("research")||t.startsWith("projects");r(n)}),[]),a("header",null,a("div",{id:"desktopmenu"},a("div",{className:"ui fluid pointing stackable seven item menu",primary:"true"},a(c,{key:"home",active:"home"===t,item:"Home",handleItemClick:l}),a(c,{key:"artworks",active:t.startsWith("artworks"),item:"Artworks",link:!1,header:!0,handleItemClick:l}),a(c,{key:"publications",active:"publications"===t,item:"Publications",handleItemClick:l}),a(c,{key:"research",active:t.startsWith("research")||"projects"===t,item:"Research",link:!1,header:!0,handleItemClick:l}),a(c,{key:"cv",active:"cv"===t,item:"CV",handleItemClick:l})),n&&a("div",{className:"ui small pointing secondary stackable seven item menu"},a(c,{key:"researchprojects",active:"researchprojects"===t,item:"Projects",url:"/research/projects",handleItemClick:l}),a(c,{key:"researchinterests",active:"research"===t||"researchinterests"===t,item:"Interests",url:"/research/interests",handleItemClick:l}),a(c,{key:"researchreading",active:"researchreading"===t,item:"Reading",url:"/research/reading",handleItemClick:l}),a(c,{key:"researchinfluences",active:"researchinfluences"===t,item:"Influences",url:"/research/influences",handleItemClick:l}))),a("div",{style:u.navSpacer}))}var s=o.createElement;function f(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function p(t){for(var e=1;e-1}},1196:function(t){t.exports=function(t,e,n){for(var r=-1,o=null==t?0:t.length;++r0&&i(s)?n>1?t(s,n-1,i,a,u):r(u,s):a||(u[u.length]=s)}return u}},8483:function(t,e,n){var r=n(5063)();t.exports=r},7816:function(t,e,n){var r=n(8483),o=n(3674);t.exports=function(t,e){return t&&r(t,e,o)}},7786:function(t,e,n){var r=n(1811),o=n(327);t.exports=function(t,e){for(var n=0,i=(e=r(e,t)).length;null!=t&&ne}},13:function(t){t.exports=function(t,e){return null!=t&&e in Object(t)}},2118:function(t,e,n){var r=n(1848),o=n(2722),i=n(2351);t.exports=function(t,e,n){return e==e?i(t,e,n):r(t,o,n)}},9454:function(t,e,n){var r=n(4239),o=n(7005),i="[object Arguments]";t.exports=function(t){return o(t)&&r(t)==i}},939:function(t,e,n){var r=n(2492),o=n(7005);t.exports=function t(e,n,i,a,u){return e===n||(null==e||null==n||!o(e)&&!o(n)?e!=e&&n!=n:r(e,n,i,a,t,u))}},2492:function(t,e,n){var r=n(6384),o=n(7114),i=n(8351),a=n(6096),u=n(8882),c=n(1469),l=n(4144),s=n(6719),f=1,p="[object Arguments]",h="[object Array]",d="[object Object]",y=Object.prototype.hasOwnProperty;t.exports=function(t,e,n,v,m,g){var b=c(t),w=c(e),x=b?h:u(t),O=w?h:u(e),j=(x=x==p?d:x)==d,S=(O=O==p?d:O)==d,E=x==O;if(E&&l(t)){if(!l(e))return!1;b=!0,j=!1}if(E&&!j)return g||(g=new r),b||s(t)?o(t,e,n,v,m,g):i(t,e,x,n,v,m,g);if(!(n&f)){var M=j&&y.call(t,"__wrapped__"),C=S&&y.call(e,"__wrapped__");if(M||C){var P=M?t.value():t,A=C?e.value():e;return g||(g=new r),m(P,A,n,v,g)}}return!!E&&(g||(g=new r),a(t,e,n,v,m,g))}},2958:function(t,e,n){var r=n(6384),o=n(939),i=1,a=2;t.exports=function(t,e,n,u){var c=n.length,l=c,s=!u;if(null==t)return!l;for(t=Object(t);c--;){var f=n[c];if(s&&f[2]?f[1]!==t[f[0]]:!(f[0]in t))return!1}for(;++co?0:o+e),(n=n>o?o:n)<0&&(n+=o),o=e>n?0:n-e>>>0,e>>>=0;for(var i=Array(o);++r=l){var v=e?null:u(t);if(v)return c(v);h=!1,f=a,y=new r}else y=e?[]:d;t:for(;++s=o?t:r(t,e,n)}},6393:function(t,e,n){var r=n(3448);t.exports=function(t,e){if(t!==e){var n=void 0!==t,o=null===t,i=t==t,a=r(t),u=void 0!==e,c=null===e,l=e==e,s=r(e);if(!c&&!s&&!a&&t>e||a&&u&&l&&!c&&!s||o&&u&&l||!n&&l||!i)return 1;if(!o&&!a&&!s&&t=c?l:l*("desc"==n[o]?-1:1)}return t.index-e.index}},4429:function(t,e,n){var r=n(5639)["__core-js_shared__"];t.exports=r},9291:function(t,e,n){var r=n(8612);t.exports=function(t,e){return function(n,o){if(null==n)return n;if(!r(n))return t(n,o);for(var i=n.length,a=e?i:-1,u=Object(n);(e?a--:++ap))return!1;var d=s.get(t),y=s.get(e);if(d&&y)return d==e&&y==t;var v=-1,m=!0,g=n&u?new r:void 0;for(s.set(t,e),s.set(e,t);++v-1&&t%1==0&&t-1}},4705:function(t,e,n){var r=n(8470);t.exports=function(t,e){var n=this.__data__,o=r(n,t);return o<0?(++this.size,n.push([t,e])):n[o][1]=e,this}},4785:function(t,e,n){var r=n(1989),o=n(8407),i=n(7071);t.exports=function(){this.size=0,this.__data__={hash:new r,map:new(i||o),string:new r}}},1285:function(t,e,n){var r=n(5050);t.exports=function(t){var e=r(this,t).delete(t);return this.size-=e?1:0,e}},6e3:function(t,e,n){var r=n(5050);t.exports=function(t){return r(this,t).get(t)}},9916:function(t,e,n){var r=n(5050);t.exports=function(t){return r(this,t).has(t)}},5265:function(t,e,n){var r=n(5050);t.exports=function(t,e){var n=r(this,t),o=n.size;return n.set(t,e),this.size+=n.size==o?0:1,this}},8776:function(t){t.exports=function(t){var e=-1,n=Array(t.size);return t.forEach((function(t,r){n[++e]=[r,t]})),n}},2634:function(t){t.exports=function(t,e){return function(n){return null!=n&&(n[t]===e&&(void 0!==e||t in Object(n)))}}},4523:function(t,e,n){var r=n(8306),o=500;t.exports=function(t){var e=r(t,(function(t){return n.size===o&&n.clear(),t})),n=e.cache;return e}},4536:function(t,e,n){var r=n(852)(Object,"create");t.exports=r},6916:function(t,e,n){var r=n(5569)(Object.keys,Object);t.exports=r},1167:function(t,e,n){t=n.nmd(t);var r=n(1957),o=e&&!e.nodeType&&e,i=o&&t&&!t.nodeType&&t,a=i&&i.exports===o&&r.process,u=function(){try{var t=i&&i.require&&i.require("util").types;return t||a&&a.binding&&a.binding("util")}catch(e){}}();t.exports=u},2333:function(t){var e=Object.prototype.toString;t.exports=function(t){return e.call(t)}},5569:function(t){t.exports=function(t,e){return function(n){return t(e(n))}}},5357:function(t,e,n){var r=n(6874),o=Math.max;t.exports=function(t,e,n){return e=o(void 0===e?t.length-1:e,0),function(){for(var i=arguments,a=-1,u=o(i.length-e,0),c=Array(u);++a0){if(++o>=e)return arguments[0]}else o=0;return t.apply(void 0,arguments)}}},7465:function(t,e,n){var r=n(8407);t.exports=function(){this.__data__=new r,this.size=0}},3779:function(t){t.exports=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n}},7599:function(t){t.exports=function(t){return this.__data__.get(t)}},4758:function(t){t.exports=function(t){return this.__data__.has(t)}},4309:function(t,e,n){var r=n(8407),o=n(7071),i=n(3369),a=200;t.exports=function(t,e){var n=this.__data__;if(n instanceof r){var u=n.__data__;if(!o||u.length=e||n<0||m&&t-y>=f}function x(){var t=o();if(w(t))return O(t);h=setTimeout(x,function(t){var n=e-(t-d);return m?c(n,f-(t-y)):n}(t))}function O(t){return h=void 0,g&&l?b(t):(l=s=void 0,p)}function j(){var t=o(),n=w(t);if(l=arguments,s=this,d=t,n){if(void 0===h)return function(t){return y=t,h=setTimeout(x,e),v?b(t):p}(d);if(m)return clearTimeout(h),h=setTimeout(x,e),b(d)}return void 0===h&&(h=setTimeout(x,e)),p}return e=i(e)||0,r(n)&&(v=!!n.leading,f=(m="maxWait"in n)?u(i(n.maxWait)||0,e):f,g="trailing"in n?!!n.trailing:g),j.cancel=function(){void 0!==h&&clearTimeout(h),y=0,l=d=s=h=void 0},j.flush=function(){return void 0===h?p:O(o())},j}},7813:function(t){t.exports=function(t,e){return t===e||t!=t&&e!=e}},4654:function(t,e,n){var r=n(1078),o=n(5161);t.exports=function(t,e){return r(o(t,e),1)}},7361:function(t,e,n){var r=n(7786);t.exports=function(t,e,n){var o=null==t?void 0:r(t,e);return void 0===o?n:o}},9095:function(t,e,n){var r=n(13),o=n(222);t.exports=function(t,e){return null!=t&&o(t,e,r)}},6557:function(t){t.exports=function(t){return t}},5694:function(t,e,n){var r=n(9454),o=n(7005),i=Object.prototype,a=i.hasOwnProperty,u=i.propertyIsEnumerable,c=r(function(){return arguments}())?r:function(t){return o(t)&&a.call(t,"callee")&&!u.call(t,"callee")};t.exports=c},1469:function(t){var e=Array.isArray;t.exports=e},8612:function(t,e,n){var r=n(3560),o=n(1780);t.exports=function(t){return null!=t&&o(t.length)&&!r(t)}},4144:function(t,e,n){t=n.nmd(t);var r=n(5639),o=n(5062),i=e&&!e.nodeType&&e,a=i&&t&&!t.nodeType&&t,u=a&&a.exports===i?r.Buffer:void 0,c=(u?u.isBuffer:void 0)||o;t.exports=c},8446:function(t,e,n){var r=n(939);t.exports=function(t,e){return r(t,e)}},3560:function(t,e,n){var r=n(4239),o=n(3218),i="[object AsyncFunction]",a="[object Function]",u="[object GeneratorFunction]",c="[object Proxy]";t.exports=function(t){if(!o(t))return!1;var e=r(t);return e==a||e==u||e==i||e==c}},1780:function(t){var e=9007199254740991;t.exports=function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=e}},7654:function(t,e,n){var r=n(1763);t.exports=function(t){return r(t)&&t!=+t}},4293:function(t){t.exports=function(t){return null==t}},1763:function(t,e,n){var r=n(4239),o=n(7005),i="[object Number]";t.exports=function(t){return"number"==typeof t||o(t)&&r(t)==i}},3218:function(t){t.exports=function(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}},7005:function(t){t.exports=function(t){return null!=t&&"object"==typeof t}},7037:function(t,e,n){var r=n(4239),o=n(1469),i=n(7005),a="[object String]";t.exports=function(t){return"string"==typeof t||!o(t)&&i(t)&&r(t)==a}},3448:function(t,e,n){var r=n(4239),o=n(7005),i="[object Symbol]";t.exports=function(t){return"symbol"==typeof t||o(t)&&r(t)==i}},6719:function(t,e,n){var r=n(8749),o=n(1717),i=n(1167),a=i&&i.isTypedArray,u=a?o(a):r;t.exports=u},3674:function(t,e,n){var r=n(4636),o=n(280),i=n(8612);t.exports=function(t){return i(t)?r(t):o(t)}},928:function(t){t.exports=function(t){var e=null==t?0:t.length;return e?t[e-1]:void 0}},5161:function(t,e,n){var r=n(9932),o=n(7206),i=n(9199),a=n(1469);t.exports=function(t,e){return(a(t)?r:i)(t,o(e,3))}},6162:function(t,e,n){var r=n(6029),o=n(3325),i=n(6557);t.exports=function(t){return t&&t.length?r(t,i,o):void 0}},8306:function(t,e,n){var r=n(3369),o="Expected a function";function i(t,e){if("function"!=typeof t||null!=e&&"function"!=typeof e)throw new TypeError(o);var n=function(){var r=arguments,o=e?e.apply(this,r):r[0],i=n.cache;if(i.has(o))return i.get(o);var a=t.apply(this,r);return n.cache=i.set(o,a)||i,a};return n.cache=new(i.Cache||r),n}i.Cache=r,t.exports=i},3632:function(t,e,n){var r=n(6029),o=n(433),i=n(6557);t.exports=function(t){return t&&t.length?r(t,i,o):void 0}},308:function(t){t.exports=function(){}},7771:function(t,e,n){var r=n(5639);t.exports=function(){return r.Date.now()}},9601:function(t,e,n){var r=n(371),o=n(9152),i=n(5403),a=n(327);t.exports=function(t){return i(t)?r(a(t)):o(t)}},9734:function(t,e,n){var r=n(1078),o=n(2689),i=n(5976),a=n(6612),u=i((function(t,e){if(null==t)return[];var n=e.length;return n>1&&a(t,e[0],e[1])?e=[]:n>2&&a(e[0],e[1],e[2])&&(e=[e[0]]),o(t,r(e,1),[])}));t.exports=u},479:function(t){t.exports=function(){return[]}},5062:function(t){t.exports=function(){return!1}},3493:function(t,e,n){var r=n(3279),o=n(3218),i="Expected a function";t.exports=function(t,e,n){var a=!0,u=!0;if("function"!=typeof t)throw new TypeError(i);return o(n)&&(a="leading"in n?!!n.leading:a,u="trailing"in n?!!n.trailing:u),r(t,e,{leading:a,maxWait:e,trailing:u})}},4841:function(t,e,n){var r=n(7561),o=n(3218),i=n(3448),a=NaN,u=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,l=/^0o[0-7]+$/i,s=parseInt;t.exports=function(t){if("number"==typeof t)return t;if(i(t))return a;if(o(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=o(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=r(t);var n=c.test(t);return n||l.test(t)?s(t.slice(2),n?2:8):u.test(t)?a:+t}},9833:function(t,e,n){var r=n(531);t.exports=function(t){return null==t?"":r(t)}},5578:function(t,e,n){var r=n(7206),o=n(5652);t.exports=function(t,e){return t&&t.length?o(t,r(e,2)):[]}},1700:function(t,e,n){var r=n(8805)("toUpperCase");t.exports=r},9921:function(t,e){"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,i=n?Symbol.for("react.fragment"):60107,a=n?Symbol.for("react.strict_mode"):60108,u=n?Symbol.for("react.profiler"):60114,c=n?Symbol.for("react.provider"):60109,l=n?Symbol.for("react.context"):60110,s=n?Symbol.for("react.async_mode"):60111,f=n?Symbol.for("react.concurrent_mode"):60111,p=n?Symbol.for("react.forward_ref"):60112,h=n?Symbol.for("react.suspense"):60113,d=n?Symbol.for("react.suspense_list"):60120,y=n?Symbol.for("react.memo"):60115,v=n?Symbol.for("react.lazy"):60116,m=n?Symbol.for("react.block"):60121,g=n?Symbol.for("react.fundamental"):60117,b=n?Symbol.for("react.responder"):60118,w=n?Symbol.for("react.scope"):60119;function x(t){if("object"==typeof t&&null!==t){var e=t.$$typeof;switch(e){case r:switch(t=t.type){case s:case f:case i:case u:case a:case h:return t;default:switch(t=t&&t.$$typeof){case l:case p:case v:case y:case c:return t;default:return e}}case o:return e}}}function O(t){return x(t)===f}e.AsyncMode=s,e.ConcurrentMode=f,e.ContextConsumer=l,e.ContextProvider=c,e.Element=r,e.ForwardRef=p,e.Fragment=i,e.Lazy=v,e.Memo=y,e.Portal=o,e.Profiler=u,e.StrictMode=a,e.Suspense=h,e.isAsyncMode=function(t){return O(t)||x(t)===s},e.isConcurrentMode=O,e.isContextConsumer=function(t){return x(t)===l},e.isContextProvider=function(t){return x(t)===c},e.isElement=function(t){return"object"==typeof t&&null!==t&&t.$$typeof===r},e.isForwardRef=function(t){return x(t)===p},e.isFragment=function(t){return x(t)===i},e.isLazy=function(t){return x(t)===v},e.isMemo=function(t){return x(t)===y},e.isPortal=function(t){return x(t)===o},e.isProfiler=function(t){return x(t)===u},e.isStrictMode=function(t){return x(t)===a},e.isSuspense=function(t){return x(t)===h},e.isValidElementType=function(t){return"string"==typeof t||"function"==typeof t||t===i||t===f||t===u||t===a||t===h||t===d||"object"==typeof t&&null!==t&&(t.$$typeof===v||t.$$typeof===y||t.$$typeof===c||t.$$typeof===l||t.$$typeof===p||t.$$typeof===g||t.$$typeof===b||t.$$typeof===w||t.$$typeof===m)},e.typeOf=x},9864:function(t,e,n){"use strict";t.exports=n(9921)},8181:function(t,e,n){"use strict";n.d(e,{ZP:function(){return Mt},bO:function(){return x}});var r=n(7294),o=n(5697),i=n.n(o),a=n(8367);function u(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=-1;requestAnimationFrame((function r(o){n<0&&(n=o),o-n>e?(t(o),n=-1):requestAnimationFrame(r)}))}function c(t){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},c(t)}function l(t){return function(t){if(Array.isArray(t))return t}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return s(t,e)}(t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);nt.length)&&(e=t.length);for(var n=0,r=new Array(e);n=0&&t<=1}));var l,s,f=k(r,i),p=k(o,a),h=(l=r,s=i,function(t){var e=P(l,s),n=[].concat(S(e.map((function(t,e){return t*e})).slice(1)),[0]);return A(n,t)}),d=function(t){for(var e,n=t>1?1:t,r=n,o=0;o<8;++o){var i=f(r)-n,a=h(r);if(Math.abs(i-n)1?1:e<0?0:e}return p(r)};return d.isStepper=!1,d},_=function(){for(var t=arguments.length,e=new Array(t),n=0;n0&&void 0!==arguments[0]?arguments[0]:{},e=t.stiff,n=void 0===e?100:e,r=t.damping,o=void 0===r?8:r,i=t.dt,a=void 0===i?17:i,u=function(t,e,r){var i=r+(-(t-e)*n-r*o)*a/1e3,u=r*a/1e3+t;return Math.abs(u-e)t.length)&&(e=t.length);for(var n=0,r=new Array(e);n=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}function G(t){return function(t){if(Array.isArray(t))return V(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return V(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return V(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function V(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n0?n[o-1]:r,p=l||Object.keys(c);if("function"==typeof u||"spring"===u)return[].concat(G(t),[e.runJSAnimation.bind(e,{from:f.style,to:c,duration:i,easing:u}),i]);var h=O(p,i,u),d=X(X(X({},f.style),c),{},{transition:h});return[].concat(G(t),[d,i,s]).filter(b)}),[a,Math.max(c,r)])),[t.onAnimationEnd]))}},{key:"runAnimation",value:function(t){this.manager||(this.manager=f());var e=t.begin,n=t.duration,r=t.attributeName,o=t.to,i=t.easing,a=t.onAnimationStart,u=t.onAnimationEnd,c=t.steps,l=t.children,s=this.manager;if(this.unSubscribe=s.subscribe(this.handleStyleChange),"function"!=typeof i&&"function"!=typeof l&&"spring"!==i)if(c.length>1)this.runStepAnimation(t);else{var p=r?ot({},r,o):o,h=O(Object.keys(p),n,i);s.start([a,e,X(X({},p),{},{transition:h}),n,u])}else this.runJSAnimation(t)}},{key:"handleStyleChange",value:function(t){this.changeStyle(t)}},{key:"changeStyle",value:function(t){this.mounted&&this.setState({style:t})}},{key:"render",value:function(){var t=this.props,e=t.children,n=(t.begin,t.duration,t.attributeName,t.easing,t.isActive),o=(t.steps,t.from,t.to,t.canBegin,t.onAnimationEnd,t.shouldReAnimate,t.onAnimationReStart,Y(t,W)),i=r.Children.count(e),a=x(this.state.style);if("function"==typeof e)return e(a);if(!n||0===i)return e;var u=function(t){var e=t.props,n=e.style,i=void 0===n?{}:n,u=e.className;return(0,r.cloneElement)(t,X(X({},o),{},{style:X(X({},i),a),className:u}))};return 1===i?u(r.Children.only(e)):r.createElement("div",null,r.Children.map(e,(function(t){return u(t)})))}}])&&J(e.prototype,n),o&&J(e,o),Object.defineProperty(e,"prototype",{writable:!1}),u}(r.PureComponent);ot(at,"displayName","Animate"),ot(at,"propTypes",{from:i().oneOfType([i().object,i().string]),to:i().oneOfType([i().object,i().string]),attributeName:i().string,duration:i().number,begin:i().number,easing:i().oneOfType([i().string,i().func]),steps:i().arrayOf(i().shape({duration:i().number.isRequired,style:i().object.isRequired,easing:i().oneOfType([i().oneOf(["ease","ease-in","ease-out","ease-in-out","linear"]),i().func]),properties:i().arrayOf("string"),onAnimationEnd:i().func})),children:i().oneOfType([i().node,i().func]),isActive:i().bool,canBegin:i().bool,onAnimationEnd:i().func,shouldReAnimate:i().bool,onAnimationStart:i().func,onAnimationReStart:i().func}),ot(at,"defaultProps",{begin:0,duration:1e3,from:"",to:"",attributeName:"",easing:"ease",isActive:!0,canBegin:!0,steps:[],onAnimationEnd:function(){},onAnimationStart:function(){}});var ut=at,ct=n(4317),lt=["children","appearOptions","enterOptions","leaveOptions"];function st(t){return st="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},st(t)}function ft(){return ft=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}function ht(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function dt(t){for(var e=1;e0&&void 0!==arguments[0]?arguments[0]:{},e=t.steps,n=t.duration;return e&&e.length?e.reduce((function(t,e){return t+(Number.isFinite(e.duration)&&e.duration>0?e.duration:0)}),0):Number.isFinite(n)?n:0},jt=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&vt(t,e)}(a,t);var e,n,o,i=mt(a);function a(){var t;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a);for(var e=arguments.length,n=new Array(e),r=0;r=0||(o[n]=t[n]);return o}(t,["children","in"]),a=r.default.Children.toArray(e),u=a[0],c=a[1];return delete o.onEnter,delete o.onEntering,delete o.onEntered,delete o.onExit,delete o.onExiting,delete o.onExited,r.default.createElement(i.default,o,n?r.default.cloneElement(u,{key:"first",onEnter:this.handleEnter,onEntering:this.handleEntering,onEntered:this.handleEntered}):r.default.cloneElement(c,{key:"second",onEnter:this.handleExit,onEntering:this.handleExiting,onEntered:this.handleExited}))},a}(r.default.Component);u.propTypes={};var c=u;e.default=c,t.exports=e.default},644:function(t,e,n){"use strict";e.__esModule=!0,e.default=e.EXITING=e.ENTERED=e.ENTERING=e.EXITED=e.UNMOUNTED=void 0;var r=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)if(Object.prototype.hasOwnProperty.call(t,n)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(t,n):{};r.get||r.set?Object.defineProperty(e,n,r):e[n]=t[n]}return e.default=t,e}(n(5697)),o=u(n(7294)),i=u(n(3935)),a=n(9712);n(4726);function u(t){return t&&t.__esModule?t:{default:t}}var c="unmounted";e.UNMOUNTED=c;var l="exited";e.EXITED=l;var s="entering";e.ENTERING=s;var f="entered";e.ENTERED=f;var p="exiting";e.EXITING=p;var h=function(t){var e,n;function r(e,n){var r;r=t.call(this,e,n)||this;var o,i=n.transitionGroup,a=i&&!i.isMounting?e.enter:e.appear;return r.appearStatus=null,e.in?a?(o=l,r.appearStatus=s):o=f:o=e.unmountOnExit||e.mountOnEnter?c:l,r.state={status:o},r.nextCallback=null,r}n=t,(e=r).prototype=Object.create(n.prototype),e.prototype.constructor=e,e.__proto__=n;var a=r.prototype;return a.getChildContext=function(){return{transitionGroup:null}},r.getDerivedStateFromProps=function(t,e){return t.in&&e.status===c?{status:l}:null},a.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},a.componentDidUpdate=function(t){var e=null;if(t!==this.props){var n=this.state.status;this.props.in?n!==s&&n!==f&&(e=s):n!==s&&n!==f||(e=p)}this.updateStatus(!1,e)},a.componentWillUnmount=function(){this.cancelNextCallback()},a.getTimeouts=function(){var t,e,n,r=this.props.timeout;return t=e=n=r,null!=r&&"number"!=typeof r&&(t=r.exit,e=r.enter,n=void 0!==r.appear?r.appear:e),{exit:t,enter:e,appear:n}},a.updateStatus=function(t,e){if(void 0===t&&(t=!1),null!==e){this.cancelNextCallback();var n=i.default.findDOMNode(this);e===s?this.performEnter(n,t):this.performExit(n)}else this.props.unmountOnExit&&this.state.status===l&&this.setState({status:c})},a.performEnter=function(t,e){var n=this,r=this.props.enter,o=this.context.transitionGroup?this.context.transitionGroup.isMounting:e,i=this.getTimeouts(),a=o?i.appear:i.enter;e||r?(this.props.onEnter(t,o),this.safeSetState({status:s},(function(){n.props.onEntering(t,o),n.onTransitionEnd(t,a,(function(){n.safeSetState({status:f},(function(){n.props.onEntered(t,o)}))}))}))):this.safeSetState({status:f},(function(){n.props.onEntered(t)}))},a.performExit=function(t){var e=this,n=this.props.exit,r=this.getTimeouts();n?(this.props.onExit(t),this.safeSetState({status:p},(function(){e.props.onExiting(t),e.onTransitionEnd(t,r.exit,(function(){e.safeSetState({status:l},(function(){e.props.onExited(t)}))}))}))):this.safeSetState({status:l},(function(){e.props.onExited(t)}))},a.cancelNextCallback=function(){null!==this.nextCallback&&(this.nextCallback.cancel(),this.nextCallback=null)},a.safeSetState=function(t,e){e=this.setNextCallback(e),this.setState(t,e)},a.setNextCallback=function(t){var e=this,n=!0;return this.nextCallback=function(r){n&&(n=!1,e.nextCallback=null,t(r))},this.nextCallback.cancel=function(){n=!1},this.nextCallback},a.onTransitionEnd=function(t,e,n){this.setNextCallback(n);var r=null==e&&!this.props.addEndListener;t&&!r?(this.props.addEndListener&&this.props.addEndListener(t,this.nextCallback),null!=e&&setTimeout(this.nextCallback,e)):setTimeout(this.nextCallback,0)},a.render=function(){var t=this.state.status;if(t===c)return null;var e=this.props,n=e.children,r=function(t,e){if(null==t)return{};var n,r,o={},i=Object.keys(t);for(r=0;r=0||(o[n]=t[n]);return o}(e,["children"]);if(delete r.in,delete r.mountOnEnter,delete r.unmountOnExit,delete r.appear,delete r.enter,delete r.exit,delete r.timeout,delete r.addEndListener,delete r.onEnter,delete r.onEntering,delete r.onEntered,delete r.onExit,delete r.onExiting,delete r.onExited,"function"==typeof n)return n(t,r);var i=o.default.Children.only(n);return o.default.cloneElement(i,r)},r}(o.default.Component);function d(){}h.contextTypes={transitionGroup:r.object},h.childContextTypes={transitionGroup:function(){}},h.propTypes={},h.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:d,onEntering:d,onEntered:d,onExit:d,onExiting:d,onExited:d},h.UNMOUNTED=0,h.EXITED=1,h.ENTERING=2,h.ENTERED=3,h.EXITING=4;var y=(0,a.polyfill)(h);e.default=y},2381:function(t,e,n){"use strict";e.__esModule=!0,e.default=void 0;var r=u(n(5697)),o=u(n(7294)),i=n(9712),a=n(537);function u(t){return t&&t.__esModule?t:{default:t}}function c(){return c=Object.assign||function(t){for(var e=1;e=0||(o[n]=t[n]);return o}(t,["component","childFactory"]),i=s(this.state.children).map(n);return delete r.appear,delete r.enter,delete r.exit,null===e?i:o.default.createElement(e,r,i)},r}(o.default.Component);f.childContextTypes={transitionGroup:r.default.object.isRequired},f.propTypes={},f.defaultProps={component:"div",childFactory:function(t){return t}};var p=(0,i.polyfill)(f);e.default=p,t.exports=e.default},4317:function(t,e,n){"use strict";var r=u(n(129)),o=u(n(6093)),i=u(n(2381)),a=u(n(644));function u(t){return t&&t.__esModule?t:{default:t}}t.exports={Transition:a.default,TransitionGroup:i.default,ReplaceTransition:o.default,CSSTransition:r.default}},537:function(t,e,n){"use strict";e.__esModule=!0,e.getChildMapping=o,e.mergeChildMappings=i,e.getInitialChildMapping=function(t,e){return o(t.children,(function(n){return(0,r.cloneElement)(n,{onExited:e.bind(null,n),in:!0,appear:a(n,"appear",t),enter:a(n,"enter",t),exit:a(n,"exit",t)})}))},e.getNextChildMapping=function(t,e,n){var u=o(t.children),c=i(e,u);return Object.keys(c).forEach((function(o){var i=c[o];if((0,r.isValidElement)(i)){var l=o in e,s=o in u,f=e[o],p=(0,r.isValidElement)(f)&&!f.props.in;!s||l&&!p?s||!l||p?s&&l&&(0,r.isValidElement)(f)&&(c[o]=(0,r.cloneElement)(i,{onExited:n.bind(null,i),in:f.props.in,exit:a(i,"exit",t),enter:a(i,"enter",t)})):c[o]=(0,r.cloneElement)(i,{in:!1}):c[o]=(0,r.cloneElement)(i,{onExited:n.bind(null,i),in:!0,exit:a(i,"exit",t),enter:a(i,"enter",t)})}})),c};var r=n(7294);function o(t,e){var n=Object.create(null);return t&&r.Children.map(t,(function(t){return t})).forEach((function(t){n[t.key]=function(t){return e&&(0,r.isValidElement)(t)?e(t):t}(t)})),n}function i(t,e){function n(n){return n in e?e[n]:t[n]}t=t||{},e=e||{};var r,o=Object.create(null),i=[];for(var a in t)a in e?i.length&&(o[a]=i,i=[]):i.push(a);var u={};for(var c in e){if(o[c])for(r=0;rt.length)&&(e=t.length);for(var n=0,r=new Array(e);n=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}function f(t){var e=t.offset,n=t.layout,l=t.width,f=t.dataKey,p=t.data,h=t.dataPointFormatter,d=t.xAxis,y=t.yAxis,v=s(t,a),m=(0,i.L6)(v),g=p.map((function(t,i){var a=h(t,f),s=a.x,p=a.y,v=a.value,g=a.errorVal;if(!g)return null;var b,w,x=[];if(Array.isArray(g)){var O=c(g,2);b=O[0],w=O[1]}else b=w=g;if("vertical"===n){var j=d.scale,S=p+e,E=S+l,M=S-l,C=j(v-b),P=j(v+w);x.push({x1:P,y1:E,x2:P,y2:M}),x.push({x1:C,y1:S,x2:P,y2:S}),x.push({x1:C,y1:E,x2:C,y2:M})}else if("horizontal"===n){var A=y.scale,k=s+e,T=k-l,_=k+l,N=A(v-b),D=A(v+w);x.push({x1:T,y1:D,x2:_,y2:D}),x.push({x1:k,y1:N,x2:k,y2:D}),x.push({x1:T,y1:N,x2:_,y2:N})}return r.createElement(o.m,u({className:"recharts-errorBar",key:"bar-".concat(i)},m),x.map((function(t,e){return r.createElement("line",u({},t,{key:"line-".concat(e)}))})))}));return r.createElement(o.m,{className:"recharts-errorBars"},g)}f.defaultProps={stroke:"black",strokeWidth:1.5,width:5,offset:0,layout:"horizontal"},f.displayName="ErrorBar"},8312:function(t,e,n){"use strict";n.d(e,{D:function(){return Ot}});var r=n(3560),o=n.n(r),i=n(5578),a=n.n(i),u=n(7294),c=n(4184),l=n.n(c),s=n(514),f=n(1700),p=n.n(f);Math.abs,Math.atan2;const h=Math.cos,d=(Math.max,Math.min,Math.sin),y=Math.sqrt,v=Math.PI,m=2*v;var g={draw(t,e){const n=y(e/v);t.moveTo(n,0),t.arc(0,0,n,0,m)}},b={draw(t,e){const n=y(e/5)/2;t.moveTo(-3*n,-n),t.lineTo(-n,-n),t.lineTo(-n,-3*n),t.lineTo(n,-3*n),t.lineTo(n,-n),t.lineTo(3*n,-n),t.lineTo(3*n,n),t.lineTo(n,n),t.lineTo(n,3*n),t.lineTo(-n,3*n),t.lineTo(-n,n),t.lineTo(-3*n,n),t.closePath()}};const w=y(1/3),x=2*w;var O={draw(t,e){const n=y(e/x),r=n*w;t.moveTo(0,-n),t.lineTo(r,0),t.lineTo(0,n),t.lineTo(-r,0),t.closePath()}},j={draw(t,e){const n=y(e),r=-n/2;t.rect(r,r,n,n)}};const S=d(v/10)/d(7*v/10),E=d(m/10)*S,M=-h(m/10)*S;var C={draw(t,e){const n=y(.8908130915292852*e),r=E*n,o=M*n;t.moveTo(0,-n),t.lineTo(r,o);for(let i=1;i<5;++i){const e=m*i/5,a=h(e),u=d(e);t.lineTo(u*n,-a*n),t.lineTo(a*r-u*o,u*r+a*o)}t.closePath()}};const P=y(3);var A={draw(t,e){const n=-y(e/(3*P));t.moveTo(0,2*n),t.lineTo(-P*n,-n),t.lineTo(P*n,-n),t.closePath()}};const k=-.5,T=y(3)/2,_=1/y(12),N=3*(_/2+1);var D={draw(t,e){const n=y(e/N),r=n/2,o=n*_,i=r,a=n*_+n,u=-i,c=a;t.moveTo(r,o),t.lineTo(i,a),t.lineTo(u,c),t.lineTo(k*r-T*o,T*r+k*o),t.lineTo(k*i-T*a,T*i+k*a),t.lineTo(k*u-T*c,T*u+k*c),t.lineTo(k*r+T*o,k*o-T*r),t.lineTo(k*i+T*a,k*a-T*i),t.lineTo(k*u+T*c,k*c-T*u),t.closePath()}},R=n(309),U=n(633);y(3);y(3);var I=n(2017);function L(t){return L="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},L(t)}function $(){return $=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}function wt(t){return t.value}function xt(t,e){return!0===t?a()(e,wt):o()(t)?a()(e,t):e}var Ot=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ht(t,e)}(a,t);var e,n,r,i=dt(a);function a(){var t;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a);for(var e=arguments.length,n=new Array(e),r=0;r=0&&n>=0?{width:e,height:n}:null}},{key:"getDefaultPosition",value:function(t){var e,n,r=this.props,o=r.layout,i=r.align,a=r.verticalAlign,u=r.margin,c=r.chartWidth,l=r.chartHeight;return t&&(void 0!==t.left&&null!==t.left||void 0!==t.right&&null!==t.right)||(e="center"===i&&"vertical"===o?{left:((c||0)-(this.getBBoxSnapshot()||{width:0}).width)/2}:"right"===i?{right:u&&u.right||0}:{left:u&&u.left||0}),t&&(void 0!==t.top&&null!==t.top||void 0!==t.bottom&&null!==t.bottom)||(n="middle"===a?{top:((l||0)-(this.getBBoxSnapshot()||{height:0}).height)/2}:"bottom"===a?{bottom:u&&u.bottom||0}:{top:u&&u.top||0}),ft(ft({},e),n)}},{key:"updateBBox",value:function(){var t=this.state,e=t.boxWidth,n=t.boxHeight,r=this.props.onBBoxUpdate;if(this.wrapperNode&&this.wrapperNode.getBoundingClientRect){var o=this.wrapperNode.getBoundingClientRect();(Math.abs(o.width-e)>1||Math.abs(o.height-n)>1)&&this.setState({boxWidth:o.width,boxHeight:o.height},(function(){r&&r(o)}))}else-1===e&&-1===n||this.setState({boxWidth:-1,boxHeight:-1},(function(){r&&r(null)}))}},{key:"render",value:function(){var t=this,e=this.props,n=e.content,r=e.width,i=e.height,a=e.wrapperStyle,c=e.payloadUniqBy,l=e.payload,s=ft(ft({position:"absolute",width:r||"auto",height:i||"auto"},this.getDefaultPosition(a)),a);return u.createElement("div",{className:"recharts-legend-wrapper",style:s,ref:function(e){t.wrapperNode=e}},function(t,e){if(u.isValidElement(t))return u.cloneElement(t,e);if(o()(t))return u.createElement(t,e);e.ref;var n=bt(e,lt);return u.createElement(at,n)}(n,ft(ft({},this.props),{},{payload:xt(c,l)})))}}])&&pt(e.prototype,n),r&&pt(e,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(u.PureComponent);mt(Ot,"displayName","Legend"),mt(Ot,"defaultProps",{iconSize:14,layout:"horizontal",align:"center",verticalAlign:"bottom"})},4965:function(t,e,n){"use strict";n.d(e,{h:function(){return E}});var r=n(4184),o=n.n(r),i=n(7294),a=n(3935),u=n(3279),c=n.n(u),l=n(3493),s=n.n(l),f=function(t,e){return f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])},f(t,e)};function p(t,e){function n(){this.constructor=t}f(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}function h(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&e.indexOf(r)<0&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(t);ot.length)&&(e=t.length);for(var n=0,r=new Array(e);n0,"The aspect(%s) must be greater than zero.",n);var r=(0,w.hU)(a)?t:a,o=(0,w.hU)(c)?e:c;return n&&n>0&&(r?o=r/n:o&&(r=o*n),p&&o>p&&(o=p)),(0,x.Z)(r>0||o>0,"The width(%s) and height(%s) of chart should be greater than 0,\n please check the style of container, or the props width(%s) and height(%s),\n or add a minWidth(%s) or minHeight(%s) or use aspect(%s) to control the\n height and width.",r,o,a,c,s,f,n),(0,i.cloneElement)(h,{width:r,height:o})}),[n,h,c,p,f,s,E,a]);(0,i.useEffect)((function(){var t=P();t&&M(t)}),[P]);var T={width:a,height:c,minWidth:s,minHeight:f,maxHeight:p};return i.createElement(b,{handleWidth:!0,handleHeight:!0,onResize:A,targetRef:C,refreshMode:y>0?"debounce":void 0,refreshRate:y},i.createElement("div",O({},null!=v?{id:"".concat(v)}:{},{className:o()("recharts-responsive-container",m),style:T,ref:C}),k))}))},9307:function(t,e,n){"use strict";n.d(e,{u:function(){return H}});var r=n(4293),o=n.n(r),i=n(3560),a=n.n(i),u=n(5578),c=n.n(u),l=n(7294),s=n(8181),f=n(4184),p=n.n(f),h=n(9734),d=n.n(h),y=n(1469),v=n.n(y),m=n(9055);function g(t){return g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},g(t)}function b(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=n){var r,o,i,a,u=[],c=!0,l=!1;try{if(i=(n=n.call(t)).next,0===e){if(Object(n)!==n)return;c=!1}else for(;!(c=(r=i.call(n)).done)&&(u.push(r.value),u.length!==e);c=!0);}catch(s){l=!0,o=s}finally{try{if(!c&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(l)throw o}}return u}}(t,e)||function(t,e){if(!t)return;if("string"==typeof t)return w(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return w(t,e)}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);nf[n]+o?Math.max(p,f[n]):Math.max(h,f[n])})),t}return e=u,(n=[{key:"componentDidMount",value:function(){this.updateBBox()}},{key:"componentDidUpdate",value:function(){this.updateBBox()}},{key:"updateBBox",value:function(){var t=this.state,e=t.boxWidth,n=t.boxHeight;if(t.dismissed?(this.wrapperNode.blur(),this.props.coordinate.x===this.state.dismissedAtCoordinate.x&&this.props.coordinate.y===this.state.dismissedAtCoordinate.y||this.setState({dismissed:!1})):this.wrapperNode.focus({preventScroll:!0}),this.wrapperNode&&this.wrapperNode.getBoundingClientRect){var r=this.wrapperNode.getBoundingClientRect();(Math.abs(r.width-e)>1||Math.abs(r.height-n)>1)&&this.setState({boxWidth:r.width,boxHeight:r.height})}else-1===e&&-1===n||this.setState({boxWidth:-1,boxHeight:-1})}},{key:"render",value:function(){var t,e,n,r=this,i=this.props,u=i.payload,f=i.isAnimationActive,h=i.animationDuration,d=i.animationEasing,y=i.filterNull,v=function(t,e){return!0===t?c()(e,q):a()(t)?c()(e,t):e}(i.payloadUniqBy,y&&u&&u.length?u.filter((function(t){return!o()(t.value)})):u),g=v&&v.length,b=this.props,w=b.content,x=b.viewBox,O=b.coordinate,j=b.position,S=b.active,E=b.wrapperStyle,M=D({pointerEvents:"none",visibility:!this.state.dismissed&&S&&g?"visible":"hidden",position:"absolute",top:0,left:0},E);if(j&&(0,m.hj)(j.x)&&(0,m.hj)(j.y))e=j.x,n=j.y;else{var C=this.state,P=C.boxWidth,A=C.boxHeight;P>0&&A>0&&O?(e=this.getTranslate({key:"x",tooltipDimension:P,viewBoxDimension:x.width}),n=this.getTranslate({key:"y",tooltipDimension:A,viewBoxDimension:x.height})):M.visibility="hidden"}M=D(D({},(0,s.bO)({transform:this.props.useTranslate3d?"translate3d(".concat(e,"px, ").concat(n,"px, 0)"):"translate(".concat(e,"px, ").concat(n,"px)")})),M),f&&S&&(M=D(D({},(0,s.bO)({transition:"transform ".concat(h,"ms ").concat(d)})),M));var T=p()(F,(z(t={},"".concat(F,"-right"),(0,m.hj)(e)&&O&&(0,m.hj)(O.x)&&e>=O.x),z(t,"".concat(F,"-left"),(0,m.hj)(e)&&O&&(0,m.hj)(O.x)&&e=O.y),z(t,"".concat(F,"-top"),(0,m.hj)(n)&&O&&(0,m.hj)(O.y)&&n=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}var s=r.forwardRef((function(t,e){var n=t.children,o=t.className,s=l(t,u),f=i()("recharts-layer",o);return r.createElement("g",c({className:f},(0,a.L6)(s,!0),{ref:e}),n)}))},514:function(t,e,n){"use strict";n.d(e,{T:function(){return s}});var r=n(7294),o=n(4184),i=n.n(o),a=n(2017),u=["children","width","height","viewBox","className","style"];function c(){return c=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}function s(t){var e=t.children,n=t.width,o=t.height,s=t.viewBox,f=t.className,p=t.style,h=l(t,u),d=s||{width:n,height:o,x:0,y:0},y=i()("recharts-surface",f);return r.createElement("svg",c({},(0,a.L6)(h,!0,"svg"),{className:y,width:n,height:o,style:p,viewBox:"".concat(d.x," ").concat(d.y," ").concat(d.width," ").concat(d.height)}),r.createElement("title",null,t.title),r.createElement("desc",null,t.desc),e)}},3481:function(t,e,n){"use strict";n.d(e,{A:function(){return b},X:function(){return g}});var r=n(7294),o=n(4184),i=n.n(o),a=n(8181),u=n(2017);function c(t){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},c(t)}function l(){return l=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0?1:-1,c=n>=0?1:-1,l=r>=0&&n>=0||r<0&&n<0?1:0;if(a>0&&o instanceof Array){for(var s=[0,0,0,0],f=0;f<4;f++)s[f]=o[f]>a?a:o[f];i="M".concat(t,",").concat(e+u*s[0]),s[0]>0&&(i+="A ".concat(s[0],",").concat(s[0],",0,0,").concat(l,",").concat(t+c*s[0],",").concat(e)),i+="L ".concat(t+n-c*s[1],",").concat(e),s[1]>0&&(i+="A ".concat(s[1],",").concat(s[1],",0,0,").concat(l,",\n ").concat(t+n,",").concat(e+u*s[1])),i+="L ".concat(t+n,",").concat(e+r-u*s[2]),s[2]>0&&(i+="A ".concat(s[2],",").concat(s[2],",0,0,").concat(l,",\n ").concat(t+n-c*s[2],",").concat(e+r)),i+="L ".concat(t+c*s[3],",").concat(e+r),s[3]>0&&(i+="A ".concat(s[3],",").concat(s[3],",0,0,").concat(l,",\n ").concat(t,",").concat(e+r-u*s[3])),i+="Z"}else if(a>0&&o===+o&&o>0){var p=Math.min(a,o);i="M ".concat(t,",").concat(e+u*p,"\n A ").concat(p,",").concat(p,",0,0,").concat(l,",").concat(t+c*p,",").concat(e,"\n L ").concat(t+n-c*p,",").concat(e,"\n A ").concat(p,",").concat(p,",0,0,").concat(l,",").concat(t+n,",").concat(e+u*p,"\n L ").concat(t+n,",").concat(e+r-u*p,"\n A ").concat(p,",").concat(p,",0,0,").concat(l,",").concat(t+n-c*p,",").concat(e+r,"\n L ").concat(t+c*p,",").concat(e+r,"\n A ").concat(p,",").concat(p,",0,0,").concat(l,",").concat(t,",").concat(e+r-u*p," Z")}else i="M ".concat(t,",").concat(e," h ").concat(n," v ").concat(r," h ").concat(-n," Z");return i},g=function(t,e){if(!t||!e)return!1;var n=t.x,r=t.y,o=e.x,i=e.y,a=e.width,u=e.height;if(Math.abs(a)>0&&Math.abs(u)>0){var c=Math.min(o,o+a),l=Math.max(o,o+a),s=Math.min(i,i+u),f=Math.max(i,i+u);return n>=c&&n<=l&&r>=s&&r<=f}return!1},b=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&f(t,e)}(d,t);var e,n,o,c=p(d);function d(){var t;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,d);for(var e=arguments.length,n=new Array(e),r=0;r0,from:{width:c,height:s,x:n,y:o},to:{width:c,height:s,x:n,y:o},duration:v,animationEasing:y,isActive:w},(function(e){var n=e.width,o=e.height,i=e.x,c=e.y;return r.createElement(a.ZP,{canBegin:h>0,from:"0px ".concat(-1===h?1:h,"px"),to:"".concat(h,"px 0px"),attributeName:"strokeDasharray",begin:g,duration:v,isActive:b,easing:y},r.createElement("path",l({},(0,u.L6)(t.props,!0),{className:x,d:m(i,c,n,o,f),ref:function(e){t.node=e}})))})):r.createElement("path",l({},(0,u.L6)(this.props,!0),{className:x,d:m(n,o,c,s,f)}))}}])&&s(e.prototype,n),o&&s(e,o),Object.defineProperty(e,"prototype",{writable:!1}),d}(r.PureComponent);y(b,"defaultProps",{x:0,y:0,width:0,height:0,radius:0,isAnimationActive:!1,isUpdateAnimationActive:!1,animationBegin:0,animationDuration:1500,animationEasing:"ease"})},6822:function(t,e,n){"use strict";n.d(e,{By:function(){return Lo},VO:function(){return No},zF:function(){return Go},DO:function(){return Wo},Bu:function(){return Vo},zT:function(){return li},qz:function(){return Io},pt:function(){return Uo},Yj:function(){return ri},Fy:function(){return ni},Hv:function(){return ei},Rf:function(){return qo},gF:function(){return _o},s6:function(){return Bo},EB:function(){return ii},zp:function(){return Ro},fk:function(){return Do},wh:function(){return Qo},O3:function(){return oi},uY:function(){return Ho},g$:function(){return ti},Qo:function(){return fi},F$:function(){return To},NA:function(){return Fo},ko:function(){return si},ZI:function(){return zo},Hq:function(){return Zo},LG:function(){return ci},Vv:function(){return Ko}});var r={};n.r(r),n.d(r,{scaleBand:function(){return P.Z},scaleDiverging:function(){return Ir},scaleDivergingLog:function(){return Lr},scaleDivergingPow:function(){return zr},scaleDivergingSqrt:function(){return Br},scaleDivergingSymlog:function(){return $r},scaleIdentity:function(){return At},scaleImplicit:function(){return qt.O},scaleLinear:function(){return Pt},scaleLog:function(){return Lt},scaleOrdinal:function(){return qt.Z},scalePoint:function(){return P.x},scalePow:function(){return Gt},scaleQuantile:function(){return ae},scaleQuantize:function(){return ue},scaleRadial:function(){return Xt},scaleSequential:function(){return kr},scaleSequentialLog:function(){return Tr},scaleSequentialPow:function(){return Nr},scaleSequentialQuantile:function(){return Rr},scaleSequentialSqrt:function(){return Dr},scaleSequentialSymlog:function(){return _r},scaleSqrt:function(){return Vt},scaleSymlog:function(){return Ft},scaleThreshold:function(){return ce},scaleTime:function(){return Mr},scaleUtc:function(){return Cr},tickFormat:function(){return Mt}});var o=n(8446),i=n.n(o),a=n(9734),u=n.n(a),c=n(1700),l=n.n(c),s=n(7037),f=n.n(s),p=n(7654),h=n.n(p),d=n(1469),y=n.n(d),v=n(6162),m=n.n(v),g=n(3632),b=n.n(g),w=n(4654),x=n.n(w),O=n(3560),j=n.n(O),S=n(7361),E=n.n(S),M=n(4293),C=n.n(M),P=n(996);const A=Math.sqrt(50),k=Math.sqrt(10),T=Math.sqrt(2);function _(t,e,n){const r=(e-t)/Math.max(0,n),o=Math.floor(Math.log10(r)),i=r/Math.pow(10,o),a=i>=A?10:i>=k?5:i>=T?2:1;let u,c,l;return o<0?(l=Math.pow(10,-o)/a,u=Math.round(t*l),c=Math.round(e*l),u/le&&--c,l=-l):(l=Math.pow(10,o)*a,u=Math.round(t/l),c=Math.round(e/l),u*le&&--c),c0))return[];if((t=+t)===(e=+e))return[t];const r=e=o))return[];const u=i-o+1,c=new Array(u);if(r)if(a<0)for(let l=0;le?1:t>=e?0:NaN}function I(t,e){return null==t||null==e?NaN:et?1:e>=t?0:NaN}function L(t){let e,n,r;function o(t,r,o=0,i=t.length){if(o>>1;n(t[e],r)<0?o=e+1:i=e}while(oU(t(e),n),r=(e,n)=>t(e)-n):(e=t===U||t===I?t:$,n=t,r=t),{left:o,center:function(t,e,n=0,i=t.length){const a=o(t,e,n,i-1);return a>n&&r(t[a-1],e)>-r(t[a],e)?a-1:a},right:function(t,r,o=0,i=t.length){if(o>>1;n(t[e],r)<=0?o=e+1:i=e}while(oe&&(n=t,t=e,e=n),l=function(n){return Math.max(t,Math.min(e,n))}),r=c>2?at:it,o=i=null,f}function f(e){return null==e||isNaN(e=+e)?n:(o||(o=r(a.map(t),u,c)))(t(l(e)))}return f.invert=function(n){return l(e((i||(i=r(u,a.map(t),G.Z)))(n)))},f.domain=function(t){return arguments.length?(a=Array.from(t,et),s()):a.slice()},f.range=function(t){return arguments.length?(u=Array.from(t),s()):u.slice()},f.rangeRound=function(t){return u=Array.from(t),c=tt,s()},f.clamp=function(t){return arguments.length?(l=!!t||rt,s()):l!==rt},f.interpolate=function(t){return arguments.length?(c=t,s()):c},f.unknown=function(t){return arguments.length?(n=t,f):n},function(n,r){return t=n,e=r,s()}}function lt(){return ct()(rt,rt)}var st,ft=n(4182),pt=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function ht(t){if(!(e=pt.exec(t)))throw new Error("invalid format: "+t);var e;return new dt({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}function dt(t){this.fill=void 0===t.fill?" ":t.fill+"",this.align=void 0===t.align?">":t.align+"",this.sign=void 0===t.sign?"-":t.sign+"",this.symbol=void 0===t.symbol?"":t.symbol+"",this.zero=!!t.zero,this.width=void 0===t.width?void 0:+t.width,this.comma=!!t.comma,this.precision=void 0===t.precision?void 0:+t.precision,this.trim=!!t.trim,this.type=void 0===t.type?"":t.type+""}function yt(t,e){if((n=(t=e?t.toExponential(e-1):t.toExponential()).indexOf("e"))<0)return null;var n,r=t.slice(0,n);return[r.length>1?r[0]+r.slice(2):r,+t.slice(n+1)]}function vt(t){return(t=yt(Math.abs(t)))?t[1]:NaN}function mt(t,e){var n=yt(t,e);if(!n)return t+"";var r=n[0],o=n[1];return o<0?"0."+new Array(-o).join("0")+r:r.length>o+1?r.slice(0,o+1)+"."+r.slice(o+1):r+new Array(o-r.length+2).join("0")}ht.prototype=dt.prototype,dt.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var gt={"%":(t,e)=>(100*t).toFixed(e),b:t=>Math.round(t).toString(2),c:t=>t+"",d:function(t){return Math.abs(t=Math.round(t))>=1e21?t.toLocaleString("en").replace(/,/g,""):t.toString(10)},e:(t,e)=>t.toExponential(e),f:(t,e)=>t.toFixed(e),g:(t,e)=>t.toPrecision(e),o:t=>Math.round(t).toString(8),p:(t,e)=>mt(100*t,e),r:mt,s:function(t,e){var n=yt(t,e);if(!n)return t+"";var r=n[0],o=n[1],i=o-(st=3*Math.max(-8,Math.min(8,Math.floor(o/3))))+1,a=r.length;return i===a?r:i>a?r+new Array(i-a+1).join("0"):i>0?r.slice(0,i)+"."+r.slice(i):"0."+new Array(1-i).join("0")+yt(t,Math.max(0,e+i-1))[0]},X:t=>Math.round(t).toString(16).toUpperCase(),x:t=>Math.round(t).toString(16)};function bt(t){return t}var wt,xt,Ot,jt=Array.prototype.map,St=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function Et(t){var e,n,r=void 0===t.grouping||void 0===t.thousands?bt:(e=jt.call(t.grouping,Number),n=t.thousands+"",function(t,r){for(var o=t.length,i=[],a=0,u=e[0],c=0;o>0&&u>0&&(c+u+1>r&&(u=Math.max(1,r-c)),i.push(t.substring(o-=u,o+u)),!((c+=u+1)>r));)u=e[a=(a+1)%e.length];return i.reverse().join(n)}),o=void 0===t.currency?"":t.currency[0]+"",i=void 0===t.currency?"":t.currency[1]+"",a=void 0===t.decimal?".":t.decimal+"",u=void 0===t.numerals?bt:function(t){return function(e){return e.replace(/[0-9]/g,(function(e){return t[+e]}))}}(jt.call(t.numerals,String)),c=void 0===t.percent?"%":t.percent+"",l=void 0===t.minus?"−":t.minus+"",s=void 0===t.nan?"NaN":t.nan+"";function f(t){var e=(t=ht(t)).fill,n=t.align,f=t.sign,p=t.symbol,h=t.zero,d=t.width,y=t.comma,v=t.precision,m=t.trim,g=t.type;"n"===g?(y=!0,g="g"):gt[g]||(void 0===v&&(v=12),m=!0,g="g"),(h||"0"===e&&"="===n)&&(h=!0,e="0",n="=");var b="$"===p?o:"#"===p&&/[boxX]/.test(g)?"0"+g.toLowerCase():"",w="$"===p?i:/[%p]/.test(g)?c:"",x=gt[g],O=/[defgprs%]/.test(g);function j(t){var o,i,c,p=b,j=w;if("c"===g)j=x(t)+j,t="";else{var S=(t=+t)<0||1/t<0;if(t=isNaN(t)?s:x(Math.abs(t),v),m&&(t=function(t){t:for(var e,n=t.length,r=1,o=-1;r0&&(o=0)}return o>0?t.slice(0,o)+t.slice(e+1):t}(t)),S&&0==+t&&"+"!==f&&(S=!1),p=(S?"("===f?f:l:"-"===f||"("===f?"":f)+p,j=("s"===g?St[8+st/3]:"")+j+(S&&"("===f?")":""),O)for(o=-1,i=t.length;++o(c=t.charCodeAt(o))||c>57){j=(46===c?a+t.slice(o+1):t.slice(o))+j,t=t.slice(0,o);break}}y&&!h&&(t=r(t,1/0));var E=p.length+t.length+j.length,M=E>1)+p+t+j+M.slice(E);break;default:t=M+p+t+j}return u(t)}return v=void 0===v?6:/[gprs]/.test(g)?Math.max(1,Math.min(21,v)):Math.max(0,Math.min(20,v)),j.toString=function(){return t+""},j}return{format:f,formatPrefix:function(t,e){var n=f(((t=ht(t)).type="f",t)),r=3*Math.max(-8,Math.min(8,Math.floor(vt(e)/3))),o=Math.pow(10,-r),i=St[8+r/3];return function(t){return n(o*t)+i}}}}function Mt(t,e,n,r){var o,i=R(t,e,n);switch((r=ht(null==r?",f":r)).type){case"s":var a=Math.max(Math.abs(t),Math.abs(e));return null!=r.precision||isNaN(o=function(t,e){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(vt(e)/3)))-vt(Math.abs(t)))}(i,a))||(r.precision=o),Ot(r,a);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(o=function(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,vt(e)-vt(t))+1}(i,Math.max(Math.abs(t),Math.abs(e))))||(r.precision=o-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(o=function(t){return Math.max(0,-vt(Math.abs(t)))}(i))||(r.precision=o-2*("%"===r.type))}return xt(r)}function Ct(t){var e=t.domain;return t.ticks=function(t){var n=e();return N(n[0],n[n.length-1],null==t?10:t)},t.tickFormat=function(t,n){var r=e();return Mt(r[0],r[r.length-1],null==t?10:t,n)},t.nice=function(n){null==n&&(n=10);var r,o,i=e(),a=0,u=i.length-1,c=i[a],l=i[u],s=10;for(l0;){if((o=D(c,l,n))===r)return i[a]=c,i[u]=l,e(i);if(o>0)c=Math.floor(c/o)*o,l=Math.ceil(l/o)*o;else{if(!(o<0))break;c=Math.ceil(c*o)/o,l=Math.floor(l*o)/o}r=o}return t},t}function Pt(){var t=lt();return t.copy=function(){return ut(t,Pt())},ft.o.apply(t,arguments),Ct(t)}function At(t){var e;function n(t){return null==t||isNaN(t=+t)?e:t}return n.invert=n,n.domain=n.range=function(e){return arguments.length?(t=Array.from(e,et),n):t.slice()},n.unknown=function(t){return arguments.length?(e=t,n):e},n.copy=function(){return At(t).unknown(e)},t=arguments.length?Array.from(t,et):[0,1],Ct(n)}function kt(t,e){var n,r=0,o=(t=t.slice()).length-1,i=t[r],a=t[o];return a-t(-e,n)}function It(t){const e=t(Tt,_t),n=e.domain;let r,o,i=10;function a(){return r=function(t){return t===Math.E?Math.log:10===t&&Math.log10||2===t&&Math.log2||(t=Math.log(t),e=>Math.log(e)/t)}(i),o=function(t){return 10===t?Rt:t===Math.E?Math.exp:e=>Math.pow(t,e)}(i),n()[0]<0?(r=Ut(r),o=Ut(o),t(Nt,Dt)):t(Tt,_t),e}return e.base=function(t){return arguments.length?(i=+t,a()):i},e.domain=function(t){return arguments.length?(n(t),a()):n()},e.ticks=t=>{const e=n();let a=e[0],u=e[e.length-1];const c=u0){for(;f<=p;++f)for(l=1;lu)break;d.push(s)}}else for(;f<=p;++f)for(l=i-1;l>=1;--l)if(s=f>0?l/o(-f):l*o(f),!(su)break;d.push(s)}2*d.length{if(null==t&&(t=10),null==n&&(n=10===i?"s":","),"function"!=typeof n&&(i%1||null!=(n=ht(n)).precision||(n.trim=!0),n=xt(n)),t===1/0)return n;const a=Math.max(1,i*t/e.ticks().length);return t=>{let e=t/o(Math.round(r(t)));return e*in(kt(n(),{floor:t=>o(Math.floor(r(t))),ceil:t=>o(Math.ceil(r(t)))})),e}function Lt(){const t=It(ct()).domain([1,10]);return t.copy=()=>ut(t,Lt()).base(t.base()),ft.o.apply(t,arguments),t}function $t(t){return function(e){return Math.sign(e)*Math.log1p(Math.abs(e/t))}}function zt(t){return function(e){return Math.sign(e)*Math.expm1(Math.abs(e))*t}}function Bt(t){var e=1,n=t($t(e),zt(e));return n.constant=function(n){return arguments.length?t($t(e=+n),zt(e)):e},Ct(n)}function Ft(){var t=Bt(ct());return t.copy=function(){return ut(t,Ft()).constant(t.constant())},ft.o.apply(t,arguments)}wt=Et({thousands:",",grouping:[3],currency:["$",""]}),xt=wt.format,Ot=wt.formatPrefix;var qt=n(780);function Ht(t){return function(e){return e<0?-Math.pow(-e,t):Math.pow(e,t)}}function Wt(t){return t<0?-Math.sqrt(-t):Math.sqrt(t)}function Zt(t){return t<0?-t*t:t*t}function Yt(t){var e=t(rt,rt),n=1;return e.exponent=function(e){return arguments.length?1===(n=+e)?t(rt,rt):.5===n?t(Wt,Zt):t(Ht(n),Ht(1/n)):n},Ct(e)}function Gt(){var t=Yt(ct());return t.copy=function(){return ut(t,Gt()).exponent(t.exponent())},ft.o.apply(t,arguments),t}function Vt(){return Gt.apply(null,arguments).exponent(.5)}function Kt(t){return Math.sign(t)*t*t}function Xt(){var t,e=lt(),n=[0,1],r=!1;function o(n){var o=function(t){return Math.sign(t)*Math.sqrt(Math.abs(t))}(e(n));return isNaN(o)?t:r?Math.round(o):o}return o.invert=function(t){return e.invert(Kt(t))},o.domain=function(t){return arguments.length?(e.domain(t),o):e.domain()},o.range=function(t){return arguments.length?(e.range((n=Array.from(t,et)).map(Kt)),o):n.slice()},o.rangeRound=function(t){return o.range(t).round(!0)},o.round=function(t){return arguments.length?(r=!!t,o):r},o.clamp=function(t){return arguments.length?(e.clamp(t),o):e.clamp()},o.unknown=function(e){return arguments.length?(t=e,o):t},o.copy=function(){return Xt(e.domain(),n).round(r).clamp(e.clamp()).unknown(t)},ft.o.apply(o,arguments),Ct(o)}var Jt=n(2400),Qt=n(8398);function te(t=U){if(t===U)return ee;if("function"!=typeof t)throw new TypeError("compare is not a function");return(e,n)=>{const r=t(e,n);return r||0===r?r:(0===t(n,n))-(0===t(e,e))}}function ee(t,e){return(null==t||!(t>=t))-(null==e||!(e>=e))||(te?1:0)}function ne(t,e,n=0,r=1/0,o){if(e=Math.floor(e),n=Math.floor(Math.max(0,n)),r=Math.floor(Math.min(t.length-1,r)),!(n<=e&&e<=r))return t;for(o=void 0===o?ee:te(o);r>n;){if(r-n>600){const i=r-n+1,a=e-n+1,u=Math.log(i),c=.5*Math.exp(2*u/3),l=.5*Math.sqrt(u*c*(i-c)/i)*(a-i/2<0?-1:1);ne(t,e,Math.max(n,Math.floor(e-a*c/i+l)),Math.min(r,Math.floor(e+(i-a)*c/i+l)),o)}const i=t[e];let a=n,u=r;for(re(t,n,e),o(t[r],i)>0&&re(t,n,r);a0;)--u}0===o(t[n],i)?re(t,n,u):(++u,re(t,u,r)),u<=e&&(n=u+1),e<=u&&(r=u-1)}return t}function re(t,e,n){const r=t[e];t[e]=t[n],t[n]=r}function oe(t,e,n){if(t=Float64Array.from(function*(t,e){if(void 0===e)for(let n of t)null!=n&&(n=+n)>=n&&(yield n);else{let n=-1;for(let r of t)null!=(r=e(r,++n,t))&&(r=+r)>=r&&(yield r)}}(t,n)),(r=t.length)&&!isNaN(e=+e)){if(e<=0||r<2)return(0,Qt.Z)(t);if(e>=1)return(0,Jt.Z)(t);var r,o=(r-1)*e,i=Math.floor(o),a=(0,Jt.Z)(ne(t,i).subarray(0,i+1));return a+((0,Qt.Z)(t.subarray(i+1))-a)*(o-i)}}function ie(t,e,n=z){if((r=t.length)&&!isNaN(e=+e)){if(e<=0||r<2)return+n(t[0],0,t);if(e>=1)return+n(t[r-1],r-1,t);var r,o=(r-1)*e,i=Math.floor(o),a=+n(t[i],i,t);return a+(+n(t[i+1],i+1,t)-a)*(o-i)}}function ae(){var t,e=[],n=[],r=[];function o(){var t=0,o=Math.max(1,n.length);for(r=new Array(o-1);++t0?r[o-1]:e[0],o=r?[o[r-1],n]:[o[a-1],o[a]]},a.unknown=function(e){return arguments.length?(t=e,a):a},a.thresholds=function(){return o.slice()},a.copy=function(){return ue().domain([e,n]).range(i).unknown(t)},ft.o.apply(Ct(a),arguments)}function ce(){var t,e=[.5],n=[0,1],r=1;function o(o){return null!=o&&o<=o?n[q(e,o,0,r)]:t}return o.domain=function(t){return arguments.length?(e=Array.from(t),r=Math.min(e.length,n.length-1),o):e.slice()},o.range=function(t){return arguments.length?(n=Array.from(t),r=Math.min(e.length,n.length-1),o):n.slice()},o.invertExtent=function(t){var r=n.indexOf(t);return[e[r-1],e[r]]},o.unknown=function(e){return arguments.length?(t=e,o):t},o.copy=function(){return ce().domain(e).range(n).unknown(t)},ft.o.apply(o,arguments)}const le=1e3,se=60*le,fe=60*se,pe=24*fe,he=7*pe,de=30*pe,ye=365*pe,ve=new Date,me=new Date;function ge(t,e,n,r){function o(e){return t(e=0===arguments.length?new Date:new Date(+e)),e}return o.floor=e=>(t(e=new Date(+e)),e),o.ceil=n=>(t(n=new Date(n-1)),e(n,1),t(n),n),o.round=t=>{const e=o(t),n=o.ceil(t);return t-e(e(t=new Date(+t),null==n?1:Math.floor(n)),t),o.range=(n,r,i)=>{const a=[];if(n=o.ceil(n),i=null==i?1:Math.floor(i),!(n0))return a;let u;do{a.push(u=new Date(+n)),e(n,i),t(n)}while(uge((e=>{if(e>=e)for(;t(e),!n(e);)e.setTime(e-1)}),((t,r)=>{if(t>=t)if(r<0)for(;++r<=0;)for(;e(t,-1),!n(t););else for(;--r>=0;)for(;e(t,1),!n(t););})),n&&(o.count=(e,r)=>(ve.setTime(+e),me.setTime(+r),t(ve),t(me),Math.floor(n(ve,me))),o.every=t=>(t=Math.floor(t),isFinite(t)&&t>0?t>1?o.filter(r?e=>r(e)%t==0:e=>o.count(0,e)%t==0):o:null)),o}const be=ge((()=>{}),((t,e)=>{t.setTime(+t+e)}),((t,e)=>e-t));be.every=t=>(t=Math.floor(t),isFinite(t)&&t>0?t>1?ge((e=>{e.setTime(Math.floor(e/t)*t)}),((e,n)=>{e.setTime(+e+n*t)}),((e,n)=>(n-e)/t)):be:null);be.range;const we=ge((t=>{t.setTime(t-t.getMilliseconds())}),((t,e)=>{t.setTime(+t+e*le)}),((t,e)=>(e-t)/le),(t=>t.getUTCSeconds())),xe=(we.range,ge((t=>{t.setTime(t-t.getMilliseconds()-t.getSeconds()*le)}),((t,e)=>{t.setTime(+t+e*se)}),((t,e)=>(e-t)/se),(t=>t.getMinutes()))),Oe=(xe.range,ge((t=>{t.setUTCSeconds(0,0)}),((t,e)=>{t.setTime(+t+e*se)}),((t,e)=>(e-t)/se),(t=>t.getUTCMinutes()))),je=(Oe.range,ge((t=>{t.setTime(t-t.getMilliseconds()-t.getSeconds()*le-t.getMinutes()*se)}),((t,e)=>{t.setTime(+t+e*fe)}),((t,e)=>(e-t)/fe),(t=>t.getHours()))),Se=(je.range,ge((t=>{t.setUTCMinutes(0,0,0)}),((t,e)=>{t.setTime(+t+e*fe)}),((t,e)=>(e-t)/fe),(t=>t.getUTCHours()))),Ee=(Se.range,ge((t=>t.setHours(0,0,0,0)),((t,e)=>t.setDate(t.getDate()+e)),((t,e)=>(e-t-(e.getTimezoneOffset()-t.getTimezoneOffset())*se)/pe),(t=>t.getDate()-1))),Me=(Ee.range,ge((t=>{t.setUTCHours(0,0,0,0)}),((t,e)=>{t.setUTCDate(t.getUTCDate()+e)}),((t,e)=>(e-t)/pe),(t=>t.getUTCDate()-1))),Ce=(Me.range,ge((t=>{t.setUTCHours(0,0,0,0)}),((t,e)=>{t.setUTCDate(t.getUTCDate()+e)}),((t,e)=>(e-t)/pe),(t=>Math.floor(t/pe))));Ce.range;function Pe(t){return ge((e=>{e.setDate(e.getDate()-(e.getDay()+7-t)%7),e.setHours(0,0,0,0)}),((t,e)=>{t.setDate(t.getDate()+7*e)}),((t,e)=>(e-t-(e.getTimezoneOffset()-t.getTimezoneOffset())*se)/he))}const Ae=Pe(0),ke=Pe(1),Te=Pe(2),_e=Pe(3),Ne=Pe(4),De=Pe(5),Re=Pe(6);Ae.range,ke.range,Te.range,_e.range,Ne.range,De.range,Re.range;function Ue(t){return ge((e=>{e.setUTCDate(e.getUTCDate()-(e.getUTCDay()+7-t)%7),e.setUTCHours(0,0,0,0)}),((t,e)=>{t.setUTCDate(t.getUTCDate()+7*e)}),((t,e)=>(e-t)/he))}const Ie=Ue(0),Le=Ue(1),$e=Ue(2),ze=Ue(3),Be=Ue(4),Fe=Ue(5),qe=Ue(6),He=(Ie.range,Le.range,$e.range,ze.range,Be.range,Fe.range,qe.range,ge((t=>{t.setDate(1),t.setHours(0,0,0,0)}),((t,e)=>{t.setMonth(t.getMonth()+e)}),((t,e)=>e.getMonth()-t.getMonth()+12*(e.getFullYear()-t.getFullYear())),(t=>t.getMonth()))),We=(He.range,ge((t=>{t.setUTCDate(1),t.setUTCHours(0,0,0,0)}),((t,e)=>{t.setUTCMonth(t.getUTCMonth()+e)}),((t,e)=>e.getUTCMonth()-t.getUTCMonth()+12*(e.getUTCFullYear()-t.getUTCFullYear())),(t=>t.getUTCMonth()))),Ze=(We.range,ge((t=>{t.setMonth(0,1),t.setHours(0,0,0,0)}),((t,e)=>{t.setFullYear(t.getFullYear()+e)}),((t,e)=>e.getFullYear()-t.getFullYear()),(t=>t.getFullYear())));Ze.every=t=>isFinite(t=Math.floor(t))&&t>0?ge((e=>{e.setFullYear(Math.floor(e.getFullYear()/t)*t),e.setMonth(0,1),e.setHours(0,0,0,0)}),((e,n)=>{e.setFullYear(e.getFullYear()+n*t)})):null;Ze.range;const Ye=ge((t=>{t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)}),((t,e)=>{t.setUTCFullYear(t.getUTCFullYear()+e)}),((t,e)=>e.getUTCFullYear()-t.getUTCFullYear()),(t=>t.getUTCFullYear()));Ye.every=t=>isFinite(t=Math.floor(t))&&t>0?ge((e=>{e.setUTCFullYear(Math.floor(e.getUTCFullYear()/t)*t),e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)}),((e,n)=>{e.setUTCFullYear(e.getUTCFullYear()+n*t)})):null;Ye.range;function Ge(t,e,n,r,o,i){const a=[[we,1,le],[we,5,5*le],[we,15,15*le],[we,30,30*le],[i,1,se],[i,5,5*se],[i,15,15*se],[i,30,30*se],[o,1,fe],[o,3,3*fe],[o,6,6*fe],[o,12,12*fe],[r,1,pe],[r,2,2*pe],[n,1,he],[e,1,de],[e,3,3*de],[t,1,ye]];function u(e,n,r){const o=Math.abs(n-e)/r,i=L((([,,t])=>t)).right(a,o);if(i===a.length)return t.every(R(e/ye,n/ye,r));if(0===i)return be.every(Math.max(R(e,n,r),1));const[u,c]=a[o/a[i-1][2][t.toLowerCase(),e])))}function dn(t,e,n){var r=un.exec(e.slice(n,n+1));return r?(t.w=+r[0],n+r[0].length):-1}function yn(t,e,n){var r=un.exec(e.slice(n,n+1));return r?(t.u=+r[0],n+r[0].length):-1}function vn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.U=+r[0],n+r[0].length):-1}function mn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.V=+r[0],n+r[0].length):-1}function gn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.W=+r[0],n+r[0].length):-1}function bn(t,e,n){var r=un.exec(e.slice(n,n+4));return r?(t.y=+r[0],n+r[0].length):-1}function wn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.y=+r[0]+(+r[0]>68?1900:2e3),n+r[0].length):-1}function xn(t,e,n){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(e.slice(n,n+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),n+r[0].length):-1}function On(t,e,n){var r=un.exec(e.slice(n,n+1));return r?(t.q=3*r[0]-3,n+r[0].length):-1}function jn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.m=r[0]-1,n+r[0].length):-1}function Sn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.d=+r[0],n+r[0].length):-1}function En(t,e,n){var r=un.exec(e.slice(n,n+3));return r?(t.m=0,t.d=+r[0],n+r[0].length):-1}function Mn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.H=+r[0],n+r[0].length):-1}function Cn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.M=+r[0],n+r[0].length):-1}function Pn(t,e,n){var r=un.exec(e.slice(n,n+2));return r?(t.S=+r[0],n+r[0].length):-1}function An(t,e,n){var r=un.exec(e.slice(n,n+3));return r?(t.L=+r[0],n+r[0].length):-1}function kn(t,e,n){var r=un.exec(e.slice(n,n+6));return r?(t.L=Math.floor(r[0]/1e3),n+r[0].length):-1}function Tn(t,e,n){var r=cn.exec(e.slice(n,n+1));return r?n+r[0].length:-1}function _n(t,e,n){var r=un.exec(e.slice(n));return r?(t.Q=+r[0],n+r[0].length):-1}function Nn(t,e,n){var r=un.exec(e.slice(n));return r?(t.s=+r[0],n+r[0].length):-1}function Dn(t,e){return sn(t.getDate(),e,2)}function Rn(t,e){return sn(t.getHours(),e,2)}function Un(t,e){return sn(t.getHours()%12||12,e,2)}function In(t,e){return sn(1+Ee.count(Ze(t),t),e,3)}function Ln(t,e){return sn(t.getMilliseconds(),e,3)}function $n(t,e){return Ln(t,e)+"000"}function zn(t,e){return sn(t.getMonth()+1,e,2)}function Bn(t,e){return sn(t.getMinutes(),e,2)}function Fn(t,e){return sn(t.getSeconds(),e,2)}function qn(t){var e=t.getDay();return 0===e?7:e}function Hn(t,e){return sn(Ae.count(Ze(t)-1,t),e,2)}function Wn(t){var e=t.getDay();return e>=4||0===e?Ne(t):Ne.ceil(t)}function Zn(t,e){return t=Wn(t),sn(Ne.count(Ze(t),t)+(4===Ze(t).getDay()),e,2)}function Yn(t){return t.getDay()}function Gn(t,e){return sn(ke.count(Ze(t)-1,t),e,2)}function Vn(t,e){return sn(t.getFullYear()%100,e,2)}function Kn(t,e){return sn((t=Wn(t)).getFullYear()%100,e,2)}function Xn(t,e){return sn(t.getFullYear()%1e4,e,4)}function Jn(t,e){var n=t.getDay();return sn((t=n>=4||0===n?Ne(t):Ne.ceil(t)).getFullYear()%1e4,e,4)}function Qn(t){var e=t.getTimezoneOffset();return(e>0?"-":(e*=-1,"+"))+sn(e/60|0,"0",2)+sn(e%60,"0",2)}function tr(t,e){return sn(t.getUTCDate(),e,2)}function er(t,e){return sn(t.getUTCHours(),e,2)}function nr(t,e){return sn(t.getUTCHours()%12||12,e,2)}function rr(t,e){return sn(1+Me.count(Ye(t),t),e,3)}function or(t,e){return sn(t.getUTCMilliseconds(),e,3)}function ir(t,e){return or(t,e)+"000"}function ar(t,e){return sn(t.getUTCMonth()+1,e,2)}function ur(t,e){return sn(t.getUTCMinutes(),e,2)}function cr(t,e){return sn(t.getUTCSeconds(),e,2)}function lr(t){var e=t.getUTCDay();return 0===e?7:e}function sr(t,e){return sn(Ie.count(Ye(t)-1,t),e,2)}function fr(t){var e=t.getUTCDay();return e>=4||0===e?Be(t):Be.ceil(t)}function pr(t,e){return t=fr(t),sn(Be.count(Ye(t),t)+(4===Ye(t).getUTCDay()),e,2)}function hr(t){return t.getUTCDay()}function dr(t,e){return sn(Le.count(Ye(t)-1,t),e,2)}function yr(t,e){return sn(t.getUTCFullYear()%100,e,2)}function vr(t,e){return sn((t=fr(t)).getUTCFullYear()%100,e,2)}function mr(t,e){return sn(t.getUTCFullYear()%1e4,e,4)}function gr(t,e){var n=t.getUTCDay();return sn((t=n>=4||0===n?Be(t):Be.ceil(t)).getUTCFullYear()%1e4,e,4)}function br(){return"+0000"}function wr(){return"%"}function xr(t){return+t}function Or(t){return Math.floor(+t/1e3)}function jr(t){return new Date(t)}function Sr(t){return t instanceof Date?+t:+new Date(+t)}function Er(t,e,n,r,o,i,a,u,c,l){var s=lt(),f=s.invert,p=s.domain,h=l(".%L"),d=l(":%S"),y=l("%I:%M"),v=l("%I %p"),m=l("%a %d"),g=l("%b %d"),b=l("%B"),w=l("%Y");function x(t){return(c(t)e(r/(t.length-1))))},n.quantiles=function(e){return Array.from({length:e+1},((n,r)=>oe(t,r/e)))},n.copy=function(){return Rr(e).domain(t)},ft.O.apply(n,arguments)}function Ur(){var t,e,n,r,o,i,a,u=0,c=.5,l=1,s=1,f=rt,p=!1;function h(t){return isNaN(t=+t)?a:(t=.5+((t=+i(t))-e)*(s*t1)for(var n,r,o,i=1,a=t[e[0]],u=a.length;i=12)]},q:function(t){return 1+~~(t.getMonth()/3)},Q:xr,s:Or,S:Fn,u:qn,U:Hn,V:Zn,w:Yn,W:Gn,x:null,X:null,y:Vn,Y:Xn,Z:Qn,"%":wr},w={a:function(t){return a[t.getUTCDay()]},A:function(t){return i[t.getUTCDay()]},b:function(t){return c[t.getUTCMonth()]},B:function(t){return u[t.getUTCMonth()]},c:null,d:tr,e:tr,f:ir,g:vr,G:gr,H:er,I:nr,j:rr,L:or,m:ar,M:ur,p:function(t){return o[+(t.getUTCHours()>=12)]},q:function(t){return 1+~~(t.getUTCMonth()/3)},Q:xr,s:Or,S:cr,u:lr,U:sr,V:pr,w:hr,W:dr,x:null,X:null,y:yr,Y:mr,Z:br,"%":wr},x={a:function(t,e,n){var r=h.exec(e.slice(n));return r?(t.w=d.get(r[0].toLowerCase()),n+r[0].length):-1},A:function(t,e,n){var r=f.exec(e.slice(n));return r?(t.w=p.get(r[0].toLowerCase()),n+r[0].length):-1},b:function(t,e,n){var r=m.exec(e.slice(n));return r?(t.m=g.get(r[0].toLowerCase()),n+r[0].length):-1},B:function(t,e,n){var r=y.exec(e.slice(n));return r?(t.m=v.get(r[0].toLowerCase()),n+r[0].length):-1},c:function(t,n,r){return S(t,e,n,r)},d:Sn,e:Sn,f:kn,g:wn,G:bn,H:Mn,I:Mn,j:En,L:An,m:jn,M:Cn,p:function(t,e,n){var r=l.exec(e.slice(n));return r?(t.p=s.get(r[0].toLowerCase()),n+r[0].length):-1},q:On,Q:_n,s:Nn,S:Pn,u:yn,U:vn,V:mn,w:dn,W:gn,x:function(t,e,r){return S(t,n,e,r)},X:function(t,e,n){return S(t,r,e,n)},y:wn,Y:bn,Z:xn,"%":Tn};function O(t,e){return function(n){var r,o,i,a=[],u=-1,c=0,l=t.length;for(n instanceof Date||(n=new Date(+n));++u53)return null;"w"in i||(i.w=1),"Z"in i?(o=(r=tn(en(i.y,0,1))).getUTCDay(),r=o>4||0===o?Le.ceil(r):Le(r),r=Me.offset(r,7*(i.V-1)),i.y=r.getUTCFullYear(),i.m=r.getUTCMonth(),i.d=r.getUTCDate()+(i.w+6)%7):(o=(r=Qe(en(i.y,0,1))).getDay(),r=o>4||0===o?ke.ceil(r):ke(r),r=Ee.offset(r,7*(i.V-1)),i.y=r.getFullYear(),i.m=r.getMonth(),i.d=r.getDate()+(i.w+6)%7)}else("W"in i||"U"in i)&&("w"in i||(i.w="u"in i?i.u%7:"W"in i?1:0),o="Z"in i?tn(en(i.y,0,1)).getUTCDay():Qe(en(i.y,0,1)).getDay(),i.m=0,i.d="W"in i?(i.w+6)%7+7*i.W-(o+5)%7:i.w+7*i.U-(o+6)%7);return"Z"in i?(i.H+=i.Z/100|0,i.M+=i.Z%100,tn(i)):Qe(i)}}function S(t,e,n,r){for(var o,i,a=0,u=e.length,c=n.length;a=c)return-1;if(37===(o=e.charCodeAt(a++))){if(o=e.charAt(a++),!(i=x[o in an?e.charAt(a++):o])||(r=i(t,n,r))<0)return-1}else if(o!=n.charCodeAt(r++))return-1}return r}return b.x=O(n,b),b.X=O(r,b),b.c=O(e,b),w.x=O(n,w),w.X=O(r,w),w.c=O(e,w),{format:function(t){var e=O(t+="",b);return e.toString=function(){return t},e},parse:function(t){var e=j(t+="",!1);return e.toString=function(){return t},e},utcFormat:function(t){var e=O(t+="",w);return e.toString=function(){return t},e},utcParse:function(t){var e=j(t+="",!0);return e.toString=function(){return t},e}}}(t),rn=nn.format,nn.parse,on=nn.utcFormat,nn.utcParse}({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});var qr=n(4788),Hr=n(309);function Wr(t){for(var e=t.length,n=new Array(e);--e>=0;)n[e]=e;return n}function Zr(t,e){return t[e]}function Yr(t){const e=[];return e.key=t,e}var Gr=n(9887),Vr=n.n(Gr);function Kr(t){return function(t){if(Array.isArray(t))return Xr(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return Xr(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Xr(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Xr(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n=e?n.apply(void 0,o):t(e-a,eo((function(){for(var t=arguments.length,e=new Array(t),r=0;rt.length)&&(e=t.length);for(var n=0,r=new Array(e);nr&&(o=r,i=n),[o,i]}function vo(t,e,n){if(t.lte(0))return new(Vr())(0);var r=lo.getDigitCount(t.toNumber()),o=new(Vr())(10).pow(r),i=t.div(o),a=1!==r?.05:.1,u=new(Vr())(Math.ceil(i.div(a).toNumber())).add(n).mul(a).mul(o);return e?u:new(Vr())(Math.ceil(u))}function mo(t,e,n){var r=1,o=new(Vr())(t);if(!o.isint()&&n){var i=Math.abs(t);i<1?(r=new(Vr())(10).pow(lo.getDigitCount(t)-1),o=new(Vr())(Math.floor(o.div(r).toNumber())).mul(r)):i>1&&(o=new(Vr())(Math.floor(t)))}else 0===t?o=new(Vr())(Math.floor((e-1)/2)):n||(o=new(Vr())(Math.floor(t)));var a=Math.floor((e-1)/2);return ao(io((function(t){return o.add(new(Vr())(t-a).mul(r)).toNumber()})),oo)(0,e)}function go(t,e,n,r){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0;if(!Number.isFinite((e-t)/(n-1)))return{step:new(Vr())(0),tickMin:new(Vr())(0),tickMax:new(Vr())(0)};var i,a=vo(new(Vr())(e).sub(t).div(n-1),r,o);i=t<=0&&e>=0?new(Vr())(0):(i=new(Vr())(t).add(e).div(2)).sub(new(Vr())(i).mod(a));var u=Math.ceil(i.sub(t).div(a).toNumber()),c=Math.ceil(new(Vr())(e).sub(i).div(a).toNumber()),l=u+c+1;return l>n?go(t,e,n,r,o+1):(l0?c+(n-l):c,u=e>0?u:u+(n-l)),{step:a,tickMin:i.sub(new(Vr())(u).mul(a)),tickMax:i.add(new(Vr())(c).mul(a))})}var bo=co((function(t){var e=fo(t,2),n=e[0],r=e[1],o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:6,i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=Math.max(o,2),u=fo(yo([n,r]),2),c=u[0],l=u[1];if(c===-1/0||l===1/0){var s=l===1/0?[c].concat(so(oo(0,o-1).map((function(){return 1/0})))):[].concat(so(oo(0,o-1).map((function(){return-1/0}))),[l]);return n>r?uo(s):s}if(c===l)return mo(c,o,i);var f=go(c,l,a,i),p=f.step,h=f.tickMin,d=f.tickMax,y=lo.rangeStep(h,d.add(new(Vr())(.1).mul(p)),p);return n>r?uo(y):y})),wo=(co((function(t){var e=fo(t,2),n=e[0],r=e[1],o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:6,i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=Math.max(o,2),u=fo(yo([n,r]),2),c=u[0],l=u[1];if(c===-1/0||l===1/0)return[n,r];if(c===l)return mo(c,o,i);var s=vo(new(Vr())(l).sub(c).div(a-1),i,0),f=ao(io((function(t){return new(Vr())(c).add(new(Vr())(t).mul(s)).toNumber()})),oo)(0,a).filter((function(t){return t>=c&&t<=l}));return n>r?uo(f):f})),co((function(t,e){var n=fo(t,2),r=n[0],o=n[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=fo(yo([r,o]),2),u=a[0],c=a[1];if(u===-1/0||c===1/0)return[r,o];if(u===c)return[u];var l=Math.max(e,2),s=vo(new(Vr())(c).sub(u).div(l-1),i,0),f=[].concat(so(lo.rangeStep(new(Vr())(u),new(Vr())(c).sub(new(Vr())(.99).mul(s)),s)),[c]);return r>o?uo(f):f}))),xo=n(6641),Oo=n(8312),jo=n(9055),So=n(2017);function Eo(t){return Eo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Eo(t)}function Mo(t){return function(t){if(Array.isArray(t))return Co(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return Co(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Co(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Co(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n1&&void 0!==arguments[1]?arguments[1]:[],r=arguments.length>2?arguments[2]:void 0,o=arguments.length>3?arguments[3]:void 0,i=-1,a=null!==(e=null==n?void 0:n.length)&&void 0!==e?e:0;if(a<=1)return 0;if(o&&"angleAxis"===o.axisType&&Math.abs(Math.abs(o.range[1]-o.range[0])-360)<=1e-6)for(var u=o.range,c=0;c0?r[c-1].coordinate:r[a-1].coordinate,s=r[c].coordinate,f=c>=a-1?r[0].coordinate:r[c+1].coordinate,p=void 0;if((0,jo.uY)(s-l)!==(0,jo.uY)(f-s)){var h=[];if((0,jo.uY)(f-s)===(0,jo.uY)(u[1]-u[0])){p=f;var d=s+u[1]-u[0];h[0]=Math.min(d,(d+l)/2),h[1]=Math.max(d,(d+l)/2)}else{p=l;var y=f+u[1]-u[0];h[0]=Math.min(s,(y+s)/2),h[1]=Math.max(s,(y+s)/2)}var v=[Math.min(s,(p+s)/2),Math.max(s,(p+s)/2)];if(t>v[0]&&t<=v[1]||t>=h[0]&&t<=h[1]){i=r[c].index;break}}else{var m=Math.min(l,f),g=Math.max(l,f);if(t>(m+s)/2&&t<=(g+s)/2){i=r[c].index;break}}}else for(var b=0;b0&&b(n[b].coordinate+n[b-1].coordinate)/2&&t<=(n[b].coordinate+n[b+1].coordinate)/2||b===a-1&&t>(n[b].coordinate+n[b-1].coordinate)/2){i=n[b].index;break}return i},Do=function(t){var e,n=t.type.displayName,r=t.props,o=r.stroke,i=r.fill;switch(n){case"Line":e=o;break;case"Area":case"Radar":e=o&&"none"!==o?o:i;break;default:e=i}return e},Ro=function(t){var e,n=t.children,r=t.formattedGraphicalItems,o=t.legendWidth,i=t.legendContent,a=(0,So.sP)(n,Oo.D);return a?(e=a.props&&a.props.payload?a.props&&a.props.payload:"children"===i?(r||[]).reduce((function(t,e){var n=e.item,r=e.props,o=r.sectors||r.data||[];return t.concat(o.map((function(t){return{type:a.props.iconType||n.props.legendType,value:t.name,color:t.fill,payload:t}})))}),[]):(r||[]).map((function(t){var e=t.item,n=e.props,r=n.dataKey,o=n.name,i=n.legendType;return{inactive:n.hide,dataKey:r,type:a.props.iconType||i||"square",color:Do(e),value:o||r,payload:e.props}})),Ao(Ao(Ao({},a.props),Oo.D.getWithHeight(a,o)),{},{payload:e,item:a})):null},Uo=function(t){var e=t.barSize,n=t.stackGroups,r=void 0===n?{}:n;if(!r)return{};for(var o={},i=Object.keys(r),a=0,u=i.length;a=0}));if(y&&y.length){var v=y[0].props.barSize,m=y[0].props[d];o[m]||(o[m]=[]),o[m].push({item:y[0],stackList:y.slice(1),barSize:C()(v)?e:v})}}return o},Io=function(t){var e=t.barGap,n=t.barCategoryGap,r=t.bandSize,o=t.sizeList,i=void 0===o?[]:o,a=t.maxBarSize,u=i.length;if(u<1)return null;var c,l=(0,jo.h1)(e,r,0,!0);if(i[0].barSize===+i[0].barSize){var s=!1,f=r/u,p=i.reduce((function(t,e){return t+e.barSize||0}),0);(p+=(u-1)*l)>=r&&(p-=(u-1)*l,l=0),p>=r&&f>0&&(s=!0,p=u*(f*=.9));var h={offset:((r-p)/2>>0)-l,size:0};c=i.reduce((function(t,e){var n=[].concat(Mo(t),[{item:e.item,position:{offset:h.offset+h.size+l,size:s?f:e.barSize}}]);return h=n[n.length-1].position,e.stackList&&e.stackList.length&&e.stackList.forEach((function(t){n.push({item:t,position:h})})),n}),[])}else{var d=(0,jo.h1)(n,r,0,!0);r-2*d-(u-1)*l<=0&&(l=0);var y=(r-2*d-(u-1)*l)/u;y>1&&(y>>=0);var v=a===+a?Math.min(y,a):y;c=i.reduce((function(t,e,n){var r=[].concat(Mo(t),[{item:e.item,position:{offset:d+(y+l)*n+(y-v)/2,size:v}}]);return e.stackList&&e.stackList.length&&e.stackList.forEach((function(t){r.push({item:t,position:r[r.length-1].position})})),r}),[])}return c},Lo=function(t,e,n,r){var o=n.children,i=n.width,a=n.margin,u=i-(a.left||0)-(a.right||0),c=Ro({children:o,legendWidth:u}),l=t;if(c){var s=r||{},f=c.align,p=c.verticalAlign,h=c.layout;("vertical"===h||"horizontal"===h&&"middle"===p)&&(0,jo.hj)(t[f])&&(l=Ao(Ao({},t),{},ko({},f,l[f]+(s.width||0)))),("horizontal"===h||"vertical"===h&&"center"===f)&&(0,jo.hj)(t[p])&&(l=Ao(Ao({},t),{},ko({},p,l[p]+(s.height||0))))}return l},$o=function(t,e,n,r,o){var i=e.props.children,a=(0,So.NN)(i,xo.W).filter((function(t){return function(t,e,n){return!!C()(e)||("horizontal"===t?"yAxis"===e:"vertical"===t||"x"===n?"xAxis"===e:"y"!==n||"yAxis"===e)}(r,o,t.props.direction)}));if(a&&a.length){var u=a.map((function(t){return t.props.dataKey}));return t.reduce((function(t,e){var r=To(e,n,0),o=y()(r)?[b()(r),m()(r)]:[r,r],i=u.reduce((function(t,n){var r=To(e,n,0),i=o[0]-Math.abs(y()(r)?r[0]:r),a=o[1]+Math.abs(y()(r)?r[1]:r);return[Math.min(i,t[0]),Math.max(a,t[1])]}),[1/0,-1/0]);return[Math.min(i[0],t[0]),Math.max(i[1],t[1])]}),[1/0,-1/0])}return null},zo=function(t,e,n,r,o){var i=e.map((function(e){return $o(t,e,n,o,r)})).filter((function(t){return!C()(t)}));return i&&i.length?i.reduce((function(t,e){return[Math.min(t[0],e[0]),Math.max(t[1],e[1])]}),[1/0,-1/0]):null},Bo=function(t,e,n,r,o){var i=e.map((function(e){var i=e.props.dataKey;return"number"===n&&i&&$o(t,e,i,r)||_o(t,i,n,o)}));if("number"===n)return i.reduce((function(t,e){return[Math.min(t[0],e[0]),Math.max(t[1],e[1])]}),[1/0,-1/0]);var a={};return i.reduce((function(t,e){for(var n=0,r=e.length;n=2?2*(0,jo.uY)(a[0]-a[1])*c:c,e&&(t.ticks||t.niceTicks)?(t.ticks||t.niceTicks).map((function(t){var e=o?o.indexOf(t):t;return{coordinate:r(e)+c,value:t,offset:c}})).filter((function(t){return!h()(t.coordinate)})):t.isCategorical&&t.categoricalDomain?t.categoricalDomain.map((function(t,e){return{coordinate:r(t)+c,value:t,index:e,offset:c}})):r.ticks&&!n?r.ticks(t.tickCount).map((function(t){return{coordinate:r(t)+c,value:t,offset:c}})):r.domain().map((function(t,e){return{coordinate:r(t)+c,value:o?o[t]:t,index:e,offset:c}}))},Wo=function(t,e,n){var r;return j()(n)?r=n:j()(e)&&(r=e),j()(t)||r?function(e,n,o,i){j()(t)&&t(e,n,o,i),j()(r)&&r(e,n,o,i)}:null},Zo=function(t,e,n){var o=t.scale,i=t.type,a=t.layout,u=t.axisType;if("auto"===o)return"radial"===a&&"radiusAxis"===u?{scale:P.Z(),realScaleType:"band"}:"radial"===a&&"angleAxis"===u?{scale:Pt(),realScaleType:"linear"}:"category"===i&&e&&(e.indexOf("LineChart")>=0||e.indexOf("AreaChart")>=0||e.indexOf("ComposedChart")>=0&&!n)?{scale:P.x(),realScaleType:"point"}:"category"===i?{scale:P.Z(),realScaleType:"band"}:{scale:Pt(),realScaleType:"linear"};if(f()(o)){var c="scale".concat(l()(o));return{scale:(r[c]||P.x)(),realScaleType:r[c]?c:"point"}}return j()(o)?{scale:o}:{scale:P.x(),realScaleType:"point"}},Yo=1e-4,Go=function(t){var e=t.domain();if(e&&!(e.length<=2)){var n=e.length,r=t.range(),o=Math.min(r[0],r[1])-Yo,i=Math.max(r[0],r[1])+Yo,a=t(e[0]),u=t(e[n-1]);(ai||ui)&&t.domain([e[0],e[n-1]])}},Vo=function(t,e){if(!t)return null;for(var n=0,r=t.length;nr)&&(o[1]=r),o[0]>r&&(o[0]=r),o[1]=0?(t[a][n][0]=o,t[a][n][1]=o+u,o=t[a][n][1]):(t[a][n][0]=i,t[a][n][1]=i+u,i=t[a][n][1])}},expand:function(t,e){if((r=t.length)>0){for(var n,r,o,i=0,a=t[0].length;i0){for(var n,r=0,o=t[e[0]],i=o.length;r0&&(r=(n=t[e[0]]).length)>0){for(var n,r,o,i=0,a=1;a=0?(t[i][n][0]=o,t[i][n][1]=o+a,o=t[i][n][1]):(t[i][n][0]=0,t[i][n][1]=0)}}},Jo=function(t,e,n){var r=e.map((function(t){return t.props.dataKey})),o=function(){var t=(0,Hr.Z)([]),e=Wr,n=Fr,r=Zr;function o(o){var i,a,u=Array.from(t.apply(this,arguments),Yr),c=u.length,l=-1;for(const t of o)for(i=0,++l;i=0?0:o<0?o:r}return n[0]},oi=function(t,e){var n=t.props.stackId;if((0,jo.P2)(n)){var r=e[n];if(r&&r.items.length){for(var o=-1,i=0,a=r.items.length;i=0?r.stackedData[o]:null}}return null},ii=function(t,e,n){return Object.keys(t).reduce((function(r,o){var i=t[o].stackedData.reduce((function(t,r){var o=r.slice(e,n+1).reduce((function(t,e){return[b()(e.concat([t[0]]).filter(jo.hj)),m()(e.concat([t[1]]).filter(jo.hj))]}),[1/0,-1/0]);return[Math.min(t[0],o[0]),Math.max(t[1],o[1])]}),[1/0,-1/0]);return[Math.min(i[0],r[0]),Math.max(i[1],r[1])]}),[1/0,-1/0]).map((function(t){return t===1/0||t===-1/0?0:t}))},ai=/^dataMin[\s]*-[\s]*([0-9]+([.]{1}[0-9]+){0,1})$/,ui=/^dataMax[\s]*\+[\s]*([0-9]+([.]{1}[0-9]+){0,1})$/,ci=function(t,e,n){if(j()(t))return t(e,n);if(!y()(t))return e;var r=[];if((0,jo.hj)(t[0]))r[0]=n?t[0]:Math.min(t[0],e[0]);else if(ai.test(t[0])){var o=+ai.exec(t[0])[1];r[0]=e[0]-o}else j()(t[0])?r[0]=t[0](e[0]):r[0]=e[0];if((0,jo.hj)(t[1]))r[1]=n?t[1]:Math.max(t[1],e[1]);else if(ui.test(t[1])){var i=+ui.exec(t[1])[1];r[1]=e[1]+i}else j()(t[1])?r[1]=t[1](e[1]):r[1]=e[1];return r},li=function(t,e,n){if(t&&t.scale&&t.scale.bandwidth){var r=t.scale.bandwidth();if(!n||r>0)return r}if(t&&e&&e.length>=2){for(var o=u()(e,(function(t){return t.coordinate})),i=1/0,a=1,c=o.length;at.length)&&(e=t.length);for(var n=0,r=new Array(e);n=0&&o===+o?"".concat(o,"px"):o),";");var r,o,i}),"")},y=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(null==t||r.x.isSsr)return{width:0,height:0};var n="".concat(t),o=d(e),i="".concat(n,"-").concat(o);if(s.widthCache[i])return s.widthCache[i];try{var u=document.getElementById(h);u||((u=document.createElement("span")).setAttribute("id",h),u.setAttribute("aria-hidden","true"),document.body.appendChild(u));var c=a(a({},f),e);Object.keys(c).map((function(t){return u.style[t]=c[t],t})),u.textContent=n;var l=u.getBoundingClientRect(),p={width:l.width,height:l.height};return s.widthCache[i]=p,++s.cacheCount>2e3&&(s.cacheCount=0,s.widthCache={}),p}catch(y){return{width:0,height:0}}},v=function(t){var e=t.ownerDocument.documentElement,n={top:0,left:0};return void 0!==t.getBoundingClientRect&&(n=t.getBoundingClientRect()),{top:n.top+window.pageYOffset-e.clientTop,left:n.left+window.pageXOffset-e.clientLeft}},m=function(t,e){return{chartX:Math.round(t.pageX-e.left),chartY:Math.round(t.pageY-e.top)}}},9055:function(t,e,n){"use strict";n.d(e,{Ap:function(){return j},EL:function(){return g},Kt:function(){return w},P2:function(){return v},bv:function(){return x},h1:function(){return b},hU:function(){return d},hj:function(){return y},k4:function(){return O},uY:function(){return h}});var r=n(7361),o=n.n(r),i=n(1469),a=n.n(i),u=n(7654),c=n.n(u),l=n(1763),s=n.n(l),f=n(7037),p=n.n(f),h=function(t){return 0===t?0:t>0?1:-1},d=function(t){return p()(t)&&t.indexOf("%")===t.length-1},y=function(t){return s()(t)&&!c()(t)},v=function(t){return y(t)||p()(t)},m=0,g=function(t){var e=++m;return"".concat(t||"").concat(e)},b=function(t,e){var n,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,o=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!y(t)&&!p()(t))return r;if(d(t)){var i=t.indexOf("%");n=e*parseFloat(t.slice(0,i))/100}else n=+t;return c()(n)&&(n=r),o&&n>e&&(n=e),n},w=function(t){if(!t)return null;var e=Object.keys(t);return e&&e.length?t[e[0]]:null},x=function(t){if(!a()(t))return!1;for(var e=t.length,n={},r=0;r2?n-2:0),o=2;o=0||(o[n]=t[n]);return o}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(o[n]=t[n])}return o}var j={click:"onClick",mousedown:"onMouseDown",mouseup:"onMouseUp",mouseover:"onMouseOver",mousemove:"onMouseMove",mouseout:"onMouseOut",mouseenter:"onMouseEnter",mouseleave:"onMouseLeave",touchcancel:"onTouchCancel",touchend:"onTouchEnd",touchmove:"onTouchMove",touchstart:"onTouchStart"},S=function(t){return"string"==typeof t?t:t?t.displayName||t.name||"Component":""},E=null,M=null,C=function t(e){if(e===E&&d()(M))return M;var n=[];return y.Children.forEach(e,(function(e){p()(e)||((0,v.isFragment)(e)?n=n.concat(t(e.props.children)):n.push(e))})),M=n,E=e,n};function P(t,e){var n=[],r=[];return r=d()(e)?e.map((function(t){return S(t)})):[S(e)],C(t).forEach((function(t){var e=s()(t,"type.displayName")||s()(t,"type.name");-1!==r.indexOf(e)&&n.push(t)})),n}function A(t,e){var n=P(t,e);return n&&n[0]}var k=function(t){if(!t||!t.props)return!1;var e=t.props,n=e.width,r=e.height;return!(!(0,m.hj)(n)||n<=0||!(0,m.hj)(r)||r<=0)},T=["a","altGlyph","altGlyphDef","altGlyphItem","animate","animateColor","animateMotion","animateTransform","circle","clipPath","color-profile","cursor","defs","desc","ellipse","feBlend","feColormatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","filter","font","font-face","font-face-format","font-face-name","font-face-url","foreignObject","g","glyph","glyphRef","hkern","image","line","lineGradient","marker","mask","metadata","missing-glyph","mpath","path","pattern","polygon","polyline","radialGradient","rect","script","set","stop","style","svg","switch","symbol","text","textPath","title","tref","tspan","use","view","vkern"],_=function(t){return t&&t.type&&c()(t.type)&&T.indexOf(t.type)>=0},N=function(t){var e=[];return C(t).forEach((function(t){_(t)&&e.push(t)})),e},D=function(t,e,n){if(!t||"function"==typeof t||"boolean"==typeof t)return null;var r=t;if((0,y.isValidElement)(t)&&(r=t.props),!o()(r))return null;var i={};return Object.keys(r).forEach((function(t){var o;(function(t,e,n,r){var o,i=null!==(o=null===b.ry||void 0===b.ry?void 0:b.ry[r])&&void 0!==o?o:[];return!a()(t)&&(r&&i.includes(e)||b.Yh.includes(e))||n&&b.nv.includes(e)})(null===(o=r)||void 0===o?void 0:o[t],t,e,n)&&(i[t]=r[t])})),i},R=function t(e,n){if(e===n)return!0;var r=y.Children.count(e);if(r!==y.Children.count(n))return!1;if(0===r)return!0;if(1===r)return U(d()(e)?e[0]:e,d()(n)?n[0]:n);for(var o=0;o=0))throw new Error(`invalid digits: ${t}`);if(e>15)return u;const n=10**e;return function(t){this._+=t[0];for(let e=1,r=t.length;ei)if(Math.abs(p*l-s*f)>i&&a){let d=n-u,y=o-c,v=l*l+s*s,m=d*d+y*y,g=Math.sqrt(v),b=Math.sqrt(h),w=a*Math.tan((r-Math.acos((v+h-m)/(2*g*b)))/2),x=w/b,O=w/g;Math.abs(x-1)>i&&this._append`L${t+x*f},${e+x*p}`,this._append`A${a},${a},0,0,${+(p*d>f*y)},${this._x1=t+O*l},${this._y1=e+O*s}`}else this._append`L${this._x1=t},${this._y1=e}`;else;}arc(t,e,n,u,c,l){if(t=+t,e=+e,l=!!l,(n=+n)<0)throw new Error(`negative radius: ${n}`);let s=n*Math.cos(u),f=n*Math.sin(u),p=t+s,h=e+f,d=1^l,y=l?u-c:c-u;null===this._x1?this._append`M${p},${h}`:(Math.abs(this._x1-p)>i||Math.abs(this._y1-h)>i)&&this._append`L${p},${h}`,n&&(y<0&&(y=y%o+o),y>a?this._append`A${n},${n},0,1,${d},${t-s},${e-f}A${n},${n},0,1,${d},${this._x1=p},${this._y1=h}`:y>i&&this._append`A${n},${n},0,${+(y>=r)},${d},${this._x1=t+n*Math.cos(c)},${this._y1=e+n*Math.sin(c)}`)}rect(t,e,n,r){this._append`M${this._x0=this._x1=+t},${this._y0=this._y1=+e}h${n=+n}v${+r}h${-n}Z`}toString(){return this._}}function l(t){let e=3;return t.digits=function(n){if(!arguments.length)return e;if(null==n)e=null;else{const t=Math.floor(n);if(!(t>=0))throw new RangeError(`invalid digits: ${n}`);e=t}return t},()=>new c(e)}}}]); \ No newline at end of file diff --git a/public/2107372e002862be1ce1192c4d0a6f8ef400df30.js.LICENSE.txt b/public/2107372e002862be1ce1192c4d0a6f8ef400df30.js.LICENSE.txt new file mode 100644 index 0000000000..61d57f3cf5 --- /dev/null +++ b/public/2107372e002862be1ce1192c4d0a6f8ef400df30.js.LICENSE.txt @@ -0,0 +1,16 @@ +/*! + Copyright (c) 2018 Jed Watson. + Licensed under the MIT License (MIT), see + http://jedwatson.github.io/classnames +*/ + +/*! decimal.js-light v2.5.1 https://github.com/MikeMcl/decimal.js-light/LICENCE */ + +/** @license React v16.13.1 + * react-is.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ diff --git a/public/231-682eb47fb124c6c54965.js b/public/231-682eb47fb124c6c54965.js deleted file mode 100644 index 5117ec39ac..0000000000 --- a/public/231-682eb47fb124c6c54965.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkjonas_de=self.webpackChunkjonas_de||[]).push([[231],{27231:function(){!function(){"use strict";if("undefined"!=typeof window){var t=window.navigator.userAgent.match(/Edge\/(\d{2})\./),e=t?parseInt(t[1],10):null,i=!!e&&16<=e&&e<=18;if("objectFit"in document.documentElement.style==0||i){var n=function(t,e,i){var n,o,l,a,d;if((i=i.split(" ")).length<2&&(i[1]=i[0]),"x"===t)n=i[0],o=i[1],l="left",a="right",d=e.clientWidth;else{if("y"!==t)return;n=i[1],o=i[0],l="top",a="bottom",d=e.clientHeight}if(n!==l&&o!==l){if(n!==a&&o!==a)return"center"===n||"50%"===n?(e.style[l]="50%",void(e.style["margin-"+l]=d/-2+"px")):void(0<=n.indexOf("%")?(n=parseInt(n,10))<50?(e.style[l]=n+"%",e.style["margin-"+l]=d*(n/-100)+"px"):(n=100-n,e.style[a]=n+"%",e.style["margin-"+a]=d*(n/-100)+"px"):e.style[l]=n);e.style[a]="0"}else e.style[l]="0"},o=function(t){var e=t.dataset?t.dataset.objectFit:t.getAttribute("data-object-fit"),i=t.dataset?t.dataset.objectPosition:t.getAttribute("data-object-position");e=e||"cover",i=i||"50% 50%";var o=t.parentNode;return function(t){var e=window.getComputedStyle(t,null),i=e.getPropertyValue("position"),n=e.getPropertyValue("overflow"),o=e.getPropertyValue("display");i&&"static"!==i||(t.style.position="relative"),"hidden"!==n&&(t.style.overflow="hidden"),o&&"inline"!==o||(t.style.display="block"),0===t.clientHeight&&(t.style.height="100%"),-1===t.className.indexOf("object-fit-polyfill")&&(t.className=t.className+" object-fit-polyfill")}(o),function(t){var e=window.getComputedStyle(t,null),i={"max-width":"none","max-height":"none","min-width":"0px","min-height":"0px",top:"auto",right:"auto",bottom:"auto",left:"auto","margin-top":"0px","margin-right":"0px","margin-bottom":"0px","margin-left":"0px"};for(var n in i)e.getPropertyValue(n)!==i[n]&&(t.style[n]=i[n])}(t),t.style.position="absolute",t.style.width="auto",t.style.height="auto","scale-down"===e&&(e=t.clientWidtho.clientWidth||"contain"===e&&t.clientWidth0},t.prototype.connect_=function(){i&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),a?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},t.prototype.disconnect_=function(){i&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},t.prototype.onTransitionEnd_=function(t){var e=t.propertyName,n=void 0===e?"":e;c.some((function(t){return!!~n.indexOf(t)}))&&this.refresh()},t.getInstance=function(){return this.instance_||(this.instance_=new t),this.instance_},t.instance_=null,t}(),h=function(t,e){for(var n=0,r=Object.keys(e);n0},t}(),O="undefined"!=typeof WeakMap?new WeakMap:new r,E=function t(e){if(!(this instanceof t))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var n=u.getInstance(),r=new w(e,n,this);O.set(this,r)};["observe","unobserve","disconnect"].forEach((function(t){E.prototype[t]=function(){var e;return(e=O.get(this))[t].apply(e,arguments)}}));var M=void 0!==o.ResizeObserver?o.ResizeObserver:E;e.default=M},12076:function(t,e,n){"use strict";n.d(e,{OF:function(){return o},lD:function(){return s},zA:function(){return i}});var r={nobottommargin:{marginBottom:0,paddingBottom:0},notopmargin:{marginTop:0,paddingTop:0},nobold:{fontWeight:"normal"},spacer:{height:"5em"},noMarginGrid:{marginRight:0,marginLeft:0}},i=r.nobottommargin,o=r.spacer,s=r.noMarginGrid}}]); \ No newline at end of file diff --git a/public/2a89bfd50bd5649e2bb60e252f5274bd276e0bbe.js b/public/2a89bfd50bd5649e2bb60e252f5274bd276e0bbe.js new file mode 100644 index 0000000000..81d87c0e35 --- /dev/null +++ b/public/2a89bfd50bd5649e2bb60e252f5274bd276e0bbe.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkjonaso_de=self.webpackChunkjonaso_de||[]).push([[890],{5370:function(e,t,a){a.d(t,{Z:function(){return I}});var n=a(4160),r=a(7294),i=a(7462),o=a(1721),l=a(9115),c=a(7601),s=a(1368),d=a(6010),u=a(2248),p=a(2063),v=a(8935),f=a(2519),h=a(7534),m=a(5382),b=a(7401);function Z(e){var t=e.children,a=e.className,n=e.content,o=e.hidden,l=e.visible,c=(0,d.Z)((0,p.lG)(l,"visible"),(0,p.lG)(o,"hidden"),"content",a),s=(0,v.Z)(Z,e),h=(0,f.Z)(Z,e);return r.createElement(h,(0,i.Z)({},s,{className:c}),u.kK(t)?n:t)}Z.handledProps=["as","children","className","content","hidden","visible"],Z.propTypes={};var G=Z,y=a(335);function g(e){var t=e.attached,a=e.basic,n=e.buttons,o=e.children,l=e.className,s=e.color,h=e.compact,m=e.content,b=e.floated,Z=e.fluid,G=e.icon,k=e.inverted,C=e.labeled,N=e.negative,E=e.positive,P=e.primary,I=e.secondary,T=e.size,w=e.toggle,K=e.vertical,R=e.widths,z=(0,d.Z)("ui",s,T,(0,p.lG)(a,"basic"),(0,p.lG)(h,"compact"),(0,p.lG)(Z,"fluid"),(0,p.lG)(G,"icon"),(0,p.lG)(k,"inverted"),(0,p.lG)(C,"labeled"),(0,p.lG)(N,"negative"),(0,p.lG)(E,"positive"),(0,p.lG)(P,"primary"),(0,p.lG)(I,"secondary"),(0,p.lG)(w,"toggle"),(0,p.lG)(K,"vertical"),(0,p.sU)(t,"attached"),(0,p.cD)(b,"floated"),(0,p.H0)(R),"buttons",l),A=(0,v.Z)(g,e),U=(0,f.Z)(g,e);return(0,c.Z)(n)?r.createElement(U,(0,i.Z)({},A,{className:z}),u.kK(o)?m:o):r.createElement(U,(0,i.Z)({},A,{className:z}),(0,y.Z)(n,(function(e){return x.create(e)})))}g.handledProps=["as","attached","basic","buttons","children","className","color","compact","content","floated","fluid","icon","inverted","labeled","negative","positive","primary","secondary","size","toggle","vertical","widths"],g.propTypes={};var k=g;function C(e){var t=e.className,a=e.text,n=(0,d.Z)("or",t),o=(0,v.Z)(C,e),l=(0,f.Z)(C,e);return r.createElement(l,(0,i.Z)({},o,{className:n,"data-text":a}))}C.handledProps=["as","className","text"],C.propTypes={};var N=C,E=function(e){function t(){for(var t,a=arguments.length,n=new Array(a),i=0;i(0,n.c4)("/research/interests")},"Bar"),P(x.Or,null),P(x,{positive:"wordcloud"===e,onClick:()=>(0,n.c4)("/research/interests/wordcloud")},"Cloud"))}},335:function(e,t,a){a.d(t,{Z:function(){return s}});var n=a(4073),r=a(3387),i=a(4356),o=a(585);var l=function(e,t){var a=-1,n=(0,o.Z)(e)?Array(e.length):[];return(0,i.Z)(e,(function(e,r,i){n[++a]=t(e,r,i)})),n},c=a(9475);var s=function(e,t){return((0,c.Z)(e)?n.Z:l)(e,(0,r.Z)(t,3))}}}]); \ No newline at end of file diff --git a/public/36-7249b3ec845d5edaea7e.js b/public/36-7249b3ec845d5edaea7e.js deleted file mode 100644 index 419dc472e9..0000000000 --- a/public/36-7249b3ec845d5edaea7e.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 36-7249b3ec845d5edaea7e.js.LICENSE.txt */ -(self.webpackChunkjonas_de=self.webpackChunkjonas_de||[]).push([[36],{59591:function(t,e,r){var n=r(50008).default;function o(){"use strict";t.exports=o=function(){return e},t.exports.__esModule=!0,t.exports.default=t.exports;var e={},r=Object.prototype,i=r.hasOwnProperty,a="function"==typeof Symbol?Symbol:{},c=a.iterator||"@@iterator",u=a.asyncIterator||"@@asyncIterator",s=a.toStringTag||"@@toStringTag";function l(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{l({},"")}catch(F){l=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var o=e&&e.prototype instanceof p?e:p,i=Object.create(o.prototype),a=new k(n||[]);return i._invoke=function(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return P()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var c=E(a,r);if(c){if(c===d)continue;return c}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=h(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===d)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}(t,r,a),i}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(F){return{type:"throw",arg:F}}}e.wrap=f;var d={};function p(){}function v(){}function y(){}var g={};l(g,c,(function(){return this}));var m=Object.getPrototypeOf,w=m&&m(m(S([])));w&&w!==r&&i.call(w,c)&&(g=w);var b=y.prototype=p.prototype=Object.create(g);function x(t){["next","throw","return"].forEach((function(e){l(t,e,(function(t){return this._invoke(e,t)}))}))}function L(t,e){function r(o,a,c,u){var s=h(t[o],t,a);if("throw"!==s.type){var l=s.arg,f=l.value;return f&&"object"==n(f)&&i.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,c,u)}),(function(t){r("throw",t,c,u)})):e.resolve(f).then((function(t){l.value=t,c(l)}),(function(t){return r("throw",t,c,u)}))}u(s.arg)}var o;this._invoke=function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}}function E(t,e){var r=t.iterator[e.method];if(void 0===r){if(e.delegate=null,"throw"===e.method){if(t.iterator.return&&(e.method="return",e.arg=void 0,E(t,e),"throw"===e.method))return d;e.method="throw",e.arg=new TypeError("The iterator does not provide a 'throw' method")}return d}var n=h(r,t.iterator,e.arg);if("throw"===n.type)return e.method="throw",e.arg=n.arg,e.delegate=null,d;var o=n.arg;return o?o.done?(e[t.resultName]=o.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,d):o:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,d)}function j(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function k(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(j,this),this.reset(!0)}function S(t){if(t){var e=t[c];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var r=-1,n=function e(){for(;++r=0;--n){var o=this.tryEntries[n],a=o.completion;if("root"===o.tryLoc)return r("end");if(o.tryLoc<=this.prev){var c=i.call(o,"catchLoc"),u=i.call(o,"finallyLoc");if(c&&u){if(this.prev=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&i.call(n,"finallyLoc")&&this.prev=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),d}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;_(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:S(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),d}},e}t.exports=o,t.exports.__esModule=!0,t.exports.default=t.exports},50008:function(t){function e(r){return t.exports=e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},t.exports.__esModule=!0,t.exports.default=t.exports,e(r)}t.exports=e,t.exports.__esModule=!0,t.exports.default=t.exports},87757:function(t,e,r){var n=r(59591)();t.exports=n;try{regeneratorRuntime=n}catch(o){"object"==typeof globalThis?globalThis.regeneratorRuntime=n:Function("r","regeneratorRuntime = r")(n)}},89036:function(t,e,r){"use strict";function n(t,e,r,n,o,i,a){try{var c=t[i](a),u=c.value}catch(s){return void r(s)}c.done?e(u):Promise.resolve(u).then(n,o)}r.r(e),r.d(e,{renderImageToString:function(){return y},swapPlaceholderImage:function(){return v}});var o,i=r(87757),a=r.n(i),c=r(89230),u=r(67294),s=r(97762),l=(r(74811),new WeakMap),f=navigator.connection||navigator.mozConnection||navigator.webkitConnection,h=["image","loading","isLoading","isLoaded","imgClassName","imgStyle","objectPosition","backgroundColor","objectFit"];function d(t,e){t.style.opacity="1",e&&(e.style.opacity="0")}function p(t,e,r,n,o,i){var a=t.querySelector("[data-main-image]"),c=t.querySelector("[data-placeholder-image]"),u=r.has(e);function s(t){var e=this;this.removeEventListener("load",s);var r=t.currentTarget,n=new Image;n.src=r.currentSrc,n.decode?n.decode().then((function(){d(e,c),null==o||o({wasCached:u})})).catch((function(t){d(e,c),null==i||i(t)})):(d(this,c),null==o||o({wasCached:u}))}return a.addEventListener("load",s),null==n||n({wasCached:u}),Array.from(a.parentElement.children).forEach((function(t){var e=t.getAttribute("data-src"),r=t.getAttribute("data-srcset");e&&(t.removeAttribute("data-src"),t.setAttribute("src",e)),r&&(t.removeAttribute("data-srcset"),t.setAttribute("srcset",r))})),r.add(e),a.complete&&s.call(a,{currentTarget:a}),function(){a&&a.removeEventListener("load",s)}}function v(t,e,i,u,s,h,d){if(!(0,c.h)()){var v,y,g,m=(L=function(){v=p(t,e,i,s,h,d)},"IntersectionObserver"in window?(o||(o=new IntersectionObserver((function(t){t.forEach((function(t){var e;t.isIntersecting&&(null==(e=l.get(t.target))||e(),l.delete(t.target))}))}),{rootMargin:"4g"!==(null==f?void 0:f.effectiveType)||null!=f&&f.saveData?"2500px":"1250px"})),function(t){return l.set(t,L),o.observe(t),function(){o&&t&&(l.delete(t),o.unobserve(t))}}):function(){return L(),function(){}}),w=m(t);return"objectFit"in document.documentElement.style||(t.dataset.objectFit=null!=(y=u.objectFit)?y:"cover",t.dataset.objectPosition=""+(null!=(g=u.objectPosition)?g:"50% 50%"),(b=a().mark((function t(e){return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(t.t0="objectFitPolyfill"in window,t.t0){t.next=4;break}return t.next=4,r.e(231).then(r.t.bind(r,27231,23));case 4:window.objectFitPolyfill(e);case 5:case"end":return t.stop()}}),t)})),x=function(){var t=this,e=arguments;return new Promise((function(r,o){var i=b.apply(t,e);function a(t){n(i,r,o,a,c,"next",t)}function c(t){n(i,r,o,a,c,"throw",t)}a(void 0)}))},function(t){return x.apply(this,arguments)})(t)),function(){v&&v(),w()}}var b,x,L;return p(t,e,i,s,h,d)}function y(t){var e=t.image,r=t.loading,n=void 0===r?"lazy":r,o=t.isLoading,i=t.isLoaded,a=t.imgClassName,l=t.imgStyle,f=void 0===l?{}:l,d=t.objectPosition,p=t.backgroundColor,v=t.objectFit,y=void 0===v?"cover":v,g=(0,c._)(t,h),m=e.width,w=e.height,b=e.layout,x=e.images,L=e.placeholder,E=e.backgroundColor;return f=(0,c.a)({objectFit:y,objectPosition:d,backgroundColor:p},f),(0,s.renderToStaticMarkup)(u.createElement(c.L,{layout:b,width:m,height:w},u.createElement(c.P,(0,c.a)({},(0,c.g)(L,i,b,m,w,E,y,d))),u.createElement(c.M,(0,c.a)({},g,{width:m,height:w,className:a},(0,c.b)(o,i,x,n,f)))))}}}]); \ No newline at end of file diff --git a/public/36-7249b3ec845d5edaea7e.js.LICENSE.txt b/public/36-7249b3ec845d5edaea7e.js.LICENSE.txt deleted file mode 100644 index ae386fb79c..0000000000 --- a/public/36-7249b3ec845d5edaea7e.js.LICENSE.txt +++ /dev/null @@ -1 +0,0 @@ -/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ diff --git a/public/404.html b/public/404.html index 40266d01c5..2c9a32a589 100644 --- a/public/404.html +++ b/public/404.html @@ -1,146 +1,171 @@ - \ No newline at end of file + */*,:after,:before{box-sizing:inherit}html{box-sizing:border-box}input[type=email],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;-moz-appearance:none}/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;line-height:1.15}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{-webkit-text-decoration-skip:objects;background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}[hidden],template{display:none}body{font-size:1.1rem;overflow-y:scroll}#___gatsby{padding-bottom:2rem}@media only screen and (max-width:768px){.mobilehide{display:none}}.ui.table td.collapsing,.ui.table th.collapsing{white-space:nowrap;width:1px}.ui.toggle.checkbox input:checked~.box:before,.ui.toggle.checkbox input:checked~label:before,.ui.toggle.checkbox input:focus:checked~.box:before,.ui.toggle.checkbox input:focus:checked~label:before{background-color:#eaae00!important}.ui.toggle.checkbox .box:before,.ui.toggle.checkbox label:before{background-color:grey}.clickable,.pointer{cursor:pointer}h1,h2,h3,h4{text-align:center}h1,h2,h3{border:none;color:rgba(0,0,0,.87);font-family:Lato,Helvetica Neue,Arial,Helvetica,sans-serif;font-weight:700;line-height:1.28571429em;margin:calc(2rem - .14286em) 0 1rem;padding:0;text-transform:none}.ui.striped.table tbody tr:nth-child(2n),.ui.striped.table>tr:nth-child(2n){background-color:rgba(0,0,50,.02)}.spacer{height:"5em"}.academicon{speak:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;color:#767676;cursor:pointer;display:inline-block;font-size:2em;font-style:normal;font-weight:400;height:1em;line-height:1;margin:0 .25rem 0 0;opacity:.8;text-align:center;text-decoration:inherit;transition:opacity .1s ease;vertical-align:middle;width:1.18em}.print{display:none}.cv .row{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1.5em}.cv .leftCol{flex:1 1;vertical-align:"top"}.cv .mainCol{flex:3 1;vertical-align:"top"}.cv .rightCol{flex:1 1;text-align:"right";vertical-align:"top"}.cv .rowspan2{flex:"1 1 100%" 1}.cv .nonbold{font-size:"1em";font-weight:"normal"}@media print{body{font:11pt Times New Roman,Times,serif;line-height:1.3}@page{margin:1.5cm}.print{line-height:1em}.print-only{display:inherit}#publicationButtons,.noprint,.spacer,footer,header{display:none}} + + \ No newline at end of file diff --git a/public/404/index.html b/public/404/index.html index b31248eb39..00ce8427a3 100644 --- a/public/404/index.html +++ b/public/404/index.html @@ -1,146 +1,171 @@ - \ No newline at end of file + */*,:after,:before{box-sizing:inherit}html{box-sizing:border-box}input[type=email],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;-moz-appearance:none}/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;line-height:1.15}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{-webkit-text-decoration-skip:objects;background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}[hidden],template{display:none}body{font-size:1.1rem;overflow-y:scroll}#___gatsby{padding-bottom:2rem}@media only screen and (max-width:768px){.mobilehide{display:none}}.ui.table td.collapsing,.ui.table th.collapsing{white-space:nowrap;width:1px}.ui.toggle.checkbox input:checked~.box:before,.ui.toggle.checkbox input:checked~label:before,.ui.toggle.checkbox input:focus:checked~.box:before,.ui.toggle.checkbox input:focus:checked~label:before{background-color:#eaae00!important}.ui.toggle.checkbox .box:before,.ui.toggle.checkbox label:before{background-color:grey}.clickable,.pointer{cursor:pointer}h1,h2,h3,h4{text-align:center}h1,h2,h3{border:none;color:rgba(0,0,0,.87);font-family:Lato,Helvetica Neue,Arial,Helvetica,sans-serif;font-weight:700;line-height:1.28571429em;margin:calc(2rem - .14286em) 0 1rem;padding:0;text-transform:none}.ui.striped.table tbody tr:nth-child(2n),.ui.striped.table>tr:nth-child(2n){background-color:rgba(0,0,50,.02)}.spacer{height:"5em"}.academicon{speak:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;color:#767676;cursor:pointer;display:inline-block;font-size:2em;font-style:normal;font-weight:400;height:1em;line-height:1;margin:0 .25rem 0 0;opacity:.8;text-align:center;text-decoration:inherit;transition:opacity .1s ease;vertical-align:middle;width:1.18em}.print{display:none}.cv .row{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1.5em}.cv .leftCol{flex:1 1;vertical-align:"top"}.cv .mainCol{flex:3 1;vertical-align:"top"}.cv .rightCol{flex:1 1;text-align:"right";vertical-align:"top"}.cv .rowspan2{flex:"1 1 100%" 1}.cv .nonbold{font-size:"1em";font-weight:"normal"}@media print{body{font:11pt Times New Roman,Times,serif;line-height:1.3}@page{margin:1.5cm}.print{line-height:1em}.print-only{display:inherit}#publicationButtons,.noprint,.spacer,footer,header{display:none}} + + \ No newline at end of file diff --git a/public/4a889d7dd406caf96bdf5faab874fc36f0558b0e.js b/public/4a889d7dd406caf96bdf5faab874fc36f0558b0e.js new file mode 100644 index 0000000000..31108fc390 --- /dev/null +++ b/public/4a889d7dd406caf96bdf5faab874fc36f0558b0e.js @@ -0,0 +1,2 @@ +/*! For license information please see 4a889d7dd406caf96bdf5faab874fc36f0558b0e.js.LICENSE.txt */ +(self.webpackChunkjonaso_de=self.webpackChunkjonaso_de||[]).push([[599],{1368:function(e,t,n){"use strict";n.d(t,{R:function(){return p}});var r=n(3366),o=n(7294),i=n(9864),a=n(1721),c=n(3935),u=n(4714);var s=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),o=0;o0?o.cloneElement(c,a):c;return o.createElement(u,{innerRef:n},p)}},4714:function(e,t,n){"use strict";n.d(t,{n:function(){return r}});var r=function(e,t){"function"!=typeof e?null!==e&&"object"==typeof e&&(e.current=t):e(t)}},5664:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(8875);n(5697);var o=n(7294);function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function c(e,t){for(var n=0;n=0;r-=1)this.handlers[r].called||(this.handlers[r].called=!0,this.handlers[r](e));for(var o=n;o>=0;o-=1)this.handlers[o].called=!1}else(0,this.handlers[n])(e)}},{key:"hasHandlers",value:function(){return this.handlers.length>0}},{key:"removeHandlers",value:function(t){for(var n=[],r=this.handlers.length,o=0;o0;var t=this.handlerSets.get(e);return!!t&&t.hasHandlers()}},{key:"removeHandlers",value:function(t,n){var r=h(this.handlerSets);if(!r.has(t))return new e(this.poolName,r);var o=r.get(t).removeHandlers(n);return o.hasHandlers()?r.set(t,o):r.delete(t),new e(this.poolName,r)}}]),e}();s(Z,"createByType",(function(e,t,n){var r=new Map;return r.set(t,new v(n)),new Z(e,r)}));var b=function(){function e(t){var n=this;a(this,e),s(this,"handlers",new Map),s(this,"pools",new Map),s(this,"target",void 0),s(this,"createEmitter",(function(e){return function(t){n.pools.forEach((function(n){n.dispatchEvent(e,t)}))}})),this.target=t}return u(e,[{key:"addHandlers",value:function(e,t,n){if(this.pools.has(e)){var r=this.pools.get(e);this.pools.set(e,r.addHandlers(t,n))}else this.pools.set(e,Z.createByType(e,t,n));this.handlers.has(t)||this.addTargetHandler(t)}},{key:"hasHandlers",value:function(){return this.handlers.size>0}},{key:"removeHandlers",value:function(e,t,n){if(this.pools.has(e)){var r=this.pools.get(e).removeHandlers(t,n);r.hasHandlers()?this.pools.set(e,r):this.pools.delete(e);var o=!1;this.pools.forEach((function(e){return o=o||e.hasHandlers(t)})),o||this.removeTargetHandler(t)}}},{key:"addTargetHandler",value:function(e){var t=this.createEmitter(e);this.handlers.set(e,t),this.target.addEventListener(e,t,!0)}},{key:"removeTargetHandler",value:function(e){this.handlers.has(e)&&(this.target.removeEventListener(e,this.handlers.get(e),!0),this.handlers.delete(e))}}]),e}(),w=function(){function e(){var t=this;a(this,e),s(this,"targets",new Map),s(this,"getTarget",(function(e){var n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=y(e);if(t.targets.has(r))return t.targets.get(r);if(!n)return null;var o=new b(r);return t.targets.set(r,o),o})),s(this,"removeTarget",(function(e){t.targets.delete(y(e))}))}return u(e,[{key:"sub",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(r.canUseDOM){var o=n.target,i=void 0===o?document:o,a=n.pool,c=void 0===a?"default":a;this.getTarget(i).addHandlers(c,e,m(t))}}},{key:"unsub",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(r.canUseDOM){var o=n.target,i=void 0===o?document:o,a=n.pool,c=void 0===a?"default":a,u=this.getTarget(i,!1);u&&(u.removeHandlers(c,e,m(t)),u.hasHandlers()||this.removeTarget(i))}}}]),e}(),k=new w,_=function(e){function t(){return a(this,t),d(this,f(t).apply(this,arguments))}return l(t,o.PureComponent),u(t,[{key:"componentDidMount",value:function(){this.subscribe(this.props)}},{key:"componentDidUpdate",value:function(e){this.unsubscribe(e),this.subscribe(this.props)}},{key:"componentWillUnmount",value:function(){this.unsubscribe(this.props)}},{key:"subscribe",value:function(e){var t=e.name,n=e.on,r=e.pool,o=e.target;k.sub(t,n,{pool:r,target:o})}},{key:"unsubscribe",value:function(e){var t=e.name,n=e.on,r=e.pool,o=e.target;k.unsub(t,n,{pool:r,target:o})}},{key:"render",value:function(){return null}}]),t}();s(_,"defaultProps",{pool:"default",target:"document"}),_.propTypes={},t.instance=k,t.default=_},9695:function(e,t,n){"use strict";var r;r=n(5664),e.exports=r.default,e.exports.instance=r.instance},6010:function(e,t,n){"use strict";function r(e){var t,n,o="";if("string"==typeof e||"number"==typeof e)o+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;to?-1:r(0,o.K2)("1640202326").site.siteMetadata;var a=r.createElement;function c({title:e,description:t,pathname:n,children:o}){const{title:c,description:u,image:s,siteUrl:l,twitterUsername:f}=i(),p={title:e||c,description:t||u,image:`${l}${s}`,url:`${l}${n||""}`,twitterUsername:f};return a(r.Fragment,null,a("meta",{key:"charSet",charSet:"utf-8"}),a("title",null,p.title),a("meta",{name:"description",content:p.description}),a("link",{rel:"icon",href:"data:image/svg+xml,👤"}),o)}},6782:function(e,t,n){"use strict";n.d(t,{Z:function(){return l}});var r=n(7294),o=n(4160),i=r.createElement;const a={navSpacer:{marginBottom:"2em"}},c=({active:e,handleItemClick:t,item:n,url:r=null})=>i("a",{key:n,className:"item"+(e?" active":""),name:n,url:r,onClick:t},n);function u(){const{0:e,1:t}=(0,r.useState)(""),{0:n,1:u}=(0,r.useState)(!1);function s(e){e.preventDefault();const n=e.target.name;let r=e.target.getAttribute("url");const i=n.toLowerCase();t(i),r?(r="/"===r.charAt(0)?r.slice(1):r,(0,o.c4)(`/${r}`)):"home"===i?(0,o.c4)("/"):(0,o.c4)(`/${i}`)}return(0,r.useEffect)((()=>{const e=function(e){return e.replace(/\//g,"").toLowerCase()}(window.location.pathname);t(e||"home");const n=e.startsWith("research")||e.startsWith("projects");u(n)}),[]),i("header",null,i("div",{id:"desktopmenu"},i("div",{className:"ui fluid pointing stackable seven item menu",primary:"true"},i(c,{key:"home",active:"home"===e,item:"Home",handleItemClick:s}),i(c,{key:"artworks",active:e.startsWith("artworks"),item:"Artworks",link:!1,header:!0,handleItemClick:s}),i(c,{key:"publications",active:"publications"===e,item:"Publications",handleItemClick:s}),i(c,{key:"research",active:e.startsWith("research")||"projects"===e,item:"Research",link:!1,header:!0,handleItemClick:s}),i(c,{key:"cv",active:"cv"===e,item:"CV",handleItemClick:s})),n&&i("div",{className:"ui small pointing secondary stackable seven item menu"},i(c,{key:"researchinterests",active:"research"===e||"researchinterests"===e,item:"Interests",url:"/research/interests",handleItemClick:s}),i(c,{key:"researchprojects",active:"researchprojects"===e,item:"Projects",url:"/research/projects",handleItemClick:s}),i(c,{key:"researchreading",active:"researchreading"===e,item:"Reading",url:"/research/reading",handleItemClick:s}),i(c,{key:"researchinfluences",active:"researchinfluences"===e,item:"Influences",url:"/research/influences",handleItemClick:s}))),i("div",{style:a.navSpacer}))}var s=r.createElement;function l({children:e}){return s("div",{style:{margin:"0 auto",maxWidth:1024}},s(u,null),e)}},7630:function(e){"use strict";for(var t=function(e){return null!==e&&!Array.isArray(e)&&"object"==typeof e},n={3:"Cancel",6:"Help",8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",28:"Convert",29:"NonConvert",30:"Accept",31:"ModeChange",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",41:"Select",42:"Print",43:"Execute",44:"PrintScreen",45:"Insert",46:"Delete",48:["0",")"],49:["1","!"],50:["2","@"],51:["3","#"],52:["4","$"],53:["5","%"],54:["6","^"],55:["7","&"],56:["8","*"],57:["9","("],91:"OS",93:"ContextMenu",144:"NumLock",145:"ScrollLock",181:"VolumeMute",182:"VolumeDown",183:"VolumeUp",186:[";",":"],187:["=","+"],188:[",","<"],189:["-","_"],190:[".",">"],191:["/","?"],192:["`","~"],219:["[","{"],220:["\\","|"],221:["]","}"],222:["'",'"'],224:"Meta",225:"AltGraph",246:"Attn",247:"CrSel",248:"ExSel",249:"EraseEof",250:"Play",251:"ZoomOut"},r=0;r<24;r+=1)n[112+r]="F"+(r+1);for(var o=0;o<26;o+=1){var i=o+65;n[i]=[String.fromCharCode(i+32),String.fromCharCode(i)]}var a={codes:n,getCode:function(e){return t(e)?e.keyCode||e.which||this[e.key]:this[e]},getKey:function(e){var r=t(e);if(r&&e.key)return e.key;var o=n[r?e.keyCode||e.which:e];return Array.isArray(o)&&(o=r?o[e.shiftKey?1:0]:o[0]),o},Cancel:3,Help:6,Backspace:8,Tab:9,Clear:12,Enter:13,Shift:16,Control:17,Alt:18,Pause:19,CapsLock:20,Escape:27,Convert:28,NonConvert:29,Accept:30,ModeChange:31," ":32,PageUp:33,PageDown:34,End:35,Home:36,ArrowLeft:37,ArrowUp:38,ArrowRight:39,ArrowDown:40,Select:41,Print:42,Execute:43,PrintScreen:44,Insert:45,Delete:46,0:48,")":48,1:49,"!":49,2:50,"@":50,3:51,"#":51,4:52,$:52,5:53,"%":53,6:54,"^":54,7:55,"&":55,8:56,"*":56,9:57,"(":57,a:65,A:65,b:66,B:66,c:67,C:67,d:68,D:68,e:69,E:69,f:70,F:70,g:71,G:71,h:72,H:72,i:73,I:73,j:74,J:74,k:75,K:75,l:76,L:76,m:77,M:77,n:78,N:78,o:79,O:79,p:80,P:80,q:81,Q:81,r:82,R:82,s:83,S:83,t:84,T:84,u:85,U:85,v:86,V:86,w:87,W:87,x:88,X:88,y:89,Y:89,z:90,Z:90,OS:91,ContextMenu:93,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,F13:124,F14:125,F15:126,F16:127,F17:128,F18:129,F19:130,F20:131,F21:132,F22:133,F23:134,F24:135,NumLock:144,ScrollLock:145,VolumeMute:181,VolumeDown:182,VolumeUp:183,";":186,":":186,"=":187,"+":187,",":188,"<":188,"-":189,_:189,".":190,">":190,"/":191,"?":191,"`":192,"~":192,"[":219,"{":219,"\\":220,"|":220,"]":221,"}":221,"'":222,'"':222,Meta:224,AltGraph:225,Attn:246,CrSel:247,ExSel:248,EraseEof:249,Play:250,ZoomOut:251};a.Spacebar=a[" "],a.Digit0=a[0],a.Digit1=a[1],a.Digit2=a[2],a.Digit3=a[3],a.Digit4=a[4],a.Digit5=a[5],a.Digit6=a[6],a.Digit7=a[7],a.Digit8=a[8],a.Digit9=a[9],a.Tilde=a["~"],a.GraveAccent=a["`"],a.ExclamationPoint=a["!"],a.AtSign=a["@"],a.PoundSign=a["#"],a.PercentSign=a["%"],a.Caret=a["^"],a.Ampersand=a["&"],a.PlusSign=a["+"],a.MinusSign=a["-"],a.EqualsSign=a["="],a.DivisionSign=a["/"],a.MultiplicationSign=a["*"],a.Comma=a[","],a.Decimal=a["."],a.Colon=a[":"],a.Semicolon=a[";"],a.Pipe=a["|"],a.BackSlash=a["\\"],a.QuestionMark=a["?"],a.SingleQuote=a["'"],a.DoubleQuote=a['"'],a.LeftCurlyBrace=a["{"],a.RightCurlyBrace=a["}"],a.LeftParenthesis=a["("],a.RightParenthesis=a[")"],a.LeftAngleBracket=a["<"],a.RightAngleBracket=a[">"],a.LeftSquareBracket=a["["],a.RightSquareBracket=a["]"],e.exports=a},9921:function(e,t){"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,i=n?Symbol.for("react.fragment"):60107,a=n?Symbol.for("react.strict_mode"):60108,c=n?Symbol.for("react.profiler"):60114,u=n?Symbol.for("react.provider"):60109,s=n?Symbol.for("react.context"):60110,l=n?Symbol.for("react.async_mode"):60111,f=n?Symbol.for("react.concurrent_mode"):60111,p=n?Symbol.for("react.forward_ref"):60112,d=n?Symbol.for("react.suspense"):60113,v=n?Symbol.for("react.suspense_list"):60120,h=n?Symbol.for("react.memo"):60115,m=n?Symbol.for("react.lazy"):60116,g=n?Symbol.for("react.block"):60121,y=n?Symbol.for("react.fundamental"):60117,Z=n?Symbol.for("react.responder"):60118,b=n?Symbol.for("react.scope"):60119;function w(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case l:case f:case i:case c:case a:case d:return e;default:switch(e=e&&e.$$typeof){case s:case p:case m:case h:case u:return e;default:return t}}case o:return t}}}function k(e){return w(e)===f}t.AsyncMode=l,t.ConcurrentMode=f,t.ContextConsumer=s,t.ContextProvider=u,t.Element=r,t.ForwardRef=p,t.Fragment=i,t.Lazy=m,t.Memo=h,t.Portal=o,t.Profiler=c,t.StrictMode=a,t.Suspense=d,t.isAsyncMode=function(e){return k(e)||w(e)===l},t.isConcurrentMode=k,t.isContextConsumer=function(e){return w(e)===s},t.isContextProvider=function(e){return w(e)===u},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return w(e)===p},t.isFragment=function(e){return w(e)===i},t.isLazy=function(e){return w(e)===m},t.isMemo=function(e){return w(e)===h},t.isPortal=function(e){return w(e)===o},t.isProfiler=function(e){return w(e)===c},t.isStrictMode=function(e){return w(e)===a},t.isSuspense=function(e){return w(e)===d},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===i||e===f||e===c||e===a||e===d||e===v||"object"==typeof e&&null!==e&&(e.$$typeof===m||e.$$typeof===h||e.$$typeof===u||e.$$typeof===s||e.$$typeof===p||e.$$typeof===y||e.$$typeof===Z||e.$$typeof===b||e.$$typeof===g)},t.typeOf=w},9864:function(e,t,n){"use strict";e.exports=n(9921)},5382:function(e,t,n){"use strict";n.d(t,{Z:function(){return g}});var r=n(7462),o=n(1721),i=n(9115),a=n(7601),c=n(6010),u=n(7294),s=n(2063),l=n(8935),f=n(2519),p=n(7534),d=n(2248);function v(e){var t=e.children,n=e.className,o=e.content,i=e.size,a=(0,c.Z)(i,"icons",n),s=(0,l.Z)(v,e),p=(0,f.Z)(v,e);return u.createElement(p,(0,r.Z)({},s,{className:a}),d.kK(t)?o:t)}v.handledProps=["as","children","className","content","size"],v.propTypes={},v.defaultProps={as:"i"};var h=v,m=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),o=0;o=C(t,n)&&e1?i-1:0),c=1;c1?c-1:0),s=1;s1?i-1:0),c=1;c1?a-1:0),u=1;u1?a-1:0),u=1;u-1};var c=function(e,t,n){for(var r=-1,o=null==e?0:e.length;++r=d){var m=t?null:p(e);if(m)return(0,f.Z)(m);l=!1,i=u.Z,h=new o.Z}else h=t?[]:v;e:for(;++r-1:!!u&&(0,r.Z)(e,t,n)>-1};var v=function(e,t){for(var n=-1,r=null==e?0:e.length;++n-1};var l=function(e,t){var n=this.__data__,r=i(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this};function f(e){var t=-1,n=null==e?0:e.length;for(this.clear();++tc))return!1;var s=i.get(e),l=i.get(t);if(s&&l)return s==t&&l==e;var f=-1,p=!0,d=n&y?new v.Z:void 0;for(i.set(e,t),i.set(t,e);++f-1&&e%1==0&&eo?0:o+t),(n=n>o?o:n)<0&&(n+=o),o=t>n?0:n-t>>>0,t>>>=0;for(var i=Array(o);++r0){if(++t>=g)return arguments[0]}else t=0;return e.apply(void 0,arguments)}},w=b(m);var k=function(e,t){return w(d(e,t,f.Z),e+"")}(l)},4732:function(e,t,n){"use strict";n.d(t,{Z:function(){return f}});var r=n(3243),o=n(8533),i="[object Arguments]";var a=function(e){return(0,o.Z)(e)&&(0,r.Z)(e)==i},c=Object.prototype,u=c.hasOwnProperty,s=c.propertyIsEnumerable,l=a(function(){return arguments}())?a:function(e){return(0,o.Z)(e)&&u.call(e,"callee")&&!s.call(e,"callee")},f=l},9475:function(e,t){"use strict";var n=Array.isArray;t.Z=n},585:function(e,t,n){"use strict";var r=n(3234),o=n(1656);t.Z=function(e){return null!=e&&(0,o.Z)(e.length)&&!(0,r.Z)(e)}},6706:function(e,t,n){"use strict";n.d(t,{Z:function(){return u}});var r=n(6092);var o=function(){return!1},i="object"==typeof exports&&exports&&!exports.nodeType&&exports,a=i&&"object"==typeof module&&module&&!module.nodeType&&module,c=a&&a.exports===i?r.Z.Buffer:void 0,u=(c?c.isBuffer:void 0)||o},3234:function(e,t,n){"use strict";var r=n(3243),o=n(7226),i="[object AsyncFunction]",a="[object Function]",c="[object GeneratorFunction]",u="[object Proxy]";t.Z=function(e){if(!(0,o.Z)(e))return!1;var t=(0,r.Z)(e);return t==a||t==c||t==i||t==u}},1656:function(e,t){"use strict";var n=9007199254740991;t.Z=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=n}},7601:function(e,t){"use strict";t.Z=function(e){return null==e}},7226:function(e,t){"use strict";t.Z=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},8533:function(e,t){"use strict";t.Z=function(e){return null!=e&&"object"==typeof e}},3736:function(e,t,n){"use strict";n.d(t,{Z:function(){return p}});var r=n(3243),o=(0,n(1851).Z)(Object.getPrototypeOf,Object),i=n(8533),a="[object Object]",c=Function.prototype,u=Object.prototype,s=c.toString,l=u.hasOwnProperty,f=s.call(Object);var p=function(e){if(!(0,i.Z)(e)||(0,r.Z)(e)!=a)return!1;var t=o(e);if(null===t)return!0;var n=l.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&s.call(n)==f}},6378:function(e,t,n){"use strict";var r=n(3243),o=n(9475),i=n(8533),a="[object String]";t.Z=function(e){return"string"==typeof e||!(0,o.Z)(e)&&(0,i.Z)(e)&&(0,r.Z)(e)==a}},2714:function(e,t,n){"use strict";var r=n(3243),o=n(8533),i="[object Symbol]";t.Z=function(e){return"symbol"==typeof e||(0,o.Z)(e)&&(0,r.Z)(e)==i}},9720:function(e,t,n){"use strict";n.d(t,{Z:function(){return h}});var r=n(3243),o=n(1656),i=n(8533),a={};a["[object Float32Array]"]=a["[object Float64Array]"]=a["[object Int8Array]"]=a["[object Int16Array]"]=a["[object Int32Array]"]=a["[object Uint8Array]"]=a["[object Uint8ClampedArray]"]=a["[object Uint16Array]"]=a["[object Uint32Array]"]=!0,a["[object Arguments]"]=a["[object Array]"]=a["[object ArrayBuffer]"]=a["[object Boolean]"]=a["[object DataView]"]=a["[object Date]"]=a["[object Error]"]=a["[object Function]"]=a["[object Map]"]=a["[object Number]"]=a["[object Object]"]=a["[object RegExp]"]=a["[object Set]"]=a["[object String]"]=a["[object WeakMap]"]=!1;var c=function(e){return(0,i.Z)(e)&&(0,o.Z)(e.length)&&!!a[(0,r.Z)(e)]};var u=function(e){return function(t){return e(t)}},s=n(3413),l="object"==typeof exports&&exports&&!exports.nodeType&&exports,f=l&&"object"==typeof module&&module&&!module.nodeType&&module,p=f&&f.exports===l&&s.Z.process,d=function(){try{var e=f&&f.require&&f.require("util").types;return e||p&&p.binding&&p.binding("util")}catch(t){}}(),v=d&&d.isTypedArray,h=v?u(v):c},9360:function(e,t){"use strict";t.Z=function(e){return void 0===e}},8543:function(e,t,n){"use strict";n.d(t,{Z:function(){return g}});var r=function(e,t){for(var n=-1,r=Array(e);++n-1?c[s?e[l]:l]:void 0}}},7445:function(t,e,r){var n=r(98),i=r(6612),o=r(8601);t.exports=function(t){return function(e,r,a){return a&&"number"!=typeof a&&i(e,r,a)&&(r=a=void 0),e=o(e),void 0===r?(r=e,e=0):r=o(r),a=void 0===a?e=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function k(){return k=Object.assign?Object.assign.bind():function(t){for(var e=1;e0&&Math.abs(b)0&&Math.abs(v)=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function h(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function p(t){for(var e=1;e=2?(0,P.uY)(b[1].coordinate-b[0].coordinate):1;if(1===_?(r="width"===m?p:d,n="width"===m?p+y:d+v):(r="width"===m?p+y:d+v,n="width"===m?p:d),e){var w=i[x-1],O=s()(o)?o(w.value,x-1):w.value,S=(0,E.xE)(O,{fontSize:f,letterSpacing:h})[m]+g,j=_*(w.coordinate+_*S/2-n);b[x-1]=w=M(M({},w),{},{tickCoord:j>0?w.coordinate-j*_:w.coordinate}),_*(w.tickCoord-_*S/2-r)>=0&&_*(w.tickCoord+_*S/2-n)<=0&&(n=w.tickCoord-_*(S/2+l),b[x-1]=M(M({},w),{},{isShow:!0}))}for(var k=e?x-1:x,A=0;A=0&&_*(T.tickCoord+_*C/2-n)<=0&&(r=T.tickCoord+_*(C/2+l),b[A]=M(M({},T),{},{isShow:!0}))}return b}function N(t,e,r){var n=t.tick,i=t.ticks,o=t.viewBox,a=t.minTickGap,c=t.orientation,l=t.interval,u=t.tickFormatter,f=t.unit;if(!i||!i.length||!n)return[];if((0,P.hj)(l)||k.x.isSsr)return function(t,e){return A(t,e+1)}(i,"number"==typeof l&&(0,P.hj)(l)?l:0);var h=[];return"equidistantPreserveStart"===l?function(t){for(var e=1,r=A(t,e,(function(t){return t.isShow}));e<=t.length;){if(void 0!==r)return r;r=A(t,++e,(function(t){return t.isShow}))}return t.slice(0,1)}(h=R({ticks:i,tickFormatter:u,viewBox:o,orientation:c,minTickGap:a,unit:f,fontSize:e,letterSpacing:r})):(h="preserveStart"===l||"preserveStartEnd"===l?R({ticks:i,tickFormatter:u,viewBox:o,orientation:c,minTickGap:a,unit:f,fontSize:e,letterSpacing:r},"preserveStartEnd"===l):function(t){var e,r,n=t.ticks,i=t.tickFormatter,o=t.viewBox,a=t.orientation,c=t.minTickGap,l=t.unit,u=t.fontSize,f=t.letterSpacing,h=o.x,p=o.y,d=o.width,y=o.height,v="top"===a||"bottom"===a?"width":"height",m=l&&"width"===v?(0,E.xE)(l,{fontSize:u,letterSpacing:f})[v]:0,b=(n||[]).slice(),g=b.length,x=g>=2?(0,P.uY)(b[1].coordinate-b[0].coordinate):1;1===x?(e="width"===v?h:p,r="width"===v?h+d:p+y):(e="width"===v?h+d:p+y,r="width"===v?h:p);for(var _=g-1;_>=0;_--){var w=b[_],O=s()(i)?i(w.value,g-_-1):w.value,S=(0,E.xE)(O,{fontSize:u,letterSpacing:f})[v]+m;if(_===g-1){var j=x*(w.coordinate+x*S/2-r);b[_]=w=M(M({},w),{},{tickCoord:j>0?w.coordinate-j*x:w.coordinate})}else b[_]=w=M(M({},w),{},{tickCoord:w.coordinate});x*(w.tickCoord-x*S/2-e)>=0&&x*(w.tickCoord+x*S/2-r)<=0&&(r=w.tickCoord-x*(S/2+c),b[_]=M(M({},w),{},{isShow:!0}))}return b}({ticks:i,tickFormatter:u,viewBox:o,orientation:c,minTickGap:a,unit:f,fontSize:e,letterSpacing:r}),h.filter((function(t){return t.isShow})))}var D=r(514),L=r(8710),B=r(9307),z=r(8312),V=r(5469),F=r(2017);function G(t){return G="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},G(t)}function X(){return X=Object.assign?Object.assign.bind():function(t){for(var e=1;e180),",").concat(+(o>c),",\n ").concat(l.x,",").concat(l.y,"\n ");if(n>0){var f=(0,Q.op)(e,r,n,o),h=(0,Q.op)(e,r,n,c);u+="L ".concat(h.x,",").concat(h.y,"\n A ").concat(n,",").concat(n,",0,\n ").concat(+(Math.abs(a)>180),",").concat(+(o<=c),",\n ").concat(f.x,",").concat(f.y," Z")}else u+="L ".concat(e,",").concat(r," Z");return u},lt=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&nt(t,e)}(o,t);var e,r,n,i=it(o);function o(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,o),i.apply(this,arguments)}return e=o,(r=[{key:"render",value:function(){var t=this.props,e=t.cx,r=t.cy,n=t.innerRadius,i=t.outerRadius,o=t.cornerRadius,a=t.forceCornerRadius,c=t.cornerIsExternal,s=t.startAngle,l=t.endAngle,u=t.className;if(i0&&Math.abs(s-l)<360?function(t){var e=t.cx,r=t.cy,n=t.innerRadius,i=t.outerRadius,o=t.cornerRadius,a=t.forceCornerRadius,c=t.cornerIsExternal,s=t.startAngle,l=t.endAngle,u=(0,P.uY)(l-s),f=ct({cx:e,cy:r,radius:i,angle:s,sign:u,cornerRadius:o,cornerIsExternal:c}),h=f.circleTangency,p=f.lineTangency,d=f.theta,y=ct({cx:e,cy:r,radius:i,angle:l,sign:-u,cornerRadius:o,cornerIsExternal:c}),v=y.circleTangency,m=y.lineTangency,b=y.theta,g=c?Math.abs(s-l):Math.abs(s-l)-d-b;if(g<0)return a?"M ".concat(p.x,",").concat(p.y,"\n a").concat(o,",").concat(o,",0,0,1,").concat(2*o,",0\n a").concat(o,",").concat(o,",0,0,1,").concat(2*-o,",0\n "):st({cx:e,cy:r,innerRadius:n,outerRadius:i,startAngle:s,endAngle:l});var x="M ".concat(p.x,",").concat(p.y,"\n A").concat(o,",").concat(o,",0,0,").concat(+(u<0),",").concat(h.x,",").concat(h.y,"\n A").concat(i,",").concat(i,",0,").concat(+(g>180),",").concat(+(u<0),",").concat(v.x,",").concat(v.y,"\n A").concat(o,",").concat(o,",0,0,").concat(+(u<0),",").concat(m.x,",").concat(m.y,"\n ");if(n>0){var _=ct({cx:e,cy:r,radius:n,angle:s,sign:u,isExternal:!0,cornerRadius:o,cornerIsExternal:c}),w=_.circleTangency,O=_.lineTangency,S=_.theta,j=ct({cx:e,cy:r,radius:n,angle:l,sign:-u,isExternal:!0,cornerRadius:o,cornerIsExternal:c}),E=j.circleTangency,k=j.lineTangency,A=j.theta,T=c?Math.abs(s-l):Math.abs(s-l)-S-A;if(T<0&&0===o)return"".concat(x,"L").concat(e,",").concat(r,"Z");x+="L".concat(k.x,",").concat(k.y,"\n A").concat(o,",").concat(o,",0,0,").concat(+(u<0),",").concat(E.x,",").concat(E.y,"\n A").concat(n,",").concat(n,",0,").concat(+(T>180),",").concat(+(u>0),",").concat(w.x,",").concat(w.y,"\n A").concat(o,",").concat(o,",0,0,").concat(+(u<0),",").concat(O.x,",").concat(O.y,"Z")}else x+="L".concat(e,",").concat(r,"Z");return x}({cx:e,cy:r,innerRadius:n,outerRadius:i,cornerRadius:Math.min(d,p/2),forceCornerRadius:a,cornerIsExternal:c,startAngle:s,endAngle:l}):st({cx:e,cy:r,innerRadius:n,outerRadius:i,startAngle:s,endAngle:l}),O.createElement("path",et({},(0,F.L6)(this.props,!0),{className:h,d:f,role:"img"}))}}])&&rt(e.prototype,r),n&&rt(e,n),Object.defineProperty(e,"prototype",{writable:!1}),o}(O.PureComponent);!function(t,e,r){(e=at(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r}(lt,"defaultProps",{cx:0,cy:0,innerRadius:0,outerRadius:0,startAngle:0,endAngle:0,cornerRadius:0,forceCornerRadius:!1,cornerIsExternal:!1});var ut=r(3061),ft=r(3481),ht=r(791),pt=r(8169),dt=r(5048),yt=r(9896),vt=["viewBox"],mt=["viewBox"],bt=["ticks"];function gt(t){return gt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},gt(t)}function xt(){return xt=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function St(t,e){for(var r=0;r0?o(this.props):o(u)),n<=0||i<=0||!f||!f.length?null:O.createElement(L.m,{className:j()("recharts-cartesian-axis",a),ref:function(e){t.layerReference=e}},r&&this.renderAxisLine(),this.renderTicks(f,this.state.fontSize,this.state.letterSpacing),dt._.renderCallByParent(this.props))}}])&&St(e.prototype,r),n&&St(e,n),Object.defineProperty(e,"prototype",{writable:!1}),o}(O.Component);kt(Tt,"displayName","CartesianAxis"),kt(Tt,"defaultProps",{x:0,y:0,width:0,height:0,viewBox:{x:0,y:0,width:0,height:0},orientation:"bottom",ticks:[],stroke:"#666",tickLine:!0,axisLine:!0,tick:!0,mirror:!1,minTickGap:5,tickSize:6,tickMargin:2,interval:"preserveEnd"});var It=r(996),Mt=r(6822);function Ct(t){return Ct="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ct(t)}function Rt(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Nt(t){for(var e=1;e0&&e.handleDrag(t.changedTouches[0])})),Ht($t(e),"handleDragEnd",(function(){e.setState({isTravellerMoving:!1,isSlideMoving:!1}),e.detachDragEndListener()})),Ht($t(e),"handleLeaveWrapper",(function(){(e.state.isTravellerMoving||e.state.isSlideMoving)&&(e.leaveTimer=window.setTimeout(e.handleDragEnd,e.props.leaveTimeOut))})),Ht($t(e),"handleEnterSlideOrTraveller",(function(){e.setState({isTextActive:!0})})),Ht($t(e),"handleLeaveSlideOrTraveller",(function(){e.setState({isTextActive:!1})})),Ht($t(e),"handleSlideDragStart",(function(t){var r=Ut(t)?t.changedTouches[0]:t;e.setState({isTravellerMoving:!1,isSlideMoving:!0,slideMoveStartX:r.pageX}),e.attachDragEndListener()})),e.travellerDragStartHandlers={startX:e.handleTravellerDragStart.bind($t(e),"startX"),endX:e.handleTravellerDragStart.bind($t(e),"endX")},e.state={},e}return e=o,r=[{key:"componentWillUnmount",value:function(){this.leaveTimer&&(clearTimeout(this.leaveTimer),this.leaveTimer=null),this.detachDragEndListener()}},{key:"getIndex",value:function(t){var e=t.startX,r=t.endX,n=this.state.scaleValues,i=this.props,a=i.gap,c=i.data.length-1,s=Math.min(e,r),l=Math.max(e,r),u=o.getIndexInRange(n,s),f=o.getIndexInRange(n,l);return{startIndex:u-u%a,endIndex:f===c?c:f-f%a}}},{key:"getTextOfTick",value:function(t){var e=this.props,r=e.data,n=e.tickFormatter,i=e.dataKey,o=(0,Mt.F$)(r[t],i,t);return s()(n)?n(o,t):o}},{key:"attachDragEndListener",value:function(){window.addEventListener("mouseup",this.handleDragEnd,!0),window.addEventListener("touchend",this.handleDragEnd,!0),window.addEventListener("mousemove",this.handleDrag,!0)}},{key:"detachDragEndListener",value:function(){window.removeEventListener("mouseup",this.handleDragEnd,!0),window.removeEventListener("touchend",this.handleDragEnd,!0),window.removeEventListener("mousemove",this.handleDrag,!0)}},{key:"handleSlideDrag",value:function(t){var e=this.state,r=e.slideMoveStartX,n=e.startX,i=e.endX,o=this.props,a=o.x,c=o.width,s=o.travellerWidth,l=o.startIndex,u=o.endIndex,f=o.onChange,h=t.pageX-r;h>0?h=Math.min(h,a+c-s-i,a+c-s-n):h<0&&(h=Math.max(h,a-n,a-i));var p=this.getIndex({startX:n+h,endX:i+h});p.startIndex===l&&p.endIndex===u||!f||f(p),this.setState({startX:n+h,endX:i+h,slideMoveStartX:t.pageX})}},{key:"handleTravellerDragStart",value:function(t,e){var r=Ut(e)?e.changedTouches[0]:e;this.setState({isSlideMoving:!1,isTravellerMoving:!0,movingTravellerId:t,brushMoveStartX:r.pageX}),this.attachDragEndListener()}},{key:"handleTravellerMove",value:function(t){var e,r=this.state,n=r.brushMoveStartX,i=r.movingTravellerId,o=r.endX,a=r.startX,c=this.state[i],s=this.props,l=s.x,u=s.width,f=s.travellerWidth,h=s.onChange,p=s.gap,d=s.data,y={startX:this.state.startX,endX:this.state.endX},v=t.pageX-n;v>0?v=Math.min(v,l+u-f-c):v<0&&(v=Math.max(v,l-c)),y[i]=c+v;var m=this.getIndex(y),b=m.startIndex,g=m.endIndex;this.setState((Ht(e={},i,c+v),Ht(e,"brushMoveStartX",t.pageX),e),(function(){var t;h&&(t=d.length-1,("startX"===i&&(o>a?b%p==0:g%p==0)||oa?g%p==0:b%p==0)||o>a&&g===t)&&h(m))}))}},{key:"renderBackground",value:function(){var t=this.props,e=t.x,r=t.y,n=t.width,i=t.height,o=t.fill,a=t.stroke;return O.createElement("rect",{stroke:a,fill:o,x:e,y:r,width:n,height:i})}},{key:"renderPanorama",value:function(){var t=this.props,e=t.x,r=t.y,n=t.width,i=t.height,o=t.data,a=t.children,c=t.padding,s=O.Children.only(a);return s?O.cloneElement(s,{x:e,y:r,width:n,height:i,margin:c,compact:!0,data:o}):null}},{key:"renderTravellerLayer",value:function(t,e){var r=this.props,n=r.y,i=r.travellerWidth,a=r.height,c=r.traveller,s=Math.max(t,this.props.x),l=Ft(Ft({},(0,F.L6)(this.props)),{},{x:s,y:n,width:i,height:a});return O.createElement(L.m,{className:"recharts-brush-traveller",onMouseEnter:this.handleEnterSlideOrTraveller,onMouseLeave:this.handleLeaveSlideOrTraveller,onMouseDown:this.travellerDragStartHandlers[e],onTouchStart:this.travellerDragStartHandlers[e],style:{cursor:"col-resize"}},o.renderTraveller(c,l))}},{key:"renderSlide",value:function(t,e){var r=this.props,n=r.y,i=r.height,o=r.stroke,a=r.travellerWidth,c=Math.min(t,e)+a,s=Math.max(Math.abs(e-t)-a,0);return O.createElement("rect",{className:"recharts-brush-slide",onMouseEnter:this.handleEnterSlideOrTraveller,onMouseLeave:this.handleLeaveSlideOrTraveller,onMouseDown:this.handleSlideDragStart,onTouchStart:this.handleSlideDragStart,style:{cursor:"move"},stroke:"none",fill:o,fillOpacity:.2,x:c,y:n,width:s,height:i})}},{key:"renderText",value:function(){var t=this.props,e=t.startIndex,r=t.endIndex,n=t.y,i=t.height,o=t.travellerWidth,a=t.stroke,c=this.state,s=c.startX,l=c.endX,u={pointerEvents:"none",fill:a};return O.createElement(L.m,{className:"recharts-brush-texts"},O.createElement(pt.x,zt({textAnchor:"end",verticalAnchor:"middle",x:Math.min(s,l)-5,y:n+i/2},u),this.getTextOfTick(e)),O.createElement(pt.x,zt({textAnchor:"start",verticalAnchor:"middle",x:Math.max(s,l)+o+5,y:n+i/2},u),this.getTextOfTick(r)))}},{key:"render",value:function(){var t=this.props,e=t.data,r=t.className,n=t.children,i=t.x,o=t.y,a=t.width,c=t.height,s=t.alwaysShowText,l=this.state,u=l.startX,f=l.endX,h=l.isTextActive,p=l.isSlideMoving,d=l.isTravellerMoving;if(!e||!e.length||!(0,P.hj)(i)||!(0,P.hj)(o)||!(0,P.hj)(a)||!(0,P.hj)(c)||a<=0||c<=0)return null;var y=j()("recharts-brush",r),v=1===O.Children.count(n),m=function(t,e){if(!t)return null;var r=t.replace(/(\w)/,(function(t){return t.toUpperCase()})),n=Lt.reduce((function(t,n){return Nt(Nt({},t),{},Dt({},n+r,e))}),{});return n[t]=e,n}("userSelect","none");return O.createElement(L.m,{className:y,onMouseLeave:this.handleLeaveWrapper,onTouchMove:this.handleTouchMove,style:m},this.renderBackground(),v&&this.renderPanorama(),this.renderSlide(u,f),this.renderTravellerLayer(u,"startX"),this.renderTravellerLayer(f,"endX"),(h||p||d||s)&&this.renderText())}}],n=[{key:"renderDefaultTraveller",value:function(t){var e=t.x,r=t.y,n=t.width,i=t.height,o=t.stroke,a=Math.floor(r+i/2)-1;return O.createElement(O.Fragment,null,O.createElement("rect",{x:e,y:r,width:n,height:i,fill:o,stroke:"none"}),O.createElement("line",{x1:e+1,y1:a,x2:e+n-1,y2:a,fill:"none",stroke:"#fff"}),O.createElement("line",{x1:e+1,y1:a+2,x2:e+n-1,y2:a+2,fill:"none",stroke:"#fff"}))}},{key:"renderTraveller",value:function(t,e){return O.isValidElement(t)?O.cloneElement(t,e):s()(t)?t(e):o.renderDefaultTraveller(e)}},{key:"getDerivedStateFromProps",value:function(t,e){var r=t.data,n=t.width,i=t.x,o=t.travellerWidth,a=t.updateId,c=t.startIndex,s=t.endIndex;if(r!==e.prevData||a!==e.prevUpdateId)return Ft({prevData:r,prevTravellerWidth:o,prevUpdateId:a,prevX:i,prevWidth:n},r&&r.length?function(t){var e=t.data,r=t.startIndex,n=t.endIndex,i=t.x,o=t.width,a=t.travellerWidth;if(!e||!e.length)return{};var c=e.length,s=(0,It.x)().domain(v()(0,c)).range([i,i+o-a]),l=s.domain().map((function(t){return s(t)}));return{isTextActive:!1,isSlideMoving:!1,isTravellerMoving:!1,startX:s(r),endX:s(n),scale:s,scaleValues:l}}({data:r,width:n,x:i,travellerWidth:o,startIndex:c,endIndex:s}):{scale:null,scaleValues:null});if(e.scale&&(n!==e.prevWidth||i!==e.prevX||o!==e.prevTravellerWidth)){e.scale.range([i,i+n-o]);var l=e.scale.domain().map((function(t){return e.scale(t)}));return{prevData:r,prevTravellerWidth:o,prevUpdateId:a,prevX:i,prevWidth:n,startX:e.scale(t.startIndex),endX:e.scale(t.endIndex),scaleValues:l}}return null}},{key:"getIndexInRange",value:function(t,e){for(var r=0,n=t.length-1;n-r>1;){var i=Math.floor((r+n)/2);t[i]>e?n=i:r=i}return e>=t[n]?n:r}}],r&&Gt(e.prototype,r),n&&Gt(e,n),Object.defineProperty(e,"prototype",{writable:!1}),o}(O.PureComponent);Ht(Zt,"displayName","Brush"),Ht(Zt,"defaultProps",{height:40,travellerWidth:5,gap:1,fill:"#fff",stroke:"#666",padding:{top:1,right:1,bottom:1,left:1},leaveTimeOut:1e3,alwaysShowText:!1});var qt=function(t,e){var r=t.alwaysShow,n=t.ifOverflow;return r&&(n="extendDomain"),n===e},Jt=r(7187),Qt=r(6213);function te(t){return te="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},te(t)}function ee(){return ee=Object.assign?Object.assign.bind():function(t){for(var e=1;et.length)&&(e=t.length);for(var r=0,n=new Array(e);rt.length)&&(e=t.length);for(var r=0,n=new Array(e);r=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function Be(t,e){for(var r=0;rt.length)&&(e=t.length);for(var r=0,n=new Array(e);r0?a:r&&r.props&&r.props.data&&r.props.data.length>0?r.props.data:t&&t.length&&(0,P.hj)(i)&&(0,P.hj)(o)?t.slice(i,o+1):[]};function rr(t){return"number"===t?[0,"auto"]:void 0}var nr=function(t,e,r,n){var i=t.graphicalItems,o=t.tooltipAxis,a=er(e,t);return r<0||!i||!i.length||r>=a.length?null:i.reduce((function(t,e){if(e.props.hide)return t;var i,c=e.props.data;if(o.dataKey&&!o.allowDuplicatedCategory){var s=void 0===c?a:c;i=(0,P.Ap)(s,o.dataKey,n)}else i=c&&c[r]||a[r];return i?[].concat(Xe(t),[(0,Mt.Qo)(e,i)]):t}),[])},ir=function(t,e,r,n){var i=n||{x:t.chartX,y:t.chartY},o=function(t,e){return"horizontal"===e?t.x:"vertical"===e?t.y:"centric"===e?t.angle:t.radius}(i,r),a=t.orderedTooltipTicks,c=t.tooltipAxis,s=t.tooltipTicks,l=(0,Mt.VO)(o,a,s,c);if(l>=0&&s){var u=s[l]&&s[l].value,f=nr(t,e,l,u),h=function(t,e,r,n){var i=e.find((function(t){return t&&t.index===r}));if(i){if("horizontal"===t)return{x:i.coordinate,y:n.y};if("vertical"===t)return{x:n.x,y:i.coordinate};if("centric"===t){var o=i.coordinate,a=n.radius;return He(He(He({},n),(0,Q.op)(n.cx,n.cy,a,o)),{},{angle:o,radius:a})}var c=i.coordinate,s=n.angle;return He(He(He({},n),(0,Q.op)(n.cx,n.cy,c,s)),{},{angle:s,radius:c})}return qe}(r,a,l,i);return{activeTooltipIndex:l,activeLabel:u,activePayload:f,activeCoordinate:h}}return null},or=function(t,e){var r=e.axes,n=e.graphicalItems,i=e.axisType,o=e.axisIdKey,a=e.stackGroups,c=e.dataStartIndex,s=e.dataEndIndex,l=t.layout,u=t.children,f=t.stackOffset,h=(0,Mt.NA)(l,i);return r.reduce((function(e,r){var p,d=r.props,y=d.type,m=d.dataKey,g=d.allowDataOverflow,x=d.allowDuplicatedCategory,_=d.scale,w=d.ticks,O=d.includeHidden,S=r.props[o];if(e[S])return e;var j,E,k,A=er(t.data,{graphicalItems:n.filter((function(t){return t.props[o]===S})),dataStartIndex:c,dataEndIndex:s}),T=A.length;(function(t,e,r){if("number"===r&&!0===e&&Array.isArray(t)){var n=null==t?void 0:t[0],i=null==t?void 0:t[1];if(n&&i&&(0,P.hj)(n)&&(0,P.hj)(i))return!0}return!1})(r.props.domain,g,y)&&(j=(0,Mt.LG)(r.props.domain,null,g),!h||"number"!==y&&"auto"===_||(k=(0,Mt.gF)(A,m,"category")));var I=rr(y);if(!j||0===j.length){var M,C=null!==(M=r.props.domain)&&void 0!==M?M:I;if(m){if(j=(0,Mt.gF)(A,m,y),"category"===y&&h){var R=(0,P.bv)(j);x&&R?(E=j,j=v()(0,T)):x||(j=(0,Mt.ko)(C,j,r).reduce((function(t,e){return t.indexOf(e)>=0?t:[].concat(Xe(t),[e])}),[]))}else if("category"===y)j=x?j.filter((function(t){return""!==t&&!b()(t)})):(0,Mt.ko)(C,j,r).reduce((function(t,e){return t.indexOf(e)>=0||""===e||b()(e)?t:[].concat(Xe(t),[e])}),[]);else if("number"===y){var N=(0,Mt.ZI)(A,n.filter((function(t){return t.props[o]===S&&(O||!t.props.hide)})),m,i,l);N&&(j=N)}!h||"number"!==y&&"auto"===_||(k=(0,Mt.gF)(A,m,"category"))}else j=h?v()(0,T):a&&a[S]&&a[S].hasStack&&"number"===y?"expand"===f?[0,1]:(0,Mt.EB)(a[S].stackGroups,c,s):(0,Mt.s6)(A,n.filter((function(t){return t.props[o]===S&&(O||!t.props.hide)})),y,l,!0);if("number"===y)j=ke(u,j,S,i,w),C&&(j=(0,Mt.LG)(C,j,g));else if("category"===y&&C){var D=C;j.every((function(t){return D.indexOf(t)>=0}))&&(j=D)}}return He(He({},e),{},Ke({},S,He(He({},r.props),{},{axisType:i,domain:j,categoricalDomain:k,duplicateDomain:E,originalDomain:null!==(p=r.props.domain)&&void 0!==p?p:I,isCategorical:h,layout:l})))}),{})},ar=function(t,e){var r=e.axisType,n=void 0===r?"xAxis":r,i=e.AxisComp,o=e.graphicalItems,a=e.stackGroups,c=e.dataStartIndex,s=e.dataEndIndex,l=t.children,u="".concat(n,"Id"),f=(0,F.NN)(l,i),h={};return f&&f.length?h=or(t,{axes:f,graphicalItems:o,axisType:n,axisIdKey:u,stackGroups:a,dataStartIndex:c,dataEndIndex:s}):o&&o.length&&(h=function(t,e){var r=e.graphicalItems,n=e.Axis,i=e.axisType,o=e.axisIdKey,a=e.stackGroups,c=e.dataStartIndex,s=e.dataEndIndex,l=t.layout,u=t.children,f=er(t.data,{graphicalItems:r,dataStartIndex:c,dataEndIndex:s}),h=f.length,p=(0,Mt.NA)(l,i),y=-1;return r.reduce((function(t,e){var m,b=e.props[o],g=rr("number");return t[b]?t:(y++,p?m=v()(0,h):a&&a[b]&&a[b].hasStack?(m=(0,Mt.EB)(a[b].stackGroups,c,s),m=ke(u,m,b,i)):(m=(0,Mt.LG)(g,(0,Mt.s6)(f,r.filter((function(t){return t.props[o]===b&&!t.props.hide})),"number",l),n.defaultProps.allowDataOverflow),m=ke(u,m,b,i)),He(He({},t),{},Ke({},b,He(He({axisType:i},n.defaultProps),{},{hide:!0,orientation:d()(Ze,"".concat(i,".").concat(y%2),null),domain:m,originalDomain:g,isCategorical:p,layout:l}))))}),{})}(t,{Axis:i,graphicalItems:o,axisType:n,axisIdKey:u,stackGroups:a,dataStartIndex:c,dataEndIndex:s})),h},cr=function(t){var e,r,n=t.children,i=t.defaultShowTooltip,o=(0,F.sP)(n,Zt);return{chartX:0,chartY:0,dataStartIndex:o&&o.props&&o.props.startIndex||0,dataEndIndex:void 0!==(null==o||null===(e=o.props)||void 0===e?void 0:e.endIndex)?null==o||null===(r=o.props)||void 0===r?void 0:r.endIndex:t.data&&t.data.length-1||0,activeTooltipIndex:-1,isTooltipActive:!b()(i)&&i}},sr=function(t){return"horizontal"===t?{numericAxisName:"yAxis",cateAxisName:"xAxis"}:"vertical"===t?{numericAxisName:"xAxis",cateAxisName:"yAxis"}:"centric"===t?{numericAxisName:"radiusAxis",cateAxisName:"angleAxis"}:{numericAxisName:"angleAxis",cateAxisName:"radiusAxis"}},lr=function(t){var e,r=t.chartName,n=t.GraphicalChild,o=t.defaultTooltipEventType,c=void 0===o?"axis":o,l=t.validateTooltipEventTypes,f=void 0===l?["axis"]:l,p=t.axisComponents,y=t.legendContent,v=t.formatAxisMap,m=t.defaultProps,g=function(t,e){var r=e.graphicalItems,n=e.stackGroups,i=e.offset,o=e.updateId,a=e.dataStartIndex,c=e.dataEndIndex,s=t.barSize,l=t.layout,u=t.barGap,f=t.barCategoryGap,h=t.maxBarSize,d=sr(l),y=d.numericAxisName,v=d.cateAxisName,m=function(t){return!(!t||!t.length)&&t.some((function(t){var e=(0,F.Gf)(t&&t.type);return e&&e.indexOf("Bar")>=0}))}(r),g=m&&(0,Mt.pt)({barSize:s,stackGroups:n}),x=[];return r.forEach((function(r,s){var d=er(t.data,{dataStartIndex:a,dataEndIndex:c},r),m=r.props,_=m.dataKey,w=m.maxBarSize,O=r.props["".concat(y,"Id")],S=r.props["".concat(v,"Id")],j=p.reduce((function(t,n){var i,o=e["".concat(n.axisType,"Map")],a=r.props["".concat(n.axisType,"Id")],c=o&&o[a];return He(He({},t),{},(Ke(i={},n.axisType,c),Ke(i,"".concat(n.axisType,"Ticks"),(0,Mt.uY)(c)),i))}),{}),P=j[v],E=j["".concat(v,"Ticks")],k=n&&n[O]&&n[O].hasStack&&(0,Mt.O3)(r,n[O].stackGroups),A=(0,F.Gf)(r.type).indexOf("Bar")>=0,T=(0,Mt.zT)(P,E),I=[];if(A){var M,C,R=b()(w)?h:w,N=null!==(M=null!==(C=(0,Mt.zT)(P,E,!0))&&void 0!==C?C:R)&&void 0!==M?M:0;I=(0,Mt.qz)({barGap:u,barCategoryGap:f,bandSize:N!==T?N:T,sizeList:g[S],maxBarSize:R}),N!==T&&(I=I.map((function(t){return He(He({},t),{},{position:He(He({},t.position),{},{offset:t.position.offset-N/2})})})))}var D,L=r&&r.type&&r.type.getComposedData;L&&x.push({props:He(He({},L(He(He({},j),{},{displayedData:d,props:t,dataKey:_,item:r,bandSize:T,barPosition:I,offset:i,stackedData:k,layout:l,dataStartIndex:a,dataEndIndex:c}))),{},(D={key:r.key||"item-".concat(s)},Ke(D,y,j[y]),Ke(D,v,j[v]),Ke(D,"animationId",o),D)),childIndex:(0,F.$R)(r,t.children),item:r})})),x},_=function(t,e){var i=t.props,o=t.dataStartIndex,a=t.dataEndIndex,c=t.updateId;if(!(0,F.TT)({props:i}))return null;var s=i.children,l=i.layout,u=i.stackOffset,f=i.data,y=i.reverseStackOrder,m=sr(l),b=m.numericAxisName,x=m.cateAxisName,_=(0,F.NN)(s,n),w=(0,Mt.wh)(f,_,"".concat(b,"Id"),"".concat(x,"Id"),u,y),O=p.reduce((function(t,e){var r="".concat(e.axisType,"Map");return He(He({},t),{},Ke({},r,ar(i,He(He({},e),{},{graphicalItems:_,stackGroups:e.axisType===b&&w,dataStartIndex:o,dataEndIndex:a}))))}),{}),S=function(t,e){var r=t.props,n=t.graphicalItems,i=t.xAxisMap,o=void 0===i?{}:i,a=t.yAxisMap,c=void 0===a?{}:a,s=r.width,l=r.height,u=r.children,f=r.margin||{},h=(0,F.sP)(u,Zt),p=(0,F.sP)(u,z.D),y=Object.keys(c).reduce((function(t,e){var r=c[e],n=r.orientation;return r.mirror||r.hide?t:He(He({},t),{},Ke({},n,t[n]+r.width))}),{left:f.left||0,right:f.right||0}),v=Object.keys(o).reduce((function(t,e){var r=o[e],n=r.orientation;return r.mirror||r.hide?t:He(He({},t),{},Ke({},n,d()(t,"".concat(n))+r.height))}),{top:f.top||0,bottom:f.bottom||0}),m=He(He({},v),y),b=m.bottom;return h&&(m.bottom+=h.props.height||Zt.defaultProps.height),p&&e&&(m=(0,Mt.By)(m,n,r,e)),He(He({brushBottom:b},m),{},{width:s-m.left-m.right,height:l-m.top-m.bottom})}(He(He({},O),{},{props:i,graphicalItems:_}),null==e?void 0:e.legendBBox);Object.keys(O).forEach((function(t){O[t]=v(i,O[t],S,t.replace("Map",""),r)}));var j,E,k,A=O["".concat(x,"Map")],T=(j=A,E=(0,P.Kt)(j),{tooltipTicks:k=(0,Mt.uY)(E,!1,!0),orderedTooltipTicks:h()(k,(function(t){return t.coordinate})),tooltipAxis:E,tooltipAxisBandSize:(0,Mt.zT)(E,k)}),I=g(i,He(He({},O),{},{dataStartIndex:o,dataEndIndex:a,updateId:c,graphicalItems:_,stackGroups:w,offset:S}));return He(He({formattedGraphicalItems:I,graphicalItems:_,offset:S,stackGroups:w},T),O)};return e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ze(t,e)}(h,t);var e,n,o,l=Ve(h);function h(t){var e;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,h),Ke(Fe(e=l.call(this,t)),"clearDeferId",(function(){!b()(e.deferId)&&tr&&tr(e.deferId),e.deferId=null})),Ke(Fe(e),"handleLegendBBoxUpdate",(function(t){if(t){var r=e.state,n=r.dataStartIndex,i=r.dataEndIndex,o=r.updateId;e.setState(He({legendBBox:t},_({props:e.props,dataStartIndex:n,dataEndIndex:i,updateId:o},He(He({},e.state),{},{legendBBox:t}))))}})),Ke(Fe(e),"handleReceiveSyncEvent",(function(t,r,n){e.props.syncId===t&&r!==e.uniqueChartId&&(e.clearDeferId(),e.deferId=Qe&&Qe(e.applySyncEvent.bind(Fe(e),n)))})),Ke(Fe(e),"handleBrushChange",(function(t){var r=t.startIndex,n=t.endIndex;if(r!==e.state.dataStartIndex||n!==e.state.dataEndIndex){var i=e.state.updateId;e.setState((function(){return He({dataStartIndex:r,dataEndIndex:n},_({props:e.props,dataStartIndex:r,dataEndIndex:n,updateId:i},e.state))})),e.triggerSyncEvent({dataStartIndex:r,dataEndIndex:n})}})),Ke(Fe(e),"handleMouseEnter",(function(t){var r=e.props.onMouseEnter,n=e.getMouseInfo(t);if(n){var i=He(He({},n),{},{isTooltipActive:!0});e.setState(i),e.triggerSyncEvent(i),s()(r)&&r(i,t)}})),Ke(Fe(e),"triggeredAfterMouseMove",(function(t){var r=e.props.onMouseMove,n=e.getMouseInfo(t),i=n?He(He({},n),{},{isTooltipActive:!0}):{isTooltipActive:!1};e.setState(i),e.triggerSyncEvent(i),s()(r)&&r(i,t)})),Ke(Fe(e),"handleItemMouseEnter",(function(t){e.setState((function(){return{isTooltipActive:!0,activeItem:t,activePayload:t.tooltipPayload,activeCoordinate:t.tooltipPosition||{x:t.cx,y:t.cy}}}))})),Ke(Fe(e),"handleItemMouseLeave",(function(){e.setState((function(){return{isTooltipActive:!1}}))})),Ke(Fe(e),"handleMouseMove",(function(t){t&&s()(t.persist)&&t.persist(),e.triggeredAfterMouseMove(t)})),Ke(Fe(e),"handleMouseLeave",(function(t){var r=e.props.onMouseLeave,n={isTooltipActive:!1};e.setState(n),e.triggerSyncEvent(n),s()(r)&&r(n,t),e.cancelThrottledTriggerAfterMouseMove()})),Ke(Fe(e),"handleOuterEvent",(function(t){var r=(0,F.Bh)(t),n=d()(e.props,"".concat(r));r&&s()(n)&&n(/.*touch.*/i.test(r)?e.getMouseInfo(t.changedTouches[0]):e.getMouseInfo(t),t)})),Ke(Fe(e),"handleClick",(function(t){var r=e.props.onClick,n=e.getMouseInfo(t);if(n){var i=He(He({},n),{},{isTooltipActive:!0});e.setState(i),e.triggerSyncEvent(i),s()(r)&&r(i,t)}})),Ke(Fe(e),"handleMouseDown",(function(t){var r=e.props.onMouseDown;s()(r)&&r(e.getMouseInfo(t),t)})),Ke(Fe(e),"handleMouseUp",(function(t){var r=e.props.onMouseUp;s()(r)&&r(e.getMouseInfo(t),t)})),Ke(Fe(e),"handleTouchMove",(function(t){null!=t.changedTouches&&t.changedTouches.length>0&&e.handleMouseMove(t.changedTouches[0])})),Ke(Fe(e),"handleTouchStart",(function(t){null!=t.changedTouches&&t.changedTouches.length>0&&e.handleMouseDown(t.changedTouches[0])})),Ke(Fe(e),"handleTouchEnd",(function(t){null!=t.changedTouches&&t.changedTouches.length>0&&e.handleMouseUp(t.changedTouches[0])})),Ke(Fe(e),"verticalCoordinatesGenerator",(function(t){var e=t.xAxis,r=t.width,n=t.height,i=t.offset;return(0,Mt.Rf)(N(He(He(He({},Tt.defaultProps),e),{},{ticks:(0,Mt.uY)(e,!0),viewBox:{x:0,y:0,width:r,height:n}})),i.left,i.left+i.width)})),Ke(Fe(e),"horizontalCoordinatesGenerator",(function(t){var e=t.yAxis,r=t.width,n=t.height,i=t.offset;return(0,Mt.Rf)(N(He(He(He({},Tt.defaultProps),e),{},{ticks:(0,Mt.uY)(e,!0),viewBox:{x:0,y:0,width:r,height:n}})),i.top,i.top+i.height)})),Ke(Fe(e),"axesTicksGenerator",(function(t){return(0,Mt.uY)(t,!0)})),Ke(Fe(e),"renderCursor",(function(t){var n=e.state,i=n.isTooltipActive,o=n.activeCoordinate,a=n.activePayload,c=n.offset,s=n.activeTooltipIndex,l=e.getTooltipEventType();if(!t||!t.props.cursor||!i||!o||"ScatterChart"!==r&&"axis"!==l)return null;var u,f=e.props.layout,h=V.H;if("ScatterChart"===r)u=o,h=J;else if("BarChart"===r)u=e.getCursorRectangle(),h=ft.A;else if("radial"===f){var p=e.getCursorPoints(),d=p.cx,y=p.cy,v=p.radius;u={cx:d,cy:y,startAngle:p.startAngle,endAngle:p.endAngle,innerRadius:v,outerRadius:v},h=lt}else u={points:e.getCursorPoints()},h=V.H;var m=t.key||"_recharts-cursor",b=He(He(He(He({stroke:"#ccc",pointerEvents:"none"},c),u),(0,F.L6)(t.props.cursor)),{},{payload:a,payloadIndex:s,key:m,className:"recharts-tooltip-cursor"});return(0,O.isValidElement)(t.props.cursor)?(0,O.cloneElement)(t.props.cursor,b):(0,O.createElement)(h,b)})),Ke(Fe(e),"renderPolarAxis",(function(t,r,n){var i=d()(t,"type.axisType"),o=d()(e.state,"".concat(i,"Map")),a=o&&o[t.props["".concat(i,"Id")]];return(0,O.cloneElement)(t,He(He({},a),{},{className:i,key:t.key||"".concat(r,"-").concat(n),ticks:(0,Mt.uY)(a,!0)}))})),Ke(Fe(e),"renderXAxis",(function(t,r,n){var i=e.state.xAxisMap[t.props.xAxisId];return e.renderAxis(i,t,r,n)})),Ke(Fe(e),"renderYAxis",(function(t,r,n){var i=e.state.yAxisMap[t.props.yAxisId];return e.renderAxis(i,t,r,n)})),Ke(Fe(e),"renderGrid",(function(t){var r=e.state,n=r.xAxisMap,o=r.yAxisMap,c=r.offset,s=e.props,l=s.width,u=s.height,f=(0,P.Kt)(n),h=a()(o,(function(t){return i()(t.domain,Je)}))||(0,P.Kt)(o),p=t.props||{};return(0,O.cloneElement)(t,{key:t.key||"grid",x:(0,P.hj)(p.x)?p.x:c.left,y:(0,P.hj)(p.y)?p.y:c.top,width:(0,P.hj)(p.width)?p.width:c.width,height:(0,P.hj)(p.height)?p.height:c.height,xAxis:f,yAxis:h,offset:c,chartWidth:l,chartHeight:u,verticalCoordinatesGenerator:p.verticalCoordinatesGenerator||e.verticalCoordinatesGenerator,horizontalCoordinatesGenerator:p.horizontalCoordinatesGenerator||e.horizontalCoordinatesGenerator})})),Ke(Fe(e),"renderPolarGrid",(function(t){var r=t.props,n=r.radialLines,i=r.polarAngles,o=r.polarRadius,a=e.state,c=a.radiusAxisMap,s=a.angleAxisMap,l=(0,P.Kt)(c),u=(0,P.Kt)(s),f=u.cx,h=u.cy,p=u.innerRadius,d=u.outerRadius;return(0,O.cloneElement)(t,{polarAngles:w()(i)?i:(0,Mt.uY)(u,!0).map((function(t){return t.coordinate})),polarRadius:w()(o)?o:(0,Mt.uY)(l,!0).map((function(t){return t.coordinate})),cx:f,cy:h,innerRadius:p,outerRadius:d,key:t.key||"polar-grid",radialLines:n})})),Ke(Fe(e),"renderLegend",(function(){var t=e.state.formattedGraphicalItems,r=e.props,n=r.children,i=r.width,o=r.height,a=e.props.margin||{},c=i-(a.left||0)-(a.right||0),s=(0,Mt.zp)({children:n,formattedGraphicalItems:t,legendWidth:c,legendContent:y});if(!s)return null;var l=s.item,u=Le(s,Me);return(0,O.cloneElement)(l,He(He({},u),{},{chartWidth:i,chartHeight:o,margin:a,ref:function(t){e.legendInstance=t},onBBoxUpdate:e.handleLegendBBoxUpdate}))})),Ke(Fe(e),"renderTooltip",(function(){var t=e.props.children,r=(0,F.sP)(t,B.u);if(!r)return null;var n=e.state,i=n.isTooltipActive,o=n.activeCoordinate,a=n.activePayload,c=n.activeLabel,s=n.offset;return(0,O.cloneElement)(r,{viewBox:He(He({},s),{},{x:s.left,y:s.top}),active:i,label:c,payload:i?a:[],coordinate:o})})),Ke(Fe(e),"renderBrush",(function(t){var r=e.props,n=r.margin,i=r.data,o=e.state,a=o.offset,c=o.dataStartIndex,s=o.dataEndIndex,l=o.updateId;return(0,O.cloneElement)(t,{key:t.key||"_recharts-brush",onChange:(0,Mt.DO)(e.handleBrushChange,null,t.props.onChange),data:i,x:(0,P.hj)(t.props.x)?t.props.x:a.left,y:(0,P.hj)(t.props.y)?t.props.y:a.top+a.height+a.brushBottom-(n.bottom||0),width:(0,P.hj)(t.props.width)?t.props.width:a.width,startIndex:c,endIndex:s,updateId:"brush-".concat(l)})})),Ke(Fe(e),"renderReferenceElement",(function(t,r,n){if(!t)return null;var i=Fe(e).clipPathId,o=e.state,a=o.xAxisMap,c=o.yAxisMap,s=o.offset,l=t.props,u=l.xAxisId,f=l.yAxisId;return(0,O.cloneElement)(t,{key:t.key||"".concat(r,"-").concat(n),xAxis:a[u],yAxis:c[f],viewBox:{x:s.left,y:s.top,width:s.width,height:s.height},clipPathId:i})})),Ke(Fe(e),"renderActivePoints",(function(t){var e=t.item,r=t.activePoint,n=t.basePoint,i=t.childIndex,o=t.isRange,a=[],c=e.props.key,s=e.item.props,l=s.activeDot,u=He(He({index:i,dataKey:s.dataKey,cx:r.x,cy:r.y,r:4,fill:(0,Mt.fk)(e.item),strokeWidth:2,stroke:"#fff",payload:r.payload,value:r.value,key:"".concat(c,"-activePoint-").concat(i)},(0,F.L6)(l)),(0,yt.Ym)(l));return a.push(h.renderActiveDot(l,u)),n?a.push(h.renderActiveDot(l,He(He({},u),{},{cx:n.x,cy:n.y,key:"".concat(c,"-basePoint-").concat(i)}))):o&&a.push(null),a})),Ke(Fe(e),"renderGraphicChild",(function(t,r,n){var i=e.filterFormatItem(t,r,n);if(!i)return null;var o=e.getTooltipEventType(),a=e.state,c=a.isTooltipActive,s=a.tooltipAxis,l=a.activeTooltipIndex,u=a.activeLabel,f=e.props.children,h=(0,F.sP)(f,B.u),p=i.props,d=p.points,y=p.isRange,v=p.baseLine,m=i.item.props,g=m.activeDot,x=!m.hide&&c&&h&&g&&l>=0,_={};"axis"!==o&&h&&"click"===h.props.trigger?_={onClick:(0,Mt.DO)(e.handleItemMouseEnter,null,t.props.onCLick)}:"axis"!==o&&(_={onMouseLeave:(0,Mt.DO)(e.handleItemMouseLeave,null,t.props.onMouseLeave),onMouseEnter:(0,Mt.DO)(e.handleItemMouseEnter,null,t.props.onMouseEnter)});var w=(0,O.cloneElement)(t,He(He({},i.props),_));if(x){var S,j;if(s.dataKey&&!s.allowDuplicatedCategory){var E="function"==typeof s.dataKey?function(t){return"function"==typeof s.dataKey?s.dataKey(t.payload):null}:"payload.".concat(s.dataKey.toString());S=(0,P.Ap)(d,E,u),j=y&&v&&(0,P.Ap)(v,E,u)}else S=d[l],j=y&&v&&v[l];if(!b()(S))return[w].concat(Xe(e.renderActivePoints({item:i,activePoint:S,basePoint:j,childIndex:l,isRange:y})))}return y?[w,null,null]:[w,null]})),Ke(Fe(e),"renderCustomized",(function(t,r,n){return(0,O.cloneElement)(t,He(He({key:"recharts-customized-".concat(n)},e.props),e.state))})),e.uniqueChartId=b()(t.id)?(0,P.EL)("recharts"):t.id,e.clipPathId="".concat(e.uniqueChartId,"-clip"),t.throttleDelay&&(e.triggeredAfterMouseMove=u()(e.triggeredAfterMouseMove,t.throttleDelay)),e.state={},e}return e=h,(n=[{key:"componentDidMount",value:function(){b()(this.props.syncId)||this.addListener()}},{key:"componentDidUpdate",value:function(t){b()(t.syncId)&&!b()(this.props.syncId)&&this.addListener(),!b()(t.syncId)&&b()(this.props.syncId)&&this.removeListener()}},{key:"componentWillUnmount",value:function(){this.clearDeferId(),b()(this.props.syncId)||this.removeListener(),this.cancelThrottledTriggerAfterMouseMove()}},{key:"cancelThrottledTriggerAfterMouseMove",value:function(){"function"==typeof this.triggeredAfterMouseMove.cancel&&this.triggeredAfterMouseMove.cancel()}},{key:"getTooltipEventType",value:function(){var t=(0,F.sP)(this.props.children,B.u);if(t&&x()(t.props.shared)){var e=t.props.shared?"axis":"item";return f.indexOf(e)>=0?e:c}return c}},{key:"getMouseInfo",value:function(t){if(!this.container)return null;var e=(0,E.os)(this.container),r=(0,E.IR)(t,e),n=this.inRange(r.chartX,r.chartY);if(!n)return null;var i=this.state,o=i.xAxisMap,a=i.yAxisMap;if("axis"!==this.getTooltipEventType()&&o&&a){var c=(0,P.Kt)(o).scale,s=(0,P.Kt)(a).scale,l=c&&c.invert?c.invert(r.chartX):null,u=s&&s.invert?s.invert(r.chartY):null;return He(He({},r),{},{xValue:l,yValue:u})}var f=ir(this.state,this.props.data,this.props.layout,n);return f?He(He({},r),f):null}},{key:"getCursorRectangle",value:function(){var t=this.props.layout,e=this.state,r=e.activeCoordinate,n=e.offset,i=e.tooltipAxisBandSize,o=i/2;return{stroke:"none",fill:"#ccc",x:"horizontal"===t?r.x-o:n.left+.5,y:"horizontal"===t?n.top+.5:r.y-o,width:"horizontal"===t?i:n.width-1,height:"horizontal"===t?n.height-1:i}}},{key:"getCursorPoints",value:function(){var t,e,r,n,i=this.props.layout,o=this.state,a=o.activeCoordinate,c=o.offset;if("horizontal"===i)r=t=a.x,e=c.top,n=c.top+c.height;else if("vertical"===i)n=e=a.y,t=c.left,r=c.left+c.width;else if(!b()(a.cx)||!b()(a.cy)){if("centric"!==i){var s=a.cx,l=a.cy,u=a.radius,f=a.startAngle,h=a.endAngle;return{points:[(0,Q.op)(s,l,u,f),(0,Q.op)(s,l,u,h)],cx:s,cy:l,radius:u,startAngle:f,endAngle:h}}var p=a.cx,d=a.cy,y=a.innerRadius,v=a.outerRadius,m=a.angle,g=(0,Q.op)(p,d,y,m),x=(0,Q.op)(p,d,v,m);t=g.x,e=g.y,r=x.x,n=x.y}return[{x:t,y:e},{x:r,y:n}]}},{key:"inRange",value:function(t,e){var r=this.props.layout;if("horizontal"===r||"vertical"===r){var n=this.state.offset;return t>=n.left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height?{x:t,y:e}:null}var i=this.state,o=i.angleAxisMap,a=i.radiusAxisMap;if(o&&a){var c=(0,P.Kt)(o);return(0,Q.z3)({x:t,y:e},c)}return null}},{key:"parseEventsOfWrapper",value:function(){var t=this.props.children,e=this.getTooltipEventType(),r=(0,F.sP)(t,B.u),n={};return r&&"axis"===e&&(n="click"===r.props.trigger?{onClick:this.handleClick}:{onMouseEnter:this.handleMouseEnter,onMouseMove:this.handleMouseMove,onMouseLeave:this.handleMouseLeave,onTouchMove:this.handleTouchMove,onTouchStart:this.handleTouchStart,onTouchEnd:this.handleTouchEnd}),He(He({},(0,yt.Ym)(this.props,this.handleOuterEvent)),n)}},{key:"addListener",value:function(){Te.on(Ie,this.handleReceiveSyncEvent),Te.setMaxListeners&&Te._maxListeners&&Te.setMaxListeners(Te._maxListeners+1)}},{key:"removeListener",value:function(){Te.removeListener(Ie,this.handleReceiveSyncEvent),Te.setMaxListeners&&Te._maxListeners&&Te.setMaxListeners(Te._maxListeners-1)}},{key:"triggerSyncEvent",value:function(t){var e=this.props.syncId;b()(e)||Te.emit(Ie,e,this.uniqueChartId,t)}},{key:"applySyncEvent",value:function(t){var e=this.props,r=e.layout,n=e.syncMethod,i=this.state.updateId,o=t.dataStartIndex,a=t.dataEndIndex;if(b()(t.dataStartIndex)&&b()(t.dataEndIndex))if(b()(t.activeTooltipIndex))this.setState(t);else{var c=t.chartX,s=t.chartY,l=t.activeTooltipIndex,u=this.state,f=u.offset,h=u.tooltipTicks;if(!f)return;if("function"==typeof n)l=n(h,t);else if("value"===n){l=-1;for(var p=0;pt.length)&&(e=t.length);for(var r=0,n=new Array(e);r=0?1:-1;"insideStart"===o?(n=g+j*c,i=_):"insideEnd"===o?(n=x-j*c,i=!_):"end"===o&&(n=x+j*c,i=_),i=S<=0?i:!i;var P=(0,y.op)(p,v,O,n),E=(0,y.op)(p,v,O,n+359*(i?1:-1)),k="M".concat(P.x,",").concat(P.y,"\n A").concat(O,",").concat(O,",0,1,").concat(i?0:1,",\n ").concat(E.x,",").concat(E.y),A=s()(t.id)?(0,d.EL)("recharts-radial-line-"):t.id;return l.createElement("text",w({},r,{dominantBaseline:"central",className:f()("recharts-radial-bar-label",u)}),l.createElement("defs",null,l.createElement("path",{id:A,d:k})),l.createElement("textPath",{xlinkHref:"#".concat(A)},e))},j=function(t){var e=t.viewBox,r=t.offset,n=t.position,i=e,o=i.cx,a=i.cy,c=i.innerRadius,s=i.outerRadius,l=(i.startAngle+i.endAngle)/2;if("outside"===n){var u=(0,y.op)(o,a,s+r,l),f=u.x;return{x:f,y:u.y,textAnchor:f>=o?"start":"end",verticalAnchor:"middle"}}if("center"===n)return{x:o,y:a,textAnchor:"middle",verticalAnchor:"middle"};if("centerTop"===n)return{x:o,y:a,textAnchor:"middle",verticalAnchor:"start"};if("centerBottom"===n)return{x:o,y:a,textAnchor:"middle",verticalAnchor:"end"};var h=(c+s)/2,p=(0,y.op)(o,a,h,l);return{x:p.x,y:p.y,textAnchor:"middle",verticalAnchor:"middle"}},P=function(t){var e=t.viewBox,r=t.parentViewBox,n=t.offset,o=t.position,a=e,c=a.x,s=a.y,l=a.width,u=a.height,f=u>=0?1:-1,h=f*n,p=f>0?"end":"start",y=f>0?"start":"end",v=l>=0?1:-1,m=v*n,b=v>0?"end":"start",g=v>0?"start":"end";if("top"===o)return x(x({},{x:c+l/2,y:s-f*n,textAnchor:"middle",verticalAnchor:p}),r?{height:Math.max(s-r.y,0),width:l}:{});if("bottom"===o)return x(x({},{x:c+l/2,y:s+u+h,textAnchor:"middle",verticalAnchor:y}),r?{height:Math.max(r.y+r.height-(s+u),0),width:l}:{});if("left"===o){var _={x:c-m,y:s+u/2,textAnchor:b,verticalAnchor:"middle"};return x(x({},_),r?{width:Math.max(_.x-r.x,0),height:u}:{})}if("right"===o){var w={x:c+l+m,y:s+u/2,textAnchor:g,verticalAnchor:"middle"};return x(x({},w),r?{width:Math.max(r.x+r.width-w.x,0),height:u}:{})}var O=r?{width:l,height:u}:{};return"insideLeft"===o?x({x:c+m,y:s+u/2,textAnchor:g,verticalAnchor:"middle"},O):"insideRight"===o?x({x:c+l-m,y:s+u/2,textAnchor:b,verticalAnchor:"middle"},O):"insideTop"===o?x({x:c+l/2,y:s+h,textAnchor:"middle",verticalAnchor:y},O):"insideBottom"===o?x({x:c+l/2,y:s+u-h,textAnchor:"middle",verticalAnchor:p},O):"insideTopLeft"===o?x({x:c+m,y:s+h,textAnchor:g,verticalAnchor:y},O):"insideTopRight"===o?x({x:c+l-m,y:s+h,textAnchor:b,verticalAnchor:y},O):"insideBottomLeft"===o?x({x:c+m,y:s+u-h,textAnchor:g,verticalAnchor:p},O):"insideBottomRight"===o?x({x:c+l-m,y:s+u-h,textAnchor:b,verticalAnchor:p},O):i()(o)&&((0,d.hj)(o.x)||(0,d.hU)(o.x))&&((0,d.hj)(o.y)||(0,d.hU)(o.y))?x({x:c+(0,d.h1)(o.x,l),y:s+(0,d.h1)(o.y,u),textAnchor:"end",verticalAnchor:"end"},O):x({x:c+l/2,y:s+u/2,textAnchor:"middle",verticalAnchor:"middle"},O)},E=function(t){return"cx"in t&&(0,d.hj)(t.cx)};function k(t){var e,r=t.viewBox,n=t.position,i=t.value,o=t.children,c=t.content,u=t.className,d=void 0===u?"":u,y=t.textBreakAll;if(!r||s()(i)&&s()(o)&&!(0,l.isValidElement)(c)&&!a()(c))return null;if((0,l.isValidElement)(c))return(0,l.cloneElement)(c,t);if(a()(c)){if(e=(0,l.createElement)(c,t),(0,l.isValidElement)(e))return e}else e=O(t);var v=E(r),m=(0,p.L6)(t,!0);if(v&&("insideStart"===n||"insideEnd"===n||"end"===n))return S(t,e,m);var b=v?j(t):P(t);return l.createElement(h.x,w({className:f()("recharts-label",d)},m,b,{breakAll:y}),e)}k.displayName="Label",k.defaultProps={offset:5};var A=function(t){var e=t.cx,r=t.cy,n=t.angle,i=t.startAngle,o=t.endAngle,a=t.r,c=t.radius,s=t.innerRadius,l=t.outerRadius,u=t.x,f=t.y,h=t.top,p=t.left,y=t.width,v=t.height,m=t.clockWise,b=t.labelViewBox;if(b)return b;if((0,d.hj)(y)&&(0,d.hj)(v)){if((0,d.hj)(u)&&(0,d.hj)(f))return{x:u,y:f,width:y,height:v};if((0,d.hj)(h)&&(0,d.hj)(p))return{x:h,y:p,width:y,height:v}}return(0,d.hj)(u)&&(0,d.hj)(f)?{x:u,y:f,width:0,height:0}:(0,d.hj)(e)&&(0,d.hj)(r)?{cx:e,cy:r,startAngle:i||n||0,endAngle:o||n||0,innerRadius:s||0,outerRadius:l||c||a||0,clockWise:m}:t.viewBox?t.viewBox:{}};k.parseViewBox=A,k.renderCallByParent=function(t,e){var r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];if(!t||!t.children&&r&&!t.label)return null;var n=t.children,o=A(t),c=(0,p.NN)(n,k).map((function(t,r){return(0,l.cloneElement)(t,{viewBox:e||o,key:"label-".concat(r)})}));if(!r)return c;var s=function(t,e){return t?!0===t?l.createElement(k,{key:"label-implicit",viewBox:e}):(0,d.P2)(t)?l.createElement(k,{key:"label-implicit",viewBox:e,value:t}):(0,l.isValidElement)(t)?t.type===k?(0,l.cloneElement)(t,{key:"label-implicit",viewBox:e}):l.createElement(k,{key:"label-implicit",content:t,viewBox:e}):a()(t)?l.createElement(k,{key:"label-implicit",content:t,viewBox:e}):i()(t)?l.createElement(k,w({viewBox:e},t,{key:"label-implicit"})):null:null}(t.label,e||o);return[s].concat(m(c))}},2763:function(t,e,r){"use strict";r.d(e,{e:function(){return k}});var n=r(3218),i=r.n(n),o=r(3560),a=r.n(o),c=r(4293),s=r.n(c),l=r(928),u=r.n(l),f=r(1469),h=r.n(f),p=r(7294),d=r(5048),y=r(8710),v=r(2017),m=r(6822);function b(t){return b="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},b(t)}var g=["data","valueAccessor","dataKey","clockWise","id","textBreakAll"];function x(t){return function(t){if(Array.isArray(t))return _(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return _(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return _(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function _(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}var E={valueAccessor:function(t){return h()(t.value)?u()(t.value):t.value}};function k(t){var e=t.data,r=t.valueAccessor,n=t.dataKey,i=t.clockWise,o=t.id,a=t.textBreakAll,c=P(t,g);return e&&e.length?p.createElement(y.m,{className:"recharts-label-list"},e.map((function(t,e){var l=s()(n)?r(t,e):(0,m.F$)(t&&t.payload,n),u=s()(o)?{}:{id:"".concat(o,"-").concat(e)};return p.createElement(d._,w({},(0,v.L6)(t,!0),c,u,{parentViewBox:t.parentViewBox,index:e,value:l,textBreakAll:a,viewBox:d._.parseViewBox(s()(i)?t:S(S({},t),{},{clockWise:i})),key:"label-".concat(e)}))}))):null}k.displayName="LabelList",k.renderCallByParent=function(t,e){var r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];if(!t||!t.children&&r&&!t.label)return null;var n=t.children,o=(0,v.NN)(n,k).map((function(t,r){return(0,p.cloneElement)(t,{data:e,key:"labelList-".concat(r)})}));return r?[function(t,e){return t?!0===t?p.createElement(k,{key:"labelList-implicit",data:e}):p.isValidElement(t)||a()(t)?p.createElement(k,{key:"labelList-implicit",data:e,content:t}):i()(t)?p.createElement(k,w({data:e},t,{key:"labelList-implicit"})):null:null}(t.label,e)].concat(x(o)):o},k.defaultProps=E},8169:function(t,e,r){"use strict";r.d(e,{x:function(){return C}});var n=r(4293),i=r.n(n),o=r(7294),a=r(4275),c=r.n(a),s=r(4184),l=r.n(s),u=r(9055),f=r(7523),h=r(2017),p=r(1209),d=["dx","dy","textAnchor","verticalAnchor","scaleToFit","angle","lineHeight","capHeight","className","breakAll"];function y(t){return y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},y(t)}function v(){return v=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0||(i[r]=t[r]);return i}(t,e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(i[r]=t[r])}return i}function b(t,e){for(var r=0;rt.length)&&(e=t.length);for(var r=0,n=new Array(e);r0&&void 0!==arguments[0]?arguments[0]:[]).reduce((function(t,e){var o=e.word,a=e.width,c=t[t.length-1];if(c&&(null==n||i||c.width+a+rt.maxLines||function(t){return t.reduce((function(t,e){return t.width>e.width?t:e}))}(o).width>n;return[s,o]},h=0,p=a.length-1,d=0;h<=p&&d<=a.length-1;){var y=Math.floor((h+p)/2),v=O(f(y-1),2),m=v[0],b=v[1],g=O(f(y),1)[0];if(m||g||(h=y+1),m&&g&&(p=y-1),!m&&g){l=b;break}d++}return l||s}(t,r.wordsWithComputedWidth,r.spaceWidth,t.width,t.scaleToFit):I(t.children)}return I(t.children)},C=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&g(t,e)}(a,t);var e,r,n,i=x(a);function a(){var t;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a);for(var e=arguments.length,r=new Array(e),n=0;n=0;--e)i[e]=(a[e]-i[e+1])/o[e];for(o[n-1]=(t[n]+i[n-1])/2,e=0;e=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var r=this._x*(1-this._t)+t*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,e)}}this._x=t,this._y=e}};var k=r(4788),A=r(309),T=r(633);function I(t){return t[0]}function M(t){return t[1]}function C(t,e){var r=(0,A.Z)(!0),n=null,i=m,o=null,a=(0,T.d)(c);function c(c){var s,l,u,f=(c=(0,k.Z)(c)).length,h=!1;for(null==n&&(o=i(u=a())),s=0;s<=f;++s)!(s=f;--h)c.point(m[h],b[h]);c.lineEnd(),c.areaEnd()}v&&(m[u]=+t(p,u,l),b[u]=+e(p,u,l),c.point(n?+n(p,u,l):m[u],r?+r(p,u,l):b[u]))}if(d)return c=null,d+""||null}function u(){return C().defined(i).curve(a).context(o)}return t="function"==typeof t?t:void 0===t?I:(0,A.Z)(+t),e="function"==typeof e?e:void 0===e?(0,A.Z)(0):(0,A.Z)(+e),r="function"==typeof r?r:void 0===r?M:(0,A.Z)(+r),l.x=function(e){return arguments.length?(t="function"==typeof e?e:(0,A.Z)(+e),n=null,l):t},l.x0=function(e){return arguments.length?(t="function"==typeof e?e:(0,A.Z)(+e),l):t},l.x1=function(t){return arguments.length?(n=null==t?null:"function"==typeof t?t:(0,A.Z)(+t),l):n},l.y=function(t){return arguments.length?(e="function"==typeof t?t:(0,A.Z)(+t),r=null,l):e},l.y0=function(t){return arguments.length?(e="function"==typeof t?t:(0,A.Z)(+t),l):e},l.y1=function(t){return arguments.length?(r=null==t?null:"function"==typeof t?t:(0,A.Z)(+t),l):r},l.lineX0=l.lineY0=function(){return u().x(t).y(e)},l.lineY1=function(){return u().x(t).y(r)},l.lineX1=function(){return u().x(n).y(e)},l.defined=function(t){return arguments.length?(i="function"==typeof t?t:(0,A.Z)(!!t),l):i},l.curve=function(t){return arguments.length?(a=t,null!=o&&(c=a(o)),l):a},l.context=function(t){return arguments.length?(null==t?o=c=null:c=a(o=t),l):o},l}var N=r(4184),D=r.n(N),L=r(9896),B=r(2017),z=r(9055);function V(t){return V="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},V(t)}function F(){return F=Object.assign?Object.assign.bind():function(t){for(var e=1;e0&&(k=Math.min((t||0)-(A[e-1]||0),k))}));var T=k/E,I="vertical"===g.layout?r.height:r.width;if("gap"===g.padding&&(s=T*I/2),"no-gap"===g.padding){var M=(0,l.h1)(t.barCategoryGap,T*I),C=T*I/2;s=C-M-(C-M)/I*M}}u="xAxis"===n?[r.left+(O.left||0)+(s||0),r.left+r.width-(O.right||0)-(s||0)]:"yAxis"===n?"horizontal"===f?[r.top+r.height-(O.bottom||0),r.top+(O.top||0)]:[r.top+(O.top||0)+(s||0),r.top+r.height-(O.bottom||0)-(s||0)]:g.range,j&&(u=[u[1],u[0]]);var R=(0,c.Hq)(g,i,m),N=R.scale,D=R.realScaleType;N.domain(_).range(u),(0,c.zF)(N);var L=(0,c.g$)(N,d(d({},g),{},{realScaleType:D}));"xAxis"===n?(b="top"===x&&!S||"bottom"===x&&S,h=r.left,p=v[P]-b*g.height):"yAxis"===n&&(b="left"===x&&!S||"right"===x&&S,h=v[P]-b*g.width,p=r.top);var B=d(d(d({},g),L),{},{realScaleType:D,x:h,y:p,scale:N,width:"xAxis"===n?r.width:g.width,height:"yAxis"===n?r.height:g.height});return B.bandSize=(0,c.zT)(B,L),g.hide||"xAxis"!==n?g.hide||(v[P]+=(b?-1:1)*B.width):v[P]+=(b?-1:1)*B.height,d(d({},o),{},y({},a,B))}),{})},b=function(t,e){var r=t.x,n=t.y,i=e.x,o=e.y;return{x:Math.min(r,i),y:Math.min(n,o),width:Math.abs(i-r),height:Math.abs(o-n)}},g=function(t){var e=t.x1,r=t.y1,n=t.x2,i=t.y2;return b({x:e,y:r},{x:n,y:i})},x=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.scale=e}var e,r,n;return e=t,r=[{key:"domain",get:function(){return this.scale.domain}},{key:"range",get:function(){return this.scale.range}},{key:"rangeMin",get:function(){return this.range()[0]}},{key:"rangeMax",get:function(){return this.range()[1]}},{key:"bandwidth",get:function(){return this.scale.bandwidth}},{key:"apply",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=e.bandAware,n=e.position;if(void 0!==t){if(n)switch(n){case"start":default:return this.scale(t);case"middle":var i=this.bandwidth?this.bandwidth()/2:0;return this.scale(t)+i;case"end":var o=this.bandwidth?this.bandwidth():0;return this.scale(t)+o}if(r){var a=this.bandwidth?this.bandwidth()/2:0;return this.scale(t)+a}return this.scale(t)}}},{key:"isInRange",value:function(t){var e=this.range(),r=e[0],n=e[e.length-1];return r<=n?t>=r&&t<=n:t>=n&&t<=r}}],n=[{key:"create",value:function(e){return new t(e)}}],r&&h(e.prototype,r),n&&h(e,n),Object.defineProperty(e,"prototype",{writable:!1}),t}();y(x,"EPS",1e-4);var _=function(t){var e=Object.keys(t).reduce((function(e,r){return d(d({},e),{},y({},r,x.create(t[r])))}),{});return d(d({},e),{},{apply:function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=r.bandAware,i=r.position;return a()(t,(function(t,r){return e[r].apply(t,{bandAware:n,position:i})}))},isInRange:function(t){return i()(t,(function(t,r){return e[r].isInRange(t)}))}})}},48:function(t,e,r){"use strict";r.d(e,{Wk:function(){return c},op:function(){return l},z3:function(){return h}});r(4293);function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}function i(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function o(t){for(var e=1;eh&&(y=2*Math.PI-y),{radius:p,angle:s(y),angleInRadian:y}},f=function(t,e){var r=e.startAngle,n=e.endAngle,i=Math.floor(r/360),o=Math.floor(n/360);return t+360*Math.min(i,o)},h=function(t,e){var r=t.x,n=t.y,i=u({x:r,y:n},e),a=i.radius,c=i.angle,s=e.innerRadius,l=e.outerRadius;if(al)return!1;if(0===a)return!0;var h,p=function(t){var e=t.startAngle,r=t.endAngle,n=Math.floor(e/360),i=Math.floor(r/360),o=Math.min(n,i);return{startAngle:e-360*o,endAngle:r-360*o}}(e),d=p.startAngle,y=p.endAngle,v=c;if(d<=y){for(;v>y;)v-=360;for(;v=d&&v<=y}else{for(;v>d;)v-=360;for(;v=y&&v<=d}return h?o(o({},e),{},{radius:a,angle:f(v,e)}):null}},4275:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=c(r(8336)),i=r(210),o=c(r(174)),a=c(r(3697));function c(t){return t&&t.__esModule?t:{default:t}}var s=/((?:\-[a-z]+\-)?calc)/;e.default=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:5;return(0,n.default)(t).walk((function(t){if("function"===t.type&&s.test(t.value)){var r=n.default.stringify(t.nodes);if(!(r.indexOf("constant")>=0||r.indexOf("env")>=0)){var c=i.parser.parse(r),l=(0,o.default)(c,e);t.type="word",t.value=(0,a.default)(t.value,l,e)}}}),!0).toString()},t.exports=e.default},460:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n,i=r(3258),o=(n=i)&&n.__esModule?n:{default:n};e.default=function(t,e,r){switch(t.type){case"LengthValue":case"AngleValue":case"TimeValue":case"FrequencyValue":case"ResolutionValue":return function(t,e,r){e.type===t.type&&(e={type:t.type,value:(0,o.default)(e.value,e.unit,t.unit,r),unit:t.unit});return{left:t,right:e}}(t,e,r);default:return{left:t,right:e}}},t.exports=e.default},174:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.flip=l;var n,i=r(460),o=(n=i)&&n.__esModule?n:{default:n};function a(t,e){return"MathExpression"===t.type?function(t,e){switch(t=function(t,e){var r=(0,o.default)(t.left,t.right,e),n=a(r.left,e),i=a(r.right,e);"MathExpression"===n.type&&"MathExpression"===i.type&&("/"===n.operator&&"*"===i.operator||"-"===n.operator&&"+"===i.operator||"*"===n.operator&&"/"===i.operator||"+"===n.operator&&"-"===i.operator)&&(c(n.right,i.right)?r=(0,o.default)(n.left,i.left,e):c(n.right,i.left)&&(r=(0,o.default)(n.left,i.right,e)),n=a(r.left,e),i=a(r.right,e));return t.left=n,t.right=i,t}(t,e),t.operator){case"+":case"-":return function(t,e){var r=t,n=r.left,i=r.right,o=r.operator;if("CssVariable"===n.type||"CssVariable"===i.type)return t;if(0===i.value)return n;if(0===n.value&&"+"===o)return i;if(0===n.value&&"-"===o)return u(i);n.type===i.type&&s(n.type)&&((t=Object.assign({},n)).value="+"===o?n.value+i.value:n.value-i.value);if(s(n.type)&&("+"===i.operator||"-"===i.operator)&&"MathExpression"===i.type){if(n.type===i.left.type)return(t=Object.assign({},t)).left=a({type:"MathExpression",operator:o,left:n,right:i.left},e),t.right=i.right,t.operator="-"===o?l(i.operator):i.operator,a(t,e);if(n.type===i.right.type)return(t=Object.assign({},t)).left=a({type:"MathExpression",operator:"-"===o?l(i.operator):i.operator,left:n,right:i.right},e),t.right=i.left,a(t,e)}if("MathExpression"===n.type&&("+"===n.operator||"-"===n.operator)&&s(i.type)){if(i.type===n.left.type)return(t=Object.assign({},n)).left=a({type:"MathExpression",operator:o,left:n.left,right:i},e),a(t,e);if(i.type===n.right.type)return t=Object.assign({},n),"-"===n.operator?(t.right=a({type:"MathExpression",operator:"-"===o?"+":"-",left:i,right:n.right},e),t.operator="-"===o?"-":"+"):t.right=a({type:"MathExpression",operator:o,left:n.right,right:i},e),t.right.value<0&&(t.right.value*=-1,t.operator="-"===t.operator?"+":"-"),a(t,e)}return t}(t,e);case"/":return function(t,e){if(!s(t.right.type))return t;if("Value"!==t.right.type)throw new Error('Cannot divide by "'+t.right.unit+'", number expected');if(0===t.right.value)throw new Error("Cannot divide by zero");if("MathExpression"===t.left.type)return s(t.left.left.type)&&s(t.left.right.type)?(t.left.left.value/=t.right.value,t.left.right.value/=t.right.value,a(t.left,e)):t;if(s(t.left.type))return t.left.value/=t.right.value,t.left;return t}(t,e);case"*":return function(t){if("MathExpression"===t.left.type&&"Value"===t.right.type){if(s(t.left.left.type)&&s(t.left.right.type))return t.left.left.value*=t.right.value,t.left.right.value*=t.right.value,t.left}else{if(s(t.left.type)&&"Value"===t.right.type)return t.left.value*=t.right.value,t.left;if("Value"===t.left.type&&"MathExpression"===t.right.type){if(s(t.right.left.type)&&s(t.right.right.type))return t.right.left.value*=t.left.value,t.right.right.value*=t.left.value,t.right}else if("Value"===t.left.type&&s(t.right.type))return t.right.value*=t.left.value,t.right}return t}(t)}return t}(t,e):"Calc"===t.type?a(t.value,e):t}function c(t,e){return t.type===e.type&&t.value===e.value}function s(t){switch(t){case"LengthValue":case"AngleValue":case"TimeValue":case"FrequencyValue":case"ResolutionValue":case"EmValue":case"ExValue":case"ChValue":case"RemValue":case"VhValue":case"VwValue":case"VminValue":case"VmaxValue":case"PercentageValue":case"Value":return!0}return!1}function l(t){return"+"===t?"-":"+"}function u(t){return s(t.type)?t.value=-t.value:"MathExpression"==t.type&&(t.left=u(t.left),t.right=u(t.right)),t}e.default=a},3697:function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t,e,r){var n=a(e,r);return"MathExpression"===e.type&&(n=t+"("+n+")"),n};var n=r(174),i={"*":0,"/":0,"+":1,"-":1};function o(t,e){if(!1!==e){var r=Math.pow(10,e);return Math.round(t*r)/r}return t}function a(t,e){switch(t.type){case"MathExpression":var r=t.left,c=t.right,s=t.operator,l="";return"MathExpression"===r.type&&i[s]1)return t;if(e.cleanupAfterLex&&e.cleanupAfterLex(a),f&&(f.lexer=void 0,f.parser=void 0,e.yy===f&&(e.yy=void 0)),f=void 0,this.parseError=this.originalParseError,this.quoteName=this.originalQuoteName,n.length=0,i.length=0,o.length=0,c=0,!a){for(var u=this.__error_infos.length-1;u>=0;u--){var h=this.__error_infos[u];h&&"function"==typeof h.destroy&&h.destroy()}this.__error_infos.length=0}return t},this.constructParseErrorInfo=function(t,r,a,l){var u={errStr:t,exception:r,text:e.match,value:e.yytext,token:this.describeSymbol(s)||s,token_id:s,line:e.yylineno,expected:a,recoverable:l,state:p,action:d,new_state:x,symbol_stack:n,state_stack:i,value_stack:o,stack_pointer:c,yy:f,lexer:e,parser:this,destroy:function(){var t=!!this.recoverable;for(var e in this)this.hasOwnProperty(e)&&"object"==typeof e&&(this[e]=void 0);this.recoverable=t}};return this.__error_infos.push(u),u};var p,d,y,v,m,b,g,x,_=function(){var t=e.lex();return"number"!=typeof t&&(t=r.symbols_[t]||t),t||l},w={$:!0,_$:void 0,yy:f},O=!1;try{if(this.__reentrant_call_depth++,e.setInput(t,f),"function"==typeof e.canIUse)e.canIUse().fastLex&&(_=h);for(o[c]=null,i[c]=0,n[c]=0,++c,this.pre_parse&&this.pre_parse.call(this,f),f.pre_parse&&f.pre_parse.call(this,f),x=i[c-1];;){if(p=x,this.defaultActions[p])d=2,x=this.defaultActions[p];else if(s||(s=_()),v=a[p]&&a[p][s]||u,x=v[1],!(d=v[0])){var S,j=this.describeSymbol(s)||s,P=this.collect_expected_token_set(p);S="number"==typeof e.yylineno?"Parse error on line "+(e.yylineno+1)+": ":"Parse error: ","function"==typeof e.showPosition&&(S+="\n"+e.showPosition(69,10)+"\n"),P.length?S+="Expecting "+P.join(", ")+", got unexpected "+j:S+="Unexpected "+j,m=this.constructParseErrorInfo(S,null,P,!1),void 0!==(y=this.parseError(m.errStr,m,this.JisonParserError))&&(O=y);break}switch(d){default:if(d instanceof Array){m=this.constructParseErrorInfo("Parse Error: multiple actions possible at state: "+p+", token: "+s,null,null,!1),void 0!==(y=this.parseError(m.errStr,m,this.JisonParserError))&&(O=y);break}m=this.constructParseErrorInfo("Parsing halted. No viable error recovery approach available due to internal system failure.",null,null,!1),void 0!==(y=this.parseError(m.errStr,m,this.JisonParserError))&&(O=y);break;case 1:n[c]=s,o[c]=e.yytext,i[c]=x,++c,s=0;continue;case 2:if(b=(g=this.productions_[x-1])[1],void 0!==(y=this.performAction.call(w,x,c-1,o))){O=y;break}c-=b;var E=g[0];n[c]=E,o[c]=w.$,x=a[i[c-1]][E],i[c]=x,++c;continue;case 3:-2!==c&&(O=!0,c--,void 0!==o[c]&&(O=o[c]))}break}}catch(k){if(k instanceof this.JisonParserError)throw k;if(e&&"function"==typeof e.JisonLexerError&&k instanceof e.JisonLexerError)throw k;m=this.constructParseErrorInfo("Parsing aborted due to exception.",k,null,!1),O=!1,void 0!==(y=this.parseError(m.errStr,m,this.JisonParserError))&&(O=y)}finally{O=this.cleanupAfterParse(O,!0,!0),this.__reentrant_call_depth--}return O}};i.originalParseError=i.parseError,i.originalQuoteName=i.quoteName;var o=function(){function t(t,e){var r;if(Object.defineProperty(this,"name",{enumerable:!1,writable:!1,value:"JisonLexerError"}),null==t&&(t="???"),Object.defineProperty(this,"message",{enumerable:!1,writable:!0,value:t}),this.hash=e,e&&e.exception instanceof Error){var n=e.exception;this.message=n.message||t,r=n.stack}r||(Error.hasOwnProperty("captureStackTrace")?Error.captureStackTrace(this,this.constructor):r=new Error(t).stack),r&&Object.defineProperty(this,"stack",{enumerable:!1,writable:!1,value:r})}"function"==typeof Object.setPrototypeOf?Object.setPrototypeOf(t.prototype,Error.prototype):t.prototype=Object.create(Error.prototype),t.prototype.constructor=t,t.prototype.name="JisonLexerError";var e={EOF:1,ERROR:2,__currentRuleSet__:null,__error_infos:[],__decompressed:!1,done:!1,_backtrack:!1,_input:"",_more:!1,_signaled_error_token:!1,conditionStack:[],match:"",matched:"",matches:!1,yytext:"",offset:0,yyleng:0,yylineno:0,yylloc:null,constructLexErrorInfo:function(t,e,r){if(t=""+t,null==r&&(r=!(t.indexOf("\n")>0&&t.indexOf("^")>0)),this.yylloc&&r)if("function"==typeof this.prettyPrintRange){this.prettyPrintRange(this.yylloc);/\n\s*$/.test(t)||(t+="\n"),t+="\n Erroneous area:\n"+this.prettyPrintRange(this.yylloc)}else if("function"==typeof this.showPosition){var n=this.showPosition();n&&(t.length&&"\n"!==t[t.length-1]&&"\n"!==n[0]?t+="\n"+n:t+=n)}var i={errStr:t,recoverable:!!e,text:this.match,token:null,line:this.yylineno,loc:this.yylloc,yy:this.yy,lexer:this,destroy:function(){var t=!!this.recoverable;for(var e in this)this.hasOwnProperty(e)&&"object"==typeof e&&(this[e]=void 0);this.recoverable=t}};return this.__error_infos.push(i),i},parseError:function(t,e,r){if(r||(r=this.JisonLexerError),this.yy){if(this.yy.parser&&"function"==typeof this.yy.parser.parseError)return this.yy.parser.parseError.call(this,t,e,r)||this.ERROR;if("function"==typeof this.yy.parseError)return this.yy.parseError.call(this,t,e,r)||this.ERROR}throw new r(t,e)},yyerror:function(t){var e="";this.yylloc&&(e=" on line "+(this.yylineno+1));var r=this.constructLexErrorInfo("Lexical error"+e+": "+t,this.options.lexerErrorsAreRecoverable),n=Array.prototype.slice.call(arguments,1);return n.length&&(r.extra_error_attributes=n),this.parseError(r.errStr,r,this.JisonLexerError)||this.ERROR},cleanupAfterLex:function(t){if(this.setInput("",{}),!t){for(var e=this.__error_infos.length-1;e>=0;e--){var r=this.__error_infos[e];r&&"function"==typeof r.destroy&&r.destroy()}this.__error_infos.length=0}return this},clear:function(){this.yytext="",this.yyleng=0,this.match="",this.matches=!1,this._more=!1,this._backtrack=!1;var t=this.yylloc?this.yylloc.last_column:0;this.yylloc={first_line:this.yylineno+1,first_column:t,last_line:this.yylineno+1,last_column:t,range:[this.offset,this.offset]}},setInput:function(t,e){if(this.yy=e||this.yy||{},!this.__decompressed){for(var r=this.rules,n=0,i=r.length;n1){this.yylineno-=r.length-1,this.yylloc.last_line=this.yylineno+1;var n=this.match,i=n.split(/(?:\r\n?|\n)/g);1===i.length&&(i=(n=this.matched).split(/(?:\r\n?|\n)/g)),this.yylloc.last_column=i[i.length-1].length}else this.yylloc.last_column-=e;return this.yylloc.range[1]=this.yylloc.range[0]+this.yyleng,this.done=!1,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else{var t="";this.yylloc&&(t=" on line "+(this.yylineno+1));var e=this.constructLexErrorInfo("Lexical error"+t+": You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).",!1);this._signaled_error_token=this.parseError(e.errStr,e,this.JisonLexerError)||this.ERROR}return this},less:function(t){return this.unput(this.match.slice(t))},pastInput:function(t,e){var r=this.matched.substring(0,this.matched.length-this.match.length);t<0?t=r.length:t||(t=20),e<0?e=r.length:e||(e=1);var n=(r=r.substr(2*-t-2)).replace(/\r\n|\r/g,"\n").split("\n");return(r=(n=n.slice(-e)).join("\n")).length>t&&(r="..."+r.substr(-t)),r},upcomingInput:function(t,e){var r=this.match;t<0?t=r.length+this._input.length:t||(t=20),e<0?e=t:e||(e=1),r.length<2*t+2&&(r+=this._input.substring(0,2*t+2));var n=r.replace(/\r\n|\r/g,"\n").split("\n");return(r=(n=n.slice(0,e)).join("\n")).length>t&&(r=r.substring(0,t)+"..."),r},showPosition:function(t,e){var r=this.pastInput(t).replace(/\s/g," "),n=new Array(r.length+1).join("-");return r+this.upcomingInput(e).replace(/\s/g," ")+"\n"+n+"^"},deriveLocationInfo:function(t,e,r,n){var i={first_line:1,first_column:0,last_line:1,last_column:0,range:[0,0]};return t&&(i.first_line=0|t.first_line,i.last_line=0|t.last_line,i.first_column=0|t.first_column,i.last_column=0|t.last_column,t.range&&(i.range[0]=0|t.range[0],i.range[1]=0|t.range[1])),(i.first_line<=0||i.last_line=i.first_line)&&(i.last_line=0|n.last_line,i.last_column=0|n.last_column,n.range&&(i.range[1]=0|n.range[1]))),i.last_line<=0&&(i.first_line<=0?(i.first_line=this.yylloc.first_line,i.last_line=this.yylloc.last_line,i.first_column=this.yylloc.first_column,i.last_column=this.yylloc.last_column,i.range[0]=this.yylloc.range[0],i.range[1]=this.yylloc.range[1]):(i.last_line=this.yylloc.last_line,i.last_column=this.yylloc.last_column,i.range[1]=this.yylloc.range[1])),i.first_line<=0&&(i.first_line=i.last_line,i.first_column=0,i.range[1]=i.range[0]),i.first_column<0&&(i.first_column=0),i.last_column<0&&(i.last_column=i.first_column>0?i.first_column:80),i},prettyPrintRange:function(t,e,r){t=this.deriveLocationInfo(t,e,r);var n=(this.matched+this._input).split("\n"),i=Math.max(1,e?e.first_line:t.first_line-3),o=Math.max(1,r?r.last_line:t.last_line+1),a=1+Math.log10(1|o)|0,c=new Array(a).join(" "),s=[],l=n.slice(i-1,o+1).map((function(e,r){var n=r+i,o=(c+n).substr(-a)+": "+e,l=new Array(a+1).join("^"),u=3,f=0;(n===t.first_line?(u+=t.first_column,f=Math.max(2,(n===t.last_line?t.last_column:e.length)-t.first_column+1)):n===t.last_line?f=Math.max(2,t.last_column+1):n>t.first_line&&n0&&s.push(r));return o=o.replace(/\t/g," ")}));if(s.length>4){var u=s[1]+1,f=s[s.length-2]-1,h=new Array(a+1).join(" ")+" (...continued...)";h+="\n"+new Array(a+1).join("-")+" (---------------)",l.splice(u,f-u+1,h)}return l.join("\n")},describeYYLLOC:function(t,e){var r,n=t.first_line,i=t.last_line,o=t.first_column,a=t.last_column;if(0===i-n?(r="line "+n+", ",r+=a-o<=1?"column "+o:"columns "+o+" .. "+a):r="lines "+n+"(column "+o+") .. "+i+"(column "+a+")",t.range&&e){var c=t.range[0],s=t.range[1]-1;r+=s<=c?" {String Offset: "+c+"}":" {String Offset range: "+c+" .. "+s+"}"}return r},test_match:function(t,e){var r,n,i,o,a;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.yylloc.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column,range:this.yylloc.range.slice(0)},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done}),a=(o=t[0]).length,(n=o.split(/(?:\r\n?|\n)/g)).length>1?(this.yylineno+=n.length-1,this.yylloc.last_line=this.yylineno+1,this.yylloc.last_column=n[n.length-1].length):this.yylloc.last_column+=a,this.yytext+=o,this.match+=o,this.matched+=o,this.matches=t,this.yyleng=this.yytext.length,this.yylloc.range[1]+=a,this.offset+=a,this._more=!1,this._backtrack=!1,this._input=this._input.slice(a),r=this.performAction.call(this,this.yy,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),r)return r;if(this._backtrack){for(var c in i)this[c]=i[c];return this.__currentRuleSet__=null,!1}return!!this._signaled_error_token&&(r=this._signaled_error_token,this._signaled_error_token=!1,r)},next:function(){if(this.done)return this.clear(),this.EOF;var t,e,r,n;this._input||(this.done=!0),this._more||this.clear();var i=this.__currentRuleSet__;if(!(i||(i=this.__currentRuleSet__=this._currentRules())&&i.rules)){var o="";this.options.trackPosition&&(o=" on line "+(this.yylineno+1));var a=this.constructLexErrorInfo("Internal lexer engine error"+o+': The lex grammar programmer pushed a non-existing condition name "'+this.topState()+'"; this is a fatal error and should be reported to the application programmer team!',!1);return this.parseError(a.errStr,a,this.JisonLexerError)||this.ERROR}for(var c=i.rules,s=i.__rule_regexes,l=i.__rule_count,u=1;u<=l;u++)if((r=this._input.match(s[u]))&&(!e||r[0].length>e[0].length)){if(e=r,n=u,this.options.backtrack_lexer){if(!1!==(t=this.test_match(r,c[u])))return t;if(this._backtrack){e=void 0;continue}return!1}if(!this.options.flex)break}if(e)return!1!==(t=this.test_match(e,c[n]))&&t;if(this._input){o="";this.options.trackPosition&&(o=" on line "+(this.yylineno+1));a=this.constructLexErrorInfo("Lexical error"+o+": Unrecognized text.",this.options.lexerErrorsAreRecoverable);var f=this._input,h=this.topState(),p=this.conditionStack.length;return(t=this.parseError(a.errStr,a,this.JisonLexerError)||this.ERROR)===this.ERROR&&(this.matches||f!==this._input||h!==this.topState()||p!==this.conditionStack.length||this.input()),t}return this.done=!0,this.clear(),this.EOF},lex:function(){var t;for("function"==typeof this.pre_lex&&(t=this.pre_lex.call(this,0)),"function"==typeof this.options.pre_lex&&(t=this.options.pre_lex.call(this,t)||t),this.yy&&"function"==typeof this.yy.pre_lex&&(t=this.yy.pre_lex.call(this,t)||t);!t;)t=this.next();return this.yy&&"function"==typeof this.yy.post_lex&&(t=this.yy.post_lex.call(this,t)||t),"function"==typeof this.options.post_lex&&(t=this.options.post_lex.call(this,t)||t),"function"==typeof this.post_lex&&(t=this.post_lex.call(this,t)||t),t},fastLex:function(){for(var t;!t;)t=this.next();return t},canIUse:function(){return{fastLex:!("function"==typeof this.pre_lex||"function"==typeof this.options.pre_lex||this.yy&&"function"==typeof this.yy.pre_lex||this.yy&&"function"==typeof this.yy.post_lex||"function"==typeof this.options.post_lex||"function"==typeof this.post_lex)&&"function"==typeof this.fastLex}},begin:function(t){return this.pushState(t)},pushState:function(t){return this.conditionStack.push(t),this.__currentRuleSet__=null,this},popState:function(){return this.conditionStack.length-1>0?(this.__currentRuleSet__=null,this.conditionStack.pop()):this.conditionStack[0]},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]]:this.conditions.INITIAL},stateStackSize:function(){return this.conditionStack.length},options:{trackPosition:!0},JisonLexerError:t,performAction:function(t,e,r){if(1!==e)return this.simpleCaseActionClusters[e]},simpleCaseActionClusters:{0:13,2:5,3:6,4:3,5:4,6:15,7:15,8:15,9:15,10:15,11:15,12:16,13:16,14:16,15:16,16:17,17:17,18:18,19:18,20:19,21:19,22:19,23:20,24:21,25:22,26:23,27:25,28:24,29:26,30:27,31:28,32:11,33:9,34:12,35:10,36:7,37:8,38:14,39:1},rules:[/^(?:(--[\d\-A-Za-z]*))/,/^(?:\s+)/,/^(?:\*)/,/^(?:\/)/,/^(?:\+)/,/^(?:-)/,/^(?:(\d+(\.\d*)?|\.\d+)px\b)/,/^(?:(\d+(\.\d*)?|\.\d+)cm\b)/,/^(?:(\d+(\.\d*)?|\.\d+)mm\b)/,/^(?:(\d+(\.\d*)?|\.\d+)in\b)/,/^(?:(\d+(\.\d*)?|\.\d+)pt\b)/,/^(?:(\d+(\.\d*)?|\.\d+)pc\b)/,/^(?:(\d+(\.\d*)?|\.\d+)deg\b)/,/^(?:(\d+(\.\d*)?|\.\d+)grad\b)/,/^(?:(\d+(\.\d*)?|\.\d+)rad\b)/,/^(?:(\d+(\.\d*)?|\.\d+)turn\b)/,/^(?:(\d+(\.\d*)?|\.\d+)s\b)/,/^(?:(\d+(\.\d*)?|\.\d+)ms\b)/,/^(?:(\d+(\.\d*)?|\.\d+)Hz\b)/,/^(?:(\d+(\.\d*)?|\.\d+)kHz\b)/,/^(?:(\d+(\.\d*)?|\.\d+)dpi\b)/,/^(?:(\d+(\.\d*)?|\.\d+)dpcm\b)/,/^(?:(\d+(\.\d*)?|\.\d+)dppx\b)/,/^(?:(\d+(\.\d*)?|\.\d+)em\b)/,/^(?:(\d+(\.\d*)?|\.\d+)ex\b)/,/^(?:(\d+(\.\d*)?|\.\d+)ch\b)/,/^(?:(\d+(\.\d*)?|\.\d+)rem\b)/,/^(?:(\d+(\.\d*)?|\.\d+)vw\b)/,/^(?:(\d+(\.\d*)?|\.\d+)vh\b)/,/^(?:(\d+(\.\d*)?|\.\d+)vmin\b)/,/^(?:(\d+(\.\d*)?|\.\d+)vmax\b)/,/^(?:(\d+(\.\d*)?|\.\d+)%)/,/^(?:(\d+(\.\d*)?|\.\d+)\b)/,/^(?:(calc))/,/^(?:(var))/,/^(?:([a-z]+))/,/^(?:\()/,/^(?:\))/,/^(?:,)/,/^(?:$)/],conditions:{INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39],inclusive:!0}}};return e}();function a(){this.yy={}}return i.lexer=o,a.prototype=i,i.Parser=a,new a}();e.parser=r,e.Parser=r.Parser,e.parse=function(){return r.parse.apply(r,arguments)}},8336:function(t,e,r){var n=r(8219),i=r(6461),o=r(1088);function a(t){return this instanceof a?(this.nodes=n(t),this):new a(t)}a.prototype.toString=function(){return Array.isArray(this.nodes)?o(this.nodes):""},a.prototype.walk=function(t,e){return i(this.nodes,t,e),this},a.unit=r(4386),a.walk=i,a.stringify=o,t.exports=a},8219:function(t){var e="(".charCodeAt(0),r=")".charCodeAt(0),n="'".charCodeAt(0),i='"'.charCodeAt(0),o="\\".charCodeAt(0),a="/".charCodeAt(0),c=",".charCodeAt(0),s=":".charCodeAt(0),l="*".charCodeAt(0);t.exports=function(t){for(var u,f,h,p,d,y,v,m,b=[],g=t,x=0,_=g.charCodeAt(x),w=g.length,O=[{nodes:b}],S=0,j="",P="",E="";x=48&&a<=57)f=!0;else if(a===i||a===o){if(u>-1)break;u=c}else if(a===n){if(l)break;l=!0}else{if(a!==r&&a!==e)break;if(0!==c)break}c+=1}return u+1===c&&c--,!!f&&{number:t.slice(0,c),unit:t.slice(c)}}},6461:function(t){t.exports=function t(e,r,n){var i,o,a,c;for(i=0,o=e.length;i>>0;for(t=0;t0)for(n=0;n=0?n?"+":"":"-")+Math.pow(10,Math.max(0,i)).toString().substr(1)+s}var H=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,F=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,L={},V={};function E(e,t,n,s){var i=s;"string"==typeof s&&(i=function(){return this[s]()}),e&&(V[e]=i),t&&(V[t[0]]=function(){return U(i.apply(this,arguments),t[1],t[2])}),n&&(V[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function G(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function A(e){var t,n,s=e.match(H);for(t=0,n=s.length;t=0&&F.test(e);)e=e.replace(F,s),F.lastIndex=0,n-=1;return e}var Z={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"};function z(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(H).map((function(e){return"MMMM"===e||"MM"===e||"DD"===e||"dddd"===e?e.slice(1):e})).join(""),this._longDateFormat[e])}var $="Invalid date";function q(){return this._invalidDate}var B="%d",J=/\d{1,2}/;function Q(e){return this._ordinal.replace("%d",e)}var X={future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"};function K(e,t,n,s){var i=this._relativeTime[n];return T(i)?i(e,t,n,s):i.replace(/%d/i,e)}function ee(e,t){var n=this._relativeTime[e>0?"future":"past"];return T(n)?n(t):n.replace(/%s/i,t)}var te={};function ne(e,t){var n=e.toLowerCase();te[n]=te[n+"s"]=te[t]=e}function se(e){return"string"==typeof e?te[e]||te[e.toLowerCase()]:void 0}function ie(e){var t,n,s={};for(n in e)o(e,n)&&(t=se(n))&&(s[t]=e[n]);return s}var re={};function ae(e,t){re[e]=t}function oe(e){var t,n=[];for(t in e)o(e,t)&&n.push({unit:t,priority:re[t]});return n.sort((function(e,t){return e.priority-t.priority})),n}function ue(e){return e%4==0&&e%100!=0||e%400==0}function le(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function he(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=le(t)),n}function de(e,t){return function(n){return null!=n?(fe(this,e,n),s.updateOffset(this,t),this):ce(this,e)}}function ce(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function fe(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&ue(e.year())&&1===e.month()&&29===e.date()?(n=he(n),e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),Ke(n,e.month()))):e._d["set"+(e._isUTC?"UTC":"")+t](n))}function me(e){return T(this[e=se(e)])?this[e]():this}function _e(e,t){if("object"==typeof e){var n,s=oe(e=ie(e)),i=s.length;for(n=0;n68?1900:2e3)};var yt=de("FullYear",!0);function gt(){return ue(this.year())}function wt(e,t,n,s,i,r,a){var o;return e<100&&e>=0?(o=new Date(e+400,t,n,s,i,r,a),isFinite(o.getFullYear())&&o.setFullYear(e)):o=new Date(e,t,n,s,i,r,a),o}function vt(e){var t,n;return e<100&&e>=0?((n=Array.prototype.slice.call(arguments))[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function pt(e,t,n){var s=7+t-n;return-(7+vt(e,0,s).getUTCDay()-t)%7+s-1}function kt(e,t,n,s,i){var r,a,o=1+7*(t-1)+(7+n-s)%7+pt(e,s,i);return o<=0?a=_t(r=e-1)+o:o>_t(e)?(r=e+1,a=o-_t(e)):(r=e,a=o),{year:r,dayOfYear:a}}function Mt(e,t,n){var s,i,r=pt(e.year(),t,n),a=Math.floor((e.dayOfYear()-r-1)/7)+1;return a<1?s=a+Dt(i=e.year()-1,t,n):a>Dt(e.year(),t,n)?(s=a-Dt(e.year(),t,n),i=e.year()+1):(i=e.year(),s=a),{week:s,year:i}}function Dt(e,t,n){var s=pt(e,t,n),i=pt(e+1,t,n);return(_t(e)-s+i)/7}function St(e){return Mt(e,this._week.dow,this._week.doy).week}E("w",["ww",2],"wo","week"),E("W",["WW",2],"Wo","isoWeek"),ne("week","w"),ne("isoWeek","W"),ae("week",5),ae("isoWeek",5),Ce("w",Me),Ce("ww",Me,we),Ce("W",Me),Ce("WW",Me,we),Ee(["w","ww","W","WW"],(function(e,t,n,s){t[s.substr(0,1)]=he(e)}));var Yt={dow:0,doy:6};function Ot(){return this._week.dow}function bt(){return this._week.doy}function xt(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")}function Tt(e){var t=Mt(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")}function Nt(e,t){return"string"!=typeof e?e:isNaN(e)?"number"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}function Pt(e,t){return"string"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function Rt(e,t){return e.slice(t,7).concat(e.slice(0,t))}E("d",0,"do","day"),E("dd",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),E("ddd",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),E("dddd",0,0,(function(e){return this.localeData().weekdays(this,e)})),E("e",0,0,"weekday"),E("E",0,0,"isoWeekday"),ne("day","d"),ne("weekday","e"),ne("isoWeekday","E"),ae("day",11),ae("weekday",11),ae("isoWeekday",11),Ce("d",Me),Ce("e",Me),Ce("E",Me),Ce("dd",(function(e,t){return t.weekdaysMinRegex(e)})),Ce("ddd",(function(e,t){return t.weekdaysShortRegex(e)})),Ce("dddd",(function(e,t){return t.weekdaysRegex(e)})),Ee(["dd","ddd","dddd"],(function(e,t,n,s){var i=n._locale.weekdaysParse(e,s,n._strict);null!=i?t.d=i:y(n).invalidWeekday=e})),Ee(["d","e","E"],(function(e,t,n,s){t[s]=he(e)}));var Wt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Ct="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Ut="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Ht=We,Ft=We,Lt=We;function Vt(e,t){var n=r(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?Rt(n,this._week.dow):e?n[e.day()]:n}function Et(e){return!0===e?Rt(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function Gt(e){return!0===e?Rt(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function At(e,t,n){var s,i,r,a=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],s=0;s<7;++s)r=m([2e3,1]).day(s),this._minWeekdaysParse[s]=this.weekdaysMin(r,"").toLocaleLowerCase(),this._shortWeekdaysParse[s]=this.weekdaysShort(r,"").toLocaleLowerCase(),this._weekdaysParse[s]=this.weekdays(r,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(i=Ae.call(this._weekdaysParse,a))?i:null:"ddd"===t?-1!==(i=Ae.call(this._shortWeekdaysParse,a))?i:null:-1!==(i=Ae.call(this._minWeekdaysParse,a))?i:null:"dddd"===t?-1!==(i=Ae.call(this._weekdaysParse,a))||-1!==(i=Ae.call(this._shortWeekdaysParse,a))||-1!==(i=Ae.call(this._minWeekdaysParse,a))?i:null:"ddd"===t?-1!==(i=Ae.call(this._shortWeekdaysParse,a))||-1!==(i=Ae.call(this._weekdaysParse,a))||-1!==(i=Ae.call(this._minWeekdaysParse,a))?i:null:-1!==(i=Ae.call(this._minWeekdaysParse,a))||-1!==(i=Ae.call(this._weekdaysParse,a))||-1!==(i=Ae.call(this._shortWeekdaysParse,a))?i:null}function jt(e,t,n){var s,i,r;if(this._weekdaysParseExact)return At.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),s=0;s<7;s++){if(i=m([2e3,1]).day(s),n&&!this._fullWeekdaysParse[s]&&(this._fullWeekdaysParse[s]=new RegExp("^"+this.weekdays(i,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[s]=new RegExp("^"+this.weekdaysShort(i,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[s]=new RegExp("^"+this.weekdaysMin(i,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[s]||(r="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[s]=new RegExp(r.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[s].test(e))return s;if(n&&"ddd"===t&&this._shortWeekdaysParse[s].test(e))return s;if(n&&"dd"===t&&this._minWeekdaysParse[s].test(e))return s;if(!n&&this._weekdaysParse[s].test(e))return s}}function It(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=Nt(e,this.localeData()),this.add(e-t,"d")):t}function Zt(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")}function zt(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=Pt(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7}function $t(e){return this._weekdaysParseExact?(o(this,"_weekdaysRegex")||Jt.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(o(this,"_weekdaysRegex")||(this._weekdaysRegex=Ht),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function qt(e){return this._weekdaysParseExact?(o(this,"_weekdaysRegex")||Jt.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(o(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Ft),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Bt(e){return this._weekdaysParseExact?(o(this,"_weekdaysRegex")||Jt.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(o(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Lt),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function Jt(){function e(e,t){return t.length-e.length}var t,n,s,i,r,a=[],o=[],u=[],l=[];for(t=0;t<7;t++)n=m([2e3,1]).day(t),s=Fe(this.weekdaysMin(n,"")),i=Fe(this.weekdaysShort(n,"")),r=Fe(this.weekdays(n,"")),a.push(s),o.push(i),u.push(r),l.push(s),l.push(i),l.push(r);a.sort(e),o.sort(e),u.sort(e),l.sort(e),this._weekdaysRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+o.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+a.join("|")+")","i")}function Qt(){return this.hours()%12||12}function Xt(){return this.hours()||24}function Kt(e,t){E(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function en(e,t){return t._meridiemParse}function tn(e){return"p"===(e+"").toLowerCase().charAt(0)}E("H",["HH",2],0,"hour"),E("h",["hh",2],0,Qt),E("k",["kk",2],0,Xt),E("hmm",0,0,(function(){return""+Qt.apply(this)+U(this.minutes(),2)})),E("hmmss",0,0,(function(){return""+Qt.apply(this)+U(this.minutes(),2)+U(this.seconds(),2)})),E("Hmm",0,0,(function(){return""+this.hours()+U(this.minutes(),2)})),E("Hmmss",0,0,(function(){return""+this.hours()+U(this.minutes(),2)+U(this.seconds(),2)})),Kt("a",!0),Kt("A",!1),ne("hour","h"),ae("hour",13),Ce("a",en),Ce("A",en),Ce("H",Me),Ce("h",Me),Ce("k",Me),Ce("HH",Me,we),Ce("hh",Me,we),Ce("kk",Me,we),Ce("hmm",De),Ce("hmmss",Se),Ce("Hmm",De),Ce("Hmmss",Se),Ve(["H","HH"],ze),Ve(["k","kk"],(function(e,t,n){var s=he(e);t[ze]=24===s?0:s})),Ve(["a","A"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),Ve(["h","hh"],(function(e,t,n){t[ze]=he(e),y(n).bigHour=!0})),Ve("hmm",(function(e,t,n){var s=e.length-2;t[ze]=he(e.substr(0,s)),t[$e]=he(e.substr(s)),y(n).bigHour=!0})),Ve("hmmss",(function(e,t,n){var s=e.length-4,i=e.length-2;t[ze]=he(e.substr(0,s)),t[$e]=he(e.substr(s,2)),t[qe]=he(e.substr(i)),y(n).bigHour=!0})),Ve("Hmm",(function(e,t,n){var s=e.length-2;t[ze]=he(e.substr(0,s)),t[$e]=he(e.substr(s))})),Ve("Hmmss",(function(e,t,n){var s=e.length-4,i=e.length-2;t[ze]=he(e.substr(0,s)),t[$e]=he(e.substr(s,2)),t[qe]=he(e.substr(i))}));var nn=/[ap]\.?m?\.?/i,sn=de("Hours",!0);function rn(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"}var an,on={calendar:W,longDateFormat:Z,invalidDate:$,ordinal:B,dayOfMonthOrdinalParse:J,relativeTime:X,months:et,monthsShort:tt,week:Yt,weekdays:Wt,weekdaysMin:Ut,weekdaysShort:Ct,meridiemParse:nn},un={},ln={};function hn(e,t){var n,s=Math.min(e.length,t.length);for(n=0;n0;){if(s=mn(i.slice(0,t).join("-")))return s;if(n&&n.length>=t&&hn(i,n)>=t-1)break;t--}r++}return an}function fn(e){return null!=e.match("^[^/\\\\]*$")}function mn(t){var n=null;if(void 0===un[t]&&e&&e.exports&&fn(t))try{n=an._abbr,Object(function(){var e=new Error("Cannot find module 'undefined'");throw e.code="MODULE_NOT_FOUND",e}()),_n(n)}catch(s){un[t]=null}return un[t]}function _n(e,t){var n;return e&&((n=l(t)?wn(e):yn(e,t))?an=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),an._abbr}function yn(e,t){if(null!==t){var n,s=on;if(t.abbr=e,null!=un[e])x("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),s=un[e]._config;else if(null!=t.parentLocale)if(null!=un[t.parentLocale])s=un[t.parentLocale]._config;else{if(null==(n=mn(t.parentLocale)))return ln[t.parentLocale]||(ln[t.parentLocale]=[]),ln[t.parentLocale].push({name:e,config:t}),null;s=n._config}return un[e]=new R(P(s,t)),ln[e]&&ln[e].forEach((function(e){yn(e.name,e.config)})),_n(e),un[e]}return delete un[e],null}function gn(e,t){if(null!=t){var n,s,i=on;null!=un[e]&&null!=un[e].parentLocale?un[e].set(P(un[e]._config,t)):(null!=(s=mn(e))&&(i=s._config),t=P(i,t),null==s&&(t.abbr=e),(n=new R(t)).parentLocale=un[e],un[e]=n),_n(e)}else null!=un[e]&&(null!=un[e].parentLocale?(un[e]=un[e].parentLocale,e===_n()&&_n(e)):null!=un[e]&&delete un[e]);return un[e]}function wn(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return an;if(!r(e)){if(t=mn(e))return t;e=[e]}return cn(e)}function vn(){return O(un)}function pn(e){var t,n=e._a;return n&&-2===y(e).overflow&&(t=n[Ie]<0||n[Ie]>11?Ie:n[Ze]<1||n[Ze]>Ke(n[je],n[Ie])?Ze:n[ze]<0||n[ze]>24||24===n[ze]&&(0!==n[$e]||0!==n[qe]||0!==n[Be])?ze:n[$e]<0||n[$e]>59?$e:n[qe]<0||n[qe]>59?qe:n[Be]<0||n[Be]>999?Be:-1,y(e)._overflowDayOfYear&&(tZe)&&(t=Ze),y(e)._overflowWeeks&&-1===t&&(t=Je),y(e)._overflowWeekday&&-1===t&&(t=Qe),y(e).overflow=t),e}var kn=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Mn=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Dn=/Z|[+-]\d\d(?::?\d\d)?/,Sn=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],Yn=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],On=/^\/?Date\((-?\d+)/i,bn=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,xn={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function Tn(e){var t,n,s,i,r,a,o=e._i,u=kn.exec(o)||Mn.exec(o),l=Sn.length,h=Yn.length;if(u){for(y(e).iso=!0,t=0,n=l;t_t(r)||0===e._dayOfYear)&&(y(e)._overflowDayOfYear=!0),n=vt(r,0,e._dayOfYear),e._a[Ie]=n.getUTCMonth(),e._a[Ze]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=a[t]=s[t];for(;t<7;t++)e._a[t]=a[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[ze]&&0===e._a[$e]&&0===e._a[qe]&&0===e._a[Be]&&(e._nextDay=!0,e._a[ze]=0),e._d=(e._useUTC?vt:wt).apply(null,a),i=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[ze]=24),e._w&&void 0!==e._w.d&&e._w.d!==i&&(y(e).weekdayMismatch=!0)}}function En(e){var t,n,s,i,r,a,o,u,l;null!=(t=e._w).GG||null!=t.W||null!=t.E?(r=1,a=4,n=Fn(t.GG,e._a[je],Mt(Bn(),1,4).year),s=Fn(t.W,1),((i=Fn(t.E,1))<1||i>7)&&(u=!0)):(r=e._locale._week.dow,a=e._locale._week.doy,l=Mt(Bn(),r,a),n=Fn(t.gg,e._a[je],l.year),s=Fn(t.w,l.week),null!=t.d?((i=t.d)<0||i>6)&&(u=!0):null!=t.e?(i=t.e+r,(t.e<0||t.e>6)&&(u=!0)):i=r),s<1||s>Dt(n,r,a)?y(e)._overflowWeeks=!0:null!=u?y(e)._overflowWeekday=!0:(o=kt(n,s,i,r,a),e._a[je]=o.year,e._dayOfYear=o.dayOfYear)}function Gn(e){if(e._f!==s.ISO_8601)if(e._f!==s.RFC_2822){e._a=[],y(e).empty=!0;var t,n,i,r,a,o,u,l=""+e._i,h=l.length,d=0;for(u=(i=I(e._f,e._locale).match(H)||[]).length,t=0;t0&&y(e).unusedInput.push(a),l=l.slice(l.indexOf(n)+n.length),d+=n.length),V[r]?(n?y(e).empty=!1:y(e).unusedTokens.push(r),Ge(r,n,e)):e._strict&&!n&&y(e).unusedTokens.push(r);y(e).charsLeftOver=h-d,l.length>0&&y(e).unusedInput.push(l),e._a[ze]<=12&&!0===y(e).bigHour&&e._a[ze]>0&&(y(e).bigHour=void 0),y(e).parsedDateParts=e._a.slice(0),y(e).meridiem=e._meridiem,e._a[ze]=An(e._locale,e._a[ze],e._meridiem),null!==(o=y(e).era)&&(e._a[je]=e._locale.erasConvertYear(o,e._a[je])),Vn(e),pn(e)}else Un(e);else Tn(e)}function An(e,t,n){var s;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((s=e.isPM(n))&&t<12&&(t+=12),s||12!==t||(t=0),t):t}function jn(e){var t,n,s,i,r,a,o=!1,u=e._f.length;if(0===u)return y(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;ithis?this:e:w()}));function Xn(e,t){var n,s;if(1===t.length&&r(t[0])&&(t=t[0]),!t.length)return Bn();for(n=t[0],s=1;sthis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function Ms(){if(!l(this._isDSTShifted))return this._isDSTShifted;var e,t={};return k(t,this),(t=zn(t))._a?(e=t._isUTC?m(t._a):Bn(t._a),this._isDSTShifted=this.isValid()&&ls(t._a,e.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted}function Ds(){return!!this.isValid()&&!this._isUTC}function Ss(){return!!this.isValid()&&this._isUTC}function Ys(){return!!this.isValid()&&this._isUTC&&0===this._offset}s.updateOffset=function(){};var Os=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,bs=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function xs(e,t){var n,s,i,r=e,a=null;return os(e)?r={ms:e._milliseconds,d:e._days,M:e._months}:h(e)||!isNaN(+e)?(r={},t?r[t]=+e:r.milliseconds=+e):(a=Os.exec(e))?(n="-"===a[1]?-1:1,r={y:0,d:he(a[Ze])*n,h:he(a[ze])*n,m:he(a[$e])*n,s:he(a[qe])*n,ms:he(us(1e3*a[Be]))*n}):(a=bs.exec(e))?(n="-"===a[1]?-1:1,r={y:Ts(a[2],n),M:Ts(a[3],n),w:Ts(a[4],n),d:Ts(a[5],n),h:Ts(a[6],n),m:Ts(a[7],n),s:Ts(a[8],n)}):null==r?r={}:"object"==typeof r&&("from"in r||"to"in r)&&(i=Ps(Bn(r.from),Bn(r.to)),(r={}).ms=i.milliseconds,r.M=i.months),s=new as(r),os(e)&&o(e,"_locale")&&(s._locale=e._locale),os(e)&&o(e,"_isValid")&&(s._isValid=e._isValid),s}function Ts(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function Ns(e,t){var n={};return n.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,"M"),n}function Ps(e,t){var n;return e.isValid()&&t.isValid()?(t=fs(t,e),e.isBefore(t)?n=Ns(e,t):((n=Ns(t,e)).milliseconds=-n.milliseconds,n.months=-n.months),n):{milliseconds:0,months:0}}function Rs(e,t){return function(n,s){var i;return null===s||isNaN(+s)||(x(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),i=n,n=s,s=i),Ws(this,xs(n,s),e),this}}function Ws(e,t,n,i){var r=t._milliseconds,a=us(t._days),o=us(t._months);e.isValid()&&(i=null==i||i,o&<(e,ce(e,"Month")+o*n),a&&fe(e,"Date",ce(e,"Date")+a*n),r&&e._d.setTime(e._d.valueOf()+r*n),i&&s.updateOffset(e,a||o))}xs.fn=as.prototype,xs.invalid=rs;var Cs=Rs(1,"add"),Us=Rs(-1,"subtract");function Hs(e){return"string"==typeof e||e instanceof String}function Fs(e){return D(e)||d(e)||Hs(e)||h(e)||Vs(e)||Ls(e)||null==e}function Ls(e){var t,n,s=a(e)&&!u(e),i=!1,r=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"],l=r.length;for(t=0;tn.valueOf():n.valueOf()9999?j(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):T(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",j(n,"Z")):j(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")}function ei(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e,t,n,s,i="moment",r="";return this.isLocal()||(i=0===this.utcOffset()?"moment.utc":"moment.parseZone",r="Z"),e="["+i+'("]',t=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",n="-MM-DD[T]HH:mm:ss.SSS",s=r+'[")]',this.format(e+t+n+s)}function ti(e){e||(e=this.isUtc()?s.defaultFormatUtc:s.defaultFormat);var t=j(this,e);return this.localeData().postformat(t)}function ni(e,t){return this.isValid()&&(D(e)&&e.isValid()||Bn(e).isValid())?xs({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function si(e){return this.from(Bn(),e)}function ii(e,t){return this.isValid()&&(D(e)&&e.isValid()||Bn(e).isValid())?xs({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function ri(e){return this.to(Bn(),e)}function ai(e){var t;return void 0===e?this._locale._abbr:(null!=(t=wn(e))&&(this._locale=t),this)}s.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",s.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var oi=Y("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",(function(e){return void 0===e?this.localeData():this.locale(e)}));function ui(){return this._locale}var li=1e3,hi=60*li,di=60*hi,ci=3506328*di;function fi(e,t){return(e%t+t)%t}function mi(e,t,n){return e<100&&e>=0?new Date(e+400,t,n)-ci:new Date(e,t,n).valueOf()}function _i(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-ci:Date.UTC(e,t,n)}function yi(e){var t,n;if(void 0===(e=se(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?_i:mi,e){case"year":t=n(this.year(),0,1);break;case"quarter":t=n(this.year(),this.month()-this.month()%3,1);break;case"month":t=n(this.year(),this.month(),1);break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=n(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=fi(t+(this._isUTC?0:this.utcOffset()*hi),di);break;case"minute":t=this._d.valueOf(),t-=fi(t,hi);break;case"second":t=this._d.valueOf(),t-=fi(t,li)}return this._d.setTime(t),s.updateOffset(this,!0),this}function gi(e){var t,n;if(void 0===(e=se(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?_i:mi,e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=di-fi(t+(this._isUTC?0:this.utcOffset()*hi),di)-1;break;case"minute":t=this._d.valueOf(),t+=hi-fi(t,hi)-1;break;case"second":t=this._d.valueOf(),t+=li-fi(t,li)-1}return this._d.setTime(t),s.updateOffset(this,!0),this}function wi(){return this._d.valueOf()-6e4*(this._offset||0)}function vi(){return Math.floor(this.valueOf()/1e3)}function pi(){return new Date(this.valueOf())}function ki(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function Mi(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function Di(){return this.isValid()?this.toISOString():null}function Si(){return g(this)}function Yi(){return f({},y(this))}function Oi(){return y(this).overflow}function bi(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function xi(e,t){var n,i,r,a=this._eras||wn("en")._eras;for(n=0,i=a.length;n=0)return u[s]}function Ni(e,t){var n=e.since<=e.until?1:-1;return void 0===t?s(e.since).year():s(e.since).year()+(t-e.offset)*n}function Pi(){var e,t,n,s=this.localeData().eras();for(e=0,t=s.length;e(r=Dt(e,s,i))&&(t=r),Qi.call(this,e,t,n,s,i))}function Qi(e,t,n,s,i){var r=kt(e,t,n,s,i),a=vt(r.year,0,r.dayOfYear);return this.year(a.getUTCFullYear()),this.month(a.getUTCMonth()),this.date(a.getUTCDate()),this}function Xi(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)}E("N",0,0,"eraAbbr"),E("NN",0,0,"eraAbbr"),E("NNN",0,0,"eraAbbr"),E("NNNN",0,0,"eraName"),E("NNNNN",0,0,"eraNarrow"),E("y",["y",1],"yo","eraYear"),E("y",["yy",2],0,"eraYear"),E("y",["yyy",3],0,"eraYear"),E("y",["yyyy",4],0,"eraYear"),Ce("N",Li),Ce("NN",Li),Ce("NNN",Li),Ce("NNNN",Vi),Ce("NNNNN",Ei),Ve(["N","NN","NNN","NNNN","NNNNN"],(function(e,t,n,s){var i=n._locale.erasParse(e,s,n._strict);i?y(n).era=i:y(n).invalidEra=e})),Ce("y",xe),Ce("yy",xe),Ce("yyy",xe),Ce("yyyy",xe),Ce("yo",Gi),Ve(["y","yy","yyy","yyyy"],je),Ve(["yo"],(function(e,t,n,s){var i;n._locale._eraYearOrdinalRegex&&(i=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[je]=n._locale.eraYearOrdinalParse(e,i):t[je]=parseInt(e,10)})),E(0,["gg",2],0,(function(){return this.weekYear()%100})),E(0,["GG",2],0,(function(){return this.isoWeekYear()%100})),ji("gggg","weekYear"),ji("ggggg","weekYear"),ji("GGGG","isoWeekYear"),ji("GGGGG","isoWeekYear"),ne("weekYear","gg"),ne("isoWeekYear","GG"),ae("weekYear",1),ae("isoWeekYear",1),Ce("G",Te),Ce("g",Te),Ce("GG",Me,we),Ce("gg",Me,we),Ce("GGGG",Oe,pe),Ce("gggg",Oe,pe),Ce("GGGGG",be,ke),Ce("ggggg",be,ke),Ee(["gggg","ggggg","GGGG","GGGGG"],(function(e,t,n,s){t[s.substr(0,2)]=he(e)})),Ee(["gg","GG"],(function(e,t,n,i){t[i]=s.parseTwoDigitYear(e)})),E("Q",0,"Qo","quarter"),ne("quarter","Q"),ae("quarter",7),Ce("Q",ge),Ve("Q",(function(e,t){t[Ie]=3*(he(e)-1)})),E("D",["DD",2],"Do","date"),ne("date","D"),ae("date",9),Ce("D",Me),Ce("DD",Me,we),Ce("Do",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),Ve(["D","DD"],Ze),Ve("Do",(function(e,t){t[Ze]=he(e.match(Me)[0])}));var Ki=de("Date",!0);function er(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")}E("DDD",["DDDD",3],"DDDo","dayOfYear"),ne("dayOfYear","DDD"),ae("dayOfYear",4),Ce("DDD",Ye),Ce("DDDD",ve),Ve(["DDD","DDDD"],(function(e,t,n){n._dayOfYear=he(e)})),E("m",["mm",2],0,"minute"),ne("minute","m"),ae("minute",14),Ce("m",Me),Ce("mm",Me,we),Ve(["m","mm"],$e);var tr=de("Minutes",!1);E("s",["ss",2],0,"second"),ne("second","s"),ae("second",15),Ce("s",Me),Ce("ss",Me,we),Ve(["s","ss"],qe);var nr,sr,ir=de("Seconds",!1);for(E("S",0,0,(function(){return~~(this.millisecond()/100)})),E(0,["SS",2],0,(function(){return~~(this.millisecond()/10)})),E(0,["SSS",3],0,"millisecond"),E(0,["SSSS",4],0,(function(){return 10*this.millisecond()})),E(0,["SSSSS",5],0,(function(){return 100*this.millisecond()})),E(0,["SSSSSS",6],0,(function(){return 1e3*this.millisecond()})),E(0,["SSSSSSS",7],0,(function(){return 1e4*this.millisecond()})),E(0,["SSSSSSSS",8],0,(function(){return 1e5*this.millisecond()})),E(0,["SSSSSSSSS",9],0,(function(){return 1e6*this.millisecond()})),ne("millisecond","ms"),ae("millisecond",16),Ce("S",Ye,ge),Ce("SS",Ye,we),Ce("SSS",Ye,ve),nr="SSSS";nr.length<=9;nr+="S")Ce(nr,xe);function rr(e,t){t[Be]=he(1e3*("0."+e))}for(nr="S";nr.length<=9;nr+="S")Ve(nr,rr);function ar(){return this._isUTC?"UTC":""}function or(){return this._isUTC?"Coordinated Universal Time":""}sr=de("Milliseconds",!1),E("z",0,0,"zoneAbbr"),E("zz",0,0,"zoneName");var ur=M.prototype;function lr(e){return Bn(1e3*e)}function hr(){return Bn.apply(null,arguments).parseZone()}function dr(e){return e}ur.add=Cs,ur.calendar=As,ur.clone=js,ur.diff=Js,ur.endOf=gi,ur.format=ti,ur.from=ni,ur.fromNow=si,ur.to=ii,ur.toNow=ri,ur.get=me,ur.invalidAt=Oi,ur.isAfter=Is,ur.isBefore=Zs,ur.isBetween=zs,ur.isSame=$s,ur.isSameOrAfter=qs,ur.isSameOrBefore=Bs,ur.isValid=Si,ur.lang=oi,ur.locale=ai,ur.localeData=ui,ur.max=Qn,ur.min=Jn,ur.parsingFlags=Yi,ur.set=_e,ur.startOf=yi,ur.subtract=Us,ur.toArray=ki,ur.toObject=Mi,ur.toDate=pi,ur.toISOString=Ks,ur.inspect=ei,"undefined"!=typeof Symbol&&null!=Symbol.for&&(ur[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"}),ur.toJSON=Di,ur.toString=Xs,ur.unix=vi,ur.valueOf=wi,ur.creationData=bi,ur.eraName=Pi,ur.eraNarrow=Ri,ur.eraAbbr=Wi,ur.eraYear=Ci,ur.year=yt,ur.isLeapYear=gt,ur.weekYear=Ii,ur.isoWeekYear=Zi,ur.quarter=ur.quarters=Xi,ur.month=ht,ur.daysInMonth=dt,ur.week=ur.weeks=xt,ur.isoWeek=ur.isoWeeks=Tt,ur.weeksInYear=qi,ur.weeksInWeekYear=Bi,ur.isoWeeksInYear=zi,ur.isoWeeksInISOWeekYear=$i,ur.date=Ki,ur.day=ur.days=It,ur.weekday=Zt,ur.isoWeekday=zt,ur.dayOfYear=er,ur.hour=ur.hours=sn,ur.minute=ur.minutes=tr,ur.second=ur.seconds=ir,ur.millisecond=ur.milliseconds=sr,ur.utcOffset=_s,ur.utc=gs,ur.local=ws,ur.parseZone=vs,ur.hasAlignedHourOffset=ps,ur.isDST=ks,ur.isLocal=Ds,ur.isUtcOffset=Ss,ur.isUtc=Ys,ur.isUTC=Ys,ur.zoneAbbr=ar,ur.zoneName=or,ur.dates=Y("dates accessor is deprecated. Use date instead.",Ki),ur.months=Y("months accessor is deprecated. Use month instead",ht),ur.years=Y("years accessor is deprecated. Use year instead",yt),ur.zone=Y("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",ys),ur.isDSTShifted=Y("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",Ms);var cr=R.prototype;function fr(e,t,n,s){var i=wn(),r=m().set(s,t);return i[n](r,e)}function mr(e,t,n){if(h(e)&&(t=e,e=void 0),e=e||"",null!=t)return fr(e,t,n,"month");var s,i=[];for(s=0;s<12;s++)i[s]=fr(e,s,n,"month");return i}function _r(e,t,n,s){"boolean"==typeof e?(h(t)&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,h(t)&&(n=t,t=void 0),t=t||"");var i,r=wn(),a=e?r._week.dow:0,o=[];if(null!=n)return fr(t,(n+a)%7,s,"day");for(i=0;i<7;i++)o[i]=fr(t,(i+a)%7,s,"day");return o}function yr(e,t){return mr(e,t,"months")}function gr(e,t){return mr(e,t,"monthsShort")}function wr(e,t,n){return _r(e,t,n,"weekdays")}function vr(e,t,n){return _r(e,t,n,"weekdaysShort")}function pr(e,t,n){return _r(e,t,n,"weekdaysMin")}cr.calendar=C,cr.longDateFormat=z,cr.invalidDate=q,cr.ordinal=Q,cr.preparse=dr,cr.postformat=dr,cr.relativeTime=K,cr.pastFuture=ee,cr.set=N,cr.eras=xi,cr.erasParse=Ti,cr.erasConvertYear=Ni,cr.erasAbbrRegex=Hi,cr.erasNameRegex=Ui,cr.erasNarrowRegex=Fi,cr.months=rt,cr.monthsShort=at,cr.monthsParse=ut,cr.monthsRegex=ft,cr.monthsShortRegex=ct,cr.week=St,cr.firstDayOfYear=bt,cr.firstDayOfWeek=Ot,cr.weekdays=Vt,cr.weekdaysMin=Gt,cr.weekdaysShort=Et,cr.weekdaysParse=jt,cr.weekdaysRegex=$t,cr.weekdaysShortRegex=qt,cr.weekdaysMinRegex=Bt,cr.isPM=tn,cr.meridiem=rn,_n("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===he(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),s.lang=Y("moment.lang is deprecated. Use moment.locale instead.",_n),s.langData=Y("moment.langData is deprecated. Use moment.localeData instead.",wn);var kr=Math.abs;function Mr(){var e=this._data;return this._milliseconds=kr(this._milliseconds),this._days=kr(this._days),this._months=kr(this._months),e.milliseconds=kr(e.milliseconds),e.seconds=kr(e.seconds),e.minutes=kr(e.minutes),e.hours=kr(e.hours),e.months=kr(e.months),e.years=kr(e.years),this}function Dr(e,t,n,s){var i=xs(t,n);return e._milliseconds+=s*i._milliseconds,e._days+=s*i._days,e._months+=s*i._months,e._bubble()}function Sr(e,t){return Dr(this,e,t,1)}function Yr(e,t){return Dr(this,e,t,-1)}function Or(e){return e<0?Math.floor(e):Math.ceil(e)}function br(){var e,t,n,s,i,r=this._milliseconds,a=this._days,o=this._months,u=this._data;return r>=0&&a>=0&&o>=0||r<=0&&a<=0&&o<=0||(r+=864e5*Or(Tr(o)+a),a=0,o=0),u.milliseconds=r%1e3,e=le(r/1e3),u.seconds=e%60,t=le(e/60),u.minutes=t%60,n=le(t/60),u.hours=n%24,a+=le(n/24),o+=i=le(xr(a)),a-=Or(Tr(i)),s=le(o/12),o%=12,u.days=a,u.months=o,u.years=s,this}function xr(e){return 4800*e/146097}function Tr(e){return 146097*e/4800}function Nr(e){if(!this.isValid())return NaN;var t,n,s=this._milliseconds;if("month"===(e=se(e))||"quarter"===e||"year"===e)switch(t=this._days+s/864e5,n=this._months+xr(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(Tr(this._months)),e){case"week":return t/7+s/6048e5;case"day":return t+s/864e5;case"hour":return 24*t+s/36e5;case"minute":return 1440*t+s/6e4;case"second":return 86400*t+s/1e3;case"millisecond":return Math.floor(864e5*t)+s;default:throw new Error("Unknown unit "+e)}}function Pr(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*he(this._months/12):NaN}function Rr(e){return function(){return this.as(e)}}var Wr=Rr("ms"),Cr=Rr("s"),Ur=Rr("m"),Hr=Rr("h"),Fr=Rr("d"),Lr=Rr("w"),Vr=Rr("M"),Er=Rr("Q"),Gr=Rr("y");function Ar(){return xs(this)}function jr(e){return e=se(e),this.isValid()?this[e+"s"]():NaN}function Ir(e){return function(){return this.isValid()?this._data[e]:NaN}}var Zr=Ir("milliseconds"),zr=Ir("seconds"),$r=Ir("minutes"),qr=Ir("hours"),Br=Ir("days"),Jr=Ir("months"),Qr=Ir("years");function Xr(){return le(this.days()/7)}var Kr=Math.round,ea={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function ta(e,t,n,s,i){return i.relativeTime(t||1,!!n,e,s)}function na(e,t,n,s){var i=xs(e).abs(),r=Kr(i.as("s")),a=Kr(i.as("m")),o=Kr(i.as("h")),u=Kr(i.as("d")),l=Kr(i.as("M")),h=Kr(i.as("w")),d=Kr(i.as("y")),c=r<=n.ss&&["s",r]||r0,c[4]=s,ta.apply(null,c)}function sa(e){return void 0===e?Kr:"function"==typeof e&&(Kr=e,!0)}function ia(e,t){return void 0!==ea[e]&&(void 0===t?ea[e]:(ea[e]=t,"s"===e&&(ea.ss=t-1),!0))}function ra(e,t){if(!this.isValid())return this.localeData().invalidDate();var n,s,i=!1,r=ea;return"object"==typeof e&&(t=e,e=!1),"boolean"==typeof e&&(i=e),"object"==typeof t&&(r=Object.assign({},ea,t),null!=t.s&&null==t.ss&&(r.ss=t.s-1)),s=na(this,!i,r,n=this.localeData()),i&&(s=n.pastFuture(+this,s)),n.postformat(s)}var aa=Math.abs;function oa(e){return(e>0)-(e<0)||+e}function ua(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n,s,i,r,a,o,u=aa(this._milliseconds)/1e3,l=aa(this._days),h=aa(this._months),d=this.asSeconds();return d?(e=le(u/60),t=le(e/60),u%=60,e%=60,n=le(h/12),h%=12,s=u?u.toFixed(3).replace(/\.?0+$/,""):"",i=d<0?"-":"",r=oa(this._months)!==oa(d)?"-":"",a=oa(this._days)!==oa(d)?"-":"",o=oa(this._milliseconds)!==oa(d)?"-":"",i+"P"+(n?r+n+"Y":"")+(h?r+h+"M":"")+(l?a+l+"D":"")+(t||e||u?"T":"")+(t?o+t+"H":"")+(e?o+e+"M":"")+(u?o+s+"S":"")):"P0D"}var la=as.prototype;return la.isValid=is,la.abs=Mr,la.add=Sr,la.subtract=Yr,la.as=Nr,la.asMilliseconds=Wr,la.asSeconds=Cr,la.asMinutes=Ur,la.asHours=Hr,la.asDays=Fr,la.asWeeks=Lr,la.asMonths=Vr,la.asQuarters=Er,la.asYears=Gr,la.valueOf=Pr,la._bubble=br,la.clone=Ar,la.get=jr,la.milliseconds=Zr,la.seconds=zr,la.minutes=$r,la.hours=qr,la.days=Br,la.weeks=Xr,la.months=Jr,la.years=Qr,la.humanize=ra,la.toISOString=ua,la.toString=ua,la.toJSON=ua,la.locale=ai,la.localeData=ui,la.toIsoString=Y("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",ua),la.lang=oi,E("X",0,0,"unix"),E("x",0,0,"valueOf"),Ce("x",Te),Ce("X",Re),Ve("X",(function(e,t,n){n._d=new Date(1e3*parseFloat(e))})),Ve("x",(function(e,t,n){n._d=new Date(he(e))})),s.version="2.29.4",i(Bn),s.fn=ur,s.min=Kn,s.max=es,s.now=ts,s.utc=m,s.unix=lr,s.months=yr,s.isDate=d,s.locale=_n,s.invalid=w,s.duration=xs,s.isMoment=D,s.weekdays=wr,s.parseZone=hr,s.localeData=wn,s.isDuration=os,s.monthsShort=gr,s.weekdaysMin=pr,s.defineLocale=yn,s.updateLocale=gn,s.locales=vn,s.weekdaysShort=vr,s.normalizeUnits=se,s.relativeTimeRounding=sa,s.relativeTimeThreshold=ia,s.calendarFormat=Gs,s.prototype=ur,s.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},s}()}}]); \ No newline at end of file diff --git a/public/component---src-pages-research-reading-js-9430ace501ea93dfa4a4.js.LICENSE.txt b/public/75fc9c18.js.LICENSE.txt similarity index 100% rename from public/component---src-pages-research-reading-js-9430ace501ea93dfa4a4.js.LICENSE.txt rename to public/75fc9c18.js.LICENSE.txt diff --git a/public/976.js b/public/976.js new file mode 100644 index 0000000000..0c143e2a65 --- /dev/null +++ b/public/976.js @@ -0,0 +1,2 @@ +/*! For license information please see 976.js.LICENSE.txt */ +(self.webpackChunkjonaso_de=self.webpackChunkjonaso_de||[]).push([[976],{296:function(t){function n(t,n,e){var r,i,o,a,u;function s(){var l=Date.now()-a;l=0?r=setTimeout(s,n-l):(r=null,e||(u=t.apply(o,i),o=i=null))}null==n&&(n=100);var l=function(){o=this,i=arguments,a=Date.now();var l=e&&!r;return r||(r=setTimeout(s,n)),l&&(u=t.apply(o,i),o=i=null),u};return l.clear=function(){r&&(clearTimeout(r),r=null)},l.flush=function(){r&&(u=t.apply(o,i),o=i=null,clearTimeout(r),r=null)},l}n.debounce=n,t.exports=n},3405:function(t){t.exports=function(t){return[...t].reduce(((t,[n,e])=>(t[n]=e,t)),{})}},3096:function(t,n,e){var r="Expected a function",i=NaN,o="[object Symbol]",a=/^\s+|\s+$/g,u=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,l=/^0o[0-7]+$/i,c=parseInt,h="object"==typeof e.g&&e.g&&e.g.Object===Object&&e.g,f="object"==typeof self&&self&&self.Object===Object&&self,d=h||f||Function("return this")(),p=Object.prototype.toString,g=Math.max,y=Math.min,v=function(){return d.Date.now()};function m(t,n,e){var i,o,a,u,s,l,c=0,h=!1,f=!1,d=!0;if("function"!=typeof t)throw new TypeError(r);function p(n){var e=i,r=o;return i=o=void 0,c=n,u=t.apply(r,e)}function m(t){var e=t-l;return void 0===l||e>=n||e<0||f&&t-c>=a}function b(){var t=v();if(m(t))return w(t);s=setTimeout(b,function(t){var e=n-(t-l);return f?y(e,a-(t-c)):e}(t))}function w(t){return s=void 0,d&&i?p(t):(i=o=void 0,u)}function k(){var t=v(),e=m(t);if(i=arguments,o=this,l=t,e){if(void 0===s)return function(t){return c=t,s=setTimeout(b,n),h?p(t):u}(l);if(f)return s=setTimeout(b,n),p(l)}return void 0===s&&(s=setTimeout(b,n)),u}return n=x(n)||0,_(e)&&(h=!!e.leading,a=(f="maxWait"in e)?g(x(e.maxWait)||0,n):a,d="trailing"in e?!!e.trailing:d),k.cancel=function(){void 0!==s&&clearTimeout(s),c=0,i=l=o=s=void 0},k.flush=function(){return void 0===s?u:w(v())},k}function _(t){var n=typeof t;return!!t&&("object"==n||"function"==n)}function x(t){if("number"==typeof t)return t;if(function(t){return"symbol"==typeof t||function(t){return!!t&&"object"==typeof t}(t)&&p.call(t)==o}(t))return i;if(_(t)){var n="function"==typeof t.valueOf?t.valueOf():t;t=_(n)?n+"":n}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(a,"");var e=s.test(t);return e||l.test(t)?c(t.slice(2),e?2:8):u.test(t)?i:+t}t.exports=function(t,n,e){var i=!0,o=!0;if("function"!=typeof t)throw new TypeError(r);return _(e)&&(i="leading"in e?!!e.leading:i,o="trailing"in e?!!e.trailing:o),m(t,n,{leading:i,maxWait:n,trailing:o})}},4976:function(n,e,r){"use strict";r.r(e),r.d(e,{default:function(){return Lo}});var i=r(7294);function o(t,n,e){return n in t?Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[n]=e,t}function a(t,n){return function(t){if(Array.isArray(t))return t}(t)||function(t,n){var e=t&&("undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"]);if(null==e)return;var r,i,o=[],a=!0,u=!1;try{for(e=e.call(t);!(a=(r=e.next()).done)&&(o.push(r.value),!n||o.length!==n);a=!0);}catch(s){u=!0,i=s}finally{try{a||null==e.return||e.return()}finally{if(u)throw i}}return o}(t,n)||s(t,n)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(t){return function(t){if(Array.isArray(t))return l(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||s(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(t,n){if(t){if("string"==typeof t)return l(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);return"Object"===e&&t.constructor&&(e=t.constructor.name),"Map"===e||"Set"===e?Array.from(t):"Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?l(t,n):void 0}}function l(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);et.length)&&(n=t.length);for(var e=0,r=new Array(n);en?1:t>=n?0:NaN}E.prototype={constructor:E,appendChild:function(t){return this._parent.insertBefore(t,this._next)},insertBefore:function(t,n){return this._parent.insertBefore(t,n)},querySelector:function(t){return this._parent.querySelector(t)},querySelectorAll:function(t){return this._parent.querySelectorAll(t)}};var D="http://www.w3.org/1999/xhtml",I={svg:"http://www.w3.org/2000/svg",xhtml:D,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function U(t){var n=t+="",e=n.indexOf(":");return e>=0&&"xmlns"!==(n=t.slice(0,e))&&(t=t.slice(e+1)),I.hasOwnProperty(n)?{space:I[n],local:t}:t}function F(t){return function(){this.removeAttribute(t)}}function L(t){return function(){this.removeAttributeNS(t.space,t.local)}}function B(t,n){return function(){this.setAttribute(t,n)}}function q(t,n){return function(){this.setAttributeNS(t.space,t.local,n)}}function H(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttribute(t):this.setAttribute(t,e)}}function V(t,n){return function(){var e=n.apply(this,arguments);null==e?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,e)}}function G(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView}function Z(t){return function(){this.style.removeProperty(t)}}function X(t,n,e){return function(){this.style.setProperty(t,n,e)}}function Y(t,n,e){return function(){var r=n.apply(this,arguments);null==r?this.style.removeProperty(t):this.style.setProperty(t,r,e)}}function W(t,n){return t.style.getPropertyValue(n)||G(t).getComputedStyle(t,null).getPropertyValue(n)}function $(t){return function(){delete this[t]}}function Q(t,n){return function(){this[t]=n}}function K(t,n){return function(){var e=n.apply(this,arguments);null==e?delete this[t]:this[t]=e}}function J(t){return t.trim().split(/^|\s+/)}function tt(t){return t.classList||new nt(t)}function nt(t){this._node=t,this._names=J(t.getAttribute("class")||"")}function et(t,n){for(var e=tt(t),r=-1,i=n.length;++r=0&&(this._names.splice(n,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};var St=[null];function Ct(t,n){this._groups=t,this._parents=n}function Ot(){return new Ct([[document.documentElement]],St)}Ct.prototype=Ot.prototype={constructor:Ct,select:function(t){"function"!=typeof t&&(t=_(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i=x&&(x=_+1);!(m=y[x])&&++x=0;)(r=i[o])&&(a&&4^r.compareDocumentPosition(a)&&a.parentNode.insertBefore(r,a),a=r);return this},sort:function(t){function n(n,e){return n&&e?t(n.__data__,e.__data__):!n-!e}t||(t=R);for(var e=this._groups,r=e.length,i=new Array(r),o=0;o1?this.each((null==n?Z:"function"==typeof n?Y:X)(t,n,null==e?"":e)):W(this.node(),t)},property:function(t,n){return arguments.length>1?this.each((null==n?$:"function"==typeof n?K:Q)(t,n)):this.node()[t]},classed:function(t,n){var e=J(t+"");if(arguments.length<2){for(var r=tt(this.node()),i=-1,o=e.length;++i=0&&(n=t.slice(e+1),t=t.slice(0,e)),{type:t,name:n}}))}(t+""),a=o.length;if(!(arguments.length<2)){for(u=n?kt:wt,r=0;r{}};function Nt(){for(var t,n=0,e=arguments.length,r={};n=0&&(n=t.slice(e+1),t=t.slice(0,e)),t&&!r.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:n}}))),a=-1,u=o.length;if(!(arguments.length<2)){if(null!=n&&"function"!=typeof n)throw new Error("invalid callback: "+n);for(;++a0)for(var e,r,i=new Array(e),o=0;o=0&&n._call.call(void 0,t),n=n._next;--Wt}()}finally{Wt=0,function(){var t,n,e=Xt,r=1/0;for(;e;)e._call?(r>e._time&&(r=e._time),t=e,e=e._next):(n=e._next,e._next=null,e=t?t._next=n:Xt=n);Yt=t,hn(r)}(),tn=0}}function cn(){var t=en.now(),n=t-Jt;n>Kt&&(nn-=n,Jt=t)}function hn(t){Wt||($t&&($t=clearTimeout($t)),t-tn>24?(t<1/0&&($t=setTimeout(ln,t-en.now()-nn)),Qt&&(Qt=clearInterval(Qt))):(Qt||(Jt=en.now(),Qt=setInterval(cn,Kt)),Wt=1,rn(ln)))}function fn(t,n,e){var r=new un;return n=null==n?0:+n,r.restart((e=>{r.stop(),t(e+n)}),n,e),r}un.prototype=sn.prototype={constructor:un,restart:function(t,n,e){if("function"!=typeof t)throw new TypeError("callback is not a function");e=(null==e?on():+e)+(null==n?0:+n),this._next||Yt===this||(Yt?Yt._next=this:Xt=this,Yt=this),this._call=t,this._time=e,hn()},stop:function(){this._call&&(this._call=null,this._time=1/0,hn())}};var dn=It("start","end","cancel","interrupt"),pn=[],gn=0,yn=1,vn=2,mn=3,_n=4,xn=5,bn=6;function wn(t,n,e,r,i,o){var a=t.__transition;if(a){if(e in a)return}else t.__transition={};!function(t,n,e){var r,i=t.__transition;function o(t){e.state=yn,e.timer.restart(a,e.delay,e.time),e.delay<=t&&a(t-e.delay)}function a(o){var l,c,h,f;if(e.state!==yn)return s();for(l in i)if((f=i[l]).name===e.name){if(f.state===mn)return fn(a);f.state===_n?(f.state=bn,f.timer.stop(),f.on.call("interrupt",t,t.__data__,f.index,f.group),delete i[l]):+lgn)throw new Error("too late; already scheduled");return e}function An(t,n){var e=zn(t,n);if(e.state>mn)throw new Error("too late; already running");return e}function zn(t,n){var e=t.__transition;if(!e||!(e=e[n]))throw new Error("transition not found");return e}function Mn(t,n){var e,r,i,o=t.__transition,a=!0;if(o){for(i in n=null==n?null:n+"",o)(e=o[i]).name===n?(r=e.state>vn&&e.state180?n+=360:n-t>180&&(t+=360),o.push({i:e.push(i(e)+"rotate(",null,r)-2,x:(0,Cn.Z)(t,n)})):n&&e.push(i(e)+"rotate("+n+r)}(o.rotate,a.rotate,u,s),function(t,n,e,o){t!==n?o.push({i:e.push(i(e)+"skewX(",null,r)-2,x:(0,Cn.Z)(t,n)}):n&&e.push(i(e)+"skewX("+n+r)}(o.skewX,a.skewX,u,s),function(t,n,e,r,o,a){if(t!==e||n!==r){var u=o.push(i(o)+"scale(",null,",",null,")");a.push({i:u-4,x:(0,Cn.Z)(t,e)},{i:u-2,x:(0,Cn.Z)(n,r)})}else 1===e&&1===r||o.push(i(o)+"scale("+e+","+r+")")}(o.scaleX,o.scaleY,a.scaleX,a.scaleY,u,s),o=a=null,function(t){for(var n,e=-1,r=s.length;++e=0&&(t=t.slice(0,n)),!t||"start"===t}))}(n)?kn:An;return function(){var a=o(this,t),u=a.on;u!==r&&(i=(r=u).copy()).on(n,e),a.on=i}}(e,t,n))},attr:function(t,n){var e=U(t),r="transform"===e?jn:Bn;return this.attrTween(t,"function"==typeof n?(e.local?Xn:Zn)(e,r,In(this,"attr."+t,n)):null==n?(e.local?Hn:qn)(e):(e.local?Gn:Vn)(e,r,n))},attrTween:function(t,n){var e="attr."+t;if(arguments.length<2)return(e=this.tween(e))&&e._value;if(null==n)return this.tween(e,null);if("function"!=typeof n)throw new Error;var r=U(t);return this.tween(e,(r.local?Yn:Wn)(r,n))},style:function(t,n,e){var r="transform"==(t+="")?Nn:Bn;return null==n?this.styleTween(t,function(t,n){var e,r,i;return function(){var o=W(this,t),a=(this.style.removeProperty(t),W(this,t));return o===a?null:o===e&&a===r?i:i=n(e=o,r=a)}}(t,r)).on("end.style."+t,ne(t)):"function"==typeof n?this.styleTween(t,function(t,n,e){var r,i,o;return function(){var a=W(this,t),u=e(this),s=u+"";return null==u&&(this.style.removeProperty(t),s=u=W(this,t)),a===s?null:a===r&&s===i?o:(i=s,o=n(r=a,u))}}(t,r,In(this,"style."+t,n))).each(function(t,n){var e,r,i,o,a="style."+n,u="end."+a;return function(){var s=An(this,t),l=s.on,c=null==s.value[a]?o||(o=ne(n)):void 0;l===e&&i===c||(r=(e=l).copy()).on(u,i=c),s.on=r}}(this._id,t)):this.styleTween(t,function(t,n,e){var r,i,o=e+"";return function(){var a=W(this,t);return a===o?null:a===r?i:i=n(r=a,e)}}(t,r,n),e).on("end.style."+t,null)},styleTween:function(t,n,e){var r="style."+(t+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(null==n)return this.tween(r,null);if("function"!=typeof n)throw new Error;return this.tween(r,function(t,n,e){var r,i;function o(){var o=n.apply(this,arguments);return o!==i&&(r=(i=o)&&function(t,n,e){return function(r){this.style.setProperty(t,n.call(this,r),e)}}(t,o,e)),r}return o._value=n,o}(t,n,null==e?"":e))},text:function(t){return this.tween("text","function"==typeof t?function(t){return function(){var n=t(this);this.textContent=null==n?"":n}}(In(this,"text",t)):function(t){return function(){this.textContent=t}}(null==t?"":t+""))},textTween:function(t){var n="text";if(arguments.length<1)return(n=this.tween(n))&&n._value;if(null==t)return this.tween(n,null);if("function"!=typeof t)throw new Error;return this.tween(n,function(t){var n,e;function r(){var r=t.apply(this,arguments);return r!==e&&(n=(e=r)&&function(t){return function(n){this.textContent=t.call(this,n)}}(r)),n}return r._value=t,r}(t))},remove:function(){return this.on("end.remove",function(t){return function(){var n=this.parentNode;for(var e in this.__transition)if(+e!==t)return;n&&n.removeChild(this)}}(this._id))},tween:function(t,n){var e=this._id;if(t+="",arguments.length<2){for(var r,i=zn(this.node(),e).tween,o=0,a=i.length;o()=>t;function le(t,{sourceEvent:n,target:e,transform:r,dispatch:i}){Object.defineProperties(this,{type:{value:t,enumerable:!0,configurable:!0},sourceEvent:{value:n,enumerable:!0,configurable:!0},target:{value:e,enumerable:!0,configurable:!0},transform:{value:r,enumerable:!0,configurable:!0},_:{value:i}})}function ce(t,n,e){this.k=t,this.x=n,this.y=e}ce.prototype={constructor:ce,scale:function(t){return 1===t?this:new ce(this.k*t,this.x,this.y)},translate:function(t,n){return 0===t&0===n?this:new ce(this.k,this.x+this.k*t,this.y+this.k*n)},apply:function(t){return[t[0]*this.k+this.x,t[1]*this.k+this.y]},applyX:function(t){return t*this.k+this.x},applyY:function(t){return t*this.k+this.y},invert:function(t){return[(t[0]-this.x)/this.k,(t[1]-this.y)/this.k]},invertX:function(t){return(t-this.x)/this.k},invertY:function(t){return(t-this.y)/this.k},rescaleX:function(t){return t.copy().domain(t.range().map(this.invertX,this).map(t.invert,t))},rescaleY:function(t){return t.copy().domain(t.range().map(this.invertY,this).map(t.invert,t))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var he=new ce(1,0,0);function fe(t){for(;!t.__zoom;)if(!(t=t.parentNode))return he;return t.__zoom}function de(t){t.stopImmediatePropagation()}function pe(t){t.preventDefault(),t.stopImmediatePropagation()}function ge(t){return!(t.ctrlKey&&"wheel"!==t.type||t.button)}function ye(){var t=this;return t instanceof SVGElement?(t=t.ownerSVGElement||t).hasAttribute("viewBox")?[[(t=t.viewBox.baseVal).x,t.y],[t.x+t.width,t.y+t.height]]:[[0,0],[t.width.baseVal.value,t.height.baseVal.value]]:[[0,0],[t.clientWidth,t.clientHeight]]}function ve(){return this.__zoom||he}function me(t){return-t.deltaY*(1===t.deltaMode?.05:t.deltaMode?1:.002)*(t.ctrlKey?10:1)}function _e(){return navigator.maxTouchPoints||"ontouchstart"in this}function xe(t,n,e){var r=t.invertX(n[0][0])-e[0][0],i=t.invertX(n[1][0])-e[1][0],o=t.invertY(n[0][1])-e[0][1],a=t.invertY(n[1][1])-e[1][1];return t.translate(i>r?(r+i)/2:Math.min(0,r)||Math.max(0,i),a>o?(o+a)/2:Math.min(0,o)||Math.max(0,a))}function be(){var t,n,e,r=ge,i=ye,o=xe,a=me,u=_e,s=[0,1/0],l=[[-1/0,-1/0],[1/0,1/0]],c=250,h=Gt,f=It("start","zoom","end"),d=500,p=150,g=0,y=10;function v(t){t.property("__zoom",ve).on("wheel.zoom",A,{passive:!1}).on("mousedown.zoom",z).on("dblclick.zoom",M).filter(u).on("touchstart.zoom",S).on("touchmove.zoom",C).on("touchend.zoom touchcancel.zoom",O).style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function m(t,n){return(n=Math.max(s[0],Math.min(s[1],n)))===t.k?t:new ce(n,t.x,t.y)}function _(t,n,e){var r=n[0]-e[0]*t.k,i=n[1]-e[1]*t.k;return r===t.x&&i===t.y?t:new ce(t.k,r,i)}function x(t){return[(+t[0][0]+ +t[1][0])/2,(+t[0][1]+ +t[1][1])/2]}function b(t,n,e,r){t.on("start.zoom",(function(){w(this,arguments).event(r).start()})).on("interrupt.zoom end.zoom",(function(){w(this,arguments).event(r).end()})).tween("zoom",(function(){var t=this,o=arguments,a=w(t,o).event(r),u=i.apply(t,o),s=null==e?x(u):"function"==typeof e?e.apply(t,o):e,l=Math.max(u[1][0]-u[0][0],u[1][1]-u[0][1]),c=t.__zoom,f="function"==typeof n?n.apply(t,o):n,d=h(c.invert(s).concat(l/c.k),f.invert(s).concat(l/f.k));return function(t){if(1===t)t=f;else{var n=d(t),e=l/n[2];t=new ce(e,s[0]-n[0]*e,s[1]-n[1]*e)}a.zoom(null,t)}}))}function w(t,n,e){return!e&&t.__zooming||new k(t,n)}function k(t,n){this.that=t,this.args=n,this.active=0,this.sourceEvent=null,this.extent=i.apply(t,n),this.taps=0}function A(t,...n){if(r.apply(this,arguments)){var e=w(this,n).event(t),i=this.__zoom,u=Math.max(s[0],Math.min(s[1],i.k*Math.pow(2,a.apply(this,arguments)))),c=Zt(t);if(e.wheel)e.mouse[0][0]===c[0]&&e.mouse[0][1]===c[1]||(e.mouse[1]=i.invert(e.mouse[0]=c)),clearTimeout(e.wheel);else{if(i.k===u)return;e.mouse=[c,i.invert(c)],Mn(this),e.start()}pe(t),e.wheel=setTimeout((function(){e.wheel=null,e.end()}),p),e.zoom("mouse",o(_(m(i,u),e.mouse[0],e.mouse[1]),e.extent,l))}}function z(t,...n){if(!e&&r.apply(this,arguments)){var i=t.currentTarget,a=w(this,n,!0).event(t),u=Pt(t.view).on("mousemove.zoom",(function(t){if(pe(t),!a.moved){var n=t.clientX-c,e=t.clientY-h;a.moved=n*n+e*e>g}a.event(t).zoom("mouse",o(_(a.that.__zoom,a.mouse[0]=Zt(t,i),a.mouse[1]),a.extent,l))}),!0).on("mouseup.zoom",(function(t){u.on("mousemove.zoom mouseup.zoom",null),Ht(t.view,a.moved),pe(t),a.event(t).end()}),!0),s=Zt(t,i),c=t.clientX,h=t.clientY;qt(t.view),de(t),a.mouse=[s,this.__zoom.invert(s)],Mn(this),a.start()}}function M(t,...n){if(r.apply(this,arguments)){var e=this.__zoom,a=Zt(t.changedTouches?t.changedTouches[0]:t,this),u=e.invert(a),s=e.k*(t.shiftKey?.5:2),h=o(_(m(e,s),a,u),i.apply(this,n),l);pe(t),c>0?Pt(this).transition().duration(c).call(b,h,a,t):Pt(this).call(v.transform,h,a,t)}}function S(e,...i){if(r.apply(this,arguments)){var o,a,u,s,l=e.touches,c=l.length,h=w(this,i,e.changedTouches.length===c).event(e);for(de(e),a=0;a()=>t;function ke(t,{sourceEvent:n,subject:e,target:r,identifier:i,active:o,x:a,y:u,dx:s,dy:l,dispatch:c}){Object.defineProperties(this,{type:{value:t,enumerable:!0,configurable:!0},sourceEvent:{value:n,enumerable:!0,configurable:!0},subject:{value:e,enumerable:!0,configurable:!0},target:{value:r,enumerable:!0,configurable:!0},identifier:{value:i,enumerable:!0,configurable:!0},active:{value:o,enumerable:!0,configurable:!0},x:{value:a,enumerable:!0,configurable:!0},y:{value:u,enumerable:!0,configurable:!0},dx:{value:s,enumerable:!0,configurable:!0},dy:{value:l,enumerable:!0,configurable:!0},_:{value:c}})}function Ae(t){return!t.ctrlKey&&!t.button}function ze(){return this.parentNode}function Me(t,n){return null==n?{x:t.x,y:t.y}:n}function Se(){return navigator.maxTouchPoints||"ontouchstart"in this}ke.prototype.on=function(){var t=this._.on.apply(this._,arguments);return t===this._?this:t};var Ce=r(8398),Oe=r(2400),Ee=r(3096),Pe=r.n(Ee),Te={Linear:{None:function(t){return t}},Quadratic:{In:function(t){return t*t},Out:function(t){return t*(2-t)},InOut:function(t){return(t*=2)<1?.5*t*t:-.5*(--t*(t-2)-1)}},Cubic:{In:function(t){return t*t*t},Out:function(t){return--t*t*t+1},InOut:function(t){return(t*=2)<1?.5*t*t*t:.5*((t-=2)*t*t+2)}},Quartic:{In:function(t){return t*t*t*t},Out:function(t){return 1- --t*t*t*t},InOut:function(t){return(t*=2)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2)}},Quintic:{In:function(t){return t*t*t*t*t},Out:function(t){return--t*t*t*t*t+1},InOut:function(t){return(t*=2)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)}},Sinusoidal:{In:function(t){return 1-Math.cos(t*Math.PI/2)},Out:function(t){return Math.sin(t*Math.PI/2)},InOut:function(t){return.5*(1-Math.cos(Math.PI*t))}},Exponential:{In:function(t){return 0===t?0:Math.pow(1024,t-1)},Out:function(t){return 1===t?1:1-Math.pow(2,-10*t)},InOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?.5*Math.pow(1024,t-1):.5*(2-Math.pow(2,-10*(t-1)))}},Circular:{In:function(t){return 1-Math.sqrt(1-t*t)},Out:function(t){return Math.sqrt(1- --t*t)},InOut:function(t){return(t*=2)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)}},Elastic:{In:function(t){return 0===t?0:1===t?1:-Math.pow(2,10*(t-1))*Math.sin(5*(t-1.1)*Math.PI)},Out:function(t){return 0===t?0:1===t?1:Math.pow(2,-10*t)*Math.sin(5*(t-.1)*Math.PI)+1},InOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?-.5*Math.pow(2,10*(t-1))*Math.sin(5*(t-1.1)*Math.PI):.5*Math.pow(2,-10*(t-1))*Math.sin(5*(t-1.1)*Math.PI)+1}},Back:{In:function(t){var n=1.70158;return t*t*((n+1)*t-n)},Out:function(t){var n=1.70158;return--t*t*((n+1)*t+n)+1},InOut:function(t){var n=2.5949095;return(t*=2)<1?t*t*((n+1)*t-n)*.5:.5*((t-=2)*t*((n+1)*t+n)+2)}},Bounce:{In:function(t){return 1-Te.Bounce.Out(1-t)},Out:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},InOut:function(t){return t<.5?.5*Te.Bounce.In(2*t):.5*Te.Bounce.Out(2*t-1)+.5}}},Ne="undefined"==typeof self&&"undefined"!=typeof process&&process.hrtime?function(){var t=process.hrtime();return 1e3*t[0]+t[1]/1e6}:"undefined"!=typeof self&&void 0!==self.performance&&void 0!==self.performance.now?self.performance.now.bind(self.performance):void 0!==Date.now?Date.now:function(){return(new Date).getTime()},je=function(){function t(){this._tweens={},this._tweensAddedDuringUpdate={}}return t.prototype.getAll=function(){var t=this;return Object.keys(this._tweens).map((function(n){return t._tweens[n]}))},t.prototype.removeAll=function(){this._tweens={}},t.prototype.add=function(t){this._tweens[t.getId()]=t,this._tweensAddedDuringUpdate[t.getId()]=t},t.prototype.remove=function(t){delete this._tweens[t.getId()],delete this._tweensAddedDuringUpdate[t.getId()]},t.prototype.update=function(t,n){void 0===t&&(t=Ne()),void 0===n&&(n=!1);var e=Object.keys(this._tweens);if(0===e.length)return!1;for(;e.length>0;){this._tweensAddedDuringUpdate={};for(var r=0;r1?o(t[e],t[e-1],e-r):o(t[i],t[i+1>e?e:i+1],r-i)},Bezier:function(t,n){for(var e=0,r=t.length-1,i=Math.pow,o=Re.Utils.Bernstein,a=0;a<=r;a++)e+=i(1-n,r-a)*i(n,a)*t[a]*o(r,a);return e},CatmullRom:function(t,n){var e=t.length-1,r=e*n,i=Math.floor(r),o=Re.Utils.CatmullRom;return t[0]===t[e]?(n<0&&(i=Math.floor(r=e*(1+n))),o(t[(i-1+e)%e],t[i],t[(i+1)%e],t[(i+2)%e],r-i)):n<0?t[0]-(o(t[0],t[0],t[1],t[1],-r)-t[0]):n>1?t[e]-(o(t[e],t[e],t[e-1],t[e-1],r-e)-t[e]):o(t[i?i-1:0],t[i],t[e1;r--)e*=r;return t[n]=e,e}}(),CatmullRom:function(t,n,e,r,i){var o=.5*(e-t),a=.5*(r-n),u=i*i;return(2*n-2*e+o+a)*(i*u)+(-3*n+3*e-2*o-a)*u+o*i+n}}},De=function(){function t(){}return t.nextId=function(){return t._nextId++},t._nextId=0,t}(),Ie=new je,Ue=function(){function t(t,n){void 0===n&&(n=Ie),this._object=t,this._group=n,this._isPaused=!1,this._pauseStart=0,this._valuesStart={},this._valuesEnd={},this._valuesStartRepeat={},this._duration=1e3,this._initialRepeat=0,this._repeat=0,this._yoyo=!1,this._isPlaying=!1,this._reversed=!1,this._delayTime=0,this._startTime=0,this._easingFunction=Te.Linear.None,this._interpolationFunction=Re.Linear,this._chainedTweens=[],this._onStartCallbackFired=!1,this._id=De.nextId(),this._isChainStopped=!1,this._goToEnd=!1}return t.prototype.getId=function(){return this._id},t.prototype.isPlaying=function(){return this._isPlaying},t.prototype.isPaused=function(){return this._isPaused},t.prototype.to=function(t,n){return this._valuesEnd=Object.create(t),void 0!==n&&(this._duration=n),this},t.prototype.duration=function(t){return this._duration=t,this},t.prototype.start=function(t){if(this._isPlaying)return this;if(this._group&&this._group.add(this),this._repeat=this._initialRepeat,this._reversed)for(var n in this._reversed=!1,this._valuesStartRepeat)this._swapEndStartRepeatValues(n),this._valuesStart[n]=this._valuesStartRepeat[n];return this._isPlaying=!0,this._isPaused=!1,this._onStartCallbackFired=!1,this._isChainStopped=!1,this._startTime=void 0!==t?"string"==typeof t?Ne()+parseFloat(t):t:Ne(),this._startTime+=this._delayTime,this._setupProperties(this._object,this._valuesStart,this._valuesEnd,this._valuesStartRepeat),this},t.prototype._setupProperties=function(t,n,e,r){for(var i in e){var o=t[i],a=Array.isArray(o),u=a?"array":typeof o,s=!a&&Array.isArray(e[i]);if("undefined"!==u&&"function"!==u){if(s){var l=e[i];if(0===l.length)continue;l=l.map(this._handleRelativeValue.bind(this,o)),e[i]=[o].concat(l)}if("object"!==u&&!a||!o||s)void 0===n[i]&&(n[i]=o),a||(n[i]*=1),r[i]=s?e[i].slice().reverse():n[i]||0;else{for(var c in n[i]=a?[]:{},o)n[i][c]=o[c];r[i]=a?[]:{},this._setupProperties(o,n[i],e[i],r[i])}}}},t.prototype.stop=function(){return this._isChainStopped||(this._isChainStopped=!0,this.stopChainedTweens()),this._isPlaying?(this._group&&this._group.remove(this),this._isPlaying=!1,this._isPaused=!1,this._onStopCallback&&this._onStopCallback(this._object),this):this},t.prototype.end=function(){return this._goToEnd=!0,this.update(1/0),this},t.prototype.pause=function(t){return void 0===t&&(t=Ne()),this._isPaused||!this._isPlaying||(this._isPaused=!0,this._pauseStart=t,this._group&&this._group.remove(this)),this},t.prototype.resume=function(t){return void 0===t&&(t=Ne()),this._isPaused&&this._isPlaying?(this._isPaused=!1,this._startTime+=t-this._pauseStart,this._pauseStart=0,this._group&&this._group.add(this),this):this},t.prototype.stopChainedTweens=function(){for(var t=0,n=this._chainedTweens.length;ti)return!1;n&&this.start(t)}if(this._goToEnd=!1,t1?1:r;var o=this._easingFunction(r);if(this._updateProperties(this._object,this._valuesStart,this._valuesEnd,o),this._onUpdateCallback&&this._onUpdateCallback(this._object,r),1===r){if(this._repeat>0){for(e in isFinite(this._repeat)&&this._repeat--,this._valuesStartRepeat)this._yoyo||"string"!=typeof this._valuesEnd[e]||(this._valuesStartRepeat[e]=this._valuesStartRepeat[e]+parseFloat(this._valuesEnd[e])),this._yoyo&&this._swapEndStartRepeatValues(e),this._valuesStart[e]=this._valuesStartRepeat[e];return this._yoyo&&(this._reversed=!this._reversed),void 0!==this._repeatDelayTime?this._startTime=t+this._repeatDelayTime:this._startTime=t+this._delayTime,this._onRepeatCallback&&this._onRepeatCallback(this._object),!0}this._onCompleteCallback&&this._onCompleteCallback(this._object);for(var a=0,u=this._chainedTweens.length;at.length)&&(n=t.length);for(var e=0,r=new Array(n);e0&&void 0!==arguments[0]?arguments[0]:{},n=Object.assign({},e instanceof Function?e(t):e,{initialised:!1}),r={};function i(n){return o(n,t),u(),i}var o=function(t,e){c.call(i,t,n,e),n.initialised=!0},u=Ye()((function(){n.initialised&&(f.call(i,n,r),r={})}),1);return d.forEach((function(t){i[t.name]=function(t){var e=t.name,o=t.triggerUpdate,a=void 0!==o&&o,s=t.onChange,l=void 0===s?function(t,n){}:s,c=t.defaultVal,h=void 0===c?null:c;return function(t){var o=n[e];if(!arguments.length)return o;var s=void 0===t?h:t;return n[e]=s,l.call(i,s,n,o),!r.hasOwnProperty(e)&&(r[e]=o),a&&u(),i}}(t)})),Object.keys(a).forEach((function(t){i[t]=function(){for(var e,r=arguments.length,o=new Array(r),u=0;u1&&(e-=1),e<1/6?t+6*(n-t)*e:e<.5?n:e<2/3?t+(n-t)*(2/3-e)*6:t}if(t=Ar(t,360),n=Ar(n,100),e=Ar(e,100),0===n)r=i=o=e;else{var u=e<.5?e*(1+n):e+n-e*n,s=2*e-u;r=a(s,u,t+1/3),i=a(s,u,t),o=a(s,u,t-1/3)}return{r:255*r,g:255*i,b:255*o}}(t.h,r,o),a=!0,u="hsl"),t.hasOwnProperty("a")&&(e=t.a));var s,l,c;return e=kr(e),{ok:a,format:t.format||u,r:Math.min(255,Math.max(n.r,0)),g:Math.min(255,Math.max(n.g,0)),b:Math.min(255,Math.max(n.b,0)),a:e}}(t);this._originalInput=t,this._r=e.r,this._g=e.g,this._b=e.b,this._a=e.a,this._roundA=Math.round(100*this._a)/100,this._format=n.format||e.format,this._gradientType=n.gradientType,this._r<1&&(this._r=Math.round(this._r)),this._g<1&&(this._g=Math.round(this._g)),this._b<1&&(this._b=Math.round(this._b)),this._ok=e.ok}function or(t,n,e){t=Ar(t,255),n=Ar(n,255),e=Ar(e,255);var r,i,o=Math.max(t,n,e),a=Math.min(t,n,e),u=(o+a)/2;if(o==a)r=i=0;else{var s=o-a;switch(i=u>.5?s/(2-o-a):s/(o+a),o){case t:r=(n-e)/s+(n>1)+720)%360;--n;)r.h=(r.h+i)%360,o.push(ir(r));return o}function xr(t,n){n=n||6;for(var e=ir(t).toHsv(),r=e.h,i=e.s,o=e.v,a=[],u=1/n;n--;)a.push(ir({h:r,s:i,v:o})),o=(o+u)%1;return a}ir.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var t=this.toRgb();return(299*t.r+587*t.g+114*t.b)/1e3},getLuminance:function(){var t,n,e,r=this.toRgb();return t=r.r/255,n=r.g/255,e=r.b/255,.2126*(t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4))+.7152*(n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4))+.0722*(e<=.03928?e/12.92:Math.pow((e+.055)/1.055,2.4))},setAlpha:function(t){return this._a=kr(t),this._roundA=Math.round(100*this._a)/100,this},toHsv:function(){var t=ar(this._r,this._g,this._b);return{h:360*t.h,s:t.s,v:t.v,a:this._a}},toHsvString:function(){var t=ar(this._r,this._g,this._b),n=Math.round(360*t.h),e=Math.round(100*t.s),r=Math.round(100*t.v);return 1==this._a?"hsv("+n+", "+e+"%, "+r+"%)":"hsva("+n+", "+e+"%, "+r+"%, "+this._roundA+")"},toHsl:function(){var t=or(this._r,this._g,this._b);return{h:360*t.h,s:t.s,l:t.l,a:this._a}},toHslString:function(){var t=or(this._r,this._g,this._b),n=Math.round(360*t.h),e=Math.round(100*t.s),r=Math.round(100*t.l);return 1==this._a?"hsl("+n+", "+e+"%, "+r+"%)":"hsla("+n+", "+e+"%, "+r+"%, "+this._roundA+")"},toHex:function(t){return ur(this._r,this._g,this._b,t)},toHexString:function(t){return"#"+this.toHex(t)},toHex8:function(t){return function(t,n,e,r,i){var o=[Sr(Math.round(t).toString(16)),Sr(Math.round(n).toString(16)),Sr(Math.round(e).toString(16)),Sr(Or(r))];if(i&&o[0].charAt(0)==o[0].charAt(1)&&o[1].charAt(0)==o[1].charAt(1)&&o[2].charAt(0)==o[2].charAt(1)&&o[3].charAt(0)==o[3].charAt(1))return o[0].charAt(0)+o[1].charAt(0)+o[2].charAt(0)+o[3].charAt(0);return o.join("")}(this._r,this._g,this._b,this._a,t)},toHex8String:function(t){return"#"+this.toHex8(t)},toRgb:function(){return{r:Math.round(this._r),g:Math.round(this._g),b:Math.round(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+")":"rgba("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:Math.round(100*Ar(this._r,255))+"%",g:Math.round(100*Ar(this._g,255))+"%",b:Math.round(100*Ar(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+Math.round(100*Ar(this._r,255))+"%, "+Math.round(100*Ar(this._g,255))+"%, "+Math.round(100*Ar(this._b,255))+"%)":"rgba("+Math.round(100*Ar(this._r,255))+"%, "+Math.round(100*Ar(this._g,255))+"%, "+Math.round(100*Ar(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(wr[ur(this._r,this._g,this._b,!0)]||!1)},toFilter:function(t){var n="#"+sr(this._r,this._g,this._b,this._a),e=n,r=this._gradientType?"GradientType = 1, ":"";if(t){var i=ir(t);e="#"+sr(i._r,i._g,i._b,i._a)}return"progid:DXImageTransform.Microsoft.gradient("+r+"startColorstr="+n+",endColorstr="+e+")"},toString:function(t){var n=!!t;t=t||this._format;var e=!1,r=this._a<1&&this._a>=0;return n||!r||"hex"!==t&&"hex6"!==t&&"hex3"!==t&&"hex4"!==t&&"hex8"!==t&&"name"!==t?("rgb"===t&&(e=this.toRgbString()),"prgb"===t&&(e=this.toPercentageRgbString()),"hex"!==t&&"hex6"!==t||(e=this.toHexString()),"hex3"===t&&(e=this.toHexString(!0)),"hex4"===t&&(e=this.toHex8String(!0)),"hex8"===t&&(e=this.toHex8String()),"name"===t&&(e=this.toName()),"hsl"===t&&(e=this.toHslString()),"hsv"===t&&(e=this.toHsvString()),e||this.toHexString()):"name"===t&&0===this._a?this.toName():this.toRgbString()},clone:function(){return ir(this.toString())},_applyModification:function(t,n){var e=t.apply(null,[this].concat([].slice.call(n)));return this._r=e._r,this._g=e._g,this._b=e._b,this.setAlpha(e._a),this},lighten:function(){return this._applyModification(fr,arguments)},brighten:function(){return this._applyModification(dr,arguments)},darken:function(){return this._applyModification(pr,arguments)},desaturate:function(){return this._applyModification(lr,arguments)},saturate:function(){return this._applyModification(cr,arguments)},greyscale:function(){return this._applyModification(hr,arguments)},spin:function(){return this._applyModification(gr,arguments)},_applyCombination:function(t,n){return t.apply(null,[this].concat([].slice.call(n)))},analogous:function(){return this._applyCombination(_r,arguments)},complement:function(){return this._applyCombination(yr,arguments)},monochromatic:function(){return this._applyCombination(xr,arguments)},splitcomplement:function(){return this._applyCombination(mr,arguments)},triad:function(){return this._applyCombination(vr,[3])},tetrad:function(){return this._applyCombination(vr,[4])}},ir.fromRatio=function(t,n){if("object"==typeof t){var e={};for(var r in t)t.hasOwnProperty(r)&&(e[r]="a"===r?t[r]:Cr(t[r]));t=e}return ir(t,n)},ir.equals=function(t,n){return!(!t||!n)&&ir(t).toRgbString()==ir(n).toRgbString()},ir.random=function(){return ir.fromRatio({r:Math.random(),g:Math.random(),b:Math.random()})},ir.mix=function(t,n,e){e=0===e?0:e||50;var r=ir(t).toRgb(),i=ir(n).toRgb(),o=e/100;return ir({r:(i.r-r.r)*o+r.r,g:(i.g-r.g)*o+r.g,b:(i.b-r.b)*o+r.b,a:(i.a-r.a)*o+r.a})},ir.readability=function(t,n){var e=ir(t),r=ir(n);return(Math.max(e.getLuminance(),r.getLuminance())+.05)/(Math.min(e.getLuminance(),r.getLuminance())+.05)},ir.isReadable=function(t,n,e){var r,i,o=ir.readability(t,n);switch(i=!1,r=function(t){var n,e;n=((t=t||{level:"AA",size:"small"}).level||"AA").toUpperCase(),e=(t.size||"small").toLowerCase(),"AA"!==n&&"AAA"!==n&&(n="AA");"small"!==e&&"large"!==e&&(e="small");return{level:n,size:e}}(e),r.level+r.size){case"AAsmall":case"AAAlarge":i=o>=4.5;break;case"AAlarge":i=o>=3;break;case"AAAsmall":i=o>=7}return i},ir.mostReadable=function(t,n,e){var r,i,o,a,u=null,s=0;i=(e=e||{}).includeFallbackColors,o=e.level,a=e.size;for(var l=0;ls&&(s=r,u=ir(n[l]));return ir.isReadable(t,u,{level:o,size:a})||!i?u:(e.includeFallbackColors=!1,ir.mostReadable(t,["#fff","#000"],e))};var br=ir.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},wr=ir.hexNames=function(t){var n={};for(var e in t)t.hasOwnProperty(e)&&(n[t[e]]=e);return n}(br);function kr(t){return t=parseFloat(t),(isNaN(t)||t<0||t>1)&&(t=1),t}function Ar(t,n){(function(t){return"string"==typeof t&&-1!=t.indexOf(".")&&1===parseFloat(t)})(t)&&(t="100%");var e=function(t){return"string"==typeof t&&-1!=t.indexOf("%")}(t);return t=Math.min(n,Math.max(0,parseFloat(t))),e&&(t=parseInt(t*n,10)/100),Math.abs(t-n)<1e-6?1:t%n/parseFloat(n)}function zr(t){return Math.min(1,Math.max(0,t))}function Mr(t){return parseInt(t,16)}function Sr(t){return 1==t.length?"0"+t:""+t}function Cr(t){return t<=1&&(t=100*t+"%"),t}function Or(t){return Math.round(255*parseFloat(t)).toString(16)}function Er(t){return Mr(t)/255}var Pr,Tr,Nr,jr=(Tr="[\\s|\\(]+("+(Pr="(?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?)")+")[,|\\s]+("+Pr+")[,|\\s]+("+Pr+")\\s*\\)?",Nr="[\\s|\\(]+("+Pr+")[,|\\s]+("+Pr+")[,|\\s]+("+Pr+")[,|\\s]+("+Pr+")\\s*\\)?",{CSS_UNIT:new RegExp(Pr),rgb:new RegExp("rgb"+Tr),rgba:new RegExp("rgba"+Nr),hsl:new RegExp("hsl"+Tr),hsla:new RegExp("hsla"+Nr),hsv:new RegExp("hsv"+Tr),hsva:new RegExp("hsva"+Nr),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/});function Rr(t){return!!jr.CSS_UNIT.exec(t)}function Dr(t,n){for(var e=0;et.length)&&(n=t.length);for(var e=0,r=new Array(n);e0&&void 0!==arguments[0]?arguments[0]:6;!function(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}(this,t),this.csBits=n,this.registry=["__reserved for background__"]}var n,e,r;return n=t,e=[{key:"register",value:function(t){if(this.registry.length>=Math.pow(2,24-this.csBits))return null;var n,e=this.registry.length,r=Lr(e,this.csBits),i=(n=e+(r<<24-this.csBits),"#".concat(Math.min(n,Math.pow(2,24)).toString(16).padStart(6,"0")));return this.registry.push(t),i}},{key:"lookup",value:function(t){var n,e,r,i,o="string"==typeof t?(n=ir(t).toRgb(),e=n.r,r=n.g,i=n.b,Fr(e,r,i)):Fr.apply(void 0,Ir(t));if(!o)return null;var a=o&Math.pow(2,24-this.csBits)-1,u=o>>24-this.csBits&Math.pow(2,this.csBits)-1;return Lr(a,this.csBits)!==u||a>=this.registry.length?null:this.registry[a]}}],e&&Dr(n.prototype,e),r&&Dr(n,r),Object.defineProperty(n,"prototype",{writable:!1}),t}();const qr=1664525,Hr=1013904223,Vr=4294967296;var Gr=3;function Zr(t){return t.x}function Xr(t){return t.y}function Yr(t){return t.z}var Wr=10,$r=Math.PI*(3-Math.sqrt(5)),Qr=20*Math.PI/(9+Math.sqrt(221));function Kr(t,n){n=n||2;var e,r=Math.min(Gr,Math.max(1,Math.round(n))),i=1,o=.001,a=1-Math.pow(o,1/300),u=0,s=.6,l=new Map,c=sn(d),h=It("tick","end"),f=function(){let t=1;return()=>(t=(qr*t+Hr)%Vr)/Vr}();function d(){p(),h.call("tick",e),i1&&(null==c.fy?c.y+=c.vy*=s:(c.y=c.fy,c.vy=0)),r>2&&(null==c.fz?c.z+=c.vz*=s:(c.z=c.fz,c.vz=0));return e}function g(){for(var n,e=0,i=t.length;e1&&isNaN(n.y)||r>2&&isNaN(n.z)){var o=Wr*(r>2?Math.cbrt(.5+e):r>1?Math.sqrt(.5+e):e),a=e*$r,u=e*Qr;1===r?n.x=o:2===r?(n.x=o*Math.cos(a),n.y=o*Math.sin(a)):(n.x=o*Math.sin(a)*Math.cos(u),n.y=o*Math.cos(a),n.z=o*Math.sin(a)*Math.sin(u))}(isNaN(n.vx)||r>1&&isNaN(n.vy)||r>2&&isNaN(n.vz))&&(n.vx=0,r>1&&(n.vy=0),r>2&&(n.vz=0))}}function y(n){return n.initialize&&n.initialize(t,f,r),n}return null==t&&(t=[]),g(),e={tick:p,restart:function(){return c.restart(d),e},stop:function(){return c.stop(),e},numDimensions:function(t){return arguments.length?(r=Math.min(Gr,Math.max(1,Math.round(t))),l.forEach(y),e):r},nodes:function(n){return arguments.length?(t=n,g(),l.forEach(y),e):t},alpha:function(t){return arguments.length?(i=+t,e):i},alphaMin:function(t){return arguments.length?(o=+t,e):o},alphaDecay:function(t){return arguments.length?(a=+t,e):+a},alphaTarget:function(t){return arguments.length?(u=+t,e):u},velocityDecay:function(t){return arguments.length?(s=1-t,e):1-s},randomSource:function(t){return arguments.length?(f=t,l.forEach(y),e):f},force:function(t,n){return arguments.length>1?(null==n?l.delete(t):l.set(t,y(n)),e):l.get(t)},find:function(){var n,e,i,o,a,u,s=Array.prototype.slice.call(arguments),l=s.shift()||0,c=(r>1?s.shift():null)||0,h=(r>2?s.shift():null)||0,f=s.shift()||1/0,d=0,p=t.length;for(f*=f,d=0;d1?(h.on(t,n),e):h.on(t)}}}function Jr(t){return function(){return t}}function ti(t){return 1e-6*(t()-.5)}function ni(t){return t.index}function ei(t,n){var e=t.get(n);if(!e)throw new Error("node not found: "+n);return e}function ri(t){var n,e,r,i,o,a,u,s=ni,l=function(t){return 1/Math.min(o[t.source.index],o[t.target.index])},c=Jr(30),h=1;function f(r){for(var o=0,s=t.length;o1&&(v=f.y+f.vy-c.y-c.vy||ti(u)),i>2&&(m=f.z+f.vz-c.z-c.vz||ti(u)),y*=d=((d=Math.sqrt(y*y+v*v+m*m))-e[g])/d*r*n[g],v*=d,m*=d,f.vx-=y*(p=a[g]),i>1&&(f.vy-=v*p),i>2&&(f.vz-=m*p),c.vx+=y*(p=1-p),i>1&&(c.vy+=v*p),i>2&&(c.vz+=m*p)}function d(){if(r){var i,u,l=r.length,c=t.length,h=new Map(r.map(((t,n)=>[s(t,n,r),t])));for(i=0,o=new Array(l);i"function"==typeof t))||Math.random,i=n.find((t=>[1,2,3].includes(t)))||2,d()},f.links=function(n){return arguments.length?(t=n,d(),f):t},f.id=function(t){return arguments.length?(s=t,f):s},f.iterations=function(t){return arguments.length?(h=+t,f):h},f.strength=function(t){return arguments.length?(l="function"==typeof t?t:Jr(+t),p(),f):l},f.distance=function(t){return arguments.length?(c="function"==typeof t?t:Jr(+t),g(),f):c},f}function ii(t,n,e){if(isNaN(n))return t;var r,i,o,a,u,s,l=t._root,c={data:e},h=t._x0,f=t._x1;if(!l)return t._root=c,t;for(;l.length;)if((a=n>=(i=(h+f)/2))?h=i:f=i,r=l,!(l=l[u=+a]))return r[u]=c,t;if(n===(o=+t._x.call(null,l.data)))return c.next=l,r?r[u]=c:t._root=c,t;do{r=r?r[u]=new Array(2):t._root=new Array(2),(a=n>=(i=(h+f)/2))?h=i:f=i}while((u=+a)==(s=+(o>=i)));return r[s]=l,r[u]=c,t}function oi(t,n,e){this.node=t,this.x0=n,this.x1=e}function ai(t){return t[0]}function ui(t,n){var e=new si(null==n?ai:n,NaN,NaN);return null==t?e:e.addAll(t)}function si(t,n,e){this._x=t,this._x0=n,this._x1=e,this._root=void 0}function li(t){for(var n={data:t.data},e=n;t=t.next;)e=e.next={data:t.data};return n}var ci=ui.prototype=si.prototype;function hi(t,n,e,r){if(isNaN(n)||isNaN(e))return t;var i,o,a,u,s,l,c,h,f,d=t._root,p={data:r},g=t._x0,y=t._y0,v=t._x1,m=t._y1;if(!d)return t._root=p,t;for(;d.length;)if((l=n>=(o=(g+v)/2))?g=o:v=o,(c=e>=(a=(y+m)/2))?y=a:m=a,i=d,!(d=d[h=c<<1|l]))return i[h]=p,t;if(u=+t._x.call(null,d.data),s=+t._y.call(null,d.data),n===u&&e===s)return p.next=d,i?i[h]=p:t._root=p,t;do{i=i?i[h]=new Array(4):t._root=new Array(4),(l=n>=(o=(g+v)/2))?g=o:v=o,(c=e>=(a=(y+m)/2))?y=a:m=a}while((h=c<<1|l)==(f=(s>=a)<<1|u>=o));return i[f]=d,i[h]=p,t}function fi(t,n,e,r,i){this.node=t,this.x0=n,this.y0=e,this.x1=r,this.y1=i}function di(t){return t[0]}function pi(t){return t[1]}function gi(t,n,e){var r=new yi(null==n?di:n,null==e?pi:e,NaN,NaN,NaN,NaN);return null==t?r:r.addAll(t)}function yi(t,n,e,r,i,o){this._x=t,this._y=n,this._x0=e,this._y0=r,this._x1=i,this._y1=o,this._root=void 0}function vi(t){for(var n={data:t.data},e=n;t=t.next;)e=e.next={data:t.data};return n}ci.copy=function(){var t,n,e=new si(this._x,this._x0,this._x1),r=this._root;if(!r)return e;if(!r.length)return e._root=li(r),e;for(t=[{source:r,target:e._root=new Array(2)}];r=t.pop();)for(var i=0;i<2;++i)(n=r.source[i])&&(n.length?t.push({source:n,target:r.target[i]=new Array(2)}):r.target[i]=li(n));return e},ci.add=function(t){var n=+this._x.call(null,t);return ii(this.cover(n),n,t)},ci.addAll=function(t){var n,e,r=t.length,i=new Array(r),o=1/0,a=-1/0;for(n=0;na&&(a=e));if(o>a)return this;for(this.cover(o).cover(a),n=0;nt||t>=e;)switch(i=+(ts||(i=o.x1)=h))&&(o=l[l.length-1],l[l.length-1]=l[l.length-1-a],l[l.length-1-a]=o)}else{var f=Math.abs(t-+this._x.call(null,c.data));f=(a=(h+f)/2))?h=a:f=a,n=c,!(c=c[s=+u]))return this;if(!c.length)break;n[s+1&1]&&(e=n,l=s)}for(;c.data!==t;)if(r=c,!(c=c.next))return this;return(i=c.next)&&delete c.next,r?(i?r.next=i:delete r.next,this):n?(i?n[s]=i:delete n[s],(c=n[0]||n[1])&&c===(n[1]||n[0])&&!c.length&&(e?e[l]=c:this._root=c),this):(this._root=i,this)},ci.removeAll=function(t){for(var n=0,e=t.length;n=(a=(_+w)/2))?_=a:w=a,(d=e>=(u=(x+k)/2))?x=u:k=u,(p=r>=(s=(b+A)/2))?b=s:A=s,o=v,!(v=v[g=p<<2|d<<1|f]))return o[g]=m,t;if(l=+t._x.call(null,v.data),c=+t._y.call(null,v.data),h=+t._z.call(null,v.data),n===l&&e===c&&r===h)return m.next=v,o?o[g]=m:t._root=m,t;do{o=o?o[g]=new Array(8):t._root=new Array(8),(f=n>=(a=(_+w)/2))?_=a:w=a,(d=e>=(u=(x+k)/2))?x=u:k=u,(p=r>=(s=(b+A)/2))?b=s:A=s}while((g=p<<2|d<<1|f)==(y=(h>=s)<<2|(c>=u)<<1|l>=a));return o[y]=v,o[g]=m,t}function xi(t,n,e,r,i,o,a){this.node=t,this.x0=n,this.y0=e,this.z0=r,this.x1=i,this.y1=o,this.z1=a}function bi(t){return t[0]}function wi(t){return t[1]}function ki(t){return t[2]}function Ai(t,n,e,r){var i=new zi(null==n?bi:n,null==e?wi:e,null==r?ki:r,NaN,NaN,NaN,NaN,NaN,NaN);return null==t?i:i.addAll(t)}function zi(t,n,e,r,i,o,a,u,s){this._x=t,this._y=n,this._z=e,this._x0=r,this._y0=i,this._z0=o,this._x1=a,this._y1=u,this._z1=s,this._root=void 0}function Mi(t){for(var n={data:t.data},e=n;t=t.next;)e=e.next={data:t.data};return n}mi.copy=function(){var t,n,e=new yi(this._x,this._y,this._x0,this._y0,this._x1,this._y1),r=this._root;if(!r)return e;if(!r.length)return e._root=vi(r),e;for(t=[{source:r,target:e._root=new Array(4)}];r=t.pop();)for(var i=0;i<4;++i)(n=r.source[i])&&(n.length?t.push({source:n,target:r.target[i]=new Array(4)}):r.target[i]=vi(n));return e},mi.add=function(t){const n=+this._x.call(null,t),e=+this._y.call(null,t);return hi(this.cover(n,e),n,e,t)},mi.addAll=function(t){var n,e,r,i,o=t.length,a=new Array(o),u=new Array(o),s=1/0,l=1/0,c=-1/0,h=-1/0;for(e=0;ec&&(c=r),ih&&(h=i));if(s>c||l>h)return this;for(this.cover(s,l).cover(c,h),e=0;et||t>=i||r>n||n>=o;)switch(u=(nf||(o=s.y0)>d||(a=s.x1)=v)<<1|t>=y)&&(s=p[p.length-1],p[p.length-1]=p[p.length-1-l],p[p.length-1-l]=s)}else{var m=t-+this._x.call(null,g.data),_=n-+this._y.call(null,g.data),x=m*m+_*_;if(x=(u=(p+y)/2))?p=u:y=u,(c=a>=(s=(g+v)/2))?g=s:v=s,n=d,!(d=d[h=c<<1|l]))return this;if(!d.length)break;(n[h+1&3]||n[h+2&3]||n[h+3&3])&&(e=n,f=h)}for(;d.data!==t;)if(r=d,!(d=d.next))return this;return(i=d.next)&&delete d.next,r?(i?r.next=i:delete r.next,this):n?(i?n[h]=i:delete n[h],(d=n[0]||n[1]||n[2]||n[3])&&d===(n[3]||n[2]||n[1]||n[0])&&!d.length&&(e?e[f]=d:this._root=d),this):(this._root=i,this)},mi.removeAll=function(t){for(var n=0,e=t.length;n1&&(t.y=a/c),n>2&&(t.z=u/c)}else{(e=t).x=e.data.x,n>1&&(e.y=e.data.y),n>2&&(e.z=e.data.z);do{l+=o[e.data.index]}while(e=e.next)}t.value=l}function d(t,a,c,h,f){if(!t.value)return!0;var d=[c,h,f][n-1],p=t.x-e.x,g=n>1?t.y-e.y:0,y=n>2?t.z-e.z:0,v=d-a,m=p*p+g*g+y*y;if(v*v/l1&&0===g&&(m+=(g=ti(r))*g),n>2&&0===y&&(m+=(y=ti(r))*y),m1&&(e.vy+=g*t.value*i/m),n>2&&(e.vz+=y*t.value*i/m)),!0;if(!(t.length||m>=s)){(t.data!==e||t.next)&&(0===p&&(m+=(p=ti(r))*p),n>1&&0===g&&(m+=(g=ti(r))*g),n>2&&0===y&&(m+=(y=ti(r))*y),m1&&(e.vy+=g*v),n>2&&(e.vz+=y*v))}while(t=t.next)}}return c.initialize=function(e,...i){t=e,r=i.find((t=>"function"==typeof t))||Math.random,n=i.find((t=>[1,2,3].includes(t)))||2,h()},c.strength=function(t){return arguments.length?(a="function"==typeof t?t:Jr(+t),h(),c):a},c.distanceMin=function(t){return arguments.length?(u=t*t,c):Math.sqrt(u)},c.distanceMax=function(t){return arguments.length?(s=t*t,c):Math.sqrt(s)},c.theta=function(t){return arguments.length?(l=t*t,c):Math.sqrt(l)},c}function Oi(t,n,e){var r,i=1;function o(){var o,a,u=r.length,s=0,l=0,c=0;for(o=0;od&&(d=r),ip&&(p=i),og&&(g=o));if(c>d||h>p||f>g)return this;for(this.cover(c,h,f).cover(d,p,g),e=0;et||t>=a||i>n||n>=u||o>e||e>=s;)switch(c=(ey||(a=h.y0)>v||(u=h.z0)>m||(s=h.x1)=k)<<2|(n>=w)<<1|t>=b)&&(h=_[_.length-1],_[_.length-1]=_[_.length-1-f],_[_.length-1-f]=h)}else{var A=t-+this._x.call(null,x.data),z=n-+this._y.call(null,x.data),M=e-+this._z.call(null,x.data),S=A*A+z*z+M*M;if(S=(s=(v+x)/2))?v=s:x=s,(f=a>=(l=(m+b)/2))?m=l:b=l,(d=u>=(c=(_+w)/2))?_=c:w=c,n=y,!(y=y[p=d<<2|f<<1|h]))return this;if(!y.length)break;(n[p+1&7]||n[p+2&7]||n[p+3&7]||n[p+4&7]||n[p+5&7]||n[p+6&7]||n[p+7&7])&&(e=n,g=p)}for(;y.data!==t;)if(r=y,!(y=y.next))return this;return(i=y.next)&&delete y.next,r?(i?r.next=i:delete r.next,this):n?(i?n[p]=i:delete n[p],(y=n[0]||n[1]||n[2]||n[3]||n[4]||n[5]||n[6]||n[7])&&y===(n[7]||n[6]||n[5]||n[4]||n[3]||n[2]||n[1]||n[0])&&!y.length&&(e?e[g]=y:this._root=y),this):(this._root=i,this)},Si.removeAll=function(t){for(var n=0,e=t.length;n1;){for(let n=0;n1;i--,o--){const t=[];for(let e,i=0;io.x.min&&(n=o.x.min),e>o.y.min&&(e=o.y.min),r0&&(a.c1=n,a.c2=r,a.s1=t,a.s2=e,o.push(a))}))})),o},makeshape:function(t,n,e){const r=n.points.length,i=t.points.length,o=Vi.makeline(n.points[r-1],t.points[0]),a=Vi.makeline(t.points[i-1],n.points[0]),u={startcap:o,forward:t,back:n,endcap:a,bbox:Vi.findbbox([o,t,n,a]),intersections:function(t){return Vi.shapeintersections(u,u.bbox,t,t.bbox,e)}};return u},getminmax:function(t,n,e){if(!e)return{min:0,max:0};let r,i,o=Bi,a=qi;-1===e.indexOf(0)&&(e=[0].concat(e)),-1===e.indexOf(1)&&e.push(1);for(let u=0,s=e.length;ua&&(a=i[n]);return{min:o,mid:(o+a)/2,max:a,size:a-o}},align:function(t,n){const e=n.p1.x,r=n.p1.y,i=-ji(n.p2.y-r,n.p2.x-e);return t.map((function(t){return{x:(t.x-e)*Pi(i)-(t.y-r)*Ti(i),y:(t.x-e)*Ti(i)+(t.y-r)*Pi(i)}}))},roots:function(t,n){n=n||{p1:{x:0,y:0},p2:{x:1,y:0}};const e=t.length-1,r=Vi.align(t,n),i=function(t){return 0<=t&&t<=1};if(2===e){const t=r[0].y,n=r[1].y,e=r[2].y,o=t-2*n+e;if(0!==o){const r=-Ri(n*n-t*e),a=-t+n;return[-(r+a)/o,-(-r+a)/o].filter(i)}return n!==e&&0===o?[(2*n-e)/(2*n-2*e)].filter(i):[]}const o=r[0].y,a=r[1].y,u=r[2].y;let s=3*a-o-3*u+r[3].y,l=3*o-6*a+3*u,c=-3*o+3*a,h=o;if(Vi.approximately(s,0)){if(Vi.approximately(l,0))return Vi.approximately(c,0)?[]:[-h/c].filter(i);const t=Ri(c*c-4*l*h),n=2*l;return[(t-c)/n,(-c-t)/n].filter(i)}l/=s,c/=s,h/=s;const f=(3*c-l*l)/3,d=f/3,p=(2*l*l*l-9*l*c+27*h)/27,g=p/2,y=g*g+d*d*d;let v,m,_,x,b;if(y<0){const t=-f/3,n=Ri(t*t*t),e=-p/(2*n),r=Ni(e<-1?-1:e>1?1:e),o=2*Ii(n);return _=o*Pi(r/3)-l/3,x=o*Pi((r+Fi)/3)-l/3,b=o*Pi((r+2*Fi)/3)-l/3,[_,x,b].filter(i)}if(0===y)return v=g<0?Ii(-g):-Ii(g),_=2*v-l/3,x=-v-l/3,[_,x].filter(i);{const t=Ri(y);return v=Ii(-g+t),m=Ii(g+t),[v-m-l/3].filter(i)}},droots:function(t){if(3===t.length){const n=t[0],e=t[1],r=t[2],i=n-2*e+r;if(0!==i){const t=-Ri(e*e-n*r),o=-n+e;return[-(t+o)/i,-(-t+o)/i]}return e!==r&&0===i?[(2*e-r)/(2*(e-r))]:[]}if(2===t.length){const n=t[0],e=t[1];return n!==e?[n/(n-e)]:[]}return[]},curvature:function(t,n,e,r,i){let o,a,u,s,l=0,c=0;const h=Vi.compute(t,n),f=Vi.compute(t,e),d=h.x*h.x+h.y*h.y;if(r?(o=Ri(Di(h.y*f.z-f.y*h.z,2)+Di(h.z*f.x-f.z*h.x,2)+Di(h.x*f.y-f.x*h.y,2)),a=Di(d+h.z*h.z,1.5)):(o=h.x*f.y-h.y*f.x,a=Di(d,1.5)),0===o||0===a)return{k:0,r:0};if(l=o/a,c=a/o,!i){const i=Vi.curvature(t-.001,n,e,r,!0).k,o=Vi.curvature(t+.001,n,e,r,!0).k;s=(o-l+(l-i))/2,u=(Ei(o-l)+Ei(l-i))/2}return{k:l,r:c,dk:s,adk:u}},inflections:function(t){if(t.length<4)return[];const n=Vi.align(t,{p1:t[0],p2:t.slice(-1)[0]}),e=n[2].x*n[1].y,r=n[3].x*n[1].y,i=n[1].x*n[2].y,o=18*(-3*e+2*r+3*i-n[3].x*n[2].y),a=18*(3*e-r-3*i),u=18*(i-e);if(Vi.approximately(o,0)){if(!Vi.approximately(a,0)){let t=-u/a;if(0<=t&&t<=1)return[t]}return[]}const s=2*o;if(Vi.approximately(s,0))return[];const l=a*a-4*o*u;if(l<0)return[];const c=Math.sqrt(l);return[(c-a)/s,-(a+c)/s].filter((function(t){return 0<=t&&t<=1}))},bboxoverlap:function(t,n){const e=["x","y"],r=e.length;for(let i,o,a,u,s=0;s=u)return!1;return!0},expandbox:function(t,n){n.x.mint.x.max&&(t.x.max=n.x.max),n.y.max>t.y.max&&(t.y.max=n.y.max),n.z&&n.z.max>t.z.max&&(t.z.max=n.z.max),t.x.mid=(t.x.min+t.x.max)/2,t.y.mid=(t.y.min+t.y.max)/2,t.z&&(t.z.mid=(t.z.min+t.z.max)/2),t.x.size=t.x.max-t.x.min,t.y.size=t.y.max-t.y.min,t.z&&(t.z.size=t.z.max-t.z.min)},pairiteration:function(t,n,e){const r=t.bbox(),i=n.bbox(),o=1e5,a=e||.5;if(r.x.size+r.y.sizek||k>A)&&(w+=Fi),w>A&&(b=A,A=w,w=b)):A4){if(1!==arguments.length)throw new Error("Only new Bezier(point[]) is accepted for 4th and higher order curves");r=!0}}else if(6!==i&&8!==i&&9!==i&&12!==i&&1!==arguments.length)throw new Error("Only new Bezier(point[]) is accepted for 4th and higher order curves");const o=this._3d=!r&&(9===i||12===i)||t&&t[0]&&void 0!==t[0].z,a=this.points=[];for(let f=0,d=o?3:2;ft+Zi(n.y)),0)0}length(){return Vi.length(this.derivative.bind(this))}static getABC(t=2,n,e,r,i=.5){const o=Vi.projectionratio(i,t),a=1-o,u={x:o*n.x+a*r.x,y:o*n.y+a*r.y},s=Vi.abcratio(i,t);return{A:{x:e.x+(e.x-u.x)/s,y:e.y+(e.y-u.y)/s},B:e,C:u,S:n,E:r}}getABC(t,n){n=n||this.get(t);let e=this.points[0],r=this.points[this.order];return to.getABC(this.order,e,n,r,t)}getLUT(t){if(this.verify(),t=t||100,this._lut.length===t)return this._lut;this._lut=[],t++,this._lut=[];for(let n,e,r=0;r1?1:h,s=this.compute(h),s.t=h,s.d=l,s}get(t){return this.compute(t)}point(t){return this.points[t]}compute(t){return this.ratios?Vi.computeWithRatios(t,this.points,this.ratios,this._3d):Vi.compute(t,this.points,this._3d,this.ratios)}raise(){const t=this.points,n=[t[0]],e=t.length;for(let r,i,o=1;o1;){e=[];for(let o,a=0,u=n.length-1;a=0&&t<=1})),n=n.concat(t[e].sort(Vi.numberSort))}.bind(this)),t.values=n.sort(Vi.numberSort).filter((function(t,e){return n.indexOf(t)===e})),t}bbox(){const t=this.extrema(),n={};return this.dims.forEach(function(e){n[e]=Vi.getminmax(this,e,t[e])}.bind(this)),n}overlaps(t){const n=this.bbox(),e=t.bbox();return Vi.bboxoverlap(n,e)}offset(t,n){if(void 0!==n){const e=this.get(t),r=this.normal(t),i={c:e,n:r,x:e.x+r.x*n,y:e.y+r.y*n};return this._3d&&(i.z=e.z+r.z*n),i}if(this._linear){const n=this.normal(0),e=this.points.map((function(e){const r={x:e.x+t*n.x,y:e.y+t*n.y};return e.z&&n.z&&(r.z=e.z+t*n.z),r}));return[new to(e)]}return this.reduce().map((function(n){return n._linear?n.offset(t)[0]:n.scale(t)}))}simple(){if(3===this.order){const t=Vi.angle(this.points[0],this.points[3],this.points[1]),n=Vi.angle(this.points[0],this.points[3],this.points[2]);if(t>0&&n<0||t<0&&n>0)return!1}const t=this.normal(0),n=this.normal(1);let e=t.x*n.x+t.y*n.y;return this._3d&&(e+=t.z*n.z),Zi(Qi(e))(1-i/r)*n+i/r*e));return new to(this.points.map(((n,e)=>({x:n.x+t.x*i[e],y:n.y+t.y*i[e]}))))}scale(t){const n=this.order;let e=!1;if("function"==typeof t&&(e=t),e&&2===n)return this.raise().scale(e);const r=this.clockwise,i=this.points;if(this._linear)return this.translate(this.normal(0),e?e(0):t,e?e(1):t);const o=e?e(0):t,a=e?e(1):t,u=[this.offset(0,10),this.offset(1,10)],s=[],l=Vi.lli4(u[0],u[0].c,u[1],u[1].c);if(!l)throw new Error("cannot scale this curve. Try reducing it first.");return[0,1].forEach((function(t){const e=s[t*n]=Vi.copy(i[t*n]);e.x+=(t?a:o)*u[t].n.x,e.y+=(t?a:o)*u[t].n.y})),e?([0,1].forEach((function(o){if(2!==n||!o){var a=i[o+1],u={x:a.x-l.x,y:a.y-l.y},c=e?e((o+1)/n):t;e&&!r&&(c=-c);var h=Ki(u.x*u.x+u.y*u.y);u.x/=h,u.y/=h,s[o+1]={x:a.x+c*u.x,y:a.y+c*u.y}}})),new to(s)):([0,1].forEach((t=>{if(2===n&&t)return;const e=s[t*n],r=this.derivative(t),o={x:e.x+r.x,y:e.y+r.y};s[t+1]=Vi.lli4(e,o,l,i[t+1])})),new to(s))}outline(t,n,e,r){if(n=void 0===n?t:n,this._linear){const i=this.normal(0),o=this.points[0],a=this.points[this.points.length-1];let u,s,l;void 0===e&&(e=t,r=n),u={x:o.x+i.x*t,y:o.y+i.y*t},l={x:a.x+i.x*e,y:a.y+i.y*e},s={x:(u.x+l.x)/2,y:(u.y+l.y)/2};const c=[u,s,l];u={x:o.x-i.x*n,y:o.y-i.y*n},l={x:a.x-i.x*r,y:a.y-i.y*r},s={x:(u.x+l.x)/2,y:(u.y+l.y)/2};const h=[l,s,u],f=Vi.makeline(h[2],c[0]),d=Vi.makeline(c[2],h[0]),p=[f,new to(c),d,new to(h)];return new Gi(p)}const i=this.reduce(),o=i.length,a=[];let u,s=[],l=0,c=this.length();const h=void 0!==e&&void 0!==r;function f(t,n,e,r,i){return function(o){const a=r/e,u=(r+i)/e,s=n-t;return Vi.map(o,0,1,t+a*s,t+u*s)}}i.forEach((function(i){const o=i.length();h?(a.push(i.scale(f(t,e,c,l,o))),s.push(i.scale(f(-n,-r,c,l,o)))):(a.push(i.scale(t)),s.push(i.scale(-n))),l+=o})),s=s.map((function(t){return u=t.points,u[3]?t.points=[u[3],u[2],u[1],u[0]]:t.points=[u[2],u[1],u[0]],t})).reverse();const d=a[0].points[0],p=a[o-1].points[a[o-1].points.length-1],g=s[o-1].points[s[o-1].points.length-1],y=s[0].points[0],v=Vi.makeline(g,d),m=Vi.makeline(p,y),_=[v].concat(a).concat([m]).concat(s);return new Gi(_)}outlineshapes(t,n,e){n=n||t;const r=this.outline(t,n).curves,i=[];for(let o=1,a=r.length;o1,t.endcap.virtual=o{var o=this.get(t);return Vi.between(o.x,n,r)&&Vi.between(o.y,e,i)}))}selfintersects(t){const n=this.reduce(),e=n.length-2,r=[];for(let i,o,a,u=0;u0&&(i=i.concat(n))})),i}arcs(t){return t=t||.5,this._iterate(t,[])}_error(t,n,e,r){const i=(r-e)/4,o=this.get(e+i),a=this.get(r-i),u=Vi.dist(t,n),s=Vi.dist(t,o),l=Vi.dist(t,a);return Zi(s-u)+Zi(l-u)}_iterate(t,n){let e,r=0,i=1;do{e=0,i=1;let o,a,u,s,l,c=this.get(r),h=!1,f=!1,d=i,p=1,g=0;do{if(f=h,s=u,d=(r+i)/2,g++,o=this.get(d),a=this.get(i),u=Vi.getccenter(c,o,a),u.interval={start:r,end:i},h=this._error(u,c,r,i)<=t,l=f&&!h,l||(p=i),h){if(i>=1){if(u.interval.end=p=1,s=u,i>1){let t={x:u.x+u.r*Wi(u.e),y:u.y+u.r*$i(u.e)};u.e+=Vi.angle({x:u.x,y:u.y},t,this.get(1))}break}i+=(i-r)/2}else i=d}while(!l&&e++<100);if(e>=100)break;s=s||u,n.push(s),r=p}while(i<1);return n}}function no(t,n){if(null==t)return{};var e,r,i=function(t,n){if(null==t)return{};var e,r,i={},o=Object.keys(t);for(r=0;r=0||(i[e]=t[e]);return i}(t,n);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(t,e)&&(i[e]=t[e])}return i}function eo(t,n){return function(t){if(Array.isArray(t))return t}(t)||function(t,n){var e=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null==e)return;var r,i,o=[],a=!0,u=!1;try{for(e=e.call(t);!(a=(r=e.next()).done)&&(o.push(r.value),!n||o.length!==n);a=!0);}catch(s){u=!0,i=s}finally{try{a||null==e.return||e.return()}finally{if(u)throw i}}return o}(t,n)||io(t,n)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ro(t){return function(t){if(Array.isArray(t))return oo(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||io(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function io(t,n){if(t){if("string"==typeof t)return oo(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);return"Object"===e&&t.constructor&&(e=t.constructor.name),"Map"===e||"Set"===e?Array.from(t):"Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?oo(t,n):void 0}}function oo(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,r=new Array(n);et.length)&&(n=t.length);for(var e=0,r=new Array(n);et.cooldownTicks||new Date-t.startTickTime>t.cooldownTime||t.d3AlphaMin>0&&t.forceLayout.alpha()0){var a=Math.atan2(r.y-e.y,r.x-e.x),u=i*n,s={x:(e.x+r.x)/2+u*Math.cos(a-Math.PI/2),y:(e.y+r.y)/2+u*Math.sin(a-Math.PI/2)};t.__controlPoints=[s.x,s.y]}else{var l=70*n;t.__controlPoints=[r.x,r.y-l,r.x+l,r.y]}}));var c=[],h=[],f=l;if(t.linkCanvasObject){var d=[],p=[];l.forEach((function(t){return({before:c,after:h,replace:d}[a(t)]||p).push(t)})),f=[].concat(vo(c),h,p),c=c.concat(d)}u.save(),c.forEach((function(n){return t.linkCanvasObject(n,u,t.globalScale)})),u.restore();var g=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],e=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],r=arguments.length>3&&void 0!==arguments[3]&&arguments[3],i=(n instanceof Array?n.length?n:[void 0]:[n]).map((function(t){return{keyAccessor:t,isProp:!(t instanceof Function)}})),o=t.reduce((function(t,n){var r=t,o=n;return i.forEach((function(t,n){var a,u=t.keyAccessor;if(t.isProp){var s=o,l=s[u],c=no(s,[u].map(ao));a=l,o=c}else a=u(o,n);n+11&&void 0!==arguments[1]?arguments[1]:1;r===i.length?Object.keys(n).forEach((function(t){return n[t]=e(n[t])})):Object.values(n).forEach((function(n){return t(n,r+1)}))}(o);var a=o;return r&&(a=[],function t(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];e.length===i.length?a.push({keys:e,vals:n}):Object.entries(n).forEach((function(n){var r=eo(n,2),i=r[0],o=r[1];return t(o,[].concat(ro(e),[i]))}))}(o),n instanceof Array&&0===n.length&&1===a.length&&(a[0].keys=[])),a}(f,[e,r,i]);u.save(),Object.entries(g).forEach((function(n){var e=yo(n,2),r=e[0],o=e[1],a=r&&"undefined"!==r?r:"rgba(0,0,0,0.15)";Object.entries(o).forEach((function(n){var e=yo(n,2),r=e[0],o=e[1],l=(r||1)/t.globalScale+s;Object.entries(o).forEach((function(t){var n=yo(t,2);n[0];var e=n[1],r=i(e[0]);u.beginPath(),e.forEach((function(t){var n=t.source,e=t.target;if(n&&e&&n.hasOwnProperty("x")&&e.hasOwnProperty("x")){u.moveTo(n.x,n.y);var r=t.__controlPoints;r?u[2===r.length?"quadraticCurveTo":"bezierCurveTo"].apply(u,vo(r).concat([e.x,e.y])):u.lineTo(e.x,e.y)}})),u.strokeStyle=a,u.lineWidth=l,u.setLineDash(r||[]),u.stroke()}))}))})),u.restore(),u.save(),h.forEach((function(n){return t.linkCanvasObject(n,u,t.globalScale)})),u.restore()}(),!t.isShadow&&(n=nr(t.linkDirectionalArrowLength),e=nr(t.linkDirectionalArrowRelPos),r=nr(t.linkVisibility),i=nr(t.linkDirectionalArrowColor||t.linkColor),o=nr(t.nodeVal),(a=t.ctx).save(),t.graphData.links.filter(r).forEach((function(r){var u=n(r);if(u&&!(u<0)){var s=r.source,l=r.target;if(s&&l&&s.hasOwnProperty("x")&&l.hasOwnProperty("x")){var c=Math.sqrt(Math.max(0,o(s)||1))*t.nodeRelSize,h=Math.sqrt(Math.max(0,o(l)||1))*t.nodeRelSize,f=Math.min(1,Math.max(0,e(r))),d=i(r)||"rgba(0,0,0,0.28)",p=u/1.6/2,g=r.__controlPoints&&go(to,[s.x,s.y].concat(vo(r.__controlPoints),[l.x,l.y])),y=g?function(t){return g.get(t)}:function(t){return{x:s.x+(l.x-s.x)*t||0,y:s.y+(l.y-s.y)*t||0}},v=g?g.length():Math.sqrt(Math.pow(l.x-s.x,2)+Math.pow(l.y-s.y,2)),m=c+u+(v-c-h-u)*f,_=y(m/v),x=y((m-u)/v),b=y((m-.8*u)/v),w=Math.atan2(_.y-x.y,_.x-x.x)-Math.PI/2;a.beginPath(),a.moveTo(_.x,_.y),a.lineTo(x.x+p*Math.cos(w),x.y+p*Math.sin(w)),a.lineTo(b.x,b.y),a.lineTo(x.x-p*Math.cos(w),x.y-p*Math.sin(w)),a.fillStyle=d,a.fill()}}})),a.restore()),!t.isShadow&&function(){var n=nr(t.linkDirectionalParticles),e=nr(t.linkDirectionalParticleSpeed),r=nr(t.linkDirectionalParticleWidth),i=nr(t.linkVisibility),o=nr(t.linkDirectionalParticleColor||t.linkColor),a=t.ctx;a.save(),t.graphData.links.filter(i).forEach((function(i){var u=n(i);if(i.hasOwnProperty("__photons")&&i.__photons.length){var s=i.source,l=i.target;if(s&&l&&s.hasOwnProperty("x")&&l.hasOwnProperty("x")){var c=e(i),h=i.__photons||[],f=Math.max(0,r(i)/2)/Math.sqrt(t.globalScale),d=o(i)||"rgba(0,0,0,0.28)";a.fillStyle=d;var p=i.__controlPoints?go(to,[s.x,s.y].concat(vo(i.__controlPoints),[l.x,l.y])):null,g=0,y=!1;h.forEach((function(t){var n=!!t.__singleHop;if(t.hasOwnProperty("__progressRatio")||(t.__progressRatio=n?0:g/u),!n&&g++,t.__progressRatio+=c,t.__progressRatio>=1){if(n)return void(y=!0);t.__progressRatio=t.__progressRatio%1}var e=t.__progressRatio,r=p?p.get(e):{x:s.x+(l.x-s.x)*e||0,y:s.y+(l.y-s.y)*e||0};a.beginPath(),a.arc(r.x,r.y,f,0,2*Math.PI,!1),a.fill()})),y&&(i.__photons=i.__photons.filter((function(t){return!t.__singleHop||t.__progressRatio<=1})))}}})),a.restore()}(),function(){var n=nr(t.nodeVisibility),e=nr(t.nodeVal),r=nr(t.nodeColor),i=nr(t.nodeCanvasObjectMode),o=t.ctx,a=t.isShadow/t.globalScale,u=t.graphData.nodes.filter(n);o.save(),u.forEach((function(n){var u=i(n);if(!t.nodeCanvasObject||"before"!==u&&"replace"!==u||(t.nodeCanvasObject(n,o,t.globalScale),"replace"!==u)){var s=Math.sqrt(Math.max(0,e(n)||1))*t.nodeRelSize+a;o.beginPath(),o.arc(n.x,n.y,s,0,2*Math.PI,!1),o.fillStyle=r(n)||"rgba(31, 120, 180, 0.92)",o.fill(),t.nodeCanvasObject&&"after"===u&&t.nodeCanvasObject(n,t.ctx,t.globalScale)}else o.restore()})),o.restore()}(),this},emitParticle:function(t,n){return n&&(!n.__photons&&(n.__photons=[]),n.__photons.push({__singleHop:!0})),this}},stateInit:function(){return{forceLayout:Kr().force("link",ri()).force("charge",Ci()).force("center",Oi()).force("dagRadial",null).stop(),engineRunning:!1}},init:function(t,n){n.ctx=t},update:function(t){t.engineRunning=!1,t.onUpdate(),null!==t.nodeAutoColorBy&&bo(t.graphData.nodes,nr(t.nodeAutoColorBy),t.nodeColor),null!==t.linkAutoColorBy&&bo(t.graphData.links,nr(t.linkAutoColorBy),t.linkColor),t.graphData.links.forEach((function(n){n.source=n[t.linkSource],n.target=n[t.linkTarget]})),t.forceLayout.stop().alpha(1).nodes(t.graphData.nodes);var n=t.forceLayout.force("link");n&&n.id((function(n){return n[t.nodeId]})).links(t.graphData.links);var e=t.dagMode&&function(t,n){var e=t.nodes,r=t.links,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=i.nodeFilter,a=void 0===o?function(){return!0}:o,u=i.onLoopError,s=void 0===u?function(t){throw"Invalid DAG structure! Found cycle in node path: ".concat(t.join(" -> "),".")}:u,l={};e.forEach((function(t){return l[n(t)]={data:t,out:[],depth:-1,skip:!a(t)}})),r.forEach((function(t){var e=t.source,r=t.target,i=s(e),o=s(r);if(!l.hasOwnProperty(i))throw"Missing source node with id: ".concat(i);if(!l.hasOwnProperty(o))throw"Missing target node with id: ".concat(o);var a=l[i],u=l[o];function s(t){return"object"===ho(t)?n(t):t}a.out.push(u)}));var c=[];return function t(e){for(var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,o=function(){var o=e[a];if(-1!==r.indexOf(o)){var u=[].concat(vo(r.slice(r.indexOf(o))),[o]).map((function(t){return n(t.data)}));return c.some((function(t){return t.length===u.length&&t.every((function(t,n){return t===u[n]}))}))||(c.push(u),s(u)),"continue"}i>o.depth&&(o.depth=i,t(o.out,[].concat(vo(r),[o]),i+(o.skip?0:1)))},a=0,u=e.length;a1&&(c.vy+=f*g),o>2&&(c.vz+=d*g)}}function c(){if(i){var n,e=i.length;for(a=new Array(e),u=new Array(e),n=0;n[1,2,3].includes(t)))||2,c()},l.strength=function(t){return arguments.length?(s="function"==typeof t?t:Jr(+t),c(),l):s},l.radius=function(n){return arguments.length?(t="function"==typeof n?n:Jr(+n),c(),l):t},l.x=function(t){return arguments.length?(n=+t,l):n},l.y=function(t){return arguments.length?(e=+t,l):e},l.z=function(t){return arguments.length?(r=+t,l):r},l}((function(n){var o=e[n[t.nodeId]]||-1;return("radialin"===t.dagMode?r-o:o)*i})).strength((function(n){return t.dagNodeFilter(n)?1:0})):null);for(var s=0;s0&&t.forceLayout.alpha()1?r-1:0),o=1;o1&&void 0!==arguments[1]?arguments[1]:0,e=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10,r=arguments.length,i=new Array(r>3?r-3:0),o=3;o1&&void 0!==arguments[1]?arguments[1]:function(){return!0},e=nr(t.nodeVal),r=function(n){return Math.sqrt(Math.max(0,e(n)||1))*t.nodeRelSize},i=t.graphData.nodes.filter(n).map((function(t){return{x:t.x,y:t.y,r:r(t)}}));return i.length?{x:[(0,Ce.Z)(i,(function(t){return t.x-t.r})),(0,Oe.Z)(i,(function(t){return t.x+t.r}))],y:[(0,Ce.Z)(i,(function(t){return t.y-t.r})),(0,Oe.Z)(i,(function(t){return t.y+t.r}))]}:null},pauseAnimation:function(t){return t.animationFrameRequestId&&(cancelAnimationFrame(t.animationFrameRequestId),t.animationFrameRequestId=null),this},resumeAnimation:function(t){return t.animationFrameRequestId||this._animationCycle(),this},_destructor:function(){this.pauseAnimation(),this.graphData({nodes:[],links:[]})}},Oo),stateInit:function(){return{lastSetZoom:1,zoom:be(),forceGraph:new Ao,shadowGraph:(new Ao).cooldownTicks(0).nodeColor("__indexColor").linkColor("__indexColor").isShadow(!0),colorTracker:new Br}},init:function(t,n){var e=this;t.innerHTML="";var r=document.createElement("div");r.classList.add("force-graph-container"),r.style.position="relative",t.appendChild(r),n.canvas=document.createElement("canvas"),n.backgroundColor&&(n.canvas.style.background=n.backgroundColor),r.appendChild(n.canvas),n.shadowCanvas=document.createElement("canvas");var i=n.canvas.getContext("2d"),o=n.shadowCanvas.getContext("2d",{willReadFrequently:!0}),a={x:-1e12,y:-1e12},u=function(){var t=null,e=window.devicePixelRatio,r=a.x>0&&a.y>0?o.getImageData(a.x*e,a.y*e,1,1):null;return r&&(t=n.colorTracker.lookup(r.data)),t};Pt(n.canvas).call(function(){var t,n,e,r,i=Ae,o=ze,a=Me,u=Se,s={},l=It("start","drag","end"),c=0,h=0;function f(t){t.on("mousedown.drag",d).filter(u).on("touchstart.drag",y).on("touchmove.drag",v,Ut).on("touchend.drag touchcancel.drag",m).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function d(a,u){if(!r&&i.call(this,a,u)){var s=_(this,o.call(this,a,u),a,u,"mouse");s&&(Pt(a.view).on("mousemove.drag",p,Ft).on("mouseup.drag",g,Ft),qt(a.view),Lt(a),e=!1,t=a.clientX,n=a.clientY,s("start",a))}}function p(r){if(Bt(r),!e){var i=r.clientX-t,o=r.clientY-n;e=i*i+o*o>h}s.mouse("drag",r)}function g(t){Pt(t.view).on("mousemove.drag mouseup.drag",null),Ht(t.view,e),Bt(t),s.mouse("end",t)}function y(t,n){if(i.call(this,t,n)){var e,r,a=t.changedTouches,u=o.call(this,t,n),s=a.length;for(e=0;e0||n.isPointerPressed)&&("touch"!==e.pointerType||void 0===e.movementX||[e.movementX,e.movementY].some((function(t){return Math.abs(t)>1})))&&(n.isPointerDragging=!0);var i,o,u,l=(i=r.getBoundingClientRect(),o=window.pageXOffset||document.documentElement.scrollLeft,u=window.pageYOffset||document.documentElement.scrollTop,{top:i.top+u,left:i.left+o});a.x=e.pageX-l.left,a.y=e.pageY-l.top,s.style.top="".concat(a.y,"px"),s.style.left="".concat(a.x,"px"),s.style.transform="translate(-".concat(a.x/n.width*100,"%, ").concat(n.height-a.y<100?"calc(-100% - 8px)":"21px",")")}),{passive:!0})})),r.addEventListener("pointerup",(function(t){if(n.isPointerPressed=!1,n.isPointerDragging)n.isPointerDragging=!1;else{var e=[t,n.pointerDownEvent];requestAnimationFrame((function(){if(0===t.button)if(n.hoverObj){var r=n["on".concat(n.hoverObj.type,"Click")];r&&r.apply(void 0,[n.hoverObj.d].concat(e))}else n.onBackgroundClick&&n.onBackgroundClick.apply(n,e);if(2===t.button)if(n.hoverObj){var i=n["on".concat(n.hoverObj.type,"RightClick")];i&&i.apply(void 0,[n.hoverObj.d].concat(e))}else n.onBackgroundRightClick&&n.onBackgroundRightClick.apply(n,e)}))}}),{passive:!0}),r.addEventListener("contextmenu",(function(t){return!(n.onBackgroundRightClick||n.onNodeRightClick||n.onLinkRightClick)||(t.preventDefault(),!1)})),n.forceGraph(i),n.shadowGraph(o);var l=Pe()((function(){To(o,n.width,n.height),n.shadowGraph.linkWidth((function(t){return nr(n.linkWidth)(t)+n.linkHoverPrecision}));var t=fe(n.canvas);n.shadowGraph.globalScale(t.k).tickFrame()}),800);n.flushShadowCanvas=l.flush,(this._animationCycle=function t(){var e=!n.autoPauseRedraw||!!n.needsRedraw||n.forceGraph.isEngineRunning()||n.graphData.links.some((function(t){return t.__photons&&t.__photons.length}));if(n.needsRedraw=!1,n.enablePointerInteraction){var r=n.isPointerDragging?null:u();if(r!==n.hoverObj){var o=n.hoverObj,a=o?o.type:null,c=r?r.type:null;if(a&&a!==c){var h=n["on".concat(a,"Hover")];h&&h(null,o.d)}if(c){var f=n["on".concat(c,"Hover")];f&&f(r.d,a===c?o.d:null)}var d=r&&nr(n["".concat(r.type.toLowerCase(),"Label")])(r.d)||"";s.style.visibility=d?"visible":"hidden",s.innerHTML=d,n.canvas.classList[r&&n["on".concat(c,"Click")]||!r&&n.onBackgroundClick?"add":"remove"]("clickable"),n.hoverObj=r}e&&l()}if(e){To(i,n.width,n.height);var p=fe(n.canvas).k;n.onRenderFramePre&&n.onRenderFramePre(i,p),n.forceGraph.globalScale(p).tickFrame(),n.onRenderFramePost&&n.onRenderFramePost(i,p)}Ze.update(),n.animationFrameRequestId=requestAnimationFrame(t)})()},update:function(t){}}),jo=r(5697),Ro=r.n(jo);const Do={width:Ro().number,height:Ro().number,graphData:Ro().shape({nodes:Ro().arrayOf(Ro().object).isRequired,links:Ro().arrayOf(Ro().object).isRequired}),backgroundColor:Ro().string,nodeRelSize:Ro().number,nodeId:Ro().string,nodeLabel:Ro().oneOfType([Ro().string,Ro().func]),nodeVal:Ro().oneOfType([Ro().number,Ro().string,Ro().func]),nodeVisibility:Ro().oneOfType([Ro().bool,Ro().string,Ro().func]),nodeColor:Ro().oneOfType([Ro().string,Ro().func]),nodeAutoColorBy:Ro().oneOfType([Ro().string,Ro().func]),onNodeHover:Ro().func,onNodeClick:Ro().func,linkSource:Ro().string,linkTarget:Ro().string,linkLabel:Ro().oneOfType([Ro().string,Ro().func]),linkVisibility:Ro().oneOfType([Ro().bool,Ro().string,Ro().func]),linkColor:Ro().oneOfType([Ro().string,Ro().func]),linkAutoColorBy:Ro().oneOfType([Ro().string,Ro().func]),linkWidth:Ro().oneOfType([Ro().number,Ro().string,Ro().func]),linkCurvature:Ro().oneOfType([Ro().number,Ro().string,Ro().func]),linkDirectionalArrowLength:Ro().oneOfType([Ro().number,Ro().string,Ro().func]),linkDirectionalArrowColor:Ro().oneOfType([Ro().string,Ro().func]),linkDirectionalArrowRelPos:Ro().oneOfType([Ro().number,Ro().string,Ro().func]),linkDirectionalParticles:Ro().oneOfType([Ro().number,Ro().string,Ro().func]),linkDirectionalParticleSpeed:Ro().oneOfType([Ro().number,Ro().string,Ro().func]),linkDirectionalParticleWidth:Ro().oneOfType([Ro().number,Ro().string,Ro().func]),linkDirectionalParticleColor:Ro().oneOfType([Ro().string,Ro().func]),onLinkHover:Ro().func,onLinkClick:Ro().func,dagMode:Ro().oneOf(["td","bu","lr","rl","zin","zout","radialin","radialout"]),dagLevelDistance:Ro().number,dagNodeFilter:Ro().func,onDagError:Ro().func,d3AlphaMin:Ro().number,d3AlphaDecay:Ro().number,d3VelocityDecay:Ro().number,warmupTicks:Ro().number,cooldownTicks:Ro().number,cooldownTime:Ro().number,onEngineTick:Ro().func,onEngineStop:Ro().func,getGraphBbox:Ro().func},Io={zoomToFit:Ro().func,onNodeRightClick:Ro().func,onNodeDrag:Ro().func,onNodeDragEnd:Ro().func,onLinkRightClick:Ro().func,linkHoverPrecision:Ro().number,onBackgroundClick:Ro().func,onBackgroundRightClick:Ro().func,enablePointerInteraction:Ro().bool,enableNodeDrag:Ro().bool},Uo={showNavInfo:Ro().bool,nodeOpacity:Ro().number,nodeResolution:Ro().number,nodeThreeObject:Ro().oneOfType([Ro().object,Ro().string,Ro().func]),nodeThreeObjectExtend:Ro().oneOfType([Ro().bool,Ro().string,Ro().func]),linkOpacity:Ro().number,linkResolution:Ro().number,linkCurveRotation:Ro().oneOfType([Ro().number,Ro().string,Ro().func]),linkMaterial:Ro().oneOfType([Ro().object,Ro().string,Ro().func]),linkThreeObject:Ro().oneOfType([Ro().object,Ro().string,Ro().func]),linkThreeObjectExtend:Ro().oneOfType([Ro().bool,Ro().string,Ro().func]),linkPositionUpdate:Ro().func,linkDirectionalArrowResolution:Ro().number,linkDirectionalParticleResolution:Ro().number,forceEngine:Ro().oneOf(["d3","ngraph"]),ngraphPhysics:Ro().object,numDimensions:Ro().oneOf([1,2,3])},Fo=Object.assign({},Do,Io,{linkLineDash:Ro().oneOfType([Ro().arrayOf(Ro().number),Ro().string,Ro().func]),nodeCanvasObjectMode:Ro().oneOfType([Ro().string,Ro().func]),nodeCanvasObject:Ro().func,nodePointerAreaPaint:Ro().func,linkCanvasObjectMode:Ro().oneOfType([Ro().string,Ro().func]),linkCanvasObject:Ro().func,linkPointerAreaPaint:Ro().func,autoPauseRedraw:Ro().bool,minZoom:Ro().number,maxZoom:Ro().number,enableZoomInteraction:Ro().bool,enablePanInteraction:Ro().bool,onZoom:Ro().func,onZoomEnd:Ro().func,onRenderFramePre:Ro().func,onRenderFramePost:Ro().func});Object.assign({},Do,Io,Uo,{enableNavigationControls:Ro().bool,controlType:Ro().oneOf(["trackball","orbit","fly"]),rendererConfig:Ro().object,extraRenderers:Ro().arrayOf(Ro().shape({render:Ro().func.isRequired}))}),Object.assign({},Do,Uo,{nodeDesc:Ro().oneOfType([Ro().string,Ro().func]),linkDesc:Ro().oneOfType([Ro().string,Ro().func])}),Object.assign({},Do,Uo,{markerAttrs:Ro().object,yOffset:Ro().number,glScale:Ro().number});const Lo=function(t,n){var e="object"===d(n)?n:{wrapperElementType:n,methodNames:(arguments.length<=2?void 0:arguments[2])||void 0,initPropNames:(arguments.length<=3?void 0:arguments[3])||void 0},r=e.wrapperElementType,o=void 0===r?"div":r,a=e.nodeMapper,u=void 0===a?function(t){return t}:a,s=e.methodNames,l=void 0===s?[]:s,h=e.initPropNames,y=void 0===h?[]:h;return(0,i.forwardRef)((function(n,e){var r=(0,i.useRef)(),a=p((0,i.useState)({}),2),s=a[0],h=a[1];(0,i.useEffect)((function(){return h(n)}));var d,v,m,_=(0,i.useMemo)((function(){var e=f()(y.filter((function(t){return n.hasOwnProperty(t)})).map((function(t){return[t,n[t]]})));return t(e)}),[]);(0,i.useLayoutEffect)((function(){_(u(r.current))}),[]),d=function(){return _._destructor instanceof Function?_._destructor:void 0},v=[],m=(0,i.useRef)(),(0,i.useEffect)((function(){clearTimeout(m.current);var t=d();if(t)return function(){return m.current=setTimeout(t)}}),v);var x=(0,i.useCallback)((function(t){for(var n=arguments.length,e=new Array(n>1?n-1:0),r=1;r */ diff --git a/public/_gatsby/slices/_gatsby-scripts-1.html b/public/_gatsby/slices/_gatsby-scripts-1.html new file mode 100644 index 0000000000..e45cd1563e --- /dev/null +++ b/public/_gatsby/slices/_gatsby-scripts-1.html @@ -0,0 +1,7 @@ + + + \ No newline at end of file diff --git a/public/app-0e207e3c4b43cc418e2d.js b/public/app-0e207e3c4b43cc418e2d.js deleted file mode 100644 index 07e7c00a7d..0000000000 --- a/public/app-0e207e3c4b43cc418e2d.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkjonas_de=self.webpackChunkjonas_de||[]).push([[143],{67228:function(t){t.exports=function(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n=0||(o[n]=t[n]);return o},t.exports.__esModule=!0,t.exports.default=t.exports},99489:function(t){function e(n,r){return t.exports=e=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},t.exports.__esModule=!0,t.exports.default=t.exports,e(n,r)}t.exports=e,t.exports.__esModule=!0,t.exports.default=t.exports},63038:function(t,e,n){var r=n(22858),o=n(13884),a=n(60379),i=n(80521);t.exports=function(t,e){return r(t)||o(t,e)||a(t,e)||i()},t.exports.__esModule=!0,t.exports.default=t.exports},60379:function(t,e,n){var r=n(67228);t.exports=function(t,e){if(t){if("string"==typeof t)return r(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(t,e):void 0}},t.exports.__esModule=!0,t.exports.default=t.exports},22393:function(t,e){"use strict";var n=Object.assign||function(t){for(var e=1;e1&&void 0!==arguments[1]?arguments[1]:{},u=c.state,l=c.replace,p=void 0!==l&&l;if("number"==typeof e)t.history.go(e);else{u=n({},u,{key:Date.now()+""});try{i||p?t.history.replaceState(u,null,e):t.history.pushState(u,null,e)}catch(h){t.location[p?"replace":"assign"](e)}}a=r(t),i=!0;var f=new Promise((function(t){return s=t}));return o.forEach((function(t){return t({location:a,action:"PUSH"})})),f}}},a=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/",e=t.indexOf("?"),n={pathname:e>-1?t.substr(0,e):t,search:e>-1?t.substr(e):""},r=0,o=[n],a=[null];return{get location(){return o[r]},addEventListener:function(t,e){},removeEventListener:function(t,e){},history:{get entries(){return o},get index(){return r},get state(){return a[r]},pushState:function(t,e,n){var i=n.split("?"),s=i[0],c=i[1],u=void 0===c?"":c;r++,o.push({pathname:s,search:u.length?"?"+u:u}),a.push(t)},replaceState:function(t,e,n){var i=n.split("?"),s=i[0],c=i[1],u=void 0===c?"":c;o[r]={pathname:s,search:u},a[r]=t},go:function(t){var e=r+t;e<0||e>a.length-1||(r=e)}}}},i=!("undefined"==typeof window||!window.document||!window.document.createElement),s=o(i?window:a()),c=s.navigate;e.V5=s},92098:function(t,e,n){"use strict";e.__esModule=!0,e.shallowCompare=e.validateRedirect=e.insertParams=e.resolve=e.match=e.pick=e.startsWith=void 0;var r,o=n(41143),a=(r=o)&&r.__esModule?r:{default:r};var i=function(t,e){return t.substr(0,e.length)===e},s=function(t,e){for(var n=void 0,r=void 0,o=e.split("?")[0],i=h(o),s=""===i[0],u=f(t),p=0,d=u.length;pe.score?-1:t.index-e.index}))},h=function(t){return t.replace(/(^\/+|\/+$)/g,"").split("/")},d=function(t){for(var e=arguments.length,n=Array(e>1?e-1:0),r=1;r0})))&&n.length>0?"?"+n.join("&"):"")},v=["uri","path"];e.startsWith=i,e.pick=s,e.match=function(t,e){return s([{path:t}],e)},e.resolve=function(t,e){if(i(t,"/"))return t;var n=t.split("?"),r=n[0],o=n[1],a=e.split("?")[0],s=h(r),c=h(a);if(""===s[0])return d(a,o);if(!i(s[0],".")){var u=c.concat(s).join("/");return d(("/"===a?"":"/")+u,o)}for(var l=c.concat(s),p=[],f=0,v=l.length;f=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,c=!1;return{s:function(){n=n.call(t)},n:function(){var t=n.next();return s=t.done,t},e:function(t){c=!0,i=t},f:function(){try{s||null==n.return||n.return()}finally{if(c)throw i}}}}function a(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n0)}))}))).observe(e),{instance:r,el:e}))},n.render=function(){var t=this,e=this.props,n=e.to,r=e.getProps,a=void 0===r?this.defaultGetProps:r,i=e.onClick,c=e.onMouseEnter,v=(e.activeClassName,e.activeStyle,e.innerRef,e.partiallyActive,e.state),m=e.replace,g=e._location,y=(0,o.default)(e,d);var w=(0,h.rewriteLinkPath)(n,g.pathname);return(0,f.isLocalLink)(w)?u.default.createElement(l.Link,(0,s.default)({to:w,state:v,getProps:a,innerRef:this.handleRef,onMouseEnter:function(t){c&&c(t);var e=(0,p.parsePath)(w);___loader.hovering(e.pathname+e.search)},onClick:function(e){if(i&&i(e),!(0!==e.button||t.props.target||e.defaultPrevented||e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)){e.preventDefault();var n=m,r=encodeURI(w)===g.pathname;"boolean"!=typeof m&&r&&(n=!0),window.___navigate(w,{state:v,replace:n})}return!0}},y)):u.default.createElement("a",(0,s.default)({href:w},y))},e}(u.default.Component);b.propTypes=(0,s.default)({},y,{onClick:c.default.func,to:c.default.string.isRequired,replace:c.default.bool,state:c.default.object});var P=u.default.forwardRef((function(t,e){return u.default.createElement(w,(0,s.default)({innerRef:e},t))}));e.default=P;e.navigate=function(t,e){window.___navigate((0,h.rewriteLinkPath)(t,window.location.pathname),e)}},84587:function(t,e){"use strict";e.__esModule=!0,e.isLocalLink=void 0;var n=/^[a-zA-Z][a-zA-Z\d+\-.]*?:/;e.isLocalLink=function(t){if("string"==typeof t)return!function(t){return n.test(t)}(t)}},61752:function(t,e){"use strict";e.__esModule=!0,e.parsePath=function(t){var e=t||"/",n="",r="",o=e.indexOf("#");-1!==o&&(r=e.slice(o),e=e.slice(0,o));var a=e.indexOf("?");-1!==a&&(n=e.slice(a),e=e.slice(0,a));return{pathname:e,search:"?"===n?"":n,hash:"#"===r?"":r}}},80349:function(t,e,n){"use strict";e.__esModule=!0,e.rewriteLinkPath=void 0;var r=n(92098),o=(n(88440),n(61752)),a=n(84587),i=n(38037),s=function(t){return null==t?void 0:t.startsWith("/")};e.rewriteLinkPath=function(t,e){if("number"==typeof t)return t;if(!(0,a.isLocalLink)(t))return t;var n=(0,o.parsePath)(t),c=(n.pathname,n.search,n.hash,t);return s(c)?(0,i.withPrefix)(c):function(t,e){return s(t)?t:(0,r.resolve)(t,e)}(c,e)}},19679:function(t,e,n){"use strict";e.$C=void 0;var r=n(61432);e.$C=r.ScrollHandler,n(54855).useScrollRestoration},61432:function(t,e,n){"use strict";var r=n(95318);e.__esModule=!0,e.ScrollHandler=e.ScrollContext=void 0;var o=r(n(81506)),a=r(n(85354)),i=function(t,e){if(!e&&t&&t.__esModule)return t;if(null===t||"object"!=typeof t&&"function"!=typeof t)return{default:t};var n=u(e);if(n&&n.has(t))return n.get(t);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in t)if("default"!==a&&Object.prototype.hasOwnProperty.call(t,a)){var i=o?Object.getOwnPropertyDescriptor(t,a):null;i&&(i.get||i.set)?Object.defineProperty(r,a,i):r[a]=t[a]}r.default=t,n&&n.set(t,r);return r}(n(67294)),s=r(n(45697)),c=n(21142);function u(t){if("function"!=typeof WeakMap)return null;var e=new WeakMap,n=new WeakMap;return(u=function(t){return t?n:e})(t)}var l=i.createContext(new c.SessionStorage);e.ScrollContext=l,l.displayName="GatsbyScrollContext";var p=function(t){function e(){for(var e,n=arguments.length,r=new Array(n),a=0;a{let e;switch(r){case c.postHydrate:e=h(t);break;case c.idle:s((()=>{e=h(t)}));break;case c.offMainThread:if(u){const e=v(t);u(e)}}return()=>{const{script:t,loadCallback:n,errorCallback:r}=e||{};n&&(null==t||t.removeEventListener("load",n)),r&&(null==t||t.removeEventListener("error",r)),null==t||t.remove()}}),[]),r===c.offMainThread){const i=d(t),s=v(t);return"undefined"==typeof window&&(u?u(s):console.warn(`Unable to collect off-main-thread script '${e||n||"no-id-or-src"}' for configuration with Partytown.\nGatsby script components must be used either as a child of your page, in wrapPageElement, or wrapRootElement.\nSee https://gatsby.dev/gatsby-script for more information.`)),i?a.createElement("script",o()({type:"text/partytown","data-strategy":r,crossOrigin:"anonymous"},s,{dangerouslySetInnerHTML:{__html:d(t)}})):a.createElement("script",o()({type:"text/partytown",src:m(n),"data-strategy":r,crossOrigin:"anonymous"},s))}return null}function h(t){const{id:e,src:n,strategy:r=c.postHydrate,onLoad:a,onError:i}=t||{},s=e||n,u=["load","error"],f={load:a,error:i};if(s){for(const t of u)if(null!=f&&f[t]){var h;const e=p.get(s)||{},{callbacks:n=[]}=(null==e?void 0:e[t])||{};var m,y;if(n.push(null==f?void 0:f[t]),null!=e&&null!==(h=e[t])&&void 0!==h&&h.event)null==f||null===(m=f[t])||void 0===m||m.call(f,null==e||null===(y=e[t])||void 0===y?void 0:y.event);else p.set(s,o()({},e,{[t]:{callbacks:n}}))}if(l.has(s))return null}const w=d(t),b=v(t),P=document.createElement("script");e&&(P.id=e),P.dataset.strategy=r;for(const[o,c]of Object.entries(b))P.setAttribute(o,c);w&&(P.textContent=w),n&&(P.src=n);const _={};if(s){for(const t of u){const e=e=>g(e,s,t);P.addEventListener(t,e),_[`${t}Callback`]=e}l.add(s)}return document.body.appendChild(P),{script:P,loadCallback:_.loadCallback,errorCallback:_.errorCallback}}function d(t){const{dangerouslySetInnerHTML:e,children:n=""}=t||{},{__html:r=""}=e||{};return r||n}function v(t){const e={};for(const[n,r]of Object.entries(t))u.has(n)||(e[n]=r);return e}function m(t){if(t)return`/__third-party-proxy?url=${encodeURIComponent(t)}`}function g(t,e,n){const r=p.get(e)||{};for(const a of(null==r||null===(o=r[n])||void 0===o?void 0:o.callbacks)||[]){var o;a(t)}p.set(e,{[n]:{event:t}})}},85418:function(t,e,n){e.components={"component---src-pages-404-js":function(){return Promise.all([n.e(532),n.e(351),n.e(883)]).then(n.bind(n,30429))},"component---src-pages-art-twitter-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(940)]).then(n.bind(n,2897))},"component---src-pages-artworks-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(546)]).then(n.bind(n,22949))},"component---src-pages-cv-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(576)]).then(n.bind(n,78648))},"component---src-pages-index-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(678)]).then(n.bind(n,6533))},"component---src-pages-jufo-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(913)]).then(n.bind(n,10247))},"component---src-pages-projects-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(853)]).then(n.bind(n,21094))},"component---src-pages-publications-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(739),n.e(664),n.e(654),n.e(937)]).then(n.bind(n,97291))},"component---src-pages-research-influences-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(953)]).then(n.bind(n,90335))},"component---src-pages-research-interests-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(739),n.e(664),n.e(654),n.e(713)]).then(n.bind(n,79250))},"component---src-pages-research-interests-treemap-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(739),n.e(664),n.e(218)]).then(n.bind(n,36620))},"component---src-pages-research-interests-wordcloud-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(739),n.e(896)]).then(n.bind(n,43451))},"component---src-pages-research-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(739),n.e(664),n.e(654),n.e(236)]).then(n.bind(n,16079))},"component---src-pages-research-reading-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(739),n.e(664),n.e(654),n.e(635)]).then(n.bind(n,31937))},"component---src-pages-teaching-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(126)]).then(n.bind(n,68264))},"component---src-pages-ux-js":function(){return Promise.all([n.e(532),n.e(351),n.e(772),n.e(166)]).then(n.bind(n,27139))}}},34741:function(t,e,n){t.exports=[{plugin:n(20540),options:{plugins:[]}}]},3092:function(t,e,n){var r=n(34741),o=n(25820).jN,a=o.getResourceURLsForPathname,i=o.loadPage,s=o.loadPageSync;e.h=function(t,e,n,o){void 0===e&&(e={});var c=r.map((function(n){if(n.plugin[t]){e.getResourceURLsForPathname=a,e.loadPage=i,e.loadPageSync=s;var r=n.plugin[t](e,n.options);return r&&o&&(e=o({args:e,result:r,plugin:n})),r}}));return(c=c.filter((function(t){return void 0!==t}))).length>0?c:n?[n]:[]},e.I=function(t,e,n){return r.reduce((function(n,r){return r.plugin[t]?n.then((function(){return r.plugin[t](e,r.options)})):n}),Promise.resolve())}},68299:function(t,e,n){"use strict";n.d(e,{Z:function(){return r}});var r=function(t){return t=t||Object.create(null),{on:function(e,n){(t[e]||(t[e]=[])).push(n)},off:function(e,n){t[e]&&t[e].splice(t[e].indexOf(n)>>>0,1)},emit:function(e,n){(t[e]||[]).slice().map((function(t){t(n)})),(t["*"]||[]).slice().map((function(t){t(e,n)}))}}}()},17802:function(t,e,n){"use strict";n.d(e,{UD:function(){return f},Cj:function(){return d},GA:function(){return h},DS:function(){return p}});var r=n(92098),o=n(41505),a=function(t){if(void 0===t)return t;var e=t.split("?"),n=e[0],r=e[1],o=void 0===r?"":r;return o&&(o="?"+o),"/"===n?"/"+o:"/"===n.charAt(n.length-1)?n.slice(0,-1)+o:n+o},i=n(96073),s=new Map,c=[],u=function(t){var e=t;if(-1!==t.indexOf("?")){var n=t.split("?"),r=n[0],a=n[1];e=r+"?"+encodeURIComponent(a)}var i=decodeURIComponent(e);return(0,o.Z)(i,decodeURIComponent("")).split("#")[0]};function l(t){return t.startsWith("/")||t.startsWith("https://")||t.startsWith("http://")?t:new URL(t,window.location.href+(window.location.href.endsWith("/")?"":"/")).pathname}var p=function(t){c=t},f=function(t){var e=v(t),n=c.map((function(t){var e=t.path;return{path:t.matchPath,originalPath:e}})),o=(0,r.pick)(n,e);return o?a(o.route.originalPath):null},h=function(t){var e=v(t),n=c.map((function(t){var e=t.path;return{path:t.matchPath,originalPath:e}})),o=(0,r.pick)(n,e);return o?o.params:{}},d=function t(e){var n=u(l(e));if(s.has(n))return s.get(n);var r=(0,i.J)(e);if(r)return t(r.toPath);var o=f(n);return o||(o=v(e)),s.set(n,o),o},v=function(t){var e=u(l(t));return"/index.html"===e&&(e="/"),e=a(e)}},1597:function(t,e,n){"use strict";n.d(e,{B9:function(){return i},c4:function(){return o.navigate},rU:function(){return o.default}});var r=n(67294),o=n(38037),a=(n(19679),n(82743),n(25820)),i=(n(49848),a.ZP.enqueue,r.createContext({}))},25820:function(t,e,n){"use strict";n.d(e,{uQ:function(){return f},kL:function(){return P},ZP:function(){return S},hs:function(){return k},jN:function(){return E},N1:function(){return _}});var r=n(94578),o=n(30907);var a=n(40181);function i(t){return function(t){if(Array.isArray(t))return(0,o.Z)(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||(0,a.Z)(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var s=function(t){if("undefined"==typeof document)return!1;var e=document.createElement("link");try{if(e.relList&&"function"==typeof e.relList.supports)return e.relList.supports(t)}catch(n){return!1}return!1}("prefetch")?function(t,e){return new Promise((function(n,r){if("undefined"!=typeof document){var o=document.createElement("link");o.setAttribute("rel","prefetch"),o.setAttribute("href",t),Object.keys(e).forEach((function(t){o.setAttribute(t,e[t])})),o.onload=n,o.onerror=r,(document.getElementsByTagName("head")[0]||document.getElementsByName("script")[0].parentNode).appendChild(o)}else r()}))}:function(t){return new Promise((function(e,n){var r=new XMLHttpRequest;r.open("GET",t,!0),r.onload=function(){200===r.status?e():n()},r.send(null)}))},c={},u=function(t,e){return new Promise((function(n){c[t]?n():s(t,e).then((function(){n(),c[t]=!0})).catch((function(){}))}))},l=n(68299),p=n(17802),f={Error:"error",Success:"success"},h=function(t){return t&&t.default||t},d=function(t){var e,n=t.split("?"),r=n[0],o=n[1];return"/page-data/"+("/"===r?"index":(e="/"===(e=r)[0]?e.slice(1):e).endsWith("/")?e.slice(0,-1):e)+"/page-data.json"+(o?"?"+o:"")};function v(t,e){return void 0===e&&(e="GET"),new Promise((function(n){var r=new XMLHttpRequest;r.open(e,t,!0),r.onreadystatechange=function(){4==r.readyState&&n(r)},r.send(null)}))}var m,g=/bot|crawler|spider|crawling/i,y=function(t,e){void 0===e&&(e=null);var n={componentChunkName:t.componentChunkName,path:t.path,webpackCompilationHash:t.webpackCompilationHash,matchPath:t.matchPath,staticQueryHashes:t.staticQueryHashes,getServerDataError:t.getServerDataError};return{component:e,json:t.result,page:n}},w=function(){function t(t,e){this.inFlightNetworkRequests=new Map,this.pageDb=new Map,this.inFlightDb=new Map,this.staticQueryDb={},this.pageDataDb=new Map,this.isPrefetchQueueRunning=!1,this.prefetchQueued=[],this.prefetchTriggered=new Set,this.prefetchCompleted=new Set,this.loadComponent=t,(0,p.DS)(e)}var e=t.prototype;return e.memoizedGet=function(t){var e=this,n=this.inFlightNetworkRequests.get(t);return n||(n=v(t,"GET"),this.inFlightNetworkRequests.set(t,n)),n.then((function(n){return e.inFlightNetworkRequests.delete(t),n})).catch((function(n){throw e.inFlightNetworkRequests.delete(t),n}))},e.setApiRunner=function(t){this.apiRunner=t,this.prefetchDisabled=t("disableCorePrefetching").some((function(t){return t}))},e.fetchPageDataJson=function(t){var e=this,n=t.pagePath,r=t.retries,o=void 0===r?0:r,a=d(n);return this.memoizedGet(a).then((function(r){var a=r.status,i=r.responseText;if(200===a)try{var s=JSON.parse(i);if(void 0===s.path)throw new Error("not a valid pageData response");var c=n.split("?")[1];return c&&!s.path.includes(c)&&(s.path+="?"+c),Object.assign(t,{status:f.Success,payload:s})}catch(u){}return 404===a||200===a?"/404.html"===n||"/500.html"===n?Object.assign(t,{status:f.Error}):e.fetchPageDataJson(Object.assign(t,{pagePath:"/404.html",notFound:!0})):500===a?e.fetchPageDataJson(Object.assign(t,{pagePath:"/500.html",internalServerError:!0})):o<3?e.fetchPageDataJson(Object.assign(t,{retries:o+1})):Object.assign(t,{status:f.Error})}))},e.loadPageDataJson=function(t){var e=this,n=(0,p.Cj)(t);if(this.pageDataDb.has(n)){var r=this.pageDataDb.get(n);return Promise.resolve(r)}return this.fetchPageDataJson({pagePath:n}).then((function(t){return e.pageDataDb.set(n,t),t}))},e.findMatchPath=function(t){return(0,p.UD)(t)},e.loadPage=function(t){var e=this,n=(0,p.Cj)(t);if(this.pageDb.has(n)){var r=this.pageDb.get(n);return r.error?{error:r.error,status:r.status}:Promise.resolve(r.payload)}if(this.inFlightDb.has(n))return this.inFlightDb.get(n);var o=Promise.all([this.loadAppData(),this.loadPageDataJson(n)]).then((function(t){var r=t[1];if(r.status===f.Error)return{status:f.Error};var o=r.payload,a=o,i=a.componentChunkName,s=a.staticQueryHashes,c=void 0===s?[]:s,u={},p=e.loadComponent(i).then((function(e){var n;return u.createdAt=new Date,!e||e instanceof Error?(u.status=f.Error,u.error=e):(u.status=f.Success,!0===r.notFound&&(u.notFound=!0),o=Object.assign(o,{webpackCompilationHash:t[0]?t[0].webpackCompilationHash:""}),n=y(o,e)),n})),h=Promise.all(c.map((function(t){if(e.staticQueryDb[t]){var n=e.staticQueryDb[t];return{staticQueryHash:t,jsonPayload:n}}return e.memoizedGet("/page-data/sq/d/"+t+".json").then((function(e){var n=JSON.parse(e.responseText);return{staticQueryHash:t,jsonPayload:n}})).catch((function(){throw new Error("We couldn't load \"/page-data/sq/d/"+t+'.json"')}))}))).then((function(t){var n={};return t.forEach((function(t){var r=t.staticQueryHash,o=t.jsonPayload;n[r]=o,e.staticQueryDb[r]=o})),n}));return Promise.all([p,h]).then((function(t){var r,o=t[0],a=t[1];return o&&(r=Object.assign({},o,{staticQueryResults:a}),u.payload=r,l.Z.emit("onPostLoadPageResources",{page:r,pageResources:r})),e.pageDb.set(n,u),u.error?{error:u.error,status:u.status}:r})).catch((function(t){return{error:t,status:f.Error}}))}));return o.then((function(){e.inFlightDb.delete(n)})).catch((function(t){throw e.inFlightDb.delete(n),t})),this.inFlightDb.set(n,o),o},e.loadPageSync=function(t,e){void 0===e&&(e={});var n=(0,p.Cj)(t);if(this.pageDb.has(n)){var r,o=this.pageDb.get(n);if(o.payload)return o.payload;if(null!==(r=e)&&void 0!==r&&r.withErrorDetails)return{error:o.error,status:o.status}}},e.shouldPrefetch=function(t){return!!function(){if("connection"in navigator&&void 0!==navigator.connection){if((navigator.connection.effectiveType||"").includes("2g"))return!1;if(navigator.connection.saveData)return!1}return!0}()&&((!navigator.userAgent||!g.test(navigator.userAgent))&&!this.pageDb.has(t))},e.prefetch=function(t){var e=this;if(!this.shouldPrefetch(t))return{then:function(t){return t(!1)},abort:function(){}};if(this.prefetchTriggered.has(t))return{then:function(t){return t(!0)},abort:function(){}};var n={resolve:null,reject:null,promise:null};n.promise=new Promise((function(t,e){n.resolve=t,n.reject=e})),this.prefetchQueued.push([t,n]);var r=new AbortController;return r.signal.addEventListener("abort",(function(){var n=e.prefetchQueued.findIndex((function(e){return e[0]===t}));-1!==n&&e.prefetchQueued.splice(n,1)})),this.isPrefetchQueueRunning||(this.isPrefetchQueueRunning=!0,setTimeout((function(){e._processNextPrefetchBatch()}),3e3)),{then:function(t,e){return n.promise.then(t,e)},abort:r.abort.bind(r)}},e._processNextPrefetchBatch=function(){var t=this;(window.requestIdleCallback||function(t){return setTimeout(t,0)})((function(){var e=t.prefetchQueued.splice(0,4),n=Promise.all(e.map((function(e){var n=e[0],r=e[1];return t.prefetchTriggered.has(n)||(t.apiRunner("onPrefetchPathname",{pathname:n}),t.prefetchTriggered.add(n)),t.prefetchDisabled?r.resolve(!1):t.doPrefetch((0,p.Cj)(n)).then((function(){t.prefetchCompleted.has(n)||(t.apiRunner("onPostPrefetchPathname",{pathname:n}),t.prefetchCompleted.add(n)),r.resolve(!0)}))})));t.prefetchQueued.length?n.then((function(){setTimeout((function(){t._processNextPrefetchBatch()}),3e3)})):t.isPrefetchQueueRunning=!1}))},e.doPrefetch=function(t){var e=this,n=d(t);return u(n,{crossOrigin:"anonymous",as:"fetch"}).then((function(){return e.loadPageDataJson(t)}))},e.hovering=function(t){this.loadPage(t)},e.getResourceURLsForPathname=function(t){var e=(0,p.Cj)(t),n=this.pageDataDb.get(e);if(n){var r=y(n.payload);return[].concat(i(b(r.page.componentChunkName)),[d(e)])}return null},e.isPageNotFound=function(t){var e=(0,p.Cj)(t),n=this.pageDb.get(e);return!n||n.notFound},e.loadAppData=function(t){var e=this;return void 0===t&&(t=0),this.memoizedGet("/page-data/app-data.json").then((function(n){var r,o=n.status,a=n.responseText;if(200!==o&&t<3)return e.loadAppData(t+1);if(200===o)try{var i=JSON.parse(a);if(void 0===i.webpackCompilationHash)throw new Error("not a valid app-data response");r=i}catch(s){}return r}))},t}(),b=function(t){return(window.___chunkMapping[t]||[]).map((function(t){return""+t}))},P=function(t){function e(e,n,r){var o;return o=t.call(this,(function(t){if(!e.components[t])throw new Error("We couldn't find the correct component chunk with the name "+t);return e.components[t]().then(h).catch((function(t){return t}))}),n)||this,r&&o.pageDataDb.set((0,p.Cj)(r.path),{pagePath:r.path,payload:r,status:"success"}),o}(0,r.Z)(e,t);var n=e.prototype;return n.doPrefetch=function(e){return t.prototype.doPrefetch.call(this,e).then((function(t){if(t.status!==f.Success)return Promise.resolve();var e=t.payload,n=e.componentChunkName,r=b(n);return Promise.all(r.map(u)).then((function(){return e}))}))},n.loadPageDataJson=function(e){return t.prototype.loadPageDataJson.call(this,e).then((function(t){return t.notFound?v(e,"HEAD").then((function(e){return 200===e.status?{status:f.Error}:t})):t}))},e}(w),_=function(t){m=t},E={enqueue:function(t){return m.prefetch(t)},getResourceURLsForPathname:function(t){return m.getResourceURLsForPathname(t)},loadPage:function(t){return m.loadPage(t)},loadPageSync:function(t,e){return void 0===e&&(e={}),m.loadPageSync(t,e)},prefetch:function(t){return m.prefetch(t)},isPageNotFound:function(t){return m.isPageNotFound(t)},hovering:function(t){return m.hovering(t)},loadAppData:function(){return m.loadAppData()}},S=E;function k(){return m?m.staticQueryDb:{}}},18522:function(t,e,n){"use strict";var r=n(94578),o=n(67294),a=n(3092),i=n(17802),s=function(t){function e(){return t.apply(this,arguments)||this}return(0,r.Z)(e,t),e.prototype.render=function(){var t=Object.assign({},this.props,{params:Object.assign({},(0,i.GA)(this.props.location.pathname),this.props.pageResources.json.pageContext.__params)}),e=(0,o.createElement)(this.props.pageResources.component,Object.assign({},t,{key:this.props.path||this.props.pageResources.page.path}));return(0,a.h)("wrapPageElement",{element:e,props:t},e,(function(e){return{element:e.result,props:t}})).pop()},e}(o.Component);e.Z=s},25824:function(t,e,n){"use strict";var r=n(94578),o=n(3092),a=n(67294),i=n(29499),s=n(19679),c=n(1597),u=n(25820),l=n(96073),p=n(68299),f={id:"gatsby-announcer",style:{position:"absolute",top:0,width:1,height:1,padding:0,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",border:0},"aria-live":"assertive","aria-atomic":"true"},h=n(22393),d=n(38037);function v(t){var e=(0,l.J)(t),n=window.location,r=n.hash,o=n.search;return null!=e&&(window.___replace(e.toPath+o+r),!0)}var m="";window.addEventListener("unhandledrejection",(function(t){/loading chunk \d* failed./i.test(t.reason)&&m&&(window.location.pathname=m)}));var g=function(t,e){v(t.pathname)||(m=t.pathname,(0,o.h)("onPreRouteUpdate",{location:t,prevLocation:e}))},y=function(t,e){v(t.pathname)||(0,o.h)("onRouteUpdate",{location:t,prevLocation:e})},w=function(t,e){if(void 0===e&&(e={}),"number"!=typeof t){var n=(0,d.parsePath)(t),r=n.pathname,a=n.search,s=n.hash,c=(0,l.J)(r);if(c&&(t=c.toPath+a+s),window.___swUpdated)window.location=r+a+s;else{var f=setTimeout((function(){p.Z.emit("onDelayedLoadPageResources",{pathname:r}),(0,o.h)("onRouteUpdateDelayed",{location:window.location})}),1e3);u.ZP.loadPage(r+a).then((function(n){if(!n||n.status===u.uQ.Error)return window.history.replaceState({},"",location.href),window.location=r,void clearTimeout(f);n&&n.page.webpackCompilationHash!==window.___webpackCompilationHash&&("serviceWorker"in navigator&&null!==navigator.serviceWorker.controller&&"activated"===navigator.serviceWorker.controller.state&&navigator.serviceWorker.controller.postMessage({gatsbyApi:"clearPathResources"}),window.location=r+a+s),(0,i.navigate)(t,e),clearTimeout(f)}))}}else h.V5.navigate(t)};function b(t,e){var n=this,r=e.location,a=r.pathname,i=r.hash,s=(0,o.h)("shouldUpdateScroll",{prevRouterProps:t,pathname:a,routerProps:{location:r},getSavedScrollPosition:function(t){return[0,n._stateStorage.read(t,t.key)]}});if(s.length>0)return s[s.length-1];if(t&&t.location.pathname===a)return i?decodeURI(i.slice(1)):[0,0];return!0}var P=function(t){function e(e){var n;return(n=t.call(this,e)||this).announcementRef=a.createRef(),n}(0,r.Z)(e,t);var n=e.prototype;return n.componentDidUpdate=function(t,e){var n=this;requestAnimationFrame((function(){var t="new page at "+n.props.location.pathname;document.title&&(t=document.title);var e=document.querySelectorAll("#gatsby-focus-wrapper h1");e&&e.length&&(t=e[0].textContent);var r="Navigated to "+t;n.announcementRef.current&&(n.announcementRef.current.innerText!==r&&(n.announcementRef.current.innerText=r))}))},n.render=function(){return a.createElement("div",Object.assign({},f,{ref:this.announcementRef}))},e}(a.Component),_=function(t,e){var n,r;return t.href!==e.href||(null==t||null===(n=t.state)||void 0===n?void 0:n.key)!==(null==e||null===(r=e.state)||void 0===r?void 0:r.key)},E=function(t){function e(e){var n;return n=t.call(this,e)||this,g(e.location,null),n}(0,r.Z)(e,t);var n=e.prototype;return n.componentDidMount=function(){y(this.props.location,null)},n.shouldComponentUpdate=function(t){return!!_(t.location,this.props.location)&&(g(this.props.location,t.location),!0)},n.componentDidUpdate=function(t){_(t.location,this.props.location)&&y(this.props.location,t.location)},n.render=function(){return a.createElement(a.Fragment,null,this.props.children,a.createElement(P,{location:location}))},e}(a.Component),S=n(18522),k=n(85418);function C(t,e){for(var n in t)if(!(n in e))return!0;for(var r in e)if(t[r]!==e[r])return!0;return!1}var x,j,R=function(t){function e(e){var n;n=t.call(this)||this;var r=e.location,o=e.pageResources;return n.state={location:Object.assign({},r),pageResources:o||u.ZP.loadPageSync(r.pathname+r.search,{withErrorDetails:!0})},n}(0,r.Z)(e,t),e.getDerivedStateFromProps=function(t,e){var n=t.location;return e.location.href!==n.href?{pageResources:u.ZP.loadPageSync(n.pathname+n.search,{withErrorDetails:!0}),location:Object.assign({},n)}:{location:Object.assign({},n)}};var n=e.prototype;return n.loadResources=function(t){var e=this;u.ZP.loadPage(t).then((function(n){n&&n.status!==u.uQ.Error?e.setState({location:Object.assign({},window.location),pageResources:n}):(window.history.replaceState({},"",location.href),window.location=t)}))},n.shouldComponentUpdate=function(t,e){return e.pageResources?this.state.pageResources!==e.pageResources||(this.state.pageResources.component!==e.pageResources.component||(this.state.pageResources.json!==e.pageResources.json||(!(this.state.location.key===e.location.key||!e.pageResources.page||!e.pageResources.page.matchPath&&!e.pageResources.page.path)||function(t,e,n){return C(t.props,e)||C(t.state,n)}(this,t,e)))):(this.loadResources(t.location.pathname+t.location.search),!1)},n.render=function(){return this.props.children(this.state)},e}(a.Component),O=n(41505),L=new u.kL(k,[],window.pageData);(0,u.N1)(L),L.setApiRunner(o.h);var D=n(73935);j=D.render,x=D.hydrate,window.asyncRequires=k,window.___emitter=p.Z,window.___loader=u.jN,h.V5.listen((function(t){t.location.action=t.action})),window.___push=function(t){return w(t,{replace:!1})},window.___replace=function(t){return w(t,{replace:!0})},window.___navigate=function(t,e){return w(t,e)};var M="gatsby-reload-compilation-hash-match";(0,o.I)("onClientEntry").then((function(){(0,o.h)("registerServiceWorker").filter(Boolean).length>0&&n(29939);var t=function(t){return a.createElement(i.BaseContext.Provider,{value:{baseuri:"/",basepath:"/"}},a.createElement(S.Z,t))},e=a.createContext({}),l=function(t){function n(){return t.apply(this,arguments)||this}return(0,r.Z)(n,t),n.prototype.render=function(){var t=this.props.children;return a.createElement(i.Location,null,(function(n){var r=n.location;return a.createElement(R,{location:r},(function(n){var r=n.pageResources,o=n.location,i=(0,u.hs)();return a.createElement(c.B9.Provider,{value:i},a.createElement(e.Provider,{value:{pageResources:r,location:o}},t))}))}))},n}(a.Component),p=function(n){function o(){return n.apply(this,arguments)||this}return(0,r.Z)(o,n),o.prototype.render=function(){var n=this;return a.createElement(e.Consumer,null,(function(e){var r=e.pageResources,o=e.location;return a.createElement(E,{location:o},a.createElement(s.$C,{location:o,shouldUpdateScroll:b},a.createElement(i.Router,{basepath:"",location:o,id:"gatsby-focus-wrapper"},a.createElement(t,Object.assign({path:"/404.html"===r.page.path||"/500.html"===r.page.path?(0,O.Z)(o.pathname,""):encodeURI((r.page.matchPath||r.page.path).split("?")[0])},n.props,{location:o,pageResources:r},r.json)))))}))},o}(a.Component),f=window,h=f.pagePath,d=f.location;h&&""+h!==d.pathname+(h.includes("?")?d.search:"")&&!(L.findMatchPath((0,O.Z)(d.pathname,""))||h.match(/^\/(404|500)(\/?|.html)$/)||h.match(/^\/offline-plugin-app-shell-fallback\/?$/))&&(0,i.navigate)(""+h+(h.includes("?")?"":d.search)+d.hash,{replace:!0});var v=function(){try{return sessionStorage}catch(t){return null}};u.jN.loadPage(d.pathname+d.search).then((function(t){var e,n=v();if(null!=t&&null!==(e=t.page)&&void 0!==e&&e.webpackCompilationHash&&t.page.webpackCompilationHash!==window.___webpackCompilationHash&&("serviceWorker"in navigator&&null!==navigator.serviceWorker.controller&&"activated"===navigator.serviceWorker.controller.state&&navigator.serviceWorker.controller.postMessage({gatsbyApi:"clearPathResources"}),n&&!("1"===n.getItem(M))))return n.setItem(M,"1"),void window.location.reload(!0);if(n&&n.removeItem(M),!t||t.status===u.uQ.Error){var r="page resources for "+d.pathname+" not found. Not rendering React";if(t&&t.error)throw console.error(r),t.error;throw new Error(r)}var i=(0,o.h)("wrapRootElement",{element:a.createElement(p,null)},a.createElement(p,null),(function(t){return{element:t.result}})).pop(),s=function(){var t=a.useRef(!1);return a.useEffect((function(){t.current||(t.current=!0,performance.mark&&performance.mark("onInitialClientRender"),(0,o.h)("onInitialClientRender"))}),[]),a.createElement(l,null,i)},c=document.getElementById("gatsby-focus-wrapper"),f=j;c&&c.children.length&&(f=x);var h=(0,o.h)("replaceHydrateFunction",void 0,f)[0];function m(){var t="undefined"!=typeof window?document.getElementById("___gatsby"):null;h(a.createElement(s,null),t)}var g=document;if("complete"===g.readyState||"loading"!==g.readyState&&!g.documentElement.doScroll)setTimeout((function(){m()}),0);else{var y=function t(){g.removeEventListener("DOMContentLoaded",t,!1),window.removeEventListener("load",t,!1),m()};g.addEventListener("DOMContentLoaded",y,!1),window.addEventListener("load",y,!1)}}))}))},90224:function(t,e,n){"use strict";n.r(e);var r=n(67294),o=n(25820),a=n(18522);e.default=function(t){var e=t.location,n=o.ZP.loadPageSync(e.pathname);return n?r.createElement(a.Z,Object.assign({location:e,pageResources:n},n.json)):null}},82743:function(t,e,n){var r;t.exports=(r=n(90224))&&r.default||r},9712:function(t,e){e.polyfill=function(t){return t}},96073:function(t,e,n){"use strict";n.d(e,{J:function(){return a}});var r=new Map,o=new Map;function a(t){var e=r.get(t);return e||(e=o.get(t.toLowerCase())),e}[].forEach((function(t){t.ignoreCase?o.set(t.fromPath,t):r.set(t.fromPath,t)}))},29939:function(t,e,n){"use strict";n.r(e);var r=n(3092);"https:"!==window.location.protocol&&"localhost"!==window.location.hostname?console.error("Service workers can only be used over HTTPS, or on localhost for development"):"serviceWorker"in navigator&&navigator.serviceWorker.register("/sw.js").then((function(t){t.addEventListener("updatefound",(function(){(0,r.h)("onServiceWorkerUpdateFound",{serviceWorker:t});var e=t.installing;console.log("installingWorker",e),e.addEventListener("statechange",(function(){switch(e.state){case"installed":navigator.serviceWorker.controller?(window.___swUpdated=!0,(0,r.h)("onServiceWorkerUpdateReady",{serviceWorker:t}),window.___failedResources&&(console.log("resources failed, SW updated - reloading"),window.location.reload())):(console.log("Content is now available offline!"),(0,r.h)("onServiceWorkerInstalled",{serviceWorker:t}));break;case"redundant":console.error("The installing service worker became redundant."),(0,r.h)("onServiceWorkerRedundant",{serviceWorker:t});break;case"activated":(0,r.h)("onServiceWorkerActive",{serviceWorker:t})}}))}))})).catch((function(t){console.error("Error during service worker registration:",t)}))},41505:function(t,e,n){"use strict";function r(t,e){return void 0===e&&(e=""),e?t===e?"/":t.startsWith(e+"/")?t.slice(e.length):t:t}n.d(e,{Z:function(){return r}})},29499:function(t,e,n){"use strict";n.r(e),n.d(e,{BaseContext:function(){return I},Link:function(){return $},Location:function(){return T},LocationProvider:function(){return A},Match:function(){return X},Redirect:function(){return V},Router:function(){return W},ServerLocation:function(){return U},createHistory:function(){return _},createMemorySource:function(){return E},globalHistory:function(){return k},isRedirect:function(){return K},matchPath:function(){return u},navigate:function(){return C},redirectTo:function(){return Y},useLocation:function(){return tt},useMatch:function(){return rt},useNavigate:function(){return et},useParams:function(){return nt}});var r=n(67294),o=n(41143),a=n.n(o),i=n(9712),s=function(t,e){return t.substr(0,e.length)===e},c=function(t,e){for(var n=void 0,r=void 0,o=e.split("?")[0],i=g(o),s=""===i[0],c=m(t),u=0,l=c.length;ue.score?-1:t.index-e.index}))},g=function(t){return t.replace(/(^\/+|\/+$)/g,"").split("/")},y=function(t){for(var e=arguments.length,n=Array(e>1?e-1:0),r=1;r0})))&&n.length>0?"?"+n.join("&"):"")},w=["uri","path"],b=Object.assign||function(t){for(var e=1;e1&&void 0!==arguments[1]?arguments[1]:{},s=i.state,c=i.replace,u=void 0!==c&&c;if("number"==typeof e)t.history.go(e);else{s=b({},s,{key:Date.now()+""});try{o||u?t.history.replaceState(s,null,e):t.history.pushState(s,null,e)}catch(p){t.location[u?"replace":"assign"](e)}}r=P(t),o=!0;var l=new Promise((function(t){return a=t}));return n.forEach((function(t){return t({location:r,action:"PUSH"})})),l}}},E=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/",e=t.indexOf("?"),n={pathname:e>-1?t.substr(0,e):t,search:e>-1?t.substr(e):""},r=0,o=[n],a=[null];return{get location(){return o[r]},addEventListener:function(t,e){},removeEventListener:function(t,e){},history:{get entries(){return o},get index(){return r},get state(){return a[r]},pushState:function(t,e,n){var i=n.split("?"),s=i[0],c=i[1],u=void 0===c?"":c;r++,o.push({pathname:s,search:u.length?"?"+u:u}),a.push(t)},replaceState:function(t,e,n){var i=n.split("?"),s=i[0],c=i[1],u=void 0===c?"":c;o[r]={pathname:s,search:u},a[r]=t},go:function(t){var e=r+t;e<0||e>a.length-1||(r=e)}}}},S=!("undefined"==typeof window||!window.document||!window.document.createElement),k=_(S?window:E()),C=k.navigate,x=Object.assign||function(t){for(var e=1;e=0||Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r]);return n}function R(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function O(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function L(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var D=function(t,e){var n=(0,r.createContext)(e);return n.displayName=t,n},M=D("Location"),T=function(t){var e=t.children;return r.createElement(M.Consumer,null,(function(t){return t?e(t):r.createElement(A,null,e)}))},A=function(t){function e(){var n,r;R(this,e);for(var o=arguments.length,a=Array(o),i=0;i-1?(a=e.substring(0,o),i=e.substring(o)):a=e,r.createElement(M.Provider,{value:{location:{pathname:a,search:i,hash:""},navigate:function(){throw new Error("You can't call navigate on the server.")}}},n)},I=D("Base",{baseuri:"/",basepath:"/",navigate:k.navigate}),W=function(t){return r.createElement(I.Consumer,null,(function(e){return r.createElement(T,null,(function(n){return r.createElement(F,x({},e,n,t))}))}))},F=function(t){function e(){return R(this,e),O(this,t.apply(this,arguments))}return L(e,t),e.prototype.render=function(){var t=this.props,e=t.location,n=t.navigate,o=t.basepath,a=t.primary,i=t.children,s=(t.baseuri,t.component),u=void 0===s?"div":s,p=j(t,["location","navigate","basepath","primary","children","baseuri","component"]),f=r.Children.toArray(i).reduce((function(t,e){var n=at(o)(e);return t.concat(n)}),[]),h=e.pathname,d=c(f,h);if(d){var v=d.params,m=d.uri,g=d.route,y=d.route.value;o=g.default?o:g.path.replace(/\*$/,"");var w=x({},v,{uri:m,location:e,navigate:function(t,e){return n(l(t,m),e)}}),b=r.cloneElement(y,w,y.props.children?r.createElement(W,{location:e,primary:a},y.props.children):void 0),P=a?H:u,_=a?x({uri:m,location:e,component:u},p):p;return r.createElement(I.Provider,{value:{baseuri:m,basepath:o,navigate:w.navigate}},r.createElement(P,_,b))}return null},e}(r.PureComponent);F.defaultProps={primary:!0};var N=D("Focus"),H=function(t){var e=t.uri,n=t.location,o=t.component,a=j(t,["uri","location","component"]);return r.createElement(N.Consumer,null,(function(t){return r.createElement(Q,x({},a,{component:o,requestFocus:t,uri:e,location:n}))}))},Z=!0,q=0,Q=function(t){function e(){var n,r;R(this,e);for(var o=arguments.length,a=Array(o),i=0;i((t,e)=>{const{forward:n=[],...r}=t||{},o=JSON.stringify(r,((t,e)=>("function"==typeof e&&(e=String(e)).startsWith(t+"(")&&(e="function "+e),e)));return["!(function(w,p,f,c){",Object.keys(r).length>0?`c=w[p]=Object.assign(w[p]||{},${o});`:"c=w[p]=w[p]||{};","c[f]=(c[f]||[])",n.length>0?`.concat(${JSON.stringify(n)})`:"","})(window,'partytown','forward');",e].join("")})(t,'/* Partytown 0.5.4 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,"/"==(a=(o.lib||"/~partytown/")+(o.debug?"debug/":""))[0]&&(s=e.querySelectorAll(\'script[type="text/partytown"]\'),i!=t?i.dispatchEvent(new CustomEvent("pt1",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener("pt0",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||"partytown-sw.js"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener("statechange",(function(t){"activated"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?"script":"iframe"),t||(c.setAttribute("style","display:block;width:0;height:0;border:0;visibility:hidden"),c.setAttribute("aria-hidden",!0)),c.src=a+"partytown-"+(t?"atomics.js?v=0.5.4":"sandbox-sw.html?"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t{if("undefined"!=typeof document&&!document._partytown){if(!document.querySelector("script[data-partytown]")){const e=document.createElement("script");e.dataset.partytown="",e.innerHTML=o.partytownSnippet(t),document.head.appendChild(e)}document._partytown=!0}const e=o.partytownSnippet(t)+'document.currentScript.dataset.partytown="";';return i.default.createElement("script",{suppressHydrationWarning:!0,dangerouslySetInnerHTML:{__html:e}})}},30907:function(t,e,n){"use strict";function r(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n{const n=e.endsWith(".html"),r=e.endsWith(".xml"),o=e.endsWith(".pdf");return"/"===e?e:((n||r||o)&&(t="never"),"always"===t?e.endsWith("/")?e:`${e}/`:"never"===t&&e.endsWith("/")?e.slice(0,-1):e)}},9679:function(e,t,n){"use strict";t.$C=void 0;var r=n(1432);t.$C=r.ScrollHandler,n(4855).useScrollRestoration},1432:function(e,t,n){"use strict";var r=n(4836);t.__esModule=!0,t.ScrollHandler=t.ScrollContext=void 0;var o=r(n(6115)),s=r(n(7867)),i=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var n=u(t);if(n&&n.has(e))return n.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var s in e)if("default"!==s&&Object.prototype.hasOwnProperty.call(e,s)){var i=o?Object.getOwnPropertyDescriptor(e,s):null;i&&(i.get||i.set)?Object.defineProperty(r,s,i):r[s]=e[s]}r.default=e,n&&n.set(e,r);return r}(n(7294)),a=r(n(5697)),c=n(1142);function u(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(u=function(e){return e?n:t})(e)}var l=i.createContext(new c.SessionStorage);t.ScrollContext=l,l.displayName="GatsbyScrollContext";var h=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),s=0;s{}},7730:function(e,t){"use strict";t.__esModule=!0,t.getForwards=function(e){return null==e?void 0:e.flatMap((e=>(null==e?void 0:e.forward)||[]))}},2731:function(e,t,n){"use strict";t.__esModule=!0,t.injectPartytownSnippet=function(e){if(!e.length)return;const t=document.querySelector("script[data-partytown]"),n=document.querySelector('iframe[src*="~partytown/partytown-sandbox-sw"]');t&&t.remove();n&&n.remove();const s=(0,o.getForwards)(e),i=document.createElement("script");i.dataset.partytown="",i.innerHTML=(0,r.partytownSnippet)({forward:s}),document.head.appendChild(i)};var r=n(2911),o=n(7730)},5418:function(e,t,n){t.components={"component---src-pages-404-js":()=>Promise.all([n.e(532),n.e(883)]).then(n.bind(n,8448)),"component---src-pages-artworks-dalle-index-js":()=>Promise.all([n.e(532),n.e(133)]).then(n.bind(n,2766)),"component---src-pages-artworks-index-js":()=>Promise.all([n.e(532),n.e(494)]).then(n.bind(n,9976)),"component---src-pages-artworks-latent-diffusion-index-js":()=>Promise.all([n.e(532),n.e(733)]).then(n.bind(n,9328)),"component---src-pages-artworks-midjourney-index-bak-paginated-js":()=>Promise.all([n.e(532),n.e(375)]).then(n.bind(n,5457)),"component---src-pages-artworks-midjourney-index-js":()=>Promise.all([n.e(532),n.e(306),n.e(358)]).then(n.bind(n,2388)),"component---src-pages-artworks-misc-index-js":()=>Promise.all([n.e(532),n.e(392)]).then(n.bind(n,5444)),"component---src-pages-artworks-stablediffusion-index-js":()=>Promise.all([n.e(532),n.e(458)]).then(n.bind(n,7458)),"component---src-pages-artworks-vqganclip-index-js":()=>Promise.all([n.e(532),n.e(216)]).then(n.bind(n,9422)),"component---src-pages-countries-js":()=>Promise.all([n.e(532),n.e(814),n.e(830)]).then(n.bind(n,5978)),"component---src-pages-cv-js":()=>Promise.all([n.e(532),n.e(576)]).then(n.bind(n,5292)),"component---src-pages-index-chatgptquote-jsx":()=>n.e(447).then(n.bind(n,715)),"component---src-pages-index-js":()=>Promise.all([n.e(532),n.e(678)]).then(n.bind(n,5521)),"component---src-pages-jufo-jsx":()=>Promise.all([n.e(532),n.e(306),n.e(83)]).then(n.bind(n,9565)),"component---src-pages-publications-js":()=>Promise.all([n.e(532),n.e(332),n.e(585),n.e(654),n.e(937)]).then(n.bind(n,7291)),"component---src-pages-research-applications-js":()=>Promise.all([n.e(532),n.e(567)]).then(n.bind(n,8450)),"component---src-pages-research-influences-js":()=>Promise.all([n.e(532),n.e(953)]).then(n.bind(n,366)),"component---src-pages-research-interests-js":()=>Promise.all([n.e(532),n.e(332),n.e(585),n.e(654),n.e(793)]).then(n.bind(n,3121)),"component---src-pages-research-interests-treemap-jsx":()=>Promise.all([n.e(532),n.e(332),n.e(585),n.e(8)]).then(n.bind(n,24)),"component---src-pages-research-interests-wordcloud-js":()=>Promise.all([n.e(532),n.e(896)]).then(n.bind(n,3451)),"component---src-pages-research-js":()=>Promise.all([n.e(532),n.e(332),n.e(585),n.e(654),n.e(793),n.e(236)]).then(n.bind(n,6079)),"component---src-pages-research-network-js":()=>Promise.all([n.e(532),n.e(974)]).then(n.bind(n,7167)),"component---src-pages-research-projects-js":()=>Promise.all([n.e(532),n.e(622)]).then(n.bind(n,4011)),"component---src-pages-research-reading-js":()=>Promise.all([n.e(532),n.e(885),n.e(332),n.e(585),n.e(654),n.e(635)]).then(n.bind(n,5733)),"component---src-pages-teaching-jsx":()=>Promise.all([n.e(532),n.e(968)]).then(n.bind(n,7075))}},4741:function(e,t,n){e.exports=[{plugin:n(1160),options:{plugins:[]}},{plugin:n(1706),options:{plugins:[]}},{plugin:n(4094),options:{plugins:[]}}]},3092:function(e,t,n){const r=n(4741),{getResourceURLsForPathname:o,loadPage:s,loadPageSync:i}=n(1975).jN;t.h=(e,t={},n,a)=>{let c=r.map((n=>{if(!n.plugin[e])return;t.getResourceURLsForPathname=o,t.loadPage=s,t.loadPageSync=i;const r=n.plugin[e](t,n.options);return r&&a&&(t=a({args:t,result:r,plugin:n})),r}));return c=c.filter((e=>void 0!==e)),c.length>0?c:n?[n]:[]},t.I=(e,t,n)=>r.reduce(((n,r)=>r.plugin[e]?n.then((()=>r.plugin[e](t,r.options))):n),Promise.resolve())},4004:function(e,t){},8299:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var r=function(e){return e=e||Object.create(null),{on:function(t,n){(e[t]||(e[t]=[])).push(n)},off:function(t,n){e[t]&&e[t].splice(e[t].indexOf(n)>>>0,1)},emit:function(t,n){(e[t]||[]).slice().map((function(e){e(n)})),(e["*"]||[]).slice().map((function(e){e(t,n)}))}}}()},7802:function(e,t,n){"use strict";n.d(t,{UD:function(){return d},Cj:function(){return f},GA:function(){return p},DS:function(){return h}});var r=n(7896),o=n(1505),s=e=>{if(void 0===e)return e;let[t,n=""]=e.split("?");return n&&(n="?"+n),"/"===t?"/"+n:"/"===t.charAt(t.length-1)?t.slice(0,-1)+n:t+n},i=n(6073);const a=new Map;let c=[];const u=e=>{let t=e;if(-1!==e.indexOf("?")){const[n,r]=e.split("?");t=`${n}?${encodeURIComponent(r)}`}const n=decodeURIComponent(t);return(0,o.Z)(n,decodeURIComponent("")).split("#")[0]};function l(e){return e.startsWith("/")||e.startsWith("https://")||e.startsWith("http://")?e:new URL(e,window.location.href+(window.location.href.endsWith("/")?"":"/")).pathname}const h=e=>{c=e},d=e=>{const t=m(e),n=c.map((({path:e,matchPath:t})=>({path:t,originalPath:e}))),o=(0,r.pick)(n,t);return o?s(o.route.originalPath):null},p=e=>{const t=m(e),n=c.map((({path:e,matchPath:t})=>({path:t,originalPath:e}))),o=(0,r.pick)(n,t);return o?o.params:{}},f=e=>{const t=u(l(e));if(a.has(t))return a.get(t);const n=(0,i.J)(e);if(n)return f(n.toPath);let r=d(t);return r||(r=m(e)),a.set(t,r),r},m=e=>{let t=u(l(e));return"/index.html"===t&&(t="/"),t=s(t),t}},4160:function(e,t,n){"use strict";n.d(t,{rU:function(){return o.rU},B9:function(){return s.B9},c4:function(){return o.c4},K2:function(){return s.K2}});var r=n(1975),o=(n(2743),n(9679),n(1562)),s=n(1757),i=n(7294);n(4004),n(8995);i.createElement;i.createElement;i.createElement;class a extends Error{constructor(e,t,n,r){const o=Object.entries(n).map((([e,t])=>`not serializable "${t}" type passed to "${e}" prop`)).join(", "),s="SlicePropsError";let i="",c="";if(e){const e=React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactDebugCurrentFrame.getCurrentStack().trim().split("\n").slice(1);e[0]=e[0].trim(),"\n"+e.join("\n"),`Slice "${t}" was passed props that are not serializable (${o}).`}else{`${s}: Slice "${t}" was passed props that are not serializable (${o}).`;`${c}\n${(new Error).stack.trim().split("\n").slice(2).join("\n")}`}super(c),this.name=s,i?this.stack=i:Error.captureStackTrace(this,a),r&&(this.forcedLocation=_objectSpread(_objectSpread({},r),{},{functionName:"Slice"}))}}r.ZP.enqueue},1975:function(e,t,n){"use strict";n.d(t,{uQ:function(){return d},kL:function(){return P},ZP:function(){return S},Nt:function(){return R},hs:function(){return _},jN:function(){return C},N1:function(){return E}});var r=n(4572),o=n(904);const s=function(e){if("undefined"==typeof document)return!1;const t=document.createElement("link");try{if(t.relList&&"function"==typeof t.relList.supports)return t.relList.supports(e)}catch(n){return!1}return!1}("prefetch")?function(e,t){return new Promise(((n,r)=>{if("undefined"==typeof document)return void r();const o=document.createElement("link");o.setAttribute("rel","prefetch"),o.setAttribute("href",e),Object.keys(t).forEach((e=>{o.setAttribute(e,t[e])})),o.onload=n,o.onerror=r;(document.getElementsByTagName("head")[0]||document.getElementsByName("script")[0].parentNode).appendChild(o)}))}:function(e){return new Promise(((t,n)=>{const r=new XMLHttpRequest;r.open("GET",e,!0),r.onload=()=>{200===r.status?t():n()},r.send(null)}))},i={};var a=function(e,t){return new Promise((n=>{i[e]?n():s(e,t).then((()=>{n(),i[e]=!0})).catch((()=>{}))}))},c=n(8299),u=n(7802);function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function h(e){for(var t=1;t{const[t,n]=e.split("?");var r;return`/page-data/${"/"===t?"index":(r="/"===(r=t)[0]?r.slice(1):r).endsWith("/")?r.slice(0,-1):r}/page-data.json${n?`?${n}`:""}`},f=e=>e.startsWith("//");function m(e,t="GET"){return new Promise((n=>{const r=new XMLHttpRequest;r.open(t,e,!0),r.onreadystatechange=()=>{4==r.readyState&&n(r)},r.send(null)}))}const y=/bot|crawler|spider|crawling/i,v=(e,t=null,n)=>{var r;const o={componentChunkName:e.componentChunkName,path:e.path,webpackCompilationHash:e.webpackCompilationHash,matchPath:e.matchPath,staticQueryHashes:e.staticQueryHashes,getServerDataError:e.getServerDataError,slicesMap:null!==(r=e.slicesMap)&&void 0!==r?r:{}};return{component:t,head:n,json:e.result,page:o}};function g(e){return new Promise((t=>{try{const n=e.readRoot();t(n)}catch(n){if(!Object.hasOwnProperty.call(n,"_response")||!Object.hasOwnProperty.call(n,"_status"))throw n;setTimeout((()=>{g(e).then(t)}),200)}}))}class b{constructor(e,t){(0,r.Z)(this,"inFlightNetworkRequests",new Map),this.pageDb=new Map,this.inFlightDb=new Map,this.staticQueryDb={},this.pageDataDb=new Map,this.partialHydrationDb=new Map,this.slicesDataDb=new Map,this.sliceInflightDb=new Map,this.slicesDb=new Map,this.isPrefetchQueueRunning=!1,this.prefetchQueued=[],this.prefetchTriggered=new Set,this.prefetchCompleted=new Set,this.loadComponent=e,(0,u.DS)(t)}memoizedGet(e){let t=this.inFlightNetworkRequests.get(e);return t||(t=m(e,"GET"),this.inFlightNetworkRequests.set(e,t)),t.then((t=>(this.inFlightNetworkRequests.delete(e),t))).catch((t=>{throw this.inFlightNetworkRequests.delete(e),t}))}setApiRunner(e){this.apiRunner=e,this.prefetchDisabled=e("disableCorePrefetching").some((e=>e))}fetchPageDataJson(e){const{pagePath:t,retries:n=0}=e,r=p(t);return this.memoizedGet(r).then((r=>{const{status:o,responseText:s}=r;if(200===o)try{const n=JSON.parse(s);if(void 0===n.path)throw new Error("not a valid pageData response");const r=t.split("?")[1];return r&&!n.path.includes(r)&&(n.path+=`?${r}`),Object.assign(e,{status:d.Success,payload:n})}catch(i){}return 404===o||200===o?"/404.html"===t||"/500.html"===t?Object.assign(e,{status:d.Error}):this.fetchPageDataJson(Object.assign(e,{pagePath:"/404.html",notFound:!0})):500===o?this.fetchPageDataJson(Object.assign(e,{pagePath:"/500.html",internalServerError:!0})):n<3?this.fetchPageDataJson(Object.assign(e,{retries:n+1})):Object.assign(e,{status:d.Error})}))}fetchPartialHydrationJson(e){const{pagePath:t,retries:n=0}=e,r=p(t).replace(".json","-rsc.json");return this.memoizedGet(r).then((r=>{const{status:o,responseText:s}=r;if(200===o)try{return Object.assign(e,{status:d.Success,payload:s})}catch(i){}return 404===o||200===o?"/404.html"===t||"/500.html"===t?Object.assign(e,{status:d.Error}):this.fetchPartialHydrationJson(Object.assign(e,{pagePath:"/404.html",notFound:!0})):500===o?this.fetchPartialHydrationJson(Object.assign(e,{pagePath:"/500.html",internalServerError:!0})):n<3?this.fetchPartialHydrationJson(Object.assign(e,{retries:n+1})):Object.assign(e,{status:d.Error})}))}loadPageDataJson(e){const t=(0,u.Cj)(e);if(this.pageDataDb.has(t)){const e=this.pageDataDb.get(t);return Promise.resolve(e)}return this.fetchPageDataJson({pagePath:t}).then((e=>(this.pageDataDb.set(t,e),e)))}loadPartialHydrationJson(e){const t=(0,u.Cj)(e);if(this.partialHydrationDb.has(t)){const e=this.partialHydrationDb.get(t);return Promise.resolve(e)}return this.fetchPartialHydrationJson({pagePath:t}).then((e=>(this.partialHydrationDb.set(t,e),e)))}loadSliceDataJson(e){if(this.slicesDataDb.has(e)){const t=this.slicesDataDb.get(e);return Promise.resolve({sliceName:e,jsonPayload:t})}return m(`/slice-data/${e}.json`,"GET").then((t=>{const n=JSON.parse(t.responseText);return this.slicesDataDb.set(e,n),{sliceName:e,jsonPayload:n}}))}findMatchPath(e){return(0,u.UD)(e)}loadPage(e){const t=(0,u.Cj)(e);if(this.pageDb.has(t)){const e=this.pageDb.get(t);return e.error?Promise.resolve({error:e.error,status:e.status}):Promise.resolve(e.payload)}if(this.inFlightDb.has(t))return this.inFlightDb.get(t);const n=[this.loadAppData(),this.loadPageDataJson(t)];const r=Promise.all(n).then((e=>{const[n,r,s]=e;if(r.status===d.Error||(null==s?void 0:s.status)===d.Error)return{status:d.Error};let i=r.payload;const{componentChunkName:a,staticQueryHashes:u=[],slicesMap:l={}}=i,p={},f=Array.from(new Set(Object.values(l))),m=e=>{if(this.slicesDb.has(e.name))return this.slicesDb.get(e.name);if(this.sliceInflightDb.has(e.name))return this.sliceInflightDb.get(e.name);const t=this.loadComponent(e.componentChunkName).then((t=>{return{component:(n=t,n&&n.default||n),sliceContext:e.result.sliceContext,data:e.result.data};var n}));return this.sliceInflightDb.set(e.name,t),t.then((t=>{this.slicesDb.set(e.name,t),this.sliceInflightDb.delete(e.name)})),t};return Promise.all(f.map((e=>this.loadSliceDataJson(e)))).then((e=>{const l=[],f=[...u];for(const{jsonPayload:t,sliceName:n}of Object.values(e)){l.push(h({name:n},t));for(const e of t.staticQueryHashes)f.includes(e)||f.push(e)}const y=[Promise.all(l.map(m)),this.loadComponent(a,"head")];y.push(this.loadComponent(a));const b=Promise.all(y).then((e=>{const[t,a,c]=e;p.createdAt=new Date;for(const n of t)(!n||n instanceof Error)&&(p.status=d.Error,p.error=n);let u;if((!c||c instanceof Error)&&(p.status=d.Error,p.error=c),p.status!==d.Error){if(p.status=d.Success,!0!==r.notFound&&!0!==(null==s?void 0:s.notFound)||(p.notFound=!0),i=Object.assign(i,{webpackCompilationHash:n?n.webpackCompilationHash:""}),"string"==typeof(null==s?void 0:s.payload)){u=v(i,null,a),u.partialHydration=s.payload;const e=new ReadableStream({start(e){const t=new TextEncoder;e.enqueue(t.encode(s.payload))},pull(e){e.close()},cancel(){}});return g((0,o.createFromReadableStream)(e)).then((e=>(u.partialHydration=e,u)))}u=v(i,c,a)}return u})),w=Promise.all(f.map((e=>{if(this.staticQueryDb[e]){const t=this.staticQueryDb[e];return{staticQueryHash:e,jsonPayload:t}}return this.memoizedGet(`/page-data/sq/d/${e}.json`).then((t=>{const n=JSON.parse(t.responseText);return{staticQueryHash:e,jsonPayload:n}})).catch((()=>{throw new Error(`We couldn't load "/page-data/sq/d/${e}.json"`)}))}))).then((e=>{const t={};return e.forEach((({staticQueryHash:e,jsonPayload:n})=>{t[e]=n,this.staticQueryDb[e]=n})),t}));return Promise.all([b,w]).then((([e,n])=>{let r;return e&&(r=h(h({},e),{},{staticQueryResults:n}),p.payload=r,c.Z.emit("onPostLoadPageResources",{page:r,pageResources:r})),this.pageDb.set(t,p),p.error?{error:p.error,status:p.status}:r})).catch((e=>({error:e,status:d.Error})))}))}));return r.then((()=>{this.inFlightDb.delete(t)})).catch((e=>{throw this.inFlightDb.delete(t),e})),this.inFlightDb.set(t,r),r}loadPageSync(e,t={}){const n=(0,u.Cj)(e);if(this.pageDb.has(n)){const e=this.pageDb.get(n);if(e.payload)return e.payload;if(null!=t&&t.withErrorDetails)return{error:e.error,status:e.status}}}shouldPrefetch(e){return!!(()=>{if("connection"in navigator&&void 0!==navigator.connection){if((navigator.connection.effectiveType||"").includes("2g"))return!1;if(navigator.connection.saveData)return!1}return!0})()&&((!navigator.userAgent||!y.test(navigator.userAgent))&&!this.pageDb.has(e))}prefetch(e){if(!this.shouldPrefetch(e))return{then:e=>e(!1),abort:()=>{}};if(this.prefetchTriggered.has(e))return{then:e=>e(!0),abort:()=>{}};const t={resolve:null,reject:null,promise:null};t.promise=new Promise(((e,n)=>{t.resolve=e,t.reject=n})),this.prefetchQueued.push([e,t]);const n=new AbortController;return n.signal.addEventListener("abort",(()=>{const t=this.prefetchQueued.findIndex((([t])=>t===e));-1!==t&&this.prefetchQueued.splice(t,1)})),this.isPrefetchQueueRunning||(this.isPrefetchQueueRunning=!0,setTimeout((()=>{this._processNextPrefetchBatch()}),3e3)),{then:(e,n)=>t.promise.then(e,n),abort:n.abort.bind(n)}}_processNextPrefetchBatch(){(window.requestIdleCallback||(e=>setTimeout(e,0)))((()=>{const e=this.prefetchQueued.splice(0,4),t=Promise.all(e.map((([e,t])=>(this.prefetchTriggered.has(e)||(this.apiRunner("onPrefetchPathname",{pathname:e}),this.prefetchTriggered.add(e)),this.prefetchDisabled?t.resolve(!1):this.doPrefetch((0,u.Cj)(e)).then((()=>{this.prefetchCompleted.has(e)||(this.apiRunner("onPostPrefetchPathname",{pathname:e}),this.prefetchCompleted.add(e)),t.resolve(!0)}))))));this.prefetchQueued.length?t.then((()=>{setTimeout((()=>{this._processNextPrefetchBatch()}),3e3)})):this.isPrefetchQueueRunning=!1}))}doPrefetch(e){const t=p(e);return a(t,{crossOrigin:"anonymous",as:"fetch"}).then((()=>this.loadPageDataJson(e)))}hovering(e){this.loadPage(e)}getResourceURLsForPathname(e){const t=(0,u.Cj)(e),n=this.pageDataDb.get(t);if(n){const e=v(n.payload);return[...w(e.page.componentChunkName),p(t)]}return null}isPageNotFound(e){const t=(0,u.Cj)(e),n=this.pageDb.get(t);return!n||n.notFound}loadAppData(e=0){return this.memoizedGet("/page-data/app-data.json").then((t=>{const{status:n,responseText:r}=t;let o;if(200!==n&&e<3)return this.loadAppData(e+1);if(200===n)try{const e=JSON.parse(r);if(void 0===e.webpackCompilationHash)throw new Error("not a valid app-data response");o=e}catch(s){}return o}))}}const w=e=>(window.___chunkMapping[e]||[]).map((e=>""+e));class P extends b{constructor(e,t,n){super(((t,n="components")=>{if(!e[n="components"][t])throw new Error(`We couldn't find the correct component chunk with the name "${t}"`);return e[n][t]().catch((e=>e))}),t),n&&this.pageDataDb.set((0,u.Cj)(n.path),{pagePath:n.path,payload:n,status:"success"})}doPrefetch(e){return super.doPrefetch(e).then((e=>{if(e.status!==d.Success)return Promise.resolve();const t=e.payload,n=t.componentChunkName,r=w(n);return Promise.all(r.map(a)).then((()=>t))}))}loadPageDataJson(e){return super.loadPageDataJson(e).then((t=>t.notFound?f(e)?t:m(e,"HEAD").then((e=>200===e.status?{status:d.Error}:t)):t))}loadPartialHydrationJson(e){return super.loadPartialHydrationJson(e).then((t=>t.notFound?f(e)?t:m(e,"HEAD").then((e=>200===e.status?{status:d.Error}:t)):t))}}let O;const E=e=>{O=e},C={enqueue:e=>O.prefetch(e),getResourceURLsForPathname:e=>O.getResourceURLsForPathname(e),loadPage:e=>O.loadPage(e),loadPageSync:(e,t={})=>O.loadPageSync(e,t),prefetch:e=>O.prefetch(e),isPageNotFound:e=>O.isPageNotFound(e),hovering:e=>O.hovering(e),loadAppData:()=>O.loadAppData()};var S=C;function _(){return O?O.staticQueryDb:{}}function R(){return O?O.slicesDb:{}}},4779:function(e,t,n){"use strict";n.d(t,{Z:function(){return k}});var r=n(4572),o=n(7294),s=n(5697),i=n.n(s),a=n(3092),c=n(7802),u=n(4160),l=n(7896),h=n(4941);function d({children:e,callback:t}){return(0,o.useEffect)((()=>{t()})),e}const p=["link","meta","style","title","base","noscript","script","html","body"];function f(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function m(e){for(var t=1;t{const{validHeadNodes:e,htmlAndBodyAttributes:t}=v(O);E.html=Object.keys(t.html),E.body=Object.keys(t.body),function(e){if(!e)return;const{html:t,body:n}=e,r=document.querySelector("html");r&&Object.entries(t).forEach((([e,t])=>{r.setAttribute(e,t)}));const o=document.querySelector("body");o&&Object.entries(n).forEach((([e,t])=>{o.setAttribute(e,t)}))}(t);const n=document.querySelectorAll("[data-gatsby-head]");if(0===n.length)return void document.head.append(...e);const r=[];!function({oldNodes:e,newNodes:t,onStale:n,onNew:r}){for(const o of e){const e=t.findIndex((e=>y(e,o)));-1===e?n(o):t.splice(e,1)}for(const o of t)r(o)}({oldNodes:n,newNodes:e,onStale:e=>e.parentNode.removeChild(e),onNew:e=>r.push(e)}),document.head.append(...r)};function S({pageComponent:e,staticQueryResults:t,pageComponentProps:n}){(0,o.useEffect)((()=>{if(null!=e&&e.Head){!function(e){if("function"!=typeof e)throw new Error(`Expected "Head" export to be a function got "${typeof e}".`)}(e.Head);const{render:o}=(0,h.U)(),s=P(e.Head,{location:{pathname:(r=n).location.pathname},params:r.params,data:r.data||{},serverData:r.serverData,pageContext:r.pageContext}),i=(0,a.h)("wrapRootElement",{element:s},s,(({result:e})=>({element:e}))).pop();o(P(d,{callback:C},P(u.B9.Provider,{value:t},P(l.LocationProvider,null,i))),O)}var r;return()=>{!function(){const e=document.querySelectorAll("[data-gatsby-head]");for(const t of e)t.parentNode.removeChild(t)}(),function(e){if(!e)return;const{html:t,body:n}=e;if(t){const e=document.querySelector("html");t.forEach((t=>{e&&e.removeAttribute(t)}))}if(n){const e=document.querySelector("body");n.forEach((t=>{e&&e.removeAttribute(t)}))}}(E)}}))}function _(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function R(e){for(var t=1;t({element:e,props:t}))).pop()}j.propTypes={location:i().object.isRequired,pageResources:i().object.isRequired,data:i().object,pageContext:i().object.isRequired};var k=j},5824:function(e,t,n){"use strict";var r=n(7462),o=n(3092),s=n(7294),i=n(7896),a=n(9679),c=n(1757),u=n(8995),l=n(1975),h=n(6073),d=n(8299);const p={id:"gatsby-announcer",style:{position:"absolute",top:0,width:1,height:1,padding:0,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",border:0},"aria-live":"assertive","aria-atomic":"true"};var f=n(1562),m=s.createElement;function y(e){const t=(0,h.J)(e),{hash:n,search:r}=window.location;return null!=t&&(window.___replace(t.toPath+r+n),!0)}let v="";window.addEventListener("unhandledrejection",(e=>{/loading chunk \d* failed./i.test(e.reason)&&v&&(window.location.pathname=v)}));const g=(e,t)=>{y(e.pathname)||(v=e.pathname,(0,o.h)("onPreRouteUpdate",{location:e,prevLocation:t}))},b=(e,t)=>{y(e.pathname)||(0,o.h)("onRouteUpdate",{location:e,prevLocation:t})},w=(e,t={})=>{if("number"==typeof e)return void i.globalHistory.navigate(e);const{pathname:n,search:r,hash:s}=(0,f.cP)(e),a=(0,h.J)(n);if(a&&(e=a.toPath+r+s),window.___swUpdated)return void(window.location=n+r+s);const c=setTimeout((()=>{d.Z.emit("onDelayedLoadPageResources",{pathname:n}),(0,o.h)("onRouteUpdateDelayed",{location:window.location})}),1e3);l.ZP.loadPage(n+r).then((o=>{if(!o||o.status===l.uQ.Error)return window.history.replaceState({},"",location.href),window.location=n,void clearTimeout(c);o&&o.page.webpackCompilationHash!==window.___webpackCompilationHash&&("serviceWorker"in navigator&&null!==navigator.serviceWorker.controller&&"activated"===navigator.serviceWorker.controller.state&&navigator.serviceWorker.controller.postMessage({gatsbyApi:"clearPathResources"}),window.location=n+r+s),(0,i.navigate)(e,t),clearTimeout(c)}))};function P(e,{location:t}){const{pathname:n,hash:r}=t,s=(0,o.h)("shouldUpdateScroll",{prevRouterProps:e,pathname:n,routerProps:{location:t},getSavedScrollPosition:e=>[0,this._stateStorage.read(e,e.key)]});if(s.length>0)return s[s.length-1];if(e){const{location:{pathname:t}}=e;if(t===n)return r?decodeURI(r.slice(1)):[0,0]}return!0}class O extends s.Component{constructor(e){super(e),this.announcementRef=s.createRef()}componentDidUpdate(e,t){requestAnimationFrame((()=>{let e=`new page at ${this.props.location.pathname}`;document.title&&(e=document.title);const t=document.querySelectorAll("#gatsby-focus-wrapper h1");t&&t.length&&(e=t[0].textContent);const n=`Navigated to ${e}`;if(this.announcementRef.current){this.announcementRef.current.innerText!==n&&(this.announcementRef.current.innerText=n)}}))}render(){return m("div",(0,r.Z)({},p,{ref:this.announcementRef}))}}const E=(e,t)=>{var n,r;return e.href!==t.href||(null==e||null===(n=e.state)||void 0===n?void 0:n.key)!==(null==t||null===(r=t.state)||void 0===r?void 0:r.key)};class C extends s.Component{constructor(e){super(e),g(e.location,null)}componentDidMount(){b(this.props.location,null)}shouldComponentUpdate(e){return!!E(e.location,this.props.location)&&(g(this.props.location,e.location),!0)}componentDidUpdate(e){E(e.location,this.props.location)&&b(this.props.location,e.location)}render(){return m(s.Fragment,null,this.props.children,m(O,{location:location}))}}var S=n(4779),_=n(5418),R=n(4572);function j(e,t){for(var n in e)if(!(n in t))return!0;for(var r in t)if(e[r]!==t[r])return!0;return!1}function k(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function x(e){for(var t=1;t{t&&t.status!==l.uQ.Error?this.setState({location:x({},window.location),pageResources:t}):(window.history.replaceState({},"",location.href),window.location=e)}))}shouldComponentUpdate(e,t){return t.pageResources?this.state.pageResources!==t.pageResources||(this.state.pageResources.component!==t.pageResources.component||(this.state.pageResources.json!==t.pageResources.json||(!(this.state.location.key===t.location.key||!t.pageResources.page||!t.pageResources.page.matchPath&&!t.pageResources.page.path)||function(e,t,n){return j(e.props,t)||j(e.state,n)}(this,e,t)))):(this.loadResources(e.location.pathname+e.location.search),!1)}render(){return this.props.children(this.state)}}var T=D,q=n(1505),M=n(4941),N=s.createElement;const L=new l.kL(_,[],window.pageData);(0,l.N1)(L),L.setApiRunner(o.h);const{render:A,hydrate:F}=(0,M.U)();window.asyncRequires=_,window.___emitter=d.Z,window.___loader=l.jN,i.globalHistory.listen((e=>{e.location.action=e.action})),window.___push=e=>w(e,{replace:!1}),window.___replace=e=>w(e,{replace:!0}),window.___navigate=(e,t)=>w(e,t);const H="gatsby-reload-compilation-hash-match";(0,o.I)("onClientEntry").then((()=>{(0,o.h)("registerServiceWorker").filter(Boolean).length>0&&n(9939);const e=e=>N(i.BaseContext.Provider,{value:{baseuri:"/",basepath:"/"}},N(S.Z,e)),t=s.createContext({}),h={renderEnvironment:"browser"};class d extends s.Component{render(){const{children:e}=this.props;return N(i.Location,null,(({location:n})=>N(T,{location:n},(({pageResources:n,location:r})=>{const o=(0,l.hs)(),s=(0,l.Nt)();return N(c.B9.Provider,{value:o},N(u.Bs.Provider,{value:h},N(u.m3.Provider,{value:s},N(u.u0.Provider,{value:n.page.slicesMap},N(t.Provider,{value:{pageResources:n,location:r}},e)))))}))))}}class p extends s.Component{render(){return N(t.Consumer,null,(({pageResources:t,location:n})=>N(C,{location:n},N(a.$C,{location:n,shouldUpdateScroll:P},N(i.Router,{basepath:"",location:n,id:"gatsby-focus-wrapper"},N(e,(0,r.Z)({path:"/404.html"===t.page.path||"/500.html"===t.page.path?(0,q.Z)(n.pathname,""):encodeURI((t.page.matchPath||t.page.path).split("?")[0])},this.props,{location:n,pageResources:t},t.json)))))))}}const{pagePath:f,location:m}=window;f&&""+f!==m.pathname+(f.includes("?")?m.search:"")&&!(L.findMatchPath((0,q.Z)(m.pathname,""))||f.match(/^\/(404|500)(\/?|.html)$/)||f.match(/^\/offline-plugin-app-shell-fallback\/?$/))&&(0,i.navigate)(""+f+(f.includes("?")?"":m.search)+m.hash,{replace:!0});const y=()=>{try{return sessionStorage}catch{return null}};l.jN.loadPage(m.pathname+m.search).then((e=>{var t;const n=y();if(null!=e&&null!==(t=e.page)&&void 0!==t&&t.webpackCompilationHash&&e.page.webpackCompilationHash!==window.___webpackCompilationHash&&("serviceWorker"in navigator&&null!==navigator.serviceWorker.controller&&"activated"===navigator.serviceWorker.controller.state&&navigator.serviceWorker.controller.postMessage({gatsbyApi:"clearPathResources"}),n)){if(!("1"===n.getItem(H)))return n.setItem(H,"1"),void window.location.reload(!0)}if(n&&n.removeItem(H),!e||e.status===l.uQ.Error){const t=`page resources for ${m.pathname} not found. Not rendering React`;if(e&&e.error)throw console.error(t),e.error;throw new Error(t)}const r=(0,o.h)("wrapRootElement",{element:N(p,null)},N(p,null),(({result:e})=>({element:e}))).pop(),i=function(){const e=s.useRef(!1);return s.useEffect((()=>{e.current||(e.current=!0,performance.mark&&performance.mark("onInitialClientRender"),(0,o.h)("onInitialClientRender"))}),[]),N(d,null,r)},a=document.getElementById("gatsby-focus-wrapper");let c=A;a&&a.children.length&&(c=F);const u=(0,o.h)("replaceHydrateFunction",void 0,c)[0];function h(){const e="undefined"!=typeof window?document.getElementById("___gatsby"):null;u(N(i,null),e)}const f=document;if("complete"===f.readyState||"loading"!==f.readyState&&!f.documentElement.doScroll)setTimeout((function(){h()}),0);else{const e=function(){f.removeEventListener("DOMContentLoaded",e,!1),window.removeEventListener("load",e,!1),h()};f.addEventListener("DOMContentLoaded",e,!1),window.addEventListener("load",e,!1)}}))}))},224:function(e,t,n){"use strict";n.r(t);var r=n(4572),o=n(7294),s=n(1975),i=n(4779);function a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}t.default=({location:e})=>{const t=s.ZP.loadPageSync(e.pathname);return t?o.createElement(i.Z,function(e){for(var t=1;t{let o=r.get(n);o||r.set(n,o=e.createRoot(n)),o.render(t)},hydrate:(t,n)=>e.hydrateRoot(n,t)}}},6073:function(e,t,n){"use strict";n.d(t,{J:function(){return s}});const r=new Map,o=new Map;function s(e){let t=r.get(e);return t||(t=o.get(e.toLowerCase())),t}[].forEach((e=>{e.ignoreCase?o.set(e.fromPath,e):r.set(e.fromPath,e)}))},9939:function(e,t,n){"use strict";n.r(t);var r=n(3092);"https:"!==window.location.protocol&&"localhost"!==window.location.hostname?console.error("Service workers can only be used over HTTPS, or on localhost for development"):"serviceWorker"in navigator&&navigator.serviceWorker.register("/sw.js").then((function(e){e.addEventListener("updatefound",(()=>{(0,r.h)("onServiceWorkerUpdateFound",{serviceWorker:e});const t=e.installing;console.log("installingWorker",t),t.addEventListener("statechange",(()=>{switch(t.state){case"installed":navigator.serviceWorker.controller?(window.___swUpdated=!0,(0,r.h)("onServiceWorkerUpdateReady",{serviceWorker:e}),window.___failedResources&&(console.log("resources failed, SW updated - reloading"),window.location.reload())):(console.log("Content is now available offline!"),(0,r.h)("onServiceWorkerInstalled",{serviceWorker:e}));break;case"redundant":console.error("The installing service worker became redundant."),(0,r.h)("onServiceWorkerRedundant",{serviceWorker:e});break;case"activated":(0,r.h)("onServiceWorkerActive",{serviceWorker:e})}}))}))})).catch((function(e){console.error("Error during service worker registration:",e)}))},8995:function(e,t,n){"use strict";n.d(t,{Bs:function(){return s},m3:function(){return o},u0:function(){return i}});var r=n(7294);const o=r.createContext({}),s=r.createContext({}),i=r.createContext({})},1757:function(e,t,n){"use strict";n.d(t,{B9:function(){return s},K2:function(){return c}});var r=n(7294);const o=(e,t=null)=>(globalThis.__SERVER_CONTEXT||(globalThis.__SERVER_CONTEXT={}),globalThis.__SERVER_CONTEXT[e]||(globalThis.__SERVER_CONTEXT[e]=r.createServerContext(e,t)),globalThis.__SERVER_CONTEXT[e]);r.createElement;const s=(i="StaticQuery",a={},r.createServerContext?o(i,a):r.createContext(a));var i,a;const c=e=>{var t;r.useContext;const n=r.useContext(s);if(isNaN(Number(e)))throw new Error(`useStaticQuery was called with a string but expects to be called using \`graphql\`. Try this:\n\nimport { useStaticQuery, graphql } from 'gatsby';\n\nuseStaticQuery(graphql\`${e}\`);\n`);if(null!==(t=n[e])&&void 0!==t&&t.data)return n[e].data;throw new Error("The result of this StaticQuery could not be fetched.\n\nThis is likely a bug in Gatsby and if refreshing the page does not fix it, please open an issue in https://github.com/gatsbyjs/gatsby/issues")}},1505:function(e,t,n){"use strict";function r(e,t=""){return t?e===t?"/":e.startsWith(`${t}/`)?e.slice(t.length):e:e}n.d(t,{Z:function(){return r}})},1706:function(e,t,n){"use strict";n.r(t),n.d(t,{wrapRootElement:function(){return C}});var r=n(7294),o=n(2161);const s=console;var i=n(81),a=n(2379);class c{destroy(){this.clearGcTimeout()}scheduleGc(){this.clearGcTimeout(),(0,o.PN)(this.cacheTime)&&(this.gcTimeout=setTimeout((()=>{this.optionalRemove()}),this.cacheTime))}updateCacheTime(e){this.cacheTime=Math.max(this.cacheTime||0,null!=e?e:o.sk?1/0:3e5)}clearGcTimeout(){this.gcTimeout&&(clearTimeout(this.gcTimeout),this.gcTimeout=void 0)}}class u extends c{constructor(e){super(),this.abortSignalConsumed=!1,this.defaultOptions=e.defaultOptions,this.setOptions(e.options),this.observers=[],this.cache=e.cache,this.logger=e.logger||s,this.queryKey=e.queryKey,this.queryHash=e.queryHash,this.initialState=e.state||function(e){const t="function"==typeof e.initialData?e.initialData():e.initialData,n=void 0!==t,r=n?"function"==typeof e.initialDataUpdatedAt?e.initialDataUpdatedAt():e.initialDataUpdatedAt:0;return{data:t,dataUpdateCount:0,dataUpdatedAt:n?null!=r?r:Date.now():0,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null,isInvalidated:!1,status:n?"success":"loading",fetchStatus:"idle"}}(this.options),this.state=this.initialState,this.scheduleGc()}get meta(){return this.options.meta}setOptions(e){this.options={...this.defaultOptions,...e},this.updateCacheTime(this.options.cacheTime)}optionalRemove(){this.observers.length||"idle"!==this.state.fetchStatus||this.cache.remove(this)}setData(e,t){const n=(0,o.oE)(this.state.data,e,this.options);return this.dispatch({data:n,type:"success",dataUpdatedAt:null==t?void 0:t.updatedAt,manual:null==t?void 0:t.manual}),n}setState(e,t){this.dispatch({type:"setState",state:e,setStateOptions:t})}cancel(e){var t;const n=this.promise;return null==(t=this.retryer)||t.cancel(e),n?n.then(o.ZT).catch(o.ZT):Promise.resolve()}destroy(){super.destroy(),this.cancel({silent:!0})}reset(){this.destroy(),this.setState(this.initialState)}isActive(){return this.observers.some((e=>!1!==e.options.enabled))}isDisabled(){return this.getObserversCount()>0&&!this.isActive()}isStale(){return this.state.isInvalidated||!this.state.dataUpdatedAt||this.observers.some((e=>e.getCurrentResult().isStale))}isStaleByTime(e=0){return this.state.isInvalidated||!this.state.dataUpdatedAt||!(0,o.Kp)(this.state.dataUpdatedAt,e)}onFocus(){var e;const t=this.observers.find((e=>e.shouldFetchOnWindowFocus()));t&&t.refetch({cancelRefetch:!1}),null==(e=this.retryer)||e.continue()}onOnline(){var e;const t=this.observers.find((e=>e.shouldFetchOnReconnect()));t&&t.refetch({cancelRefetch:!1}),null==(e=this.retryer)||e.continue()}addObserver(e){-1===this.observers.indexOf(e)&&(this.observers.push(e),this.clearGcTimeout(),this.cache.notify({type:"observerAdded",query:this,observer:e}))}removeObserver(e){-1!==this.observers.indexOf(e)&&(this.observers=this.observers.filter((t=>t!==e)),this.observers.length||(this.retryer&&(this.abortSignalConsumed?this.retryer.cancel({revert:!0}):this.retryer.cancelRetry()),this.scheduleGc()),this.cache.notify({type:"observerRemoved",query:this,observer:e}))}getObserversCount(){return this.observers.length}invalidate(){this.state.isInvalidated||this.dispatch({type:"invalidate"})}fetch(e,t){var n,r;if("idle"!==this.state.fetchStatus)if(this.state.dataUpdatedAt&&null!=t&&t.cancelRefetch)this.cancel({silent:!0});else if(this.promise){var s;return null==(s=this.retryer)||s.continueRetry(),this.promise}if(e&&this.setOptions(e),!this.options.queryFn){const e=this.observers.find((e=>e.options.queryFn));e&&this.setOptions(e.options)}Array.isArray(this.options.queryKey);const i=(0,o.G9)(),c={queryKey:this.queryKey,pageParam:void 0,meta:this.meta},u=e=>{Object.defineProperty(e,"signal",{enumerable:!0,get:()=>{if(i)return this.abortSignalConsumed=!0,i.signal}})};u(c);const l={fetchOptions:t,options:this.options,queryKey:this.queryKey,state:this.state,fetchFn:()=>this.options.queryFn?(this.abortSignalConsumed=!1,this.options.queryFn(c)):Promise.reject("Missing queryFn")};var h;(u(l),null==(n=this.options.behavior)||n.onFetch(l),this.revertState=this.state,"idle"===this.state.fetchStatus||this.state.fetchMeta!==(null==(r=l.fetchOptions)?void 0:r.meta))&&this.dispatch({type:"fetch",meta:null==(h=l.fetchOptions)?void 0:h.meta});const d=e=>{var t,n,r,o;((0,a.DV)(e)&&e.silent||this.dispatch({type:"error",error:e}),(0,a.DV)(e))||(null==(t=(n=this.cache.config).onError)||t.call(n,e,this),null==(r=(o=this.cache.config).onSettled)||r.call(o,this.state.data,e,this));this.isFetchingOptimistic||this.scheduleGc(),this.isFetchingOptimistic=!1};return this.retryer=(0,a.Mz)({fn:l.fetchFn,abort:null==i?void 0:i.abort.bind(i),onSuccess:e=>{var t,n,r,o;void 0!==e?(this.setData(e),null==(t=(n=this.cache.config).onSuccess)||t.call(n,e,this),null==(r=(o=this.cache.config).onSettled)||r.call(o,e,this.state.error,this),this.isFetchingOptimistic||this.scheduleGc(),this.isFetchingOptimistic=!1):d(new Error("undefined"))},onError:d,onFail:(e,t)=>{this.dispatch({type:"failed",failureCount:e,error:t})},onPause:()=>{this.dispatch({type:"pause"})},onContinue:()=>{this.dispatch({type:"continue"})},retry:l.options.retry,retryDelay:l.options.retryDelay,networkMode:l.options.networkMode}),this.promise=this.retryer.promise,this.promise}dispatch(e){this.state=(t=>{var n,r;switch(e.type){case"failed":return{...t,fetchFailureCount:e.failureCount,fetchFailureReason:e.error};case"pause":return{...t,fetchStatus:"paused"};case"continue":return{...t,fetchStatus:"fetching"};case"fetch":return{...t,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null!=(n=e.meta)?n:null,fetchStatus:(0,a.Kw)(this.options.networkMode)?"fetching":"paused",...!t.dataUpdatedAt&&{error:null,status:"loading"}};case"success":return{...t,data:e.data,dataUpdateCount:t.dataUpdateCount+1,dataUpdatedAt:null!=(r=e.dataUpdatedAt)?r:Date.now(),error:null,isInvalidated:!1,status:"success",...!e.manual&&{fetchStatus:"idle",fetchFailureCount:0,fetchFailureReason:null}};case"error":const o=e.error;return(0,a.DV)(o)&&o.revert&&this.revertState?{...this.revertState}:{...t,error:o,errorUpdateCount:t.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:t.fetchFailureCount+1,fetchFailureReason:o,fetchStatus:"idle",status:"error"};case"invalidate":return{...t,isInvalidated:!0};case"setState":return{...t,...e.state}}})(this.state),i.V.batch((()=>{this.observers.forEach((t=>{t.onQueryUpdate(e)})),this.cache.notify({query:this,type:"updated",action:e})}))}}var l=n(3989);class h extends l.l{constructor(e){super(),this.config=e||{},this.queries=[],this.queriesMap={}}build(e,t,n){var r;const s=t.queryKey,i=null!=(r=t.queryHash)?r:(0,o.Rm)(s,t);let a=this.get(i);return a||(a=new u({cache:this,logger:e.getLogger(),queryKey:s,queryHash:i,options:e.defaultQueryOptions(t),state:n,defaultOptions:e.getQueryDefaults(s)}),this.add(a)),a}add(e){this.queriesMap[e.queryHash]||(this.queriesMap[e.queryHash]=e,this.queries.push(e),this.notify({type:"added",query:e}))}remove(e){const t=this.queriesMap[e.queryHash];t&&(e.destroy(),this.queries=this.queries.filter((t=>t!==e)),t===e&&delete this.queriesMap[e.queryHash],this.notify({type:"removed",query:e}))}clear(){i.V.batch((()=>{this.queries.forEach((e=>{this.remove(e)}))}))}get(e){return this.queriesMap[e]}getAll(){return this.queries}find(e,t){const[n]=(0,o.I6)(e,t);return void 0===n.exact&&(n.exact=!0),this.queries.find((e=>(0,o._x)(n,e)))}findAll(e,t){const[n]=(0,o.I6)(e,t);return Object.keys(n).length>0?this.queries.filter((e=>(0,o._x)(n,e))):this.queries}notify(e){i.V.batch((()=>{this.listeners.forEach((t=>{t(e)}))}))}onFocus(){i.V.batch((()=>{this.queries.forEach((e=>{e.onFocus()}))}))}onOnline(){i.V.batch((()=>{this.queries.forEach((e=>{e.onOnline()}))}))}}class d extends c{constructor(e){super(),this.defaultOptions=e.defaultOptions,this.mutationId=e.mutationId,this.mutationCache=e.mutationCache,this.logger=e.logger||s,this.observers=[],this.state=e.state||{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:"idle",variables:void 0},this.setOptions(e.options),this.scheduleGc()}setOptions(e){this.options={...this.defaultOptions,...e},this.updateCacheTime(this.options.cacheTime)}get meta(){return this.options.meta}setState(e){this.dispatch({type:"setState",state:e})}addObserver(e){-1===this.observers.indexOf(e)&&(this.observers.push(e),this.clearGcTimeout(),this.mutationCache.notify({type:"observerAdded",mutation:this,observer:e}))}removeObserver(e){this.observers=this.observers.filter((t=>t!==e)),this.scheduleGc(),this.mutationCache.notify({type:"observerRemoved",mutation:this,observer:e})}optionalRemove(){this.observers.length||("loading"===this.state.status?this.scheduleGc():this.mutationCache.remove(this))}continue(){var e,t;return null!=(e=null==(t=this.retryer)?void 0:t.continue())?e:this.execute()}async execute(){const e=()=>{var e;return this.retryer=(0,a.Mz)({fn:()=>this.options.mutationFn?this.options.mutationFn(this.state.variables):Promise.reject("No mutationFn found"),onFail:(e,t)=>{this.dispatch({type:"failed",failureCount:e,error:t})},onPause:()=>{this.dispatch({type:"pause"})},onContinue:()=>{this.dispatch({type:"continue"})},retry:null!=(e=this.options.retry)?e:0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode}),this.retryer.promise},t="loading"===this.state.status;try{var n,r,o,s,i,c,u,l;if(!t){var h,d,p,f;this.dispatch({type:"loading",variables:this.options.variables}),await(null==(h=(d=this.mutationCache.config).onMutate)?void 0:h.call(d,this.state.variables,this));const e=await(null==(p=(f=this.options).onMutate)?void 0:p.call(f,this.state.variables));e!==this.state.context&&this.dispatch({type:"loading",context:e,variables:this.state.variables})}const a=await e();return await(null==(n=(r=this.mutationCache.config).onSuccess)?void 0:n.call(r,a,this.state.variables,this.state.context,this)),await(null==(o=(s=this.options).onSuccess)?void 0:o.call(s,a,this.state.variables,this.state.context)),await(null==(i=(c=this.mutationCache.config).onSettled)?void 0:i.call(c,a,null,this.state.variables,this.state.context,this)),await(null==(u=(l=this.options).onSettled)?void 0:u.call(l,a,null,this.state.variables,this.state.context)),this.dispatch({type:"success",data:a}),a}catch(E){try{var m,y,v,g,b,w,P,O;throw await(null==(m=(y=this.mutationCache.config).onError)?void 0:m.call(y,E,this.state.variables,this.state.context,this)),await(null==(v=(g=this.options).onError)?void 0:v.call(g,E,this.state.variables,this.state.context)),await(null==(b=(w=this.mutationCache.config).onSettled)?void 0:b.call(w,void 0,E,this.state.variables,this.state.context,this)),await(null==(P=(O=this.options).onSettled)?void 0:P.call(O,void 0,E,this.state.variables,this.state.context)),E}finally{this.dispatch({type:"error",error:E})}}}dispatch(e){this.state=(t=>{switch(e.type){case"failed":return{...t,failureCount:e.failureCount,failureReason:e.error};case"pause":return{...t,isPaused:!0};case"continue":return{...t,isPaused:!1};case"loading":return{...t,context:e.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:!(0,a.Kw)(this.options.networkMode),status:"loading",variables:e.variables};case"success":return{...t,data:e.data,failureCount:0,failureReason:null,error:null,status:"success",isPaused:!1};case"error":return{...t,data:void 0,error:e.error,failureCount:t.failureCount+1,failureReason:e.error,isPaused:!1,status:"error"};case"setState":return{...t,...e.state}}})(this.state),i.V.batch((()=>{this.observers.forEach((t=>{t.onMutationUpdate(e)})),this.mutationCache.notify({mutation:this,type:"updated",action:e})}))}}class p extends l.l{constructor(e){super(),this.config=e||{},this.mutations=[],this.mutationId=0}build(e,t,n){const r=new d({mutationCache:this,logger:e.getLogger(),mutationId:++this.mutationId,options:e.defaultMutationOptions(t),state:n,defaultOptions:t.mutationKey?e.getMutationDefaults(t.mutationKey):void 0});return this.add(r),r}add(e){this.mutations.push(e),this.notify({type:"added",mutation:e})}remove(e){this.mutations=this.mutations.filter((t=>t!==e)),this.notify({type:"removed",mutation:e})}clear(){i.V.batch((()=>{this.mutations.forEach((e=>{this.remove(e)}))}))}getAll(){return this.mutations}find(e){return void 0===e.exact&&(e.exact=!0),this.mutations.find((t=>(0,o.X7)(e,t)))}findAll(e){return this.mutations.filter((t=>(0,o.X7)(e,t)))}notify(e){i.V.batch((()=>{this.listeners.forEach((t=>{t(e)}))}))}resumePausedMutations(){var e;return this.resuming=(null!=(e=this.resuming)?e:Promise.resolve()).then((()=>{const e=this.mutations.filter((e=>e.state.isPaused));return i.V.batch((()=>e.reduce(((e,t)=>e.then((()=>t.continue().catch(o.ZT)))),Promise.resolve())))})).then((()=>{this.resuming=void 0})),this.resuming}}var f=n(5761),m=n(6474);function y(){return{onFetch:e=>{e.fetchFn=()=>{var t,n,r,o,s,i;const a=null==(t=e.fetchOptions)||null==(n=t.meta)?void 0:n.refetchPage,c=null==(r=e.fetchOptions)||null==(o=r.meta)?void 0:o.fetchMore,u=null==c?void 0:c.pageParam,l="forward"===(null==c?void 0:c.direction),h="backward"===(null==c?void 0:c.direction),d=(null==(s=e.state.data)?void 0:s.pages)||[],p=(null==(i=e.state.data)?void 0:i.pageParams)||[];let f=p,m=!1;const y=e.options.queryFn||(()=>Promise.reject("Missing queryFn")),b=(e,t,n,r)=>(f=r?[t,...f]:[...f,t],r?[n,...e]:[...e,n]),w=(t,n,r,o)=>{if(m)return Promise.reject("Cancelled");if(void 0===r&&!n&&t.length)return Promise.resolve(t);const s={queryKey:e.queryKey,pageParam:r,meta:e.options.meta};var i;i=s,Object.defineProperty(i,"signal",{enumerable:!0,get:()=>{var t,n;return null!=(t=e.signal)&&t.aborted?m=!0:null==(n=e.signal)||n.addEventListener("abort",(()=>{m=!0})),e.signal}});const a=y(s);return Promise.resolve(a).then((e=>b(t,r,e,o)))};let P;if(d.length)if(l){const t=void 0!==u,n=t?u:v(e.options,d);P=w(d,t,n)}else if(h){const t=void 0!==u,n=t?u:g(e.options,d);P=w(d,t,n,!0)}else{f=[];const t=void 0===e.options.getNextPageParam;P=!a||!d[0]||a(d[0],0,d)?w([],t,p[0]):Promise.resolve(b([],p[0],d[0]));for(let n=1;n{if(!a||!d[n]||a(d[n],n,d)){const o=t?p[n]:v(e.options,r);return w(r,t,o)}return Promise.resolve(b(r,p[n],d[n]))}))}else P=w([]);return P.then((e=>({pages:e,pageParams:f})))}}}}function v(e,t){return null==e.getNextPageParam?void 0:e.getNextPageParam(t[t.length-1],t)}function g(e,t){return null==e.getPreviousPageParam?void 0:e.getPreviousPageParam(t[0],t)}var b=n(5945),w=r.createElement;const P=new class{constructor(e={}){this.queryCache=e.queryCache||new h,this.mutationCache=e.mutationCache||new p,this.logger=e.logger||s,this.defaultOptions=e.defaultOptions||{},this.queryDefaults=[],this.mutationDefaults=[],this.mountCount=0}mount(){this.mountCount++,1===this.mountCount&&(this.unsubscribeFocus=f.j.subscribe((()=>{f.j.isFocused()&&(this.resumePausedMutations(),this.queryCache.onFocus())})),this.unsubscribeOnline=m.N.subscribe((()=>{m.N.isOnline()&&(this.resumePausedMutations(),this.queryCache.onOnline())})))}unmount(){var e,t;this.mountCount--,0===this.mountCount&&(null==(e=this.unsubscribeFocus)||e.call(this),this.unsubscribeFocus=void 0,null==(t=this.unsubscribeOnline)||t.call(this),this.unsubscribeOnline=void 0)}isFetching(e,t){const[n]=(0,o.I6)(e,t);return n.fetchStatus="fetching",this.queryCache.findAll(n).length}isMutating(e){return this.mutationCache.findAll({...e,fetching:!0}).length}getQueryData(e,t){var n;return null==(n=this.queryCache.find(e,t))?void 0:n.state.data}ensureQueryData(e,t,n){const r=(0,o._v)(e,t,n),s=this.getQueryData(r.queryKey);return s?Promise.resolve(s):this.fetchQuery(r)}getQueriesData(e){return this.getQueryCache().findAll(e).map((({queryKey:e,state:t})=>[e,t.data]))}setQueryData(e,t,n){const r=this.queryCache.find(e),s=null==r?void 0:r.state.data,i=(0,o.SE)(t,s);if(void 0===i)return;const a=(0,o._v)(e),c=this.defaultQueryOptions(a);return this.queryCache.build(this,c).setData(i,{...n,manual:!0})}setQueriesData(e,t,n){return i.V.batch((()=>this.getQueryCache().findAll(e).map((({queryKey:e})=>[e,this.setQueryData(e,t,n)]))))}getQueryState(e,t){var n;return null==(n=this.queryCache.find(e,t))?void 0:n.state}removeQueries(e,t){const[n]=(0,o.I6)(e,t),r=this.queryCache;i.V.batch((()=>{r.findAll(n).forEach((e=>{r.remove(e)}))}))}resetQueries(e,t,n){const[r,s]=(0,o.I6)(e,t,n),a=this.queryCache,c={type:"active",...r};return i.V.batch((()=>(a.findAll(r).forEach((e=>{e.reset()})),this.refetchQueries(c,s))))}cancelQueries(e,t,n){const[r,s={}]=(0,o.I6)(e,t,n);void 0===s.revert&&(s.revert=!0);const a=i.V.batch((()=>this.queryCache.findAll(r).map((e=>e.cancel(s)))));return Promise.all(a).then(o.ZT).catch(o.ZT)}invalidateQueries(e,t,n){const[r,s]=(0,o.I6)(e,t,n);return i.V.batch((()=>{var e,t;if(this.queryCache.findAll(r).forEach((e=>{e.invalidate()})),"none"===r.refetchType)return Promise.resolve();const n={...r,type:null!=(e=null!=(t=r.refetchType)?t:r.type)?e:"active"};return this.refetchQueries(n,s)}))}refetchQueries(e,t,n){const[r,s]=(0,o.I6)(e,t,n),a=i.V.batch((()=>this.queryCache.findAll(r).filter((e=>!e.isDisabled())).map((e=>{var t;return e.fetch(void 0,{...s,cancelRefetch:null==(t=null==s?void 0:s.cancelRefetch)||t,meta:{refetchPage:r.refetchPage}})}))));let c=Promise.all(a).then(o.ZT);return null!=s&&s.throwOnError||(c=c.catch(o.ZT)),c}fetchQuery(e,t,n){const r=(0,o._v)(e,t,n),s=this.defaultQueryOptions(r);void 0===s.retry&&(s.retry=!1);const i=this.queryCache.build(this,s);return i.isStaleByTime(s.staleTime)?i.fetch(s):Promise.resolve(i.state.data)}prefetchQuery(e,t,n){return this.fetchQuery(e,t,n).then(o.ZT).catch(o.ZT)}fetchInfiniteQuery(e,t,n){const r=(0,o._v)(e,t,n);return r.behavior=y(),this.fetchQuery(r)}prefetchInfiniteQuery(e,t,n){return this.fetchInfiniteQuery(e,t,n).then(o.ZT).catch(o.ZT)}resumePausedMutations(){return this.mutationCache.resumePausedMutations()}getQueryCache(){return this.queryCache}getMutationCache(){return this.mutationCache}getLogger(){return this.logger}getDefaultOptions(){return this.defaultOptions}setDefaultOptions(e){this.defaultOptions=e}setQueryDefaults(e,t){const n=this.queryDefaults.find((t=>(0,o.yF)(e)===(0,o.yF)(t.queryKey)));n?n.defaultOptions=t:this.queryDefaults.push({queryKey:e,defaultOptions:t})}getQueryDefaults(e){if(!e)return;const t=this.queryDefaults.find((t=>(0,o.to)(e,t.queryKey)));return null==t?void 0:t.defaultOptions}setMutationDefaults(e,t){const n=this.mutationDefaults.find((t=>(0,o.yF)(e)===(0,o.yF)(t.mutationKey)));n?n.defaultOptions=t:this.mutationDefaults.push({mutationKey:e,defaultOptions:t})}getMutationDefaults(e){if(!e)return;const t=this.mutationDefaults.find((t=>(0,o.to)(e,t.mutationKey)));return null==t?void 0:t.defaultOptions}defaultQueryOptions(e){if(null!=e&&e._defaulted)return e;const t={...this.defaultOptions.queries,...this.getQueryDefaults(null==e?void 0:e.queryKey),...e,_defaulted:!0};return!t.queryHash&&t.queryKey&&(t.queryHash=(0,o.Rm)(t.queryKey,t)),void 0===t.refetchOnReconnect&&(t.refetchOnReconnect="always"!==t.networkMode),void 0===t.useErrorBoundary&&(t.useErrorBoundary=!!t.suspense),t}defaultMutationOptions(e){return null!=e&&e._defaulted?e:{...this.defaultOptions.mutations,...this.getMutationDefaults(null==e?void 0:e.mutationKey),...e,_defaulted:!0}}clear(){this.queryCache.clear(),this.mutationCache.clear()}};var O=({children:e})=>w(b.aH,{client:P},e),E=r.createElement;const C=({element:e})=>E(O,null,e)},1160:function(e,t,n){"use strict";var r=n(4836);t.__esModule=!0,t.wrapRootElement=void 0;var o=r(n(7294)),s=n(7678);t.wrapRootElement=function(e){var t=e.element;return o.default.createElement(s.HeadProvider,null,t)}},1143:function(e){"use strict";e.exports=function(e,t,n,r,o,s,i,a){if(!e){var c;if(void 0===t)c=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var u=[n,r,o,s,i,a],l=0;(c=new Error(t.replace(/%s/g,(function(){return u[l++]})))).name="Invariant Violation"}throw c.framesToPop=1,c}}},7678:function(e,t,n){"use strict";n.r(t),n.d(t,{Base:function(){return b},HeadProvider:function(){return f},Link:function(){return g},Meta:function(){return v},Style:function(){return y},Title:function(){return m}});var r=n(7462),o=n(7294),s=n(3366),i=n(1721),a=n(3935),c=n(7326),u=(0,o.createContext)(null),l=u.Consumer,h=u.Provider,d=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),o=0;o should be in the tree");if(e.headTags=t,c){if(!t.shouldRenderTag(n,e.index))return null;var s=(0,o.createElement)(n,i);return(0,a.createPortal)(s,document.head)}var u=(0,o.createElement)(n,(0,r.Z)({"data-rh":""},i));return t.addServerTag(u),null}))},t}(o.Component),p=["title","meta"],f=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),o=0;o in node");return(0,o.createElement)(h,{value:this.state},n)},t}(o.Component),m=function(e){return(0,o.createElement)(d,(0,r.Z)({tag:"title"},e))},y=function(e){return(0,o.createElement)(d,(0,r.Z)({tag:"style"},e))},v=function(e){return(0,o.createElement)(d,(0,r.Z)({tag:"meta"},e))},g=function(e){return(0,o.createElement)(d,(0,r.Z)({tag:"link"},e))},b=function(e){return(0,o.createElement)(d,(0,r.Z)({tag:"base"},e))}},9730:function(e,t,n){"use strict";var r=n(7294),o={stream:!0},s=new Map,i=Symbol.for("react.element"),a=Symbol.for("react.lazy"),c=Symbol.for("react.default_value"),u=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ContextRegistry;function l(e,t,n){this._status=e,this._value=t,this._response=n}function h(e){switch(e._status){case 3:return e._value;case 1:var t=JSON.parse(e._value,e._response._fromJSON);return e._status=3,e._value=t;case 2:for(var r=(t=e._value).chunks,o=0;o((e,t)=>{const{forward:n=[],...r}=e||{},o=JSON.stringify(r,((e,t)=>("function"==typeof t&&(t=String(t)).startsWith(e+"(")&&(t="function "+t),t)));return["!(function(w,p,f,c){",Object.keys(r).length>0?`c=w[p]=Object.assign(w[p]||{},${o});`:"c=w[p]=w[p]||{};","c[f]=(c[f]||[])",n.length>0?`.concat(${JSON.stringify(n)})`:"","})(window,'partytown','forward');",t].join("")})(e,'/* Partytown 0.7.5 - MIT builder.io */\n!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,"/"==(a=(o.lib||"/~partytown/")+(o.debug?"debug/":""))[0]&&(s=e.querySelectorAll(\'script[type="text/partytown"]\'),i!=t?i.dispatchEvent(new CustomEvent("pt1",{detail:t})):(d=setTimeout(f,1e4),e.addEventListener("pt0",w),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||"partytown-sw.js"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener("statechange",(function(t){"activated"==t.target.state&&h()}))}),console.error):f())))}function h(t){c=e.createElement(t?"script":"iframe"),t||(c.setAttribute("style","display:block;width:0;height:0;border:0;visibility:hidden"),c.setAttribute("aria-hidden",!0)),c.src=a+"partytown-"+(t?"atomics.js?v=0.7.5":"sandbox-sw.html?"+Date.now()),e.body.appendChild(c)}function f(n,r){for(w(),i==t&&(o.forward||[]).map((function(e){delete t[e.split(".")[0]]})),n=0;n=0||(o[n]=e[n]);return o}n.d(t,{Z:function(){return r}})},7896:function(e,t,n){"use strict";var r;n.r(t),n.d(t,{BaseContext:function(){return y},Link:function(){return J},Location:function(){return z},LocationContext:function(){return v},LocationProvider:function(){return X},Match:function(){return ee},Redirect:function(){return C},Router:function(){return ae},ServerLocation:function(){return Y},createHistory:function(){return l},createMemorySource:function(){return h},globalHistory:function(){return p},insertParams:function(){return k},isRedirect:function(){return P},match:function(){return R},navigate:function(){return f},pick:function(){return _},redirectTo:function(){return O},resolve:function(){return j},shallowCompare:function(){return H},startsWith:function(){return S},useBaseContext:function(){return g},useLocation:function(){return ue},useLocationContext:function(){return b},useMatch:function(){return de},useNavigate:function(){return le},useParams:function(){return he},validateRedirect:function(){return x}});var o=n(7294),s=n(5697),i=n(1143);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t=0||(o[n]=e[n]);return o}const u=e=>{const{search:t,hash:n,href:r,origin:o,protocol:s,host:i,hostname:a,port:c}=e.location;let{pathname:u}=e.location;return!u&&r&&d&&(u=new URL(r).pathname),{pathname:encodeURI(decodeURI(u)),search:t,hash:n,href:r,origin:o,protocol:s,host:i,hostname:a,port:c,state:e.history.state,key:e.history.state&&e.history.state.key||"initial"}},l=(e,t)=>{let n=[],r=u(e),o=!1,s=()=>{};return{get location(){return r},get transitioning(){return o},_onTransitionComplete(){o=!1,s()},listen(t){n.push(t);const o=()=>{r=u(e),t({location:r,action:"POP"})};return e.addEventListener("popstate",o),()=>{e.removeEventListener("popstate",o),n=n.filter((e=>e!==t))}},navigate(t,{state:i,replace:c=!1}={}){if("number"==typeof t)e.history.go(t);else{i=a({},i,{key:Date.now()+""});try{o||c?e.history.replaceState(i,null,t):e.history.pushState(i,null,t)}catch(n){e.location[c?"replace":"assign"](t)}}r=u(e),o=!0;const l=new Promise((e=>s=e));return n.forEach((e=>e({location:r,action:"PUSH"}))),l}}},h=(e="/")=>{const t=e.indexOf("?"),n={pathname:t>-1?e.substr(0,t):e,search:t>-1?e.substr(t):""};let r=0;const o=[n],s=[null];return{get location(){return o[r]},addEventListener(e,t){},removeEventListener(e,t){},history:{get entries(){return o},get index(){return r},get state(){return s[r]},pushState(e,t,n){const[i,a=""]=n.split("?");r++,o.push({pathname:i,search:a.length?`?${a}`:a}),s.push(e)},replaceState(e,t,n){const[i,a=""]=n.split("?");o[r]={pathname:i,search:a},s[r]=e},go(e){const t=r+e;t<0||t>s.length-1||(r=t)}}}},d=!("undefined"==typeof window||!window.document||!window.document.createElement),p=l(d?window:h()),{navigate:f}=p;function m(e,t){return o.createServerContext?((e,t=null)=>(globalThis.__SERVER_CONTEXT||(globalThis.__SERVER_CONTEXT={}),globalThis.__SERVER_CONTEXT[e]||(globalThis.__SERVER_CONTEXT[e]=o.createServerContext(e,t)),globalThis.__SERVER_CONTEXT[e]))(e,t):o.createContext(t)}const y=m("Base",{baseuri:"/",basepath:"/"}),v=m("Location"),g=()=>o.useContext(y),b=()=>o.useContext(v);function w(e){this.uri=e}const P=e=>e instanceof w,O=e=>{throw new w(e)};function E(e){const{to:t,replace:n=!0,state:r,noThrow:s,baseuri:i}=e;o.useEffect((()=>{Promise.resolve().then((()=>{const o=j(t,i);f(k(o,e),{replace:n,state:r})}))}),[]);const a=j(t,i);return s||O(k(a,e)),null}const C=e=>{const t=b(),{baseuri:n}=g();return o.createElement(E,a({},t,{baseuri:n},e))};C.propTypes={from:s.string,to:s.string.isRequired};const S=(e,t)=>e.substr(0,t.length)===t,_=(e,t)=>{let n,r;const[o]=t.split("?"),s=L(o),a=""===s[0],c=N(e);for(let u=0,l=c.length;u dynamic segment "${r[1]}" is a reserved name. Please use a different name in path "${o.path}".`);const t=decodeURIComponent(n);h[r[1]]=t}else if(t!==n){e=!0;break}}if(!e){n={route:o,params:h,uri:"/"+s.slice(0,p).join("/")};break}}return n||r||null},R=(e,t)=>_([{path:e}],t),j=(e,t)=>{if(S(e,"/"))return e;const[n,r]=e.split("?"),[o]=t.split("?"),s=L(n),i=L(o);if(""===s[0])return A(o,r);if(!S(s[0],".")){const e=i.concat(s).join("/");return A(("/"===o?"":"/")+e,r)}const a=i.concat(s),c=[];for(let u=0,l=a.length;u{const[n,r=""]=e.split("?");let o="/"+L(n).map((e=>{const n=D.exec(e);return n?t[n[1]]:e})).join("/");const{location:{search:s=""}={}}=t,i=s.split("?")[1]||"";return o=A(o,r,i),o},x=(e,t)=>{const n=e=>T(e);return L(e).filter(n).sort().join("/")===L(t).filter(n).sort().join("/")},D=/^:(.+)/,T=e=>D.test(e),q=e=>e&&"*"===e[0],M=(e,t)=>({route:e,score:e.default?0:L(e.path).reduce(((e,t)=>(e+=4,(e=>""===e)(t)?e+=1:T(t)?e+=2:q(t)?e-=5:e+=3,e)),0),index:t}),N=e=>e.map(M).sort(((e,t)=>e.scoret.score?-1:e.index-t.index)),L=e=>e.replace(/(^\/+|\/+$)/g,"").split("/"),A=(e,...t)=>e+((t=t.filter((e=>e&&e.length>0)))&&t.length>0?`?${t.join("&")}`:""),F=["uri","path"],H=(e,t)=>{const n=Object.keys(e);return n.length===Object.keys(t).length&&n.every((n=>t.hasOwnProperty(n)&&e[n]===t[n]))},U=e=>e.replace(/(^\/+|\/+$)/g,""),I=e=>t=>{if(!t)return null;if(t.type===o.Fragment&&t.props.children)return o.Children.map(t.props.children,I(e));if(i(t.props.path||t.props.default||t.type===C,`: Children of must have a \`path\` or \`default\` prop, or be a \`\`. None found on element type \`${t.type}\``),i(!!(t.type!==C||t.props.from&&t.props.to),` requires both "from" and "to" props when inside a .`),i(!(t.type===C&&!x(t.props.from,t.props.to)),` has mismatched dynamic segments, ensure both paths have the exact same dynamic segments.`),t.props.default)return{value:t,default:!0};const n=t.type===C?t.props.from:t.props.path,r="/"===n?e:`${U(e)}/${U(n)}`;return{value:t,default:t.props.default,path:t.props.children?`${U(r)}/*`:r}},Q=["innerRef"],$=["to","state","replace","getProps"],W=["key"];let{forwardRef:K}=r||(r=n.t(o,2));void 0===K&&(K=e=>e);const Z=()=>{},J=K(((e,t)=>{let{innerRef:n}=e,r=c(e,Q);const{baseuri:s}=g(),{location:i}=b(),{to:u,state:l,replace:h,getProps:d=Z}=r,p=c(r,$),m=j(u,s),y=encodeURI(m),v=i.pathname===y,w=S(i.pathname,y);return o.createElement("a",a({ref:t||n,"aria-current":v?"page":void 0},p,d({isCurrent:v,isPartiallyCurrent:w,href:m,location:i}),{href:m,onClick:e=>{if(p.onClick&&p.onClick(e),(e=>!e.defaultPrevented&&0===e.button&&!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey))(e)){e.preventDefault();let t=h;if("boolean"!=typeof h&&v){const e=c(a({},i.state),W);t=H(a({},l),e)}f(m,{state:l,replace:t})}}}))}));J.displayName="Link",J.propTypes={to:s.string.isRequired};class B extends o.Component{constructor(...e){super(...e),this.displayName="ReactUseErrorBoundary"}componentDidCatch(...e){this.setState({}),this.props.onError(...e)}render(){return this.props.children}}const G=o.createContext({componentDidCatch:{current:void 0},error:void 0,setError:()=>!1});function V({children:e}){const[t,n]=o.useState(),r=o.useRef(),s=o.useMemo((()=>({componentDidCatch:r,error:t,setError:n})),[t]);return o.createElement(G.Provider,{value:s},o.createElement(B,{error:t,onError:(e,t)=>{n(e),null==r.current||r.current(e,t)}},e))}V.displayName="ReactUseErrorBoundaryContext";const X=function(e){var t,n;function r(t){return o.createElement(V,null,o.createElement(e,a({key:"WrappedComponent"},t)))}return r.displayName=`WithErrorBoundary(${null!=(t=null!=(n=e.displayName)?n:e.name)?t:"Component"})`,r}((({history:e=p,children:t})=>{const{location:n}=e,[r,s]=o.useState({location:n}),[i]=function(e){const t=o.useContext(G);t.componentDidCatch.current=void 0;const n=o.useCallback((()=>{t.setError(void 0)}),[]);return[t.error,n]}();if(o.useEffect((()=>{e._onTransitionComplete()}),[r.location]),o.useEffect((()=>{let t=!1;const n=e.listen((({location:e})=>{Promise.resolve().then((()=>{requestAnimationFrame((()=>{t||s({location:e})}))}))}));return()=>{t=!0,n()}}),[]),i){if(!P(i))throw i;f(i.uri,{replace:!0})}return o.createElement(v.Provider,{value:r},"function"==typeof t?t(r):t||null)})),z=({children:e})=>{const t=b();return t?e(t):o.createElement(X,null,e)},Y=({url:e,children:t})=>{const n=e.indexOf("?");let r,s="";return n>-1?(r=e.substring(0,n),s=e.substring(n)):r=e,o.createElement(v.Provider,{value:{location:{pathname:r,search:s,hash:""}}},t)},ee=({path:e,children:t})=>{const{baseuri:n}=g(),{location:r}=b(),o=j(e,n),s=R(o,r.pathname);return t({location:r,match:s?a({},s.params,{uri:s.uri,path:e}):null})},te=["uri","location","component"],ne=["children","style","component","uri","location"],re=e=>{let{uri:t,location:n,component:r}=e,s=c(e,te);return o.createElement(se,a({},s,{component:r,uri:t,location:n}))};let oe=0;const se=e=>{let{children:t,style:n,component:r="div",uri:s,location:i}=e,u=c(e,ne);const l=o.useRef(),h=o.useRef(!0),d=o.useRef(s),p=o.useRef(i.pathname),f=o.useRef(!1);o.useEffect((()=>(oe++,m(),()=>{oe--,0===oe&&(h.current=!0)})),[]),o.useEffect((()=>{let e=!1,t=!1;s!==d.current&&(d.current=s,e=!0),i.pathname!==p.current&&(p.current=i.pathname,t=!0),f.current=e||t&&i.pathname===s,f.current&&m()}),[s,i]);const m=o.useCallback((()=>{var e;h.current?h.current=!1:(e=l.current,f.current&&e&&e.focus())}),[]);return o.createElement(r,a({style:a({outline:"none"},n),tabIndex:"-1",ref:l},u),t)},ie=["location","primary","children","basepath","baseuri","component"],ae=e=>{const t=g(),n=b();return o.createElement(ce,a({},t,n,e))};function ce(e){const{location:t,primary:n=!0,children:r,basepath:s,component:i="div"}=e,u=c(e,ie),l=o.Children.toArray(r).reduce(((e,t)=>{const n=I(s)(t);return e.concat(n)}),[]),{pathname:h}=t,d=_(l,h);if(d){const{params:e,uri:r,route:c,route:{value:l}}=d,h=c.default?s:c.path.replace(/\*$/,""),p=a({},e,{uri:r,location:t}),f=o.cloneElement(l,p,l.props.children?o.createElement(ae,{location:t,primary:n},l.props.children):void 0),m=n?re:i,v=n?a({uri:r,location:t,component:i},u):u;return o.createElement(y.Provider,{value:{baseuri:r,basepath:h}},o.createElement(m,v,f))}return null}const ue=()=>{const e=b();if(!e)throw new Error("useLocation hook was used but a LocationContext.Provider was not found in the parent tree. Make sure this is used in a component that is a child of Router");return e.location},le=()=>{throw new Error("useNavigate is removed. Use import { navigate } from 'gatsby' instead")},he=()=>{const e=g();if(!e)throw new Error("useParams hook was used but a LocationContext.Provider was not found in the parent tree. Make sure this is used in a component that is a child of Router");const t=ue(),n=R(e.basepath,t.pathname);return n?n.params:null},de=e=>{if(!e)throw new Error("useMatch(path: string) requires an argument of a string to match against");const t=g();if(!t)throw new Error("useMatch hook was used but a LocationContext.Provider was not found in the parent tree. Make sure this is used in a component that is a child of Router");const n=ue(),r=j(e,t.baseuri),o=R(r,n.pathname);return o?a({},o.params,{uri:o.uri,path:e}):null}},5761:function(e,t,n){"use strict";n.d(t,{j:function(){return i}});var r=n(3989),o=n(2161);class s extends r.l{constructor(){super(),this.setup=e=>{if(!o.sk&&window.addEventListener){const t=()=>e();return window.addEventListener("visibilitychange",t,!1),window.addEventListener("focus",t,!1),()=>{window.removeEventListener("visibilitychange",t),window.removeEventListener("focus",t)}}}}onSubscribe(){this.cleanup||this.setEventListener(this.setup)}onUnsubscribe(){var e;this.hasListeners()||(null==(e=this.cleanup)||e.call(this),this.cleanup=void 0)}setEventListener(e){var t;this.setup=e,null==(t=this.cleanup)||t.call(this),this.cleanup=e((e=>{"boolean"==typeof e?this.setFocused(e):this.onFocus()}))}setFocused(e){this.focused=e,e&&this.onFocus()}onFocus(){this.listeners.forEach((e=>{e()}))}isFocused(){return"boolean"==typeof this.focused?this.focused:"undefined"==typeof document||[void 0,"visible","prerender"].includes(document.visibilityState)}}const i=new s},81:function(e,t,n){"use strict";n.d(t,{V:function(){return o}});var r=n(2161);const o=function(){let e=[],t=0,n=e=>{e()},o=e=>{e()};const s=o=>{t?e.push(o):(0,r.A4)((()=>{n(o)}))},i=()=>{const t=e;e=[],t.length&&(0,r.A4)((()=>{o((()=>{t.forEach((e=>{n(e)}))}))}))};return{batch:e=>{let n;t++;try{n=e()}finally{t--,t||i()}return n},batchCalls:e=>(...t)=>{s((()=>{e(...t)}))},schedule:s,setNotifyFunction:e=>{n=e},setBatchNotifyFunction:e=>{o=e}}}()},6474:function(e,t,n){"use strict";n.d(t,{N:function(){return i}});var r=n(3989),o=n(2161);class s extends r.l{constructor(){super(),this.setup=e=>{if(!o.sk&&window.addEventListener){const t=()=>e();return window.addEventListener("online",t,!1),window.addEventListener("offline",t,!1),()=>{window.removeEventListener("online",t),window.removeEventListener("offline",t)}}}}onSubscribe(){this.cleanup||this.setEventListener(this.setup)}onUnsubscribe(){var e;this.hasListeners()||(null==(e=this.cleanup)||e.call(this),this.cleanup=void 0)}setEventListener(e){var t;this.setup=e,null==(t=this.cleanup)||t.call(this),this.cleanup=e((e=>{"boolean"==typeof e?this.setOnline(e):this.onOnline()}))}setOnline(e){this.online=e,e&&this.onOnline()}onOnline(){this.listeners.forEach((e=>{e()}))}isOnline(){return"boolean"==typeof this.online?this.online:"undefined"==typeof navigator||void 0===navigator.onLine||navigator.onLine}}const i=new s},2379:function(e,t,n){"use strict";n.d(t,{DV:function(){return u},Kw:function(){return a},Mz:function(){return l}});var r=n(5761),o=n(6474),s=n(2161);function i(e){return Math.min(1e3*2**e,3e4)}function a(e){return"online"!==(null!=e?e:"online")||o.N.isOnline()}class c{constructor(e){this.revert=null==e?void 0:e.revert,this.silent=null==e?void 0:e.silent}}function u(e){return e instanceof c}function l(e){let t,n,u,l=!1,h=0,d=!1;const p=new Promise(((e,t)=>{n=e,u=t})),f=()=>!r.j.isFocused()||"always"!==e.networkMode&&!o.N.isOnline(),m=r=>{d||(d=!0,null==e.onSuccess||e.onSuccess(r),null==t||t(),n(r))},y=n=>{d||(d=!0,null==e.onError||e.onError(n),null==t||t(),u(n))},v=()=>new Promise((n=>{t=e=>{const t=d||!f();return t&&n(e),t},null==e.onPause||e.onPause()})).then((()=>{t=void 0,d||null==e.onContinue||e.onContinue()})),g=()=>{if(d)return;let t;try{t=e.fn()}catch(n){t=Promise.reject(n)}Promise.resolve(t).then(m).catch((t=>{var n,r;if(d)return;const o=null!=(n=e.retry)?n:3,a=null!=(r=e.retryDelay)?r:i,c="function"==typeof a?a(h,t):a,u=!0===o||"number"==typeof o&&h{if(f())return v()})).then((()=>{l?y(t):g()}))):y(t)}))};return a(e.networkMode)?g():v().then(g),{promise:p,cancel:t=>{d||(y(new c(t)),null==e.abort||e.abort())},continue:()=>(null==t?void 0:t())?p:Promise.resolve(),cancelRetry:()=>{l=!0},continueRetry:()=>{l=!1}}}},3989:function(e,t,n){"use strict";n.d(t,{l:function(){return r}});class r{constructor(){this.listeners=[],this.subscribe=this.subscribe.bind(this)}subscribe(e){return this.listeners.push(e),this.onSubscribe(),()=>{this.listeners=this.listeners.filter((t=>t!==e)),this.onUnsubscribe()}}hasListeners(){return this.listeners.length>0}onSubscribe(){}onUnsubscribe(){}}},2161:function(e,t,n){"use strict";n.d(t,{A4:function(){return E},G9:function(){return C},Gh:function(){return O},I6:function(){return u},Kp:function(){return a},PN:function(){return i},Rm:function(){return d},SE:function(){return s},VS:function(){return v},X7:function(){return h},ZT:function(){return o},_v:function(){return c},_x:function(){return l},oE:function(){return S},sk:function(){return r},to:function(){return f},yF:function(){return p}});const r="undefined"==typeof window||"Deno"in window;function o(){}function s(e,t){return"function"==typeof e?e(t):e}function i(e){return"number"==typeof e&&e>=0&&e!==1/0}function a(e,t){return Math.max(e+(t||0)-Date.now(),0)}function c(e,t,n){return P(e)?"function"==typeof t?{...n,queryKey:e,queryFn:t}:{...t,queryKey:e}:e}function u(e,t,n){return P(e)?[{...t,queryKey:e},n]:[e||{},t]}function l(e,t){const{type:n="all",exact:r,fetchStatus:o,predicate:s,queryKey:i,stale:a}=e;if(P(i))if(r){if(t.queryHash!==d(i,t.options))return!1}else if(!f(t.queryKey,i))return!1;if("all"!==n){const e=t.isActive();if("active"===n&&!e)return!1;if("inactive"===n&&e)return!1}return("boolean"!=typeof a||t.isStale()===a)&&((void 0===o||o===t.state.fetchStatus)&&!(s&&!s(t)))}function h(e,t){const{exact:n,fetching:r,predicate:o,mutationKey:s}=e;if(P(s)){if(!t.options.mutationKey)return!1;if(n){if(p(t.options.mutationKey)!==p(s))return!1}else if(!f(t.options.mutationKey,s))return!1}return("boolean"!=typeof r||"loading"===t.state.status===r)&&!(o&&!o(t))}function d(e,t){return((null==t?void 0:t.queryKeyHashFn)||p)(e)}function p(e){return JSON.stringify(e,((e,t)=>b(t)?Object.keys(t).sort().reduce(((e,n)=>(e[n]=t[n],e)),{}):t))}function f(e,t){return m(e,t)}function m(e,t){return e===t||typeof e==typeof t&&(!(!e||!t||"object"!=typeof e||"object"!=typeof t)&&!Object.keys(t).some((n=>!m(e[n],t[n]))))}function y(e,t){if(e===t)return e;const n=g(e)&&g(t);if(n||b(e)&&b(t)){const r=n?e.length:Object.keys(e).length,o=n?t:Object.keys(t),s=o.length,i=n?[]:{};let a=0;for(let c=0;c{setTimeout(t,e)}))}function E(e){O(0).then(e)}function C(){if("function"==typeof AbortController)return new AbortController}function S(e,t,n){return null!=n.isDataEqual&&n.isDataEqual(e,t)?e:"function"==typeof n.structuralSharing?n.structuralSharing(e,t):!1!==n.structuralSharing?y(e,t):t}},5945:function(e,t,n){"use strict";n.d(t,{NL:function(){return a},aH:function(){return c}});var r=n(7294);const o=r.createContext(void 0),s=r.createContext(!1);function i(e,t){return e||(t&&"undefined"!=typeof window?(window.ReactQueryClientContext||(window.ReactQueryClientContext=o),window.ReactQueryClientContext):o)}const a=({context:e}={})=>{const t=r.useContext(i(e,r.useContext(s)));if(!t)throw new Error("No QueryClient set, use QueryClientProvider to set one");return t},c=({client:e,children:t,context:n,contextSharing:o=!1})=>{r.useEffect((()=>(e.mount(),()=>{e.unmount()})),[e]);const a=i(n,o);return r.createElement(s.Provider,{value:!n&&o},r.createElement(a.Provider,{value:e},t))}},1562:function(e,t,n){"use strict";n.d(t,{c4:function(){return P},cP:function(){return c},rU:function(){return w}});var r=n(5697),o=n(7294),s=n(7896),i=n(4506);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t{if("string"==typeof e)return!(e=>u.test(e))(e)},h=()=>"";function d(e,t=""){var n;if(!l(e))return e;if(e.startsWith("./")||e.startsWith("../"))return e;const r=null!=(n=null!=t?t:h())?n:"/";return`${null!=r&&r.endsWith("/")?r.slice(0,-1):r}${e.startsWith("/")?e:`/${e}`}`}const p=e=>null==e?void 0:e.startsWith("/");function f(e,t){const{pathname:n,search:r,hash:o}=c(e);return`${(0,i.H)(n,t)}${r}${o}`}const m=(e,t)=>"number"==typeof e?e:l(e)?p(e)?function(e){const t=d(e),n="always";return f(t,n)}(e):function(e,t){if(p(e))return e;const n="always",r=(0,s.resolve)(e,t);return f(r,n)}(e,t):e,y=["to","getProps","onClick","onMouseEnter","activeClassName","activeStyle","innerRef","partiallyActive","state","replace","_location"];const v={activeClassName:r.string,activeStyle:r.object,partiallyActive:r.bool};function g(e){return o.createElement(s.Location,null,(({location:t})=>o.createElement(b,a({},e,{_location:t}))))}class b extends o.Component{constructor(e){super(e),this.defaultGetProps=({isPartiallyCurrent:e,isCurrent:t})=>(this.props.partiallyActive?e:t)?{className:[this.props.className,this.props.activeClassName].filter(Boolean).join(" "),style:a({},this.props.style,this.props.activeStyle)}:null;let t=!1;"undefined"!=typeof window&&window.IntersectionObserver&&(t=!0),this.state={IOSupported:t},this.abortPrefetch=null,this.handleRef=this.handleRef.bind(this)}_prefetch(){let e=window.location.pathname+window.location.search;this.props._location&&this.props._location.pathname&&(e=this.props._location.pathname+this.props._location.search);const t=c(m(this.props.to,e)),n=t.pathname+t.search;if(e!==n)return ___loader.enqueue(n)}componentWillUnmount(){if(!this.io)return;const{instance:e,el:t}=this.io;this.abortPrefetch&&this.abortPrefetch.abort(),e.unobserve(t),e.disconnect()}handleRef(e){this.props.innerRef&&Object.prototype.hasOwnProperty.call(this.props.innerRef,"current")?this.props.innerRef.current=e:this.props.innerRef&&this.props.innerRef(e),this.state.IOSupported&&e&&(this.io=((e,t)=>{const n=new window.IntersectionObserver((n=>{n.forEach((n=>{e===n.target&&t(n.isIntersecting||n.intersectionRatio>0)}))}));return n.observe(e),{instance:n,el:e}})(e,(e=>{e?this.abortPrefetch=this._prefetch():this.abortPrefetch&&this.abortPrefetch.abort()})))}render(){const e=this.props,{to:t,getProps:n=this.defaultGetProps,onClick:r,onMouseEnter:i,state:u,replace:h,_location:d}=e,p=function(e,t){if(null==e)return{};var n,r,o={},s=Object.keys(e);for(r=0;r=0||(o[n]=e[n]);return o}(e,y),f=m(t,d.pathname);return l(f)?o.createElement(s.Link,a({to:f,state:u,getProps:n,innerRef:this.handleRef,onMouseEnter:e=>{i&&i(e);const t=c(f);___loader.hovering(t.pathname+t.search)},onClick:e=>{if(r&&r(e),!(0!==e.button||this.props.target||e.defaultPrevented||e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)){e.preventDefault();let t=h;const n=encodeURI(f)===d.pathname;"boolean"!=typeof h&&n&&(t=!0),window.___navigate(f,{state:u,replace:t})}return!0}},p)):o.createElement("a",a({href:f},p))}}b.propTypes=a({},v,{onClick:r.func,to:r.string.isRequired,replace:r.bool,state:r.object});const w=o.forwardRef(((e,t)=>o.createElement(g,a({innerRef:t},e)))),P=(e,t)=>{window.___navigate(m(e,window.location.pathname),t)}},3521:function(e,t,n){"use strict";n.r(t),n.d(t,{Script:function(){return f},ScriptStrategy:function(){return u},collectedScriptsByPage:function(){return a},scriptCache:function(){return d},scriptCallbackCache:function(){return p}});var r=n(7294),o=n(7896);function s(){return s=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.get(e)||[],set(e,t){const n=i.get(e)||[];n.push(t),i.set(e,n)},delete(e){i.delete(e)}},c="undefined"!=typeof self&&self.requestIdleCallback&&self.requestIdleCallback.bind(window)||function(e){const t=Date.now();return setTimeout((function(){e({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-t))}})}),1)};var u,l;(l=u||(u={})).postHydrate="post-hydrate",l.idle="idle",l.offMainThread="off-main-thread";const h=new Set(["src","strategy","dangerouslySetInnerHTML","children","onLoad","onError"]),d=new Set,p=new Map;function f(e){return r.createElement(o.Location,null,(()=>r.createElement(m,e)))}function m(e){const{src:t,strategy:n=u.postHydrate}=e||{},{pathname:i}=(0,o.useLocation)();if((0,r.useEffect)((()=>{let t;switch(n){case u.postHydrate:t=y(e);break;case u.idle:c((()=>{t=y(e)}));break;case u.offMainThread:{const t=g(e);a.set(i,t)}}return()=>{const{script:e,loadCallback:n,errorCallback:r}=t||{};n&&(null==e||e.removeEventListener("load",n)),r&&(null==e||e.removeEventListener("error",r)),null==e||e.remove()}}),[]),n===u.offMainThread){const o=v(e),c=g(e);return"undefined"==typeof window&&a.set(i,c),r.createElement("script",o?s({type:"text/partytown","data-strategy":n,crossOrigin:"anonymous"},c,{dangerouslySetInnerHTML:{__html:v(e)}}):s({type:"text/partytown",src:b(t),"data-strategy":n,crossOrigin:"anonymous"},c))}return null}function y(e){const{id:t,src:n,strategy:r=u.postHydrate,onLoad:o,onError:i}=e||{},a=t||n,c=["load","error"],l={load:o,error:i};if(a){for(const e of c)if(null!=l&&l[e]){var h;const t=p.get(a)||{},{callbacks:n=[]}=(null==t?void 0:t[e])||{};var f,m;n.push(null==l?void 0:l[e]),null!=t&&null!=(h=t[e])&&h.event?null==l||null==(f=l[e])||f.call(l,null==t||null==(m=t[e])?void 0:m.event):p.set(a,s({},t,{[e]:{callbacks:n}}))}if(d.has(a))return null}const y=v(e),b=g(e),P=document.createElement("script");t&&(P.id=t),P.dataset.strategy=r;for(const[s,u]of Object.entries(b))P.setAttribute(s,u);y&&(P.textContent=y),n&&(P.src=n);const O={};if(a){for(const e of c){const t=t=>w(t,a,e);P.addEventListener(e,t),O[`${e}Callback`]=t}d.add(a)}return document.body.appendChild(P),{script:P,loadCallback:O.loadCallback,errorCallback:O.errorCallback}}function v(e){const{dangerouslySetInnerHTML:t,children:n=""}=e||{},{__html:r=""}=t||{};return r||n}function g(e){const t={};for(const[n,r]of Object.entries(e))h.has(n)||(t[n]=r);return t}function b(e){if(e)return`/__third-party-proxy?url=${encodeURIComponent(e)}`}function w(e,t,n){const r=p.get(t)||{};for(const s of(null==r||null==(o=r[n])?void 0:o.callbacks)||[]){var o;s(e)}p.set(t,{[n]:{event:e}})}}},function(e){e.O(0,[774],(function(){return t=5824,e(e.s=t);var t}));e.O()}]); \ No newline at end of file diff --git a/public/app.js.LICENSE.txt b/public/app.js.LICENSE.txt new file mode 100644 index 0000000000..467a64a6fe --- /dev/null +++ b/public/app.js.LICENSE.txt @@ -0,0 +1,9 @@ +/** + * @license React + * react-server-dom-webpack.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ diff --git a/public/art-TWITTER/index.html b/public/art-TWITTER/index.html deleted file mode 100644 index 5c6faf6a17..0000000000 --- a/public/art-TWITTER/index.html +++ /dev/null @@ -1,146 +0,0 @@ -AI-generated Art // jonaso.de

AI-generated Artworks

I like to experiment with text-to-image synthesis. The digital artworks below were created with Katherine Crowson's (@RiversHaveWings) VQGAN+CLIP, CLIP guided diffusion, etc.

I post my AI-generated images on the Twitter account @kettlebellz.

\ No newline at end of file diff --git a/public/artworks/dalle/index.html b/public/artworks/dalle/index.html new file mode 100644 index 0000000000..1d5f82e39c --- /dev/null +++ b/public/artworks/dalle/index.html @@ -0,0 +1,171 @@ + + + \ No newline at end of file diff --git a/public/artworks/index.html b/public/artworks/index.html new file mode 100644 index 0000000000..0150da104a --- /dev/null +++ b/public/artworks/index.html @@ -0,0 +1,171 @@ +

AI-generated Images

Latest digital images generated from text prompts (never edited). Click links below for more.undefined images

Loading
+ + \ No newline at end of file diff --git a/public/artworks/json/webp-VQGANCLIP-0.json b/public/artworks/json/webp-VQGANCLIP-0.json new file mode 100644 index 0000000000..2e6adcfc75 --- /dev/null +++ b/public/artworks/json/webp-VQGANCLIP-0.json @@ -0,0 +1 @@ +{"total": 100, "items": [["https://www.jonaso.de/artworks/VQGANCLIP/Trees/Tree%20of%20Life/1/175.webp", 400, 400, "#797467"], ["https://www.jonaso.de/artworks/VQGANCLIP/Trees/Tree%20Seasons/Autumn/50.webp", 400, 400, "#8D7E7B"], ["https://www.jonaso.de/artworks/VQGANCLIP/Trees/Tree%20Seasons/Winter/50.webp", 400, 400, "#848085"], ["https://www.jonaso.de/artworks/VQGANCLIP/Trees/Trees%20in%20the%20Wind/3/100.webp", 400, 400, "#8D8D81"], ["https://www.jonaso.de/artworks/VQGANCLIP/Trees/Trees%20in%20the%20Wind/2/100.webp", 400, 400, "#938C7C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Trees/Trees%20in%20the%20Wind/1/75.webp", 400, 400, "#8F9181"], ["https://www.jonaso.de/artworks/VQGANCLIP/Crystals/Crystal%20of%20Life/7/650.webp", 400, 400, "#8B8381"], ["https://www.jonaso.de/artworks/VQGANCLIP/Crystals/Crystal%20of%20Life/3/106.webp", 400, 400, "#79675C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Crystals/Crystal%20of%20Life/1/175.webp", 400, 400, "#6B6557"], ["https://www.jonaso.de/artworks/VQGANCLIP/Movies/Human%20Centipede/2/human-centipede.webp", 400, 400, "#BBBBAB"], ["https://www.jonaso.de/artworks/VQGANCLIP/Movies/American%20Beauty/1/0099.webp", 400, 400, "#A5503D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Movies/Pulp%20Fiction/the%20choice%20is%20yours%20%7C%20painting%20by%20A.%20K.%20in%20the%20style%20of%20pulp%20fiction/350.webp", 400, 400, "#594836"], ["https://www.jonaso.de/artworks/VQGANCLIP/Movies/Big%20Lebowski/run-3/316.webp", 400, 400, "#96734D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Movies/Mad%20Max/Mad%20Max%20ferrari%20by%20Abimelec%20Arellano/run-1/0057.webp", 400, 400, "#A2886B"], ["https://www.jonaso.de/artworks/VQGANCLIP/Movies/Mad%20Max/Mad%20Max%20ferrari%20by%20Abimelec%20Arellano/run-2/100.webp", 400, 400, "#B4936C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Graffiti/banksy/350.webp", 400, 400, "#7D7557"], ["https://www.jonaso.de/artworks/VQGANCLIP/Skulls/Skull%20portrait%20by%20Maciej%20Drabik/0074.webp", 400, 400, "#6F6D56"], ["https://www.jonaso.de/artworks/VQGANCLIP/Skulls/Puking%20Skull/3%20Abstract%20skull%20puking%2C%20painting%20by%20Maciej%20Drabik%2C%20trending%20on%20artstation/650.webp", 400, 400, "#6C6153"], ["https://www.jonaso.de/artworks/VQGANCLIP/Skulls/Puking%20Skull/5%20-%20skull%20puking%2C%20painting%20by%20Maciej%20Drabik%2C%20trending%20on%20artstation/150.webp", 400, 400, "#837965"], ["https://www.jonaso.de/artworks/VQGANCLIP/Skulls/Puking%20Skull/7%20-%20a%20skull%20puking%20colors%2C%20painting%20by%20Maciej%20Drabik%2C%20trending%20on%20artstation/150.webp", 400, 400, "#7B8178"], ["https://www.jonaso.de/artworks/VQGANCLIP/Skulls/2/100.webp", 400, 400, "#556A62"], ["https://www.jonaso.de/artworks/VQGANCLIP/Skulls/1%20Abstract%20skull%20by%20Maciej%20Drabik%20trending%20on%20artstation/314.webp", 400, 400, "#8B8F80"], ["https://www.jonaso.de/artworks/VQGANCLIP/Cottage/Thomas%20Kinkade/2/100.webp", 400, 400, "#778A8F"], ["https://www.jonaso.de/artworks/VQGANCLIP/Cottage/Thomas%20Kinkade/1/150.webp", 400, 400, "#6D7F88"], ["https://www.jonaso.de/artworks/VQGANCLIP/Aliens/Third%20Eye/6/100.webp", 400, 400, "#A69782"], ["https://www.jonaso.de/artworks/VQGANCLIP/Cloud%20Assassin/2/300.webp", 400, 219, "#6E768A"], ["https://www.jonaso.de/artworks/VQGANCLIP/Cloud%20Assassin/4/100.webp", 400, 219, "#9D9296"], ["https://www.jonaso.de/artworks/VQGANCLIP/Human/Face/2/200.webp", 400, 400, "#AFA091"], ["https://www.jonaso.de/artworks/VQGANCLIP/Ghost%20in%20the%20Shell/2/4.webp", 400, 608, "#4C576C"], ["https://www.jonaso.de/artworks/VQGANCLIP/The%20Other%20Team/1/200.webp", 400, 533, "#978386"], ["https://www.jonaso.de/artworks/VQGANCLIP/Distracted%20World/3/125.webp", 400, 400, "#506683"], ["https://www.jonaso.de/artworks/VQGANCLIP/Distracted%20World/2/125.webp", 400, 400, "#6A758C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Distracted%20World/1/100.webp", 400, 400, "#6C7873"], ["https://www.jonaso.de/artworks/VQGANCLIP/China/Shamate/3/300.webp", 400, 296, "#5B635F"], ["https://www.jonaso.de/artworks/VQGANCLIP/Devil/Al%20Pacino/3/50.webp", 400, 514, "#AB6C4E"], ["https://www.jonaso.de/artworks/VQGANCLIP/Devil/Al%20Pacino/4/100.webp", 400, 514, "#A8664F"], ["https://www.jonaso.de/artworks/VQGANCLIP/Devil/Al%20Pacino/1/50.webp", 400, 225, "#AB5947"], ["https://www.jonaso.de/artworks/VQGANCLIP/Portraits/Thomas%20Nast/1/75.webp", 400, 384, "#8D8773"], ["https://www.jonaso.de/artworks/VQGANCLIP/Portraits/Alexa%20Meade/4/125.webp", 400, 384, "#A78D74"], ["https://www.jonaso.de/artworks/VQGANCLIP/Portraits/Alexa%20Meade/1/100.webp", 400, 384, "#708C90"], ["https://www.jonaso.de/artworks/VQGANCLIP/Portraits/5/50.webp", 400, 384, "#62837A"], ["https://www.jonaso.de/artworks/VQGANCLIP/Portraits/1/0020.webp", 400, 384, "#9E8D8D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Helmet/3/150.webp", 400, 416, "#677A86"], ["https://www.jonaso.de/artworks/VQGANCLIP/Buildings/Brutalist%20Building/3/75.webp", 400, 400, "#717E6D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Buildings/Brutalist%20Building/2/100.webp", 400, 400, "#797E76"], ["https://www.jonaso.de/artworks/VQGANCLIP/Buildings/Brutalist%20Building/1/200.webp", 400, 400, "#737B6D"], ["https://www.jonaso.de/artworks/VQGANCLIP/abstract/redgreenorange/50.webp", 400, 400, "#685230"], ["https://www.jonaso.de/artworks/VQGANCLIP/Artificial%20Intelligence/AI%20Overlord/7/325.webp", 400, 400, "#7290A4"], ["https://www.jonaso.de/artworks/VQGANCLIP/Artificial%20Intelligence/AI%20Overlord/2/75.webp", 400, 400, "#6B83A0"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Eye/2/375.webp", 400, 400, "#66665B"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Eye/1/650.webp", 400, 400, "#8A786D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Well/1/realesrgan/1125_out.webp", 400, 400, "#817965"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Ring%20of%20Fire/Fire%20Ring/1/200.webp", 400, 400, "#645E56"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Ring%20of%20Fire/Fire%20Ring%20%28animated%29/2/4.webp", 400, 400, "#6F5E54"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Ring%20of%20Fire/Fire%20Ring%20%28animated%29/6/49.webp", 400, 400, "#8A938A"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Ring%20of%20Fire/Fire%20Ring%20%28animated%29/4/9.webp", 400, 400, "#EAE9E8"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Ring%20of%20Fire/Fire%20Ring%20%28animated%29/1/2.webp", 400, 400, "#7E6764"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Ring%20of%20Fire/Fire%20Ring%20%28animated%29/1/1.webp", 400, 400, "#9B856F"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Parthenon/4/100.webp", 400, 528, "#836E65"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/9/125.webp", 400, 254, "#796962"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/7/75.webp", 400, 254, "#A1916F"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/3/50.webp", 400, 254, "#745E57"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/2/100.webp", 400, 254, "#816B67"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/6/75.webp", 400, 254, "#9E8465"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/5/50.webp", 400, 254, "#8C7855"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/8/50.webp", 400, 254, "#7C6861"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/4/75.webp", 400, 254, "#878A76"], ["https://www.jonaso.de/artworks/VQGANCLIP/Illuminati/Burning%20Cross/3/50.webp", 400, 466, "#645649"], ["https://www.jonaso.de/artworks/VQGANCLIP/Illuminati/Burning%20Cross/2/125.webp", 400, 466, "#4F402E"], ["https://www.jonaso.de/artworks/VQGANCLIP/Illuminati/Burning%20Cross/1/150.webp", 400, 400, "#6A5336"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Self-portrait/run-8/50.webp", 400, 400, "#B8A291"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Self-portrait/run-5/350.webp", 400, 533, "#AA9D8B"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Gate%20to%20hell/run-9/200.webp", 400, 400, "#7E684C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Gate%20to%20hell/run-15/500.webp", 400, 400, "#605742"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Gate%20to%20hell/run-14/200.webp", 400, 400, "#866B4D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Gate%20to%20hell/run-10/250.webp", 400, 400, "#6F6148"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Hellish%20Inferno/run-4/300.webp", 400, 516, "#755942"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Hellish%20Inferno/run-2/600.webp", 400, 516, "#6B4935"], ["https://www.jonaso.de/artworks/VQGANCLIP/Isometric/3/100.webp", 400, 400, "#7C9489"], ["https://www.jonaso.de/artworks/VQGANCLIP/Isometric/2/100.webp", 400, 400, "#7A7773"], ["https://www.jonaso.de/artworks/VQGANCLIP/Isometric/1/150.webp", 400, 400, "#94A69A"], ["https://www.jonaso.de/artworks/VQGANCLIP/Academia/Tenured%20Professor/1/400.webp", 400, 400, "#956856"], ["https://www.jonaso.de/artworks/VQGANCLIP/King/Emperor%20has%20no%20clothes/2/325.webp", 400, 322, "#716B74"], ["https://www.jonaso.de/artworks/VQGANCLIP/King/Emperor%20has%20no%20clothes/1/225.webp", 400, 322, "#807B68"], ["https://www.jonaso.de/artworks/VQGANCLIP/Women/Beach/1/150.webp", 400, 400, "#B4BCA8"], ["https://www.jonaso.de/artworks/VQGANCLIP/Women/Pensive%20Woman/200.webp", 400, 400, "#98754C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Disco/3/RealESRGAN/250.webp", 400, 266, "#6B5656"], ["https://www.jonaso.de/artworks/VQGANCLIP/Disco/1/RealESRGAN/175.webp", 400, 266, "#76605A"], ["https://www.jonaso.de/artworks/VQGANCLIP/People/Human%20Starving/2/450.webp", 400, 400, "#7A7766"], ["https://www.jonaso.de/artworks/VQGANCLIP/People/Mark%20Zuckerberg/2/325.webp", 400, 216, "#7A7D78"], ["https://www.jonaso.de/artworks/VQGANCLIP/People/Human%20with%20Horse%20Head/2/25.webp", 400, 342, "#90836C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Coconut/Coconut%20Love/1/200.webp", 400, 400, "#698A74"], ["https://www.jonaso.de/artworks/VQGANCLIP/Shapes/Geometric%20Abstraction/1/350.webp", 400, 400, "#BAB6B7"], ["https://www.jonaso.de/artworks/VQGANCLIP/Crime/The%20One%20Who%20Knocks/5/350.webp", 400, 520, "#616554"], ["https://www.jonaso.de/artworks/VQGANCLIP/War/Soldier/1/75.webp", 400, 466, "#695534"], ["https://www.jonaso.de/artworks/VQGANCLIP/War/War%20Memorial/3/200.webp", 400, 400, "#66655F"], ["https://www.jonaso.de/artworks/VQGANCLIP/War/War%20Memorial/2/100.webp", 400, 400, "#7A716A"], ["https://www.jonaso.de/artworks/VQGANCLIP/War/War%20Memorial/6/125.webp", 400, 400, "#7A807E"], ["https://www.jonaso.de/artworks/VQGANCLIP/Cthulhu/ctulhu%20swallows%20earth%20by%20greg%20rutkowski%20%28target%20images%29/run%204/150.webp", 400, 400, "#435B5D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Cthulhu/ctulhu%20swallows%20earth%20by%20greg%20rutkowski%20%28target%20images%29/run%207/300.webp", 400, 400, "#435152"]], "next": false} \ No newline at end of file diff --git a/public/artworks/json/webp-VQGANCLIP.json b/public/artworks/json/webp-VQGANCLIP.json new file mode 100644 index 0000000000..31eaecc425 --- /dev/null +++ b/public/artworks/json/webp-VQGANCLIP.json @@ -0,0 +1 @@ +[["https://www.jonaso.de/artworks/VQGANCLIP/Trees/Tree%20of%20Life/1/175.webp", 400, 400, "#797467"], ["https://www.jonaso.de/artworks/VQGANCLIP/Trees/Tree%20Seasons/Autumn/50.webp", 400, 400, "#8D7E7B"], ["https://www.jonaso.de/artworks/VQGANCLIP/Trees/Tree%20Seasons/Winter/50.webp", 400, 400, "#848085"], ["https://www.jonaso.de/artworks/VQGANCLIP/Trees/Trees%20in%20the%20Wind/3/100.webp", 400, 400, "#8D8D81"], ["https://www.jonaso.de/artworks/VQGANCLIP/Trees/Trees%20in%20the%20Wind/2/100.webp", 400, 400, "#938C7C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Trees/Trees%20in%20the%20Wind/1/75.webp", 400, 400, "#8F9181"], ["https://www.jonaso.de/artworks/VQGANCLIP/Crystals/Crystal%20of%20Life/7/650.webp", 400, 400, "#8B8381"], ["https://www.jonaso.de/artworks/VQGANCLIP/Crystals/Crystal%20of%20Life/3/106.webp", 400, 400, "#79675C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Crystals/Crystal%20of%20Life/1/175.webp", 400, 400, "#6B6557"], ["https://www.jonaso.de/artworks/VQGANCLIP/Movies/Human%20Centipede/2/human-centipede.webp", 400, 400, "#BBBBAB"], ["https://www.jonaso.de/artworks/VQGANCLIP/Movies/American%20Beauty/1/0099.webp", 400, 400, "#A5503D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Movies/Pulp%20Fiction/the%20choice%20is%20yours%20%7C%20painting%20by%20A.%20K.%20in%20the%20style%20of%20pulp%20fiction/350.webp", 400, 400, "#594836"], ["https://www.jonaso.de/artworks/VQGANCLIP/Movies/Big%20Lebowski/run-3/316.webp", 400, 400, "#96734D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Movies/Mad%20Max/Mad%20Max%20ferrari%20by%20Abimelec%20Arellano/run-1/0057.webp", 400, 400, "#A2886B"], ["https://www.jonaso.de/artworks/VQGANCLIP/Movies/Mad%20Max/Mad%20Max%20ferrari%20by%20Abimelec%20Arellano/run-2/100.webp", 400, 400, "#B4936C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Graffiti/banksy/350.webp", 400, 400, "#7D7557"], ["https://www.jonaso.de/artworks/VQGANCLIP/Skulls/Skull%20portrait%20by%20Maciej%20Drabik/0074.webp", 400, 400, "#6F6D56"], ["https://www.jonaso.de/artworks/VQGANCLIP/Skulls/Puking%20Skull/3%20Abstract%20skull%20puking%2C%20painting%20by%20Maciej%20Drabik%2C%20trending%20on%20artstation/650.webp", 400, 400, "#6C6153"], ["https://www.jonaso.de/artworks/VQGANCLIP/Skulls/Puking%20Skull/5%20-%20skull%20puking%2C%20painting%20by%20Maciej%20Drabik%2C%20trending%20on%20artstation/150.webp", 400, 400, "#837965"], ["https://www.jonaso.de/artworks/VQGANCLIP/Skulls/Puking%20Skull/7%20-%20a%20skull%20puking%20colors%2C%20painting%20by%20Maciej%20Drabik%2C%20trending%20on%20artstation/150.webp", 400, 400, "#7B8178"], ["https://www.jonaso.de/artworks/VQGANCLIP/Skulls/2/100.webp", 400, 400, "#556A62"], ["https://www.jonaso.de/artworks/VQGANCLIP/Skulls/1%20Abstract%20skull%20by%20Maciej%20Drabik%20trending%20on%20artstation/314.webp", 400, 400, "#8B8F80"], ["https://www.jonaso.de/artworks/VQGANCLIP/Cottage/Thomas%20Kinkade/2/100.webp", 400, 400, "#778A8F"], ["https://www.jonaso.de/artworks/VQGANCLIP/Cottage/Thomas%20Kinkade/1/150.webp", 400, 400, "#6D7F88"], ["https://www.jonaso.de/artworks/VQGANCLIP/Aliens/Third%20Eye/6/100.webp", 400, 400, "#A69782"], ["https://www.jonaso.de/artworks/VQGANCLIP/Cloud%20Assassin/2/300.webp", 400, 219, "#6E768A"], ["https://www.jonaso.de/artworks/VQGANCLIP/Cloud%20Assassin/4/100.webp", 400, 219, "#9D9296"], ["https://www.jonaso.de/artworks/VQGANCLIP/Human/Face/2/200.webp", 400, 400, "#AFA091"], ["https://www.jonaso.de/artworks/VQGANCLIP/Ghost%20in%20the%20Shell/2/4.webp", 400, 608, "#4C576C"], ["https://www.jonaso.de/artworks/VQGANCLIP/The%20Other%20Team/1/200.webp", 400, 533, "#978386"], ["https://www.jonaso.de/artworks/VQGANCLIP/Distracted%20World/3/125.webp", 400, 400, "#506683"], ["https://www.jonaso.de/artworks/VQGANCLIP/Distracted%20World/2/125.webp", 400, 400, "#6A758C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Distracted%20World/1/100.webp", 400, 400, "#6C7873"], ["https://www.jonaso.de/artworks/VQGANCLIP/China/Shamate/3/300.webp", 400, 296, "#5B635F"], ["https://www.jonaso.de/artworks/VQGANCLIP/Devil/Al%20Pacino/3/50.webp", 400, 514, "#AB6C4E"], ["https://www.jonaso.de/artworks/VQGANCLIP/Devil/Al%20Pacino/4/100.webp", 400, 514, "#A8664F"], ["https://www.jonaso.de/artworks/VQGANCLIP/Devil/Al%20Pacino/1/50.webp", 400, 225, "#AB5947"], ["https://www.jonaso.de/artworks/VQGANCLIP/Portraits/Thomas%20Nast/1/75.webp", 400, 384, "#8D8773"], ["https://www.jonaso.de/artworks/VQGANCLIP/Portraits/Alexa%20Meade/4/125.webp", 400, 384, "#A78D74"], ["https://www.jonaso.de/artworks/VQGANCLIP/Portraits/Alexa%20Meade/1/100.webp", 400, 384, "#708C90"], ["https://www.jonaso.de/artworks/VQGANCLIP/Portraits/5/50.webp", 400, 384, "#62837A"], ["https://www.jonaso.de/artworks/VQGANCLIP/Portraits/1/0020.webp", 400, 384, "#9E8D8D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Helmet/3/150.webp", 400, 416, "#677A86"], ["https://www.jonaso.de/artworks/VQGANCLIP/Buildings/Brutalist%20Building/3/75.webp", 400, 400, "#717E6D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Buildings/Brutalist%20Building/2/100.webp", 400, 400, "#797E76"], ["https://www.jonaso.de/artworks/VQGANCLIP/Buildings/Brutalist%20Building/1/200.webp", 400, 400, "#737B6D"], ["https://www.jonaso.de/artworks/VQGANCLIP/abstract/redgreenorange/50.webp", 400, 400, "#685230"], ["https://www.jonaso.de/artworks/VQGANCLIP/Artificial%20Intelligence/AI%20Overlord/7/325.webp", 400, 400, "#7290A4"], ["https://www.jonaso.de/artworks/VQGANCLIP/Artificial%20Intelligence/AI%20Overlord/2/75.webp", 400, 400, "#6B83A0"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Eye/2/375.webp", 400, 400, "#66665B"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Eye/1/650.webp", 400, 400, "#8A786D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Well/1/realesrgan/1125_out.webp", 400, 400, "#817965"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Ring%20of%20Fire/Fire%20Ring/1/200.webp", 400, 400, "#645E56"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Ring%20of%20Fire/Fire%20Ring%20%28animated%29/2/4.webp", 400, 400, "#6F5E54"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Ring%20of%20Fire/Fire%20Ring%20%28animated%29/6/49.webp", 400, 400, "#8A938A"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Ring%20of%20Fire/Fire%20Ring%20%28animated%29/4/9.webp", 400, 400, "#EAE9E8"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Ring%20of%20Fire/Fire%20Ring%20%28animated%29/1/2.webp", 400, 400, "#7E6764"], ["https://www.jonaso.de/artworks/VQGANCLIP/Rings/Ring%20of%20Fire/Fire%20Ring%20%28animated%29/1/1.webp", 400, 400, "#9B856F"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Parthenon/4/100.webp", 400, 528, "#836E65"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/9/125.webp", 400, 254, "#796962"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/7/75.webp", 400, 254, "#A1916F"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/3/50.webp", 400, 254, "#745E57"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/2/100.webp", 400, 254, "#816B67"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/6/75.webp", 400, 254, "#9E8465"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/5/50.webp", 400, 254, "#8C7855"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/8/50.webp", 400, 254, "#7C6861"], ["https://www.jonaso.de/artworks/VQGANCLIP/Greece/Athens/4/75.webp", 400, 254, "#878A76"], ["https://www.jonaso.de/artworks/VQGANCLIP/Illuminati/Burning%20Cross/3/50.webp", 400, 466, "#645649"], ["https://www.jonaso.de/artworks/VQGANCLIP/Illuminati/Burning%20Cross/2/125.webp", 400, 466, "#4F402E"], ["https://www.jonaso.de/artworks/VQGANCLIP/Illuminati/Burning%20Cross/1/150.webp", 400, 400, "#6A5336"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Self-portrait/run-8/50.webp", 400, 400, "#B8A291"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Self-portrait/run-5/350.webp", 400, 533, "#AA9D8B"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Gate%20to%20hell/run-9/200.webp", 400, 400, "#7E684C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Gate%20to%20hell/run-15/500.webp", 400, 400, "#605742"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Gate%20to%20hell/run-14/200.webp", 400, 400, "#866B4D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Gate%20to%20hell/run-10/250.webp", 400, 400, "#6F6148"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Hellish%20Inferno/run-4/300.webp", 400, 516, "#755942"], ["https://www.jonaso.de/artworks/VQGANCLIP/Francisco%20Goya/Hellish%20Inferno/run-2/600.webp", 400, 516, "#6B4935"], ["https://www.jonaso.de/artworks/VQGANCLIP/Isometric/3/100.webp", 400, 400, "#7C9489"], ["https://www.jonaso.de/artworks/VQGANCLIP/Isometric/2/100.webp", 400, 400, "#7A7773"], ["https://www.jonaso.de/artworks/VQGANCLIP/Isometric/1/150.webp", 400, 400, "#94A69A"], ["https://www.jonaso.de/artworks/VQGANCLIP/Academia/Tenured%20Professor/1/400.webp", 400, 400, "#956856"], ["https://www.jonaso.de/artworks/VQGANCLIP/King/Emperor%20has%20no%20clothes/2/325.webp", 400, 322, "#716B74"], ["https://www.jonaso.de/artworks/VQGANCLIP/King/Emperor%20has%20no%20clothes/1/225.webp", 400, 322, "#807B68"], ["https://www.jonaso.de/artworks/VQGANCLIP/Women/Beach/1/150.webp", 400, 400, "#B4BCA8"], ["https://www.jonaso.de/artworks/VQGANCLIP/Women/Pensive%20Woman/200.webp", 400, 400, "#98754C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Disco/3/RealESRGAN/250.webp", 400, 266, "#6B5656"], ["https://www.jonaso.de/artworks/VQGANCLIP/Disco/1/RealESRGAN/175.webp", 400, 266, "#76605A"], ["https://www.jonaso.de/artworks/VQGANCLIP/People/Human%20Starving/2/450.webp", 400, 400, "#7A7766"], ["https://www.jonaso.de/artworks/VQGANCLIP/People/Mark%20Zuckerberg/2/325.webp", 400, 216, "#7A7D78"], ["https://www.jonaso.de/artworks/VQGANCLIP/People/Human%20with%20Horse%20Head/2/25.webp", 400, 342, "#90836C"], ["https://www.jonaso.de/artworks/VQGANCLIP/Coconut/Coconut%20Love/1/200.webp", 400, 400, "#698A74"], ["https://www.jonaso.de/artworks/VQGANCLIP/Shapes/Geometric%20Abstraction/1/350.webp", 400, 400, "#BAB6B7"], ["https://www.jonaso.de/artworks/VQGANCLIP/Crime/The%20One%20Who%20Knocks/5/350.webp", 400, 520, "#616554"], ["https://www.jonaso.de/artworks/VQGANCLIP/War/Soldier/1/75.webp", 400, 466, "#695534"], ["https://www.jonaso.de/artworks/VQGANCLIP/War/War%20Memorial/3/200.webp", 400, 400, "#66655F"], ["https://www.jonaso.de/artworks/VQGANCLIP/War/War%20Memorial/2/100.webp", 400, 400, "#7A716A"], ["https://www.jonaso.de/artworks/VQGANCLIP/War/War%20Memorial/6/125.webp", 400, 400, "#7A807E"], ["https://www.jonaso.de/artworks/VQGANCLIP/Cthulhu/ctulhu%20swallows%20earth%20by%20greg%20rutkowski%20%28target%20images%29/run%204/150.webp", 400, 400, "#435B5D"], ["https://www.jonaso.de/artworks/VQGANCLIP/Cthulhu/ctulhu%20swallows%20earth%20by%20greg%20rutkowski%20%28target%20images%29/run%207/300.webp", 400, 400, "#435152"]] \ No newline at end of file diff --git a/public/artworks/json/webp-dalle-2-0.json b/public/artworks/json/webp-dalle-2-0.json new file mode 100644 index 0000000000..d9653fb660 --- /dev/null +++ b/public/artworks/json/webp-dalle-2-0.json @@ -0,0 +1 @@ +{"total": 100, "items": [["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202023-04-28%2014.28.02.webp", 400, 400, "#DDD7D0"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202023-04-19%2017.11.35.webp", 400, 188, "#685D55"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202023-04-11%2016.52.56.webp", 400, 400, "#85785C"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202023-04-11%2016.52.10.webp", 400, 400, "#A17657"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202023-01-16%2013.38.43.webp", 400, 775, "#3C3938"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-11-22%2009.27.58.webp", 400, 400, "#604F45"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.34.47.webp", 400, 400, "#518D8C"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.34.22.webp", 400, 400, "#1E282D"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.33.54.webp", 400, 400, "#468E92"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.33.30.webp", 400, 400, "#607468"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.33.17.webp", 400, 400, "#247C97"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.32.48.webp", 400, 400, "#6090A1"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.25.45.webp", 400, 400, "#66645E"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.22.48.webp", 400, 400, "#8B7F6F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.22.43.webp", 400, 400, "#77686D"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-20%2016.12.41.webp", 400, 400, "#D5ABA7"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.56.57.webp", 400, 725, "#80705B"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.54.39.webp", 400, 400, "#594132"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.54.06.webp", 400, 400, "#857463"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.52.33.webp", 400, 400, "#656866"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.52.00.webp", 400, 400, "#6D6A5A"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.47.41.webp", 400, 400, "#464437"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.47.33.webp", 400, 400, "#231F18"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.28.28.webp", 400, 400, "#A57E61"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.28.04.webp", 400, 400, "#A08E8B"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.27.29.webp", 400, 400, "#7A686D"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.26.09.webp", 400, 400, "#A08E86"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.25.31.webp", 400, 400, "#9D938E"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.25.00.webp", 400, 400, "#9C979A"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.12.11.webp", 400, 400, "#9D9A92"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.10.57.webp", 400, 400, "#3F4A49"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.10.11.webp", 400, 400, "#5C7297"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2015.10.36.webp", 400, 400, "#E4CFC1"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2019.54.25.webp", 400, 400, "#917367"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2019.53.59.webp", 400, 400, "#704333"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2019.52.22.webp", 400, 400, "#7A5245"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2019.52.19.webp", 400, 400, "#8C7A6F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2018.26.18.webp", 400, 400, "#D19D9C"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2018.26.15.webp", 400, 400, "#E9B5B0"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2016.39.24.webp", 400, 400, "#45847F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2016.39.18.webp", 400, 400, "#618666"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2012.09.41.webp", 400, 400, "#928477"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2012.06.36.webp", 400, 400, "#A9916D"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2012.06.06.webp", 400, 400, "#8F7B48"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2012.05.32.webp", 400, 400, "#A29EA3"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-16%2016.16.37.webp", 400, 400, "#6E5F5D"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-16%2015.49.22.webp", 400, 400, "#896C58"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-14%2015.57.56.webp", 400, 400, "#6A5E4D"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-14%2015.57.49.webp", 400, 400, "#6F694C"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-13%2014.15.40.webp", 400, 400, "#999699"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-13%2012.31.48.webp", 400, 400, "#F4EEF0"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-13%2012.30.30.webp", 400, 400, "#F6F3DB"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-13%2012.29.53.webp", 400, 400, "#F0F0F0"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-13%2012.28.42.webp", 400, 400, "#F6F6F6"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-06%2014.45.45.webp", 400, 875, "#4B5053"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-06%2014.40.44.webp", 400, 400, "#4A5364"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-02%2012.03.20.webp", 400, 400, "#502D32"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-08-25%2013.29.06.webp", 400, 400, "#244355"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-08-24%2007.56.58.webp", 400, 400, "#A98F88"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-08-23%2015.41.53.webp", 400, 400, "#705231"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2013.35.12.webp", 400, 400, "#504D59"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2013.33.42.webp", 400, 400, "#3C4851"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2013.32.58.webp", 400, 400, "#7A604F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2013.30.21.webp", 400, 400, "#6B3D3E"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2013.28.56.webp", 400, 400, "#595862"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2012.31.59.webp", 400, 400, "#B4CFC9"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2011.56.40.webp", 400, 400, "#807569"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2009.52.07.webp", 400, 400, "#957662"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2009.49.24.webp", 400, 400, "#5E4E3A"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2018.50.06.webp", 400, 400, "#D8DBD1"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2013.54.58.webp", 400, 400, "#998165"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2013.53.41.webp", 400, 400, "#68665B"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2013.52.57.webp", 400, 400, "#B39C77"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2013.52.52.webp", 400, 400, "#9A876E"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2013.47.27.webp", 400, 400, "#85A3AC"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2012.46.46.webp", 400, 400, "#321FD"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2012.46.05.webp", 400, 400, "#53594F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2012.45.30.webp", 400, 400, "#3E4341"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2012.44.52.webp", 400, 400, "#212528"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2012.44.14.webp", 400, 400, "#A3928A"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.09.03.webp", 400, 400, "#1C335E"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.09.01.webp", 400, 400, "#616C5F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.08.58.webp", 400, 400, "#484E43"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.08.32.webp", 400, 400, "#293F41"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.08.27.webp", 400, 400, "#4C5559"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.07.16.webp", 400, 400, "#9A784C"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.06.19.webp", 400, 400, "#665151"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.05.13.webp", 400, 400, "#8D8591"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.05.10.webp", 400, 400, "#66636F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2014.15.41.webp", 400, 400, "#5C7D60"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2014.12.14.webp", 400, 400, "#747365"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2013.33.21.webp", 400, 400, "#9E9189"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2013.32.15.webp", 400, 400, "#9D8D78"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2013.30.53.webp", 400, 400, "#9A9072"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2013.29.44.webp", 400, 400, "#545353"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2012.57.47.webp", 400, 400, "#3D342E"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2012.56.35.webp", 400, 400, "#8C8B8B"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2012.56.29.webp", 400, 400, "#D7D7D7"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2012.50.36.webp", 400, 400, "#313023"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-26%2018.35.09.webp", 400, 400, "#4C605F"]], "next": false} \ No newline at end of file diff --git a/public/artworks/json/webp-dalle-2.json b/public/artworks/json/webp-dalle-2.json new file mode 100644 index 0000000000..7197e4a4e2 --- /dev/null +++ b/public/artworks/json/webp-dalle-2.json @@ -0,0 +1 @@ +[["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202023-04-28%2014.28.02.webp", 400, 400, "#DDD7D0"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202023-04-19%2017.11.35.webp", 400, 188, "#685D55"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202023-04-11%2016.52.56.webp", 400, 400, "#85785C"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202023-04-11%2016.52.10.webp", 400, 400, "#A17657"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202023-01-16%2013.38.43.webp", 400, 775, "#3C3938"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-11-22%2009.27.58.webp", 400, 400, "#604F45"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.34.47.webp", 400, 400, "#518D8C"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.34.22.webp", 400, 400, "#1E282D"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.33.54.webp", 400, 400, "#468E92"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.33.30.webp", 400, 400, "#607468"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.33.17.webp", 400, 400, "#247C97"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.32.48.webp", 400, 400, "#6090A1"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.25.45.webp", 400, 400, "#66645E"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.22.48.webp", 400, 400, "#8B7F6F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-29%2013.22.43.webp", 400, 400, "#77686D"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-20%2016.12.41.webp", 400, 400, "#D5ABA7"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.56.57.webp", 400, 725, "#80705B"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.54.39.webp", 400, 400, "#594132"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.54.06.webp", 400, 400, "#857463"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.52.33.webp", 400, 400, "#656866"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.52.00.webp", 400, 400, "#6D6A5A"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.47.41.webp", 400, 400, "#464437"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-19%2013.47.33.webp", 400, 400, "#231F18"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.28.28.webp", 400, 400, "#A57E61"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.28.04.webp", 400, 400, "#A08E8B"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.27.29.webp", 400, 400, "#7A686D"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.26.09.webp", 400, 400, "#A08E86"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.25.31.webp", 400, 400, "#9D938E"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.25.00.webp", 400, 400, "#9C979A"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.12.11.webp", 400, 400, "#9D9A92"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.10.57.webp", 400, 400, "#3F4A49"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2017.10.11.webp", 400, 400, "#5C7297"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-18%2015.10.36.webp", 400, 400, "#E4CFC1"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2019.54.25.webp", 400, 400, "#917367"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2019.53.59.webp", 400, 400, "#704333"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2019.52.22.webp", 400, 400, "#7A5245"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2019.52.19.webp", 400, 400, "#8C7A6F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2018.26.18.webp", 400, 400, "#D19D9C"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2018.26.15.webp", 400, 400, "#E9B5B0"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2016.39.24.webp", 400, 400, "#45847F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2016.39.18.webp", 400, 400, "#618666"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2012.09.41.webp", 400, 400, "#928477"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2012.06.36.webp", 400, 400, "#A9916D"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2012.06.06.webp", 400, 400, "#8F7B48"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-17%2012.05.32.webp", 400, 400, "#A29EA3"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-16%2016.16.37.webp", 400, 400, "#6E5F5D"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-16%2015.49.22.webp", 400, 400, "#896C58"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-14%2015.57.56.webp", 400, 400, "#6A5E4D"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-14%2015.57.49.webp", 400, 400, "#6F694C"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-13%2014.15.40.webp", 400, 400, "#999699"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-13%2012.31.48.webp", 400, 400, "#F4EEF0"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-13%2012.30.30.webp", 400, 400, "#F6F3DB"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-13%2012.29.53.webp", 400, 400, "#F0F0F0"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-13%2012.28.42.webp", 400, 400, "#F6F6F6"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-06%2014.45.45.webp", 400, 875, "#4B5053"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-06%2014.40.44.webp", 400, 400, "#4A5364"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-10-02%2012.03.20.webp", 400, 400, "#502D32"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-08-25%2013.29.06.webp", 400, 400, "#244355"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-08-24%2007.56.58.webp", 400, 400, "#A98F88"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-08-23%2015.41.53.webp", 400, 400, "#705231"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2013.35.12.webp", 400, 400, "#504D59"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2013.33.42.webp", 400, 400, "#3C4851"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2013.32.58.webp", 400, 400, "#7A604F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2013.30.21.webp", 400, 400, "#6B3D3E"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2013.28.56.webp", 400, 400, "#595862"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2012.31.59.webp", 400, 400, "#B4CFC9"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2011.56.40.webp", 400, 400, "#807569"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2009.52.07.webp", 400, 400, "#957662"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-29%2009.49.24.webp", 400, 400, "#5E4E3A"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2018.50.06.webp", 400, 400, "#D8DBD1"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2013.54.58.webp", 400, 400, "#998165"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2013.53.41.webp", 400, 400, "#68665B"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2013.52.57.webp", 400, 400, "#B39C77"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2013.52.52.webp", 400, 400, "#9A876E"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2013.47.27.webp", 400, 400, "#85A3AC"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2012.46.46.webp", 400, 400, "#321FD"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2012.46.05.webp", 400, 400, "#53594F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2012.45.30.webp", 400, 400, "#3E4341"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2012.44.52.webp", 400, 400, "#212528"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2012.44.14.webp", 400, 400, "#A3928A"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.09.03.webp", 400, 400, "#1C335E"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.09.01.webp", 400, 400, "#616C5F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.08.58.webp", 400, 400, "#484E43"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.08.32.webp", 400, 400, "#293F41"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.08.27.webp", 400, 400, "#4C5559"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.07.16.webp", 400, 400, "#9A784C"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.06.19.webp", 400, 400, "#665151"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.05.13.webp", 400, 400, "#8D8591"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-28%2010.05.10.webp", 400, 400, "#66636F"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2014.15.41.webp", 400, 400, "#5C7D60"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2014.12.14.webp", 400, 400, "#747365"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2013.33.21.webp", 400, 400, "#9E9189"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2013.32.15.webp", 400, 400, "#9D8D78"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2013.30.53.webp", 400, 400, "#9A9072"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2013.29.44.webp", 400, 400, "#545353"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2012.57.47.webp", 400, 400, "#3D342E"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2012.56.35.webp", 400, 400, "#8C8B8B"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2012.56.29.webp", 400, 400, "#D7D7D7"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-27%2012.50.36.webp", 400, 400, "#313023"], ["https://www.jonaso.de/artworks/dalle-2/DALL%C2%B7E%202022-07-26%2018.35.09.webp", 400, 400, "#4C605F"]] \ No newline at end of file diff --git a/public/artworks/json/webp-latent-diffusion-0.json b/public/artworks/json/webp-latent-diffusion-0.json new file mode 100644 index 0000000000..e95dcec305 --- /dev/null +++ b/public/artworks/json/webp-latent-diffusion-0.json @@ -0,0 +1 @@ +{"total": 20, "items": [["https://www.jonaso.de/artworks/latent-diffusion/s-0000.webp", 400, 400, "#898782"], ["https://www.jonaso.de/artworks/latent-diffusion/g-0005.webp", 400, 400, "#919192"], ["https://www.jonaso.de/artworks/latent-diffusion/FTq93p6XEAAg5yk.webp", 400, 400, "#996E5D"], ["https://www.jonaso.de/artworks/latent-diffusion/f-0006.webp", 400, 400, "#8999AA"], ["https://www.jonaso.de/artworks/latent-diffusion/1-0000.webp", 400, 400, "#9EA3AB"], ["https://www.jonaso.de/artworks/latent-diffusion/FT_RgFkXsAABnvL.webp", 400, 400, "#826C60"], ["https://www.jonaso.de/artworks/latent-diffusion/f-0003.webp", 400, 400, "#97A9B1"], ["https://www.jonaso.de/artworks/latent-diffusion/u-0001.webp", 400, 400, "#B69338"], ["https://www.jonaso.de/artworks/latent-diffusion/1-0005.webp", 400, 400, "#9DA1AA"], ["https://www.jonaso.de/artworks/latent-diffusion/n-0004.webp", 400, 400, "#95977D"], ["https://www.jonaso.de/artworks/latent-diffusion/1-0009.webp", 400, 400, "#5A5A5D"], ["https://www.jonaso.de/artworks/latent-diffusion/FTq8zZiXwAAgbAd.webp", 400, 400, "#675A58"], ["https://www.jonaso.de/artworks/latent-diffusion/1-0001.webp", 400, 400, "#8894A0"], ["https://www.jonaso.de/artworks/latent-diffusion/1-0002.webp", 400, 400, "#828284"], ["https://www.jonaso.de/artworks/latent-diffusion/g-0008.webp", 400, 400, "#9EA4A7"], ["https://www.jonaso.de/artworks/latent-diffusion/s-0002.webp", 400, 400, "#9C9182"], ["https://www.jonaso.de/artworks/latent-diffusion/FTmnpmRWQAAze_O.webp", 400, 400, "#76565E"], ["https://www.jonaso.de/artworks/latent-diffusion/f-0008.webp", 400, 400, "#9990A3"], ["https://www.jonaso.de/artworks/latent-diffusion/f-0009.webp", 400, 400, "#9C9AAC"], ["https://www.jonaso.de/artworks/latent-diffusion/g-0007.webp", 400, 400, "#B1B1B1"]], "next": false} \ No newline at end of file diff --git a/public/artworks/json/webp-latent-diffusion.json b/public/artworks/json/webp-latent-diffusion.json new file mode 100644 index 0000000000..f3c75ebed9 --- /dev/null +++ b/public/artworks/json/webp-latent-diffusion.json @@ -0,0 +1 @@ +[["https://www.jonaso.de/artworks/latent-diffusion/s-0000.webp", 400, 400, "#898782"], ["https://www.jonaso.de/artworks/latent-diffusion/g-0005.webp", 400, 400, "#919192"], ["https://www.jonaso.de/artworks/latent-diffusion/FTq93p6XEAAg5yk.webp", 400, 400, "#996E5D"], ["https://www.jonaso.de/artworks/latent-diffusion/f-0006.webp", 400, 400, "#8999AA"], ["https://www.jonaso.de/artworks/latent-diffusion/1-0000.webp", 400, 400, "#9EA3AB"], ["https://www.jonaso.de/artworks/latent-diffusion/FT_RgFkXsAABnvL.webp", 400, 400, "#826C60"], ["https://www.jonaso.de/artworks/latent-diffusion/f-0003.webp", 400, 400, "#97A9B1"], ["https://www.jonaso.de/artworks/latent-diffusion/u-0001.webp", 400, 400, "#B69338"], ["https://www.jonaso.de/artworks/latent-diffusion/1-0005.webp", 400, 400, "#9DA1AA"], ["https://www.jonaso.de/artworks/latent-diffusion/n-0004.webp", 400, 400, "#95977D"], ["https://www.jonaso.de/artworks/latent-diffusion/1-0009.webp", 400, 400, "#5A5A5D"], ["https://www.jonaso.de/artworks/latent-diffusion/FTq8zZiXwAAgbAd.webp", 400, 400, "#675A58"], ["https://www.jonaso.de/artworks/latent-diffusion/1-0001.webp", 400, 400, "#8894A0"], ["https://www.jonaso.de/artworks/latent-diffusion/1-0002.webp", 400, 400, "#828284"], ["https://www.jonaso.de/artworks/latent-diffusion/g-0008.webp", 400, 400, "#9EA4A7"], ["https://www.jonaso.de/artworks/latent-diffusion/s-0002.webp", 400, 400, "#9C9182"], ["https://www.jonaso.de/artworks/latent-diffusion/FTmnpmRWQAAze_O.webp", 400, 400, "#76565E"], ["https://www.jonaso.de/artworks/latent-diffusion/f-0008.webp", 400, 400, "#9990A3"], ["https://www.jonaso.de/artworks/latent-diffusion/f-0009.webp", 400, 400, "#9C9AAC"], ["https://www.jonaso.de/artworks/latent-diffusion/g-0007.webp", 400, 400, "#B1B1B1"]] \ No newline at end of file diff --git a/public/artworks/json/webp-latest-0.json b/public/artworks/json/webp-latest-0.json new file mode 100644 index 0000000000..311ec1165d --- /dev/null +++ b/public/artworks/json/webp-latest-0.json @@ -0,0 +1 @@ +{"total": 49, "items": [["https://www.jonaso.de/artworks/midjourney/f94ac536-fecf-4d69-ba47-ddbc23a2b903.webp", 400, 400, "#3F352A"], ["https://www.jonaso.de/artworks/midjourney/1ed4137e-24b7-46a2-bfd0-951ea71e7fb5.webp", 400, 400, "#2D1613"], ["https://www.jonaso.de/artworks/midjourney/Robots/2fbecaa1-08aa-48a4-b5d6-0c9d0fefe7db.webp", 400, 600, "#6A5341"], ["https://www.jonaso.de/artworks/midjourney/Robots/c842a725-ec90-4058-941b-c75f1df22df3.webp", 400, 600, "#3C4749"], ["https://www.jonaso.de/artworks/midjourney/Robots/d41064e6-e78d-48cc-aaa5-3d103775b29e.webp", 400, 600, "#6B7670"], ["https://www.jonaso.de/artworks/midjourney/Robots/babd591a-f682-45ac-99cc-638cb92dcd25.webp", 400, 600, "#434745"], ["https://www.jonaso.de/artworks/midjourney/Robots/08e177eb-0218-4422-ab5d-33b85f4118a8.webp", 400, 600, "#544235"], ["https://www.jonaso.de/artworks/midjourney/Robots/1797b66b-7413-4cd6-8e3d-5d988cad80ef.webp", 400, 600, "#414A43"], ["https://www.jonaso.de/artworks/midjourney/87f36af3-af58-4de7-ba0c-7569518c7da8.webp", 400, 400, "#9E8B85"], ["https://www.jonaso.de/artworks/midjourney/0dc8c706-a626-4a3e-b0c1-3fed811c3229.webp", 400, 400, "#634436"], ["https://www.jonaso.de/artworks/midjourney/5517b05c-41ae-4e5f-8de2-6eb77ec4358a.webp", 400, 400, "#969360"], ["https://www.jonaso.de/artworks/midjourney/820d33a8-33c4-4712-aa2e-4fb241e9f82f.webp", 400, 400, "#82716B"], ["https://www.jonaso.de/artworks/midjourney/7360861c-66ef-4d4e-8b26-48f88595cd51.webp", 400, 400, "#74786B"], ["https://www.jonaso.de/artworks/midjourney/181af38a-ebc2-4be6-bdf4-da632d3568f8.webp", 400, 400, "#8F8C6A"], ["https://www.jonaso.de/artworks/midjourney/59b6f3bf-b97c-4992-a85f-a2d9815a312f.webp", 400, 400, "#716B53"], ["https://www.jonaso.de/artworks/midjourney/c368ca23-65e4-49aa-bad0-8f89098b22ce.webp", 400, 400, "#775F51"], ["https://www.jonaso.de/artworks/midjourney/000de06a-5704-4273-ae6e-03c30587ed1e.webp", 400, 400, "#75695B"], ["https://www.jonaso.de/artworks/midjourney/3444f74b-d506-48c3-bae4-8a71df687c41.webp", 400, 400, "#3E3C3C"], ["https://www.jonaso.de/artworks/midjourney/3e60580b-9d20-47f8-a705-e45ef2e8cb64.webp", 400, 400, "#3F2F26"], ["https://www.jonaso.de/artworks/midjourney/People/2f31bca8-f423-4bba-bcca-8b053b11013c.webp", 400, 400, "#928481"], ["https://www.jonaso.de/artworks/midjourney/People/47424164-87b9-4d23-b214-d9d40c067fe0.webp", 400, 400, "#714B42"], ["https://www.jonaso.de/artworks/midjourney/45e489d4-e1b6-4bb8-9386-54a5169e7886.webp", 400, 400, "#736C62"], ["https://www.jonaso.de/artworks/midjourney/People/e6f32b5c-e2c2-401b-834b-4edc45dfb280.webp", 400, 400, "#656354"], ["https://www.jonaso.de/artworks/midjourney/People/22cad2ba-49eb-4bcb-be55-fb14dbfa7e7e.webp", 400, 400, "#8F6E5A"], ["https://www.jonaso.de/artworks/midjourney/People/d86db049-b1ee-4e81-9bd2-5a1f43491e3d.webp", 400, 400, "#6B6B5D"], ["https://www.jonaso.de/artworks/midjourney/cc8baea8-2f24-43dd-8b6f-9b1c7f4add6c.webp", 400, 400, "#423521"], ["https://www.jonaso.de/artworks/midjourney/08f7ed7f-6885-431b-90b7-025f2bf43a0f.webp", 400, 400, "#7B5E4D"], ["https://www.jonaso.de/artworks/midjourney/eb494bc3-8c6e-46fc-8ea1-437762d8bc95.webp", 400, 400, "#7C736B"], ["https://www.jonaso.de/artworks/midjourney/8f85cffd-3ee1-461c-a05d-863ffa10a557.webp", 400, 400, "#422A24"], ["https://www.jonaso.de/artworks/midjourney/People/eecd756a-f145-4f8c-b1b5-bb42e01189e3.webp", 400, 400, "#7E6664"], ["https://www.jonaso.de/artworks/midjourney/e2353dd3-1715-473e-9ac7-ce9d18a9a6c4.webp", 400, 400, "#4B3F37"], ["https://www.jonaso.de/artworks/midjourney/43565a9d-a195-43da-9dd2-0e10548355b1.webp", 400, 400, "#626055"], ["https://www.jonaso.de/artworks/midjourney/4ddf2647-b8e5-4622-9567-76ffec96476d.webp", 400, 400, "#54493F"], ["https://www.jonaso.de/artworks/midjourney/People/9ed82638-7e2b-4941-b7d0-bf815c6d02bc.webp", 400, 400, "#7C665F"], ["https://www.jonaso.de/artworks/midjourney/People/ba70aa3e-dc7c-4a45-8d27-0031aafe10bf.webp", 400, 400, "#89726E"], ["https://www.jonaso.de/artworks/midjourney/People/f7ff06c6-cbba-4844-a3d9-f5dcd3805279.webp", 400, 400, "#7C5654"], ["https://www.jonaso.de/artworks/midjourney/People/846a8e6f-f1c2-4da2-8fc7-83928f8b528e.webp", 400, 400, "#4F442F"], ["https://www.jonaso.de/artworks/midjourney/dbb48026-1d76-4963-98c3-0c203c90ce9e.webp", 400, 400, "#7A816D"], ["https://www.jonaso.de/artworks/midjourney/6249f2d6-c021-4789-9a91-d645d666ee4d.webp", 400, 400, "#83522C"], ["https://www.jonaso.de/artworks/midjourney/People/85f43fd4-84e0-407e-8c10-9bf1f1235d37.webp", 400, 400, "#564539"], ["https://www.jonaso.de/artworks/midjourney/edb7aae7-526c-46b0-af8a-9738388230d0.webp", 400, 200, "#80644E"], ["https://www.jonaso.de/artworks/midjourney/34d9745e-63b9-46c5-ae96-5310e7c4aa0c.webp", 400, 200, "#766453"], ["https://www.jonaso.de/artworks/midjourney/c887f424-d240-4a54-995e-1aeefd9c9bc4.webp", 400, 200, "#8D754D"], ["https://www.jonaso.de/artworks/midjourney/d555cd8a-60ec-4790-8d6c-a783c9d36164.webp", 400, 266, "#655058"], ["https://www.jonaso.de/artworks/midjourney/d9f38aec-949b-4b29-bcde-b16f528c71bc.webp", 400, 400, "#7D746C"], ["https://www.jonaso.de/artworks/midjourney/12fb3edc-16da-4964-81af-9ffef3fc04f5.webp", 400, 400, "#90856B"], ["https://www.jonaso.de/artworks/midjourney/6572c4e1-ff35-4b80-8bc5-ff07240c0847.webp", 400, 400, "#795F52"], ["https://www.jonaso.de/artworks/midjourney/841436a9-a102-4367-b37e-32cc5d6c0c1c.webp", 400, 400, "#60554F"], ["https://www.jonaso.de/artworks/midjourney/6c6db89f-1d6a-4170-8142-4cfc267ada8f.webp", 400, 400, "#707D88"]], "next": false} \ No newline at end of file diff --git a/public/artworks/json/webp-latest.json b/public/artworks/json/webp-latest.json new file mode 100644 index 0000000000..d85fb43b2c --- /dev/null +++ b/public/artworks/json/webp-latest.json @@ -0,0 +1 @@ +[["https://www.jonaso.de/artworks/midjourney/f94ac536-fecf-4d69-ba47-ddbc23a2b903.webp", 400, 400, "#3F352A"], ["https://www.jonaso.de/artworks/midjourney/1ed4137e-24b7-46a2-bfd0-951ea71e7fb5.webp", 400, 400, "#2D1613"], ["https://www.jonaso.de/artworks/midjourney/Robots/2fbecaa1-08aa-48a4-b5d6-0c9d0fefe7db.webp", 400, 600, "#6A5341"], ["https://www.jonaso.de/artworks/midjourney/Robots/c842a725-ec90-4058-941b-c75f1df22df3.webp", 400, 600, "#3C4749"], ["https://www.jonaso.de/artworks/midjourney/Robots/d41064e6-e78d-48cc-aaa5-3d103775b29e.webp", 400, 600, "#6B7670"], ["https://www.jonaso.de/artworks/midjourney/Robots/babd591a-f682-45ac-99cc-638cb92dcd25.webp", 400, 600, "#434745"], ["https://www.jonaso.de/artworks/midjourney/Robots/08e177eb-0218-4422-ab5d-33b85f4118a8.webp", 400, 600, "#544235"], ["https://www.jonaso.de/artworks/midjourney/Robots/1797b66b-7413-4cd6-8e3d-5d988cad80ef.webp", 400, 600, "#414A43"], ["https://www.jonaso.de/artworks/midjourney/87f36af3-af58-4de7-ba0c-7569518c7da8.webp", 400, 400, "#9E8B85"], ["https://www.jonaso.de/artworks/midjourney/0dc8c706-a626-4a3e-b0c1-3fed811c3229.webp", 400, 400, "#634436"], ["https://www.jonaso.de/artworks/midjourney/5517b05c-41ae-4e5f-8de2-6eb77ec4358a.webp", 400, 400, "#969360"], ["https://www.jonaso.de/artworks/midjourney/820d33a8-33c4-4712-aa2e-4fb241e9f82f.webp", 400, 400, "#82716B"], ["https://www.jonaso.de/artworks/midjourney/7360861c-66ef-4d4e-8b26-48f88595cd51.webp", 400, 400, "#74786B"], ["https://www.jonaso.de/artworks/midjourney/181af38a-ebc2-4be6-bdf4-da632d3568f8.webp", 400, 400, "#8F8C6A"], ["https://www.jonaso.de/artworks/midjourney/59b6f3bf-b97c-4992-a85f-a2d9815a312f.webp", 400, 400, "#716B53"], ["https://www.jonaso.de/artworks/midjourney/c368ca23-65e4-49aa-bad0-8f89098b22ce.webp", 400, 400, "#775F51"], ["https://www.jonaso.de/artworks/midjourney/000de06a-5704-4273-ae6e-03c30587ed1e.webp", 400, 400, "#75695B"], ["https://www.jonaso.de/artworks/midjourney/3444f74b-d506-48c3-bae4-8a71df687c41.webp", 400, 400, "#3E3C3C"], ["https://www.jonaso.de/artworks/midjourney/3e60580b-9d20-47f8-a705-e45ef2e8cb64.webp", 400, 400, "#3F2F26"], ["https://www.jonaso.de/artworks/midjourney/People/2f31bca8-f423-4bba-bcca-8b053b11013c.webp", 400, 400, "#928481"], ["https://www.jonaso.de/artworks/midjourney/People/47424164-87b9-4d23-b214-d9d40c067fe0.webp", 400, 400, "#714B42"], ["https://www.jonaso.de/artworks/midjourney/45e489d4-e1b6-4bb8-9386-54a5169e7886.webp", 400, 400, "#736C62"], ["https://www.jonaso.de/artworks/midjourney/People/e6f32b5c-e2c2-401b-834b-4edc45dfb280.webp", 400, 400, "#656354"], ["https://www.jonaso.de/artworks/midjourney/People/22cad2ba-49eb-4bcb-be55-fb14dbfa7e7e.webp", 400, 400, "#8F6E5A"], ["https://www.jonaso.de/artworks/midjourney/People/d86db049-b1ee-4e81-9bd2-5a1f43491e3d.webp", 400, 400, "#6B6B5D"], ["https://www.jonaso.de/artworks/midjourney/cc8baea8-2f24-43dd-8b6f-9b1c7f4add6c.webp", 400, 400, "#423521"], ["https://www.jonaso.de/artworks/midjourney/08f7ed7f-6885-431b-90b7-025f2bf43a0f.webp", 400, 400, "#7B5E4D"], ["https://www.jonaso.de/artworks/midjourney/eb494bc3-8c6e-46fc-8ea1-437762d8bc95.webp", 400, 400, "#7C736B"], ["https://www.jonaso.de/artworks/midjourney/8f85cffd-3ee1-461c-a05d-863ffa10a557.webp", 400, 400, "#422A24"], ["https://www.jonaso.de/artworks/midjourney/People/eecd756a-f145-4f8c-b1b5-bb42e01189e3.webp", 400, 400, "#7E6664"], ["https://www.jonaso.de/artworks/midjourney/e2353dd3-1715-473e-9ac7-ce9d18a9a6c4.webp", 400, 400, "#4B3F37"], ["https://www.jonaso.de/artworks/midjourney/43565a9d-a195-43da-9dd2-0e10548355b1.webp", 400, 400, "#626055"], ["https://www.jonaso.de/artworks/midjourney/4ddf2647-b8e5-4622-9567-76ffec96476d.webp", 400, 400, "#54493F"], ["https://www.jonaso.de/artworks/midjourney/People/9ed82638-7e2b-4941-b7d0-bf815c6d02bc.webp", 400, 400, "#7C665F"], ["https://www.jonaso.de/artworks/midjourney/People/ba70aa3e-dc7c-4a45-8d27-0031aafe10bf.webp", 400, 400, "#89726E"], ["https://www.jonaso.de/artworks/midjourney/People/f7ff06c6-cbba-4844-a3d9-f5dcd3805279.webp", 400, 400, "#7C5654"], ["https://www.jonaso.de/artworks/midjourney/People/846a8e6f-f1c2-4da2-8fc7-83928f8b528e.webp", 400, 400, "#4F442F"], ["https://www.jonaso.de/artworks/midjourney/dbb48026-1d76-4963-98c3-0c203c90ce9e.webp", 400, 400, "#7A816D"], ["https://www.jonaso.de/artworks/midjourney/6249f2d6-c021-4789-9a91-d645d666ee4d.webp", 400, 400, "#83522C"], ["https://www.jonaso.de/artworks/midjourney/People/85f43fd4-84e0-407e-8c10-9bf1f1235d37.webp", 400, 400, "#564539"], ["https://www.jonaso.de/artworks/midjourney/edb7aae7-526c-46b0-af8a-9738388230d0.webp", 400, 200, "#80644E"], ["https://www.jonaso.de/artworks/midjourney/34d9745e-63b9-46c5-ae96-5310e7c4aa0c.webp", 400, 200, "#766453"], ["https://www.jonaso.de/artworks/midjourney/c887f424-d240-4a54-995e-1aeefd9c9bc4.webp", 400, 200, "#8D754D"], ["https://www.jonaso.de/artworks/midjourney/d555cd8a-60ec-4790-8d6c-a783c9d36164.webp", 400, 266, "#655058"], ["https://www.jonaso.de/artworks/midjourney/d9f38aec-949b-4b29-bcde-b16f528c71bc.webp", 400, 400, "#7D746C"], ["https://www.jonaso.de/artworks/midjourney/12fb3edc-16da-4964-81af-9ffef3fc04f5.webp", 400, 400, "#90856B"], ["https://www.jonaso.de/artworks/midjourney/6572c4e1-ff35-4b80-8bc5-ff07240c0847.webp", 400, 400, "#795F52"], ["https://www.jonaso.de/artworks/midjourney/841436a9-a102-4367-b37e-32cc5d6c0c1c.webp", 400, 400, "#60554F"], ["https://www.jonaso.de/artworks/midjourney/6c6db89f-1d6a-4170-8142-4cfc267ada8f.webp", 400, 400, "#707D88"]] \ No newline at end of file diff --git a/public/artworks/json/webp-midjourney-0.json b/public/artworks/json/webp-midjourney-0.json new file mode 100644 index 0000000000..ebc5eed7c0 --- /dev/null +++ b/public/artworks/json/webp-midjourney-0.json @@ -0,0 +1 @@ +{"total": 100, "items": [["https://www.jonaso.de/artworks/midjourney/f94ac536-fecf-4d69-ba47-ddbc23a2b903.webp", 400, 400, "#3F352A"], ["https://www.jonaso.de/artworks/midjourney/1ed4137e-24b7-46a2-bfd0-951ea71e7fb5.webp", 400, 400, "#2D1613"], ["https://www.jonaso.de/artworks/midjourney/Robots/2fbecaa1-08aa-48a4-b5d6-0c9d0fefe7db.webp", 400, 600, "#6A5341"], ["https://www.jonaso.de/artworks/midjourney/Robots/c842a725-ec90-4058-941b-c75f1df22df3.webp", 400, 600, "#3C4749"], ["https://www.jonaso.de/artworks/midjourney/Robots/d41064e6-e78d-48cc-aaa5-3d103775b29e.webp", 400, 600, "#6B7670"], ["https://www.jonaso.de/artworks/midjourney/Robots/babd591a-f682-45ac-99cc-638cb92dcd25.webp", 400, 600, "#434745"], ["https://www.jonaso.de/artworks/midjourney/Robots/08e177eb-0218-4422-ab5d-33b85f4118a8.webp", 400, 600, "#544235"], ["https://www.jonaso.de/artworks/midjourney/Robots/1797b66b-7413-4cd6-8e3d-5d988cad80ef.webp", 400, 600, "#414A43"], ["https://www.jonaso.de/artworks/midjourney/87f36af3-af58-4de7-ba0c-7569518c7da8.webp", 400, 400, "#9E8B85"], ["https://www.jonaso.de/artworks/midjourney/0dc8c706-a626-4a3e-b0c1-3fed811c3229.webp", 400, 400, "#634436"], ["https://www.jonaso.de/artworks/midjourney/5517b05c-41ae-4e5f-8de2-6eb77ec4358a.webp", 400, 400, "#969360"], ["https://www.jonaso.de/artworks/midjourney/820d33a8-33c4-4712-aa2e-4fb241e9f82f.webp", 400, 400, "#82716B"], ["https://www.jonaso.de/artworks/midjourney/7360861c-66ef-4d4e-8b26-48f88595cd51.webp", 400, 400, "#74786B"], ["https://www.jonaso.de/artworks/midjourney/181af38a-ebc2-4be6-bdf4-da632d3568f8.webp", 400, 400, "#8F8C6A"], ["https://www.jonaso.de/artworks/midjourney/59b6f3bf-b97c-4992-a85f-a2d9815a312f.webp", 400, 400, "#716B53"], ["https://www.jonaso.de/artworks/midjourney/c368ca23-65e4-49aa-bad0-8f89098b22ce.webp", 400, 400, "#775F51"], ["https://www.jonaso.de/artworks/midjourney/000de06a-5704-4273-ae6e-03c30587ed1e.webp", 400, 400, "#75695B"], ["https://www.jonaso.de/artworks/midjourney/3444f74b-d506-48c3-bae4-8a71df687c41.webp", 400, 400, "#3E3C3C"], ["https://www.jonaso.de/artworks/midjourney/3e60580b-9d20-47f8-a705-e45ef2e8cb64.webp", 400, 400, "#3F2F26"], ["https://www.jonaso.de/artworks/midjourney/People/2f31bca8-f423-4bba-bcca-8b053b11013c.webp", 400, 400, "#928481"], ["https://www.jonaso.de/artworks/midjourney/People/47424164-87b9-4d23-b214-d9d40c067fe0.webp", 400, 400, "#714B42"], ["https://www.jonaso.de/artworks/midjourney/45e489d4-e1b6-4bb8-9386-54a5169e7886.webp", 400, 400, "#736C62"], ["https://www.jonaso.de/artworks/midjourney/People/e6f32b5c-e2c2-401b-834b-4edc45dfb280.webp", 400, 400, "#656354"], ["https://www.jonaso.de/artworks/midjourney/People/22cad2ba-49eb-4bcb-be55-fb14dbfa7e7e.webp", 400, 400, "#8F6E5A"], ["https://www.jonaso.de/artworks/midjourney/People/d86db049-b1ee-4e81-9bd2-5a1f43491e3d.webp", 400, 400, "#6B6B5D"], ["https://www.jonaso.de/artworks/midjourney/cc8baea8-2f24-43dd-8b6f-9b1c7f4add6c.webp", 400, 400, "#423521"], ["https://www.jonaso.de/artworks/midjourney/08f7ed7f-6885-431b-90b7-025f2bf43a0f.webp", 400, 400, "#7B5E4D"], ["https://www.jonaso.de/artworks/midjourney/eb494bc3-8c6e-46fc-8ea1-437762d8bc95.webp", 400, 400, "#7C736B"], ["https://www.jonaso.de/artworks/midjourney/8f85cffd-3ee1-461c-a05d-863ffa10a557.webp", 400, 400, "#422A24"], ["https://www.jonaso.de/artworks/midjourney/People/eecd756a-f145-4f8c-b1b5-bb42e01189e3.webp", 400, 400, "#7E6664"], ["https://www.jonaso.de/artworks/midjourney/e2353dd3-1715-473e-9ac7-ce9d18a9a6c4.webp", 400, 400, "#4B3F37"], ["https://www.jonaso.de/artworks/midjourney/43565a9d-a195-43da-9dd2-0e10548355b1.webp", 400, 400, "#626055"], ["https://www.jonaso.de/artworks/midjourney/4ddf2647-b8e5-4622-9567-76ffec96476d.webp", 400, 400, "#54493F"], ["https://www.jonaso.de/artworks/midjourney/People/9ed82638-7e2b-4941-b7d0-bf815c6d02bc.webp", 400, 400, "#7C665F"], ["https://www.jonaso.de/artworks/midjourney/People/ba70aa3e-dc7c-4a45-8d27-0031aafe10bf.webp", 400, 400, "#89726E"], ["https://www.jonaso.de/artworks/midjourney/People/f7ff06c6-cbba-4844-a3d9-f5dcd3805279.webp", 400, 400, "#7C5654"], ["https://www.jonaso.de/artworks/midjourney/People/846a8e6f-f1c2-4da2-8fc7-83928f8b528e.webp", 400, 400, "#4F442F"], ["https://www.jonaso.de/artworks/midjourney/dbb48026-1d76-4963-98c3-0c203c90ce9e.webp", 400, 400, "#7A816D"], ["https://www.jonaso.de/artworks/midjourney/6249f2d6-c021-4789-9a91-d645d666ee4d.webp", 400, 400, "#83522C"], ["https://www.jonaso.de/artworks/midjourney/People/85f43fd4-84e0-407e-8c10-9bf1f1235d37.webp", 400, 400, "#564539"], ["https://www.jonaso.de/artworks/midjourney/edb7aae7-526c-46b0-af8a-9738388230d0.webp", 400, 200, "#80644E"], ["https://www.jonaso.de/artworks/midjourney/34d9745e-63b9-46c5-ae96-5310e7c4aa0c.webp", 400, 200, "#766453"], ["https://www.jonaso.de/artworks/midjourney/c887f424-d240-4a54-995e-1aeefd9c9bc4.webp", 400, 200, "#8D754D"], ["https://www.jonaso.de/artworks/midjourney/d555cd8a-60ec-4790-8d6c-a783c9d36164.webp", 400, 266, "#655058"], ["https://www.jonaso.de/artworks/midjourney/d9f38aec-949b-4b29-bcde-b16f528c71bc.webp", 400, 400, "#7D746C"], ["https://www.jonaso.de/artworks/midjourney/12fb3edc-16da-4964-81af-9ffef3fc04f5.webp", 400, 400, "#90856B"], ["https://www.jonaso.de/artworks/midjourney/6572c4e1-ff35-4b80-8bc5-ff07240c0847.webp", 400, 400, "#795F52"], ["https://www.jonaso.de/artworks/midjourney/841436a9-a102-4367-b37e-32cc5d6c0c1c.webp", 400, 400, "#60554F"], ["https://www.jonaso.de/artworks/midjourney/6c6db89f-1d6a-4170-8142-4cfc267ada8f.webp", 400, 400, "#707D88"], ["https://www.jonaso.de/artworks/midjourney/e62f65b8-c570-484b-b4fb-0a7c11f61b8b.webp", 400, 400, "#897D76"], ["https://www.jonaso.de/artworks/midjourney/Surreal/f32f1719-ac45-4694-a88b-eba37990d56d.webp", 400, 400, "#9698A3"], ["https://www.jonaso.de/artworks/midjourney/Surreal/b99df74b-376d-4e4f-852f-1b9b7db4bf5d.webp", 400, 400, "#847869"], ["https://www.jonaso.de/artworks/midjourney/ba927536-a029-4b5f-a1f1-7877e5f633fa.webp", 400, 400, "#8C8078"], ["https://www.jonaso.de/artworks/midjourney/Surreal/7ba058a8-4764-41e7-9b0a-665ad8f8f8f5.webp", 400, 400, "#9B967F"], ["https://www.jonaso.de/artworks/midjourney/Surreal/40c241bd-1255-4ce4-9052-bbfca6fa59ca.webp", 400, 400, "#687170"], ["https://www.jonaso.de/artworks/midjourney/357d9753-ecf3-4a15-922d-7703817e37e2.webp", 400, 400, "#A18A7D"], ["https://www.jonaso.de/artworks/midjourney/People/9146ea77-5a31-4a0d-8346-62c57de47769.webp", 400, 400, "#41322F"], ["https://www.jonaso.de/artworks/midjourney/People/6dfd0b8b-b35a-40b7-b6aa-59aa089aa8b4.webp", 400, 400, "#A09B96"], ["https://www.jonaso.de/artworks/midjourney/People/6da3910b-4529-43c2-bb68-1fb6092fc3b3.webp", 400, 600, "#363635"], ["https://www.jonaso.de/artworks/midjourney/People/56f55a80-c329-4f70-b9f1-3063b9de523e.webp", 400, 600, "#A19F98"], ["https://www.jonaso.de/artworks/midjourney/People/9b8f8d02-fc6c-484b-92fb-fcb2471f94cd.webp", 400, 266, "#575656"], ["https://www.jonaso.de/artworks/midjourney/People/f803e5f8-6293-460f-904b-656ffaba8f91.webp", 400, 266, "#858A83"], ["https://www.jonaso.de/artworks/midjourney/People/b330838e-c513-4bfd-9ee3-e9d57d3e6878.webp", 400, 400, "#656463"], ["https://www.jonaso.de/artworks/midjourney/1b6f4421-ef98-4d63-8357-fe9992f1a058.webp", 400, 400, "#9297A0"], ["https://www.jonaso.de/artworks/midjourney/Surreal/6ace8d7a-5d91-4e80-84f2-08b2b257ee42.webp", 400, 400, "#9C8A7B"], ["https://www.jonaso.de/artworks/midjourney/f4893d3c-f0d5-4c42-af52-766c19f58026.webp", 400, 400, "#A08B8B"], ["https://www.jonaso.de/artworks/midjourney/f5c8b22a-b2f1-4074-8148-f48bcd957470.webp", 400, 400, "#9195A0"], ["https://www.jonaso.de/artworks/midjourney/Animals/a76db63d-dd3a-4ca2-b7e4-f62364c36815.webp", 400, 400, "#A8A195"], ["https://www.jonaso.de/artworks/midjourney/e3a5365c-1e00-44f7-8c24-3d055e9dfd29.webp", 400, 400, "#A59775"], ["https://www.jonaso.de/artworks/midjourney/5e709677-d575-406e-bfdc-68c8f5b09991.webp", 400, 400, "#6A5B57"], ["https://www.jonaso.de/artworks/midjourney/48c886d8-bb50-4644-91a6-291bfef71bca.webp", 400, 400, "#8F7757"], ["https://www.jonaso.de/artworks/midjourney/449b7848-1648-4f78-bd8b-d2052f2b7c34.webp", 400, 400, "#6E6652"], ["https://www.jonaso.de/artworks/midjourney/2db035af-57d1-440b-a8d3-0af51045cc4e.webp", 400, 400, "#7B6A53"], ["https://www.jonaso.de/artworks/midjourney/Statues/7836e094-196e-428c-904d-aa214f97cd18.webp", 400, 600, "#615E60"], ["https://www.jonaso.de/artworks/midjourney/Statues/697a0edd-0a60-4222-9a1a-c95047b10cba.webp", 400, 600, "#444447"], ["https://www.jonaso.de/artworks/midjourney/5784b4ed-bbd5-4436-a0d7-311d91d680c2.webp", 400, 400, "#4B4844"], ["https://www.jonaso.de/artworks/midjourney/dd5bcc5d-3bfb-4295-9128-61655ccc4e1d.webp", 400, 400, "#5A4430"], ["https://www.jonaso.de/artworks/midjourney/8fa8086b-31c4-45e4-8502-5ba175926f73.webp", 400, 400, "#554B44"], ["https://www.jonaso.de/artworks/midjourney/c386c85c-f8d7-463a-b7f7-5433ad889fa0.webp", 400, 400, "#776953"], ["https://www.jonaso.de/artworks/midjourney/5321a8d4-eb10-40f6-ac69-d9e408770a45.webp", 400, 400, "#8B857C"], ["https://www.jonaso.de/artworks/midjourney/424646d8-effe-4408-ac2e-f288ee6a0185.webp", 400, 800, "#726651"], ["https://www.jonaso.de/artworks/midjourney/2f9e5f59-6319-493e-9721-e1479bce0f82.webp", 400, 800, "#6F5737"], ["https://www.jonaso.de/artworks/midjourney/2141ce54-d4bb-4029-8aa5-b6944f3b23d6.webp", 400, 800, "#948476"], ["https://www.jonaso.de/artworks/midjourney/6e79d937-4929-42a6-9f7f-1ba890e9abc9.webp", 400, 400, "#9B715D"], ["https://www.jonaso.de/artworks/midjourney/0a3f6553-d89b-495a-957b-6fe234720d05.webp", 400, 400, "#7A7F7D"], ["https://www.jonaso.de/artworks/midjourney/People/42a299e9-d11c-4e25-902f-cd6a36fc360a.webp", 400, 600, "#8E7055"], ["https://www.jonaso.de/artworks/midjourney/People/9bd1d874-d37b-4d90-91b1-a3981753c6d0.webp", 400, 600, "#B1794D"], ["https://www.jonaso.de/artworks/midjourney/People/dd8e7ab8-9834-4d2a-ad6f-ac51ae30d834.webp", 400, 600, "#886643"], ["https://www.jonaso.de/artworks/midjourney/People/40b6ef46-9764-4734-9426-ce2d6f1e27a7.webp", 400, 600, "#60636A"], ["https://www.jonaso.de/artworks/midjourney/People/1ff6eaf9-260f-4ded-9c69-4b96a11ef5eb.webp", 400, 224, "#2F2724"], ["https://www.jonaso.de/artworks/midjourney/af1b1775-f3ed-4def-866f-75e397753f51.webp", 400, 224, "#80502E"], ["https://www.jonaso.de/artworks/midjourney/4dd85f3a-bfc0-4601-a215-42a6854d190e.webp", 400, 200, "#306F75"], ["https://www.jonaso.de/artworks/midjourney/712cd7ab-5a25-4552-898b-a14cfb99f293.webp", 400, 200, "#6C7279"], ["https://www.jonaso.de/artworks/midjourney/5d16b84b-a932-4963-a445-38eb1d260019.webp", 400, 400, "#8C5455"], ["https://www.jonaso.de/artworks/midjourney/cad45795-a79f-4cde-85fa-51c984608782.webp", 400, 400, "#5D524C"], ["https://www.jonaso.de/artworks/midjourney/8e320a92-12d9-4802-a1ad-d2923030d60a.webp", 400, 400, "#555F71"], ["https://www.jonaso.de/artworks/midjourney/Animals/b68add54-7eae-47f4-84bd-b6c6ec3e92ee.webp", 400, 400, "#4F5664"], ["https://www.jonaso.de/artworks/midjourney/f1aac4b6-8217-4ef9-b111-c2ed5e2f05d3.webp", 400, 400, "#555B63"], ["https://www.jonaso.de/artworks/midjourney/e25aaaed-73b5-476e-b5f7-3ccf1147df07.webp", 400, 600, "#946B5C"], ["https://www.jonaso.de/artworks/midjourney/8ec6b86b-fdce-4719-ab7d-e7fe15378936.webp", 400, 400, "#291B14"]], "next": false} \ No newline at end of file diff --git a/public/artworks/json/webp-midjourney.json b/public/artworks/json/webp-midjourney.json new file mode 100644 index 0000000000..e9b6330e35 --- /dev/null +++ b/public/artworks/json/webp-midjourney.json @@ -0,0 +1 @@ +[["https://www.jonaso.de/artworks/midjourney/f94ac536-fecf-4d69-ba47-ddbc23a2b903.webp", 400, 400, "#3F352A"], ["https://www.jonaso.de/artworks/midjourney/1ed4137e-24b7-46a2-bfd0-951ea71e7fb5.webp", 400, 400, "#2D1613"], ["https://www.jonaso.de/artworks/midjourney/Robots/2fbecaa1-08aa-48a4-b5d6-0c9d0fefe7db.webp", 400, 600, "#6A5341"], ["https://www.jonaso.de/artworks/midjourney/Robots/c842a725-ec90-4058-941b-c75f1df22df3.webp", 400, 600, "#3C4749"], ["https://www.jonaso.de/artworks/midjourney/Robots/d41064e6-e78d-48cc-aaa5-3d103775b29e.webp", 400, 600, "#6B7670"], ["https://www.jonaso.de/artworks/midjourney/Robots/babd591a-f682-45ac-99cc-638cb92dcd25.webp", 400, 600, "#434745"], ["https://www.jonaso.de/artworks/midjourney/Robots/08e177eb-0218-4422-ab5d-33b85f4118a8.webp", 400, 600, "#544235"], ["https://www.jonaso.de/artworks/midjourney/Robots/1797b66b-7413-4cd6-8e3d-5d988cad80ef.webp", 400, 600, "#414A43"], ["https://www.jonaso.de/artworks/midjourney/87f36af3-af58-4de7-ba0c-7569518c7da8.webp", 400, 400, "#9E8B85"], ["https://www.jonaso.de/artworks/midjourney/0dc8c706-a626-4a3e-b0c1-3fed811c3229.webp", 400, 400, "#634436"], ["https://www.jonaso.de/artworks/midjourney/5517b05c-41ae-4e5f-8de2-6eb77ec4358a.webp", 400, 400, "#969360"], ["https://www.jonaso.de/artworks/midjourney/820d33a8-33c4-4712-aa2e-4fb241e9f82f.webp", 400, 400, "#82716B"], ["https://www.jonaso.de/artworks/midjourney/7360861c-66ef-4d4e-8b26-48f88595cd51.webp", 400, 400, "#74786B"], ["https://www.jonaso.de/artworks/midjourney/181af38a-ebc2-4be6-bdf4-da632d3568f8.webp", 400, 400, "#8F8C6A"], ["https://www.jonaso.de/artworks/midjourney/59b6f3bf-b97c-4992-a85f-a2d9815a312f.webp", 400, 400, "#716B53"], ["https://www.jonaso.de/artworks/midjourney/c368ca23-65e4-49aa-bad0-8f89098b22ce.webp", 400, 400, "#775F51"], ["https://www.jonaso.de/artworks/midjourney/000de06a-5704-4273-ae6e-03c30587ed1e.webp", 400, 400, "#75695B"], ["https://www.jonaso.de/artworks/midjourney/3444f74b-d506-48c3-bae4-8a71df687c41.webp", 400, 400, "#3E3C3C"], ["https://www.jonaso.de/artworks/midjourney/3e60580b-9d20-47f8-a705-e45ef2e8cb64.webp", 400, 400, "#3F2F26"], ["https://www.jonaso.de/artworks/midjourney/People/2f31bca8-f423-4bba-bcca-8b053b11013c.webp", 400, 400, "#928481"], ["https://www.jonaso.de/artworks/midjourney/People/47424164-87b9-4d23-b214-d9d40c067fe0.webp", 400, 400, "#714B42"], ["https://www.jonaso.de/artworks/midjourney/45e489d4-e1b6-4bb8-9386-54a5169e7886.webp", 400, 400, "#736C62"], ["https://www.jonaso.de/artworks/midjourney/People/e6f32b5c-e2c2-401b-834b-4edc45dfb280.webp", 400, 400, "#656354"], ["https://www.jonaso.de/artworks/midjourney/People/22cad2ba-49eb-4bcb-be55-fb14dbfa7e7e.webp", 400, 400, "#8F6E5A"], ["https://www.jonaso.de/artworks/midjourney/People/d86db049-b1ee-4e81-9bd2-5a1f43491e3d.webp", 400, 400, "#6B6B5D"], ["https://www.jonaso.de/artworks/midjourney/cc8baea8-2f24-43dd-8b6f-9b1c7f4add6c.webp", 400, 400, "#423521"], ["https://www.jonaso.de/artworks/midjourney/08f7ed7f-6885-431b-90b7-025f2bf43a0f.webp", 400, 400, "#7B5E4D"], ["https://www.jonaso.de/artworks/midjourney/eb494bc3-8c6e-46fc-8ea1-437762d8bc95.webp", 400, 400, "#7C736B"], ["https://www.jonaso.de/artworks/midjourney/8f85cffd-3ee1-461c-a05d-863ffa10a557.webp", 400, 400, "#422A24"], ["https://www.jonaso.de/artworks/midjourney/People/eecd756a-f145-4f8c-b1b5-bb42e01189e3.webp", 400, 400, "#7E6664"], ["https://www.jonaso.de/artworks/midjourney/e2353dd3-1715-473e-9ac7-ce9d18a9a6c4.webp", 400, 400, "#4B3F37"], ["https://www.jonaso.de/artworks/midjourney/43565a9d-a195-43da-9dd2-0e10548355b1.webp", 400, 400, "#626055"], ["https://www.jonaso.de/artworks/midjourney/4ddf2647-b8e5-4622-9567-76ffec96476d.webp", 400, 400, "#54493F"], ["https://www.jonaso.de/artworks/midjourney/People/9ed82638-7e2b-4941-b7d0-bf815c6d02bc.webp", 400, 400, "#7C665F"], ["https://www.jonaso.de/artworks/midjourney/People/ba70aa3e-dc7c-4a45-8d27-0031aafe10bf.webp", 400, 400, "#89726E"], ["https://www.jonaso.de/artworks/midjourney/People/f7ff06c6-cbba-4844-a3d9-f5dcd3805279.webp", 400, 400, "#7C5654"], ["https://www.jonaso.de/artworks/midjourney/People/846a8e6f-f1c2-4da2-8fc7-83928f8b528e.webp", 400, 400, "#4F442F"], ["https://www.jonaso.de/artworks/midjourney/dbb48026-1d76-4963-98c3-0c203c90ce9e.webp", 400, 400, "#7A816D"], ["https://www.jonaso.de/artworks/midjourney/6249f2d6-c021-4789-9a91-d645d666ee4d.webp", 400, 400, "#83522C"], ["https://www.jonaso.de/artworks/midjourney/People/85f43fd4-84e0-407e-8c10-9bf1f1235d37.webp", 400, 400, "#564539"], ["https://www.jonaso.de/artworks/midjourney/edb7aae7-526c-46b0-af8a-9738388230d0.webp", 400, 200, "#80644E"], ["https://www.jonaso.de/artworks/midjourney/34d9745e-63b9-46c5-ae96-5310e7c4aa0c.webp", 400, 200, "#766453"], ["https://www.jonaso.de/artworks/midjourney/c887f424-d240-4a54-995e-1aeefd9c9bc4.webp", 400, 200, "#8D754D"], ["https://www.jonaso.de/artworks/midjourney/d555cd8a-60ec-4790-8d6c-a783c9d36164.webp", 400, 266, "#655058"], ["https://www.jonaso.de/artworks/midjourney/d9f38aec-949b-4b29-bcde-b16f528c71bc.webp", 400, 400, "#7D746C"], ["https://www.jonaso.de/artworks/midjourney/12fb3edc-16da-4964-81af-9ffef3fc04f5.webp", 400, 400, "#90856B"], ["https://www.jonaso.de/artworks/midjourney/6572c4e1-ff35-4b80-8bc5-ff07240c0847.webp", 400, 400, "#795F52"], ["https://www.jonaso.de/artworks/midjourney/841436a9-a102-4367-b37e-32cc5d6c0c1c.webp", 400, 400, "#60554F"], ["https://www.jonaso.de/artworks/midjourney/6c6db89f-1d6a-4170-8142-4cfc267ada8f.webp", 400, 400, "#707D88"], ["https://www.jonaso.de/artworks/midjourney/e62f65b8-c570-484b-b4fb-0a7c11f61b8b.webp", 400, 400, "#897D76"], ["https://www.jonaso.de/artworks/midjourney/Surreal/f32f1719-ac45-4694-a88b-eba37990d56d.webp", 400, 400, "#9698A3"], ["https://www.jonaso.de/artworks/midjourney/Surreal/b99df74b-376d-4e4f-852f-1b9b7db4bf5d.webp", 400, 400, "#847869"], ["https://www.jonaso.de/artworks/midjourney/ba927536-a029-4b5f-a1f1-7877e5f633fa.webp", 400, 400, "#8C8078"], ["https://www.jonaso.de/artworks/midjourney/Surreal/7ba058a8-4764-41e7-9b0a-665ad8f8f8f5.webp", 400, 400, "#9B967F"], ["https://www.jonaso.de/artworks/midjourney/Surreal/40c241bd-1255-4ce4-9052-bbfca6fa59ca.webp", 400, 400, "#687170"], ["https://www.jonaso.de/artworks/midjourney/357d9753-ecf3-4a15-922d-7703817e37e2.webp", 400, 400, "#A18A7D"], ["https://www.jonaso.de/artworks/midjourney/People/9146ea77-5a31-4a0d-8346-62c57de47769.webp", 400, 400, "#41322F"], ["https://www.jonaso.de/artworks/midjourney/People/6dfd0b8b-b35a-40b7-b6aa-59aa089aa8b4.webp", 400, 400, "#A09B96"], ["https://www.jonaso.de/artworks/midjourney/People/6da3910b-4529-43c2-bb68-1fb6092fc3b3.webp", 400, 600, "#363635"], ["https://www.jonaso.de/artworks/midjourney/People/56f55a80-c329-4f70-b9f1-3063b9de523e.webp", 400, 600, "#A19F98"], ["https://www.jonaso.de/artworks/midjourney/People/9b8f8d02-fc6c-484b-92fb-fcb2471f94cd.webp", 400, 266, "#575656"], ["https://www.jonaso.de/artworks/midjourney/People/f803e5f8-6293-460f-904b-656ffaba8f91.webp", 400, 266, "#858A83"], ["https://www.jonaso.de/artworks/midjourney/People/b330838e-c513-4bfd-9ee3-e9d57d3e6878.webp", 400, 400, "#656463"], ["https://www.jonaso.de/artworks/midjourney/1b6f4421-ef98-4d63-8357-fe9992f1a058.webp", 400, 400, "#9297A0"], ["https://www.jonaso.de/artworks/midjourney/Surreal/6ace8d7a-5d91-4e80-84f2-08b2b257ee42.webp", 400, 400, "#9C8A7B"], ["https://www.jonaso.de/artworks/midjourney/f4893d3c-f0d5-4c42-af52-766c19f58026.webp", 400, 400, "#A08B8B"], ["https://www.jonaso.de/artworks/midjourney/f5c8b22a-b2f1-4074-8148-f48bcd957470.webp", 400, 400, "#9195A0"], ["https://www.jonaso.de/artworks/midjourney/Animals/a76db63d-dd3a-4ca2-b7e4-f62364c36815.webp", 400, 400, "#A8A195"], ["https://www.jonaso.de/artworks/midjourney/e3a5365c-1e00-44f7-8c24-3d055e9dfd29.webp", 400, 400, "#A59775"], ["https://www.jonaso.de/artworks/midjourney/5e709677-d575-406e-bfdc-68c8f5b09991.webp", 400, 400, "#6A5B57"], ["https://www.jonaso.de/artworks/midjourney/48c886d8-bb50-4644-91a6-291bfef71bca.webp", 400, 400, "#8F7757"], ["https://www.jonaso.de/artworks/midjourney/449b7848-1648-4f78-bd8b-d2052f2b7c34.webp", 400, 400, "#6E6652"], ["https://www.jonaso.de/artworks/midjourney/2db035af-57d1-440b-a8d3-0af51045cc4e.webp", 400, 400, "#7B6A53"], ["https://www.jonaso.de/artworks/midjourney/Statues/7836e094-196e-428c-904d-aa214f97cd18.webp", 400, 600, "#615E60"], ["https://www.jonaso.de/artworks/midjourney/Statues/697a0edd-0a60-4222-9a1a-c95047b10cba.webp", 400, 600, "#444447"], ["https://www.jonaso.de/artworks/midjourney/5784b4ed-bbd5-4436-a0d7-311d91d680c2.webp", 400, 400, "#4B4844"], ["https://www.jonaso.de/artworks/midjourney/dd5bcc5d-3bfb-4295-9128-61655ccc4e1d.webp", 400, 400, "#5A4430"], ["https://www.jonaso.de/artworks/midjourney/8fa8086b-31c4-45e4-8502-5ba175926f73.webp", 400, 400, "#554B44"], ["https://www.jonaso.de/artworks/midjourney/c386c85c-f8d7-463a-b7f7-5433ad889fa0.webp", 400, 400, "#776953"], ["https://www.jonaso.de/artworks/midjourney/5321a8d4-eb10-40f6-ac69-d9e408770a45.webp", 400, 400, "#8B857C"], ["https://www.jonaso.de/artworks/midjourney/424646d8-effe-4408-ac2e-f288ee6a0185.webp", 400, 800, "#726651"], ["https://www.jonaso.de/artworks/midjourney/2f9e5f59-6319-493e-9721-e1479bce0f82.webp", 400, 800, "#6F5737"], ["https://www.jonaso.de/artworks/midjourney/2141ce54-d4bb-4029-8aa5-b6944f3b23d6.webp", 400, 800, "#948476"], ["https://www.jonaso.de/artworks/midjourney/6e79d937-4929-42a6-9f7f-1ba890e9abc9.webp", 400, 400, "#9B715D"], ["https://www.jonaso.de/artworks/midjourney/0a3f6553-d89b-495a-957b-6fe234720d05.webp", 400, 400, "#7A7F7D"], ["https://www.jonaso.de/artworks/midjourney/People/42a299e9-d11c-4e25-902f-cd6a36fc360a.webp", 400, 600, "#8E7055"], ["https://www.jonaso.de/artworks/midjourney/People/9bd1d874-d37b-4d90-91b1-a3981753c6d0.webp", 400, 600, "#B1794D"], ["https://www.jonaso.de/artworks/midjourney/People/dd8e7ab8-9834-4d2a-ad6f-ac51ae30d834.webp", 400, 600, "#886643"], ["https://www.jonaso.de/artworks/midjourney/People/40b6ef46-9764-4734-9426-ce2d6f1e27a7.webp", 400, 600, "#60636A"], ["https://www.jonaso.de/artworks/midjourney/People/1ff6eaf9-260f-4ded-9c69-4b96a11ef5eb.webp", 400, 224, "#2F2724"], ["https://www.jonaso.de/artworks/midjourney/af1b1775-f3ed-4def-866f-75e397753f51.webp", 400, 224, "#80502E"], ["https://www.jonaso.de/artworks/midjourney/4dd85f3a-bfc0-4601-a215-42a6854d190e.webp", 400, 200, "#306F75"], ["https://www.jonaso.de/artworks/midjourney/712cd7ab-5a25-4552-898b-a14cfb99f293.webp", 400, 200, "#6C7279"], ["https://www.jonaso.de/artworks/midjourney/5d16b84b-a932-4963-a445-38eb1d260019.webp", 400, 400, "#8C5455"], ["https://www.jonaso.de/artworks/midjourney/cad45795-a79f-4cde-85fa-51c984608782.webp", 400, 400, "#5D524C"], ["https://www.jonaso.de/artworks/midjourney/8e320a92-12d9-4802-a1ad-d2923030d60a.webp", 400, 400, "#555F71"], ["https://www.jonaso.de/artworks/midjourney/Animals/b68add54-7eae-47f4-84bd-b6c6ec3e92ee.webp", 400, 400, "#4F5664"], ["https://www.jonaso.de/artworks/midjourney/f1aac4b6-8217-4ef9-b111-c2ed5e2f05d3.webp", 400, 400, "#555B63"], ["https://www.jonaso.de/artworks/midjourney/e25aaaed-73b5-476e-b5f7-3ccf1147df07.webp", 400, 600, "#946B5C"], ["https://www.jonaso.de/artworks/midjourney/8ec6b86b-fdce-4719-ab7d-e7fe15378936.webp", 400, 400, "#291B14"]] \ No newline at end of file diff --git a/public/artworks/json/webp-misc-0.json b/public/artworks/json/webp-misc-0.json new file mode 100644 index 0000000000..76266acac3 --- /dev/null +++ b/public/artworks/json/webp-misc-0.json @@ -0,0 +1 @@ +{"total": 73, "items": [["https://www.jonaso.de/artworks/misc/PIXRAY/Mind%20Over%20Matter/2/download%20%286%29.webp", 400, 400, "#6F616B"], ["https://www.jonaso.de/artworks/misc/PIXRAY/Witch/2/download%20%2811%29.webp", 400, 400, "#82775B"], ["https://www.jonaso.de/artworks/misc/PIXRAY/Witch/1/download%20%284%29.webp", 400, 400, "#552949"], ["https://www.jonaso.de/artworks/misc/PIXRAY/Scream/1/download.webp", 400, 400, "#61789D"], ["https://www.jonaso.de/artworks/misc/PIXRAY/Replicate/replicate-prediction-bars3h5v2zgpnonstcnckd5xde.webp", 400, 216, "#888B75"], ["https://www.jonaso.de/artworks/misc/PIXRAY/Harpiye/1/download%20%286%29.webp", 400, 400, "#4E8567"], ["https://www.jonaso.de/artworks/misc/ruDALLE/Macedonian%20Sun/Screenshot%20from%202021-11-10%2009-07-41.webp", 400, 400, "#855E13"], ["https://www.jonaso.de/artworks/misc/cc12m/Bella%20Donna/2/download%20%2819%29.webp", 400, 400, "#975766"], ["https://www.jonaso.de/artworks/misc/cc12m/framed/download_out.webp", 400, 400, "#A09590"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/2-4.webp", 400, 400, "#2B3B2E"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/1-2.webp", 400, 400, "#634B40"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/2-1.webp", 400, 400, "#4C371D"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/2-2.webp", 400, 400, "#685130"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/1-3.webp", 400, 400, "#746046"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/1-1.webp", 400, 400, "#484743"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/2-3.webp", 400, 400, "#655A5B"], ["https://www.jonaso.de/artworks/misc/DISCO%20Diffusion%20v5/end%20of%20the%20world/download.webp", 400, 240, "#746F62"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Scream/RealESRGAN/3.webp", 400, 400, "#783C48"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Scream/RealESRGAN/5.webp", 400, 400, "#805A79"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Scream/RealESRGAN/4.webp", 400, 400, "#755676"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Scream/RealESRGAN/1.webp", 400, 400, "#CE5B3D"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Scream/RealESRGAN/2.webp", 400, 400, "#673D4E"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Lyrics/Atmosphere/God%27s%20Bathroom/1/download%20%2822%29.webp", 400, 400, "#9DAB94"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Lyrics/Atmosphere/God%27s%20Bathroom/1/download%20%2832%29.webp", 400, 400, "#A77396"], ["https://www.jonaso.de/artworks/misc/glide/1.webp", 400, 400, "#75DEB2"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Sculpture/1/download%20%282%29.webp", 400, 400, "#909384"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Last%20Day/2/download%20%282%29.webp", 400, 400, "#715B58"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Last%20Day/2/download%20%281%29.webp", 400, 400, "#6F4D3B"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Last%20Day/2/download.webp", 400, 400, "#8A817C"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Last%20Day/2/download%20%287%29.webp", 400, 400, "#8C3C2E"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Last%20Day/1/download%20%285%29.webp", 400, 400, "#905D3C"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Last%20Day/1/download%20%281%29.webp", 400, 400, "#A84B2F"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Wife/8/download%20%284%29.webp", 400, 400, "#362512"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Wife/1/RealESRGAN/download%20%281%29_out.webp", 400, 400, "#382B1B"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Wife/1/RealESRGAN/download%20%283%29_out.webp", 400, 400, "#473A2A"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Wife/1/RealESRGAN/download%20%282%29_out.webp", 400, 400, "#372B17"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Wife/1/RealESRGAN/download%20%284%29_out.webp", 400, 400, "#49331C"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Portrait/War/2/download%20%282%29.webp", 400, 400, "#8E8770"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Portrait/War/2/download.webp", 400, 400, "#877362"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Portrait/War/1/download.webp", 400, 400, "#533616"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Portrait/War/1/download%20%288%29.webp", 400, 400, "#624C31"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Portrait/War/1/download%20%287%29.webp", 400, 400, "#614D30"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/5/download%20%285%29.webp", 400, 400, "#776F61"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/4/download%20%285%29.webp", 400, 400, "#8B714F"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/4/download%20%281%29.webp", 400, 400, "#A19671"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/4/download%20%288%29.webp", 400, 400, "#9F7E6B"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/4/download%20%286%29.webp", 400, 400, "#886446"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/4/download%20%284%29.webp", 400, 400, "#898665"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/4/download%20%283%29.webp", 400, 400, "#8A6359"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/1/download%20%285%29.webp", 400, 400, "#957F77"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/1/download.webp", 400, 400, "#88988C"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/1/download%20%287%29.webp", 400, 400, "#875050"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/1/download%20%284%29.webp", 400, 400, "#AB9661"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/1/download%20%283%29.webp", 400, 400, "#A89E5F"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Millenial/1/download%20%281%29.webp", 400, 400, "#A8A8A7"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Millenial/1/download.webp", 400, 400, "#9E9E9E"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Millenial/1/download%20%287%29.webp", 400, 400, "#949490"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Millenial/1/download%20%283%29.webp", 400, 400, "#696969"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Scream/1/download.webp", 400, 400, "#414142"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Muse/1/download%20%281%29.webp", 400, 400, "#695937"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Muse/1/download.webp", 400, 400, "#4230D"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Muse/1/download%20%283%29.webp", 400, 400, "#322CF"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Monster%20DNA/1/download%20%285%29.webp", 400, 400, "#3F4047"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Monster%20DNA/1/download.webp", 400, 400, "#42454E"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Cityscape/2/download%20%282%29.webp", 400, 400, "#7D8274"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Cityscape/2/download%20%283%29.webp", 400, 400, "#6A6C68"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Emotional%20Damage/1/RealESRGAN/x9_out.webp", 400, 400, "#64463C"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Emotional%20Damage/1/RealESRGAN/x3_out.webp", 400, 400, "#736B4F"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Emotional%20Damage/1/RealESRGAN/x1_out.webp", 400, 400, "#8D7C6C"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Emotional%20Damage/1/RealESRGAN/x8_out.webp", 400, 400, "#48444D"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Emotional%20Damage/1/RealESRGAN/x2_out.webp", 400, 400, "#766B74"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Emotional%20Damage/1/RealESRGAN/x6_out.webp", 400, 400, "#813C34"], ["https://www.jonaso.de/artworks/misc/v-majesty-diffusion/creations1654476181_cc6_gs0.1_3_N.webp", 400, 400, "#4C4C9D"]], "next": false} \ No newline at end of file diff --git a/public/artworks/json/webp-misc.json b/public/artworks/json/webp-misc.json new file mode 100644 index 0000000000..333d7063db --- /dev/null +++ b/public/artworks/json/webp-misc.json @@ -0,0 +1 @@ +[["https://www.jonaso.de/artworks/misc/PIXRAY/Mind%20Over%20Matter/2/download%20%286%29.webp", 400, 400, "#6F616B"], ["https://www.jonaso.de/artworks/misc/PIXRAY/Witch/2/download%20%2811%29.webp", 400, 400, "#82775B"], ["https://www.jonaso.de/artworks/misc/PIXRAY/Witch/1/download%20%284%29.webp", 400, 400, "#552949"], ["https://www.jonaso.de/artworks/misc/PIXRAY/Scream/1/download.webp", 400, 400, "#61789D"], ["https://www.jonaso.de/artworks/misc/PIXRAY/Replicate/replicate-prediction-bars3h5v2zgpnonstcnckd5xde.webp", 400, 216, "#888B75"], ["https://www.jonaso.de/artworks/misc/PIXRAY/Harpiye/1/download%20%286%29.webp", 400, 400, "#4E8567"], ["https://www.jonaso.de/artworks/misc/ruDALLE/Macedonian%20Sun/Screenshot%20from%202021-11-10%2009-07-41.webp", 400, 400, "#855E13"], ["https://www.jonaso.de/artworks/misc/cc12m/Bella%20Donna/2/download%20%2819%29.webp", 400, 400, "#975766"], ["https://www.jonaso.de/artworks/misc/cc12m/framed/download_out.webp", 400, 400, "#A09590"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/2-4.webp", 400, 400, "#2B3B2E"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/1-2.webp", 400, 400, "#634B40"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/2-1.webp", 400, 400, "#4C371D"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/2-2.webp", 400, 400, "#685130"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/1-3.webp", 400, 400, "#746046"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/1-1.webp", 400, 400, "#484743"], ["https://www.jonaso.de/artworks/misc/cc12m/Cosmic%20Pleasure%20Hunt/2-3.webp", 400, 400, "#655A5B"], ["https://www.jonaso.de/artworks/misc/DISCO%20Diffusion%20v5/end%20of%20the%20world/download.webp", 400, 240, "#746F62"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Scream/RealESRGAN/3.webp", 400, 400, "#783C48"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Scream/RealESRGAN/5.webp", 400, 400, "#805A79"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Scream/RealESRGAN/4.webp", 400, 400, "#755676"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Scream/RealESRGAN/1.webp", 400, 400, "#CE5B3D"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Scream/RealESRGAN/2.webp", 400, 400, "#673D4E"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Lyrics/Atmosphere/God%27s%20Bathroom/1/download%20%2822%29.webp", 400, 400, "#9DAB94"], ["https://www.jonaso.de/artworks/misc/cc12m-1/Lyrics/Atmosphere/God%27s%20Bathroom/1/download%20%2832%29.webp", 400, 400, "#A77396"], ["https://www.jonaso.de/artworks/misc/glide/1.webp", 400, 400, "#75DEB2"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Sculpture/1/download%20%282%29.webp", 400, 400, "#909384"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Last%20Day/2/download%20%282%29.webp", 400, 400, "#715B58"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Last%20Day/2/download%20%281%29.webp", 400, 400, "#6F4D3B"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Last%20Day/2/download.webp", 400, 400, "#8A817C"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Last%20Day/2/download%20%287%29.webp", 400, 400, "#8C3C2E"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Last%20Day/1/download%20%285%29.webp", 400, 400, "#905D3C"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Last%20Day/1/download%20%281%29.webp", 400, 400, "#A84B2F"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Wife/8/download%20%284%29.webp", 400, 400, "#362512"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Wife/1/RealESRGAN/download%20%281%29_out.webp", 400, 400, "#382B1B"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Wife/1/RealESRGAN/download%20%283%29_out.webp", 400, 400, "#473A2A"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Wife/1/RealESRGAN/download%20%282%29_out.webp", 400, 400, "#372B17"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Wife/1/RealESRGAN/download%20%284%29_out.webp", 400, 400, "#49331C"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Portrait/War/2/download%20%282%29.webp", 400, 400, "#8E8770"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Portrait/War/2/download.webp", 400, 400, "#877362"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Portrait/War/1/download.webp", 400, 400, "#533616"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Portrait/War/1/download%20%288%29.webp", 400, 400, "#624C31"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Portrait/War/1/download%20%287%29.webp", 400, 400, "#614D30"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/5/download%20%285%29.webp", 400, 400, "#776F61"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/4/download%20%285%29.webp", 400, 400, "#8B714F"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/4/download%20%281%29.webp", 400, 400, "#A19671"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/4/download%20%288%29.webp", 400, 400, "#9F7E6B"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/4/download%20%286%29.webp", 400, 400, "#886446"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/4/download%20%284%29.webp", 400, 400, "#898665"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/4/download%20%283%29.webp", 400, 400, "#8A6359"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/1/download%20%285%29.webp", 400, 400, "#957F77"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/1/download.webp", 400, 400, "#88988C"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/1/download%20%287%29.webp", 400, 400, "#875050"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/1/download%20%284%29.webp", 400, 400, "#AB9661"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/G/1/download%20%283%29.webp", 400, 400, "#A89E5F"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Millenial/1/download%20%281%29.webp", 400, 400, "#A8A8A7"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Millenial/1/download.webp", 400, 400, "#9E9E9E"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Millenial/1/download%20%287%29.webp", 400, 400, "#949490"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Millenial/1/download%20%283%29.webp", 400, 400, "#696969"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Scream/1/download.webp", 400, 400, "#414142"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Muse/1/download%20%281%29.webp", 400, 400, "#695937"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Muse/1/download.webp", 400, 400, "#4230D"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Muse/1/download%20%283%29.webp", 400, 400, "#322CF"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Monster%20DNA/1/download%20%285%29.webp", 400, 400, "#3F4047"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Monster%20DNA/1/download.webp", 400, 400, "#42454E"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Cityscape/2/download%20%282%29.webp", 400, 400, "#7D8274"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Cityscape/2/download%20%283%29.webp", 400, 400, "#6A6C68"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Emotional%20Damage/1/RealESRGAN/x9_out.webp", 400, 400, "#64463C"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Emotional%20Damage/1/RealESRGAN/x3_out.webp", 400, 400, "#736B4F"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Emotional%20Damage/1/RealESRGAN/x1_out.webp", 400, 400, "#8D7C6C"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Emotional%20Damage/1/RealESRGAN/x8_out.webp", 400, 400, "#48444D"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Emotional%20Damage/1/RealESRGAN/x2_out.webp", 400, 400, "#766B74"], ["https://www.jonaso.de/artworks/misc/cc12m-1-cfg/Emotional%20Damage/1/RealESRGAN/x6_out.webp", 400, 400, "#813C34"], ["https://www.jonaso.de/artworks/misc/v-majesty-diffusion/creations1654476181_cc6_gs0.1_3_N.webp", 400, 400, "#4C4C9D"]] \ No newline at end of file diff --git a/public/artworks/json/webp-stablediffusion-0.json b/public/artworks/json/webp-stablediffusion-0.json new file mode 100644 index 0000000000..68ef7ffc62 --- /dev/null +++ b/public/artworks/json/webp-stablediffusion-0.json @@ -0,0 +1 @@ +{"total": 100, "items": [["https://www.jonaso.de/artworks/stablediffusion/4092609655.webp", 400, 400, "#9AA0AB"], ["https://www.jonaso.de/artworks/stablediffusion/3769192946.webp", 400, 400, "#8B857D"], ["https://www.jonaso.de/artworks/stablediffusion/1492064773.webp", 400, 266, "#678580"], ["https://www.jonaso.de/artworks/stablediffusion/1263108438.webp", 400, 400, "#617476"], ["https://www.jonaso.de/artworks/stablediffusion/3904455052.webp", 400, 400, "#625559"], ["https://www.jonaso.de/artworks/stablediffusion/3349717859.webp", 400, 400, "#433B3B"], ["https://www.jonaso.de/artworks/stablediffusion/2087887084.webp", 400, 400, "#6B928F"], ["https://www.jonaso.de/artworks/stablediffusion/3861565378.webp", 400, 400, "#6F8CA1"], ["https://www.jonaso.de/artworks/stablediffusion/3808313955.webp", 400, 400, "#596272"], ["https://www.jonaso.de/artworks/stablediffusion/786661871.webp", 400, 400, "#55839C"], ["https://www.jonaso.de/artworks/stablediffusion/841929328.webp", 400, 400, "#516880"], ["https://www.jonaso.de/artworks/stablediffusion/298092185.webp", 400, 400, "#6A87AE"], ["https://www.jonaso.de/artworks/stablediffusion/1344056596.webp", 400, 400, "#81ABCA"], ["https://www.jonaso.de/artworks/stablediffusion/2867543039.webp", 400, 400, "#4A7C91"], ["https://www.jonaso.de/artworks/stablediffusion/2661993382.webp", 400, 400, "#819EB9"], ["https://www.jonaso.de/artworks/stablediffusion/2080967208.webp", 400, 400, "#888E91"], ["https://www.jonaso.de/artworks/stablediffusion/4020160818.webp", 400, 400, "#655E65"], ["https://www.jonaso.de/artworks/stablediffusion/1256664672.webp", 400, 400, "#4A595B"], ["https://www.jonaso.de/artworks/stablediffusion/2420146896.webp", 400, 200, "#435D54"], ["https://www.jonaso.de/artworks/stablediffusion/1054369841.webp", 400, 400, "#564551"], ["https://www.jonaso.de/artworks/stablediffusion/2762533266.webp", 400, 400, "#575246"], ["https://www.jonaso.de/artworks/stablediffusion/3498825360.webp", 400, 400, "#64554B"], ["https://www.jonaso.de/artworks/stablediffusion/1046777896.webp", 400, 500, "#988B7F"], ["https://www.jonaso.de/artworks/stablediffusion/1175370432.webp", 400, 500, "#7B7876"], ["https://www.jonaso.de/artworks/stablediffusion/745360134.webp", 400, 500, "#5B5B5F"], ["https://www.jonaso.de/artworks/stablediffusion/3692126515.webp", 400, 500, "#885A3A"], ["https://www.jonaso.de/artworks/stablediffusion/3139163209.webp", 400, 500, "#745438"], ["https://www.jonaso.de/artworks/stablediffusion/2742929516.webp", 400, 500, "#60757F"], ["https://www.jonaso.de/artworks/stablediffusion/1370881994.webp", 400, 500, "#595858"], ["https://www.jonaso.de/artworks/stablediffusion/1482183827.webp", 400, 500, "#62656A"], ["https://www.jonaso.de/artworks/stablediffusion/3298280091.webp", 400, 500, "#808A9B"], ["https://www.jonaso.de/artworks/stablediffusion/11076596.webp", 400, 500, "#978378"], ["https://www.jonaso.de/artworks/stablediffusion/397661668.webp", 400, 500, "#555A53"], ["https://www.jonaso.de/artworks/stablediffusion/1352737518.webp", 400, 500, "#69615C"], ["https://www.jonaso.de/artworks/stablediffusion/1168604306.webp", 400, 500, "#68695B"], ["https://www.jonaso.de/artworks/stablediffusion/512291800.webp", 400, 500, "#5B5753"], ["https://www.jonaso.de/artworks/stablediffusion/1015168323.webp", 400, 500, "#828281"], ["https://www.jonaso.de/artworks/stablediffusion/1426687366.webp", 400, 500, "#8B867F"], ["https://www.jonaso.de/artworks/stablediffusion/1564159554.webp", 400, 400, "#7D7769"], ["https://www.jonaso.de/artworks/stablediffusion/3293931038.webp", 400, 400, "#7E7D6F"], ["https://www.jonaso.de/artworks/stablediffusion/1205212942.webp", 400, 400, "#6B6963"], ["https://www.jonaso.de/artworks/stablediffusion/2759980742.webp", 400, 400, "#60809A"], ["https://www.jonaso.de/artworks/stablediffusion/3895801034.webp", 400, 400, "#65513F"], ["https://www.jonaso.de/artworks/stablediffusion/918210591.webp", 400, 400, "#4F3A2C"], ["https://www.jonaso.de/artworks/stablediffusion/1631927646.webp", 400, 400, "#637274"], ["https://www.jonaso.de/artworks/stablediffusion/4280549113.webp", 400, 400, "#7C563B"], ["https://www.jonaso.de/artworks/stablediffusion/3766090571.webp", 400, 400, "#836F66"], ["https://www.jonaso.de/artworks/stablediffusion/2772422602.webp", 400, 400, "#836061"], ["https://www.jonaso.de/artworks/stablediffusion/967981641.webp", 400, 400, "#86635B"], ["https://www.jonaso.de/artworks/stablediffusion/4031537546.webp", 400, 400, "#938E8A"], ["https://www.jonaso.de/artworks/stablediffusion/3564861981.webp", 400, 400, "#7D8A7D"], ["https://www.jonaso.de/artworks/stablediffusion/2167661265.webp", 400, 400, "#A7A49A"], ["https://www.jonaso.de/artworks/stablediffusion/3815090187.webp", 400, 400, "#7A7457"], ["https://www.jonaso.de/artworks/stablediffusion/3125874646-2.webp", 400, 400, "#989B99"], ["https://www.jonaso.de/artworks/stablediffusion/70880372.webp", 400, 550, "#AC5C3F"], ["https://www.jonaso.de/artworks/stablediffusion/3862510340.webp", 400, 400, "#82725F"], ["https://www.jonaso.de/artworks/stablediffusion/934835.webp", 400, 400, "#947F70"], ["https://www.jonaso.de/artworks/stablediffusion/1202959931.webp", 400, 400, "#6E6D56"], ["https://www.jonaso.de/artworks/stablediffusion/4026914676.webp", 400, 400, "#708A84"], ["https://www.jonaso.de/artworks/stablediffusion/286034651.webp", 400, 400, "#736356"], ["https://www.jonaso.de/artworks/stablediffusion/3685342603.webp", 400, 400, "#78766E"], ["https://www.jonaso.de/artworks/stablediffusion/1443366773.webp", 400, 400, "#434D4C"], ["https://www.jonaso.de/artworks/stablediffusion/4292051424.webp", 400, 400, "#696263"], ["https://www.jonaso.de/artworks/stablediffusion/3077411671.webp", 400, 400, "#6D7252"], ["https://www.jonaso.de/artworks/stablediffusion/115974887.webp", 400, 400, "#76412E"], ["https://www.jonaso.de/artworks/stablediffusion/3361965350.webp", 400, 400, "#895D29"], ["https://www.jonaso.de/artworks/stablediffusion/1515563327.webp", 400, 400, "#545D60"], ["https://www.jonaso.de/artworks/stablediffusion/3704632390.webp", 400, 400, "#9CA18C"], ["https://www.jonaso.de/artworks/stablediffusion/1730199245.webp", 400, 400, "#6B2131"], ["https://www.jonaso.de/artworks/stablediffusion/1622100500.webp", 400, 400, "#8E8979"], ["https://www.jonaso.de/artworks/stablediffusion/252160969.webp", 400, 320, "#8E7A5C"], ["https://www.jonaso.de/artworks/stablediffusion/638254864.webp", 400, 320, "#978F94"], ["https://www.jonaso.de/artworks/stablediffusion/618412219.webp", 400, 400, "#827451"], ["https://www.jonaso.de/artworks/stablediffusion/39681432.webp", 400, 290, "#7FAAAD"], ["https://www.jonaso.de/artworks/stablediffusion/1261068825.webp", 400, 400, "#5A6269"], ["https://www.jonaso.de/artworks/stablediffusion/4223135081.webp", 400, 400, "#585A53"], ["https://www.jonaso.de/artworks/stablediffusion/4010129890.webp", 400, 400, "#747D7E"], ["https://www.jonaso.de/artworks/stablediffusion/3244919919.webp", 400, 400, "#7A7D7F"], ["https://www.jonaso.de/artworks/stablediffusion/2122945218.webp", 400, 400, "#717070"], ["https://www.jonaso.de/artworks/stablediffusion/2425110445.webp", 400, 400, "#62655F"], ["https://www.jonaso.de/artworks/stablediffusion/2216445169.webp", 400, 400, "#6C6A65"], ["https://www.jonaso.de/artworks/stablediffusion/1070902671.webp", 400, 400, "#A7AAA7"], ["https://www.jonaso.de/artworks/stablediffusion/1859415547.webp", 400, 400, "#AAAFAC"], ["https://www.jonaso.de/artworks/stablediffusion/61601027.webp", 400, 500, "#797160"], ["https://www.jonaso.de/artworks/stablediffusion/3862279571.webp", 400, 400, "#8B877C"], ["https://www.jonaso.de/artworks/stablediffusion/3518824624.webp", 400, 400, "#646D64"], ["https://www.jonaso.de/artworks/stablediffusion/307982177.webp", 400, 400, "#767266"], ["https://www.jonaso.de/artworks/stablediffusion/3849539863.webp", 400, 400, "#7A776F"], ["https://www.jonaso.de/artworks/stablediffusion/1566500910.webp", 400, 400, "#553D30"], ["https://www.jonaso.de/artworks/stablediffusion/3874331517.webp", 400, 400, "#666547"], ["https://www.jonaso.de/artworks/stablediffusion/3834582694.webp", 400, 400, "#6A6F5E"], ["https://www.jonaso.de/artworks/stablediffusion/288608593.webp", 400, 400, "#674132"], ["https://www.jonaso.de/artworks/stablediffusion/719258478.webp", 400, 400, "#87584A"], ["https://www.jonaso.de/artworks/stablediffusion/1842679798.webp", 400, 400, "#6F5E66"], ["https://www.jonaso.de/artworks/stablediffusion/968972657.webp", 400, 400, "#596059"], ["https://www.jonaso.de/artworks/stablediffusion/4258782694.webp", 400, 400, "#777D7A"], ["https://www.jonaso.de/artworks/stablediffusion/2604611934.webp", 400, 400, "#8B7174"], ["https://www.jonaso.de/artworks/stablediffusion/3006226735.webp", 400, 400, "#876F4A"], ["https://www.jonaso.de/artworks/stablediffusion/2021266338.webp", 400, 400, "#726358"], ["https://www.jonaso.de/artworks/stablediffusion/906653852.webp", 400, 400, "#7B7574"]], "next": false} \ No newline at end of file diff --git a/public/artworks/json/webp-stablediffusion.json b/public/artworks/json/webp-stablediffusion.json new file mode 100644 index 0000000000..1da6c4a43e --- /dev/null +++ b/public/artworks/json/webp-stablediffusion.json @@ -0,0 +1 @@ +[["https://www.jonaso.de/artworks/stablediffusion/4092609655.webp", 400, 400, "#9AA0AB"], ["https://www.jonaso.de/artworks/stablediffusion/3769192946.webp", 400, 400, "#8B857D"], ["https://www.jonaso.de/artworks/stablediffusion/1492064773.webp", 400, 266, "#678580"], ["https://www.jonaso.de/artworks/stablediffusion/1263108438.webp", 400, 400, "#617476"], ["https://www.jonaso.de/artworks/stablediffusion/3904455052.webp", 400, 400, "#625559"], ["https://www.jonaso.de/artworks/stablediffusion/3349717859.webp", 400, 400, "#433B3B"], ["https://www.jonaso.de/artworks/stablediffusion/2087887084.webp", 400, 400, "#6B928F"], ["https://www.jonaso.de/artworks/stablediffusion/3861565378.webp", 400, 400, "#6F8CA1"], ["https://www.jonaso.de/artworks/stablediffusion/3808313955.webp", 400, 400, "#596272"], ["https://www.jonaso.de/artworks/stablediffusion/786661871.webp", 400, 400, "#55839C"], ["https://www.jonaso.de/artworks/stablediffusion/841929328.webp", 400, 400, "#516880"], ["https://www.jonaso.de/artworks/stablediffusion/298092185.webp", 400, 400, "#6A87AE"], ["https://www.jonaso.de/artworks/stablediffusion/1344056596.webp", 400, 400, "#81ABCA"], ["https://www.jonaso.de/artworks/stablediffusion/2867543039.webp", 400, 400, "#4A7C91"], ["https://www.jonaso.de/artworks/stablediffusion/2661993382.webp", 400, 400, "#819EB9"], ["https://www.jonaso.de/artworks/stablediffusion/2080967208.webp", 400, 400, "#888E91"], ["https://www.jonaso.de/artworks/stablediffusion/4020160818.webp", 400, 400, "#655E65"], ["https://www.jonaso.de/artworks/stablediffusion/1256664672.webp", 400, 400, "#4A595B"], ["https://www.jonaso.de/artworks/stablediffusion/2420146896.webp", 400, 200, "#435D54"], ["https://www.jonaso.de/artworks/stablediffusion/1054369841.webp", 400, 400, "#564551"], ["https://www.jonaso.de/artworks/stablediffusion/2762533266.webp", 400, 400, "#575246"], ["https://www.jonaso.de/artworks/stablediffusion/3498825360.webp", 400, 400, "#64554B"], ["https://www.jonaso.de/artworks/stablediffusion/1046777896.webp", 400, 500, "#988B7F"], ["https://www.jonaso.de/artworks/stablediffusion/1175370432.webp", 400, 500, "#7B7876"], ["https://www.jonaso.de/artworks/stablediffusion/745360134.webp", 400, 500, "#5B5B5F"], ["https://www.jonaso.de/artworks/stablediffusion/3692126515.webp", 400, 500, "#885A3A"], ["https://www.jonaso.de/artworks/stablediffusion/3139163209.webp", 400, 500, "#745438"], ["https://www.jonaso.de/artworks/stablediffusion/2742929516.webp", 400, 500, "#60757F"], ["https://www.jonaso.de/artworks/stablediffusion/1370881994.webp", 400, 500, "#595858"], ["https://www.jonaso.de/artworks/stablediffusion/1482183827.webp", 400, 500, "#62656A"], ["https://www.jonaso.de/artworks/stablediffusion/3298280091.webp", 400, 500, "#808A9B"], ["https://www.jonaso.de/artworks/stablediffusion/11076596.webp", 400, 500, "#978378"], ["https://www.jonaso.de/artworks/stablediffusion/397661668.webp", 400, 500, "#555A53"], ["https://www.jonaso.de/artworks/stablediffusion/1352737518.webp", 400, 500, "#69615C"], ["https://www.jonaso.de/artworks/stablediffusion/1168604306.webp", 400, 500, "#68695B"], ["https://www.jonaso.de/artworks/stablediffusion/512291800.webp", 400, 500, "#5B5753"], ["https://www.jonaso.de/artworks/stablediffusion/1015168323.webp", 400, 500, "#828281"], ["https://www.jonaso.de/artworks/stablediffusion/1426687366.webp", 400, 500, "#8B867F"], ["https://www.jonaso.de/artworks/stablediffusion/1564159554.webp", 400, 400, "#7D7769"], ["https://www.jonaso.de/artworks/stablediffusion/3293931038.webp", 400, 400, "#7E7D6F"], ["https://www.jonaso.de/artworks/stablediffusion/1205212942.webp", 400, 400, "#6B6963"], ["https://www.jonaso.de/artworks/stablediffusion/2759980742.webp", 400, 400, "#60809A"], ["https://www.jonaso.de/artworks/stablediffusion/3895801034.webp", 400, 400, "#65513F"], ["https://www.jonaso.de/artworks/stablediffusion/918210591.webp", 400, 400, "#4F3A2C"], ["https://www.jonaso.de/artworks/stablediffusion/1631927646.webp", 400, 400, "#637274"], ["https://www.jonaso.de/artworks/stablediffusion/4280549113.webp", 400, 400, "#7C563B"], ["https://www.jonaso.de/artworks/stablediffusion/3766090571.webp", 400, 400, "#836F66"], ["https://www.jonaso.de/artworks/stablediffusion/2772422602.webp", 400, 400, "#836061"], ["https://www.jonaso.de/artworks/stablediffusion/967981641.webp", 400, 400, "#86635B"], ["https://www.jonaso.de/artworks/stablediffusion/4031537546.webp", 400, 400, "#938E8A"], ["https://www.jonaso.de/artworks/stablediffusion/3564861981.webp", 400, 400, "#7D8A7D"], ["https://www.jonaso.de/artworks/stablediffusion/2167661265.webp", 400, 400, "#A7A49A"], ["https://www.jonaso.de/artworks/stablediffusion/3815090187.webp", 400, 400, "#7A7457"], ["https://www.jonaso.de/artworks/stablediffusion/3125874646-2.webp", 400, 400, "#989B99"], ["https://www.jonaso.de/artworks/stablediffusion/70880372.webp", 400, 550, "#AC5C3F"], ["https://www.jonaso.de/artworks/stablediffusion/3862510340.webp", 400, 400, "#82725F"], ["https://www.jonaso.de/artworks/stablediffusion/934835.webp", 400, 400, "#947F70"], ["https://www.jonaso.de/artworks/stablediffusion/1202959931.webp", 400, 400, "#6E6D56"], ["https://www.jonaso.de/artworks/stablediffusion/4026914676.webp", 400, 400, "#708A84"], ["https://www.jonaso.de/artworks/stablediffusion/286034651.webp", 400, 400, "#736356"], ["https://www.jonaso.de/artworks/stablediffusion/3685342603.webp", 400, 400, "#78766E"], ["https://www.jonaso.de/artworks/stablediffusion/1443366773.webp", 400, 400, "#434D4C"], ["https://www.jonaso.de/artworks/stablediffusion/4292051424.webp", 400, 400, "#696263"], ["https://www.jonaso.de/artworks/stablediffusion/3077411671.webp", 400, 400, "#6D7252"], ["https://www.jonaso.de/artworks/stablediffusion/115974887.webp", 400, 400, "#76412E"], ["https://www.jonaso.de/artworks/stablediffusion/3361965350.webp", 400, 400, "#895D29"], ["https://www.jonaso.de/artworks/stablediffusion/1515563327.webp", 400, 400, "#545D60"], ["https://www.jonaso.de/artworks/stablediffusion/3704632390.webp", 400, 400, "#9CA18C"], ["https://www.jonaso.de/artworks/stablediffusion/1730199245.webp", 400, 400, "#6B2131"], ["https://www.jonaso.de/artworks/stablediffusion/1622100500.webp", 400, 400, "#8E8979"], ["https://www.jonaso.de/artworks/stablediffusion/252160969.webp", 400, 320, "#8E7A5C"], ["https://www.jonaso.de/artworks/stablediffusion/638254864.webp", 400, 320, "#978F94"], ["https://www.jonaso.de/artworks/stablediffusion/618412219.webp", 400, 400, "#827451"], ["https://www.jonaso.de/artworks/stablediffusion/39681432.webp", 400, 290, "#7FAAAD"], ["https://www.jonaso.de/artworks/stablediffusion/1261068825.webp", 400, 400, "#5A6269"], ["https://www.jonaso.de/artworks/stablediffusion/4223135081.webp", 400, 400, "#585A53"], ["https://www.jonaso.de/artworks/stablediffusion/4010129890.webp", 400, 400, "#747D7E"], ["https://www.jonaso.de/artworks/stablediffusion/3244919919.webp", 400, 400, "#7A7D7F"], ["https://www.jonaso.de/artworks/stablediffusion/2122945218.webp", 400, 400, "#717070"], ["https://www.jonaso.de/artworks/stablediffusion/2425110445.webp", 400, 400, "#62655F"], ["https://www.jonaso.de/artworks/stablediffusion/2216445169.webp", 400, 400, "#6C6A65"], ["https://www.jonaso.de/artworks/stablediffusion/1070902671.webp", 400, 400, "#A7AAA7"], ["https://www.jonaso.de/artworks/stablediffusion/1859415547.webp", 400, 400, "#AAAFAC"], ["https://www.jonaso.de/artworks/stablediffusion/61601027.webp", 400, 500, "#797160"], ["https://www.jonaso.de/artworks/stablediffusion/3862279571.webp", 400, 400, "#8B877C"], ["https://www.jonaso.de/artworks/stablediffusion/3518824624.webp", 400, 400, "#646D64"], ["https://www.jonaso.de/artworks/stablediffusion/307982177.webp", 400, 400, "#767266"], ["https://www.jonaso.de/artworks/stablediffusion/3849539863.webp", 400, 400, "#7A776F"], ["https://www.jonaso.de/artworks/stablediffusion/1566500910.webp", 400, 400, "#553D30"], ["https://www.jonaso.de/artworks/stablediffusion/3874331517.webp", 400, 400, "#666547"], ["https://www.jonaso.de/artworks/stablediffusion/3834582694.webp", 400, 400, "#6A6F5E"], ["https://www.jonaso.de/artworks/stablediffusion/288608593.webp", 400, 400, "#674132"], ["https://www.jonaso.de/artworks/stablediffusion/719258478.webp", 400, 400, "#87584A"], ["https://www.jonaso.de/artworks/stablediffusion/1842679798.webp", 400, 400, "#6F5E66"], ["https://www.jonaso.de/artworks/stablediffusion/968972657.webp", 400, 400, "#596059"], ["https://www.jonaso.de/artworks/stablediffusion/4258782694.webp", 400, 400, "#777D7A"], ["https://www.jonaso.de/artworks/stablediffusion/2604611934.webp", 400, 400, "#8B7174"], ["https://www.jonaso.de/artworks/stablediffusion/3006226735.webp", 400, 400, "#876F4A"], ["https://www.jonaso.de/artworks/stablediffusion/2021266338.webp", 400, 400, "#726358"], ["https://www.jonaso.de/artworks/stablediffusion/906653852.webp", 400, 400, "#7B7574"]] \ No newline at end of file diff --git a/public/artworks/latent-diffusion/index.html b/public/artworks/latent-diffusion/index.html new file mode 100644 index 0000000000..b305e3c6b0 --- /dev/null +++ b/public/artworks/latent-diffusion/index.html @@ -0,0 +1,171 @@ + + + \ No newline at end of file diff --git a/public/artworks/midjourney/index.BAK.paginated/index.html b/public/artworks/midjourney/index.BAK.paginated/index.html new file mode 100644 index 0000000000..68d6caeacd --- /dev/null +++ b/public/artworks/midjourney/index.BAK.paginated/index.html @@ -0,0 +1,171 @@ + + + \ No newline at end of file diff --git a/public/artworks/midjourney/index.html b/public/artworks/midjourney/index.html new file mode 100644 index 0000000000..26d6061eab --- /dev/null +++ b/public/artworks/midjourney/index.html @@ -0,0 +1,171 @@ + + + \ No newline at end of file diff --git a/public/artworks/misc/index.html b/public/artworks/misc/index.html new file mode 100644 index 0000000000..8c0c2a1f0b --- /dev/null +++ b/public/artworks/misc/index.html @@ -0,0 +1,171 @@ + + + \ No newline at end of file diff --git a/public/artworks/stablediffusion/index.html b/public/artworks/stablediffusion/index.html new file mode 100644 index 0000000000..ac711c0197 --- /dev/null +++ b/public/artworks/stablediffusion/index.html @@ -0,0 +1,171 @@ + + + \ No newline at end of file diff --git a/public/artworks/vqganclip/index.html b/public/artworks/vqganclip/index.html new file mode 100644 index 0000000000..c78b9037be --- /dev/null +++ b/public/artworks/vqganclip/index.html @@ -0,0 +1,171 @@ + + + \ No newline at end of file diff --git a/public/bb69eb6ce367c35ad67a2f5ef30e227761ad9eb3-69dc67de6889e9d68c56.js b/public/bb69eb6ce367c35ad67a2f5ef30e227761ad9eb3-69dc67de6889e9d68c56.js deleted file mode 100644 index 4dd7509ab2..0000000000 --- a/public/bb69eb6ce367c35ad67a2f5ef30e227761ad9eb3-69dc67de6889e9d68c56.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see bb69eb6ce367c35ad67a2f5ef30e227761ad9eb3-69dc67de6889e9d68c56.js.LICENSE.txt */ -(self.webpackChunkjonas_de=self.webpackChunkjonas_de||[]).push([[772],{96563:function(e,t,n){"use strict";n.d(t,{R:function(){return p}});var r=n(63366),o=n(67294),i=n(8812),a=n(94578),c=n(73935),u=n(73129);var s=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),o=0;o0?o.cloneElement(c,a):c;return o.createElement(u,{innerRef:n},p)}},73129:function(e,t,n){"use strict";n.d(t,{n:function(){return r}});var r=function(e,t){"function"!=typeof e?null!==e&&"object"==typeof e&&(e.current=t):e(t)}},47089:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(81829);n(45697);var o=n(67294);function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function c(e,t){for(var n=0;n=0;r-=1)this.handlers[r].called||(this.handlers[r].called=!0,this.handlers[r](e));for(var o=n;o>=0;o-=1)this.handlers[o].called=!1}else(0,this.handlers[n])(e)}},{key:"hasHandlers",value:function(){return this.handlers.length>0}},{key:"removeHandlers",value:function(t){for(var n=[],r=this.handlers.length,o=0;o0;var t=this.handlerSets.get(e);return!!t&&t.hasHandlers()}},{key:"removeHandlers",value:function(t,n){var r=m(this.handlerSets);if(!r.has(t))return new e(this.poolName,r);var o=r.get(t).removeHandlers(n);return o.hasHandlers()?r.set(t,o):r.delete(t),new e(this.poolName,r)}}]),e}();s(y,"createByType",(function(e,t,n){var r=new Map;return r.set(t,new h(n)),new y(e,r)}));var b=function(){function e(t){var n=this;a(this,e),s(this,"handlers",new Map),s(this,"pools",new Map),s(this,"target",void 0),s(this,"createEmitter",(function(e){return function(t){n.pools.forEach((function(n){n.dispatchEvent(e,t)}))}})),this.target=t}return u(e,[{key:"addHandlers",value:function(e,t,n){if(this.pools.has(e)){var r=this.pools.get(e);this.pools.set(e,r.addHandlers(t,n))}else this.pools.set(e,y.createByType(e,t,n));this.handlers.has(t)||this.addTargetHandler(t)}},{key:"hasHandlers",value:function(){return this.handlers.size>0}},{key:"removeHandlers",value:function(e,t,n){if(this.pools.has(e)){var r=this.pools.get(e).removeHandlers(t,n);r.hasHandlers()?this.pools.set(e,r):this.pools.delete(e);var o=!1;this.pools.forEach((function(e){return o=o||e.hasHandlers(t)})),o||this.removeTargetHandler(t)}}},{key:"addTargetHandler",value:function(e){var t=this.createEmitter(e);this.handlers.set(e,t),this.target.addEventListener(e,t,!0)}},{key:"removeTargetHandler",value:function(e){this.handlers.has(e)&&(this.target.removeEventListener(e,this.handlers.get(e),!0),this.handlers.delete(e))}}]),e}(),w=function(){function e(){var t=this;a(this,e),s(this,"targets",new Map),s(this,"getTarget",(function(e){var n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=g(e);if(t.targets.has(r))return t.targets.get(r);if(!n)return null;var o=new b(r);return t.targets.set(r,o),o})),s(this,"removeTarget",(function(e){t.targets.delete(g(e))}))}return u(e,[{key:"sub",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(r.canUseDOM){var o=n.target,i=void 0===o?document:o,a=n.pool,c=void 0===a?"default":a;this.getTarget(i).addHandlers(c,e,v(t))}}},{key:"unsub",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(r.canUseDOM){var o=n.target,i=void 0===o?document:o,a=n.pool,c=void 0===a?"default":a,u=this.getTarget(i,!1);u&&(u.removeHandlers(c,e,v(t)),u.hasHandlers()||this.removeTarget(i))}}}]),e}(),T=new w,C=function(e){function t(){return a(this,t),d(this,f(t).apply(this,arguments))}return l(t,o.PureComponent),u(t,[{key:"componentDidMount",value:function(){this.subscribe(this.props)}},{key:"componentDidUpdate",value:function(e){this.unsubscribe(e),this.subscribe(this.props)}},{key:"componentWillUnmount",value:function(){this.unsubscribe(this.props)}},{key:"subscribe",value:function(e){var t=e.name,n=e.on,r=e.pool,o=e.target;T.sub(t,n,{pool:r,target:o})}},{key:"unsubscribe",value:function(e){var t=e.name,n=e.on,r=e.pool,o=e.target;T.unsub(t,n,{pool:r,target:o})}},{key:"render",value:function(){return null}}]),t}();s(C,"defaultProps",{pool:"default",target:"document"}),C.propTypes={},t.instance=T,t.default=C},88757:function(e,t,n){"use strict";var r;r=n(47089),e.exports=r.default,e.exports.instance=r.instance},81829:function(e,t,n){var r;!function(){"use strict";var o=!("undefined"==typeof window||!window.document||!window.document.createElement),i={canUseDOM:o,canUseWorkers:"undefined"!=typeof Worker,canUseEventListeners:o&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:o&&!!window.screen};void 0===(r=function(){return i}.call(t,n,t,e))||(e.exports=r)}()},15176:function(e){"use strict";for(var t=function(e){return null!==e&&!Array.isArray(e)&&"object"==typeof e},n={3:"Cancel",6:"Help",8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",28:"Convert",29:"NonConvert",30:"Accept",31:"ModeChange",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",41:"Select",42:"Print",43:"Execute",44:"PrintScreen",45:"Insert",46:"Delete",48:["0",")"],49:["1","!"],50:["2","@"],51:["3","#"],52:["4","$"],53:["5","%"],54:["6","^"],55:["7","&"],56:["8","*"],57:["9","("],91:"OS",93:"ContextMenu",144:"NumLock",145:"ScrollLock",181:"VolumeMute",182:"VolumeDown",183:"VolumeUp",186:[";",":"],187:["=","+"],188:[",","<"],189:["-","_"],190:[".",">"],191:["/","?"],192:["`","~"],219:["[","{"],220:["\\","|"],221:["]","}"],222:["'",'"'],224:"Meta",225:"AltGraph",246:"Attn",247:"CrSel",248:"ExSel",249:"EraseEof",250:"Play",251:"ZoomOut"},r=0;r<24;r+=1)n[112+r]="F"+(r+1);for(var o=0;o<26;o+=1){var i=o+65;n[i]=[String.fromCharCode(i+32),String.fromCharCode(i)]}var a={codes:n,getCode:function(e){return t(e)?e.keyCode||e.which||this[e.key]:this[e]},getKey:function(e){var r=t(e);if(r&&e.key)return e.key;var o=n[r?e.keyCode||e.which:e];return Array.isArray(o)&&(o=r?o[e.shiftKey?1:0]:o[0]),o},Cancel:3,Help:6,Backspace:8,Tab:9,Clear:12,Enter:13,Shift:16,Control:17,Alt:18,Pause:19,CapsLock:20,Escape:27,Convert:28,NonConvert:29,Accept:30,ModeChange:31," ":32,PageUp:33,PageDown:34,End:35,Home:36,ArrowLeft:37,ArrowUp:38,ArrowRight:39,ArrowDown:40,Select:41,Print:42,Execute:43,PrintScreen:44,Insert:45,Delete:46,0:48,")":48,1:49,"!":49,2:50,"@":50,3:51,"#":51,4:52,$:52,5:53,"%":53,6:54,"^":54,7:55,"&":55,8:56,"*":56,9:57,"(":57,a:65,A:65,b:66,B:66,c:67,C:67,d:68,D:68,e:69,E:69,f:70,F:70,g:71,G:71,h:72,H:72,i:73,I:73,j:74,J:74,k:75,K:75,l:76,L:76,m:77,M:77,n:78,N:78,o:79,O:79,p:80,P:80,q:81,Q:81,r:82,R:82,s:83,S:83,t:84,T:84,u:85,U:85,v:86,V:86,w:87,W:87,x:88,X:88,y:89,Y:89,z:90,Z:90,OS:91,ContextMenu:93,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,F13:124,F14:125,F15:126,F16:127,F17:128,F18:129,F19:130,F20:131,F21:132,F22:133,F23:134,F24:135,NumLock:144,ScrollLock:145,VolumeMute:181,VolumeDown:182,VolumeUp:183,";":186,":":186,"=":187,"+":187,",":188,"<":188,"-":189,_:189,".":190,">":190,"/":191,"?":191,"`":192,"~":192,"[":219,"{":219,"\\":220,"|":220,"]":221,"}":221,"'":222,'"':222,Meta:224,AltGraph:225,Attn:246,CrSel:247,ExSel:248,EraseEof:249,Play:250,ZoomOut:251};a.Spacebar=a[" "],a.Digit0=a[0],a.Digit1=a[1],a.Digit2=a[2],a.Digit3=a[3],a.Digit4=a[4],a.Digit5=a[5],a.Digit6=a[6],a.Digit7=a[7],a.Digit8=a[8],a.Digit9=a[9],a.Tilde=a["~"],a.GraveAccent=a["`"],a.ExclamationPoint=a["!"],a.AtSign=a["@"],a.PoundSign=a["#"],a.PercentSign=a["%"],a.Caret=a["^"],a.Ampersand=a["&"],a.PlusSign=a["+"],a.MinusSign=a["-"],a.EqualsSign=a["="],a.DivisionSign=a["/"],a.MultiplicationSign=a["*"],a.Comma=a[","],a.Decimal=a["."],a.Colon=a[":"],a.Semicolon=a[";"],a.Pipe=a["|"],a.BackSlash=a["\\"],a.QuestionMark=a["?"],a.SingleQuote=a["'"],a.DoubleQuote=a['"'],a.LeftCurlyBrace=a["{"],a.RightCurlyBrace=a["}"],a.LeftParenthesis=a["("],a.RightParenthesis=a[")"],a.LeftAngleBracket=a["<"],a.RightAngleBracket=a[">"],a.LeftSquareBracket=a["["],a.RightSquareBracket=a["]"],e.exports=a},8242:function(e,t,n){"use strict";var r=n(93887),o=1/0;t.Z=function(e){return e?(e=(0,r.Z)(e))===o||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}},93887:function(e,t,n){"use strict";n.d(t,{Z:function(){return d}});var r=/\s/;var o=function(e){for(var t=e.length;t--&&r.test(e.charAt(t)););return t},i=/^\s+/;var a=function(e){return e?e.slice(0,o(e)+1).replace(i,""):e},c=n(54760),u=n(97110),s=/^[-+]0x[0-9a-f]+$/i,l=/^0b[01]+$/i,f=/^0o[0-7]+$/i,p=parseInt;var d=function(e){if("number"==typeof e)return e;if((0,u.Z)(e))return NaN;if((0,c.Z)(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=(0,c.Z)(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=a(e);var n=l.test(e);return n||f.test(e)?p(e.slice(2),n?2:8):s.test(e)?NaN:+e}},32993:function(e){var t="undefined"!=typeof Element,n="function"==typeof Map,r="function"==typeof Set,o="function"==typeof ArrayBuffer&&!!ArrayBuffer.isView;function i(e,a){if(e===a)return!0;if(e&&a&&"object"==typeof e&&"object"==typeof a){if(e.constructor!==a.constructor)return!1;var c,u,s,l;if(Array.isArray(e)){if((c=e.length)!=a.length)return!1;for(u=c;0!=u--;)if(!i(e[u],a[u]))return!1;return!0}if(n&&e instanceof Map&&a instanceof Map){if(e.size!==a.size)return!1;for(l=e.entries();!(u=l.next()).done;)if(!a.has(u.value[0]))return!1;for(l=e.entries();!(u=l.next()).done;)if(!i(u.value[1],a.get(u.value[0])))return!1;return!0}if(r&&e instanceof Set&&a instanceof Set){if(e.size!==a.size)return!1;for(l=e.entries();!(u=l.next()).done;)if(!a.has(u.value[0]))return!1;return!0}if(o&&ArrayBuffer.isView(e)&&ArrayBuffer.isView(a)){if((c=e.length)!=a.length)return!1;for(u=c;0!=u--;)if(e[u]!==a[u])return!1;return!0}if(e.constructor===RegExp)return e.source===a.source&&e.flags===a.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===a.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===a.toString();if((c=(s=Object.keys(e)).length)!==Object.keys(a).length)return!1;for(u=c;0!=u--;)if(!Object.prototype.hasOwnProperty.call(a,s[u]))return!1;if(t&&e instanceof Element)return!1;for(u=c;0!=u--;)if(("_owner"!==s[u]&&"__v"!==s[u]&&"__o"!==s[u]||!e.$$typeof)&&!i(e[s[u]],a[s[u]]))return!1;return!0}return e!=e&&a!=a}e.exports=function(e,t){try{return i(e,t)}catch(n){if((n.message||"").match(/stack|recursion/i))return console.warn("react-fast-compare cannot handle circular refs"),!1;throw n}}},35414:function(e,t,n){"use strict";n.d(t,{q:function(){return me}});var r,o,i,a,c=n(45697),u=n.n(c),s=n(24839),l=n.n(s),f=n(32993),p=n.n(f),d=n(67294),h=n(46494),m=n.n(h),v="bodyAttributes",g="htmlAttributes",y="titleAttributes",b={BASE:"base",BODY:"body",HEAD:"head",HTML:"html",LINK:"link",META:"meta",NOSCRIPT:"noscript",SCRIPT:"script",STYLE:"style",TITLE:"title"},w=(Object.keys(b).map((function(e){return b[e]})),"charset"),T="cssText",C="href",E="http-equiv",O="innerHTML",S="itemprop",k="name",A="property",Z="rel",P="src",M="target",R={accesskey:"accessKey",charset:"charSet",class:"className",contenteditable:"contentEditable",contextmenu:"contextMenu","http-equiv":"httpEquiv",itemprop:"itemProp",tabindex:"tabIndex"},D="defaultTitle",N="defer",L="encodeSpecialCharacters",j="onChangeClientState",x="titleTemplate",F=Object.keys(R).reduce((function(e,t){return e[R[t]]=t,e}),{}),U=[b.NOSCRIPT,b.SCRIPT,b.STYLE],H="data-react-helmet",I="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},G=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},_=function(){function e(e,t){for(var n=0;n=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n},z=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t},q=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return!1===t?String(e):String(e).replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")},W=function(e){var t=X(e,b.TITLE),n=X(e,x);if(n&&t)return n.replace(/%s/g,(function(){return Array.isArray(t)?t.join(""):t}));var r=X(e,D);return t||r||void 0},Y=function(e){return X(e,j)||function(){}},V=function(e,t){return t.filter((function(t){return void 0!==t[e]})).map((function(t){return t[e]})).reduce((function(e,t){return B({},e,t)}),{})},$=function(e,t){return t.filter((function(e){return void 0!==e[b.BASE]})).map((function(e){return e[b.BASE]})).reverse().reduce((function(t,n){if(!t.length)for(var r=Object.keys(n),o=0;o=0;n--){var r=e[n];if(r.hasOwnProperty(t))return r[t]}return null},J=(r=Date.now(),function(e){var t=Date.now();t-r>16?(r=t,e(t)):setTimeout((function(){J(e)}),0)}),ee=function(e){return clearTimeout(e)},te="undefined"!=typeof window?window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||J:n.g.requestAnimationFrame||J,ne="undefined"!=typeof window?window.cancelAnimationFrame||window.webkitCancelAnimationFrame||window.mozCancelAnimationFrame||ee:n.g.cancelAnimationFrame||ee,re=function(e){return console&&"function"==typeof console.warn&&console.warn(e)},oe=null,ie=function(e,t){var n=e.baseTag,r=e.bodyAttributes,o=e.htmlAttributes,i=e.linkTags,a=e.metaTags,c=e.noscriptTags,u=e.onChangeClientState,s=e.scriptTags,l=e.styleTags,f=e.title,p=e.titleAttributes;ue(b.BODY,r),ue(b.HTML,o),ce(f,p);var d={baseTag:se(b.BASE,n),linkTags:se(b.LINK,i),metaTags:se(b.META,a),noscriptTags:se(b.NOSCRIPT,c),scriptTags:se(b.SCRIPT,s),styleTags:se(b.STYLE,l)},h={},m={};Object.keys(d).forEach((function(e){var t=d[e],n=t.newTags,r=t.oldTags;n.length&&(h[e]=n),r.length&&(m[e]=d[e].oldTags)})),t&&t(),u(e,h,m)},ae=function(e){return Array.isArray(e)?e.join(""):e},ce=function(e,t){void 0!==e&&document.title!==e&&(document.title=ae(e)),ue(b.TITLE,t)},ue=function(e,t){var n=document.getElementsByTagName(e)[0];if(n){for(var r=n.getAttribute(H),o=r?r.split(","):[],i=[].concat(o),a=Object.keys(t),c=0;c=0;f--)n.removeAttribute(i[f]);o.length===i.length?n.removeAttribute(H):n.getAttribute(H)!==a.join(",")&&n.setAttribute(H,a.join(","))}},se=function(e,t){var n=document.head||document.querySelector(b.HEAD),r=n.querySelectorAll(e+"["+"data-react-helmet]"),o=Array.prototype.slice.call(r),i=[],a=void 0;return t&&t.length&&t.forEach((function(t){var n=document.createElement(e);for(var r in t)if(t.hasOwnProperty(r))if(r===O)n.innerHTML=t.innerHTML;else if(r===T)n.styleSheet?n.styleSheet.cssText=t.cssText:n.appendChild(document.createTextNode(t.cssText));else{var c=void 0===t[r]?"":t[r];n.setAttribute(r,c)}n.setAttribute(H,"true"),o.some((function(e,t){return a=t,n.isEqualNode(e)}))?o.splice(a,1):i.push(n)})),o.forEach((function(e){return e.parentNode.removeChild(e)})),i.forEach((function(e){return n.appendChild(e)})),{oldTags:o,newTags:i}},le=function(e){return Object.keys(e).reduce((function(t,n){var r=void 0!==e[n]?n+'="'+e[n]+'"':""+n;return t?t+" "+r:r}),"")},fe=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.keys(e).reduce((function(t,n){return t[R[n]||n]=e[n],t}),t)},pe=function(e,t,n){switch(e){case b.TITLE:return{toComponent:function(){return e=t.title,n=t.titleAttributes,(r={key:e})[H]=!0,o=fe(n,r),[d.createElement(b.TITLE,o,e)];var e,n,r,o},toString:function(){return function(e,t,n,r){var o=le(n),i=ae(t);return o?"<"+e+' data-react-helmet="true" '+o+">"+q(i,r)+"":"<"+e+' data-react-helmet="true">'+q(i,r)+""}(e,t.title,t.titleAttributes,n)}};case v:case g:return{toComponent:function(){return fe(t)},toString:function(){return le(t)}};default:return{toComponent:function(){return function(e,t){return t.map((function(t,n){var r,o=((r={key:n})[H]=!0,r);return Object.keys(t).forEach((function(e){var n=R[e]||e;if(n===O||n===T){var r=t.innerHTML||t.cssText;o.dangerouslySetInnerHTML={__html:r}}else o[n]=t[e]})),d.createElement(e,o)}))}(e,t)},toString:function(){return function(e,t,n){return t.reduce((function(t,r){var o=Object.keys(r).filter((function(e){return!(e===O||e===T)})).reduce((function(e,t){var o=void 0===r[t]?t:t+'="'+q(r[t],n)+'"';return e?e+" "+o:o}),""),i=r.innerHTML||r.cssText||"",a=-1===U.indexOf(e);return t+"<"+e+' data-react-helmet="true" '+o+(a?"/>":">"+i+"")}),"")}(e,t,n)}}}},de=function(e){var t=e.baseTag,n=e.bodyAttributes,r=e.encode,o=e.htmlAttributes,i=e.linkTags,a=e.metaTags,c=e.noscriptTags,u=e.scriptTags,s=e.styleTags,l=e.title,f=void 0===l?"":l,p=e.titleAttributes;return{base:pe(b.BASE,t,r),bodyAttributes:pe(v,n,r),htmlAttributes:pe(g,o,r),link:pe(b.LINK,i,r),meta:pe(b.META,a,r),noscript:pe(b.NOSCRIPT,c,r),script:pe(b.SCRIPT,u,r),style:pe(b.STYLE,s,r),title:pe(b.TITLE,{title:f,titleAttributes:p},r)}},he=l()((function(e){return{baseTag:$([C,M],e),bodyAttributes:V(v,e),defer:X(e,N),encode:X(e,L),htmlAttributes:V(g,e),linkTags:Q(b.LINK,[Z,C],e),metaTags:Q(b.META,[k,w,E,A,S],e),noscriptTags:Q(b.NOSCRIPT,[O],e),onChangeClientState:Y(e),scriptTags:Q(b.SCRIPT,[P,O],e),styleTags:Q(b.STYLE,[T],e),title:W(e),titleAttributes:V(y,e)}}),(function(e){oe&&ne(oe),e.defer?oe=te((function(){ie(e,(function(){oe=null}))})):(ie(e),oe=null)}),de)((function(){return null})),me=(o=he,a=i=function(e){function t(){return G(this,t),z(this,e.apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.shouldComponentUpdate=function(e){return!p()(this.props,e)},t.prototype.mapNestedChildrenToProps=function(e,t){if(!t)return null;switch(e.type){case b.SCRIPT:case b.NOSCRIPT:return{innerHTML:t};case b.STYLE:return{cssText:t}}throw new Error("<"+e.type+" /> elements are self-closing and can not contain children. Refer to our API for more information.")},t.prototype.flattenArrayTypeChildren=function(e){var t,n=e.child,r=e.arrayTypeChildren,o=e.newChildProps,i=e.nestedChildren;return B({},r,((t={})[n.type]=[].concat(r[n.type]||[],[B({},o,this.mapNestedChildrenToProps(n,i))]),t))},t.prototype.mapObjectTypeChildren=function(e){var t,n,r=e.child,o=e.newProps,i=e.newChildProps,a=e.nestedChildren;switch(r.type){case b.TITLE:return B({},o,((t={})[r.type]=a,t.titleAttributes=B({},i),t));case b.BODY:return B({},o,{bodyAttributes:B({},i)});case b.HTML:return B({},o,{htmlAttributes:B({},i)})}return B({},o,((n={})[r.type]=B({},i),n))},t.prototype.mapArrayTypeChildrenToProps=function(e,t){var n=B({},t);return Object.keys(e).forEach((function(t){var r;n=B({},n,((r={})[t]=e[t],r))})),n},t.prototype.warnOnInvalidChildren=function(e,t){return!0},t.prototype.mapChildrenToProps=function(e,t){var n=this,r={};return d.Children.forEach(e,(function(e){if(e&&e.props){var o=e.props,i=o.children,a=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.keys(e).reduce((function(t,n){return t[F[n]||n]=e[n],t}),t)}(K(o,["children"]));switch(n.warnOnInvalidChildren(e,i),e.type){case b.LINK:case b.META:case b.NOSCRIPT:case b.SCRIPT:case b.STYLE:r=n.flattenArrayTypeChildren({child:e,arrayTypeChildren:r,newChildProps:a,nestedChildren:i});break;default:t=n.mapObjectTypeChildren({child:e,newProps:t,newChildProps:a,nestedChildren:i})}}})),t=this.mapArrayTypeChildrenToProps(r,t)},t.prototype.render=function(){var e=this.props,t=e.children,n=K(e,["children"]),r=B({},n);return t&&(r=this.mapChildrenToProps(t,r)),d.createElement(o,r)},_(t,null,[{key:"canUseDOM",set:function(e){o.canUseDOM=e}}]),t}(d.Component),i.propTypes={base:u().object,bodyAttributes:u().object,children:u().oneOfType([u().arrayOf(u().node),u().node]),defaultTitle:u().string,defer:u().bool,encodeSpecialCharacters:u().bool,htmlAttributes:u().object,link:u().arrayOf(u().object),meta:u().arrayOf(u().object),noscript:u().arrayOf(u().object),onChangeClientState:u().func,script:u().arrayOf(u().object),style:u().arrayOf(u().object),title:u().string,titleAttributes:u().object,titleTemplate:u().string},i.defaultProps={defer:!0,encodeSpecialCharacters:!0},i.peek=o.peek,i.rewind=function(){var e=o.rewind();return e||(e=de({baseTag:[],bodyAttributes:{},encodeSpecialCharacters:!0,htmlAttributes:{},linkTags:[],metaTags:[],noscriptTags:[],scriptTags:[],styleTags:[],title:"",titleAttributes:{}})),e},a);me.renderStatic=me.rewind},10165:function(e,t){"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,i=n?Symbol.for("react.fragment"):60107,a=n?Symbol.for("react.strict_mode"):60108,c=n?Symbol.for("react.profiler"):60114,u=n?Symbol.for("react.provider"):60109,s=n?Symbol.for("react.context"):60110,l=n?Symbol.for("react.async_mode"):60111,f=n?Symbol.for("react.concurrent_mode"):60111,p=n?Symbol.for("react.forward_ref"):60112,d=n?Symbol.for("react.suspense"):60113,h=n?Symbol.for("react.suspense_list"):60120,m=n?Symbol.for("react.memo"):60115,v=n?Symbol.for("react.lazy"):60116,g=n?Symbol.for("react.block"):60121,y=n?Symbol.for("react.fundamental"):60117,b=n?Symbol.for("react.responder"):60118,w=n?Symbol.for("react.scope"):60119;function T(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case l:case f:case i:case c:case a:case d:return e;default:switch(e=e&&e.$$typeof){case s:case p:case v:case m:case u:return e;default:return t}}case o:return t}}}function C(e){return T(e)===f}t.isForwardRef=function(e){return T(e)===p},t.isFragment=function(e){return T(e)===i}},8812:function(e,t,n){"use strict";e.exports=n(10165)},24839:function(e,t,n){"use strict";var r,o=n(67294),i=(r=o)&&"object"==typeof r&&"default"in r?r.default:r;function a(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var c=!("undefined"==typeof window||!window.document||!window.document.createElement);e.exports=function(e,t,n){if("function"!=typeof e)throw new Error("Expected reducePropsToState to be a function.");if("function"!=typeof t)throw new Error("Expected handleStateChangeOnClient to be a function.");if(void 0!==n&&"function"!=typeof n)throw new Error("Expected mapStateOnServer to either be undefined or a function.");return function(r){if("function"!=typeof r)throw new Error("Expected WrappedComponent to be a React component.");var u,s=[];function l(){u=e(s.map((function(e){return e.props}))),f.canUseDOM?t(u):n&&(u=n(u))}var f=function(e){var t,n;function o(){return e.apply(this,arguments)||this}n=e,(t=o).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n,o.peek=function(){return u},o.rewind=function(){if(o.canUseDOM)throw new Error("You may only call rewind() on the server. Call peek() to read the current state.");var e=u;return u=void 0,s=[],e};var a=o.prototype;return a.UNSAFE_componentWillMount=function(){s.push(this),l()},a.componentDidUpdate=function(){l()},a.componentWillUnmount=function(){var e=s.indexOf(this);s.splice(e,1),l()},a.render=function(){return i.createElement(r,this.props)},o}(o.PureComponent);return a(f,"displayName","SideEffect("+function(e){return e.displayName||e.name||"Component"}(r)+")"),a(f,"canUseDOM",c),f}}},3987:function(e,t,n){"use strict";n.d(t,{Z:function(){return re}});var r=n(87462),o=n(75287),i=n(85505),a=n(67294),c=n(79347),u=n(72219),s=n(19979),l=n(1924),f=n(63483),p=n(67673),d=n(94578),h="object"==typeof document&&null!==document,m="object"==typeof window&&null!==window&&window.self===window,v=function e(){return(0,o.Z)(e.override)?h&&m:e.override},g=n(30153),y=n(88757),b=n.n(y),w=n(73129),T=n(96563),C=n(15176),E=n.n(C),O=Math.max,S=Math.min;var k=function(e,t,n){return e>=S(t,n)&&e1?i-1:0),c=1;c1?c-1:0),s=1;s1?i-1:0),c=1;c1?a-1:0),u=1;u1?a-1:0),u=1;u-1:!!u&&(0,r.Z)(e,t,n)>-1};var h=function(e,t){for(var n=-1,r=null==e?0:e.length;++n=0||(o[n]=e[n]);return o}n.d(t,{Z:function(){return r}})}}]); \ No newline at end of file diff --git a/public/chunk-map.json b/public/chunk-map.json index a5efdf0fd1..f433b5e468 100644 --- a/public/chunk-map.json +++ b/public/chunk-map.json @@ -1 +1 @@ -{"polyfill":["/polyfill-49ad09b14a4fac6875f3.js"],"app":["/app-0e207e3c4b43cc418e2d.js"],"component---src-pages-404-js":["/component---src-pages-404-js-d8a1e6f747d842f2e471.js"],"component---src-pages-art-twitter-js":["/component---src-pages-art-twitter-js-975d105e0fcec38b5f24.js"],"component---src-pages-artworks-js":["/component---src-pages-artworks-js-635619aee6fdf8c58c1e.js"],"component---src-pages-cv-js":["/component---src-pages-cv-js-7eb9278b5449053e58be.js"],"component---src-pages-index-js":["/component---src-pages-index-js-6f3a37277fdaf98d679f.js"],"component---src-pages-jufo-js":["/component---src-pages-jufo-js-4e4f19e8156ff2ae2f9d.js"],"component---src-pages-projects-js":["/component---src-pages-projects-js-5656dd9e4916d0b7c3e6.js"],"component---src-pages-publications-js":["/component---src-pages-publications-js-6b0f4f75483851ae5bee.js"],"component---src-pages-research-influences-js":["/component---src-pages-research-influences-js-7cba491bdc0869403500.js"],"component---src-pages-research-interests-js":["/component---src-pages-research-interests-js-2cdc181ac02de5dfb2d8.js"],"component---src-pages-research-interests-treemap-js":["/component---src-pages-research-interests-treemap-js-7293db08dd21aa8dd862.js"],"component---src-pages-research-interests-wordcloud-js":["/component---src-pages-research-interests-wordcloud-js-922d3dab110b46b41043.js"],"component---src-pages-research-js":["/component---src-pages-research-js-9502f0e03486f10c926a.js"],"component---src-pages-research-reading-js":["/component---src-pages-research-reading-js-9430ace501ea93dfa4a4.js"],"component---src-pages-teaching-js":["/component---src-pages-teaching-js-7bddaccb0a850d4571ad.js"],"component---src-pages-ux-js":["/component---src-pages-ux-js-55ff834634900cd47145.js"]} \ No newline at end of file +{"app":["/app.js"],"component---src-pages-404-js":["/component---src-pages-404-js.js"],"component---src-pages-artworks-dalle-index-js":["/component---src-pages-artworks-dalle-index-js.js"],"component---src-pages-artworks-index-js":["/component---src-pages-artworks-index-js.js"],"component---src-pages-artworks-latent-diffusion-index-js":["/component---src-pages-artworks-latent-diffusion-index-js.js"],"component---src-pages-artworks-midjourney-index-bak-paginated-js":["/component---src-pages-artworks-midjourney-index-bak-paginated-js.js"],"component---src-pages-artworks-midjourney-index-js":["/component---src-pages-artworks-midjourney-index-js.js"],"component---src-pages-artworks-misc-index-js":["/component---src-pages-artworks-misc-index-js.js"],"component---src-pages-artworks-stablediffusion-index-js":["/component---src-pages-artworks-stablediffusion-index-js.js"],"component---src-pages-artworks-vqganclip-index-js":["/component---src-pages-artworks-vqganclip-index-js.js"],"component---src-pages-countries-js":["/component---src-pages-countries-js.js"],"component---src-pages-cv-js":["/component---src-pages-cv-js.js"],"component---src-pages-index-chatgptquote-jsx":["/component---src-pages-index-chatgptquote-jsx.js"],"component---src-pages-index-js":["/component---src-pages-index-js.js"],"component---src-pages-jufo-jsx":["/component---src-pages-jufo-jsx.js"],"component---src-pages-publications-js":["/component---src-pages-publications-js.js"],"component---src-pages-research-applications-js":["/component---src-pages-research-applications-js.js"],"component---src-pages-research-influences-js":["/component---src-pages-research-influences-js.js"],"component---src-pages-research-interests-js":[],"component---src-pages-research-interests-treemap-jsx":["/component---src-pages-research-interests-treemap-jsx.js"],"component---src-pages-research-interests-wordcloud-js":["/component---src-pages-research-interests-wordcloud-js.js"],"component---src-pages-research-js":["/component---src-pages-research-js.js"],"component---src-pages-research-network-js":["/component---src-pages-research-network-js.js"],"component---src-pages-research-projects-js":["/component---src-pages-research-projects-js.js"],"component---src-pages-research-reading-js":["/component---src-pages-research-reading-js.js"],"component---src-pages-teaching-jsx":["/component---src-pages-teaching-jsx.js"]} \ No newline at end of file diff --git a/public/commons-b1587d939bf143fc33d0.js b/public/commons-b1587d939bf143fc33d0.js deleted file mode 100644 index b1d8a4a7b0..0000000000 --- a/public/commons-b1587d939bf143fc33d0.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkjonas_de=self.webpackChunkjonas_de||[]).push([[351],{91811:function(e,t,r){Object.defineProperty(t,"__esModule",{value:!0}),t.Breakpoints=t.BreakpointConstraint=void 0;var n,i=r(89752);function o(e){return function(e){if(Array.isArray(e))return c(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||u(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==r)return;var n,i,o=[],a=!0,u=!1;try{for(r=r.call(e);!(a=(n=r.next()).done)&&(o.push(n.value),!t||o.length!==t);a=!0);}catch(c){u=!0,i=c}finally{try{a||null==r.return||r.return()}finally{if(u)throw i}}return o}(e,t)||u(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){if(e){if("string"==typeof e)return c(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?c(e,t):void 0}}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r=i._breakpoints[t]&&e=i._breakpoints[t]}))})),l(this,"valuesWithBreakpointProps",(function(e){var t,r=e.length,n=[];return i._sortedBreakpoints.forEach((function(i,o){var a=e[o];o0&&void 0!==arguments[0]?arguments[0]:e.validKeys(),n=r.reduce((function(e,r){return e[r]=t._mediaQueries[r],e}),{});return Object.entries(n).reduce((function(e,t){var r=a(t,2),n=r[0];return r[1].forEach((function(t,r){e.push((0,i.createRuleSet)((0,i.createClassName)(n,r),"not all and ".concat(t)))})),e}),[])}},{key:"shouldRenderMediaQuery",value:function(e,t){var r=this;if((e=this._normalizeProps(e)).lessThan){var n=this._breakpoints[e.lessThan];return Math.min.apply(Math,o(t.map((function(e){return r._breakpoints[e]}))))=i}if(e.greaterThanOrEqual){var a=this._breakpoints[e.greaterThanOrEqual];return Math.max.apply(Math,o(t.map((function(e){return r._breakpoints[e]}))))>=a}if(e.between){var u=this._breakpoints[e.between[0]],c=this._breakpoints[e.between[1]],s=t.map((function(e){return r._breakpoints[e]}));return!(Math.max.apply(Math,o(s))=c)}return!1}},{key:"_normalizeProps",value:function(e){if(e.at){var t=this._sortedBreakpoints.indexOf(e.at),r=this._sortedBreakpoints[t+1];return r?{between:[e.at,r]}:{greaterThanOrEqual:e.at}}return e}},{key:"_createBreakpointQuery",value:function(e){if((e=this._normalizeProps(e)).lessThan){var t=this._breakpoints[e.lessThan];return"(max-width:".concat(t-.02,"px)")}if(e.greaterThan){var r=this._breakpoints[this._findNextBreakpoint(e.greaterThan)];return"(min-width:".concat(r,"px)")}if(e.greaterThanOrEqual){var n=this._breakpoints[e.greaterThanOrEqual];return"(min-width:".concat(n,"px)")}if(e.between){var i=this._breakpoints[e.between[0]],o=this._breakpoints[e.between[1]];return"(min-width:".concat(i,"px) and (max-width:").concat(o-.02,"px)")}throw new Error("Unexpected breakpoint props: ".concat(JSON.stringify(e)))}},{key:"_createBreakpointQueries",value:function(e,t){var r=this;return t.reduce((function(t,n){return t.set(function(e){return Array.isArray(e)?e.join("-"):e}(n),r._createBreakpointQuery(l({},e,n))),t}),new Map)}},{key:"_findNextBreakpoint",value:function(e){var t=this._sortedBreakpoints[this._sortedBreakpoints.indexOf(e)+1];if(!t)throw new Error("There is no breakpoint larger than ".concat(e));return t}},{key:"sortedBreakpoints",get:function(){return this._sortedBreakpoints}},{key:"dynamicResponsiveMediaQueries",get:function(){return Array.from(this._mediaQueries[n.at].entries()).reduce((function(e,t){var r=a(t,2);return function(e){for(var t=1;te.length)&&(t=e.length);for(var r=0,n=new Array(t);r1)throw new Error("Only 1 of ".concat(t.join(", ")," is allowed at a time."))}(e),r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&b(e,t)}(t,e),function(e,t,r){t&&h(e.prototype,t);r&&h(e,r)}(t,[{key:"render",value:function(){var e=this,t=this.props,r=(t.children,t.className),n=t.style,i=t.interaction,a=function(e,t){if(null==e)return{};var r,n,i=function(e,t){if(null==e)return{};var r,n,i={},o=Object.keys(e);for(n=0;n=0||(i[r]=e[r]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(i[r]=e[r])}return i}(t,["children","className","style","interaction"]),u=this.getMediaParentContextValue(a);return o.default.createElement(j.Consumer,null,(function(s){return o.default.createElement(j.Provider,{value:u},o.default.createElement(k.Consumer,null,(function(){var u,f=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},l=f.onlyMatch;if(t.interaction)u=(0,c.createClassName)("interaction",t.interaction);else{if(t.at){var d=p.breakpoints.largestBreakpoint;if(t.at===d){var h=null;try{var y=e._reactInternalFiber._debugOwner.type;h=y.displayName||y.name}catch(_){}console.warn("[@artsy/fresnel] `at` is being used with the largest breakpoint. Consider using `` to account for future ')+"breakpoint definitions outside of this range.".concat(h?" It is being used in the ".concat(h," component."):""))}}var b=(0,c.propKey)(a),m=a[b];u=(0,c.createClassName)(b,m)}var g=!s.hasParentMedia||(0,c.intersection)(p.breakpoints.toVisibleAtBreakpointSet(s.breakpointProps),p.breakpoints.toVisibleAtBreakpointSet(a)).length>0,Z=g&&(void 0===l||p.shouldRenderMediaQuery(v({},a,{interaction:i}),l));return t.children instanceof Function?t.children(u,Z):o.default.createElement("div",{className:"fresnel-container ".concat(u," ").concat(r),style:n,suppressHydrationWarning:!Z},Z?t.children:null)})))}))}}]),t}(o.default.Component),g(t,"defaultProps",{className:"",style:{}}),g(t,"contextType",j),r);return{Media:w,MediaContextProvider:function(e){var t=e.disableDynamicMediaQueries,r=e.onlyMatch,n=e.children;if(t){var i=O(r);return o.default.createElement(k.Provider,{value:i},n)}return o.default.createElement(_.Provider,{mediaQueries:p.dynamicResponsiveMediaQueries,initialMatchingMediaQueries:(0,c.intersection)(p.mediaQueryTypes,r)},o.default.createElement(_.Consumer,null,(function(e){var t=Object.keys(e).filter((function(t){return e[t]})),i=O((0,c.intersection)(t,r));return o.default.createElement(k.Provider,{value:i},n)})))},createMediaStyle:p.toStyle,SortedBreakpoints:(E=p.breakpoints.sortedBreakpoints,d(E)||l(E)||f(E)||s()),findBreakpointAtWidth:p.breakpoints.findBreakpointAtWidth,findBreakpointsForWidths:p.breakpoints.findBreakpointsForWidths,valuesWithBreakpointProps:p.breakpoints.valuesWithBreakpointProps};var E};var i,o=(i=r(67294))&&i.__esModule?i:{default:i},a=r(39253),u=r(51444),c=r(89752);function s(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function f(e,t){if(e){if("string"==typeof e)return p(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?p(e,t):void 0}}function l(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}function d(e){if(Array.isArray(e))return p(e)}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r=0||(i[r]=e[r]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(i[r]=e[r])}return i}function u(e){return function(e){if(Array.isArray(e))return c(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return c(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);re.length)&&(t=e.length);for(var r=0,n=new Array(t);r=0})):n(e)},t.createRuleSet=function(e,t){return"@media ".concat(t,"{.").concat(e,"{display:none!important;}}")},t.createClassName=function(){for(var e=arguments.length,t=new Array(e),r=0;r-1};var f=function(e,t){var r=this.__data__,n=o(r,e);return n<0?(++this.size,r.push([e,t])):r[n][1]=t,this};function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++tu))return!1;var s=o.get(e),f=o.get(t);if(s&&f)return s==t&&f==e;var l=-1,d=!0,y=2&r?new p.Z:void 0;for(o.set(e,t),o.set(t,e);++li?0:i+t),(r=r>i?i:r)<0&&(r+=i),i=t>r?0:r-t>>>0,t>>>=0;for(var o=Array(i);++n-1&&e%1==0&&e0){if(++t>=800)return arguments[0]}else t=0;return e.apply(void 0,arguments)}},g=m(y);var Z=function(e,t){return g(p(e,t,l.Z),e+"")}(f)},33796:function(e,t,r){r.d(t,{Z:function(){return f}});var n=r(23532),i=r(17419);var o=function(e){return(0,i.Z)(e)&&"[object Arguments]"==(0,n.Z)(e)},a=Object.prototype,u=a.hasOwnProperty,c=a.propertyIsEnumerable,s=o(function(){return arguments}())?o:function(e){return(0,i.Z)(e)&&u.call(e,"callee")&&!c.call(e,"callee")},f=s},31844:function(e,t){var r=Array.isArray;t.Z=r},3824:function(e,t,r){var n=r(37245),i=r(59354);t.Z=function(e){return null!=e&&(0,i.Z)(e.length)&&!(0,n.Z)(e)}},41473:function(e,t,r){r.d(t,{Z:function(){return c}});var n=r(63906);var i=function(){return!1};e=r.hmd(e);var o="object"==typeof exports&&exports&&!exports.nodeType&&exports,a=o&&e&&!e.nodeType&&e,u=a&&a.exports===o?n.Z.Buffer:void 0,c=(u?u.isBuffer:void 0)||i},37245:function(e,t,r){var n=r(23532),i=r(54760);t.Z=function(e){if(!(0,i.Z)(e))return!1;var t=(0,n.Z)(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t}},59354:function(e,t){t.Z=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}},75287:function(e,t){t.Z=function(e){return null==e}},54760:function(e,t){t.Z=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},17419:function(e,t){t.Z=function(e){return null!=e&&"object"==typeof e}},18338:function(e,t,r){r.d(t,{Z:function(){return l}});var n=r(23532),i=(0,r(6478).Z)(Object.getPrototypeOf,Object),o=r(17419),a=Function.prototype,u=Object.prototype,c=a.toString,s=u.hasOwnProperty,f=c.call(Object);var l=function(e){if(!(0,o.Z)(e)||"[object Object]"!=(0,n.Z)(e))return!1;var t=i(e);if(null===t)return!0;var r=s.call(t,"constructor")&&t.constructor;return"function"==typeof r&&r instanceof r&&c.call(r)==f}},73946:function(e,t,r){var n=r(23532),i=r(31844),o=r(17419);t.Z=function(e){return"string"==typeof e||!(0,i.Z)(e)&&(0,o.Z)(e)&&"[object String]"==(0,n.Z)(e)}},97110:function(e,t,r){var n=r(23532),i=r(17419);t.Z=function(e){return"symbol"==typeof e||(0,i.Z)(e)&&"[object Symbol]"==(0,n.Z)(e)}},60679:function(e,t,r){r.d(t,{Z:function(){return l}});var n=r(23532),i=r(59354),o=r(17419),a={};a["[object Float32Array]"]=a["[object Float64Array]"]=a["[object Int8Array]"]=a["[object Int16Array]"]=a["[object Int32Array]"]=a["[object Uint8Array]"]=a["[object Uint8ClampedArray]"]=a["[object Uint16Array]"]=a["[object Uint32Array]"]=!0,a["[object Arguments]"]=a["[object Array]"]=a["[object ArrayBuffer]"]=a["[object Boolean]"]=a["[object DataView]"]=a["[object Date]"]=a["[object Error]"]=a["[object Function]"]=a["[object Map]"]=a["[object Number]"]=a["[object Object]"]=a["[object RegExp]"]=a["[object Set]"]=a["[object String]"]=a["[object WeakMap]"]=!1;var u=function(e){return(0,o.Z)(e)&&(0,i.Z)(e.length)&&!!a[(0,n.Z)(e)]};var c=function(e){return function(t){return e(t)}},s=r(69890),f=s.Z&&s.Z.isTypedArray,l=f?c(f):u},64736:function(e,t){t.Z=function(e){return void 0===e}},44891:function(e,t,r){r.d(t,{Z:function(){return b}});var n=function(e,t){for(var r=-1,n=Array(e);++r-1};var u=function(e,t,r){for(var n=-1,i=null==e?0:e.length;++n=200){var h=t?null:d(e);if(h)return(0,l.Z)(h);f=!1,o=c.Z,v=new i.Z}else v=t?[]:p;e:for(;++n=n?e:(0,X.Z)(e,t,r)},te=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]");var re=function(e){return te.test(e)};var ne=function(e){return e.split("")},ie="[\\ud800-\\udfff]",oe="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",ae="[^\\ud800-\\udfff]",ue="(?:\\ud83c[\\udde6-\\uddff]){2}",ce="[\\ud800-\\udbff][\\udc00-\\udfff]",se="(?:"+oe+"|"+"\\ud83c[\\udffb-\\udfff])"+"?",fe="[\\ufe0e\\ufe0f]?",le=fe+se+("(?:\\u200d(?:"+[ae,ue,ce].join("|")+")"+fe+se+")*"),de="(?:"+[ae+oe+"?",oe,ue,ce,ie].join("|")+")",pe=RegExp("\\ud83c[\\udffb-\\udfff](?=\\ud83c[\\udffb-\\udfff])|"+de+le,"g");var ve=function(e){return e.match(pe)||[]};var he=function(e){return re(e)?ve(e):ne(e)};var ye=function(e){return function(t){t=(0,Z.Z)(t);var r=re(t)?he(t):void 0,n=r?r[0]:t.charAt(0),i=r?ee(r,1).join(""):t.slice(1);return n[e]()+i}}("toUpperCase"),be=Y((function(e,t,r){return e+(r?" ":"")+ye(t)})),me=r(8595),ge=function(e){function t(){for(var t,r=arguments.length,n=new Array(r),i=0;ii("a",{key:r,href:n,name:r,tabIndex:-42,role:"presentation",onClick:t,className:"item"+(e?" active":"")},r);function o(){const{0:e,1:t}=(0,a.useState)(""),{0:r,1:n}=(0,a.useState)(!1);function o(e){e.preventDefault();let r=e.target.getAttribute("href");const n=e.target.name.toLowerCase();t(n),r?(r="/"===r.charAt(0)?r.slice(1):r,(0,c.c4)(`/${r}`)):"home"===n?(0,c.c4)("/"):(0,c.c4)(`/${n}`)}return(0,a.useEffect)((()=>{const e=window.location.pathname.replace(/\//g,"").toLowerCase();t(e||"home");const r=e.startsWith("research")||e.startsWith("projects");n(r)}),[]),i("header",null,i("div",{id:"desktopmenu"},i("div",{className:"ui fluid pointing stackable seven item menu",primary:"true"},i(l,{key:"home",active:"home"===e,item:"Home",handleItemClick:o}),i(l,{key:"artworks",active:e.startsWith("artworks"),item:"Artworks",link:!1,header:!0,handleItemClick:o}),i(l,{key:"publications",active:"publications"===e,item:"Publications",handleItemClick:o}),i(l,{key:"research",active:e.startsWith("research")||"projects"===e,item:"Research",link:!1,header:!0,handleItemClick:o}),i(l,{key:"cv",active:"cv"===e,item:"CV",handleItemClick:o})),r&&i("div",{className:"ui small pointing secondary stackable seven item menu"},i(l,{key:"researchprojects",active:"researchprojects"===e,item:"Projects",url:"/research/projects",handleItemClick:o}),i(l,{key:"researchinterests",active:"research"===e||"researchinterests"===e,item:"Interests",url:"/research/interests",handleItemClick:o}),i(l,{key:"researchreading",active:"researchreading"===e,item:"Reading",url:"/research/reading",handleItemClick:o}),i(l,{key:"researchinfluences",active:"researchinfluences"===e,item:"Influences",url:"/research/influences",handleItemClick:o}))),i("div",{style:s.navSpacer}))}var u=a.createElement;function m(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function h(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function i(){return i=Object.assign||function(e){for(var t=1;t{this.reCalculateColumnCount()}))):this.reCalculateColumnCount()}reCalculateColumnCount(){const e=window&&window.innerWidth||1/0;let t=this.props.breakpointCols;"object"!=typeof t&&(t={default:parseInt(t)||2});let n=1/0,r=t.default||2;for(let o in t){const i=parseInt(o);i>0&&e<=i&&ir.createElement("div",i({},c,{key:t}),e)))}logDeprecated(e){console.error("[Masonry]",e)}render(){const e=this.props,{children:t,breakpointCols:n,columnClassName:a,columnAttrs:s,column:l,className:c}=e,u=o(e,["children","breakpointCols","columnClassName","columnAttrs","column","className"]);let m=c;return"string"!=typeof c&&(this.logDeprecated('The property "className" requires a string'),void 0===c&&(m="my-masonry-grid")),r.createElement("div",i({},u,{className:m}),this.renderColumns())}}u.defaultProps=c;var m=u;var d={1200:4,980:3,700:2,default:5};var p=function(e,{threshold:t=0,root:n=null,rootMargin:o="0%",freezeOnceVisible:i=!1}){const{0:a,1:s}=(0,r.useState)(),l=(null==a?void 0:a.isIntersecting)&&i,c=([e])=>{s(e)};return(0,r.useEffect)((()=>{const r=null==e?void 0:e.current;if(!!!window.IntersectionObserver||l||!r)return;const i=new IntersectionObserver(c,{threshold:t,root:n,rootMargin:o});return i.observe(r),()=>i.disconnect()}),[null==e?void 0:e.current,JSON.stringify(t),n,o,l]),a},h=r.createElement;function f({images:e,next:t,fetchMore:n,isFetching:o}){let i=0;if(!e.length)return h("div",{className:"ui"},h("div",{className:"ui active transition visible inverted dimmer",style:{display:"flex !important"}},h("div",{className:"ui inverted text loader"},"Loading")));const a=(0,r.useRef)(null),s=(0,r.useRef)(null),l=p(a,{}),c=!(null==l||!l.isIntersecting);if(null!=s&&s.current){const e=null==s?void 0:s.current.querySelectorAll(".my-masonry-grid_column"),t=null==s?void 0:s.current.clientHeight;let n=0;e.forEach((e=>{let t=0;e.childNodes.forEach((e=>{t+=e.clientHeight})),n?th("div",{key:encodeURI(e[0]),className:"gatsby-image-wrapper gatsby-image-wrapper-constrained",style:{backgroundColor:e[3]}},h("div",{style:{maxWidth:"400px",display:"block"}},h("img",{alt:"",role:"presentation","aria-hidden":"true",src:"data:image/svg+xml;charset=utf-8,%3Csvg height='"+e[2]+"' width='"+e[1]+"' xmlns='http://www.w3.org/2000/svg' version='1.1'%3E%3C/svg%3E",style:{maxWidth:"100%",display:"block",position:"static"}})),h("div",{"aria-hidden":"true",style:{opacity:0,transition:"opacity 500ms linear 0s",backgroundColor:e[3],position:"absolute",inset:"0px",objectFit:"cover"}}),h("picture",null,h("source",{type:"image/webp",srcSet:e[0]+" 400w",sizes:"(min-width: 400px) 400px, 100vw"}),h("img",{layout:"constrained",placeholder:"dominantColor",style:{objectFit:"cover",opacity:1},sizes:"(min-width: 400px) 400px, 100vw",decoding:"async",loading:"lazy",src:e[0],srcSet:e[0]+" 400w",alt:"",width:e[1],height:e[2]})),h("noscript",null,h("picture",null,h("source",{type:"image/webp",srcSet:e[0]+" 400w",sizes:"(min-width: 400px) 400px, 100vw"}),h("img",{layout:"constrained",placeholder:"dominantColor",width:e[1],height:e[2],style:{objectFit:"cover",opacity:0},sizes:"(min-width: 400px) 400px, 100vw",decoding:"async",loading:"lazy",src:e[0],srcSet:e[0]+" 400w",alt:""}))))))),h("div",{ref:a,style:{position:"relative",top:`-${i}px`,height:"1px",width:"1px"}}))}},6:function(e,t,n){n.d(t,{Z:function(){return i}});var r=n(4160),o=n(7294).createElement;function i({generator:e,byline:t,totalCount:n}){const i=e=>{e.preventDefault();const t=e.target.getAttribute("folder");(0,r.c4)(`/artworks/${t}/`)};return o("div",null,o("h1",null,e),o("section",{style:{textAlign:"center",marginBottom:"2em"}},o("p",null,t,0===n?o("span",null," "):n>=100?`Latest ${n} images`:`${n} images`)),o("section",{style:{textAlign:"center",marginBottom:"2em"}},o("div",{className:"ui fluid pointing secondary six item menu"},o("a",{folder:"midjourney",className:"item"+("Midjourney"===e?" active":""),onClick:i,onKeyDown:i},"Midjourney"),o("a",{folder:"stablediffusion",className:"item"+("Stable Diffusion"===e?" active":""),onClick:i,onKeyDown:i},"Stable Diffusion"),o("a",{folder:"dalle",className:"item"+("DALL-E"===e?" active":""),onClick:i,onKeyDown:i},"DALL-E 2"),o("a",{folder:"latent-diffusion",className:"item"+("Latent Diffusion"===e?" active":""),onClick:i,onKeyDown:i},"Latent Diffusion"),o("a",{folder:"vqganclip",className:"item"+("VQGAN-CLIP"===e?" active":""),onClick:i,onKeyDown:i},"VQGAN-CLIP"),o("a",{folder:"misc",className:"item"+("Misc. Text-To-Image Systems"===e?" active":""),onClick:i,onKeyDown:i},"Misc."))))}},6782:function(e,t,n){n.d(t,{Z:function(){return p}});var r=n(4572),o=n(7294),i=n(4160),a=o.createElement;const s={navSpacer:{marginBottom:"2em"}},l=({active:e,handleItemClick:t,item:n,url:r=null})=>a("a",{key:n,href:r,name:n,tabIndex:-42,role:"presentation",onClick:t,className:"item"+(e?" active":"")},n);function c(){const{0:e,1:t}=(0,o.useState)(""),{0:n,1:r}=(0,o.useState)(!1);function c(e){e.preventDefault();let n=e.target.getAttribute("href");const r=e.target.name.toLowerCase();t(r),n?(n="/"===n.charAt(0)?n.slice(1):n,(0,i.c4)(`/${n}`)):"home"===r?(0,i.c4)("/"):(0,i.c4)(`/${r}`)}return(0,o.useEffect)((()=>{const e=window.location.pathname.replace(/\//g,"").toLowerCase();t(e||"home");const n=e.startsWith("research")||e.startsWith("projects");r(n)}),[]),a("header",null,a("div",{id:"desktopmenu"},a("div",{className:"ui fluid pointing stackable seven item menu",primary:"true"},a(l,{key:"home",active:"home"===e,item:"Home",handleItemClick:c}),a(l,{key:"artworks",active:e.startsWith("artworks"),item:"Artworks",link:!1,header:!0,handleItemClick:c}),a(l,{key:"publications",active:"publications"===e,item:"Publications",handleItemClick:c}),a(l,{key:"research",active:e.startsWith("research")||"projects"===e,item:"Research",link:!1,header:!0,handleItemClick:c}),a(l,{key:"cv",active:"cv"===e,item:"CV",handleItemClick:c})),n&&a("div",{className:"ui small pointing secondary stackable seven item menu"},a(l,{key:"researchprojects",active:"researchprojects"===e,item:"Projects",url:"/research/projects",handleItemClick:c}),a(l,{key:"researchinterests",active:"research"===e||"researchinterests"===e,item:"Interests",url:"/research/interests",handleItemClick:c}),a(l,{key:"researchreading",active:"researchreading"===e,item:"Reading",url:"/research/reading",handleItemClick:c}),a(l,{key:"researchinfluences",active:"researchinfluences"===e,item:"Influences",url:"/research/influences",handleItemClick:c}))),a("div",{style:s.navSpacer}))}var u=o.createElement;function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function d(e){for(var t=1;t{(async()=>{const e=await(await fetch(l)).json();t(e)})()}),[]),s(r.Fragment,null,s(i.Z,{style:{paddingBottom:0}},s(o.Z,{generator:"DALL-E Art",totalCount:e.length})),s(a.Z,{images:e}))}}}]); \ No newline at end of file diff --git a/public/component---src-pages-artworks-index-js.js b/public/component---src-pages-artworks-index-js.js new file mode 100644 index 0000000000..e51e3b0418 --- /dev/null +++ b/public/component---src-pages-artworks-index-js.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkjonaso_de=self.webpackChunkjonaso_de||[]).push([[494],{2076:function(e,t,n){n.d(t,{EG:function(){return c},OF:function(){return l},S2:function(){return o},YC:function(){return a},ab:function(){return i},lD:function(){return u},qP:function(){return s}});const r={nobottommargin:{marginBottom:0,paddingBottom:0},notopmargin:{marginTop:0,paddingTop:0},nobold:{fontWeight:"normal"},spacer:{height:"5em"},noMarginGrid:{marginRight:0,marginLeft:0}};const i={3:"red",2:"orange",1:"brown",0:"black"};function a(e,t){return e.sort((function(e,n){var r=e[t],i=n[t];return r>i?-1:re||void 0)).join(t)}function c(e,t){let n="";return e[1]>e[2]&&(n="wide",t%5==0&&(n="big"),t%4==0&&(n="")),e[1]{e.preventDefault();const t=e.target.getAttribute("folder");(0,r.c4)(`/artworks/${t}/`)};return i("div",null,i("h1",null,e),i("section",{style:{textAlign:"center",marginBottom:"2em"}},i("p",null,t,0===n?i("span",null," "):n>=100?`Latest ${n} images`:`${n} images`)),i("section",{style:{textAlign:"center",marginBottom:"2em"}},i("div",{className:"ui fluid pointing secondary six item menu"},i("a",{folder:"midjourney",className:"item"+("Midjourney"===e?" active":""),onClick:a,onKeyDown:a},"Midjourney"),i("a",{folder:"stablediffusion",className:"item"+("Stable Diffusion"===e?" active":""),onClick:a,onKeyDown:a},"Stable Diffusion"),i("a",{folder:"dalle",className:"item"+("DALL-E"===e?" active":""),onClick:a,onKeyDown:a},"DALL-E 2"),i("a",{folder:"latent-diffusion",className:"item"+("Latent Diffusion"===e?" active":""),onClick:a,onKeyDown:a},"Latent Diffusion"),i("a",{folder:"vqganclip",className:"item"+("VQGAN-CLIP"===e?" active":""),onClick:a,onKeyDown:a},"VQGAN-CLIP"),i("a",{folder:"misc",className:"item"+("Misc. Text-To-Image Systems"===e?" active":""),onClick:a,onKeyDown:a},"Misc."))))}},6782:function(e,t,n){n.d(t,{Z:function(){return f}});var r=n(4572),i=n(7294),a=n(4160),o=i.createElement;const c={navSpacer:{marginBottom:"2em"}},s=({active:e,handleItemClick:t,item:n,url:r=null})=>o("a",{key:n,href:r,name:n,tabIndex:-42,role:"presentation",onClick:t,className:"item"+(e?" active":"")},n);function l(){const{0:e,1:t}=(0,i.useState)(""),{0:n,1:r}=(0,i.useState)(!1);function l(e){e.preventDefault();let n=e.target.getAttribute("href");const r=e.target.name.toLowerCase();t(r),n?(n="/"===n.charAt(0)?n.slice(1):n,(0,a.c4)(`/${n}`)):"home"===r?(0,a.c4)("/"):(0,a.c4)(`/${r}`)}return(0,i.useEffect)((()=>{const e=window.location.pathname.replace(/\//g,"").toLowerCase();t(e||"home");const n=e.startsWith("research")||e.startsWith("projects");r(n)}),[]),o("header",null,o("div",{id:"desktopmenu"},o("div",{className:"ui fluid pointing stackable seven item menu",primary:"true"},o(s,{key:"home",active:"home"===e,item:"Home",handleItemClick:l}),o(s,{key:"artworks",active:e.startsWith("artworks"),item:"Artworks",link:!1,header:!0,handleItemClick:l}),o(s,{key:"publications",active:"publications"===e,item:"Publications",handleItemClick:l}),o(s,{key:"research",active:e.startsWith("research")||"projects"===e,item:"Research",link:!1,header:!0,handleItemClick:l}),o(s,{key:"cv",active:"cv"===e,item:"CV",handleItemClick:l})),n&&o("div",{className:"ui small pointing secondary stackable seven item menu"},o(s,{key:"researchprojects",active:"researchprojects"===e,item:"Projects",url:"/research/projects",handleItemClick:l}),o(s,{key:"researchinterests",active:"research"===e||"researchinterests"===e,item:"Interests",url:"/research/interests",handleItemClick:l}),o(s,{key:"researchreading",active:"researchreading"===e,item:"Reading",url:"/research/reading",handleItemClick:l}),o(s,{key:"researchinfluences",active:"researchinfluences"===e,item:"Influences",url:"/research/influences",handleItemClick:l}))),o("div",{style:c.navSpacer}))}var u=i.createElement;function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function d(e){for(var t=1;t{(async()=>{const e=await(await fetch(l)).json();t(e)})()}),[]),s(r.Fragment,null,s(a.Z,{style:{paddingBottom:0}},s(i.Z,{generator:"AI-generated Images",byline:"Latest digital images generated from text prompts (never edited). Click links below for more."})),!e.length&&s(o.Z,null),s("div",{id:"true-masonry",style:{paddingBottom:"5em"}},s("div",{className:"grid-wrapper"},e.map(((e,t)=>s("div",{key:e[0],className:(0,c.EG)(e,t)},s("img",{src:e[0],decoding:"async",loading:"lazy",alt:""})))))))}}}]); \ No newline at end of file diff --git a/public/component---src-pages-artworks-js-635619aee6fdf8c58c1e.js b/public/component---src-pages-artworks-js-635619aee6fdf8c58c1e.js deleted file mode 100644 index e8a29e166f..0000000000 --- a/public/component---src-pages-artworks-js-635619aee6fdf8c58c1e.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkjonas_de=self.webpackChunkjonas_de||[]).push([[546],{74811:function(e){var t=function(e,t){if("string"!=typeof e&&!Array.isArray(e))throw new TypeError("Expected the input to be `string | string[]`");t=Object.assign({pascalCase:!1},t);var n;return e=Array.isArray(e)?e.map((function(e){return e.trim()})).filter((function(e){return e.length})).join("-"):e.trim(),0===e.length?"":1===e.length?t.pascalCase?e.toUpperCase():e.toLowerCase():(e!==e.toLowerCase()&&(e=function(e){for(var t=!1,n=!1,r=!1,a=0;a=0||(a[n]=e[n]);return a}var s=function(){return"undefined"!=typeof HTMLImageElement&&"loading"in HTMLImageElement.prototype};var c=function(e){var t;return function(e){var t,n;return Boolean(null==e||null==(t=e.images)||null==(n=t.fallback)?void 0:n.src)}(e)?e:function(e){return Boolean(null==e?void 0:e.gatsbyImageData)}(e)?e.gatsbyImageData:function(e){return Boolean(null==e?void 0:e.gatsbyImage)}(e)?e.gatsbyImage:null==e||null==(t=e.childImageSharp)?void 0:t.gatsbyImageData};function u(e,t,n,r,a){return void 0===a&&(a={}),i({},n,{loading:r,shouldLoad:e,"data-main-image":"",style:i({},a,{opacity:t?1:0})})}function d(e,t,n,r,a,o,l,s){var c={};o&&(c.backgroundColor=o,"fixed"===n?(c.width=r,c.height=a,c.backgroundColor=o,c.position="relative"):("constrained"===n||"fullWidth"===n)&&(c.position="absolute",c.top=0,c.left=0,c.bottom=0,c.right=0)),l&&(c.objectFit=l),s&&(c.objectPosition=s);var u=i({},e,{"aria-hidden":!0,"data-placeholder-image":"",style:i({opacity:t?0:1,transition:"opacity 500ms linear"},c)});return u}var m,p=["children"],f=function(e){var t=e.layout,n=e.width,a=e.height;return"fullWidth"===t?r.createElement("div",{"aria-hidden":!0,style:{paddingTop:a/n*100+"%"}}):"constrained"===t?r.createElement("div",{style:{maxWidth:n,display:"block"}},r.createElement("img",{alt:"",role:"presentation","aria-hidden":"true",src:"data:image/svg+xml;charset=utf-8,%3Csvg height='"+a+"' width='"+n+"' xmlns='http://www.w3.org/2000/svg' version='1.1'%3E%3C/svg%3E",style:{maxWidth:"100%",display:"block",position:"static"}})):null},g=function(e){var t=e.children,n=l(e,p);return r.createElement(r.Fragment,null,r.createElement(f,i({},n)),t,null)},y=["src","srcSet","loading","alt","shouldLoad"],h=["fallback","sources","shouldLoad"],v=function(e){var t=e.src,n=e.srcSet,a=e.loading,o=e.alt,s=void 0===o?"":o,c=e.shouldLoad,u=l(e,y);return r.createElement("img",i({},u,{decoding:"async",loading:a,src:c?t:void 0,"data-src":c?void 0:t,srcSet:c?n:void 0,"data-srcset":c?void 0:n,alt:s}))},b=function(e){var t=e.fallback,n=e.sources,a=void 0===n?[]:n,o=e.shouldLoad,s=void 0===o||o,c=l(e,h),u=c.sizes||(null==t?void 0:t.sizes),d=r.createElement(v,i({},c,t,{sizes:u,shouldLoad:s}));return a.length?r.createElement("picture",null,a.map((function(e){var t=e.media,n=e.srcSet,a=e.type;return r.createElement("source",{key:t+"-"+a+"-"+n,type:a,media:t,srcSet:s?n:void 0,"data-srcset":s?void 0:n,sizes:u})})),d):d};v.propTypes={src:a.string.isRequired,alt:a.string.isRequired,sizes:a.string,srcSet:a.string,shouldLoad:a.bool},b.displayName="Picture",b.propTypes={alt:a.string.isRequired,shouldLoad:a.bool,fallback:a.exact({src:a.string.isRequired,srcSet:a.string,sizes:a.string}),sources:a.arrayOf(a.oneOfType([a.exact({media:a.string.isRequired,type:a.string,sizes:a.string,srcSet:a.string.isRequired}),a.exact({media:a.string,type:a.string.isRequired,sizes:a.string,srcSet:a.string.isRequired})]))};var w=["fallback"],C=function(e){var t=e.fallback,n=l(e,w);return t?r.createElement(b,i({},n,{fallback:{src:t},"aria-hidden":!0,alt:""})):r.createElement("div",i({},n))};C.displayName="Placeholder",C.propTypes={fallback:a.string,sources:null==(m=b.propTypes)?void 0:m.sources,alt:function(e,t,n){return e[t]?new Error("Invalid prop `"+t+"` supplied to `"+n+"`. Validation failed."):null}};var E=function(e){return r.createElement(r.Fragment,null,r.createElement(b,i({},e)),r.createElement("noscript",null,r.createElement(b,i({},e,{shouldLoad:!0}))))};E.displayName="MainImage",E.propTypes=b.propTypes;var O,k,j=function(e,t,n){for(var r=arguments.length,a=new Array(r>3?r-3:0),i=3;i