diff --git a/.gitignore b/.gitignore index e2a466278d36d7c12325b15e4b7284d2a924511c..41390fe369cac2a131d219c42d69bf3f6d18eff3 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,7 @@ package-lock.json yarn.lock venv/ __pycache__/ -flagged/ \ No newline at end of file +flagged/ +data +data.db +data.json diff --git a/Makefile b/Makefile index 509d5fcd629fae5f84d4556158728a543e10a0fd..f2fec23fdce3ffc69c31a5eedb2fce5f81e176ef 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,9 @@ build-client: - cd frontend && npm install && npm run build && rm -rf ../static && cp -r build/ ../static/ + cd frontend && npm install && PUBLIC_DEV_MODE=0 npm run build && rm -rf ../static && cp -r build/ ../static/ build-dev: - cd frontend && npm install && npm run build && rm -rf ../static && cp -r build/ ../static/ + cd frontend && npm install && PUBLIC_DEV_MODE=1 npm run build-dev && rm -rf ../static && cp -r build/ ../static/ +run-front-dev: + cd frontend && npm install && PUBLIC_DEV_MODE=1 npm run dev run-dev: FLASK_ENV=development python app.py run-prod: diff --git a/app.py b/app.py index 04b347c1758cceca92bacf9c563217022cee031f..d4d7c8f65c48f723d241ee9b1d6ed0e0f192bbde 100644 --- a/app.py +++ b/app.py @@ -1,26 +1,155 @@ import os -from datasets import load_dataset from pathlib import Path import json -from datasets import load_dataset -from flask import Flask, request, jsonify +from flask import Flask, request, jsonify, g +from flask_expects_json import expects_json from flask_cors import CORS from PIL import Image from huggingface_hub import Repository +import shutil +import sqlite3 +import subprocess +from jsonschema import ValidationError +MODE = os.environ.get('FLASK_ENV', 'production') +IS_DEV = MODE == 'development' app = Flask(__name__, static_url_path='/static') +app.config['JSONIFY_PRETTYPRINT_REGULAR'] = False + +schema = { + "type": "object", + "properties": { + "prompt": {"type": "string"}, + "images": { + "type": "array", + "items": { + "type": "object", + "minProperties": 2, + "maxProperties": 2, + "properties": { + "colors": { + "type": "array", + "items": { + "type": "string" + }, + "maxItems": 5, + "minItems": 5 + }, + "imgURL": {"type": "string"}} + } + } + }, + "minProperties": 2, + "maxProperties": 2 +} CORS(app) +DB_FILE = Path("./data.db") +TOKEN = os.environ.get('HUGGING_FACE_HUB_TOKEN') +print(TOKEN) +repo = Repository( + local_dir="data", + repo_type="dataset", + clone_from="huggingface-projects/color-palettes-sd", + use_auth_token=TOKEN +) +repo.git_pull() +# copy db on db to local path +shutil.copyfile("./data/data.db", DB_FILE) + +db = sqlite3.connect(DB_FILE) +try: + data = db.execute("SELECT * FROM palettes").fetchall() + if IS_DEV: + print(f"Loaded {len(data)} palettes from local db") + db.close() +except sqlite3.OperationalError: + db.execute( + 'CREATE TABLE palettes (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, data json, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL)') + db.commit() + + +def get_db(): + db = getattr(g, '_database', None) + if db is None: + db = g._database = sqlite3.connect(DB_FILE) + db.row_factory = sqlite3.Row + return db + + +@app.teardown_appcontext +def close_connection(exception): + db = getattr(g, '_database', None) + if db is not None: + db.close() + + +def update_repository(): + repo.git_pull() + # copy db on db to local path + shutil.copyfile(DB_FILE, "./data/data.db") + + with sqlite3.connect("./data/data.db") as db: + db.row_factory = sqlite3.Row + palettes = db.execute("SELECT * FROM palettes").fetchall() + data = [{'id': row['id'], 'data': json.loads( + row['data']), 'created_at': row['created_at']} for row in palettes] + + with open('./data/data.json', 'w') as f: + json.dump(data, f, separators=(',', ':')) + + print("Updating repository") + subprocess.Popen( + "git add . && git commit --amend -m 'update' && git push --force", cwd="./data", shell=True) + repo.push_to_hub(blocking=False) -@ app.route('/') + +@app.route('/') def index(): return app.send_static_file('index.html') +@app.route('/force_push') +def push(): + if (request.headers['token'] == TOKEN): + update_repository() + return jsonify({'success': True}) + else: + return "Error", 401 + + +def getAllData(): + palettes = get_db().execute("SELECT * FROM palettes").fetchall() + data = [{'id': row['id'], 'data': json.loads( + row['data']), 'created_at': row['created_at']} for row in palettes] + return data + + +@app.route('/data') +def getdata(): + return jsonify(getAllData()) + + +@app.route('/new_palette', methods=['POST']) +@expects_json(schema) +def create(): + data = g.data + db = get_db() + cursor = db.cursor() + cursor.execute("INSERT INTO palettes(data) VALUES (?)", [json.dumps(data)]) + db.commit() + return jsonify(getAllData()) + + +@app.errorhandler(400) +def bad_request(error): + if isinstance(error.description, ValidationError): + original_error = error.description + return jsonify({'error': original_error.message}), 400 + return error + + if __name__ == '__main__': - mode = os.environ.get('FLASK_ENV', 'production') - print(mode) - dev = mode == 'development' app.run(host='0.0.0.0', port=int( - os.environ.get('PORT', 7860)), debug=True, use_reloader=dev) + os.environ.get('PORT', 7860)), debug=True, use_reloader=IS_DEV) diff --git a/data.json b/data.json index 41828a87d1f611e1f12bebc26763ee013c7eb93f..73c096e4203c93c8f88ce78e9be40ac4ca508f94 100644 --- a/data.json +++ b/data.json @@ -1 +1,87 @@ -{"a painting of a Ferrari by Claude Monet": [{"colors": ["#885f45", "#181b26", "#a5966f", "#505f68"], "prompt": "a painting of a Ferrari by Claude Monet"}, {"colors": ["#ca9566", "#14161f", "#845340", "#4c556b"], "prompt": "a painting of a Ferrari by Claude Monet"}, {"colors": ["#896554", "#435d70", "#233c33", "#556a5e"], "prompt": "a painting of a Ferrari by Claude Monet"}], "a photo of a beautiful sunset in San Francisco": [{"colors": ["#ac5913", "#ed8703", "#290f03", "#f68f0e"], "prompt": "a photo of a beautiful sunset in San Francisco"}, {"colors": ["#78464d", "#2a0d08", "#3a1d24", "#e0a365"], "prompt": "a photo of a beautiful sunset in San Francisco"}, {"colors": ["#848ab9", "#6074b9", "#e39459", "#734c5c"], "prompt": "a photo of a beautiful sunset in San Francisco"}], "a photo of a elmo drinking at starbucks": [{"colors": ["#530205", "#231812", "#a4050e", "#895531"], "prompt": "a photo of a elmo drinking at starbucks"}, {"colors": ["#45010c", "#ab0211", "#c6ab77", "#0b0b13"], "prompt": "a photo of a elmo drinking at starbucks"}, {"colors": ["#31180e", "#ce010c", "#855139", "#240e11"], "prompt": "a photo of a elmo drinking at starbucks"}], "a photo of a polar bear in the Arctic": [{"colors": ["#a0d2f8", "#7ca9df", "#92c1f4", "#577db6"], "prompt": "a photo of a polar bear in the Arctic"}, {"colors": ["#8a9bb5", "#66758d", "#707c95", "#b8cde4"], "prompt": "a photo of a polar bear in the Arctic"}, {"colors": ["#7ca0da", "#527dc9", "#082e84", "#546d84"], "prompt": "a photo of a polar bear in the Arctic"}], "a paint of a polar bear in the Arctic painted by Vincent van Gogh": [{"colors": ["#eae8a7", "#dada95", "#deefe9", "#2e54b6"], "prompt": "a paint of a polar bear in the Arctic painted by Vincent van Gogh"}, {"colors": ["#91a7b4", "#163488", "#335998", "#c9d2cb"], "prompt": "a paint of a polar bear in the Arctic painted by Vincent van Gogh"}, {"colors": ["#61afdf", "#f2f1ca", "#a9e3f1", "#89d4ec"], "prompt": "a paint of a polar bear in the Arctic painted by Vincent van Gogh"}], "a photo of a polar bear in the zoo": [{"colors": ["#4b6743", "#201f15", "#20321d", "#5c6b39"], "prompt": "a photo of a polar bear in the zoo"}, {"colors": ["#1f331e", "#282c14", "#686356", "#e5eff4"], "prompt": "a photo of a polar bear in the zoo"}, {"colors": ["#6f5f3a", "#dfe6ef", "#362811", "#ecefee"], "prompt": "a photo of a polar bear in the zoo"}]} \ No newline at end of file +[ + { + "prompt": "a painting of a Ferrari by Claude Monet", + "images": [ + { + "colors": ["#2f3c6e", "#deacdf", "#e2e23b", "#b923bf", "#ed68f7"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663708947819-6064e095abd8d3692e3e2ed6.jpeg" + }, + { + "colors": ["#f9b9a0", "#b30814", "#36102d", "#e240ab", "#680c26"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663708947820-6064e095abd8d3692e3e2ed6.jpeg" + }, + { + "colors": ["#13bbab", "#f7e2ba", "#cb3b37", "#062726", "#055637"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663709705120-6064e095abd8d3692e3e2ed6.jpeg" + } + ] + }, + { + "prompt": "a photo of a beautiful sunset in San Francisco", + "images": [ + { + "colors": ["#e2dcf8", "#d47a0d", "#50244c", "#b63547", "#f270f2"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663709952894-6064e095abd8d3692e3e2ed6.jpeg" + }, + { + "colors": ["#177405", "#d6f12d", "#7c1a04", "#b9a5a4", "#6ae61b"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663708947815-6064e095abd8d3692e3e2ed6.jpeg" + }, + { + "colors": ["#766dae", "#4e2806", "#e8b878", "#1c317e", "#46c21e"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663708947558-6064e095abd8d3692e3e2ed6.jpeg" + } + ] + }, + { + "prompt": "a photo of a elmo drinking at starbucks", + "images": [ + { + "colors": ["#179209", "#eee84b", "#571208", "#b91806", "#537c91"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663708947810-6064e095abd8d3692e3e2ed6.jpeg" + }, + { + "colors": ["#d62fec", "#281185", "#f2bbde", "#db2f23", "#8505e1"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663709902535-6064e095abd8d3692e3e2ed6.jpeg" + }, + { + "colors": ["#19550f", "#a80e05", "#f5ce1f", "#f7d9cf", "#859721"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663708947641-6064e095abd8d3692e3e2ed6.jpeg" + } + ] + }, + { + "prompt": "a paint of a polar bear in the Arctic painted by Vincent van Gogh", + "images": [ + { + "colors": ["#3de9f9", "#172eb8", "#dc44d6", "#1bd40d", "#e7d9e8"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663708947839-6064e095abd8d3692e3e2ed6.jpeg" + }, + { + "colors": ["#f984fb", "#35208b", "#a9040f", "#d209ef", "#eed5f9"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663709638276-6064e095abd8d3692e3e2ed6.jpeg" + }, + { + "colors": ["#143153", "#ebf521", "#7c3117", "#a8c9f2", "#66a70a"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663708947805-6064e095abd8d3692e3e2ed6.jpeg" + } + ] + }, + { + "prompt": "a photo of a polar bear in the zoo", + "images": [ + { + "colors": ["#cd1ce0", "#f397ec", "#980d30", "#3e231a", "#713789"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663708947833-6064e095abd8d3692e3e2ed6.jpeg" + }, + { + "colors": ["#1f15dc", "#f6c3fb", "#92edfa", "#1d2824", "#de30f2"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663708947818-6064e095abd8d3692e3e2ed6.jpeg" + }, + { + "colors": ["#0512dc", "#ceebf5", "#0c2726", "#55acb6", "#8c61fc"], + "imgURL": "https://s3.amazonaws.com/moonup/production/uploads/1663708947811-6064e095abd8d3692e3e2ed6.jpeg" + } + ] + } +] diff --git a/frontend/package.json b/frontend/package.json index 7b0a52d09db38af6932e4c6c5ec947120bd4d6c3..9c9dda6955cbcced2b37679910dd7f327633c6e6 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -3,7 +3,8 @@ "version": "0.0.1", "scripts": { "dev": "NODE_ENV=development vite --config vite.config.dev.ts dev", - "build": "NODE_ENV=production vite build", + "build-dev": "vite build --mode development", + "build": "vite build", "preview": "vite preview", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", diff --git a/frontend/src/lib/Palette.svelte b/frontend/src/lib/Palette.svelte index dea5d37dfd96a61063d4d46dfd773556d9e90fc1..90a958493ae41e1c4f951ef7f3a753b9018f38e4 100644 --- a/frontend/src/lib/Palette.svelte +++ b/frontend/src/lib/Palette.svelte @@ -39,7 +39,7 @@
- {prompt} + {prompt}
{#each promptData.images as image, i} {#if $loadingState} -

{$loadingState}

+

{$loadingState}

+ {#if $isLoading} + + + + {/if} {/if}
-
156 submitted palettes
+
{promptsTotal} submitted palettes
diff --git a/frontend/static/data.json b/frontend/static/data.json deleted file mode 100644 index 2873ca76398a9ccb275c2e988c7f5d6836f0e456..0000000000000000000000000000000000000000 --- a/frontend/static/data.json +++ /dev/null @@ -1 +0,0 @@ -[{"prompt": "a painting of a Ferrari by Claude Monet", "images": [{"colors": ["#2f3c6e", "#deacdf", "#e2e23b", "#b923bf", "#ed68f7"], "imgURL": "static/images/00045-2327336162-a painting of a Ferrari by Claude Monet.jpg"}, {"colors": ["#f9b9a0", "#b30814", "#36102d", "#e240ab", "#680c26"], "imgURL": "static/images/00044-2327336161-a painting of a Ferrari by Claude Monet.jpg"}, {"colors": ["#13bbab", "#f7e2ba", "#cb3b37", "#062726", "#055637"], "imgURL": "static/images/00046-2327336163-a painting of a Ferrari by Claude Monet.jpg"}]}, {"prompt": "a photo of a beautiful sunset in San Francisco", "images": [{"colors": ["#e2dcf8", "#d47a0d", "#50244c", "#b63547", "#f270f2"], "imgURL": "static/images/00003-3329858470-a photo of a beautiful sunset in San Francisco.jpg"}, {"colors": ["#177405", "#d6f12d", "#7c1a04", "#b9a5a4", "#6ae61b"], "imgURL": "static/images/00001-3329858468-a photo of a beautiful sunset in San Francisco.jpg"}, {"colors": ["#766dae", "#4e2806", "#e8b878", "#1c317e", "#46c21e"], "imgURL": "static/images/00000-3329858467-a photo of a beautiful sunset in San Francisco.jpg"}]}, {"prompt": "a photo of a elmo drinking at starbucks", "images": [{"colors": ["#179209", "#eee84b", "#571208", "#b91806", "#537c91"], "imgURL": "static/images/00036-2824881702-a photo of a elmo drinking at starbucks.jpg"}, {"colors": ["#d62fec", "#281185", "#f2bbde", "#db2f23", "#8505e1"], "imgURL": "static/images/00035-2824881701-a photo of a elmo drinking at starbucks.jpg"}, {"colors": ["#19550f", "#a80e05", "#f5ce1f", "#f7d9cf", "#859721"], "imgURL": "static/images/00037-2824881703-a photo of a elmo drinking at starbucks.jpg"}]}, {"prompt": "a photo of a polar bear in the Arctic", "images": [{"colors": ["#4cdde5", "#e755ce", "#2d2a64", "#26c81d", "#d8edc5"], "imgURL": "static/images/00010-3082979826-a photo of a polar bear in the Arctic.jpg"}, {"colors": ["#66bdda", "#071ed8", "#04111b", "#1f3f78", "#7c839b"], "imgURL": "static/images/00009-3082979825-a photo of a polar bear in the Arctic.jpg"}, {"colors": ["#c4efd0", "#194286", "#6591b7", "#7e9f52", "#576a3d"], "imgURL": "static/images/00011-3082979827-a photo of a polar bear in the Arctic.jpg"}]}, {"prompt": "a paint of a polar bear in the Arctic painted by Vincent van Gogh", "images": [{"colors": ["#3de9f9", "#172eb8", "#dc44d6", "#1bd40d", "#e7d9e8"], "imgURL": "static/images/00049-3943684507-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg"}, {"colors": ["#f984fb", "#35208b", "#a9040f", "#d209ef", "#eed5f9"], "imgURL": "static/images/00050-3943684508-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg"}, {"colors": ["#143153", "#ebf521", "#7c3117", "#a8c9f2", "#66a70a"], "imgURL": "static/images/00048-3943684506-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg"}]}, {"prompt": "a photo of a polar bear in the zoo", "images": [{"colors": ["#cd1ce0", "#f397ec", "#980d30", "#3e231a", "#713789"], "imgURL": "static/images/00026-1171300814-a photo of a polar bear in the zoo.jpg"}, {"colors": ["#1f15dc", "#f6c3fb", "#92edfa", "#1d2824", "#de30f2"], "imgURL": "static/images/00013-2991374000-a photo of a polar bear in the zoo.jpg"}, {"colors": ["#0512dc", "#ceebf5", "#0c2726", "#55acb6", "#8c61fc"], "imgURL": "static/images/00027-1171300815-a photo of a polar bear in the zoo.jpg"}]}] \ No newline at end of file diff --git a/frontend/static/images/00000-3329858467-a photo of a beautiful sunset in San Francisco.jpg b/frontend/static/images/00000-3329858467-a photo of a beautiful sunset in San Francisco.jpg deleted file mode 100644 index ad6b7c1012cf8da3254d48831a0453066944f47f..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00000-3329858467-a photo of a beautiful sunset in San Francisco.jpg and /dev/null differ diff --git a/frontend/static/images/00001-3329858468-a photo of a beautiful sunset in San Francisco.jpg b/frontend/static/images/00001-3329858468-a photo of a beautiful sunset in San Francisco.jpg deleted file mode 100644 index f11be3b23befc7766e85d1239531f2ccae8dea6a..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00001-3329858468-a photo of a beautiful sunset in San Francisco.jpg and /dev/null differ diff --git a/frontend/static/images/00003-3329858470-a photo of a beautiful sunset in San Francisco.jpg b/frontend/static/images/00003-3329858470-a photo of a beautiful sunset in San Francisco.jpg deleted file mode 100644 index 59d9d0d4720b9c063e90171c0097258a1b279f00..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00003-3329858470-a photo of a beautiful sunset in San Francisco.jpg and /dev/null differ diff --git a/frontend/static/images/00009-3082979825-a photo of a polar bear in the Arctic.jpg b/frontend/static/images/00009-3082979825-a photo of a polar bear in the Arctic.jpg deleted file mode 100644 index a1102daf851746f585e3e9b767c708d3cd447eba..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00009-3082979825-a photo of a polar bear in the Arctic.jpg and /dev/null differ diff --git a/frontend/static/images/00010-3082979826-a photo of a polar bear in the Arctic.jpg b/frontend/static/images/00010-3082979826-a photo of a polar bear in the Arctic.jpg deleted file mode 100644 index 61d8a8d6f0a2ed00648be872d0b6bff3480e6594..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00010-3082979826-a photo of a polar bear in the Arctic.jpg and /dev/null differ diff --git a/frontend/static/images/00011-3082979827-a photo of a polar bear in the Arctic.jpg b/frontend/static/images/00011-3082979827-a photo of a polar bear in the Arctic.jpg deleted file mode 100644 index af15798697858abad47ebb35aef8eb0bf0127ed1..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00011-3082979827-a photo of a polar bear in the Arctic.jpg and /dev/null differ diff --git a/frontend/static/images/00013-2991374000-a photo of a polar bear in the zoo.jpg b/frontend/static/images/00013-2991374000-a photo of a polar bear in the zoo.jpg deleted file mode 100644 index 78deaa70f21bf3745d051fd3c4ddc26dd8494b5b..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00013-2991374000-a photo of a polar bear in the zoo.jpg and /dev/null differ diff --git a/frontend/static/images/00026-1171300814-a photo of a polar bear in the zoo.jpg b/frontend/static/images/00026-1171300814-a photo of a polar bear in the zoo.jpg deleted file mode 100644 index 58bfceb96854cbc262565a45f64558f5084d3dbe..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00026-1171300814-a photo of a polar bear in the zoo.jpg and /dev/null differ diff --git a/frontend/static/images/00027-1171300815-a photo of a polar bear in the zoo.jpg b/frontend/static/images/00027-1171300815-a photo of a polar bear in the zoo.jpg deleted file mode 100644 index 0388f01ca8b50b2bf10cbabbcc8e792d850645ad..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00027-1171300815-a photo of a polar bear in the zoo.jpg and /dev/null differ diff --git a/frontend/static/images/00035-2824881701-a photo of a elmo drinking at starbucks.jpg b/frontend/static/images/00035-2824881701-a photo of a elmo drinking at starbucks.jpg deleted file mode 100644 index 554b23145f7ef33ee65de196915ae49c83921f78..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00035-2824881701-a photo of a elmo drinking at starbucks.jpg and /dev/null differ diff --git a/frontend/static/images/00036-2824881702-a photo of a elmo drinking at starbucks.jpg b/frontend/static/images/00036-2824881702-a photo of a elmo drinking at starbucks.jpg deleted file mode 100644 index 21c236d854e199b9cf2c5711c50253259215b053..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00036-2824881702-a photo of a elmo drinking at starbucks.jpg and /dev/null differ diff --git a/frontend/static/images/00037-2824881703-a photo of a elmo drinking at starbucks.jpg b/frontend/static/images/00037-2824881703-a photo of a elmo drinking at starbucks.jpg deleted file mode 100644 index b47a18b53ece14e0ce122e763fba9c800df16052..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00037-2824881703-a photo of a elmo drinking at starbucks.jpg and /dev/null differ diff --git a/frontend/static/images/00044-2327336161-a painting of a Ferrari by Claude Monet.jpg b/frontend/static/images/00044-2327336161-a painting of a Ferrari by Claude Monet.jpg deleted file mode 100644 index 465854c20eede023a7451922e709c190b294da44..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00044-2327336161-a painting of a Ferrari by Claude Monet.jpg and /dev/null differ diff --git a/frontend/static/images/00045-2327336162-a painting of a Ferrari by Claude Monet.jpg b/frontend/static/images/00045-2327336162-a painting of a Ferrari by Claude Monet.jpg deleted file mode 100644 index a214c59bf6d3692ffab872f452ecefdc9887cd46..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00045-2327336162-a painting of a Ferrari by Claude Monet.jpg and /dev/null differ diff --git a/frontend/static/images/00046-2327336163-a painting of a Ferrari by Claude Monet.jpg b/frontend/static/images/00046-2327336163-a painting of a Ferrari by Claude Monet.jpg deleted file mode 100644 index eacc6725b7bd7c7fc801049028c819b21b7526a1..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00046-2327336163-a painting of a Ferrari by Claude Monet.jpg and /dev/null differ diff --git a/frontend/static/images/00048-3943684506-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg b/frontend/static/images/00048-3943684506-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg deleted file mode 100644 index b8208e7d02af5d1995a2299dc28ba1d5380aa71e..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00048-3943684506-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg and /dev/null differ diff --git a/frontend/static/images/00049-3943684507-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg b/frontend/static/images/00049-3943684507-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg deleted file mode 100644 index 806b3297ce9ae424e93f3220b9bd9d71fc5ebbe5..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00049-3943684507-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg and /dev/null differ diff --git a/frontend/static/images/00050-3943684508-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg b/frontend/static/images/00050-3943684508-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg deleted file mode 100644 index d4fc9f0204aaf20c4555b479d04ba3c6d8d9fd7f..0000000000000000000000000000000000000000 Binary files a/frontend/static/images/00050-3943684508-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg and /dev/null differ diff --git a/requirements.txt b/requirements.txt index 73ec2acac745db37f07182c472e6477fa827ba4f..82e30b02d4dbe71cef038a08dd0578e0fd349528 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,8 @@ datasets flask flask_cors +flask_expects_json requests Pillow -flask \ No newline at end of file +gradio +Flask-APScheduler \ No newline at end of file diff --git a/static/_app/immutable/assets/_layout-d2c2d65f.css b/static/_app/immutable/assets/_layout-d2c2d65f.css deleted file mode 100644 index aa09d86620726bf01fdf79e0625afb348f5d8f80..0000000000000000000000000000000000000000 --- a/static/_app/immutable/assets/_layout-d2c2d65f.css +++ /dev/null @@ -1 +0,0 @@ -*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[type=text],[type=email],[type=url],[type=password],[type=number],[type=date],[type=datetime-local],[type=month],[type=search],[type=tel],[type=time],[type=week],[multiple],textarea,select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--tw-shadow: 0 0 #0000}[type=text]:focus,[type=email]:focus,[type=url]:focus,[type=password]:focus,[type=number]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=month]:focus,[type=search]:focus,[type=tel]:focus,[type=time]:focus,[type=week]:focus,[multiple]:focus,textarea:focus,select:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-color:#2563eb}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple]{background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow: 0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 2px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}[type=radio]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}[type=checkbox]:checked:hover,[type=checkbox]:checked:focus,[type=radio]:checked:hover,[type=radio]:checked:focus{border-color:transparent;background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:indeterminate:hover,[type=checkbox]:indeterminate:focus{border-color:transparent;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::-webkit-backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.bottom-0{bottom:0px}.top-0{top:0px}.z-0{z-index:0}.z-50{z-index:50}.col-span-6{grid-column:span 6 / span 6}.col-span-4{grid-column:span 4 / span 4}.col-span-2{grid-column:span 2 / span 2}.row-start-1{grid-row-start:1}.row-start-3{grid-row-start:3}.row-start-2{grid-row-start:2}.row-start-4{grid-row-start:4}.m-1{margin:.25rem}.mx-auto{margin-left:auto;margin-right:auto}.my-3{margin-top:.75rem;margin-bottom:.75rem}.my-10{margin-top:2.5rem;margin-bottom:2.5rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.flex{display:flex}.grid{display:grid}.aspect-square{aspect-ratio:1 / 1}.h-3{height:.75rem}.w-full{width:100%}.w-3{width:.75rem}.min-w-\[9ch\]{min-width:9ch}.max-w-full{max-width:100%}.max-w-prose{max-width:65ch}.max-w-\[100px\]{max-width:100px}.max-w-screen-md{max-width:768px}.grow{flex-grow:1}@-webkit-keyframes ping{75%,to{transform:scale(2);opacity:0}}@keyframes ping{75%,to{transform:scale(2);opacity:0}}.animate-ping{-webkit-animation:ping .5s cubic-bezier(0,0,.2,1);animation:ping .5s cubic-bezier(0,0,.2,1)}.cursor-pointer{cursor:pointer}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-center{justify-content:center}.justify-around{justify-content:space-around}.gap-3{gap:.75rem}.gap-4{gap:1rem}.rounded-full{border-radius:9999px}.rounded-2xl{border-radius:1rem}.border{border-width:1px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-black{--tw-border-opacity: 1;border-color:rgb(0 0 0 / var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity: 1;border-color:rgb(229 231 235 / var(--tw-border-opacity))}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-black{--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity))}.bg-slate-900{--tw-bg-opacity: 1;background-color:rgb(15 23 42 / var(--tw-bg-opacity))}.px-2{padding-left:.5rem;padding-right:.5rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-8{padding-top:2rem;padding-bottom:2rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.pl-1{padding-left:.25rem}.pb-3{padding-bottom:.75rem}.text-center{text-align:center}.text-xs{font-size:.75rem;line-height:1rem}.text-base{font-size:1rem;line-height:1.5rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-sm{font-size:.875rem;line-height:1.25rem}.font-bold{font-weight:700}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.italic{font-style:italic}.leading-normal{line-height:1.5}.text-black{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.underline{text-decoration-line:underline}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.line-clamp-3{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3}.placeholder\:text-white::-moz-placeholder{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.placeholder\:text-white::placeholder{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.placeholder\:text-opacity-40::-moz-placeholder{--tw-text-opacity: .4}.placeholder\:text-opacity-40::placeholder{--tw-text-opacity: .4}.hover\:text-gray-500:hover{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.hover\:no-underline:hover{text-decoration-line:none}.focus\:border-gray-400:focus{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.disabled\:opacity-50:disabled{opacity:.5}@media (prefers-color-scheme: dark){.dark\:border-white{--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity))}.dark\:bg-\[rgb\(11\,15\,25\)\]{--tw-bg-opacity: 1;background-color:rgb(11 15 25 / var(--tw-bg-opacity))}.dark\:bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.dark\:bg-black{--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity))}.dark\:bg-slate-300{--tw-bg-opacity: 1;background-color:rgb(203 213 225 / var(--tw-bg-opacity))}.dark\:text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark\:text-black{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.dark\:placeholder\:text-black::-moz-placeholder{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.dark\:placeholder\:text-black::placeholder{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}}@media (min-width: 768px){.md\:col-span-4{grid-column:span 4 / span 4}.md\:col-span-2{grid-column:span 2 / span 2}.md\:col-span-5{grid-column:span 5 / span 5}.md\:col-span-1{grid-column:span 1 / span 1}.md\:col-start-5{grid-column-start:5}.md\:row-start-2{grid-row-start:2}.md\:justify-end{justify-content:flex-end}} diff --git a/static/_app/immutable/chunks/1-69bee870.js b/static/_app/immutable/chunks/1-69bee870.js deleted file mode 100644 index 291cf7e3a49b3c06abdaeb1caccf01fc8ed97c11..0000000000000000000000000000000000000000 --- a/static/_app/immutable/chunks/1-69bee870.js +++ /dev/null @@ -1 +0,0 @@ -import{default as t}from"../components/error.svelte-a1debfe3.js";export{t as component}; diff --git a/static/_app/immutable/chunks/2-0bf15b71.js b/static/_app/immutable/chunks/2-0bf15b71.js deleted file mode 100644 index 644f7eab0fd3900049688ea6b5342f331e035e76..0000000000000000000000000000000000000000 --- a/static/_app/immutable/chunks/2-0bf15b71.js +++ /dev/null @@ -1 +0,0 @@ -import{default as t}from"../components/pages/_page.svelte-b51c2c7b.js";export{t as component}; diff --git a/static/_app/immutable/chunks/singletons-f0cf8c8d.js b/static/_app/immutable/chunks/singletons-f0cf8c8d.js deleted file mode 100644 index e0a81c27536227022b93db7725e36abeb8539535..0000000000000000000000000000000000000000 --- a/static/_app/immutable/chunks/singletons-f0cf8c8d.js +++ /dev/null @@ -1 +0,0 @@ -import{w as u}from"./index-f686559f.js";let f="",b="";function g(n){f=n.base,b=n.assets||f}function m(n){let e=n.baseURI;if(!e){const t=n.getElementsByTagName("base");e=t.length?t[0].href:n.URL}return e}function _(){return{x:pageXOffset,y:pageYOffset}}function k(n){let e,t=null,r=null,a=null;for(const s of n.composedPath())s instanceof Element&&(!e&&s.nodeName.toUpperCase()==="A"&&(e=s),t===null&&(t=l(s,"data-sveltekit-noscroll")),r===null&&(r=l(s,"data-sveltekit-prefetch")),a===null&&(a=l(s,"data-sveltekit-reload")));const o=e&&new URL(e instanceof SVGAElement?e.href.baseVal:e.href,document.baseURI);return{a:e,url:o,options:{noscroll:t,prefetch:r,reload:a}}}function l(n,e){const t=n.getAttribute(e);return t===null?t:t===""?!0:(t==="off",!1)}function d(n){const e=u(n);let t=!0;function r(){t=!0,e.update(s=>s)}function a(s){t=!1,e.set(s)}function o(s){let i;return e.subscribe(c=>{(i===void 0||t&&c!==i)&&s(i=c)})}return{notify:r,set:a,subscribe:o}}function p(){const{set:n,subscribe:e}=u(!1);let t;async function r(){clearTimeout(t);const a=await fetch(`${b}/_app/version.json`,{headers:{pragma:"no-cache","cache-control":"no-cache"}});if(a.ok){const{version:o}=await a.json(),s=o!=="1663707660362";return s&&(n(!0),clearTimeout(t)),s}else throw new Error(`Version check failed: ${a.status}`)}return{subscribe:e,check:r}}function v(n){n.client}const w={url:d({}),page:d({}),navigating:u(null),updated:p()};export{_ as a,g as b,k as f,m as g,v as i,w as s}; diff --git a/static/_app/immutable/components/error.svelte-a1debfe3.js b/static/_app/immutable/components/error.svelte-a1debfe3.js deleted file mode 100644 index 5698183196e238a92de769ea444e635218378dd1..0000000000000000000000000000000000000000 --- a/static/_app/immutable/components/error.svelte-a1debfe3.js +++ /dev/null @@ -1 +0,0 @@ -import{S as A,i as C,s as F,k as v,q as k,a as h,e as q,l as g,m as E,r as $,h as p,c as R,b as u,F as P,u as S,A as w,G}from"../chunks/index-cab3212e.js";import{s as H}from"../chunks/singletons-f0cf8c8d.js";const O=()=>{const t=H,s={page:{subscribe:t.page.subscribe},navigating:{subscribe:t.navigating.subscribe},updated:t.updated};return Object.defineProperties(s,{preloading:{get(){return console.error("stores.preloading is deprecated; use stores.navigating instead"),{subscribe:t.navigating.subscribe}},enumerable:!1},session:{get(){return B(),{}},enumerable:!1}}),s},z={subscribe(t){return O().page.subscribe(t)}};function B(){throw new Error("stores.session is no longer available. See https://github.com/sveltejs/kit/discussions/5883")}function N(t){let s,i=t[0].error.frame+"",o;return{c(){s=v("pre"),o=k(i)},l(r){s=g(r,"PRE",{});var a=E(s);o=$(a,i),a.forEach(p)},m(r,a){u(r,s,a),P(s,o)},p(r,a){a&1&&i!==(i=r[0].error.frame+"")&&S(o,i)},d(r){r&&p(s)}}}function y(t){let s,i=t[0].error.stack+"",o;return{c(){s=v("pre"),o=k(i)},l(r){s=g(r,"PRE",{});var a=E(s);o=$(a,i),a.forEach(p)},m(r,a){u(r,s,a),P(s,o)},p(r,a){a&1&&i!==(i=r[0].error.stack+"")&&S(o,i)},d(r){r&&p(s)}}}function D(t){let s,i=t[0].status+"",o,r,a,b=t[0].error.message+"",_,d,c,m,l=t[0].error.frame&&N(t),n=t[0].error.stack&&y(t);return{c(){s=v("h1"),o=k(i),r=h(),a=v("pre"),_=k(b),d=h(),l&&l.c(),c=h(),n&&n.c(),m=q()},l(e){s=g(e,"H1",{});var f=E(s);o=$(f,i),f.forEach(p),r=R(e),a=g(e,"PRE",{});var j=E(a);_=$(j,b),j.forEach(p),d=R(e),l&&l.l(e),c=R(e),n&&n.l(e),m=q()},m(e,f){u(e,s,f),P(s,o),u(e,r,f),u(e,a,f),P(a,_),u(e,d,f),l&&l.m(e,f),u(e,c,f),n&&n.m(e,f),u(e,m,f)},p(e,[f]){f&1&&i!==(i=e[0].status+"")&&S(o,i),f&1&&b!==(b=e[0].error.message+"")&&S(_,b),e[0].error.frame?l?l.p(e,f):(l=N(e),l.c(),l.m(c.parentNode,c)):l&&(l.d(1),l=null),e[0].error.stack?n?n.p(e,f):(n=y(e),n.c(),n.m(m.parentNode,m)):n&&(n.d(1),n=null)},i:w,o:w,d(e){e&&p(s),e&&p(r),e&&p(a),e&&p(d),l&&l.d(e),e&&p(c),n&&n.d(e),e&&p(m)}}}function I(t,s,i){let o;return G(t,z,r=>i(0,o=r)),[o]}class L extends A{constructor(s){super(),C(this,s,I,D,F,{})}}export{L as default}; diff --git a/static/_app/immutable/components/pages/_page.svelte-b51c2c7b.js b/static/_app/immutable/components/pages/_page.svelte-b51c2c7b.js deleted file mode 100644 index 54e57d64b8f4821740178a25a7d7a6053823698e..0000000000000000000000000000000000000000 --- a/static/_app/immutable/components/pages/_page.svelte-b51c2c7b.js +++ /dev/null @@ -1,9 +0,0 @@ -import{S as qe,i as He,s as Se,k as D,l as q,m as H,h as k,n as b,b as te,F as m,A as Be,H as Oe,I as Le,a as L,q as G,J as Ue,c as U,r as Q,p as je,K as ne,u as ye,v as ft,w as ut,L as Ae,x as ht,f as ae,t as he,y as dt,M as Re,N as Et,O as Fe,P as Ge,d as gt,G as Qe,o as It,g as pt,Q as B}from"../../chunks/index-cab3212e.js";import{w as bt}from"../../chunks/index-f686559f.js";if(!Z)var Z={map:function(e,t){var r={};return t?e.map(function(n,s){return r.index=s,t.call(r,n)}):e.slice()},naturalOrder:function(e,t){return et?1:0},sum:function(e,t){var r={};return e.reduce(t?function(n,s,o){return r.index=o,n+t.call(r,s)}:function(n,s){return n+s},0)},max:function(e,t){return Math.max.apply(null,t?Z.map(e,t):e)}};var Mt=function(){var e=5,t=8-e,r=1e3,n=.75;function s(h,a,c){return(h<<2*e)+(a<>t;return gval=h[1]>>t,bval=h[2]>>t,c>=a.r1&&c<=a.r2&&gval>=a.g1&&gval<=a.g2&&bval>=a.b1&&bval<=a.b2}};function i(){this.vboxes=new o(function(h,a){return Z.naturalOrder(h.vbox.count()*h.vbox.volume(),a.vbox.count()*a.vbox.volume())})}i.prototype={push:function(h){this.vboxes.push({vbox:h,color:h.avg()})},palette:function(){return this.vboxes.map(function(h){return h.color})},size:function(){return this.vboxes.size()},map:function(h){for(var a=this.vboxes,c=0;c251&&f[1]>251&&f[2]>251&&(h[c].color=[255,255,255])}};function u(h){var a=1<<3*e,c=new Array(a),f,p,d,x;return h.forEach(function(v){p=v[0]>>t,d=v[1]>>t,x=v[2]>>t,f=s(p,d,x),c[f]=(c[f]||0)+1}),c}function w(h,a){var c=1e6,f=0,p=1e6,d=0,x=1e6,v=0,I,g,_;return h.forEach(function(E){I=E[0]>>t,g=E[1]>>t,_=E[2]>>t,If&&(f=I),gd&&(d=g),_v&&(v=_)}),new l(c,f,p,d,x,v,a)}function P(h,a){if(!a.count())return;var c=a.r2-a.r1+1,f=a.g2-a.g1+1,p=a.b2-a.b1+1,d=Z.max([c,f,p]);if(a.count()==1)return[a.copy()];var x=0,v=[],I=[],g,_,E,C,T;if(d==c)for(g=a.r1;g<=a.r2;g++){for(C=0,_=a.g1;_<=a.g2;_++)for(E=a.b1;E<=a.b2;E++)T=s(g,_,E),C+=h[T]||0;x+=C,v[g]=x}else if(d==f)for(g=a.g1;g<=a.g2;g++){for(C=0,_=a.r1;_<=a.r2;_++)for(E=a.b1;E<=a.b2;E++)T=s(_,g,E),C+=h[T]||0;x+=C,v[g]=x}else for(g=a.b1;g<=a.b2;g++){for(C=0,_=a.r1;_<=a.r2;_++)for(E=a.g1;E<=a.g2;E++)T=s(_,E,g),C+=h[T]||0;x+=C,v[g]=x}v.forEach(function(z,O){I[O]=x-z});function F(z){var O=z+"1",$=z+"2",y,M,N,S,j,A=0;for(g=a[O];g<=a[$];g++)if(v[g]>x/2){for(N=a.copy(),S=a.copy(),y=g-a[O],M=a[$]-g,y<=M?j=Math.min(a[$]-1,~~(g+M/2)):j=Math.max(a[O],~~(g-1-y/2));!v[j];)j++;for(A=I[j];!A&&v[j-1];)A=I[--j];return N[$]=j,S[O]=N[$]+1,[N,S]}}return d==c?F("r"):d==f?F("g"):F("b")}function R(h,a){if(!h.length||a<2||a>256)return!1;var c=u(h);c.forEach(function(){});var f=w(h,c),p=new o(function(I,g){return Z.naturalOrder(I.count(),g.count())});p.push(f);function d(I,g){for(var _=1,E=0,C;E=g)||E++>r)return}}d(p,n*a);for(var x=new o(function(I,g){return Z.naturalOrder(I.count()*I.volume(),g.count()*g.volume())});p.size();)x.push(p.pop());d(x,a-x.size());for(var v=new i;x.size();)v.push(x.pop());return v}return{quantize:R}}(),Pt=Mt.quantize;function ve(e,t,r){e.prototype=t.prototype=r,r.constructor=e}function Ee(e,t){var r=Object.create(e.prototype);for(var n in t)r[n]=t[n];return r}function oe(){}var me=.7,ke=1/me,fe="\\s*([+-]?\\d+)\\s*",xe="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",W="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",Ct=/^#([0-9a-f]{3,8})$/,Dt=new RegExp(`^rgb\\(${fe},${fe},${fe}\\)$`),qt=new RegExp(`^rgb\\(${W},${W},${W}\\)$`),Ht=new RegExp(`^rgba\\(${fe},${fe},${fe},${xe}\\)$`),St=new RegExp(`^rgba\\(${W},${W},${W},${xe}\\)$`),Ot=new RegExp(`^hsl\\(${xe},${W},${W}\\)$`),Rt=new RegExp(`^hsla\\(${xe},${W},${W},${xe}\\)$`),Je={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};ve(oe,ze,{copy(e){return Object.assign(new this.constructor,this,e)},displayable(){return this.rgb().displayable()},hex:Ke,formatHex:Ke,formatHex8:zt,formatHsl:Tt,formatRgb:We,toString:We});function Ke(){return this.rgb().formatHex()}function zt(){return this.rgb().formatHex8()}function Tt(){return xt(this).formatHsl()}function We(){return this.rgb().formatRgb()}function ze(e){var t,r;return e=(e+"").trim().toLowerCase(),(t=Ct.exec(e))?(r=t[1].length,t=parseInt(t[1],16),r===6?Xe(t):r===3?new V(t>>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):r===8?we(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):r===4?we(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|t&240,((t&15)<<4|t&15)/255):null):(t=Dt.exec(e))?new V(t[1],t[2],t[3],1):(t=qt.exec(e))?new V(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=Ht.exec(e))?we(t[1],t[2],t[3],t[4]):(t=St.exec(e))?we(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=Ot.exec(e))?et(t[1],t[2]/100,t[3]/100,1):(t=Rt.exec(e))?et(t[1],t[2]/100,t[3]/100,t[4]):Je.hasOwnProperty(e)?Xe(Je[e]):e==="transparent"?new V(NaN,NaN,NaN,0):null}function Xe(e){return new V(e>>16&255,e>>8&255,e&255,1)}function we(e,t,r,n){return n<=0&&(e=t=r=NaN),new V(e,t,r,n)}function mt(e){return e instanceof oe||(e=ze(e)),e?(e=e.rgb(),new V(e.r,e.g,e.b,e.opacity)):new V}function Te(e,t,r,n){return arguments.length===1?mt(e):new V(e,t,r,n==null?1:n)}function V(e,t,r,n){this.r=+e,this.g=+t,this.b=+r,this.opacity=+n}ve(V,Te,Ee(oe,{brighter(e){return e=e==null?ke:Math.pow(ke,e),new V(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?me:Math.pow(me,e),new V(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new V(le(this.r),le(this.g),le(this.b),Ne(this.opacity))},displayable(){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:Ye,formatHex:Ye,formatHex8:Vt,formatRgb:Ze,toString:Ze}));function Ye(){return`#${ie(this.r)}${ie(this.g)}${ie(this.b)}`}function Vt(){return`#${ie(this.r)}${ie(this.g)}${ie(this.b)}${ie((isNaN(this.opacity)?1:this.opacity)*255)}`}function Ze(){const e=Ne(this.opacity);return`${e===1?"rgb(":"rgba("}${le(this.r)}, ${le(this.g)}, ${le(this.b)}${e===1?")":`, ${e})`}`}function Ne(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function le(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function ie(e){return e=le(e),(e<16?"0":"")+e.toString(16)}function et(e,t,r,n){return n<=0?e=t=r=NaN:r<=0||r>=1?e=t=NaN:t<=0&&(e=NaN),new K(e,t,r,n)}function xt(e){if(e instanceof K)return new K(e.h,e.s,e.l,e.opacity);if(e instanceof oe||(e=ze(e)),!e)return new K;if(e instanceof K)return e;e=e.rgb();var t=e.r/255,r=e.g/255,n=e.b/255,s=Math.min(t,r,n),o=Math.max(t,r,n),l=NaN,i=o-s,u=(o+s)/2;return i?(t===o?l=(r-n)/i+(r0&&u<1?0:l,new K(l,i,u,e.opacity)}function Bt(e,t,r,n){return arguments.length===1?xt(e):new K(e,t,r,n==null?1:n)}function K(e,t,r,n){this.h=+e,this.s=+t,this.l=+r,this.opacity=+n}ve(K,Bt,Ee(oe,{brighter(e){return e=e==null?ke:Math.pow(ke,e),new K(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?me:Math.pow(me,e),new K(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+(this.h<0)*360,t=isNaN(e)||isNaN(this.s)?0:this.s,r=this.l,n=r+(r<.5?r:1-r)*t,s=2*r-n;return new V(Ie(e>=240?e-240:e+120,s,n),Ie(e,s,n),Ie(e<120?e+240:e-120,s,n),this.opacity)},clamp(){return new K(tt(this.h),_e(this.s),_e(this.l),Ne(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=Ne(this.opacity);return`${e===1?"hsl(":"hsla("}${tt(this.h)}, ${_e(this.s)*100}%, ${_e(this.l)*100}%${e===1?")":`, ${e})`}`}}));function tt(e){return e=(e||0)%360,e<0?e+360:e}function _e(e){return Math.max(0,Math.min(1,e||0))}function Ie(e,t,r){return(e<60?t+(r-t)*e/60:e<180?r:e<240?t+(r-t)*(240-e)/60:t)*255}const Lt=Math.PI/180,Ut=180/Math.PI,$e=18,vt=.96422,wt=1,_t=.82521,yt=4/29,ue=6/29,kt=3*ue*ue,jt=ue*ue*ue;function Nt(e){if(e instanceof X)return new X(e.l,e.a,e.b,e.opacity);if(e instanceof ee)return $t(e);e instanceof V||(e=mt(e));var t=De(e.r),r=De(e.g),n=De(e.b),s=Me((.2225045*t+.7168786*r+.0606169*n)/wt),o,l;return t===r&&r===n?o=l=s:(o=Me((.4360747*t+.3850649*r+.1430804*n)/vt),l=Me((.0139322*t+.0971045*r+.7141733*n)/_t)),new X(116*s-16,500*(o-s),200*(s-l),e.opacity)}function At(e,t,r,n){return arguments.length===1?Nt(e):new X(e,t,r,n==null?1:n)}function X(e,t,r,n){this.l=+e,this.a=+t,this.b=+r,this.opacity=+n}ve(X,At,Ee(oe,{brighter(e){return new X(this.l+$e*(e==null?1:e),this.a,this.b,this.opacity)},darker(e){return new X(this.l-$e*(e==null?1:e),this.a,this.b,this.opacity)},rgb(){var e=(this.l+16)/116,t=isNaN(this.a)?e:e+this.a/500,r=isNaN(this.b)?e:e-this.b/200;return t=vt*Pe(t),e=wt*Pe(e),r=_t*Pe(r),new V(Ce(3.1338561*t-1.6168667*e-.4906146*r),Ce(-.9787684*t+1.9161415*e+.033454*r),Ce(.0719453*t-.2289914*e+1.4052427*r),this.opacity)}}));function Me(e){return e>jt?Math.pow(e,1/3):e/kt+yt}function Pe(e){return e>ue?e*e*e:kt*(e-yt)}function Ce(e){return 255*(e<=.0031308?12.92*e:1.055*Math.pow(e,1/2.4)-.055)}function De(e){return(e/=255)<=.04045?e/12.92:Math.pow((e+.055)/1.055,2.4)}function Ft(e){if(e instanceof ee)return new ee(e.h,e.c,e.l,e.opacity);if(e instanceof X||(e=Nt(e)),e.a===0&&e.b===0)return new ee(NaN,0be(t)).sort((t,r)=>{const n=t.h,s=r.h;return s-n||isNaN(s)-isNaN(n)})}function Jt(e,t,r){const n=e,s=[];for(let o=0,l,i,u,w,P;o"u"||P>=125)&&(i>250&&u>250&&w>250||s.push([i,u,w]));return s}function Kt(e,t=5,r=1){return new Promise(n=>{const s=new Image;s.onload=async()=>{const o=s.width,l=s.height,i=document.createElement("canvas");i.width=o,i.height=l;const u=i.getContext("2d");u.drawImage(s,0,0,o,l);const w=u.getImageData(0,0,o,l),P=Jt(w.data,o*l,r),h=Pt(P,t).palette(),a=await new Promise(f=>i.toBlob(f,"image/jpeg",.95)),c=h.map(f=>Te(...f));n({colors:Qt(c),imgBlob:a})},s.src=e})}async function Wt(e,t){const r=Xt(t),n="https://huggingface.co/uploads",o=`color-palette-${crypto.randomUUID().split("-")[0]}-${r}.jpeg`,l=new File([e],o,{type:"image/jpeg"});console.log("uploading image",l);const u=await(await fetch(n,{method:"POST",headers:{"Content-Type":l.type,"X-Requested-With":"XMLHttpRequest"},body:l})).text();return console.log("uploaded images",u),u}function Xt(e){return e?e.toString().toLowerCase().replace(/\s+/g,"-").replace(/[^\w\-]+/g,"").replace(/\-\-+/g,"-").replace(/^-+/,"").replace(/-+$/,""):""}const J=bt(""),ce=bt(!1),Yt="wss://spaces.huggingface.tech/stabilityai/stable-diffusion/queue/join";function rt(e,t,r){const n=e.slice();return n[6]=t[r],n[8]=r,n}function nt(e){let t,r,n,s,o,l,i=e[6].formatHex()+"",u,w,P,R,h;function a(){return e[4](e[6],e[8])}return{c(){t=D("div"),r=Le("svg"),n=Le("rect"),o=L(),l=D("span"),u=G(i),P=L(),this.h()},l(c){t=q(c,"DIV",{class:!0});var f=H(t);r=Ue(f,"svg",{class:!0,width:!0,viewBox:!0});var p=H(r);n=Ue(p,"rect",{x:!0,y:!0,width:!0,height:!0,fill:!0}),H(n).forEach(k),p.forEach(k),o=U(f),l=q(f,"SPAN",{title:!0,class:!0,style:!0});var d=H(l);u=Q(d,i),d.forEach(k),P=U(f),f.forEach(k),this.h()},h(){b(n,"x","0"),b(n,"y","0"),b(n,"width","50"),b(n,"height","50"),b(n,"fill",s=e[6].formatHex()),b(r,"class","max-w-full"),b(r,"width","100"),b(r,"viewBox","0 0 50 50"),b(l,"title","Copy single color"),b(l,"class",w="cursor-pointer absolute bottom-0 text-center text-xs pl-1 font-bold uppercase "+(e[1]===e[8]?"animate-ping":"")),je(l,"color",e[2](e[6])),b(t,"class","cursor-pointer aspect-square relative")},m(c,f){te(c,t,f),m(t,r),m(r,n),m(t,o),m(t,l),m(l,u),m(t,P),R||(h=ne(t,"click",a),R=!0)},p(c,f){e=c,f&1&&s!==(s=e[6].formatHex())&&b(n,"fill",s),f&1&&i!==(i=e[6].formatHex()+"")&&ye(u,i),f&2&&w!==(w="cursor-pointer absolute bottom-0 text-center text-xs pl-1 font-bold uppercase "+(e[1]===e[8]?"animate-ping":""))&&b(l,"class",w),f&1&&je(l,"color",e[2](e[6]))},d(c){c&&k(t),R=!1,h()}}}function Zt(e){let t,r,n=e[0],s=[];for(let o=0;o50?be(w.h,w.c,0).formatHex():be(w.h,w.c,100).formatHex()}let o=-1;async function l(u,w){o>-1||(r(1,o=w),await navigator.permissions.query({name:"clipboard-write"}),await navigator.clipboard.writeText(u),setTimeout(()=>{r(1,o=-1)},500))}const i=(u,w)=>l(u.formatHex(),w);return e.$$set=u=>{"colors"in u&&r(0,n=u.colors)},[n,o,s,l,i]}class tr extends qe{constructor(t){super(),He(this,t,er,Zt,Se,{colors:0})}}function at(e,t,r){const n=e.slice();return n[12]=t[r],n[14]=r,n}function st(e){let t,r,n,s;function o(){return e[8](e[14])}function l(){return e[9](e[14])}return{c(){t=D("button"),this.h()},l(i){t=q(i,"BUTTON",{class:!0}),H(t).forEach(k),this.h()},h(){b(t,"class",r=(e[1]===e[14]?"bg-black dark:bg-white":"bg-white dark:bg-black")+" dark:bg-slate-300 rounded-full h-3 w-3 m-1 border border-black dark:border-white")},m(i,u){te(i,t,u),n||(s=[ne(t,"click",o),ne(t,"mousemove",l)],n=!0)},p(i,u){e=i,u&2&&r!==(r=(e[1]===e[14]?"bg-black dark:bg-white":"bg-white dark:bg-black")+" dark:bg-slate-300 rounded-full h-3 w-3 m-1 border border-black dark:border-white")&&b(t,"class",r)},d(i){i&&k(t),n=!1,Re(s)}}}function rr(e){let t,r,n,s,o,l,i,u,w,P,R,h,a,c,f,p,d,x,v,I,g,_=e[2]?"Copied":"Copy",E,C,T,F;i=new tr({props:{colors:e[4]}});let z=e[0].images,O=[];for(let $=0;${r(2,w=!1)},1e3))}const R=f=>r(1,u=f),h=f=>r(1,u=f),a=()=>l("remix",{prompt:n}),c=()=>P(s.map(f=>f.formatHex()).join(", "));return e.$$set=f=>{"promptData"in f&&r(0,i=f.promptData)},e.$$.update=()=>{e.$$.dirty&1&&r(5,n=i.prompt),e.$$.dirty&3&&r(4,s=i.images[u].colors.map(f=>Te(f))),e.$$.dirty&3&&r(3,o=i.images[u].imgURL)},[i,u,w,o,s,n,l,P,R,h,a,c]}class ar extends qe{constructor(t){super(),He(this,t,nr,rr,Se,{promptData:0})}}function it(e,t,r){const n=e.slice();return n[11]=t[r],n}function lt(e){let t,r;return{c(){t=D("h3"),r=G(e[3]),this.h()},l(n){t=q(n,"H3",{class:!0});var s=H(t);r=Q(s,e[3]),s.forEach(k),this.h()},h(){b(t,"class","text-xs font-bold ml-3")},m(n,s){te(n,t,s),m(t,r)},p(n,s){s&8&&ye(r,n[3])},d(n){n&&k(t)}}}function ot(e){let t,r,n=e[1],s=[];for(let l=0;lhe(s[l],1,1,()=>{s[l]=null});return{c(){t=D("div");for(let l=0;l{M=null}),gt())},i(N){z||(ae(M),z=!0)},o(N){he(M),z=!1},d(N){N&&k(t),y&&y.d(),M&&M.d(),O=!1,Re($)}}}function ir(e,t,r){let n,s;Qe(e,J,c=>r(3,n=c)),Qe(e,ce,c=>r(4,s=c));const o="/embed/huggingface-projects/color-palette-generator-sd/static/";let l,i;It(async()=>{fetch(o+"data.json").then(c=>c.json()).then(c=>r(1,l=c))});async function u(c){if(!c||s==!0)return;B(J,n="Pending",n),B(ce,s=!0,s);const f=crypto.randomUUID(),p={fn_index:2,data:[c,3,40,7.5,Number(Gt())]},d=new WebSocket(Yt);d.onopen=async function(x){d.send(JSON.stringify({hash:f}))},d.onclose=x=>{x.wasClean||(B(J,n="Error",n),B(ce,s=!1,s))},d.onmessage=async function(x){try{const v=JSON.parse(x.data);switch(B(J,n="",n),v.msg){case"send_data":B(J,n="Sending Data",n),d.send(JSON.stringify(p));break;case"queue_full":B(J,n="Queue full",n),d.close(),B(ce,s=!1,s);return;case"estimation":const{msg:I,rank:g,queue_size:_}=v;B(J,n=`On queue ${g}/${_}`,n);break;case"process_generating":B(J,n=v.success?"Generating":"Error",n);break;case"process_completed":B(J,n=v.success?"Complete":"Error",n);const E=await w(v.output.data[0],c);r(1,l=[{prompt:c,images:E}].concat(l)),window.scrollTo({top:0,behavior:"smooth"}),d.close(),B(ce,s=!1,s);return;case"process_starts":B(J,n="Process Starts",n);break}}catch(v){console.error(v),B(ce,s=!1,s),B(J,n="Error",n)}}}async function w(c,f){const p=[];for(const d of c){const{colors:x,imgBlob:v}=await Kt(d),I=await Wt(v,f),g={colors:x,imgURL:I};p.push(g)}return p}function P(c){r(2,i=c.detail.prompt),window.scrollTo({top:0,behavior:"smooth"})}function R(){i=this.value,r(2,i)}return[u,l,i,n,s,P,R,()=>u(i),()=>u(i)]}class cr extends qe{constructor(t){super(),He(this,t,ir,sr,Se,{generatePalette:0})}get generatePalette(){return this.$$.ctx[0]}}export{cr as default}; diff --git a/static/_app/immutable/start-da0c54a9.js b/static/_app/immutable/start-da0c54a9.js deleted file mode 100644 index ca8ac6c307cafd5cf5514752c4cd6e36dc7bd584..0000000000000000000000000000000000000000 --- a/static/_app/immutable/start-da0c54a9.js +++ /dev/null @@ -1 +0,0 @@ -import{S as Ge,i as We,s as He,a as Me,e as z,c as Xe,b as W,g as ie,t as K,d as le,f as x,h as F,j as Ye,o as be,k as Qe,l as Ze,m as et,n as ge,p as C,q as tt,r as nt,u as rt,v as H,w as Se,x as M,y as X,z as De}from"./chunks/index-cab3212e.js";import{g as Ce,f as qe,s as G,a as ve,b as at,i as st}from"./chunks/singletons-f0cf8c8d.js";const ot=function(){const e=document.createElement("link").relList;return e&&e.supports&&e.supports("modulepreload")?"modulepreload":"preload"}(),it=function(r,e){return new URL(r,e).href},Ve={},se=function(e,t,c){return!t||t.length===0?e():Promise.all(t.map(o=>{if(o=it(o,c),o in Ve)return;Ve[o]=!0;const d=o.endsWith(".css"),n=d?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${o}"]${n}`))return;const f=document.createElement("link");if(f.rel=d?"stylesheet":ot,d||(f.as="script",f.crossOrigin=""),f.href=o,document.head.appendChild(f),d)return new Promise((w,_)=>{f.addEventListener("load",w),f.addEventListener("error",()=>_(new Error(`Unable to preload CSS for ${o}`)))})})).then(()=>e())};class we{constructor(e,t){this.status=e,typeof t=="string"?this.body={message:t}:t?this.body=t:this.body={message:`Error: ${e}`}}toString(){return JSON.stringify(this.body)}}class Be{constructor(e,t){this.status=e,this.location=t}}function lt(r,e){return r==="/"||e==="ignore"?r:e==="never"?r.endsWith("/")?r.slice(0,-1):r:e==="always"&&!r.endsWith("/")?r+"/":r}function ct(r){for(const e in r)r[e]=r[e].replace(/%23/g,"#").replace(/%3[Bb]/g,";").replace(/%2[Cc]/g,",").replace(/%2[Ff]/g,"/").replace(/%3[Ff]/g,"?").replace(/%3[Aa]/g,":").replace(/%40/g,"@").replace(/%26/g,"&").replace(/%3[Dd]/g,"=").replace(/%2[Bb]/g,"+").replace(/%24/g,"$");return r}const ft=["href","pathname","search","searchParams","toString","toJSON"];function ut(r,e){const t=new URL(r);for(const c of ft){let o=t[c];Object.defineProperty(t,c,{get(){return e(),o},enumerable:!0,configurable:!0})}return t[Symbol.for("nodejs.util.inspect.custom")]=(c,o,d)=>d(r,o),dt(t),t}function dt(r){Object.defineProperty(r,"hash",{get(){throw new Error("Cannot access event.url.hash. Consider using `$page.url.hash` inside a component instead")}})}function pt(r){let e=5381,t=r.length;if(typeof r=="string")for(;t;)e=e*33^r.charCodeAt(--t);else for(;t;)e=e*33^r[--t];return(e>>>0).toString(36)}const Re=window.fetch;window.fetch=(r,e)=>{if((r instanceof Request?r.method:(e==null?void 0:e.method)||"GET")!=="GET"){const c=new URL(r instanceof Request?r.url:r.toString(),document.baseURI).href;oe.delete(c)}return Re(r,e)};const oe=new Map;function ht(r,e,t){let o=`script[data-sveltekit-fetched][data-url=${JSON.stringify(typeof r=="string"?r:r.url)}]`;t&&typeof t.body=="string"&&(o+=`[data-hash="${pt(t.body)}"]`);const d=document.querySelector(o);if(d!=null&&d.textContent){const{body:n,...f}=JSON.parse(d.textContent),w=d.getAttribute("data-ttl");return w&&oe.set(e,{body:n,init:f,ttl:1e3*Number(w)}),Promise.resolve(new Response(n,f))}return Re(r,t)}function mt(r,e){const t=oe.get(r);if(t){if(performance.now(){const w=decodeURIComponent(d),_=/^\[\.\.\.(\w+)(?:=(\w+))?\]$/.exec(w);if(_)return e.push(_[1]),t.push(_[2]),"(?:/(.*))?";const b=n===f.length-1;return w&&"/"+w.split(/\[(.+?)\]/).map(($,S)=>{if(S%2){const N=_t.exec($);if(!N)throw new Error(`Invalid param: ${$}. Params and matcher names can only have underscores and alphanumeric characters.`);const[,j,T,q]=N;return e.push(T),t.push(q),j?"(.*?)":"([^/]+?)"}return b&&$.includes(".")&&(c=!1),$.normalize().replace(/%5[Bb]/g,"[").replace(/%5[Dd]/g,"]").replace(/#/g,"%23").replace(/\?/g,"%3F").replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}).join("")}).join("")}${c?"/?":""}$`),names:e,types:t}}function wt(r){return!/^\([^)]+\)$/.test(r)}function yt(r,e,t,c){const o={};for(let d=0;d{const{pattern:$,names:S,types:N}=gt(f),j={id:f,exec:T=>{const q=$.exec(T);if(q)return yt(q,S,N,c)},errors:[1,...b||[]].map(T=>r[T]),layouts:[0,..._||[]].map(n),leaf:d(w)};return j.errors.length=j.layouts.length=Math.max(j.errors.length,j.layouts.length),j});function d(f){const w=f<0;return w&&(f=~f),[w,r[f]]}function n(f){return f===void 0?f:[o.has(f),r[f]]}}function vt(r){let e,t,c;var o=r[0][0];function d(n){return{props:{data:n[2],form:n[1]}}}return o&&(e=new o(d(r))),{c(){e&&H(e.$$.fragment),t=z()},l(n){e&&Se(e.$$.fragment,n),t=z()},m(n,f){e&&M(e,n,f),W(n,t,f),c=!0},p(n,f){const w={};if(f&4&&(w.data=n[2]),f&2&&(w.form=n[1]),o!==(o=n[0][0])){if(e){ie();const _=e;K(_.$$.fragment,1,0,()=>{X(_,1)}),le()}o?(e=new o(d(n)),H(e.$$.fragment),x(e.$$.fragment,1),M(e,t.parentNode,t)):e=null}else o&&e.$set(w)},i(n){c||(e&&x(e.$$.fragment,n),c=!0)},o(n){e&&K(e.$$.fragment,n),c=!1},d(n){n&&F(t),e&&X(e,n)}}}function kt(r){let e,t,c;var o=r[0][0];function d(n){return{props:{data:n[2],$$slots:{default:[Et]},$$scope:{ctx:n}}}}return o&&(e=new o(d(r))),{c(){e&&H(e.$$.fragment),t=z()},l(n){e&&Se(e.$$.fragment,n),t=z()},m(n,f){e&&M(e,n,f),W(n,t,f),c=!0},p(n,f){const w={};if(f&4&&(w.data=n[2]),f&523&&(w.$$scope={dirty:f,ctx:n}),o!==(o=n[0][0])){if(e){ie();const _=e;K(_.$$.fragment,1,0,()=>{X(_,1)}),le()}o?(e=new o(d(n)),H(e.$$.fragment),x(e.$$.fragment,1),M(e,t.parentNode,t)):e=null}else o&&e.$set(w)},i(n){c||(e&&x(e.$$.fragment,n),c=!0)},o(n){e&&K(e.$$.fragment,n),c=!1},d(n){n&&F(t),e&&X(e,n)}}}function Et(r){let e,t,c;var o=r[0][1];function d(n){return{props:{data:n[3],form:n[1]}}}return o&&(e=new o(d(r))),{c(){e&&H(e.$$.fragment),t=z()},l(n){e&&Se(e.$$.fragment,n),t=z()},m(n,f){e&&M(e,n,f),W(n,t,f),c=!0},p(n,f){const w={};if(f&8&&(w.data=n[3]),f&2&&(w.form=n[1]),o!==(o=n[0][1])){if(e){ie();const _=e;K(_.$$.fragment,1,0,()=>{X(_,1)}),le()}o?(e=new o(d(n)),H(e.$$.fragment),x(e.$$.fragment,1),M(e,t.parentNode,t)):e=null}else o&&e.$set(w)},i(n){c||(e&&x(e.$$.fragment,n),c=!0)},o(n){e&&K(e.$$.fragment,n),c=!1},d(n){n&&F(t),e&&X(e,n)}}}function Je(r){let e,t=r[5]&&ze(r);return{c(){e=Qe("div"),t&&t.c(),this.h()},l(c){e=Ze(c,"DIV",{id:!0,"aria-live":!0,"aria-atomic":!0,style:!0});var o=et(e);t&&t.l(o),o.forEach(F),this.h()},h(){ge(e,"id","svelte-announcer"),ge(e,"aria-live","assertive"),ge(e,"aria-atomic","true"),C(e,"position","absolute"),C(e,"left","0"),C(e,"top","0"),C(e,"clip","rect(0 0 0 0)"),C(e,"clip-path","inset(50%)"),C(e,"overflow","hidden"),C(e,"white-space","nowrap"),C(e,"width","1px"),C(e,"height","1px")},m(c,o){W(c,e,o),t&&t.m(e,null)},p(c,o){c[5]?t?t.p(c,o):(t=ze(c),t.c(),t.m(e,null)):t&&(t.d(1),t=null)},d(c){c&&F(e),t&&t.d()}}}function ze(r){let e;return{c(){e=tt(r[6])},l(t){e=nt(t,r[6])},m(t,c){W(t,e,c)},p(t,c){c&64&&rt(e,t[6])},d(t){t&&F(e)}}}function St(r){let e,t,c,o,d;const n=[kt,vt],f=[];function w(b,$){return b[0][1]?0:1}e=w(r),t=f[e]=n[e](r);let _=r[4]&&Je(r);return{c(){t.c(),c=Me(),_&&_.c(),o=z()},l(b){t.l(b),c=Xe(b),_&&_.l(b),o=z()},m(b,$){f[e].m(b,$),W(b,c,$),_&&_.m(b,$),W(b,o,$),d=!0},p(b,[$]){let S=e;e=w(b),e===S?f[e].p(b,$):(ie(),K(f[S],1,1,()=>{f[S]=null}),le(),t=f[e],t?t.p(b,$):(t=f[e]=n[e](b),t.c()),x(t,1),t.m(c.parentNode,c)),b[4]?_?_.p(b,$):(_=Je(b),_.c(),_.m(o.parentNode,o)):_&&(_.d(1),_=null)},i(b){d||(x(t),d=!0)},o(b){K(t),d=!1},d(b){f[e].d(b),b&&F(c),_&&_.d(b),b&&F(o)}}}function Rt(r,e,t){let{stores:c}=e,{page:o}=e,{components:d}=e,{form:n}=e,{data_0:f=null}=e,{data_1:w=null}=e;Ye(c.page.notify);let _=!1,b=!1,$=null;return be(()=>{const S=c.page.subscribe(()=>{_&&(t(5,b=!0),t(6,$=document.title||"untitled page"))});return t(4,_=!0),S}),r.$$set=S=>{"stores"in S&&t(7,c=S.stores),"page"in S&&t(8,o=S.page),"components"in S&&t(0,d=S.components),"form"in S&&t(1,n=S.form),"data_0"in S&&t(2,f=S.data_0),"data_1"in S&&t(3,w=S.data_1)},r.$$.update=()=>{r.$$.dirty&384&&c.page.set(o)},[d,n,f,w,_,b,$,c,o]}class $t extends Ge{constructor(e){super(),We(this,e,Rt,St,He,{stores:7,page:8,components:0,form:1,data_0:2,data_1:3})}}const Lt={},ce=[()=>se(()=>import("./chunks/0-38e843b4.js"),["chunks/0-38e843b4.js","chunks/_layout-1daba58d.js","components/pages/_layout.svelte-34307958.js","assets/_layout-d2c2d65f.css","chunks/index-cab3212e.js"],import.meta.url),()=>se(()=>import("./chunks/1-69bee870.js"),["chunks/1-69bee870.js","components/error.svelte-a1debfe3.js","chunks/index-cab3212e.js","chunks/singletons-f0cf8c8d.js","chunks/index-f686559f.js"],import.meta.url),()=>se(()=>import("./chunks/2-0bf15b71.js"),["chunks/2-0bf15b71.js","components/pages/_page.svelte-b51c2c7b.js","assets/_page-a6345eca.css","chunks/index-cab3212e.js","chunks/index-f686559f.js"],import.meta.url)],Pt=[],Ot={"":[2]},jt={handleError:({error:r})=>(console.error(r),{message:"Internal Error"})},Ut="/__data.js",Fe="sveltekit:scroll",J="sveltekit:index",ne=bt(ce,Pt,Ot,Lt),ke=ce[0],Ee=ce[1];ke();Ee();let ee={};try{ee=JSON.parse(sessionStorage[Fe])}catch{}function ye(r){ee[r]=ve()}function It({target:r,base:e,trailing_slash:t}){var Ne;const c=[],o={id:null,promise:null},d={before_navigate:[],after_navigate:[]};let n={branch:[],error:null,session_id:0,url:null},f=!1,w=!0,_=!1,b=1,$=null,S=!1,N,j=(Ne=history.state)==null?void 0:Ne[J];j||(j=Date.now(),history.replaceState({...history.state,[J]:j},"",location.href));const T=ee[j];T&&(history.scrollRestoration="manual",scrollTo(T.x,T.y));let q=!1,V,$e;function Le(){if(!$){const a=new URL(location.href);$=Promise.resolve().then(async()=>{const i=pe(a,!0);await Oe(i,a,[]),$=null,S=!1})}return $}async function fe(a,{noscroll:i=!1,replaceState:p=!1,keepfocus:s=!1,state:l={}},h){return typeof a=="string"&&(a=new URL(a,Ce(document))),he({url:a,scroll:i?ve():null,keepfocus:s,redirect_chain:h,details:{state:l,replaceState:p},accepted:()=>{},blocked:()=>{},type:"goto"})}async function Pe(a){const i=pe(a,!1);if(!i)throw new Error("Attempted to prefetch a URL that does not belong to this app");return o.promise=Ie(i),o.id=i.id,o.promise}async function Oe(a,i,p,s,l){var v,k;const h=$e={};let m=a&&await Ie(a);if(!m&&i.origin===location.origin&&i.pathname===location.pathname&&(m=await te({status:404,error:new Error(`Not found: ${i.pathname}`),url:i,routeId:null})),!m)return await Q(i),!1;if(i=(a==null?void 0:a.url)||i,$e!==h)return!1;if(c.length=0,m.type==="redirect")if(p.length>10||p.includes(i.pathname))m=await te({status:500,error:new Error("Redirect loop"),url:i,routeId:null});else return fe(new URL(m.location,i).href,{},[...p,i.pathname]),!1;else((k=(v=m.props)==null?void 0:v.page)==null?void 0:k.status)>=400&&await G.updated.check()&&await Q(i);if(_=!0,s&&s.details){const{details:y}=s,g=y.replaceState?0:1;y.state[J]=j+=g,history[y.replaceState?"replaceState":"pushState"](y.state,"",i)}if(f){n=m.state,m.props.page&&(m.props.page.url=i);const y=ae();N.$set(m.props),y()}else je(m);if(s){const{scroll:y,keepfocus:g}=s;if(!g){const E=document.body,U=E.getAttribute("tabindex");E.tabIndex=-1,E.focus({preventScroll:!0}),setTimeout(()=>{var L;(L=getSelection())==null||L.removeAllRanges()}),U!==null?E.setAttribute("tabindex",U):E.removeAttribute("tabindex")}if(await De(),w){const E=i.hash&&document.getElementById(i.hash.slice(1));y?scrollTo(y.x,y.y):E?E.scrollIntoView():scrollTo(0,0)}}else await De();o.promise=null,o.id=null,w=!0,m.props.page&&(V=m.props.page),l&&l(),_=!1}function je(a){var l,h;n=a.state;const i=document.querySelector("style[data-sveltekit]");i&&i.remove(),V=a.props.page;const p=ae();N=new $t({target:r,props:{...a.props,stores:G},hydrate:!0}),p();const s={from:null,to:re("to",{params:n.params,routeId:(h=(l=n.route)==null?void 0:l.id)!=null?h:null,url:new URL(location.href)}),type:"load"};d.after_navigate.forEach(m=>m(s)),f=!0}async function Y({url:a,params:i,branch:p,status:s,error:l,route:h,form:m}){var U;const v=p.filter(Boolean),k={type:"loaded",state:{url:a,params:i,branch:p,error:l,route:h,session_id:b},props:{components:v.map(L=>L.node.component)}};m!==void 0&&(k.props.form=m);let y={},g=!V;for(let L=0;LA===I))&&(k.props[`data_${L}`]=y,g=g||Object.keys((U=I.data)!=null?U:{}).length>0)}if(g||(g=Object.keys(V.data).length!==Object.keys(y).length),!n.url||a.href!==n.url.href||n.error!==l||g){k.props.page={error:l,params:i,routeId:h&&h.id,status:s,url:a,data:g?y:V.data};const L=(I,A)=>{Object.defineProperty(k.props.page,I,{get:()=>{throw new Error(`$page.${I} has been replaced by $page.url.${A}`)}})};L("origin","origin"),L("path","pathname"),L("query","searchParams")}return k}async function ue({loader:a,parent:i,url:p,params:s,routeId:l,server_data_node:h}){var y,g,E,U,L;let m=null;const v={dependencies:new Set,params:new Set,parent:!1,url:!1},k=await a();if((y=k.shared)!=null&&y.load){let I=function(...u){for(const R of u){const{href:O}=new URL(R,p);v.dependencies.add(O)}};const A={};for(const u in s)Object.defineProperty(A,u,{get(){return v.params.add(u),s[u]},enumerable:!0});const B={routeId:l,params:A,data:(g=h==null?void 0:h.data)!=null?g:null,url:ut(p,()=>{v.url=!0}),async fetch(u,R){let O;typeof u=="string"?O=u:(O=u.url,R={body:u.method==="GET"||u.method==="HEAD"?void 0:await u.blob(),cache:u.cache,credentials:u.credentials,headers:u.headers,integrity:u.integrity,keepalive:u.keepalive,method:u.method,mode:u.mode,redirect:u.redirect,referrer:u.referrer,referrerPolicy:u.referrerPolicy,signal:u.signal,...R});const P=new URL(O,p).href;return I(P),f?mt(P,R):ht(O,P,R)},setHeaders:()=>{},depends:I,parent(){return v.parent=!0,i()}};Object.defineProperties(B,{props:{get(){throw new Error("@migration task: Replace `props` with `data` stuff https://github.com/sveltejs/kit/discussions/5774#discussioncomment-3292693")},enumerable:!1},session:{get(){throw new Error("session is no longer available. See https://github.com/sveltejs/kit/discussions/5883")},enumerable:!1},stuff:{get(){throw new Error("@migration task: Remove stuff https://github.com/sveltejs/kit/discussions/5774#discussioncomment-3292693")},enumerable:!1}}),m=(E=await k.shared.load.call(null,B))!=null?E:null}return{node:k,loader:a,server:h,shared:(U=k.shared)!=null&&U.load?{type:"data",data:m,uses:v}:null,data:(L=m!=null?m:h==null?void 0:h.data)!=null?L:null}}function Ue(a,i,p){if(S)return!0;if(!p)return!1;if(p.parent&&i||a.url&&p.url)return!0;for(const s of a.params)if(p.params.has(s))return!0;for(const s of p.dependencies)if(c.some(l=>l(new URL(s))))return!0;return!1}function de(a,i){var p,s;return(a==null?void 0:a.type)==="data"?{type:"data",data:a.data,uses:{dependencies:new Set((p=a.uses.dependencies)!=null?p:[]),params:new Set((s=a.uses.params)!=null?s:[]),parent:!!a.uses.parent,url:!!a.uses.url}}:(a==null?void 0:a.type)==="skip"&&i!=null?i:null}async function Ie({id:a,invalidating:i,url:p,params:s,route:l}){var B;if(o.id===a&&o.promise)return o.promise;const{errors:h,layouts:m,leaf:v}=l,k=n.url&&{url:a!==n.url.pathname+n.url.search,params:Object.keys(s).filter(u=>n.params[u]!==s[u])},y=[...m,v];h.forEach(u=>u==null?void 0:u().catch(()=>{})),y.forEach(u=>u==null?void 0:u[1]().catch(()=>{}));let g=null;const E=y.reduce((u,R,O)=>{var D;const P=n.branch[O],Z=!!(R!=null&&R[0])&&((P==null?void 0:P.loader)!==R[1]||Ue(k,u.some(Boolean),(D=P.server)==null?void 0:D.uses));return u.push(Z),u},[]);if(E.some(Boolean)){try{g=await Ke(p,E)}catch(u){return te({status:500,error:u,url:p,routeId:l.id})}if(g.type==="redirect")return g}const U=g==null?void 0:g.nodes;let L=!1;const I=y.map(async(u,R)=>{var D;if(!u)return;const O=n.branch[R],P=U==null?void 0:U[R];if((!P||P.type==="skip")&&u[1]===(O==null?void 0:O.loader)&&!Ue(k,L,(D=O.shared)==null?void 0:D.uses))return O;if(L=!0,(P==null?void 0:P.type)==="error")throw P;return ue({loader:u[1],url:p,params:s,routeId:l.id,parent:async()=>{var Te;const me={};for(let _e=0;_e{});const A=[];for(let u=0;uPromise.resolve({}),server_data_node:de(m)}),k={node:await Ee(),loader:Ee,shared:null,server:null,data:null};return await Y({url:p,params:l,branch:[v,k],status:a,error:i instanceof we?i.body:xe(i,{url:p,params:l,routeId:null}),route:null})}function pe(a,i){if(Ae(a))return;const p=decodeURI(a.pathname.slice(e.length)||"/");for(const s of ne){const l=s.exec(p);if(l){const h=new URL(a.origin+lt(a.pathname,t)+a.search+a.hash);return{id:h.pathname+h.search,invalidating:i,route:s,params:ct(l),url:h}}}}function Ae(a){return a.origin!==location.origin||!a.pathname.startsWith(e)}async function he({url:a,scroll:i,keepfocus:p,redirect_chain:s,details:l,type:h,delta:m,accepted:v,blocked:k}){var L,I,A,B;let y=!1;const g=pe(a,!1),E={from:re("from",{params:n.params,routeId:(I=(L=n.route)==null?void 0:L.id)!=null?I:null,url:n.url}),to:re("to",{params:(A=g==null?void 0:g.params)!=null?A:null,routeId:(B=g==null?void 0:g.route.id)!=null?B:null,url:a}),type:h};m!==void 0&&(E.delta=m);const U={...E,cancel:()=>{y=!0}};if(d.before_navigate.forEach(u=>u(U)),y){k();return}ye(j),v(),f&&G.navigating.set(E),await Oe(g,a,s,{scroll:i,keepfocus:p,details:l},()=>{d.after_navigate.forEach(u=>u(E)),G.navigating.set(null)})}function Q(a){return location.href=a.href,new Promise(()=>{})}return{after_navigate:a=>{be(()=>(d.after_navigate.push(a),()=>{const i=d.after_navigate.indexOf(a);d.after_navigate.splice(i,1)}))},before_navigate:a=>{be(()=>(d.before_navigate.push(a),()=>{const i=d.before_navigate.indexOf(a);d.before_navigate.splice(i,1)}))},disable_scroll_handling:()=>{(_||!f)&&(w=!1)},goto:(a,i={})=>fe(a,i,[]),invalidate:a=>{if(a===void 0)throw new Error("`invalidate()` (with no arguments) has been replaced by `invalidateAll()`");if(typeof a=="function")c.push(a);else{const{href:i}=new URL(a,location.href);c.push(p=>p.href===i)}return Le()},invalidateAll:()=>(S=!0,Le()),prefetch:async a=>{const i=new URL(a,Ce(document));await Pe(i)},prefetch_routes:async a=>{const p=(a?ne.filter(s=>a.some(l=>s.exec(l))):ne).map(s=>Promise.all([...s.layouts,s.leaf].map(l=>l==null?void 0:l[1]())));await Promise.all(p)},apply_action:async a=>{if(a.type==="error"){const i=new URL(location.href),{branch:p,route:s}=n;if(!s)return;let l=n.branch.length;for(;l--;)if(s.errors[l]){let h,m=l;for(;!p[m];)m-=1;try{h={node:await s.errors[l](),loader:s.errors[l],data:{},server:null,shared:null};const v=await Y({url:i,params:n.params,branch:p.slice(0,m+1).concat(h),status:500,error:a.error,route:s});n=v.state;const k=ae();N.$set(v.props),k();return}catch{continue}}}else if(a.type==="redirect")fe(a.location,{},[]);else{const i={form:a.data};a.status!==V.status&&(i.page={...V,status:a.status});const p=ae();N.$set(i),p()}},_start_router:()=>{history.scrollRestoration="manual",addEventListener("beforeunload",s=>{var m,v;let l=!1;const h={from:re("from",{params:n.params,routeId:(v=(m=n.route)==null?void 0:m.id)!=null?v:null,url:n.url}),to:null,type:"unload",cancel:()=>l=!0};d.before_navigate.forEach(k=>k(h)),l?(s.preventDefault(),s.returnValue=""):history.scrollRestoration="auto"}),addEventListener("visibilitychange",()=>{if(document.visibilityState==="hidden"){ye(j);try{sessionStorage[Fe]=JSON.stringify(ee)}catch{}}});const a=s=>{const{url:l,options:h}=qe(s);if(l&&h.prefetch){if(Ae(l))return;Pe(l)}};let i;const p=s=>{clearTimeout(i),i=setTimeout(()=>{var l;(l=s.target)==null||l.dispatchEvent(new CustomEvent("sveltekit:trigger_prefetch",{bubbles:!0}))},20)};addEventListener("touchstart",a),addEventListener("mousemove",p),addEventListener("sveltekit:trigger_prefetch",a),addEventListener("click",s=>{if(s.button||s.which!==1||s.metaKey||s.ctrlKey||s.shiftKey||s.altKey||s.defaultPrevented)return;const{a:l,url:h,options:m}=qe(s);if(!l||!h)return;const v=l instanceof SVGAElement;if(!v&&!(h.protocol==="https:"||h.protocol==="http:"))return;const k=(l.getAttribute("rel")||"").split(/\s+/);if(l.hasAttribute("download")||k.includes("external")||m.reload||(v?l.target.baseVal:l.target))return;const[y,g]=h.href.split("#");if(g!==void 0&&y===location.href.split("#")[0]){q=!0,ye(j),n.url=h,G.page.set({...V,url:h}),G.page.notify();return}he({url:h,scroll:m.noscroll?ve():null,keepfocus:!1,redirect_chain:[],details:{state:{},replaceState:h.href===location.href},accepted:()=>s.preventDefault(),blocked:()=>s.preventDefault(),type:"link"})}),addEventListener("popstate",s=>{if(s.state){if(s.state[J]===j)return;const l=s.state[J]-j;he({url:new URL(location.href),scroll:ee[s.state[J]],keepfocus:!1,redirect_chain:[],details:null,accepted:()=>{j=s.state[J]},blocked:()=>{history.go(-l)},type:"popstate",delta:l})}}),addEventListener("hashchange",()=>{q&&(q=!1,history.replaceState({...history.state,[J]:++j},"",location.href))});for(const s of document.querySelectorAll("link"))s.rel==="icon"&&(s.href=s.href);addEventListener("pageshow",s=>{s.persisted&&G.navigating.set(null)})},_hydrate:async({status:a,error:i,node_ids:p,params:s,routeId:l,data:h,form:m})=>{var y;const v=new URL(location.href);let k;try{const g=p.map(async(E,U)=>{const L=h[U];return ue({loader:ce[E],url:v,params:s,routeId:l,parent:async()=>{const I={};for(let A=0;AE.id===l))!=null?y:null})}catch(g){const E=g;if(E instanceof Be){await Q(new URL(g.location,location.href));return}k=await te({status:E instanceof we?E.status:500,error:E,url:v,routeId:l})}je(k)}}}let At=1;async function Ke(r,e){const t=new URL(r);t.pathname=r.pathname.replace(/\/$/,"")+Ut,t.searchParams.set("__invalid",e.map(o=>o?"y":"n").join("")),t.searchParams.set("__id",String(At++)),await se(()=>import(t.href),[],import.meta.url);const c=window.__sveltekit_data;return delete window.__sveltekit_data,c}function xe(r,e){var t;return(t=jt.handleError({error:r,event:e}))!=null?t:{message:"Internal Error"}}const Nt=["hash","href","host","hostname","origin","pathname","port","protocol","search","searchParams","toString","toJSON"];function re(r,e){for(const t of Nt)Object.defineProperty(e,t,{get(){throw new Error(`The navigation shape changed - ${r}.${t} should now be ${r}.url.${t}`)}});return e}function ae(){return()=>{}}async function Ct({env:r,hydrate:e,paths:t,target:c,trailing_slash:o}){at(t);const d=It({target:c,base:t.base,trailing_slash:o});st({client:d}),e?await d._hydrate(e):d.goto(location.href,{replaceState:!0}),d._start_router()}export{Ct as start}; diff --git a/static/_app/version.json b/static/_app/version.json index 2d3669dce52d2a69ad3f9ac97fcd39a859119009..8330cb25e360281dd4c17bc1ccb9a5061cd4d17b 100644 --- a/static/_app/version.json +++ b/static/_app/version.json @@ -1 +1 @@ -{"version":"1663707660362"} \ No newline at end of file +{"version":"1663743071268"} \ No newline at end of file diff --git a/static/data.json b/static/data.json deleted file mode 100644 index 2873ca76398a9ccb275c2e988c7f5d6836f0e456..0000000000000000000000000000000000000000 --- a/static/data.json +++ /dev/null @@ -1 +0,0 @@ -[{"prompt": "a painting of a Ferrari by Claude Monet", "images": [{"colors": ["#2f3c6e", "#deacdf", "#e2e23b", "#b923bf", "#ed68f7"], "imgURL": "static/images/00045-2327336162-a painting of a Ferrari by Claude Monet.jpg"}, {"colors": ["#f9b9a0", "#b30814", "#36102d", "#e240ab", "#680c26"], "imgURL": "static/images/00044-2327336161-a painting of a Ferrari by Claude Monet.jpg"}, {"colors": ["#13bbab", "#f7e2ba", "#cb3b37", "#062726", "#055637"], "imgURL": "static/images/00046-2327336163-a painting of a Ferrari by Claude Monet.jpg"}]}, {"prompt": "a photo of a beautiful sunset in San Francisco", "images": [{"colors": ["#e2dcf8", "#d47a0d", "#50244c", "#b63547", "#f270f2"], "imgURL": "static/images/00003-3329858470-a photo of a beautiful sunset in San Francisco.jpg"}, {"colors": ["#177405", "#d6f12d", "#7c1a04", "#b9a5a4", "#6ae61b"], "imgURL": "static/images/00001-3329858468-a photo of a beautiful sunset in San Francisco.jpg"}, {"colors": ["#766dae", "#4e2806", "#e8b878", "#1c317e", "#46c21e"], "imgURL": "static/images/00000-3329858467-a photo of a beautiful sunset in San Francisco.jpg"}]}, {"prompt": "a photo of a elmo drinking at starbucks", "images": [{"colors": ["#179209", "#eee84b", "#571208", "#b91806", "#537c91"], "imgURL": "static/images/00036-2824881702-a photo of a elmo drinking at starbucks.jpg"}, {"colors": ["#d62fec", "#281185", "#f2bbde", "#db2f23", "#8505e1"], "imgURL": "static/images/00035-2824881701-a photo of a elmo drinking at starbucks.jpg"}, {"colors": ["#19550f", "#a80e05", "#f5ce1f", "#f7d9cf", "#859721"], "imgURL": "static/images/00037-2824881703-a photo of a elmo drinking at starbucks.jpg"}]}, {"prompt": "a photo of a polar bear in the Arctic", "images": [{"colors": ["#4cdde5", "#e755ce", "#2d2a64", "#26c81d", "#d8edc5"], "imgURL": "static/images/00010-3082979826-a photo of a polar bear in the Arctic.jpg"}, {"colors": ["#66bdda", "#071ed8", "#04111b", "#1f3f78", "#7c839b"], "imgURL": "static/images/00009-3082979825-a photo of a polar bear in the Arctic.jpg"}, {"colors": ["#c4efd0", "#194286", "#6591b7", "#7e9f52", "#576a3d"], "imgURL": "static/images/00011-3082979827-a photo of a polar bear in the Arctic.jpg"}]}, {"prompt": "a paint of a polar bear in the Arctic painted by Vincent van Gogh", "images": [{"colors": ["#3de9f9", "#172eb8", "#dc44d6", "#1bd40d", "#e7d9e8"], "imgURL": "static/images/00049-3943684507-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg"}, {"colors": ["#f984fb", "#35208b", "#a9040f", "#d209ef", "#eed5f9"], "imgURL": "static/images/00050-3943684508-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg"}, {"colors": ["#143153", "#ebf521", "#7c3117", "#a8c9f2", "#66a70a"], "imgURL": "static/images/00048-3943684506-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg"}]}, {"prompt": "a photo of a polar bear in the zoo", "images": [{"colors": ["#cd1ce0", "#f397ec", "#980d30", "#3e231a", "#713789"], "imgURL": "static/images/00026-1171300814-a photo of a polar bear in the zoo.jpg"}, {"colors": ["#1f15dc", "#f6c3fb", "#92edfa", "#1d2824", "#de30f2"], "imgURL": "static/images/00013-2991374000-a photo of a polar bear in the zoo.jpg"}, {"colors": ["#0512dc", "#ceebf5", "#0c2726", "#55acb6", "#8c61fc"], "imgURL": "static/images/00027-1171300815-a photo of a polar bear in the zoo.jpg"}]}] \ No newline at end of file diff --git a/static/images/00000-3329858467-a photo of a beautiful sunset in San Francisco.jpg b/static/images/00000-3329858467-a photo of a beautiful sunset in San Francisco.jpg deleted file mode 100644 index ad6b7c1012cf8da3254d48831a0453066944f47f..0000000000000000000000000000000000000000 Binary files a/static/images/00000-3329858467-a photo of a beautiful sunset in San Francisco.jpg and /dev/null differ diff --git a/static/images/00001-3329858468-a photo of a beautiful sunset in San Francisco.jpg b/static/images/00001-3329858468-a photo of a beautiful sunset in San Francisco.jpg deleted file mode 100644 index f11be3b23befc7766e85d1239531f2ccae8dea6a..0000000000000000000000000000000000000000 Binary files a/static/images/00001-3329858468-a photo of a beautiful sunset in San Francisco.jpg and /dev/null differ diff --git a/static/images/00003-3329858470-a photo of a beautiful sunset in San Francisco.jpg b/static/images/00003-3329858470-a photo of a beautiful sunset in San Francisco.jpg deleted file mode 100644 index 59d9d0d4720b9c063e90171c0097258a1b279f00..0000000000000000000000000000000000000000 Binary files a/static/images/00003-3329858470-a photo of a beautiful sunset in San Francisco.jpg and /dev/null differ diff --git a/static/images/00009-3082979825-a photo of a polar bear in the Arctic.jpg b/static/images/00009-3082979825-a photo of a polar bear in the Arctic.jpg deleted file mode 100644 index a1102daf851746f585e3e9b767c708d3cd447eba..0000000000000000000000000000000000000000 Binary files a/static/images/00009-3082979825-a photo of a polar bear in the Arctic.jpg and /dev/null differ diff --git a/static/images/00010-3082979826-a photo of a polar bear in the Arctic.jpg b/static/images/00010-3082979826-a photo of a polar bear in the Arctic.jpg deleted file mode 100644 index 61d8a8d6f0a2ed00648be872d0b6bff3480e6594..0000000000000000000000000000000000000000 Binary files a/static/images/00010-3082979826-a photo of a polar bear in the Arctic.jpg and /dev/null differ diff --git a/static/images/00011-3082979827-a photo of a polar bear in the Arctic.jpg b/static/images/00011-3082979827-a photo of a polar bear in the Arctic.jpg deleted file mode 100644 index af15798697858abad47ebb35aef8eb0bf0127ed1..0000000000000000000000000000000000000000 Binary files a/static/images/00011-3082979827-a photo of a polar bear in the Arctic.jpg and /dev/null differ diff --git a/static/images/00013-2991374000-a photo of a polar bear in the zoo.jpg b/static/images/00013-2991374000-a photo of a polar bear in the zoo.jpg deleted file mode 100644 index 78deaa70f21bf3745d051fd3c4ddc26dd8494b5b..0000000000000000000000000000000000000000 Binary files a/static/images/00013-2991374000-a photo of a polar bear in the zoo.jpg and /dev/null differ diff --git a/static/images/00026-1171300814-a photo of a polar bear in the zoo.jpg b/static/images/00026-1171300814-a photo of a polar bear in the zoo.jpg deleted file mode 100644 index 58bfceb96854cbc262565a45f64558f5084d3dbe..0000000000000000000000000000000000000000 Binary files a/static/images/00026-1171300814-a photo of a polar bear in the zoo.jpg and /dev/null differ diff --git a/static/images/00027-1171300815-a photo of a polar bear in the zoo.jpg b/static/images/00027-1171300815-a photo of a polar bear in the zoo.jpg deleted file mode 100644 index 0388f01ca8b50b2bf10cbabbcc8e792d850645ad..0000000000000000000000000000000000000000 Binary files a/static/images/00027-1171300815-a photo of a polar bear in the zoo.jpg and /dev/null differ diff --git a/static/images/00035-2824881701-a photo of a elmo drinking at starbucks.jpg b/static/images/00035-2824881701-a photo of a elmo drinking at starbucks.jpg deleted file mode 100644 index 554b23145f7ef33ee65de196915ae49c83921f78..0000000000000000000000000000000000000000 Binary files a/static/images/00035-2824881701-a photo of a elmo drinking at starbucks.jpg and /dev/null differ diff --git a/static/images/00036-2824881702-a photo of a elmo drinking at starbucks.jpg b/static/images/00036-2824881702-a photo of a elmo drinking at starbucks.jpg deleted file mode 100644 index 21c236d854e199b9cf2c5711c50253259215b053..0000000000000000000000000000000000000000 Binary files a/static/images/00036-2824881702-a photo of a elmo drinking at starbucks.jpg and /dev/null differ diff --git a/static/images/00037-2824881703-a photo of a elmo drinking at starbucks.jpg b/static/images/00037-2824881703-a photo of a elmo drinking at starbucks.jpg deleted file mode 100644 index b47a18b53ece14e0ce122e763fba9c800df16052..0000000000000000000000000000000000000000 Binary files a/static/images/00037-2824881703-a photo of a elmo drinking at starbucks.jpg and /dev/null differ diff --git a/static/images/00044-2327336161-a painting of a Ferrari by Claude Monet.jpg b/static/images/00044-2327336161-a painting of a Ferrari by Claude Monet.jpg deleted file mode 100644 index 465854c20eede023a7451922e709c190b294da44..0000000000000000000000000000000000000000 Binary files a/static/images/00044-2327336161-a painting of a Ferrari by Claude Monet.jpg and /dev/null differ diff --git a/static/images/00045-2327336162-a painting of a Ferrari by Claude Monet.jpg b/static/images/00045-2327336162-a painting of a Ferrari by Claude Monet.jpg deleted file mode 100644 index a214c59bf6d3692ffab872f452ecefdc9887cd46..0000000000000000000000000000000000000000 Binary files a/static/images/00045-2327336162-a painting of a Ferrari by Claude Monet.jpg and /dev/null differ diff --git a/static/images/00046-2327336163-a painting of a Ferrari by Claude Monet.jpg b/static/images/00046-2327336163-a painting of a Ferrari by Claude Monet.jpg deleted file mode 100644 index eacc6725b7bd7c7fc801049028c819b21b7526a1..0000000000000000000000000000000000000000 Binary files a/static/images/00046-2327336163-a painting of a Ferrari by Claude Monet.jpg and /dev/null differ diff --git a/static/images/00048-3943684506-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg b/static/images/00048-3943684506-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg deleted file mode 100644 index b8208e7d02af5d1995a2299dc28ba1d5380aa71e..0000000000000000000000000000000000000000 Binary files a/static/images/00048-3943684506-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg and /dev/null differ diff --git a/static/images/00049-3943684507-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg b/static/images/00049-3943684507-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg deleted file mode 100644 index 806b3297ce9ae424e93f3220b9bd9d71fc5ebbe5..0000000000000000000000000000000000000000 Binary files a/static/images/00049-3943684507-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg and /dev/null differ diff --git a/static/images/00050-3943684508-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg b/static/images/00050-3943684508-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg deleted file mode 100644 index d4fc9f0204aaf20c4555b479d04ba3c6d8d9fd7f..0000000000000000000000000000000000000000 Binary files a/static/images/00050-3943684508-a paint of a polar bear in the Arctic painted by Vincent van Gogh.jpg and /dev/null differ diff --git a/static/index.html b/static/index.html index de692f2029bf69cc41a30b1194c1243af93d52d9..1da04c12ab3e6c5d131495a34a41afeab606892e 100644 --- a/static/index.html +++ b/static/index.html @@ -6,16 +6,16 @@ - + - + - + - +
@@ -32,18 +32,18 @@
-
156 submitted palettes
+
0 submitted palettes
- diff --git a/static/vite-manifest.json b/static/vite-manifest.json index c690ba53d122f89a93917652250abd88d9037ad4..e5d0755514d45fde7bbe740d103af51b427ba46a 100644 --- a/static/vite-manifest.json +++ b/static/vite-manifest.json @@ -1,11 +1,11 @@ { "node_modules/@sveltejs/kit/src/runtime/client/start.js": { - "file": "_app/immutable/start-da0c54a9.js", + "file": "_app/immutable/start-aff838d1.js", "src": "node_modules/@sveltejs/kit/src/runtime/client/start.js", "isEntry": true, "imports": [ "_index-cab3212e.js", - "_singletons-f0cf8c8d.js" + "_singletons-669494f1.js" ], "dynamicImports": [ ".svelte-kit/generated/nodes/0.js", @@ -21,20 +21,20 @@ "_index-cab3212e.js" ], "css": [ - "_app/immutable/assets/_layout-d2c2d65f.css" + "_app/immutable/assets/_layout-09765a90.css" ] }, "node_modules/@sveltejs/kit/src/runtime/components/error.svelte": { - "file": "_app/immutable/components/error.svelte-a1debfe3.js", + "file": "_app/immutable/components/error.svelte-2083ce21.js", "src": "node_modules/@sveltejs/kit/src/runtime/components/error.svelte", "isEntry": true, "imports": [ "_index-cab3212e.js", - "_singletons-f0cf8c8d.js" + "_singletons-669494f1.js" ] }, "src/routes/+page.svelte": { - "file": "_app/immutable/components/pages/_page.svelte-b51c2c7b.js", + "file": "_app/immutable/components/pages/_page.svelte-75fe4b43.js", "src": "src/routes/+page.svelte", "isEntry": true, "imports": [ @@ -53,8 +53,8 @@ "__layout-1daba58d.js" ] }, - "_singletons-f0cf8c8d.js": { - "file": "_app/immutable/chunks/singletons-f0cf8c8d.js", + "_singletons-669494f1.js": { + "file": "_app/immutable/chunks/singletons-669494f1.js", "imports": [ "_index-f686559f.js" ] @@ -81,7 +81,7 @@ ] }, ".svelte-kit/generated/nodes/1.js": { - "file": "_app/immutable/chunks/1-69bee870.js", + "file": "_app/immutable/chunks/1-3fe45305.js", "src": ".svelte-kit/generated/nodes/1.js", "isDynamicEntry": true, "imports": [ @@ -89,7 +89,7 @@ ] }, ".svelte-kit/generated/nodes/2.js": { - "file": "_app/immutable/chunks/2-0bf15b71.js", + "file": "_app/immutable/chunks/2-38d64f40.js", "src": ".svelte-kit/generated/nodes/2.js", "isDynamicEntry": true, "imports": [ @@ -101,7 +101,7 @@ "src": "src/routes/+page.css" }, "src/routes/+layout.css": { - "file": "_app/immutable/assets/_layout-d2c2d65f.css", + "file": "_app/immutable/assets/_layout-09765a90.css", "src": "src/routes/+layout.css" } } \ No newline at end of file